/* slider */
/* 
.slider-wrp {
    height: 151px;
    width: 950px;
    margin: 0 auto;
}

.slider {
    width: 351px;
    height: 117px;
    position: relative;
    left: 505px;
    top: 10px;
}

.slide {
    background: url(../images/slider__bg.png) no-repeat;
    width: 351px;
    height: 117px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 5px 15px;
    box-sizing: border-box;
    perspective: 500px;
}

.slide__title {
    color: rgb(235, 181, 69);
    font-family: "PT Sans", sans-serif;
    font-size: 21px;
    font-weight: bold;
    text-shadow: 0 1px 1px rgba(5, 5, 5, 0.75), 0 0 14px rgba(255, 133, 0, 0.57), 0 0 14px rgba(255, 60, 0, 0.77);
    text-transform: uppercase;
    margin: 2px 0;
    transform: translateY(-10px) scale(0);
    transition: .6s all;
    transition-delay: .2s;
}

.slick-active .slide__title {
    opacity: 1;
    transform: translateY(0px) scale(1);
}

.slide__content {
    color: #b5b5b5;
    font-size: 18px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, .51);
    margin: 2px 0;
    transform: rotateX(90deg);
    opacity: 0;
    transition: .8s all;
    transition-delay: .4s;
    transform-origin: center bottom;
}

.slick-active .slide__content {
    opacity: 1;
    transform: rotateX(0deg);
} */


/* arrows */

.shop .slick-next {
    right: -70px;
    z-index: 5;
}

.shop .slick-prev {
    left: -70px;
    z-index: 5;
}

.shop .slick-prev,
.shop .slick-next {
    width: 47px;
    height: 86px;
}

.shop .slick-prev::before {
    content: '';
    display: block;
    width: 47px;
    height: 86px;
    background: url(../images/arrow__shop_direction_left.png) no-repeat;
    transition: .3s all;
    opacity: .8;
}

.shop .slick-next::before {
    content: '';
    display: block;
    width: 47px;
    height: 86px;
    background: url(../images/arrow__shop_direction_right.png) no-repeat;
    transition: .3s all;
    opacity: .8;
}

.shop .slick-prev:hover:before,
.shop .slick-next:hover:before {
    opacity: 1;
}

@media (max-width: 950px) {

    .shop .slick-next {
        right: -50px;
        z-index: 5;
    }

    .shop .slick-prev {
        left: -50px;
        z-index: 5;
    }

}

@media (max-width: 650px) {

    .shop .slick-next {
        right: -40px;
        z-index: 5;
    }

    .shop .slick-prev {
        left: -40px;
        z-index: 5;
    }

}



/* dots */
/* 
.slider .slick-dots {
    bottom: -5px;
}

.slider .slick-dots li {
    width: 13px;
    height: 13px;
}

.slider .slick-dots li button {
    width: 13px;
    height: 13px;
    padding: 0;
}

.slider .slick-dots li button:before {
    content: "";
    background: url(../images/slider__dot.png) no-repeat;
    width: 13px;
    height: 13px;
    opacity: 1;
}

.slick-active button:after {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    transform: translate(-5px, -50%);
    cursor: pointer;
    border: none;
    outline: none;
    content: "";
    background: url(../images/slider__dot_active.png) no-repeat;
    width: 21px;
    height: 21px;
    opacity: 1;
}

.slider .slick-dotted.slick-slider {
    margin-bottom: 0;
} */


/* arrows months */

.months .slick-next {
    right: 5px;
    z-index: 5;
}

.months .slick-prev {
    left: 5px;
    z-index: 5;
}

.months .slick-prev::before,
.months .slick-next::before {
    color: rgb(104, 104, 104);
}

@media (max-width: 1350px) {
    .months {
        width: calc(100% - 50px);
        margin: 0 auto;
    }

    .months .slick-next {
        right: -22px;
    }

    .months .slick-prev {
        left: -22px;
    }
}




/* years */

@media (max-width: 800px) {
    .years {
        height: 60px;
        width: calc(100% - 40px);
        margin: 0 20px;
    }

    .history__btn-box {
        margin: 10px auto;
    }
}

/* arrows history__list */


.history__list .slick-next {
    right: 10px;
    z-index: 5;
}

.history__list .slick-prev {
    left: 10px;
    z-index: 5;
}

.history__list .slick-prev,
.history__list .slick-next {
    width: 47px;
    height: 86px;
}

.history__list .slick-prev::before {
    content: '';
    display: block;
    width: 47px;
    height: 86px;
    background: url(../images/arrow__shop_direction_left.png) no-repeat;
    transition: .3s all;
    opacity: .8;
}

.history__list .slick-next::before {
    content: '';
    display: block;
    width: 47px;
    height: 86px;
    background: url(../images/arrow__shop_direction_right.png) no-repeat;
    transition: .3s all;
    opacity: .8;
}

.history__list .slick-prev:hover:before,
.history__list .slick-next:hover:before {
    opacity: 1;
}

.history__list .slick-prev.slick-disabled::before,
.history__list .slick-next.slick-disabled::before {

    opacity: .25;

}

@media (max-width: 1000px) {
    .slick-center.history__slide {
        box-shadow: none;
        background: none;
    }

}