.preload{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: .5s ease-out;
    z-index: 10;
}
.preload_bot{
    position: relative;
}

.preload_mask{
    text-transform: uppercase;
    font-family: 'HelveticaNeueCyr';
    font-weight: 200;
    color: rgba(240, 86, 35, 1);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.preload_bot_kvad{
    width: 4px;
    height: 4px;
    position: absolute;
    right: -22px;
    bottom: 100px;
    opacity: 0;
}

.preload_bot_kvad{
    width: 4px;
    height: 4px;
    position: absolute;
    right: -22px;
    bottom: 100px;
    background-color: rgba(240, 86, 35, 1);
    opacity: 0;
    animation: preload_bot_kvad 2s ease-out;
    animation-fill-mode: forwards;
    animation-delay: .5s;
}
@keyframes preload_bot_kvad {
    0% {
        width: 4px;
        height: 4px;
        right: -22px;
        bottom: 100px;
        opacity: 0;
    }
    1% {
        opacity: 1;
    }
    23.3% {
        width: 4px;
        height: 4px;
        right: -22px;
        bottom: 4px;
    }
    33.3% {
        width: 18px;
        height: 18px;
        right: -22px;
        bottom: 4px;
    }
    90% {
        width: 18px;
        height: 18px;
        right: calc(100% + 5px);
        bottom: 4px;
    }
    99% {
        width: 4px;
        height: 4px;
        right: calc(100% + 19px);
        bottom: 4px;
        opacity: 1;
    }
    100% {
        width: 4px;
        height: 4px;
        right: calc(100% + 19px);
        bottom: 4px;
        opacity: 0;
    }
}
.preload_bot_mask{
    text-transform: uppercase;
    font-family: 'HelveticaNeueCyr';
    font-weight: 200;
    font-size: 18px;
    color: rgba(240, 86, 35, 1);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    animation: preload_bot_mask 2s ease-out;
    animation-fill-mode: forwards;
    animation-delay: .5s;

}
@keyframes preload_bot_mask {
    0% {
        clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    }
    33.3% {
        clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    }
    90% {
        clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
    }
    100% {
        clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
    }
}
.preload.active{
    opacity: 0;
    visibility: hidden;
}

.preload.dnone{
    display: none;
}