.component_compare {
    overflow: hidden;
}

.component_compare__nothing_to_compare {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    padding: 200px 0 50px;
    background: center 40px url("images/nothing_to_compare.svg") no-repeat;
}

.component_compare__nothing_to_compare_text {
    color: var(--color-gray-dark2);
    max-width: 400px;
    font-size: var(--font-size-large-3);
    text-align: center;
}

.component_compare__nothing_to_compare_text:after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: center url("images/icon_compare.svg") no-repeat;
    margin-left: 10px;
}

.component_compare__tabs_titles {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 0px;
    flex-direction: row-reverse; /* == Это важно для наложеня вкладок! == */
}

.component_compare__tabs_title {
    color: var(--color-gray-darker);
    background: var(--color-gray-light);
    border: 1px solid var(--color-gray);
    border-bottom: none;
    padding: 0px;
    border-radius: 10px 10px 0 0;
    text-align: center;
    cursor: pointer;
    user-select: none;
    margin-right: 0.5vw;
    font-size: var(--font-size-small-1);
    line-height: 1.1;
    overflow: hidden;
    min-width: 70px;
}
.component_compare__tabs_title .component_compare__section_name{
    display: block;
    overflow: hidden; /* Обрезаем всё за пределами блока */
    text-overflow: ellipsis; /* Добавляем многоточие */
    white-space: nowrap;
    padding-left: 5px;
    padding-right: 5px;
    min-width: 50px;
}
.component_compare__tabs_title_wrapinn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
}
.component_compare__tabs_title.active .component_compare__tabs_title_wrapinn {
    justify-content: flex-start;
}

.component_compare__tabs_title.active .component_compare__section_name {
    text-align: left;
}

.component_compare__section_icon {
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    width: 40px;
    height: 50px;
}

.component_compare__tabs_title:not(.shrink, .active) .component_compare__section_icon {
    display: none;
}

.component_compare__tabs_title.shrink .component_compare__section_name {
    display: none;
}

.component_compare__tabs_title.shrink .component_compare__section_icon {
    margin-right: 0;
}

.component_compare__section_name.truncate {
    display: inline-block;
    max-width: 200px;
    white-space: nowrap; /* Текст не переносится */
    overflow: hidden; /* Обрезаем всё за пределами блока */
    text-overflow: ellipsis; /* Добавляем многоточие */
}


.component_compare__tabs_title.shrink {
    box-shadow: 0 0 3px #00000011;
}


.component_compare__section_icon img {
    max-width: 40px;
    max-height: 35px;
    opacity: 0.6;
    display: block;
    margin: auto;
}

.component_compare__tabs_title.active {
    color: var(--color-gray-darker2);
    background: white;
    border: 1px solid var(--color-gray-light);
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    text-align: center;
    padding: 0px 5px;
    box-shadow: 0 -2px 3px #00000011;
    position: relative;
    z-index: 3;
}
.component_compare__tabs_title.active .component_compare__section_icon img,
.component_compare__tabs_titles.shink3 .component_compare__section_icon img
{
    opacity: 1;
}


.component_compare__tabs_title:first-child {
    margin-left: -1px;
}

.component_compare__tabs_titles {
    position: relative;
    z-index: 2;
    width: 97%;
}
.component_compare__tabs_titles.shink3{
    width: 100%;
}

.component_compare__tabs_items {
    position: relative;
    z-index: 1;
    padding: 15px 30px 30px 30px;
    background: #FFFFFF;
    box-shadow: 0 -1px 4px #00000022;
    border-radius: 0 10px 10px 10px;
}


.component_compare__tabs_item__fog_right {
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 0;
    width: 20px;
    background: linear-gradient(to right, #ffffff00, #FFFFFF);

}

.component_compare__tabs_item__fog_left {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 0;
    width: 20px;
    background: linear-gradient(to left, #ffffff00, #FFFFFF);
}


.component_compare__tabs_item {
    display: none;
}

.component_compare__cards {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    width: 100%;
    transition: margin-left 1s;
}

.component_compare__card {
    background: #ffffff;
    flex: 0 0 264px;
    box-sizing: border-box;
    box-shadow: 0 0 5px #00000033;
    margin: 0px;
    padding: 15px;
    border-radius: 10px;
    position: relative;

}
.component_compare__card.absent:after{
    content: "";
    display: block;
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffffaa center/contain url("images/product_absent.png") no-repeat;
    border-radius: 10px;
}

.component_compare__tabs_item.active {
    display: block;
}

.component_compare__card_picture_wrapper {

}

.component_compare__card_picture {
    display: block;
    background: center/contain no-repeat;
    width: 100%;
    height: 150px;
}

.component_compare__card_name {
    display: block;
    color: var(--color-black);
    font-size: var(--font-size-small-2);
    font-weight: 500;
    line-height: 1.2;
    margin: 10px 0 10px;
    height: 52px;
    overflow: hidden;
}

.component_compare__card_buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--font-size-small-4);
    white-space: nowrap;
}

.component_compare__tabs_item_line1_top_buttons {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
}

.component_compare .jq-number__field input {
    font-size: var(--font-size-small-2) !important;
}

/*
.component_compare .number_wrapper {
    width: 70px;
}
.component_compare .jq-number__field {
    width: 48px;
}
*/
.component_compare__card_buttons_left {
    display: flex;
    gap: 10px;
}

.component_compare .component_compare__button_add_to_favorites {
    background: center/25px url("/images/catalog_icons/favorite-gray.svg") no-repeat;
    display: inline-block;
    height: 30px;
    width: 25px;
    font-size: var(--font-size-small-5);
}

.component_compare .component_compare__button_add_to_favorites.active,
.component_compare .component_compare__button_add_to_favorites:hover {
    background: center/25px url("/images/catalog_icons/favorite-red.svg") no-repeat;
}

.component_compare__line2_block_buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    user-select: none;
}

.component_compare .component_compare__button_delete_item {
    background: center url("images/trash2.svg") no-repeat;
    display: inline-block;
    height: 30px;
    width: 20px;
    font-size: var(--font-size-small-5);
}

.component_compare .component_compare__button_delete_item:hover {
    background: center url("images/trash-red.svg") no-repeat;
}

.component_compare__tabs_item_line1_top_buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 2px;
}

.component_compare__button_delete_list {
    display: inline-block;

}

.component_compare__button_delete_list {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--font-size-small-1);
    cursor: pointer;
    color: var(--color-gray-dark2);
}

.component_compare__button_delete_list:hover {
    color: var(--color-red);
}

.component_compare__button_delete_list::before {
    flex: 0 0 20px;
    content: '';
    display: block;
    background: center/14px url("images/trash.svg") no-repeat;
    width: 20px;
    height: 20px;
}

.component_compare__button_delete_list:hover::before {
    background: center/14px url("images/trash-red.svg") no-repeat;
}
/**/
.component_compare__button_delete_all_lists_wrapper{
    display: flex;
    justify-content: flex-end;
    width: 250px;
    margin: -30px 0 10px auto;
    padding-right: 30px;
    position: relative;
    z-index: 100;
}

.component_compare__button_delete_all_lists {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--font-size-small-1);
    cursor: pointer;
    color: var(--color-gray-dark2);
}

.component_compare__button_delete_all_lists:hover {
    color: var(--color-red);
}

.component_compare__button_delete_all_lists::before {
    flex: 0 0 20px;
    content: '';
    display: block;
    background: center/14px url("images/trash.svg") no-repeat;
    width: 20px;
    height: 20px;
}

.component_compare__button_delete_all_lists:hover::before {
    background: center/14px url("images/trash-red.svg") no-repeat;
}


/**/
.component_compare__title h2 {
    margin: 30px 0 10px;

}

.component_compare__table {
    width: 100%;
    margin-top: 20px;
    font-size: var(--font-size-small-2);
    background: #ffffff;
    transition: margin-left 1s;
}

.component_compare__table_row {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0px;
}

.component_compare__table_row:hover .component_compare__table_cell {
    background-color: var(--color-gray-light);
}

.component_compare__table_row:last-child .component_compare__table_cell {
    border-bottom: 1px solid var(--color-gray);
}

.component_compare__table_cell {
    flex: 0 1 20%;
    min-width: 268px;
    box-sizing: border-box;
    border-left: 1px solid var(--color-gray);
    border-top: 1px solid var(--color-gray);
    padding: 10px;
    box-sizing: border-box;
    overflow: hidden;
    background: #ffffff;
}

.component_compare__table_cell:last-child {
    border-right: 1px solid var(--color-gray);
}

.component_compare__table_cell .field_title {
    color: var(--color-gray-darker);
    opacity: 0;
}

.component_compare__table_cell .field_value {
    color: var(--color-black);
}

.component_compare__table_cell.position1 .field_title,
.component_compare__table_cell.current .field_title
{
    transition: 1s;
    opacity: 1;
}

.component_compare__tabs_item__arrow {
    width: 40px;
    height: 40px;
    border-radius: 30px;
    position: absolute;
    z-index: 10;
    top: 164px;
    left: 5px;
    background: #ffffff99 center/14px no-repeat;
    box-shadow: 0 0 5px #DEDEDE;
    border: 1px solid #33333333;
    cursor: pointer;
}

.component_compare__tabs_item__arrow.--left {
    background-image: url("images/Slider Arrow Left-black2.svg");
    background-position: 10px 8px;
}

.component_compare__tabs_item__arrow.--right {
    left: auto;
    right: 5px;
    background-image: url("images/Slider Arrow Right-black2.svg");
    background-position: 14px 8px;
}
.component_compare__tabs_item__arrow:hover {
    transition: 0.1s;
    transform: scale(1.2);
}

.tab_title_mobile {
    display: block;
    font-size: var(--font-size-large-2);
    font-weight: 700;
    color: var(--color-gray-darker2);
    line-height: 1.2;
}

.tab_title_mobile:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 12px;
    background: center/20px url("images/arrow-left-gray.svg") no-repeat;
    margin-right: 2px;
}

.tab_title_mobile:hover:before {
    background: center bottom/24px url("images/arrow-left-red.svg") no-repeat;
}

.sticked_panel.fixed .component_compare__tabs_item_line1 {
    position: fixed;
    top: 80px;
    z-index: 1000;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
    margin-left: -30px;
}
@media(max-width:450px){
    .sticked_panel.fixed .component_compare__tabs_item_line1 {
        top: 0px;
    }
}
.sticked_panel.fixed .component_compare__back_panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 100;
    box-shadow: 0 0 20px #00000055;
    background: #f8f8f8;
}


.sticked_panel.fixed .component_compare__tabs_item_line1__wrapinn {
    margin: auto;
}

.sticked_panel.fixed .component_compare__card_picture_wrapper {
    width: 40px;
    display: flex;
    align-items: center;
}

.sticked_panel.fixed .component_compare__card {
    padding: 5px 5px;
}

.sticked_panel.fixed .component_compare__card_picture {
    display: block;
    background: center/contain no-repeat;
    width: 40px;
    height: 50px;
}

.sticked_panel.fixed .component_compare__card {
    display: flex;
    gap: 5px;
    align-items: center;
}


.sticked_panel.fixed .component_compare__card_name {
    height: auto;
    margin: 0;
}


.sticked_panel.fixed .component_compare__card_buttons,
.sticked_panel.fixed .component_compare__tabs_item_line1_top_buttons {
    display: none;
}


/* media **************************************************************************************************************/

@media (min-width: 481px) {
    .tab_title_mobile {
        display: none;
    }
}
.component_compare__tabs_titles.shink1 .component_compare__section_name {
    display: inline-block;
    max-width: 200px;
    min-width: 60px;
    white-space: nowrap; /* Текст не переносится */
    overflow: hidden; /* Обрезаем всё за пределами блока */
    text-overflow: ellipsis; /* Добавляем многоточие */
    padding-left: 5px;

}
.component_compare__tabs_titles.shink1 .component_compare__tabs_title.active .component_compare__section_name {
    max-width: 300px;
    min-width: 70px;
    text-align: left;
}

@media (max-width: 1280px) {

    .component_compare__section_name {
        display: inline-block;
        max-width: 200px;
        white-space: nowrap; /* Текст не переносится */
        overflow: hidden; /* Обрезаем всё за пределами блока */
        text-overflow: ellipsis; /* Добавляем многоточие */
    }

    .component_compare__tabs_title {
        padding: 0px 10px;
        min-width: 60px;
        border-radius: 20px 20px 0 0;
    }

    .component_compare__tabs_title.active {
        border-radius: 20px 20px 0 0;
    }

    .component_compare__tabs_title .component_compare__section_icon {
        height: 40px;
    }

    .component_compare__tabs_title_wrapinn {
        height: 35px;
    }

    .wrap_content .component_compare__tabs_title:not(.active) .component_compare__section_icon img {
        max-width: 90%;
        height: auto;
        display: block;
        margin: auto;
    }
}

@media (max-width: 1024px) {
    .component_compare__tabs_title {
        padding: 0px 5px;
        min-width: 60px;
        border-radius: 20px 20px 0 0;
    }
}
.component_compare__tabs_titles.shink1 .component_compare__tabs_title:not(.shrink, .active) .component_compare__section_icon {
    display: none;
}
.component_compare__tabs_titles.shink2 .component_compare__tabs_title:not(.shrink, .active) .component_compare__section_icon {
    display: flex;
    margin-right: 0;
}


.component_compare__tabs_titles.shink2 .component_compare__tabs_title:not(.active) .component_compare__section_name{
    display: none;
}

/* shink3 */
.component_compare__tabs_titles.shink3 {
    flex-wrap: wrap;
    gap: 0px;
    margin: 0 0 10px;
    flex-direction: column-reverse;
}
.component_compare__tabs_titles.shink3 .component_compare__tabs_title,
.component_compare__tabs_titles.shink3 .component_compare__tabs_title.active {
    width: 100%;
    background: white;
    border: 1px solid var(--color-gray-light);
    border-radius: 10px;
    text-align: left;
    padding: 5px 10px;
    box-shadow: 0 0 3px #00000011;
    z-index: 3;
    margin: 3px 0;
}
.component_compare__tabs_titles.shink3 .component_compare__tabs_title_wrapinn {
    justify-content: flex-start;
}
.component_compare__tabs_titles.shink3 .component_compare__tabs_title:not(.shrink, .active) .component_compare__section_icon {
    display: flex;
}
.component_compare__tabs_titles.shink3 .component_compare__tabs_title .component_compare__section_name {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 5px;
    padding-right: 5px;
    min-width: 50px;
    max-width: max-content;

}
.component_compare__tabs_titles.shink3 .component_compare__tabs_title.active .component_compare__section_name {
    max-width: max-content;
    font-size: 16px;
    font-weight: 500;
}
/* end shink3 */

@media (max-width: 767px) {
    .component_compare__button_delete_all_lists_wrapper{
        margin: -40px 0 40px auto;
        padding-right: 15px;
    }
    .component_compare {
        margin: 0px 0 30px;
    }

    .component_compare__section_icon img
    {
        opacity: 1;
    }

    .component_compare__tabs_titles{
        width: 100%;
    }

    .component_compare__tabs_title {
        margin-right: -1vw;
    }
    .component_compare__tabs_titles.shink3 .component_compare__tabs_title.active {
        background: none;
        border: none;
        box-shadow: none;
    }
    .component_compare__section_icon {
        display: flex;
        margin: auto;
    }
    .component_compare__section_name {
        display: none;
    }

    .component_compare__tabs_title.active .component_compare__section_name {
        text-align: left;
        display: block;
        margin-top: 3px;
        font-size: 16px;
        font-weight: bold;
    }

    .component_compare__tabs_title:not(.shrink, .active) .component_compare__section_icon {
        display: flex;
    }
    .component_compare__tabs_items {
        padding: 15px 0px 30px 0px;
        background: #FFFFFF;
        box-shadow: 0 0 3px #00000022;
        border-radius: 10px;
    }

    .component_compare__tabs_titles {
        flex-wrap: wrap;
        gap: 0px;
        margin: 0 0 10px;

    }

    .component_compare__section_name,
    .component_compare__tabs_title.shrink .component_compare__section_name {
        display: block;
    }

    .component_compare__section_name {
        display: inline-block;
        max-width: none;
        white-space: nowrap; /* Текст не переносится */
        overflow: hidden; /* Обрезаем всё за пределами блока */
        text-overflow: ellipsis; /* Добавляем многоточие */
    }

    .component_compare__tabs_title, .component_compare__tabs_title.active {
        width: 100%;
        background: white;
        border: 1px solid var(--color-gray-light);
        border-radius: 10px;
        text-align: left;
        padding: 0;
        box-shadow: 0 0 3px #00000011;
        z-index: 3;
        margin: 3px 0;
    }

    .component_compare__section_icon {
        margin-right: 0;
        margin-left: 0;
    }

    .component_compare__tabs_title.active {
        border: none;
        box-shadow: none;
        padding: 0;
        background: none;
    }
    .component_compare__tabs_title.active .component_compare__tabs_title_wrapinn:before{
        content: "";
        display: inline-block;
        width: 16px;
        height: 13px;
        margin-right: 2px;
        background: 0 bottom/16px url("/images/arrow-left-gray.svg") no-repeat;
    }
    .component_compare__tabs_title.active .component_compare__section_icon{
        display: none;
    }


    .component_compare__tabs_title_wrapinn {
        justify-content: flex-start;
        height: 50px;
        padding-left: 5px;
    }
    .component_compare__tabs_item_line2 .component_compare__title{
        padding-left: 15px;
    }
    .component_compare__tabs_item_line2 .component_compare__line2_block_buttons{
        padding-left: 15px;
    }
    .component_compare__tabs_item_line1_top_buttons {
        padding: 0 15px;
    }

    .component_compare__tabs_title.mobile_deleting {
        background: 96% center var(--color-red) url("images/trash-white.svg") no-repeat;
    }

    .component_compare__tabs_title.mobile_deleting .component_compare__tabs_title_wrapinn {
        width: 100%;
        background: #FFFFFF;
        border-radius: 8px;
        margin: 0 0 0 -46px;
    }

    .component_compare__tabs_title.mobile_deleting.--stage40 .component_compare__tabs_title_wrapinn {
        margin: 0 0 0 -40%;
    }

    .component_compare__tabs_title.mobile_deleting.--stage70 .component_compare__tabs_title_wrapinn {
        margin: 0 0 0 -70%;
    }


}

@media (min-width: 481px) {
    .mobile_hidden {
        display: block;
    }
    .pc_hidden {
        display: none;
    }
}

@media (max-width: 480px) {
    .component_compare__tabs_item__arrow.--left {
        left: 0;
    }
    .component_compare__tabs_item__arrow.--right {
        right: 0;
    }
    .component_compare__button_delete_all_lists_wrapper{
        margin: 0 0 10px;
        padding-right: 15px;
        justify-content: flex-start;
    }
    .pc_hidden {
        display: block;
    }
    .mobile_hidden {
        display: none;
    }
    .component_compare {
        padding: 0px;
    }
    .component_compare__tabs_titles {
        width: 100%;
    }
    .component_compare__tabs_item_line1_top_buttons {
        padding: 0 10px;
    }

    .component_compare__card {
        min-width: 262px;
    }

    .component_compare__tabs_item__fog_left,
    .component_compare__tabs_item__fog_right {
        display: none;
    }


    .component_compare__nothing_to_compare_text {
        padding: 0 0 0 10px;
        font-size: calc(14px + 1vw);
    }

    .component_compare__nothing_to_compare {
        background: center 30px/80px url("images/nothing_to_compare.svg") no-repeat;
        padding: 150px 0 50px;
    }


    .component_compare__tabs_title.shrink .component_compare__section_icon {
        margin-right: 5px;
        margin-left: 0;
    }

    .component_compare__tabs_title:not(.shrink, .active) .component_compare__section_icon {
        margin-left: 0;
    }

}

@media (max-width: 415px) {
    .component_compare__tabs_titles {
        padding: 0 15px;
    }

    .sticked_panel.fixed .component_compare__tabs_item_line1 {
        padding-top: 3px;
        padding-bottom: 3px;
    }

    .component_compare {
        overflow: hidden;
        padding: 10px;
        margin: 0 -25px 0;
    }
}


/* new cart popup */
.popup-window.cart_widget_small{
    width: 390px;
    box-sizing: border-box;
    padding: 15px 15px;
    box-shadow: 0 1px 5px #00000055;
    border-radius: 12px;
    background: #FFFFFF;
}
.cart_widget_small__line{
    margin: 10px 0;
}
.cart_widget_small__top{
    padding: 15px 0 7px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #BAC2CA;
}
.cart_widget_small__gray_text{
    color: var(--color-black);
}
.cart_widget_small__small_text{
    font-size: var(--font-size-small-4);
}
.cart_widget_small__bold_text{
     font-weight: 600;
 }
.product_item__name{
    font-weight: 600;
    font-size: var(--font-size-small-2);
    line-height: 1.2;
    color: var(--color-black);
}
.product_item__articul{
    font-weight: 100;
    font-size: var(--font-size-small-4);
    color: var(--color-gray-darker);
    margin-top: 7px;
}
.product_item__badge{
    color: var(--color-red);
    border-radius: 20px;
    background-color: #ffffff;
    position: absolute;
    z-index: 2;
    font-size: var(--font-size-small-4);
}
.product_item__badge{

}
.cart_widget_small__available{
    font-weight: 600;
    font-size: var(--font-size-small-4);
}
.cart_widget_small__close{
     font-weight: 400;
     font-size: var(--font-size-small-4);
 }
.product_item__image{
    display: flex;
    align-items: center;
    justify-content: center;
}
.product_item__image img{
    max-width: 80px;
    height: auto;
 }
.cart_widget_small__product_item{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 30px;
}
.product_item__line3 > div{
    margin: 10px 0;

}
.product_item__price{
    display: flex;
    width: 100%;
    justify-content: space-between;
    font-weight: 600;
    font-size: var(--font-size-small-2);
    color: var(--color-black);
}
.product_item__balls{
     display: flex;
     width: 100%;
     justify-content: space-between;
     font-weight: 400;
     font-size: var(--font-size-small-4);
     color: var(--color-gray-darker);
 }
.cart_widget_small__button.btn {
    background: var(--color-red-dark);
    border: 1px solid var(--color-red-dark);
    border-radius: 10px;
    color: white;
    font-size: var(--font-size-normal);
    font-weight: 600;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    height: auto;
    margin-top: 10px;
}

.cart_widget_small__button.btn:hover {
    background: white;
    border: 1px solid var(--color-red-dark);
    border-radius: 10px;
    color: var(--color-red-dark);
    font-size: var(--font-size-normal);
    font-weight: 600;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    height: auto;
    margin-top: 10px;
}

@media(max-width: 450px){
    .cart_widget_small__product_item {
        gap: 10px;
    }
    .cart_widget_small{
        width: 100%;
        max-width: 390px;
        box-sizing: border-box;
        padding: 0 15px 15px;
        box-shadow: 0 1px 5px #00000055;
        border-radius: 12px;
        background: #FFFFFF;
    }
    .product_item__left{
        flex: 1 0 30%;
    }
    .product_item__name {
        font-size: var(--font-size-small-4);
        line-height: 1.2;
    }
}
@media(max-width: 360px){
    .cart_widget_small__product_item {
        gap: 10px;
    }
    .product_item__left{
        flex: 1 0 25%;
    }

}
/* new cart popup */