* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    min-height: 100vh;
/*    overflow: hidden;*/
}
.loader-box{
    width: 100vw;
    height: 100vh;
    background: #FFF;
    z-index: 999;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loadedSiteAnim .loaderIn > .talga{
    animation: talgaHComplate 1.5s linear forwards;
}
.loadedSite{
    display: none;
    z-index: 0;
}
.loaderIn{
    position: relative;
    overflow: hidden;
    width: calc( 38vh * 0.37 );
    height: 38vh;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.loaderIn > .loaderBottle{
    width: calc( 38vh * 0.37 );
    height: 38vh;
    position: relative;
    background: url(../img/loader.png) no-repeat;
    background-size: 100% 100%;
    background-position: left top;
    z-index: 1;
}
.loaderIn > .talga{
    width: calc( 38vh * 8.754 );
    height: 0%;
    position: absolute;
    background-color: #00c588;
    left:0;
    bottom: 0;
}
.loaderIn > .progress-logo {
    width: calc( 38vh * 0.3 );
    height: 100%;
    background-image: url(../img/progres-logo.png);
    background-size: calc( 38vh * 0.3 ) auto;
    background-repeat: no-repeat;
    background-position: -0.05vw 22vh;
    position: absolute;
    bottom: 0;
}
.loaderIn > .talga > img{
    width: 100%;
    position: absolute;
}
.loaderIn > .talga > img.normal{
    bottom: 100%;
    animation: talga1 10s linear infinite;
    left:0;
}
.loaderIn > .talga > img.light{
    bottom: calc( 100% + 5px );
    right:0;
    opacity: 0.5;
    animation: talga2 10s linear infinite;
}

.loaderIn > .bal{
    position: absolute;
    background: rgba(255,255,255,0.5);
    bottom: 0%;
    border-radius: 50%;
}
.loaderIn > .balon1{
    width: 7px;
    height: 7px;
    left: 4vh;
    animation: balon 1s ease-in infinite;
}
.loaderIn > .balon2{
    width: 9px;
    height: 9px;
    left: 5vh;
    animation: balon 1.4s 0.4s ease-in infinite;
}
.loaderIn > .balon3{
    width: 8px;
    height: 8px;
    left: 7vh;
    animation: balon 1s 0.5s ease-in infinite;
}
.loaderIn > .balon4{
    width: 7px;
    height: 7px;
    left: 8.5vh;
    animation: balon 1s 0.3s ease-in infinite;
}
.loaderIn > .balon5{
    width: 6px;
    height: 6px;
    left: 10vh;
    animation: balon 0.8s 1s ease-in infinite;
}

@keyframes talga1 {
    0%{
        left:0%
    }
    100%{
        left: -80%;
    }
}
@keyframes talga2 {
    0%{
        right:80%
    }
    100%{
        right: 0%;
    }
}
@keyframes balon {
    0%{
        bottom:0%
    }
    100%{
        bottom: 100%;
    }
}
@keyframes talgaH {
    0%{
        height:0%
    }
    50%{
        height: 20%;
    }
    70%{
        height: 20%;
    }
    100%{
        height: 40%;
    }
}
@keyframes talgaHComplate {
    0%{
        height: 40%
    }
    100%{
        height: 75%;
    }
}