.over-h{
    overflow: hidden !important;
}
.load-initial {
    display: flex;
    position: fixed;
    width: 100%;
    height: 100%;
    background: #ffffff;
    top: 0;
    left: 0;
    z-index: 12;
    align-items: center;
}
.load-initial .cont {
    margin: 0 auto;
    text-align: center;
}
.load-initial .cont .load-text {
    color: #2a2a2a;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
}

.load-initial .cont .load-icon {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    height: 38px;
    width: 80px;
    margin: 0 auto;
}

.load-initial .cont .load-icon div {
    position: absolute;
    display: block;
    bottom: 10px;
    width: 14px;
    height: 16px;
    background: rgba(0, 0, 0, 0.25);
    -webkit-animation: bars-load 2s  infinite ease-in;
    animation: bars-load 2s  infinite ease-in;
}

.load-initial .cont .load-icon div:nth-child(2) {
    left: 16px;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.load-initial .cont .load-icon div:nth-child(3) {
    left: 32px;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.load-initial .cont .load-icon div:nth-child(4) {
    left: 48px;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.load-initial .cont .load-icon div:nth-child(5) {
    left: 64px;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

@keyframes bars-load {
    0% {
        background: rgba(0, 0, 0, 0.25);
    }
    25% {
        background: #000000;
    }
    50% {
        background: rgba(0, 0, 0, 0.25);
    }
    100% {
        background: rgba(0, 0, 0, 0.25);
    }
}
.root{
    opacity: 0;
    transition: opacity 1s ease-out;
    transition-delay: .3s;
}

.z-ind-1{
    z-index: 1;
}
.z-ind-2{
    z-index: 2;
}
.z-ind-3{
    z-index: 1500;
}
