.new-current-offers {
    overflow: hidden;
}

.new-current-offers .swiper {
    overflow: visible;
}

.new-current-offers__list .swiper-slide {
    height: auto;
}

.new-current-product {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 250px;
    padding: 0;
    border-radius: 10px;
    border-radius: var(--main-radius, 10px);
    border: 1px solid #E0E0E0;
    border: 1px solid var(--light2-grey-color, #E0E0E0);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
}
.new-current-product__bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 30px 10px 10px 10px;
    border: 1px solid var(--light2-grey-color, #E0E0E0);
    border-radius: 0 0 10px 10px;
    margin-top: -10px;
    background: #eee;
    min-height: 110px;
}
.new-current-product_title_link {
    flex-grow: 1;
}
.new-current-product__title_text {
    font-weight: 600;
}

.new-current-product__date_period {
    color: #0095ff;
    font-size: .9rem;
}
.new-current-product_grey {
    background-color: #78909C;
    background-color: var(--grey-color, #78909C);
}

.new-current-product_blue {
    background-color: #0065DC;
    background-color: var(--blue-color, #0065DC);
}

.new-current-product_yellow {
    background-color: #FFC300;
    background-color: var(--color-yellow, #FFC300);
}

.new-current-product__date {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 4px 6px;
    color: #0065DC;
    color: var(--blue-color, #0065DC);
    border: 1px solid #0065DC;
    border: 1px solid var(--blue-color, #0065DC);
    font-family: "Open Sans";
    font-family: var(--main-font-family, "Open Sans");
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
}

.new-current-product__date_white {
    color: #ffffff;
    color: var(--white-color, #ffffff);
    border: 1px solid #ffffff;
    border: 1px solid var(--white-color, #ffffff);
}

.new-current-product__date span {
    margin: auto;
}

.new-current-product__title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    color: #37474F;
    color: var(--main-color, #37474F);
    font-family: "Open Sans";
    font-family: var(--main-font-family, "Open Sans");
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20.8px;
    transition: opacity .2s ease-in-out;
}

a.new-current-product__title:hover {
    color: #37474F;
    opacity: 0.9;
}

.new-current-product__title_white {
    color: #ffffff;
    color: var(--white-color, #ffffff);
}

a.new-current-product__title_white:hover {
    color: #ffffff;
}

.new-current-product__wrapper-img {
    position: absolute;
    z-index: 1;
    top: 17px;
    right: 21px;
}

.new-current-product__wrapper-img_in_corner {
    top: 0;
    right: 0;
}

.new-current-product__wrapper-img img {
    width: 260px;
    height: 218px;
    object-fit: contain;
}

.new-current-product__wrapper-img_in_corner img {
    object-position: 100% 0;
}

.new-current-product__top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 6px;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}
.new-current-product__top img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.new-current-product__wrapper-icon {
    position: relative;
    z-index: 0;
    width: 77px;
    height: 44px;
}

.new-current-product__wrapper-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .new-current-product {
        height: 209px;
        padding: 20px;
    }

    .new-current-product__wrapper-img {
        top: 11px;
        right: 14px;
    }

    .new-current-product__wrapper-img_in_corner {
        top: 0;
        right: 0;
    }

    .new-current-product__wrapper-img img {
        width: 170px;
        height: 143px;
    }

    .new-current-product__title {
        font-size: 12px;
        line-height: 15.6px;
    }

    .new-current-product__date {
        font-size: 10px;
    }

    .new-current-product__wrapper-icon {
        width: 50px;
        height: 29px;
    }
}
