:root {
    --color-dark: #312c29;
    --color-gray: #575757;
    --color-gray2: #bdbdbd;
    --color-orange: #ec7633;
}

#page {
    background: #f8f8f8;
}
.header_sticky {
    background: #fff;
}

/* breadcrumbs */
.max-1300 {
    max-width: 1330px;
    padding: 0 15px;
    margin: 0 auto;
}
.breadcrumbs__wrap {
    margin: 35px auto 20px;
}
.breadcrumbs__chain {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.breadcrumbs__chain > li {
    list-style: none;
    margin: 0;
    padding: 0;
}
.breadcrumbs__chain > li > a {
    color: var(--color-gray);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}
.breadcrumbs__chain > li > a:hover {
    color: var(--color-orange);
}
.breadcrumbs__chain > li > span {
    color: var(--color-gray);
    font-size: 14px;
    font-weight: 400;
}
.max-1300 h1 {
    color: var(--color-dark);
    font-size: 47px;
    font-weight: 600;
    line-height: normal;
}

.breadcrumbs__wrap .breadcrumbs a,
.breadcrumbs__wrap .breadcrumbs {
    color: var(--color-gray);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}
.breadcrumbs__wrap .breadcrumbs a:hover {
    color: var(--color-orange);
}
/* end breadcrumbs */

/* catalog */
.catalog {
    margin: 23px auto 120px;
}
.page__title_wrap {
    margin: 0 0 36px;
    width: 100%;
}
.page__title_wrap > h1 {
    margin: 0;
}
.tabs__catalog {
    margin: 36px 0 75px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.tab__catalog {
    width: calc(50% - 5px);
    border-radius: 5px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    height: 52px;
    cursor: pointer;
}
.tab__catalog:hover {
    background: var(--color-dark);
}
.tab__catalog:hover > span {
    color: #fff;
}
.tab__catalog > span {
    color: var(--color-dark);
    text-align: center;
    font-size: 15px;
    font-weight: 500;
}
.tab__catalog.active {
    background: var(--color-dark);
    cursor: alias;
}
.tab__catalog.active > span {
    color: #fff;
    font-weight: 600;
}

.area_tab__catalog {
    margin: 70px 0 0;
    transition: all 0.3s;
    overflow: hidden;
}
.model__line {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 23px;
}
.model__line_el {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 150px;
    height: 52px;
    padding: 2px 5px;
    margin: 0 7px 12px 0;
    border-radius: 5px;
    border: 1px solid var(--color-gray2);
    transition: all 0.2s;
    color: var(--color-gray);
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
}
.model__line_el:hover {
    background: var(--color-orange);
    border: 1px solid var(--color-orange);
    color: #fff;
}
.model__line_el.active {
    background: var(--color-orange);
    border: 1px solid var(--color-orange);
    color: #fff;
    font-weight: 600;
}
.model__line_el.active {
    cursor: alias;
}
.wrap__products {
    margin: 0;
}
.wrap__product {
    border-radius: 5px;
    background: #fff;
    width: 100%;
    padding: 0;
    display: flex;
    position: relative;
    margin-bottom: 25px;
    opacity: 1;
    visibility: visible;
    height: auto;
    transition: opacity 0.2s;
}
.wrap__product_hide {
    opacity: 0 !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    display: none;
}
.label__sale {
    position: absolute;
    top: 21px;
    left: 20px;
    padding: 7px 20px 5px;
    border-radius: 5px;
    background: #6ba96e;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    z-index: 3;
}
.product__slider_wrap {
    padding: 40px 15px 40px 31px;
    margin: 0;
    width: 490px;
    position: relative;
}
.product__desc_wrap {
    padding: 65px 38px 64px 10px;
    width: calc(100% - 349px - 490px);
}
.product__desc_wrap__single {
    padding: 154px 38px 64px 10px;
}
.heading-product {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: #575757;
}
.area_tab__catalog_term .product__desc_wrap {
    padding: 40px 41px 49px 10px;
}
.title__product {
    margin: 0 0 25px;
    max-width: 360px;
}
.title__product > a {
    color: var(--color-dark);
    font-size: 22px;
    font-weight: 600;
    transition: all 0.2s;
    text-decoration: none;
    line-height: 1.2;
}
.title__product > a:hover {
    color: var(--color-orange);
}
.product__insale_mob {
    display: none;
}
.product__desc {
    display: grid;
    grid-template-columns: minmax(30px, 330px) minmax(max-content, 1fr);
    row-gap: 15px;
    column-gap: 5px;
    line-height: 1.2;
}
.product__desc_row {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.product__desc_title {
    color: var(--color-dark);
    font-size: 15px;
    font-weight: 500;
    width: auto;
    background: #fff;
    position: relative;
    z-index: 1;
    max-width: 200px;
    display: block;
    padding-right: 6px;
}
.area_tab__catalog_term .product__desc_title {
    max-width: 500px;
}
.separator_product__desc {
    border-bottom: 1px dashed var(--color-gray2);
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 15px;
    z-index: 0;
}
.product__desc_value {
    color: var(--color-dark);
    font-size: 15px;
    font-weight: 500;
    width: auto;
}
.product__price_wrap {
    margin: 0;
    padding: 48px 35px 38px 38px;
    border-left: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 349px;
}
.product__price_area {
}
.product__price {
    display: flex;
    align-items: center;
    margin: 0 0 6px 0;
}
.main_product__price {
    color: var(--color-dark);
    font-size: 28px;
    font-weight: 600;
}
.main_product__price.sale {
    color: var(--color-orange);
}
.main_product__price_default {
    font-size: 28px;
    color: var(--color-dark);
    font-weight: 600;
}
.old_product__price {
    color: var(--color-gray);
    font-size: 16px;
    display: block;
    margin-left: 9px;
    text-decoration: line-through;
}
.product__insale {
    display: flex;
    align-items: center;
    margin: 0 0 15px 0;
}
.product__share {
    max-width: 108px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    cursor: pointer;
    position: relative;
    padding-bottom: 5px;
}
.product__share svg {
    width: 15px;
    height: 15px;
}
.product__share > span {
    color: #4f4f4f;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
}
.product__share-box {
    top: 25px;
    position: absolute;
    background-color: #fff;
    padding: 22px 28px;
    border-radius: 5px;
    border: 2px solid #fad727;
    z-index: 10;
    cursor: default;
    width: 330px;
    left: -30px;
    display: none;
}

@media screen and (max-width: 576px) {
    .product__share-box {
        left: 0;
    }
}
.product__share:hover .product__share-box {
    display: block;
}
.product__share-social {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 10px;
}

.product__share-input {
    padding: 10px;
    border: 1px solid #e5e5e5;
    outline: none;
    font-size: 14px;
    color: #000;
    width: 100%;
}
.product__share-btn {
    margin-top: 10px;
    background-color: transparent;
    border: 0;
    color: #0078d7;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
}
.product__share-social svg {
    width: 40px;
    height: 40px;
}
.link__gallery_slider {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px;
}
.area_tab__catalog_term .link__gallery_slider {
    padding-bottom: 0;
}
.product__insale > span {
    display: block;
    margin-left: 8px;
    color: var(--color-dark);
    font-size: 14px;
    font-weight: 500;
}
.btn__product_wrap .qty {
    margin-bottom: 10px;
}

.btn__product_buy {
    border-radius: 5px;
    background: var(--color-orange);
    height: 52px;
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    justify-content: center;
    border: none;
    transition: all 0.2s;
}
.color-green {
    background-color: #6ba96e;
}
.none {
    display: none;
}
.btn__product_buy:hover {
    transform: translateY(-4px);
}
.block-wrapp-button-buy {
    display: flex;
    gap: 10px;
}
.block-wrapp-button-buy .qty {
    height: 52px;
}
.btn__product_detail {
    width: 100%;
    border-radius: 5px;
    border: 1px solid var(--color-orange);
    color: var(--color-dark);
    height: 52px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.btn__video {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.btn__video > span {
    display: block;
    max-width: 134px;
    width: 100%;
    color: var(--color-dark);
    font-size: 14px;
    font-weight: 500;
    margin-left: 12px;
}
.slider__product {
    height: 100%;
}
.slick-nav .slick-dots {
    bottom: 0;
    margin: 0 14px;
}
.slick-nav .slick-dots li {
    width: 8px;
    height: 8px;
    margin: 0 3px;
}
.slick-nav .slick-dots button {
    width: 8px;
    height: 8px;
    margin: 0;
    padding: 0;
}
.slick-nav .slick-dots button:before {
    width: 8px;
    height: 8px;
    content: "";
    opacity: 1;
    background: #d9d9d9;
    border-radius: 10px;
}
.slick-nav .slick-dots li.slick-active button:before {
    background: #ec7633;
}
.slick-nav {
    width: auto;
    position: absolute;
    bottom: 31px;
    right: 15px;
    left: 31px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slick-nav .slick-prev,
.slick-nav .slick-next {
    transform: none;
    position: static;
    width: auto;
    height: auto;
}
.slick-nav .slick-prev::before,
.slick-nav .slick-next::before {
    content: none;
}
.slick-nav .slick-dots {
    width: auto;
    position: static;
    display: flex;
    order: 2;
}
.slick-nav .slick-prev {
    order: 1;
}
.slick-nav .slick-next {
    order: 3;
}
.slick-slide img {
    margin: 0 auto;
}
.area_tab__catalog_term {
    display: none;
}
@media (max-width: 1200px) {
    .product__slider_wrap {
        width: 370px;
        padding: 40px 5px 40px 21px;
    }
    .product__desc_wrap,
    .area_tab__catalog_term .product__desc_wrap {
        width: calc(100% - 320px - 370px);
        padding: 67px 20px 64px 10px;
    }
    .product__price_wrap {
        width: 350px;
    }
    .slick-nav {
        right: 5px;
        left: 21px;
    }
}
@media (max-width: 991px) {
    .wrap__product {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 20px;
    }
    .product__slider_wrap {
        width: 100%;
        padding: 20px;
    }
    .product__price_wrap {
        width: 50%;
        padding: 60px;
    }
    .product__desc_wrap,
    .area_tab__catalog_term .product__desc_wrap {
        width: 50%;
        padding: 60px 30px 60px 30px;
    }
}
@media (max-width: 768px) {
    .product__desc_wrap,
    .area_tab__catalog_term .product__desc_wrap {
        width: 100%;
        padding: 14px 25px 14px 20px;
    }
    .product__desc {
        grid-template-columns: minmax(30px, 700px) minmax(max-content, 1fr);
        row-gap: 10px;
    }
    .title__product {
        margin: 0 0 10px;
    }
    .title__product > a {
        font-size: 16px;
    }
    .product__insale_mob {
        display: flex;
        margin-bottom: 17px;
    }
    .product__insale_mob span {
        font-size: 13px;
        font-weight: 500;
        display: block;
        margin-left: 8px;
        color: var(--color-dark);
    }
    .product__desc_value,
    .product__desc_title {
        font-size: 13px;
    }
    .label__sale {
        top: 15px;
        left: 15px;
        padding: 7px 15px;
        font-size: 12px;
    }
    .separator_product__desc {
        top: 14px;
    }
    .slick-nav .slick-prev,
    .slick-nav .slick-next {
        display: none !important;
    }
    .slick-nav {
        left: 5px;
        bottom: 6px;
    }
    .product__slider_wrap {
        padding: 15px 15px 0;
    }
    .product__price_wrap {
        width: 100%;
        padding: 10px 20px 22px;
        border: none;
    }
    .product__insale {
        display: none;
    }
    .main_product__price {
        font-size: 18px;
    }
    .old_product__price {
        font-size: 14px;
    }
    .product__price {
        margin: 0 0 18px 0;
    }
    .btn__product_detail {
        display: none;
    }
    .btn__product_buy {
        height: 45px;
        margin: 0;
    }
    .btn__video {
        position: absolute;
        top: 15px;
        right: 15px;
    }
    .btn__video > span {
        display: none;
    }
    .btn__video > svg {
        width: 32px;
        height: 32px;
    }
    .model__line {
        flex-wrap: nowrap;
        overflow-x: scroll;
        padding-bottom: 10px;
    }
    .model__line_el {
        white-space: nowrap;
        margin: 0 3px 0 0;
        font-size: 13px;
        height: 40px;
    }
    .breadcrumbs__chain > li > a,
    .breadcrumbs__chain > li > span {
        font-size: 12px;
    }
    .breadcrumbs__wrap .breadcrumbs a,
    .breadcrumbs__wrap .breadcrumbs {
        font-size: 12px;
    }
    .tab__catalog {
        background: transparent !important;
        height: auto;
        border-radius: 0;
        width: 50%;
        transition: all 0.1s;
    }
    .tab__catalog > span {
        color: var(--color-gray);
        font-size: 14px;
        display: block;
        padding: 0 0 11px;
        width: 100%;
        border-bottom: 2px solid #bdbdbd;
        transition: all 0.1s;
    }
    .tab__catalog.active,
    .tab__catalog:hover {
        color: var(--color-orange);
        border-bottom: 3px solid var(--color-orange);
    }
    .tab__catalog.active > span,
    .tab__catalog:hover > span {
        color: var(--color-orange);
        font-size: 14px;
        border-bottom: 2px solid var(--color-orange);
    }
    .page__title_wrap {
        margin: 0 0 22px;
    }
    .tabs__catalog {
        margin: 22px 0 29px;
    }
    .area_tab__catalog {
        margin: 29px 0 0;
    }
}

.product__item .wrap__product {
    margin-bottom: 17px;
}
.detail__tab_spec {
    display: none;
}
.detail__desc {
    display: flex;
    justify-content: space-between;
    margin-bottom: 90px;
}
.detail__left_area {
    width: 350px;
}
.detail__tab_area {
    width: calc(100% - 389px);
    padding: 18px 0 0 0;
}
.detail__tab_wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--color-gray2);
}
.detail__tab {
    padding: 0 8px 13px;
    margin-right: 26px;
    font-weight: 500;
    color: var(--color-dark);
    transition: all 0.2s;
    position: relative;
    font-size: 16px;
    cursor: pointer;
}
.detail__tab:hover {
    color: var(--color-orange);
}
.detail__tab.active {
    color: var(--color-orange);
}
.detail__tab::before {
    left: 0;
    right: -2;
    bottom: -2px;
    content: "";
    background: transparent;
    height: 5px;
    transition: all 0.2s;
    position: absolute;
}
.detail__tab.active::before {
    background: var(--color-orange);
    opacity: 1;
}
.detail__tab_content {
    width: 100%;
    color: var(--color-dark);
    padding: 29px 0;
    font-size: 17px;
    font-weight: 400;
    line-height: 150%;
}
.detail__tab_content p {
    font-size: 17px;
    font-weight: 400;
    line-height: 150%;
    color: var(--color-dark);
    margin: 0 0 26px;
}
.detail__tab_content b {
    font-weight: 600;
}
.detail__tab_content ul {
    padding: 0 0 0 26px;
}
.detail__tab_content li {
    margin: 0 0 9px;
}
.detail__delivery_area,
.detail__pay_area {
    border-radius: 5px;
    background: #fff;
    margin-bottom: 16px;
    padding: 25px 41px 17px 33px;
}
.desc_text_wrap {
    display: flex;
    margin-bottom: 15px;
}
.img_detail__text {
    width: 41px;
    padding: 0 16px 0 0;
    height: 25px;
}
.title_detail_area {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 16px;
}
.text__desc_title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 2px;
}
.text__desc_desc {
    font-size: 14px;
    margin: 0 0 3px;
}
.detail__tab_content .read_more_content {
    display: none;
}
@media (max-width: 991px) {
    .detail__tab_area {
        width: calc(100% - 320px);
    }
    .detail__tab_area,
    .detail__left_area {
        width: 100%;
    }
    .detail__desc {
        flex-wrap: wrap;
    }
    .detail__tab_content {
        max-height: 238px;
        position: relative;
        transition: all 0.2s;
        overflow: hidden;
        padding: 21px 0 70px;
    }
    .detail__tab_content::after {
        height: 75px;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 2;
        content: "";
        background: linear-gradient(0deg, rgba(248, 248, 248, 1) 70%, rgba(255, 0, 0, 0) 100%);
    }
    .detail__tab_content .read_more_content {
        position: absolute;
        bottom: 34px;
        left: 0;
        color: var(--color-orange);
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        text-decoration-line: underline;
        display: block;
        z-index: 3;
    }
}
@media (max-width: 768px) {
    .max-1300 h1 {
        font-size: 24px;
    }
    .detail__tab_area .detail__tab_content,
    .detail__tab,
    .detail__tab_area .detail__tab_content p {
        font-size: 14px;
    }
}

.container_items {
    max-width: 1080px;
    margin: 0 auto 0 0;
}
.cart_item__wrap {
    display: flex;
    background: #fff;
    padding: 5px 40px 5px 8px;
    width: 100%;
}
.img_item_cart {
    display: flex;
    align-items: center;
    justify-content: center;
}
.img_item_cart img {
    height: 200px;
    max-width: 200px;
    object-fit: contain;
    margin-right: 20px;
}
.name_item_cart {
    display: flex;
    align-items: center;
}
.price_item_cart {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.quantity_item_cart {
    display: flex;
    align-items: center;
}
.final_price_item_cart {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 22px;
    font-weight: 600;
    color: var(--color-dark);
}
.name__item {
    color: var(--color-dark);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}
.name__item:hover {
    color: var(--color-orange);
}
.old_price_item {
    text-decoration: line-through;
    font-size: 14px;
    color: var(--color-gray);
    margin: 0 0 9px 0;
}
.sale_price_item {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-orange);
    margin: 0 0 3px 0;
}
.desc_price_item {
    font-size: 14px;
    color: var(--color-dark);
}

#products .table table td.few {
    padding: 20px 4px 30px;
}
#products .table table td.summa {
    padding: 20px 10px 30px;
}
#products .table table td.price {
    padding: 30px 10px 20px;
}
.item__cart td.photo {
    border-radius: 5px 0px 0px 5px !important;
}
.item__cart td.summa {
    border-radius: 0px 5px 5px 0px !important;
}

.item__cart {
    border-bottom: 15px solid #f7f7f7 !important;
}
#products .table table > tbody > tr:hover {
    border: none !important;
}
#products .table table > tbody > tr.item__cart:hover {
    border: none !important;
    border-bottom: 15px solid #f7f7f7 !important;
}
.item__cart td {
    background: #fff !important;
}

.item__cart .quantity_inner .bt_minus svg,
.item__cart .quantity_inner .bt_plus svg {
    stroke-width: 0px;
    margin: 13px 12px;
}

.item__cart .quantity_inner {
    border: 2px solid #e0e0e0;
}
.item__cart .quantity_inner .quantity {
    color: var(--color-dark);
}
.quantity_inner .bt_minus,
.quantity_inner .bt_plus,
.quantity_inner .quantity {
    height: 47px;
    width: 46px;
}
.item__cart td.photo img {
    background: transparent !important;
    padding: 0 !important;
    height: 200px !important;
    max-width: 200px !important;
    object-fit: contain !important;
    width: 100% !important;
}
.item__cart td.photo {
    width: 228px !important;
    padding: 5px 20px 5px 8px !important;
}
.item__cart td.name {
    font-size: 18px !important;
    font-weight: 500 !important;
}
.item__cart td.price {
    width: 15% !important;
}
.item__cart td.summa {
    width: 15% !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    color: var(--color-dark);
}
.old_product__price_cart {
    text-decoration: line-through;
    font-size: 14px;
    color: var(--color-gray);
    margin: -20px 0 7px;
    display: block;
    font-weight: 400;
}
.new_product__price_cart {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-orange);
    margin: 0 0 2px;
    display: block;
}
.product__price_cart {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0 0 2px;
    display: block;
}
.product__desc_cart {
    font-size: 14px;
    color: var(--color-dark);
    display: block;
    font-weight: 400;
}

@media (min-width: 768px) {
    .cart_section {
        min-height: calc(100% - 912px);
        height: auto;
    }
}
@media (min-width: 1200px) {
    .cart_section {
        min-height: calc(100% - 710px);
    }
}
@media (min-width: 1440px) {
    .cart_section {
        min-height: calc(100% - 665px);
    }
}

.btn_order {
    border-radius: 5px;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    background: var(--color-orange);
    transition: all 0.2s;
    opacity: 1;
    text-decoration: none;
    padding: 16px;
    max-width: 275px;
    width: 100%;
    display: block;
    margin: 0 0 0 auto;
}
.btn_order:hover {
    opacity: 0.9;
    color: #fff;
}
.cart_section .products__summa {
    margin-bottom: 30px;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.cart_section .itogo {
    color: var(--color-dark);
    font-weight: 600;
    font-size: 30px;
}
.itog__cart {
    margin-top: 20px;
}

@media (max-width: 500px) {
    .item__cart td.photo {
        width: 140px !important;
        padding: 18px 28px 0px 17px !important;
    }
    .item__cart td.photo img {
        height: 95px !important;
        max-width: 95px !important;
    }
    #products .table table td.name {
        width: calc(100% - 140px);
        padding: 25px 15px 60px 0;
    }
    .item__cart td.price {
        width: 100% !important;
        padding: 0 15px 10px 140px !important;
    }
    .old_product__price_cart {
        margin: -40px 0 7px;
        line-height: normal;
    }
    .new_product__price_cart,
    .product__desc_cart {
        line-height: normal;
    }
    #products .table table .item__cart td.few {
        width: 100%;
        padding: 10px 15px 7px 140px;
    }
    .item__cart td.summa {
        width: 100% !important;
        padding: 10px 15px 22px 140px !important;
    }
    .product__price_cart {
        margin: -40px 0 2px;
        line-height: normal;
    }

    #products .table table > tbody > tr.item__cart {
        padding: 0;
        border: none !important;
        margin-bottom: 15px;
    }
    #products .table table > tbody > tr.item__cart:hover {
        border: none !important;
    }
    .cart_section .itog__cart .itogo {
        font-size: 24px;
        line-height: normal;
    }
    .cart_section .btn_order {
        width: 100%;
        max-width: none;
    }
}

.loading_wrap {
    display: none;
}
.loading_wrap.active {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.preloader__image {
    width: 70px;
    height: 70px;
    text-align: center;
    animation: preloader-rotate 2s infinite linear;
}

@keyframes preloader-rotate {
    100% {
        transform: rotate(360deg);
    }
}
div.fancybox__backdrop {
    /*background: rgba(255, 255, 255, 0.6);*/
}
.slider__product2 picture img {
    max-width: 352px;
    max-height: 352px;
}
