/* стили, регулируюшие размер главного слайда */
[data-component="index-slider"].owl-carousel .owl-stage-outer,
[data-component="index-slider"].owl-carousel .owl-stage,
[data-component="index-slider"].owl-carousel .owl-item,
[data-component="index-slider"].owl-carousel .owl-item .item,
[data-component="index-slider"].owl-carousel .owl-item .item img,
[data-component="index-slider"]
{
    max-height: 500px;
}
[data-component="index-slider"].owl-carousel .owl-item .item img{
    object-fit: cover;
    object-position: center;
}
[data-component="index-slider"].owl-carousel .owl-item .item,
[data-component="index-slider"].owl-carousel .owl-item .item__img-cont,
[data-component="index-slider"].owl-carousel .owl-item img
{
    height: 100%;
}
@media (min-width: 1920px){
    /*[data-component="index-slider"].owl-carousel .owl-item .item{
        max-width: 100%;
    }*/
}
/* buttons, icons, handlers */
.icon {
    background-position: center;
    background-repeat: no-repeat;
}
.btn-medium {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 32px;
    display: inline-flex;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    color: white;
    text-transform: uppercase;
    flex-shrink: 0;
    flex-grow: 0;
}
.btn-medium:not(.active):hover {
    filter: brightness(0.5);
}
.btn-medium_red {
    background: #AE2220;
}

/* title */
.section-title {
    font-weight: bold;
    font-size: 32px;
    line-height: 120%;
    color: #AE2220;
    margin-bottom: 32px;
}

/* pagination */
.pagination {
    margin-top: 30px;
}
.pagination a,
.pagination a.disabled,
.pagination__link {
    margin: 0;
    padding: 10px;
}
.pagination a.pagination__btn-prev,
.pagination a.pagination__btn-next{
    margin: 0 5px;
}
.pagination .pagination__cont{
    text-align: center;
}
.pagination a.disabled{
    background: transparent !important;
}
.pagination__cont a{
    border-bottom: 2.5px solid transparent;
}
.pagination__cont a.active,
.pagination__link.active {
    color: #AE2220;
    font-weight: bold;
    font-size: 16px;
    line-height: 140%;
    border-bottom: 2.5px solid #AE2220;
}
.pagination__btn-next {
    margin-left: 5px;
}
.pagination__btn-prev {
    margin-right: 5px;
}
.pagination__btn-next.disabled,
.pagination__btn-prev.disabled {
    background-color: transparent !important;
    color: #ccc;
}

/* breadcrumbs */
.breadcrumbs {
	padding: 25px 0 0;
}
.breadcrumbs__cont {
    
}
.breadcrumbs__separator {
    padding: 0 8px;
    background-image: url('/files/public/icons/icon_arrow_pag.svg');
    background-repeat: no-repeat;
    background-position: center;
    font-size: 16px;
    margin-right: 8px;
}
.breadcrumbs__link {
    font-size: 16px;
    color: #2D2D2D;
    margin-right: 8px;
    word-break: break-word;
    white-space: normal;
}
.breadcrumbs__link_active {
	color: #AE2220;
	font-weight: bold;
	font-family: "Inter Semi";
}
.breadcrumbs__link:last-child {
    margin-right: 0;
}

/* owl-carousel */
.owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}
.owl-carousel .owl-item .owl-lazy {
    opacity: 1;
}

/* section-title */
.section-title__title {
	color: #AE2220;
	font-family: "Inter Semi";
	font-size: 32px;
	padding: 18px 0;
}

/* slider */
.slider .owl-dots {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}
.slider .owl-dot {
    height: 8px;
    width: 8px;
    background-color: #DDE1E5 !important;
    margin: 0 4px;
    border-radius: 50px;
    transition: width 0.2s ease-in;
}
.slider .owl-dot:hover {
    box-shadow: 0px 0px 3px #AE2220;
    background-color: #AE2220 !important;
}
.slider .owl-dot.active {
    background-color: #AE2220 !important;
    width: 24px;
    cursor: default;
}
.slider .owl-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.slider .owl-prev.disabled,
.slider .owl-next.disabled {
    border-color: gray !important;
    background-color: gray !important;
    cursor: default;
}
.slider .owl-prev:not(.disabled):hover,
.slider .owl-next:not(.disabled):hover {
    /* filter: brightness(0.5); */
    background-color: white !important;
}
.slider .owl-prev,
.slider .owl-next {
    position: absolute;
    top: calc(50% - 30px);
    right: calc(100% + 24px);
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    z-index: 10;
    background-image: url('/files/public/icons/icon-arrow_back.svg') !important;
    background-repeat: no-repeat !important;
    background-size: 24px !important;
    background-position: center !important;
    border: 1px solid #AE2220 !important;
    border-radius: 100px;
}
.slider .owl-next {
    left: calc(100% + 24px);    
    transform: translateY(-50%) rotate(180deg);
}
.slider .owl-prev span,
.slider .owl-next span {
    display: none;
}

/* handler-count-group */
.handler-count-group {
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    display: grid;
    grid-template-columns: 33px 80px 33px;
}
.handler-count-group.section-item__handler-count-group,
.handler-count-group.item-cart__handler-count-group  {
    grid-template-columns: 33px 50px 33px;
}
.handler-count-group__item-count {
    justify-self: center;
}
.handler-count-group input[data-element='change-input']{
    width: 70px;
    display: block;
    font-size: 16px;
    overflow: visible;
    text-align: center;
    border: 1px solid #dedede;
    padding: 8px;
    border-radius: 3px;
    cursor: text;
}
.handler-count-group__btn-basket-count {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #F2F2F2;
    background-position: center;
    background-repeat: no-repeat;
}
.handler-count-group__btn-basket-count:hover {
    background-color: gray;
}
.handler-count-group__btn-basket-count_minus {
    background-image: url('/files/public/icons/icon-minus.svg');
}
.handler-count-group__btn-basket-count_plus {
    background-image: url('/files/public/icons/icon-plus.svg');
}

/* item-cart */
.item-cart {
    max-width: 312px;
    padding: 24px;
    background-color: white;
    position: relative;
    display: flex;
    flex-direction: column;
}
.item-cart__image-cont {
    width: 100%;
    height: 211px;
    margin-bottom: 16px;
}
.item-cart__image-cont img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.item-cart__title {
    font-weight: bold;
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 11px;
    white-space: normal;
}
.item-cart__country {
    font-style: italic;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 10px;
    margin-top: auto;
}
.item-cart__price {
    font-weight: bold;
    font-size: 16px;
    line-height: 140%;
    color: #AE2220;
    margin-bottom: 24px;
}
.item-cart__old-price {
    font-weight: bold;
    font-size: 14px;
    line-height: 120%;
    text-decoration-line: line-through;
    color: rgba(45, 45, 45, 0.6);
    vertical-align: text-top;
    margin-left: 6px;
}
.section-basket__table .item-cart__old-price {
    position: absolute;
    top: -15px;
}
.item-cart__handler-group {
    display: flex;
    justify-content: space-between;
    margin: 0 -16px;
}
.item-cart__btn-add {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #ECECEC;
    flex-grow: 0;
    padding: 14px 24px;
    transition-property: width, height, background-color;
    transition-duration: 0.5s;

    font-family: Inter;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: white;
}
.item-cart__btn-add svg path {
    fill: #797979;
}
.item-cart__btn-add.active {
    background-color: #AE2220;
    cursor: pointer;
}
.item-cart__btn-add svg {
    width: 24px;
    height: 24px;
}
.item-cart__btn-add.active svg {
    margin-right: 10px;
}
.item-cart__btn-add.active svg path {
    fill: white;
}
.item-cart__btn-add:not(.active):hover {
    background-color: gray;
}
.item-cart__btn-favorites {
    width: 32px;
    height: 32px;
    position: absolute;
    z-index: 1;
    top: 8px;
    right: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.item-cart__btn-favorites-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.item-cart__btn-favorites path {
    fill: white;
}
.item-cart__btn-favorites.active path {
    fill: gold;
    stroke: gold;
}
.item-cart__btn-favorites:hover path {
    stroke: gold;
}
.item-cart__item-count {
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    letter-spacing: 0.75px;
}
.item-cart__label-group {
    position: absolute;
    z-index: 1;
    top: 8px;
    left: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.item-cart__label {
    font-size: 14px;
    line-height: 140%;
    color: white;
    padding: 4px 8px;
    border-radius: 0 50px 50px  0;
    margin-bottom: 3px;
}
.item-cart__label_new {
    background-color: #2e8b32;
}
.item-cart__label_hit {
    background-color: #f57c13;
}
.item-cart__label_sale {
    background-color: #D62925;
}
.item-cart__label_bestprice {
    background-color: #72111C;
    background-color: #d62925;
    background-color: #72111a;
}
.item-cart__label_monthDiscount {
    background-color: #FDD634;
    background-color: #fcd534;
}
.item-cart__label_import {
    background-color: #855b4c;
}
.item-cart__label_mark {
    background-color: #12619f;
}
.item-cart__label_presentable {
    background-color: #83129f;
}

/* header */
.header {
}

/* header__info */
.header__info {
    padding: 8px 0;
    padding: 15px 0;
    background-color: white;
}
.header__info .container-fixed{
     justify-content: space-between; 
}
.header-info__logo-main-cont {
    margin-top: 4px;
    margin-right: 91px;
    width: 190px;
    width: 210px;
}
.header-info__logo-main-cont a,
.header-info__logo-main-cont img {
    width: 100%;
    height: 100%;
}
.header-info__phone-cont {
    background-position: 0 0;
    background-repeat: no-repeat;
    background-image: url('/files/public/icons/icon-phone.svg');
    background-size: 24px 24px;
    padding-left: 35px;
    margin-right: 57px;
}
.phone-cont__title {
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 120%;
    color: rgba(45, 45, 45, 0.6);
}
.phone-cont__link {
    white-space: nowrap;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 140%;
    color: #2D2D2D;
}
.phone-cont__link:hover {
    color: #681413;
}
.header-info__icon-group {
    position: relative;
}
.header-info__dropdown-group {
    margin-right: 8px;
}
.header-info__dropdown-group:last-child{
    margin-right: 0;
}
.header-info__link-group {
    margin-left: 68px;
    align-items: center;
}
.header-info__link {
    white-space: nowrap;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 120%;
    color: #AE2220;
    border-bottom: 2px dashed;
    padding-bottom: 1px;
    margin-right: 24px;
    /* new */
    white-space: unset;
    max-width: 190px;
    margin: 0;
    display: inline;
    width: unset;
    border-bottom: unset;
    text-decoration: 1px red dashed;
    text-decoration-line: revert;
    text-decoration-style: dashed;
    text-decoration-color: #AE2220;
}
.header-info__link:hover {
    text-decoration: none;    
    /*border-bottom: 2px dashed transparent;*/
}
.header-info__link:last-child() {
    margin-right: 0;
}
.header-info__icon {
    width: 40px;
    height: 40px;
    background-color: #ECECEC;
    border-radius: 50px;
    /* margin-right: 8px; */
    position: relative;
    transition: .2s ease-out;
}
.header-info__icon:last-child {
    margin-right: 0;
}
.header-info__data {
    font-style: normal;
    font-weight: bold;
    font-size: 11px;
    font-size: 12px;
    line-height: 16px;
    color: white;
    width: 24px;
    height: 24px;
    left: 24px;
    top: -4px;
    background: #AE2220;
    border-radius: 50px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    padding: 0 5px;
    min-width: 20px;
    width: max-content;
}
.icon:hover {
    /*filter: brightness(0.5);*/
    background-color: #ECECEC80;
    transition: .2s ease-in;
}
.icon_basket {
    background-image: url('/files/public/icons/icon-basket.svg');
}
.icon_star {
    background-image: url('/files/public/icons/icon-star.svg');
}
.icon_user {
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('/files/public/icons/icon-user.svg');
}

/* header__menu */
.header__menu {
    background-color: #F3F3F3;
}
.header-menu__list {
    justify-content: space-between;
    width: 100%;
}
/* .header-menu__img-link { */
.img-link {
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    color: #2D2D2D;
    padding: 15px 16px 15px 50px;
    background-repeat: no-repeat;
    background-position: 16px center;
    background-size: 24px;
}
.img-link:hover {
    color: #681413;
}
.img-link_contacts {    
    background-image: url('/files/public/icons/icon-contacts.svg');
}
.img-link_order {    
    background-image: url('/files/public/icons/icon-order.svg');
}
.img-link_grammar {    
    background-image: url('/files/public/icons/icon-book.svg');
}
.img-link_events {    
    background-image: url('/files/public/icons/icon-events.svg');
}
.img-link_certificates {    
    background-image: url('/files/public/icons/icon-certificates.svg');
}
.img-link_feedback {    
    background-image: url('/files/public/icons/icon-feedback.svg');
}
.img-link_mainpage {    
    background-image: url('/files/public/icons/icons8-home(1).svg');
}

/* header__catalog-group */
.header__catalog-group {
    background-color: #681413;
    /*height: 64px;*/
}
.header__catalog {
    justify-content: space-between;
    align-items: center;
}
.catalog_item {
    margin-right: 16px;
    position: relative;
}
.catalog_item:last-child {
    margin-right: 0;
}
.catalog_btn-open {
    display: none;
    width: 25px;
    height: 25px;
    border: none;
    outline: none;
    border: 1px solid white;
}
.catalog_btn-open .icon-arrow {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
    background-image: url('/files/public/icons/arrow-triangle-left.svg');
    transform: rotate(90deg);
    transition: transform 250ms;
}
.catalog_btn-open.open .icon-arrow {
    transform: rotate(270deg);
}
.catalog_childnodes {
    display: none;
    position: absolute;
    /* display: flex; */
    flex-direction: column;
    padding: 15px;
    z-index: 5;
    min-width: 100%;
    width: auto;
    background-color: #BE4E4D;
}
.catalog_childnodes > .catalog_item {
    margin-bottom: 5px;
    margin-top: 5px;
}

.catalog__link {
    white-space: nowrap;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    position: relative;
    color: white;
}
.catalog__link.active {
    color: #CE7A79;
}
.catalog__link.active::before {
    color: #CE7A79;
    content: none;
}
.catalog__link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    background-color: white;
    width: 100%;
    height: 1px;
    transition: width 0.2s ease-in;
}
.catalog__link:hover::before {    
    width: 0%;
}
.header-catalog-group__basket-interface {
    margin-left: auto;
}
.basket-interface {
    background-color: #BE4E4D;
    padding: 5px 16px;
}
.basket-interface__text {
    background-repeat: no-repeat;
    background-position: 0 center;
    padding-left: 20px;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.7);
}
.basket-interface__text_basket {
    background-image: url('/files/public/icons/icon-basket-white.svg');
}
.basket-interface__text_champagne {
    background-image: url('/files/public/icons/icon-champagne-white.svg');
}
.basket-interface__text_balance {
    background-image: url('/files/public/icons/icon-balance_white.svg');
}
.basket-interface__data {
    font-weight: bold;
    color: white;
}
.basket-interface__icon-rub {

}
.basket-interface__icon-rub svg{
    width: 10px;
    height: 11px;
}

/* search */
.search {
    padding: 11px 0;
}
.search__input {
    background-repeat: no-repeat;
    background-position: 16px center;
    background-image: url('/files/public/icons/icon-search.svg');
    background-color: white;
    padding: 12px 16px 12px 48px;
    width: 100%;
    font-family: Gilroy;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.15);
    cursor: text;
    user-select: text;
}

/* offers */
.offers {
    height: 600px;
    background-color: black; 
}
.offers .container-fixed {
    /* padding-top: 69px; */
}
.offers__bg-cont {
    max-width: 1920px;
    height: 100%;
    background-image: url('/files/public/img/bg-main-top.jpg');    
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: auto;
}
.offers__title {
    font-family: Inter;
    font-style: normal;
    font-weight: 900;
    font-size: 64px;
    line-height: 110%;
    color: #FFFFFF;
    width: 400px;
}
.offers__btn-details {
    margin-top: 64px;
}
section.offers {
    height: max-content;
}

section.offers .item {
    max-width: 1920px;
    margin: auto;
    width: calc(100% + 4px);
    height: auto;
    display: block;
}

section.offers .owl-item.active {
    z-index: 10;
}

section.offers .item__img-cont {
    width: 100%;
    height: auto;
    display: block;
}

section.offers .item__img-cont img {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: -1;
    top: 0px;
    left: 0;
}

section.offers .item__cont-position {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

section.offers .item__cont-position .container-fixed {
    padding-top: 69px;
}

section.offers .offers__title {
    white-space: normal;
}

section.offers .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: grid;
    grid-template-columns: max-content max-content;
    height: 0;
    margin: 0;
    justify-content: space-between;
}

section.offers .owl-nav .owl-prev,
section.offers .owl-nav .owl-next {
    margin-top: 0;
}

section.offers .owl-nav .owl-prev>span,
section.offers .owl-nav .owl-next>span {
    width: 56px;
    height: 56px;
    background-image: url('/files/public/icons/icon-next-white.svg') !important;
    background-repeat: no-repeat !important;
    background-size: 24px !important;
    background-position: center !important;
    background-position-x: 55% !important;
    border: 1px solid #AE2220 !important;
    border-radius: 100px;
    position: absolute;
    color: transparent;
    top: 0;
}

section.offers .owl-nav .owl-prev>span {
    transform: translateY(-50%) rotate(180deg);
}

section.offers .owl-nav .owl-next>span {
    right: 10px;
    transform: translateY(-50%) rotate(0deg);
}

section.offers .owl-nav .owl-next:hover>span,
section.offers .owl-nav .owl-prev:hover>span {
    background-image: url('/files/public/icons/icon-next-white.svg') !important;
    border: 1px solid #FFF !important;
}

section.offers .owl-nav .owl-prev:hover>span {
    transform: translateY(-50%) rotate(180deg);
}

section.offers .owl-nav .owl-next:hover>span {
    transform: translateY(-50%) rotate(0deg);
}

@media (max-width: 1023px) {

    .header-info__logo-main-cont a {
        display: grid;
        align-items: center;
    }
    .header-info__logo-main-cont img {
        height: unset;

    }
}
@media (max-width: 830px) {

    section.offers .owl-nav .owl-prev>span,
    section.offers .owl-nav .owl-next>span {
        width: 36px;
        height: 36px;
        background-size: 15px !important;
    }
}
/* catalog-slider */
.catalog-slider {
    padding-top: 67px;
    padding-bottom: 31px;
}
.catalog-slider__title {
    margin-bottom: 32px;
}
.catalog-slider__slider-cont {

}
.catalog-slider__slider {

}
.catalog-slider__item-cart {
    margin: auto;
    height: 100%;
}

/* slider */
.slider__item-cart {
    display: inline-flex;
}

/* about */
.about {
    background-color: #AE2220;
    padding: 16px 0;
    margin-top: 32px;
}
.about__list {
    justify-content: space-between;
}
.about__item {
    display: flex;
}
.about__item:nth-of-type(1) {
    width: 21%;
}
.about__item:nth-of-type(2) {
    width: 33%;
    margin-left: 2%;
}
.about__item:nth-of-type(3) {
    width: 489px;
    margin-left: auto;
}
.about__image-cont {
    width: 56px;
    height: 56px;
    margin-right: 24px;
    border-radius: 100px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.about__icon {
}
.about__text-cont {
    display: flex;
    flex-direction: column;
}
.about__text {
    font-weight: bold;
    font-size: 24px;
    line-height: 120%;
    color: white;
}
.about__note {
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    color: white;
    margin-top: 4px;
}

/* social */
.social {
    display: inline-flex;
}
.social__item {
    display: flex;
}
.social__link {
    display: flex;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 24px;
    height: 24px;
    margin-right: 8px;
}
.social__link:hover {
    filter: brightness(0.5);
}
.social__link_twitter {
    background-image: url('/files/public/icons/icon-social-twitter.svg');
}
.social__link_vk {
    background-image: url('/files/public/icons/icon-social-vk.svg');
}
.social__link_facebook {
    background-image: url('/files/public/icons/icon-social-facebook.svg');
}
.social__link_instagram {
    background-image: url('/files/public/icons/icon-social-instagram.svg');
}
.social__link_odnoklassniki {
    background-image: url('/files/public/icons/icon-social-odnoklassniki.svg');
}
.social__link_viber {
    background-image: url('/files/public/icons/icon-social-viber.svg');
}
.social__link_telegram {
    background-image: url('/files/public/icons/icon-social-telegram.svg');
}
.social__link_facebook {
    background-image: url('/files/public/icons/icon-social-facebook.svg');
}

/* footer-nav */
.footer-nav {
   display: flex; 
}
.footer-nav__item {
   margin-right: 14px;
}
.footer-nav__item:last-child {
    margin-right: 0;
}
.footer-nav__link {
   color: #AE2220;
   position: relative;
}
.footer-nav__link::before {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    background-color: #AE2220;
    width: 100%;
    height: 1px;
    transition: width 0.2s ease-in;
}
.footer-nav__link:hover::before {    
    width: 0%;
}

/* footer-info */
.footer-info{
    padding-top: 24px;
    padding-bottom: 4px;
}
.footer-info__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-info__item {
    display: inline-flex;
    align-items: center;
    margin-bottom: 24px;
}
.footer-info__item:nth-of-type(1) {
    display: flex;
    width: 100%;
}
.footer-info__text {
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    margin-right: 14px;
    display: inline;
}
.footer-info__nav {

}

/* footer-clarification */
.footer-clarification {

}
.footer-clarification__text {
    text-transform: uppercase;
    font-size: 11px;
    font-size: 12px;
    line-height: 150%;
    text-align: center;
    color: rgba(45, 45, 45, 0.6);
}

/* footer-attention */
.footer-attention {

}
.footer-attention__text {
    text-transform: uppercase;
    font-size: 24px;
    line-height: 140%;
    text-align: center;
    color: rgba(45, 45, 45, 0.6);
}

/* footer */
.footer {
    margin-top: 64px;
    background-color: white;
}
.footer__info {
    border-bottom: 1px solid #E0E0E0;
}
.footer__clarification {
    padding: 10px 0;
}
.footer__attention {
    padding: 10px 0;
}

/* section-basket */
.section-basket {

}
.section-basket__table {
    background-color: white;
    padding-bottom: 15px;
}
.section-basket__title {
    font-weight: bold;
    font-size: 32px;
    line-height: 120%;
    color: #AE2220;
    display: flex;
    align-items: center;
    padding: 32px 0;
}
.section-basket_first .section-basket__title {
    padding: 20px 0 32px 0;
}
.section-basket__title-num {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: #868686;
    border-radius: 50px;
    font-size: 16px;
    line-height: 140%;
    color: white;
    margin-right: 10px;
}

/* basket-table  */
.basket-table {
}
.basket-table__header {
    display: grid;
    /* grid-template-columns: 0.120fr 0.352fr 0.11fr 0.114fr 0.144fr 0.1fr 0.06fr; */
    grid-template-columns: 150px 1fr 0.3fr 150px 150px 160px 56px;
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 4px;
    justify-content: center;
    justify-items: center;  
}
.basket-table__row {
    display: grid;
    /* grid-template-columns: 0.120fr 0.352fr 0.11fr 0.114fr 0.144fr 0.1fr 0.06fr; */
    grid-template-columns: 150px 1fr 0.3fr 150px 150px 160px 56px;
    align-items: center;
    justify-content: center;
    justify-items: center;
}
.basket-table__cell {
    position: relative;
    padding: 8px;
}
.basket-table__cell.justify-self-baseline{
    justify-self: baseline;
}
.basket-table__text {
    font-size: 16px;
    line-height: 150%;
    color: #2D2D2D;
}
.basket-table__title {
    font-size: 22px;
    margin-top: 30px;
    padding-left: 8px;
    font-weight: normal;
}
.basket-table__footer {
    padding-top: 9px;
}

/* basket-item */
.basket-item {
    padding: 6px 0;
}
.basket-item__img-cont {
    width: 96px;
    height: 96px;
}
.basket-item__img-cont img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.basket-item__name {
    font-weight: bold;
    font-size: 16px;
    line-height: 140%;
    color: rgba(45, 45, 45, 0.9);
}
.basket-item__sum {
    font-weight: bold;
    font-size: 16px;
    line-height: 140%;
}
.basket-item__price {
    white-space: nowrap;
}
.basket-item__btn-delete {
    width: 40px;
    height: 40px;
    background: #AE2220;
    border-radius: 50px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px;
    background-image: url('/files/public/icons/icon-delete.svg');
    padding-right: 0;
}
.basket-table__total-sum-prefix {
    grid-column-start: 1;
    grid-column-end: 6;
    text-align: end;
    font-weight: bold;
    font-size: 16px;
    line-height: 140%;
    color: #2D2D2D;
}
.basket-table__total-sum {
    font-weight: bold;
    font-size: 24px;
    line-height: 120%;
    color: #2D2D2D;
}

/* basket-form */
.basket-form {
    background-color: white;
    padding: 8px 32px 32px 32px;
    display: flex;
    flex-direction: column;
}
.basket-form__group {
    margin-top: 24px;
}
.basket-form__group_grid-3fr {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}
.basket-form__group-title,
.basket-form__label {
    padding-left: 16px;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    letter-spacing: 2px;
    color: rgba(45, 45, 45, 0.6);
    margin-bottom: 4px;
}
.basket-form__label {
    text-transform: uppercase;
    display: inline-block;
}
.basket-form__group-title {
    margin-bottom: 11px;
}
.basket-form__label_require {

}
.basket-form__input {
    background: #F2F2F2;
    border-radius: 8px;
    font-size: 16px;
    line-height: 24px;
    color: rgba(45, 45, 45, 0.6);
    padding: 8px 0 8px 16px;
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    outline: 1px solid transparent;
    cursor: text;
    user-select: text;
}
.basket-form__input:active,
.basket-form__input:focus {
    outline: 1px solid #ACBDFF;;
}
.basket-form__input.error {
    outline: 1px solid #AE2220 !important;
}
.basket-form__input_textarea {
    outline: 1px solid transparent;
    padding-bottom: 15px;
}
.basket-form__input_textarea.error {
    outline: 1px solid #AE2220 !important;
}
.basket-form__input_cb {
    display: none;
}
.basket-form__input[data-mask="date"] {
    width: 135px;
    margin-right: 24px;;
}
.basket-form__input[data-mask="time"] {
    width: 91px;
}
.basket-form__label_cb {
    position: relative;
    user-select: none;
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin-top: 3px;
    margin-left: 3px;
    text-transform: initial;
}
.basket-form__input_cb:checked + .basket-form__label_cb::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('/files/public/icons/icon-mark.svg');
    position: absolute;
    left: 0;
    top: 0;
}
.basket-form__input_cb.error + .basket-form__label_cb {
    color: #AE2220;
}
.basket-form__label_cb::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background: #AE2220;
    border-radius: 2px;
    margin-right: 11px;
}
.basket-form__btn-submit {
    align-self: flex-start;
    margin-top: 22px;
}
.section-articles a:link {
    color: #0000EE;
}
.section-articles a:visited {
    color: #551A8B;
}

/* dropdown */
.dropdown {
    display: none;
    position: absolute;
    top: 45px;
    color: white;
    z-index: 10;
    right: 0;
}
.dropdown:hover,
.header-info__dropdown-group:hover>.dropdown {
    display: block;
}
.dropdown__item {
    background-color: white;
    padding: 16px;
    width: max-content;
    /*position: absolute;*/
    margin-left: -130px;
    width: 170px;
    right: 0;
    border: 1px solid #dedede;
    box-sizing: border-box;
}
.dropdown__link {
    color: black;
    font-size: 16px;
    text-align: center;
    display: inline-block;
    width: 100%;
}
.dropdown__link:hover {
    color: gray;
}

/* side-menu */
.side-menu {

}
.side-menu__list {
    display: flex;
    flex-direction: column;
    padding: 16px;
    padding-left: 0;
    background-color: transparent;
}
.side-menu__item {
    padding: 5px 0;
    /* background-color: #681413; */
}
.side-menu__link {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: black;
    padding: 4px 0;
    background-color: transparent;
}
.side-menu__link::before {
    background-color: black;
}

/* favorites */
.favorites__cont {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 312px));
    grid-gap: 15px;
    justify-content: center;
}
.favorites__item-cart {
    /* margin: 0 12px 24px 12px; */
    width: 100%;
}

/* table */
.history__table.table__header {
    background-color: tomato;
}
.history__table_order.table__header {
    background-color: #681413;
    color: white;
    font-weight: 300;
    padding: 16px 0;
}
.history__table .table__cell {
    padding: 4px 4px 4px 16px;
}
.history__table_order.table__body {
    background-color: white;
    padding: 8px 0;
}
.history__table_order {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.history__table-cont {
    grid-column: span 3;
}
.history__table_details {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.history__details.table__body {
    background-color: #F2F2F2;
}   
#filter div input[type="checkbox"] + label,
[filter] p{
    font-size: 14px;
}
.loading [data-component="catalog-filter"],
.loading [data-component="catalog-list"]{
    display: none;
}
.loader .pagination,
.loader [list],
[loader]{
    display: none !important;
}
.loading [loader].wide{
    display: block !important;
    grid-column: 1/3;
    justify-self: center;
}
.loader [loader]{
    display: grid !important;
    align-items: center;
    justify-content: center;
}
#filter .loader input{
    /*display: none;*/
}
.show-all-checkbox-items{
    display: none;
    padding: 10px 0;
    font-size: 14px;
    text-transform: lowercase;
    width: max-content;
    margin: 0 0 0 auto;
    color: #808080;
}
.has-hidden-items .show-all-checkbox-items{
    display: block;
}
.has-hidden-items-hidden .show-all-checkbox-items{
    display: none;
}
.has-hidden-items-hidden div:not(.checked-item).hidden-item,
.has-hidden-items div:not(.checked-item).hidden-item:not(.hidden-item-waiting){
    display: none;
}
.has-hidden-items:not(.country) div:not(.checked-item).hidden-item:nth-of-type(n+4){
    display: none;
}
.has-hidden-items.country div:not(.checked-item).hidden-item:nth-of-type(n+5){
    display: none;
}
.has-hidden-items-hidden div:not(.checked-item).hidden-item-waiting{
    display: none;
}
.has-hidden-items-hidden .ui-slider,
.has-hidden-items-hidden > article{
    display: none !important;
}

[data-element="catalog-group"] .filter__childrenCont{
    /*display: none;*/
}
[data-element="catalog-group"] .checked-item .filter__childrenCont{
    /*display: block;*/
}
