/*=================Loading==================*/
#otherLoading {
    position: fixed;
    z-index: 110;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all cubic-bezier(.17,.67,1,1.23) 0.3s;
    -o-transition: all cubic-bezier(.17,.67,1,1.23) 0.3s;
    transition: all cubic-bezier(.17,.67,1,1.23) 0.3s;
    background-color: var(--white);
    pointer-events: none;
    overflow: hidden;
}
#otherLoading .load-img {
    width: var(--widthLogo);
    height: var(--heightLogo);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 0;
}
#otherLoading .load-img img {
    width: 100%;
    height: 100%;
    vertical-align: middle;
    -o-object-fit: contain;
    object-fit: contain;
}

body.load #otherLoading {
    opacity: 0;
    -webkit-transition-delay: 1.5s;
    -o-transition-delay: 1.5s;
    transition-delay: 1.5s;
}
#otherLoading span.load-overlay {
    position: relative;
    width: 100%;
    height: var(--heightLogo);
    z-index: 1;
    background:var(--white);
    -webkit-transition: all cubic-bezier(.17,.67,1,1.23) 1s .1s;
    -o-transition: all cubic-bezier(.17,.67,1,1.23) 1s .1s;
    transition: all cubic-bezier(.17,.67,1,1.23) 1s .1s;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
}
body.load #otherLoading span.load-overlay {
    -webkit-transform:scaleY(0);
    -ms-transform:scaleY(0);
    transform:scaleY(0);
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}
/*=================Loading==================*/
