@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-BlackItalic.ttf") format("truetype");
    font-weight: 900;
    font-style: italic;
}
@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-ExtraBoldItalic.ttf") format("truetype");
    font-weight: 800;
    font-style: italic;
}
@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-ExtraLightItalic.ttf") format("truetype");
    font-weight: 200;
    font-style: italic;
}
@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
}
@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-SemiBoldItalic.ttf") format("truetype");
    font-weight: 600;
    font-style: italic;
}
@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-ThinItalic.ttf") format("truetype");
    font-weight: 100;
    font-style: italic;
}
:root {
    --akrill: #017372;
    --akrillLight: #019190;
    --akrillDark: #014b4a;
    --grey: #999;
    --text-gray: #888;
    --br: 3px;
    --gap: 32px;
    --black: #000000;
    --black-text: #383838;
    --dark-gray: #777;
    --white: #fff;
    --akrilltext: #005a59;
    --akrill-border: #198e89;
    --white-gray: #fafafa;
    --black-title: #333333;
    --white-border: #ececec;
    --lenght-gray: #b3b3b3;
    --input-border: #f2f2f2;
    --basket-text: #20201e;
    --form-input: #ededed;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Montserrat, Arial, sans-serif;
    /* font-family: emoji; */
    letter-spacing: 1px;
    font-size: 16px;
}

.container {
    width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.flexBlock {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media only screen and (max-width: 1550px) {
    .container {
        width: 1200px;
    }
}
@media only screen and (max-width: 1220px) {
    .container {
        width: 1000px;
    }
}
@media only screen and (max-width: 1020px) {
    .container {
        width: 800px;
    }
}

/* body:after{
    position: fixed;
    width: 100%;
    height: 100vh;
    content: "";
    background: #ffffff;
    left: 0;
    top: 0;
    display: block;
    z-index: -1;
} */

a {
    text-decoration: none;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

h1,
.h1 {
    font-size: 40px;
}

.h2 {
    margin: 31px 0 23px;
    font-size: 36px;
}
h2 {
    font-size: 36px;
}

h2.parent-section a {
    font-size: 28px;
}

.flex {
    display: flex;
}
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-column {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.sect {
    margin: 40px 0;
}

.t14 {
    font-size: clamp(10px, 2vw + 4px, 14px);
}

.linkB {
    font-size: 0.667em;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--grey);
    transition: 300ms;
    cursor: pointer;
    gap: 15px;
}
.linkB svg {
    transition: 300ms;
    fill: var(--grey);
}
.linkB:hover {
    color: var(--akrill);
}
.linkB:hover svg {
    fill: var(--akrill);
}

.icon {
    fill: var(--grey);
    fill-rule: evenodd;
    transition: 300ms;
}
.icon:hover {
    fill: var(--akrillDark);
}

.shedowBox {
    position: relative;
}

.shedowBox .hoverShedow {
    position: absolute;
    left: 0;
    top: 0;
    transition: 500ms;
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    transition: 300ms;
}

.shedowBox .hoverShedow::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    z-index: 1;
    /*background: linear-gradient(180deg, #00000099 0%, rgba(0, 0, 0, 0.5) 100%);*/
}

.shedowBox .hoverShedow::before {
    opacity: 0;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    z-index: 11;
}
.shedowBox:hover .hoverShedow {
    transform: scale(1.1);
}
.shedowBox:hover .hoverShedow::after {
    opacity: 0;
}
.shedowBox:hover .hoverShedow::before {
    opacity: 1;
}

.shine {
    position: relative;
    overflow: hidden;
}
.shine:before {
    position: absolute;
    top: 0;
    left: -45%;
    z-index: 2;
    display: block;
    content: "";
    width: 25%;
    height: 100%;
    opacity: 0;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
}
.shine:hover::before {
    animation: shine 0.5s;
    opacity: 1;
}
@keyframes shine {
    100% {
        left: 125%;
    }
}

.t-xxs {
    font-size: 0.733em;
    line-height: 1.273em;
    color: #999;
}

button {
    cursor: pointer;
    border: none;
}

.button {
    border-radius: var(--br);
    background: var(--akrill);
    color: #fff;
    text-transform: uppercase;
    padding: 12px 21px;
    font-size: 16px;
    transition: 300ms;
    cursor: pointer;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.button:hover {
    background: var(--akrillLight);
}
.button.-l {
    background: #fff;
    color: #333;
    border: 2px solid #eef0f4;
    max-height: 60px;
    gap: 16px;
}
.button.-l svg {
    fill: #d5d5d5;
    opacity: 0.8;
}
.button.-l:hover {
    background: var(--akrill);
    color: #fff;
}

li {
    text-decoration: none;
    list-style: none;
}

.tabMenu {
    cursor: pointer;
    color: var(--grey);
    margin-left: 15px;
    position: relative;
    overflow: hidden;
}
.tabMenu_items {
    position: absolute;
    left: -5px;
    top: -5px;
    opacity: 0;
}
.tabMenu_items a {
    color: var(--akrillLight);
}
.tabMenu_item {
    padding: 5px;
    background: #fff;
}
.tabMenu_item:hover {
    background: var(--akrill);
}
.tabMenu_item:hover a {
    color: #fff;
}
.tabMenu:hover {
    overflow: visible;
}
.tabMenu:hover .tabMenu_items {
    opacity: 1;
}

.breadcrumbs {
    margin: var(--gap) 0;
    display: flex;
    gap: 15px;
}
.breadcrumbs_item {
    color: #b6b5b5;
    font-size: 0.867em;
    line-height: 1.692em;
    display: flex;
    gap: 15px;
    align-items: center;
    transition: 300ms;
}
.breadcrumbs_item:hover:not(.end) {
    color: var(--akrill);
}
.breadcrumbs_item:not(:last-child)::after {
    content: "";
    display: block;
    width: 14px;
    height: 2px;
    background: #b6b5b5;
    opacity: 0.8;
    pointer-events: none;
}

/*# sourceMappingURL=style.css.map */
.header {
    height: 14vh;
    min-height: 150px;
    background: #ffffff;
}

.header_logoMenu {
    height: 82px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}
.header_logoMenu_contact {
    padding: 30px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}
.header_logoMenu_contact-numbertel {
    overflow: hidden;
    position: relative;
}
.header_logoMenu_contact-numbertel a {
    color: #222;
    white-space: nowrap;
    font-weight: 600;
    display: flex;
    flex-direction: column;
}
.header_logoMenu_contact-numbertel a span {
    margin-top: 3px;
    font-weight: 500;
    font-size: 12px;
    white-space: wrap;
}
.header_logoMenu_contact-numbertel_pop {
    opacity: 0;
    position: absolute;
    display: flex;
    flex-direction: column;
    left: 0;
    top: 0;
    z-index: 15;
    background-color: #fff;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2);
    transition: 150ms;
}
.header_logoMenu_contact-numbertel_pop .more_phone {
    padding: 15px;
    width: 300px;
    cursor: pointer;
    border: 1px solid #f2f2f2;
}
.header_logoMenu_contact-numbertel_pop .more_phone:hover {
    background: #fafafa;
}
.header_logoMenu_contact-numbertel:hover {
    overflow: visible;
}
.header_logoMenu_contact-numbertel:hover .header_logoMenu_contact-numbertel_pop {
    opacity: 1;
}
.header_logoMenu_logo {
    width: 190px;
    justify-self: center;
}
.header_logoMenu_logo img {
    width: 100%;
}
.header_logoMenu_menu {
    display: flex;
    justify-content: flex-end;
}
.header_logoMenu_menu div {
    cursor: pointer;
}
.header_logoMenu_menu-account {
    margin: 0 30px;
}
.header_logoMenu_menu-counts {
    margin: 0 15px !important;
    display: flex;
    gap: 8px;
}

.header_tableMenu {
    background: var(--akrill);
}
.header_tableMenu_list {
    display: grid;
    grid-template-columns: repeat(9, auto);
}
.header_tableMenu_list_item {
    gap: 15px;
    text-transform: uppercase;
    color: #fff;
    background: var(--akrill);
    transition: 300ms;
    min-height: 62px;
    width: 100%;
    text-wrap: nowrap;
    font-size: 14px;
    font-weight: 600;
}
.header_tableMenu_list_item.active {
    background: var(--akrillDark);
}
.header_tableMenu_list_item.active:hover {
    background: var(--akrillDark);
}
.header_tableMenu_list_item svg {
    fill: #fff;
    opacity: 0.5;
}
.header_tableMenu_list_item:hover {
    background: var(--akrillLight);
    color: var(--white);
    text-decoration: none;
}
.header_tableMenu_list_item:hover svg {
    opacity: 1;
}

.burger {
    display: none;
}

.openPhone {
    width: 32px;
    height: 40px;
    padding: 4px;
    display: none;
}

.openPhone svg {
    width: 100%;
    height: 100%;
}
.footer {
    background: #ededed;
    padding: 80px 0 70px;
}
.footer .container .top_part {
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
    border-bottom: 1px solid #019190;
}
@media screen and (max-width: 1024px) {
    .footer .container .top_part {
        flex-direction: column;
        gap: 40px;
    }
}
.footer .container .top_part .left .all_link {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 65px;
}
@media screen and (max-width: 1024px) {
    .footer .container .top_part .left .all_link {
        gap: 20px;
        margin-top: 30px;
    }
}
.footer .container .top_part .left .all_link .elem {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: #20201e;
    transition: 0.3s;
}
.footer .container .top_part .left .all_link .elem:hover {
    color: #019190;
}
@media screen and (max-width: 700px) {
    .footer .container .top_part .left .all_link .elem {
        font-size: 16px;
    }
}
.footer .container .top_part .right .title {
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    color: #20201e;
    margin-bottom: 30px;
}
@media screen and (max-width: 1550px) {
    .footer .container .top_part .right .title {
        font-size: 30px;
    }
}
.footer .container .top_part .right .form_part {
    width: 900px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
@media screen and (max-width: 1550px) {
    .footer .container .top_part .right .form_part {
        width: 500px;
    }
}
@media screen and (max-width: 1024px) {
    .footer .container .top_part .right .form_part {
        gap: 20px;
        width: 100%;
    }
}
.footer .container .top_part .right .form_part .name_and_phone,
.footer .container .top_part .right .form_part .title_and_mail {
    display: flex;
    gap: 20px;
}
@media screen and (max-width: 1024px) {
    .footer .container .top_part .right .form_part .name_and_phone,
    .footer .container .top_part .right .form_part .title_and_mail {
        flex-direction: column;
        gap: 16px;
    }
}
.footer .container .top_part .right .form_part .name_and_phone .field,
.footer .container .top_part .right .form_part .title_and_mail .field {
    width: 100%;
}
@media screen and (max-width: 1024px) {
    .footer .container .top_part .right .form_part .name_and_phone .field,
    .footer .container .top_part .right .form_part .title_and_mail .field {
        height: 40px;
    }
}
@media screen and (max-width: 1024px) {
    .footer .container .top_part .right .form_part textarea.gray_green {
        height: 80px;
    }
}
.footer .container .top_part .right .form_part .question_group {
    width: 100%;
}
.footer .container .top_part .right .form_part .question_group .question_text {
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: #000;
    margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
    .footer .container .top_part .right .form_part .question_group .question_text {
        font-size: 16px;
    }
}
.footer .container .top_part .right .form_part .politika_and_button {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 20px;
}
@media screen and (max-width: 1220px) {
    .footer .container .top_part .right .form_part .politika_and_button {
        flex-direction: column;
    }
    .footer .container .top_part .right .form_part .politika_and_button .button {
        margin-left: auto;
    }
}
.footer .container .top_part .right .form_part .politika_and_button .politika_text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    text-align: right;
    color: #000;
    width: 55%;
}
@media screen and (max-width: 1550px) {
    .footer .container .top_part .right .form_part .politika_and_button .politika_text {
        width: 100%;
    }
}
.footer .container .top_part .right .form_part .politika_and_button .politika_text .politika_link {
    text-decoration: underline;
    color: #019190;
}
.page-top {
    padding-top: 42px;
}
.box-shadow,
.box-shadow-sm {
    transition:
        transform ease 0.2s,
        box-shadow ease 0.2s;
}

.side-block__top {
    padding: 40px 15px 15px;
}

.text-center {
    text-align: center;
}

.side-block__bottom--last {
    margin: 7px -1px -1px;
}

.side-block__bottom {
    position: relative;
}

.side-block__bottom--last:before {
    top: 0;
    height: 1px;
}

.side-block__bottom:before {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    background: #ececec;
    z-index: 2;
}

.svg + .side-block__text {
    margin: 12px 0 0;
}

.side-block__bottom--last:before {
    top: 0;
    height: 1px;
}

.side-block__bottom:before {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    background: #ececec;
    z-index: 2;
}

.btn.btn-transparent {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #000000;
}

.side-block__bottom--last .btn {
    border-radius: 0 0 3px 3px;
}

.side-block__bottom .btn {
    padding-top: 20px;
    padding-bottom: 18px;
    position: relative;
    z-index: 3;
    text-align: center;
}

.font_upper {
    font-size: 0.667em;
    line-height: 1.3em;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.btn-wide {
    display: block;
}

.btn-lg {
    padding: 16px 26px 16px;
}

a:hover,
a:focus {
    color: inherit;
    text-decoration: inherit;
}

.btn {
    font-size: 0.7333em;
    font-weight: normal;
    text-transform: uppercase;
    text-decoration: none;
    margin: 0px;
    border: 1px solid;
    letter-spacing: 0.8px;
    border-radius: 3px;
    padding: 12px 21px 11px;
    overflow: hidden;
    transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -ms-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    -webkit-transition: background-color 0.3s ease;
}

a.pull-right.btn.btn-default.btn-md {
    float: none !important;
    max-width: 200px;
}

.bx-soa-more-btn.col-xs-12 {
    float: none !important;
    display: flex;
    justify-content: flex-end;
}

.has-ripple {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.container_inner.clearfix {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1440px;
    margin-top: 40px;
}

.sticky-sidebar__inner {
    position: sticky;
    top: 150px;
}

.side-block__text {
    color: #777;
    text-align: center;
    max-width: 300px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 15px;
    margin: 12px 0 0;
}

.button-left-panel:hover {
    background-color: #019190;
    border-color: #019190;
    color: #ffffff;
}

.bordered {
    border: 1px solid #ececec;
    max-width: 245px;
}

.footer_link_right_soc.smallIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.video-container {
    max-width: 1060px;
    height: 600px;
    margin: 0;
}

.image-container {
    max-width: 1060px;
    margin: 0;
}
.wrapper_inner,
.maxwidth-theme {
    padding: 0px 30px;
    /* margin:0 auto; */
    background: #fff;
    float: none;
}

/* catalog.element */
.active-icon {
    opacity: 0.2;
    transition: 0.3s ease;
}

.gallery-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 30px;
}

.gallery-list {
    max-width: 450px;
    max-height: 450px;
    margin: auto;
}

.catalogChildList-cart_availability_text {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.catalogChildList-cart_availability_text:before {
    content: "●";
    font-size: 24px;
}
.catalogChildList-cart_availability.-yes {
    color: #5fa800;
}

.catalogChildList-cart_availability.-no {
    color: #e10000;
}

.tab-pane--buy {
    color: var(--dark-gray);
    font-size: 15px;
    font-weight: 400;
}

.element-tabs {
    margin-bottom: 39px;
}

.product-detail-gallery__container {
    height: 1016px;
}

.product-info-headnote__rating {
    padding: 5px 19px;
    display: inline-block;
    vertical-align: middle;
}

.pull-left {
    margin-right: 10px;
}

.item-stock {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 20px;
    max-width: 243px;
}

.like_icons-flex {
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.like_icons.list.icons.long div span {
    height: 36px;
    line-height: 36px;
    padding: 0px;
}

.rating {
    height: 20px;
}

.product-info-headnote__inner {
    margin: 0 -19px;
}

.quantity_block_wrapper .cheaper_form svg path,
.table_sizes svg path {
    fill: #999;
}

.wish_item,
.compare_item {
    display: flex;
    width: 36px;
    border: 1px solid;
    height: 36px;
    margin: 1px 0 0 0;
    align-items: center;
    justify-content: center;
}

.wish_item_button,
.compare_item_button {
    border: 1px solid #eee;
    border-radius: 5px;
    cursor: pointer;
}

.wish_item svg path,
.compare_item svg path {
    fill: #999;
}

.small-price-find {
    font-size: 12px;
    color: var(--dark-gray);
    cursor: pointer;
}

.flexbox {
    display: flex;
    justify-content: space-between;
}

.product-info {
    padding: 27px 39px 39px;
    max-width: 900px;
    flex-wrap: wrap;
    align-items: center;
    background: #ffffffb8;
    border: 0;
}

.product-info-headnote__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.like_icons.list.icons.long div span {
    height: 36px;
    line-height: 36px;
    padding: 0px;
}

.like_icons.list.icons div span {
    margin-bottom: 0px;
    width: 36px;
    height: 32px;
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
    font-size: 0px;
}

.like_icons.list div {
    display: block;
}

.product-detail-gallery__slider {
    height: max-content;
}

.gallery__slider-item img {
    width: 100%;
    height: auto;
}

.element-tabs {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.tab-link-border {
    display: block;
    padding: 16px 24px 15px !important;
    color: #777;
}

.tab-content .tab-pane {
    display: none;
}

.tab-content .tab-pane.active {
    display: block;
}

.element-tabs li {
    cursor: pointer;
    width: 100%;
    border-top: 2px solid transparent;
    text-align: center;
    flex-grow: 1;
}

.element-tabs li.active {
    background-color: #f0f0f0;
    border-top: 2px solid var(--akrill);
    /* Пример стиля для активной вкладки */
}

.price_value,
.price_currency {
    font-size: 40px;
    display: block;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 15px;
}

.values_wrapper {
    margin-bottom: 15px;
}

.wrapper-quanity {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
}

.counter_block input {
    width: 146px;
    height: 48px;
    background: none;
    color: #333;
    font-size: 13px;
    border-radius: 0px;
    text-align: center;
    line-height: 13px;
    padding: 7px 3px 7px;
}

.product-container.buy_block.counter_wrapp.list {
    padding-top: 18px;
}

.section-content-wrapper {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
}

.product-item-amount-field-btn-plus,
.product-item-amount-field-btn-minus {
    background: none;
}

.counter_block:not(.big).plus,
.counter_block.minus:not(.big) {
    width: 30px;
}

.tabs-link-slider.tab-link-border {
    margin-right: 0 !important;
}

.counter_block {
    display: flex;
    align-items: center;
    border-radius: 4px;
    overflow: hidden;
    width: 120px;
    justify-content: center;
    height: 50px;
    background: #fafafa;
}

.counter_block .minus,
.counter_block .plus {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 18px;
    user-select: none;
}

/* .counter_block_inner {
    display: flex;
    column-gap: 10px;
} */

.has-ripple {
    display: flex;
    height: 50px;
    align-items: center;
    cursor: pointer;
    background-color: var(--akrill);
    color: var(--white);
    max-width: 160px;
    justify-content: center;
}

.counter_block .text {
    width: 40px;
    text-align: center;
    border: none;
    font-size: 16px;
    padding: 0 5px;
}

.muted svg path {
    fill: #999;
}

.quantity_block_wrapper .cheaper_form .svg,
.table_sizes .svg,
.text-form.muted .svg {
    margin-right: 5px;
}

body .product-container .text-form .text-form-info {
    display: block;
    padding-left: 27px;
    margin-top: 30px;
}

.calculate-delivery {
    margin-top: 20px;
    margin-bottom: 0;
}

.text-form-info {
    font-size: 12px;
    color: var(----dark-gray);
}

.infoGoTo {
    font-size: 17px;
    padding-left: 30px;
    color: #76a4a4;
    padding: 2px 32px;
}
.infoGoTo__title {
    font-weight: 500;
    color: #71a1a1;
}
.characteristics {
    color: var(--black);
    margin-top: 13px;
    font-size: 20px;
    display: flex;
    align-content: center;
    align-items: center;
    gap: 14px;
}

.characteristics:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: #999999;
}

.properties__item {
    font-size: 12px;
    color: var(----dark-gray);
}

.description-sale {
    font-size: 20px;
    color: var(----dark-gray);
    max-width: 400px;
    margin-top: 40px;
    line-height: 110%;
    text-align: justify;
}

.properties__title.muted.properties__item--inline {
    font-size: 16px;
    padding-left: 30px;
    color: #333333;
}
.properties__container.properties {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 0;
}
.animate-load.dotted.font_sxs {
    color: var(--black);
    margin-top: 13px;
    font-size: 20px;
    /* display: flex
; */
    align-content: center;
    align-items: center;
    gap: 14px;
}
.gallery-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}

.gallery-list__item {
    width: 100%;
    transition: transform 0.3s ease;
    position: relative;
}

.gallery-list__item img {
    width: 100%;
    height: auto;
    cursor: pointer;
}

.gallery-list__item:hover {
    transform: scale(1.1);
}

.gallery-list__item.fullscreen {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
}

.gallery-list__item.fullscreen img {
    max-width: 100%;
    max-height: 100%;
}

.gallery-list.grid {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 150px;
    max-height: 150px;
    margin: 0;
}

.gallery-list.grid .gallery-list__item {
    flex: 1 0 46%;
    /* 2 элемента в строке */
}
.product-container.catalog_detail.detail.element_1.clearfix {
    max-width: 800px;
}
.active-list {
    opacity: 1 !important;
}
/* Отображение cookie */
#nca-cookiesaccept-line-accept-btn {
    padding: 6px;
}
.nca-cookiesaccept-line.style-6 {
    background-color: var(--akrill);
}

/* cookies */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    display: none;
    /* Скрываем по умолчанию */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.cookie-button {
    background-color: var(--akrill);
    color: white;
    border: none;
    padding: 10px 20px;
    margin-left: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.cookie-button:hover {
    background-color: var(--akrillLight);
}
.button__footer {
    min-width: 400px;
}

.footer_link_right_soc.smallIcon .footer_link_right_soc_item {
    display: block;
    width: 40px;
}

.button-container {
    position: relative;
    display: inline-block;
}

.input-button {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 2;
    background: transparent;
}

.icon {
    width: 17px;
    height: 17px;
}

.search-suggest {
    border: 1px solid var(--grey);
    background: transparent;
    border-radius: 10px;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    background: #fff;
    padding: 2px 10px;
}

.search-suggest:focus {
    outline: none;
}

.form__search {
    height: 25px;
}

/* форма, popup */

.order-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.order-form__input,
.order-form__textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 16px;
    transition:
        border-color 0.3s,
        box-shadow 0.3s;
    box-sizing: border-box;
}

.order-form__input:focus,
.order-form__textarea:focus {
    border-color: var(--akrill-border);
    outline: none;
    box-shadow: 0 0 5px var(--akrill-border);
}

.order-form__textarea {
    resize: none;
    min-height: 100px;
}

.order-form__button {
    width: 100%;
    padding: 14px;
    background-color: var(--akrill-border);
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
    border: 1px solid transparent;
}

.order-form__button:hover {
    background-color: transparent;
    border: 1px solid var(--akrill-border);
    color: var(--black-text);
}

.form-required {
    font-size: 14px;
    color: red;
}

/* fosKontact */
.fosKontact,
.fosKontact2,
.fosKontact3 {
    position: fixed;
    width: 100vw;
    height: 0vh;

    background: #00050e63;

    top: 0;
    left: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 99999;
    transition: 300ms;
    overflow: hidden;
}

.fosKontact.active {
    height: 100vh;
}
.fosKontact2.active {
    height: 100vh;
}
.fosKontact3.active {
    height: 100vh;
}
.fosKontact_body {
    background: #fff;
    padding: 42px 110px;

    display: flex;
    flex-direction: column;
    align-items: center;

    position: relative;
}

.fosKontact_body_inputMask {
    max-width: 268px;
    max-height: 40px;
    padding: 11px 19px;
    border-radius: 8px;
    border: 1px solid #d6dbe3;

    margin-bottom: 24px;
}

.fosKontact_body_title {
    font-size: 32px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 24px;
}

.fosKontact_body_inputMask input {
    all: unset;
    width: 100%;
    height: 100%;
}

.fosKontact_body_politic {
    justify-content: start;
    margin-bottom: 24px;
}

.fosKontact_body_politic a {
    color: #111111;
    padding-left: 5px;
}

.fosKontact_body_politic a span {
    color: #111111;
    text-decoration: underline;
    padding-left: 5px;
}

.fosKontact_body_politic input {
    display: none;
}

.fosKontact_body_politic > span {
    width: 20px;
    height: 20px;
    border: 1px solid #a1adbf;
    border-radius: 6px;
    margin-right: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    top: 3px;
}

.fosKontact_body_politic:has(input:checked) > span::after {
    content: "✔";
    color: var(--red);
}

.fosKontact_exit {
    color: var(--red);
    position: absolute;
    font-size: 47px;
    font-weight: bold;
    top: 20px;
    right: 20px;
    cursor: pointer;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fosKontact2_exit {
    color: var(--red);
    position: absolute;
    font-size: 47px;
    font-weight: bold;
    top: 20px;
    right: 20px;
    cursor: pointer;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fosKontact3_exit {
    color: var(--red);
    position: absolute;
    font-size: 47px;
    font-weight: bold;
    top: 20px;
    right: 20px;
    cursor: pointer;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fixed {
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

.testbtn {
    background-color: red;
}

.order-form {
    position: relative;
}
.blog_content_big .blog-content_shadow {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent) no-repeat bottom;
    background-size: 100% 170px;
    position: absolute;
    left: 0;
    top: 0;
    transition: 500ms;
    display: block;
    background-position: bottom center;
}
.ymaps-map.ymaps-i-ua_js_yes {
    width: 100% !important;
    height: 100% !important;
}
.bx-yandex-map {
    height: 400px !important;
    width: 700px !important;
}

@media (max-width: 725px) {
    .bx-yandex-map {
        height: 300px !important;
        width: 500px !important;
    }
}
@media (max-width: 530px) {
    .bx-yandex-map {
        height: 250px !important;
        width: 400px !important;
    }
}
@media (max-width: 420px) {
    .bx-yandex-map {
        height: 200px !important;
        width: 350px !important;
    }
}

.footer_log_box {
    font-weight: 400;
    font-size: 20px;
    color: #858585;
}
.footer_log_box a {
    font-weight: 500;
    font-size: 24px;
    color: var(--akrill);
}
.footer_log_box a:hover {
    color: #333;
}
.footer_link_right_payment {
    display: flex;
    column-gap: 30px;
}
.wrapper_bottom-side {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.delivery_payment {
    padding: 30px 0 80px;
}
.delivery_payment .container .delivery_payment_description {
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    color: #20201e;
    margin-top: 50px;
}
@media screen and (max-width: 700px) {
    .delivery_payment .container .delivery_payment_description {
        font-size: 14px;
        margin-top: 30px;
    }
}
.delivery_payment .container .delivery_payment_sequence {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 85px;
}
@media screen and (max-width: 700px) {
    .delivery_payment .container .delivery_payment_sequence {
        flex-direction: column;
        align-items: center;
    }
}
.delivery_payment .container .delivery_payment_sequence .item {
    width: 362px;
    height: 360px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #ededed;
    border-radius: 30px;
    position: relative;
}
@media screen and (max-width: 700px) {
    .delivery_payment .container .delivery_payment_sequence .item {
        width: 100%;
        height: 280px;
    }
}
.delivery_payment .container .delivery_payment_sequence .item .bold_text {
    margin: 55px 0 30px;
    text-align: center;
}
.delivery_payment .container .delivery_payment_sequence .item .standart_text {
    text-align: center;
}
.delivery_payment .container .delivery_payment_sequence .item .number {
    position: absolute;
    top: -35px;
    font-weight: 500;
    font-size: 32px;
    line-height: 120%;
    text-align: center;
    color: #20201e;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #019190;
    background: #fff;
    z-index: 10;
} /*# sourceMappingURL=delivery_payment.css.map */
