.banner {
    position: fixed;
    z-index: 250;
    left: -999px;
    bottom: 100px;

    max-width: 435px;

    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border-radius: 6px;

    transition: left .6s linear;
}

@media (max-width: 767px) {
    .banner {
        bottom: 50px;
        width: 320px;
    }

    .banner img {
        display: none;
    }
}

@media (max-width: 475px) {
    .banner {
        width: auto;
        max-width: 300px;
    }
}

.banner.-show {
    left: 36px;
}

@media (max-width: 991px) {
    .banner.-show {
        left: 24px;
    }
}

@media (max-width: 767px) {
    .banner.-show {
        left: 0;
        right: 0;
        margin: 0 auto;
    }
}

@media (max-width: 475px) {
    .banner.-show {
        left: 10px;
        right: 10px;
        margin: 0 auto;
    }
}

.banner img {
    flex-shrink: 0;
    border-radius: 6px 0 0 0;
}

.banner__close-button {
    position: absolute;
    top: 15px;
    right: 15px;

    height: 17px;
    width: 18px;

    border: none;
    background-color: transparent;
}

.banner__close-button::before,
.banner__close-button::after {
    content: "";

    position: absolute;
    top: 0;
    left: 9px;

    height: 17px;
    width: 2px;

    background-color: #641f27;
}

.banner__close-button::before {
    transform: rotate(45deg);
}

.banner__close-button::after {
    transform: rotate(-45deg);
}

.banner__info-container {
    position: relative;
}

.banner__info-container .banner__text {
    padding: 16px 24px;
}

.banner__text h2 {
    padding-right: 15px;
    margin-top: 0;

    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: #3d3d3d;
    font-weight: 700;
}

.banner__desc {
    margin-top: 0;
    margin-bottom: 12px;

    font-size: 12px;
    line-height: 18px;
    color: #3d3d3d;
    opacity: 0.8;
    font-weight: 600;
}

.banner__note {
    margin-top: 0;
    margin-bottom: 15px;

    font-size: 11px;
    line-height: normal;
    color: #3d3d3d;
    opacity: 0.6;
    font-weight: 400;
}

.banner__info-container--slider {
    opacity: 1;
    visibility: visible;
}

.banner__info-container--slider .slick-dots {
    bottom: -48px;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0;
    margin-top: 0;
    height: 30px;

    background: linear-gradient(180deg, #c6c6c6 0, #e8e8e8 35%, #eeeeee 100%);
    border-radius: 0 0 6px 6px;
}

.banner__info-container--slider .slick-dots li {
    display: inline-block;
    background: #ffffff;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 22px;
}

.banner__info-container--slider .slick-dots li.slick-active {
    background-color: #641f27;
}

.banner__info-container--slider .slider-dot {
    display: none;
}

.banner__info-container--slider .slick-prev,
.banner__info-container--slider .slick-next {
    top: auto;
    bottom: -25px;
    z-index: 1;

    display: flex !important;
    justify-content: center;
    align-items: center;
}

.banner__info-container--slider .slick-prev::before,
.banner__info-container--slider .slick-next::before {
    width: 20px;
    height: 5px;

    font-family: "icomoon";
    font-size: 25px;
    font-weight: 600;
    line-height: unset;
    color: #641f27;

    opacity: 1;
}

.banner__info-container--slider .slick-prev {
    left: 30px;
}

.banner__info-container--slider .slick-next {
    right: 30px;
}

.banner__button {
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
    padding: 8px 16px !important;
    text-decoration: none;
    font-weight: 300;
}

.banner__info {
    display: flex !important;
}
