.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader__block {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.preloader__icon {
    position: relative;
    top: 13px;
    z-index: 1;
    left: -5px;
    animation: logoLoader 2s ease 0s 1 normal forwards;
}


.preloader__load {
    position: relative;
    width: 240px;
    height: 13px;
    background-color: #E1E1E1;
    border-radius: 100px;
}

.preloader__loader {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    border-radius: 100px;
    background-color: #FD6241;
    animation: barLoader 2s ease 0s 1 normal forwards;
}

.preloader .preloader__logoTnl img {
    height: 80px;
}

@keyframes barLoader {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes logoLoader {
    0% {
        left: -5px;
    }

    100% {
        left: 225px;
    }
}



/* Прелоадер с кистчочкой */
.preloaderBrush .preloader__load {
    width: 240px;   
    height: auto;
    background-color: transparent;
    border-radius: none;
}

.preloaderBrush .preloader__icon {
    left: -15px;
    top: 85px;
    animation: logoLoader200 2s ease 0s 1 normal forwards;
}

.preloaderBrush .preloader__logoTnl img {
    height: 80px;
}

.preloaderBrush .path {
    stroke-dashoffset: 1000;
    animation: fillAnimation 2s 1 normal forwards;
}

.preloaderSlide {
    position: relative;
}

.preloaderSlide__red {
    overflow: hidden;
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    animation: brushSlide 2s normal forwards;
}

.preloaderSlide__red img {
    max-width: none;
}



@keyframes logoLoader200 {
    0% {
        left: -35px;
    }

    100% {
        left: 200px;
    }
}

@keyframes brushSlide {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* Прелоадер с кистчочкой END */