.loaderWrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.boxes {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
}

.box {
    flex: 1;
    height: 100%;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    border: none;
    margin: 0;
    padding: 0;
}

.loaderInner {
    position: relative;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    max-width: 250px;
    height: auto;
    opacity: 0;
}

.logo svg {
    width: 100%;
    height: auto;
}