@font-face {
    font-family: "SF Pro Display";
    src: url("../fonts/SFProDisplay-Bold.woff2") format("woff2"), url("../fonts/SFProDisplay-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: "SF Pro Display";
    src: url("../fonts/SFProDisplay-Medium.woff2") format("woff2"), url("../fonts/SFProDisplay-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "SF Pro Display";
    src: url("../fonts/SFProDisplay-Semibold.woff2") format("woff2"), url("../fonts/SFProDisplay-Semibold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "SF Pro Display";
    src: url("../fonts/SFProDisplay-Regular.woff2") format("woff2"), url("../fonts/SFProDisplay-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "SF Pro Display";
    src: url("../fonts/SFProDisplay-Light.woff2") format("woff2"), url("../fonts/SFProDisplay-Light.woff") format("woff");
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: "SF Pro Display";
    src: url("../fonts/SFProDisplay-RegularItalic.woff2") format("woff2"), url("../fonts/SFProDisplay-RegularItalic.woff") format("woff");
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: "SF Pro Display";
    src: url("../fonts/SFProDisplay-Thin.woff2") format("woff2"), url("../fonts/SFProDisplay-Thin.woff") format("woff");
    font-weight: 100;
    font-style: normal;
}
input::-ms-clear {
    display: none;
}

html.ie9 * {
    border-radius: 0 !important;
}

html {
    width: 100%;
    height: 100%;
    font-size: 16px;
    line-height: 1.42;
    box-sizing: border-box;
}
@media screen and (max-width: 767.99px) {
    html {
        font-size: 14px;
    }
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    width: 100%;
    height: 100%;
    background: var(--bg);
    font-family: var(--font);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.page {
    flex-grow: 1;
}
.page .cart-empty {
    padding: 10px;
}

.container {
    max-width: 1340px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
@media screen and (max-width: 1359.99px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media screen and (max-width: 991.99px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media screen and (max-width: 767.99px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}
@media screen and (max-width: 575.99px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}
@media screen and (max-width: 767.99px) {
    .row {
        margin-left: -5px;
        margin-right: -5px;
    }
}
@media screen and (max-width: 575.99px) {
    .row {
        margin-left: -5px;
        margin-right: -5px;
    }
}

.content *:first-child {
    margin-top: 0;
}
.content h1, .content h2, .content h3, .content h4 {
    margin: 40px 0;
}
@media screen and (max-width: 767.99px) {
    .content h1, .content h2, .content h3, .content h4 {
        margin: 30px 0;
    }
}
.content h5, .content h6, .content p {
    margin-bottom: 30px;
}
@media screen and (max-width: 767.99px) {
    .content h5, .content h6, .content p {
        margin-bottom: 20px;
    }
}
.content table {
    margin-bottom: 40px;
    width: 100%;
    border-collapse: collapse;
}
@media screen and (max-width: 767.99px) {
    .content table {
        margin-bottom: 30px;
    }
}
.content table tr:nth-child(even) {
    background: var(--bg2);
}
.content table td {
    border: 1px solid var(--border);
    padding: 8px 15px;
    font-size: 13px;
}
@media screen and (max-width: 767.99px) {
    .content table td {
        padding: 8px;
    }
}
.content table td:nth-child(1) {
    color: var(--text);
}
@media screen and (max-width: 767.99px) {
    .content table td:nth-child(1) {
        width: 50%;
    }
}
.content table td:nth-child(2) {
    color: var(--black);
}
@media screen and (max-width: 767.99px) {
    .content table td:nth-child(2) {
        width: 50%;
    }
}
.content ul {
    margin-bottom: 30px;
    margin-left: 20px;
}
.content ul li:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 6px;
    height: 6px;
    background-color: var(--main2);
    border-radius: 50%;
    margin-right: 20px;
    line-height: inherit;
    position: relative;
    top: -2px;
}
.content ul li ol {
    margin-bottom: 0;
    counter-reset: li;
}
.content ul li ol li:before {
    counter-increment: li;
    content: counters(li, ".") ". ";
    margin-right: 20px;
    display: inline-block;
    width: auto;
    height: auto;
    background: none;
    top: 0;
}
.content ul li ul {
    margin-bottom: 0;
}
.content ul li ul li:before {
    border: 1px solid var(--main2);
    background-color: transparent;
}
.content ol {
    margin-bottom: 30px;
    counter-reset: li;
    margin-left: 20px;
}
.content ol li:before {
    counter-increment: li;
    content: counters(li, ".") ". ";
    margin-right: 20px;
    display: inline-block;
}
.content ol li ul {
    margin-bottom: 0;
    counter-reset: none;
}
.content ol li ul li:before {
    content: "";
}
.content ol li ol {
    margin-bottom: 0;
}
.content a {
    color: var(--main1);
    display: inline-block;
    margin-bottom: 30px;
    transition: 0.3s;
}
.content a:hover {
    color: var(--headers);
}
.content blockquote {
    padding: 18px 20px;
    margin-bottom: 30px;
    color: var(--headers);
    border-left: 6px solid var(--main1);
}
@media screen and (max-width: 767.99px) {
    .content blockquote {
        padding: 0 14px;
    }
}
.content .yt {
    position: relative;
    max-width: 690px;
    margin: 0 auto;
    margin-bottom: 30px;
}
.content .yt:before {
    content: "";
    display: block;
    width: 100%;
    padding-top: calc((9 / 16) * 100%);
}
.content .yt iframe {
    border: none;
    outline: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, h5, h6, p, blockquote {
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--headers);
    font-weight: 700;
}

h1 {
    font-size: 35px;
}
@media screen and (max-width: 991.99px) {
    h1 {
        font-size: 28px;
    }
}
@media screen and (max-width: 767.99px) {
    h1 {
        font-size: 20px;
    }
}

h2 {
    font-size: 28px;
}
@media screen and (max-width: 767.99px) {
    h2 {
        font-size: 20px;
    }
}

h3 {
    font-size: 26px;
}
@media screen and (max-width: 767.99px) {
    h3 {
        font-size: 18px;
    }
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

img {
    max-width: 100%;
}

button {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
    font: inherit;
    color: inherit;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

input, textarea {
    border: none;
    background: none;
    outline: none;
    font: inherit;
    resize: none;
}

.btn, .btn2 {
    width: 177px;
    border-radius: 4px;
    background-color: var(--main1);
    display: inline-block;
    color: var(--bg);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.42;
    text-transform: uppercase;
    text-align: center;
    padding: 10px 10px;
    transition: 0.3s;
}
@media screen and (max-width: 991.99px) {
    .btn, .btn2 {
        width: 157px;
        padding: 8px;
        text-transform: none;
    }
}
@media screen and (max-width: 767.99px) {
    .btn, .btn2 {
        width: 105px;
        font-size: 12px;
        padding: 6px 5px 5px 5px;
    }
}
.btn:hover, .btn2:hover, .btn:focus, .btn2:focus {
    background-color: var(--main2);
    color: var(--bg);
}
.btn:active, .btn2:active {
    background-color: var(--main1);
}

.btn2 {
    border: 1px solid var(--main1);
    background-color: transparent;
    color: var(--main1);
}
@media screen and (max-width: 991.99px) {
    .btn2 {
        width: 157px;
        padding: 8px;
        text-transform: none;
    }
}
@media screen and (max-width: 767.99px) {
    .btn2 {
        width: 120px;
        font-size: 12px;
        padding: 6px 5px 5px 5px;
    }
}
.btn2_w {
    border: 2px solid var(--bg);
    color: var(--bg);
    font-size: 14px;
    padding: 9px 20px;
}
.btn2_w:hover {
    background-color: var(--bg);
    border: 2px solid var(--bg);
    color: var(--main1);
}

.btn3 {
    display: flex;
    align-items: center;
    fill: var(--text2);
    color: var(--text2);
    font-size: 14px;
    transition: 0.3s;
}
.btn3:hover {
    fill: var(--main1);
    color: var(--main1);
}
.btn3__svg {
    width: 14px;
    height: 14px;
    margin-right: 10px;
}
@media screen and (max-width: 767.99px) {
    .btn3__svg {
        width: 10px;
        height: 10px;
    }
}
.btn3__txt {
    text-decoration: underline;
    -webkit-text-decoration-style: dashed;
    text-decoration-style: dashed;
}
@media screen and (max-width: 767.99px) {
    .btn3__txt {
        font-size: 10px;
    }
}

.btn4 {
    border-radius: 100px;
    background-color: var(--main1);
    display: inline-block;
    color: var(--bg);
    font-size: 18px;
    font-weight: 600;
    padding: 8px 40px;
    transition: 0.3s;
}
@media screen and (max-width: 767.99px) {
    .btn4 {
        padding: 8px 30px;
        font-size: 12px;
        height: 33px;
    }
}
.btn4:hover, .btn4:focus {
    background-color: var(--main2);
}
.btn4:active {
    background-color: var(--main1);
}

.add {
    width: 180px;
    height: 40px;
    border-radius: 4px;
    border: 1px solid var(--main1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
@media screen and (max-width: 991.99px) {
    .add {
        width: 163px;
        height: 37px;
    }
}
@media screen and (max-width: 767.99px) {
    .add {
        font-size: 10px;
    }
}
.add_product {
    height: 47px;
}
.add__svg {
    width: 11px;
    height: 9px;
    fill: var(--bg);
    display: none;
    margin-right: 12px;
}
.add__txt {
    color: var(--main1);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}
@media screen and (max-width: 991.99px) {
    .add__txt {
        font-size: 10px;
    }
}
.add__txt2 {
    color: var(--bg);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: none;
}
@media screen and (max-width: 991.99px) {
    .add__txt2 {
        font-size: 10px;
    }
}
.add:hover {
    background-color: var(--main1);
}
.add:hover .add__txt {
    color: var(--bg);
}
.add__mobile {
    display: none;
    width: 12px;
    height: 12px;
    fill: var(--main1);
}
.add_in {
    background-color: var(--main1);
}
.add_in .add__svg {
    display: flex;
}
.add_in .add__txt {
    display: none;
}
.add_in .add__txt2 {
    display: flex;
}
.add_in .add__mobile {
    fill: var(--bg);
}

.arr {
    width: 59px;
    height: 59px;
    border-radius: 50%;
    background-color: rgba(var(--bg), 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    fill: var(--main1);
    transition: 0.3s;
}
.arr:hover, .arr:focus {
    background-color: var(--bg);
}
.arr:active {
    background-color: rgba(var(--bg), 0.5);
}
.arr__svg {
    width: 11px;
    height: 19px;
}

.title {
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
@media screen and (max-width: 767.99px) {
    .title {
        margin-bottom: 25px;
    }
}
.title__subtitle {
    color: var(--text2);
    text-transform: uppercase;
    margin-left: 15px;
    white-space: nowrap;
    transition: 0.3s;
}
@media screen and (max-width: 767.99px) {
    .title__subtitle {
        font-size: 12px;
    }
}
.title__subtitle:hover {
    color: var(--main1);
}

.pag {
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
}
@media screen and (max-width: 767.99px) {
    .pag {
        margin-left: -5px;
        margin-right: -5px;
    }
}
.pag .swiper-pagination-bullet {
    width: 20px;
    height: 4px;
    background-color: var(--icon);
    opacity: 0.6;
    border-radius: 0;
    margin-left: 10px;
    margin-right: 10px;
    outline: none;
}
@media screen and (max-width: 767.99px) {
    .pag .swiper-pagination-bullet {
        width: 20px;
        height: 3px;
        margin-left: 5px;
        margin-right: 5px;
    }
}
.pag .swiper-pagination-bullet-active {
    background-color: var(--main1);
    opacity: 1;
}
.pag.swiper-pagination-lock {
    display: none;
}

.price {
    color: var(--headers);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}
@media screen and (max-width: 991.99px) {
    .price {
        font-size: 14px;
    }
}
@media screen and (max-width: 767.99px) {
    .price {
        font-size: 12px;
    }
}
.price_green {
    color: var(--main3);
}

.priceold {
    color: var(--text2);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: line-through;
}
@media screen and (max-width: 991.99px) {
    .priceold {
        font-size: 10px;
    }
}

.tabset {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
@media screen and (max-width: 767.99px) {
    .tabset {
        justify-content: flex-start;
    }
}
.tabset__select {
    display: none;
    border-radius: 4px;
    border-bottom: 4px solid var(--main1);
    overflow: hidden;
    position: relative;
}
.tabset__select:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    border-color: var(--black) transparent transparent transparent;
    position: absolute;
    top: 50%;
    margin-top: -2.5px;
    right: 5px;
}
.tabset__select-select {
    border: none;
    outline: none;
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    padding: 8px 5px;
    padding-right: 20px;
    background: var(--bg2);
    -webkit-appearance: none;
    appearance: none;
}
@media screen and (max-width: 767.99px) {
    .tabset__select {
        display: block;
    }
}

.irecom__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.tabset__label {
    color: var(--text);
    font-size: 15px;
    font-weight: 400;
    margin-right: 10px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    background: var(--border2);
    padding: 4px 10px;
    border-radius: 5px;
    transition: 0.3s;
}

.tabset__label:hover {
    color: var(--headers);
}

@media screen and (max-width: 767.99px) {
    .tabset__label {
        display: none;
    }
}
.tabset__label:last-child {
    margin-right: 0;
}
.tabset__input {
    display: none;
}
.tabset__input:checked + .tabset__label {
    color: var(--bg);
    background: var(--main1);
}

.tabset__tab.active {
    position: relative;
    z-index: 1;
    opacity: 1;
}

.tabset__tabs {
    width: 100%;
    margin-top: 40px;
    position: relative;
}
.tabset__tab {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    width: 100%;
}

.arrow {
    fill: var(--main1);
    stroke: var(--bg);
    transition: 0.3s;
}
.arrow:hover, .arrow:focus {
    fill: var(--main2);
}
.arrow:active {
    fill: var(--main1);
}
.arrow__svg {
    width: 30px;
    height: 60px;
}

.link {
    display: flex;
    align-items: center;
    fill: var(--text2);
    transition: 0.3s;
}
.link__txt {
    font-size: 14px;
    margin-right: 7px;
}
@media screen and (max-width: 991.99px) {
    .link__txt {
        margin-right: 20px;
    }
}
.link__svg {
    width: 29px;
    height: 8px;
}

.rating {
    display: flex;
    align-items: center;
}
.rating__list {
    display: flex;
}
.rating__star {
    margin-right: 12px;
}
@media screen and (max-width: 767.99px) {
    .rating__star {
        margin-right: 10px;
    }
}
.rating__star:last-child {
    margin-right: 0;
}
.rating__star.active .rating__star-svg {
    fill: var(--link);
}
.rating__star-svg {
    width: 24px;
    height: 24px;
    fill: var(--icon);
}
@media screen and (max-width: 991.99px) {
    .rating__star-svg {
        width: 20px;
        height: 20px;
    }
}
.rating__count {
    color: var(--icon);
    margin-left: 8px;
}

.overflow {
    overflow: hidden;
}

.phone {
    display: block;
    position: relative;
}
.phone:hover .phone__drop {
    display: flex;
}
@media screen and (max-width: 991.99px) {
    .phone:hover .phone__drop {
        display: none;
    }
}
.phone__phone {
    display: flex;
    align-items: center;
}
.phone__phone-svg {
    width: 13px;
    height: 19px;
    fill: var(--main1);
    margin-right: 6px;
}
.phone__phone-link {
    color: var(--headers);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    transition: 0.3s;
}
.phone__phone-link:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 3px 0 3px;
    border-color: var(--headers) transparent transparent transparent;
    margin-left: 6px;
    transition: 0.3s;
}
@media screen and (max-width: 991.99px) {
    .phone__phone-link:after {
        display: none;
    }
}
.phone__phone-link:hover {
    color: var(--main1);
}
.phone__phone-link:hover:after {
    border-color: var(--main1) transparent transparent transparent;
}
.phone__drop {
    position: absolute;
    z-index: 20;
    top: 100%;
    left: -10px;
    width: 230px;
    display: none;
    flex-direction: column;
    border-radius: 2px;
    background-color: var(--bg);
}
@media screen and (max-width: 1359.99px) {
    .phone__drop {
        left: -20px;
    }
}
.phone__drop-item {
    display: flex;
    flex-direction: column;
    padding: 15px 10px 15px 30px;
    border-bottom: 1px solid var(--icon);
}
.phone__drop-item:hover .phone__drop-link {
    color: var(--main1);
}
.phone__drop-item:last-child {
    border-bottom: none;
}
.phone__drop-link {
    color: var(--headers);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
    transition: 0.3s;
}
.phone__drop-title {
    color: var(--icon);
    font-size: 14px;
}

.phone__link_header {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    transition: 0.3s;
}
.phone__link_header.phone__drop-arrow:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 3px 0 3px;
    border-color: var(--headers) transparent transparent transparent;
    margin-left: 6px;
    transition: 0.3s;
}

.scroll {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 90;
    pointer-events: none;
}
@media screen and (max-width: 991.99px) {
    .scroll {
        bottom: 10px;
    }
}
@media screen and (max-width: 767.99px) {
    .scroll {
        display: none;
    }
}
.scroll__wrap {
    position: relative;
}
.scroll__btn {
    opacity: 0;
    position: absolute;
    left: calc(100% + 20px);
    bottom: 100%;
    pointer-events: all;
    transition: 0.3s;
}
@media screen and (max-width: 1480px) {
    .scroll__btn {
        right: 0;
        left: initial;
    }
}
.scroll__btn.active {
    opacity: 0.5;
}
.scroll__btn:hover {
    opacity: 1;
}
.scroll__btn-svg {
    width: 62px;
    height: 62px;
    fill: var(--main1);
}
.scroll__btn-svg path {
    stroke: var(--bg);
}

.bread__link {
    padding: 0 15px;
    border-right: 1px solid var(--text2);
    line-height: 1.8;
}
.bread__link:first-child {
    padding-left: 0;
}
.bread__link.active {
    border-color: transparent;
}
.bread__link-svg {
    width: 17px;
    height: 18px;
    fill: var(--main1);
    display: inline-block;
    margin-bottom: -2px;
}
.bread__link-txt {
    color: var(--text2);
    font-size: 14px;
    line-height: 1;
}
@media screen and (max-width: 767.99px) {
    .bread__link-txt {
        font-size: 12px;
    }
}

.pt {
    display: block;
    width: 100%;
}
.pt_221x177 {
    padding-top: calc((177 / 221) * 100%);
}
.pt_78x60 {
    padding-top: calc((60 / 78) * 100%);
}
.pt_1x1 {
    padding-top: 100%;
}

.left {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(25% - 20px);
}
@media screen and (max-width: 767.99px) {
    .left {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .left {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 991.99px) {
    .left {
        display: none;
    }
}

.right {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(75% - 20px);
    padding-left: 20px;
}
@media screen and (max-width: 767.99px) {
    .right {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .right {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 1359.99px) {
    .right {
        padding-left: 0;
    }
}
@media screen and (max-width: 991.99px) {
    .right {
        width: calc(100% - 20px);
    }
}
@media screen and (max-width: 767.99px) {
    .right {
        width: calc(100% - 10px);
    }
}
.right__bread {
    margin-bottom: 5px;
}
@media screen and (max-width: 991.99px) {
    .right__bread {
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 767.99px) {
    .right__bread {
        margin-bottom: 10px;
    }
}
.right__title {
    margin-bottom: 25px;
}

.req {
    color: var(--validation);
}

.count {
    height: 34px;
    border-radius: 4px;
    border: 1px solid var(--border);
    display: flex;
    position: relative;
}
.count_product {
    height: 47px;
}
.count__btn {
    min-width: 25px;
    width: 25px;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    color: var(--icon);
    font-size: 20px;
    transition: 0.3s;
}
.count__btn:hover {
    color: var(--text);
}
.count__minus {
    left: 0;
}
.count__plus {
    right: 0;
}
.count__input {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    font-size: 14px;
    text-align: center;
    padding: 0 25px;
    -moz-appearance: textfield;
}
.count__input::-webkit-outer-spin-button, .count__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.share {
    display: flex;
    align-items: center;
}
.share__txt {
    font-size: 14px;
    margin-right: 25px;
}
.share__svg {
    width: 25px;
    height: 25px;
    fill: transparent;
    stroke: var(--main1);
}

.input {
    width: 100%;
    height: 60px;
    border: 1px solid var(--border);
    background-color: var(--bg2);
    color: var(--headers);
    font-size: 18px;
    font-weight: 300;
    padding: 0 20px;
}
@media screen and (max-width: 767.99px) {
    .input {
        font-size: 16px;
    }
}

.w100 {
    width: 100%;
}

.header {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
}
.header[data-theme=dark] {
    color: var(--headers);
}
.header[data-theme=dark] .phone__drop-arrow:after {
    border-color: var(--headers) transparent transparent transparent;
}
.header[data-theme=dark] .header__logo-img--dark {
    display: block;
}
.header[data-theme=light] {
    color: var(--bg);
}
.header[data-theme=light] .phone__drop-arrow:after {
    border-color: var(--bg) transparent transparent transparent;
}
.header[data-theme=light] .header__logo-img--light {
    display: block;
}
.header_second {
    position: static;
}
@media screen and (max-width: 991.99px) {
    .header_second {
        border-bottom: 1px solid var(--border);
    }
}
.header_second .header__top {
    background-color: var(--footer2);
}
.header_second .header__bottom {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.header__top {
    background-color: rgba(var(--black_rgb), 0.25);
    padding: 9px 0;
}
@media screen and (max-width: 991.99px) {
    .header__top {
        display: none;
    }
}
.header__top-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.header__city {
    color: var(--bg);
    display: flex;
    align-items: center;
    transition: 0.3s;
}
.header__city:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 3px 0 3px;
    border-color: var(--bg) transparent transparent transparent;
    margin-left: 12px;
    transition: 0.3s;
}
.header__city:hover {
    color: var(--main1);
}
.header__city:hover:after {
    border-color: var(--main1) transparent transparent transparent;
}
.header__controls {
    display: flex;
    flex-wrap: wrap;
}
.header__control {
    display: flex;
    align-items: center;
    margin-right: 25px;
    color: var(--bg);
    fill: var(--bg);
    transition: 0.3s;
}
@media screen and (max-width: 1359.99px) {
    .header__control {
        margin-right: 10px;
    }
}
.header__control:hover {
    color: var(--main2);
    fill: var(--main2);
}
.header__control:last-child {
    margin-right: 0;
}
.header__control_black {
    fill: var(--headers);
}
.header__control-svg {
    width: 19px;
    height: 19px;
    margin-right: 6px;
}
.header__control-txt {
    font-size: 12px;
    font-weight: 300;
}
.header__middle {
    padding-top: 40px;
    padding-bottom: 20px;
}
@media screen and (max-width: 991.99px) {
    .header__middle {
        padding-top: 17px;
        padding-bottom: 17px;
    }
}
@media screen and (max-width: 767.99px) {
    .header__middle {
        padding-top: 15px;
    }
}
@media screen and (max-width: 767.99px) {
    .header__middle-row {
        align-items: center;
    }
}
.header__middle-left {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(41.6666666667% - 20px);
    display: flex;
    align-items: center;
}
@media screen and (max-width: 767.99px) {
    .header__middle-left {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .header__middle-left {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 1359.99px) {
    .header__middle-left {
        width: calc(33.3333333333% - 20px);
    }
}
@media screen and (max-width: 767.99px) {
    .header__middle-left {
        width: calc(66.6666666667% - 10px);
    }
}
.header__middle-right {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(58.3333333333% - 20px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
@media screen and (max-width: 767.99px) {
    .header__middle-right {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .header__middle-right {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 1359.99px) {
    .header__middle-right {
        width: calc(66.6666666667% - 20px);
    }
}
@media screen and (max-width: 767.99px) {
    .header__middle-right {
        width: calc(33.3333333333% - 10px);
    }
}
.header__mmenu {
    display: none;
    margin-right: 20px;
}
@media screen and (max-width: 991.99px) {
    .header__mmenu {
        display: flex;
    }
}
.header__logo {
    display: flex;
    align-items: center;
}
@media screen and (max-width: 991.99px) {
    .header__logo {
        width: 180px;
    }
}
@media screen and (max-width: 767.99px) {
    .header__logo {
        width: 137px;
    }
}
.header__logo-img {
    margin-right: 75px;
    max-width: 258px;
}
.header__logo-img--light, .header__logo-img--dark {
    display: none;
}
@media screen and (max-width: 1359.99px) {
    .header__logo-img {
        margin-right: 0;
    }
}
.header__logo-txt {
    font-size: 18px;
    font-style: italic;
    letter-spacing: 0.54px;
}
@media screen and (max-width: 1359.99px) {
    .header__logo-txt {
        display: none;
    }
}
@media screen and (max-width: 991.99px) {
    .header__info {
        display: none;
    }
}
@media screen and (max-width: 991.99px) {
    .header__links {
        display: none;
    }
}
.header__link {
    display: flex;
    align-items: center;
    transition: 0.3s;
}
@media screen and (max-width: 991.99px) {
    .header__link {
        margin-bottom: 10px;
    }
}
.header__link:last-child {
    margin-bottom: 0;
}
.header__link:hover {
    color: var(--main1);
}
.header__link-svg {
    max-width: 16px;
    max-height: 18px;
    fill: var(--main1);
    margin-right: 14px;
}
.header__link-txt {
    font-size: 14px;
}
@media screen and (max-width: 991.99px) {
    .header__phones {
        margin-left: auto;
    }
}
@media screen and (max-width: 767.99px) {
    .header__phones {
        font-size: 0;
    }
}
@media screen and (max-width: 767.99px) {
    .header__phone {
        display: none;
    }
}
.header__call {
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: underline;
    -webkit-text-decoration-style: dashed;
    text-decoration-style: dashed;
    margin-left: 20px;
    transition: 0.3s;
}
@media screen and (max-width: 767.99px) {
    .header__call {
        margin-left: 0;
        font-size: 0;
        text-decoration: none;
        width: 13px;
        height: 19px;
        background: url("../images/icons/tel.svg") 0 0 no-repeat;
        line-height: 19;
    }
}
.header__call:hover {
    color: var(--main1);
}
@media screen and (max-width: 991.99px) {
    .header__bottom {
        display: none;
    }
}

.worktime {
    display: flex;
    font-size: 14px;
}
.worktime__left {
    margin-right: 10px;
}
.worktime__svg {
    width: 15px;
    height: 15px;
    fill: var(--main1);
    margin-top: 4px;
}
.menu {
    background-color: var(--main1);
    border-radius: 4px;
    position: relative;
    display: flex;
    width: 100%;
}
.menu_white {
    background-color: var(--bg);
}
.menu_white .menu__item:hover {
    background-color: var(--bg);
}
.menu_white .menu__item:hover .menu__link {
    color: var(--main1);
}
.menu_white .menu__item:hover .menu__link:after {
    border-color: var(--main1) transparent transparent transparent;
}
.menu_white .menu__link {
    color: var(--headers);
    transition: 0.3s;
}
.menu_white .menu__link_sub:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 3px 0 3px;
    border-color: var(--headers) transparent transparent transparent;
    margin-left: 12px;
    transition: 0.3s;
}
.menu_white .mmore {
    height: auto;
}
.menu_white .mmore:hover {
    background-color: var(--bg);
}
.menu_white .mmore:hover .mmore__btn-round {
    background: var(--main1);
}
.menu_white .mmore__btn-round {
    background: var(--headers);
}
.menu_small {
    position: static;
    height: 100%;
}
.menu_small .menu__link_sub:before {
    content: "";
    display: none;
    position: absolute;
    top: 100%;
    left: -1000px;
    height: 100vh;
    width: 1000vw;
    background: rgba(var(--black), 0.2);
    pointer-events: none;
}
.menu_small .menu__link {
    font-size: 16px;
    padding: 20px;
}
.menu_small .mmore__btn-round {
    width: 4px;
    height: 4px;
    margin-right: 4px;
    background: var(--headers);
}
.menu.cut .mmore {
    display: flex;
}
.menu__list {
    display: flex;
    flex-grow: 1;
}
.menu__list.nogrow {
    flex-grow: 0;
}
.menu__item {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    position: relative;
    transition: 0.3s;
}
.menu__item_catalog {
    position: static;
}
.menu__item:hover {
    background-color: var(--main2);
}
.menu__item:hover .menu__link:before {
    display: block;
}
.menu__item:hover .submenu {
    display: flex;
}
.menu__item:hover > .submenu2 {
    display: block;
}
.menu__item:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.menu__link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    font-size: 18px;
    font-weight: 600;
    padding: 18px 45px;
    width: 100%;
}
.menu__link_sub:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 3px 0 3px;
    border-color: var(--bg) transparent transparent transparent;
    margin-left: 12px;
}

.mmore {
    display: none;
    align-items: center;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    position: relative;
    transition: 0.3s;
}
.mmore:hover {
    background-color: var(--main2);
}
.mmore:hover .mmore__list {
    display: block;
}
.mmore.active {
    display: flex;
}
.mmore__btn {
    display: flex;
    padding: 15px;
    height: 61px;
    align-items: center;
}
.mmore__btn-round {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bg);
    margin-right: 6px;
}
.mmore__btn-round:last-child {
    margin-right: 0;
}
.mmore__list {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 295px;
    background: var(--bg2);
    padding: 0 25px;
    box-shadow: inset 0px 4px 8px -4px rgba(var(--black), 0.15);
}
.mmore__item {
    display: block;
    padding: 15px 0;
    padding-right: 12px;
    border-bottom: 1px solid var(--icon);
    position: relative;
    color: var(--headers);
    transition: 0.3s;
}
.mmore__item:last-child {
    border-bottom: none;
}
.mmore__item:hover {
    color: var(--main1);
}

.submenu {
    display: none;
    position: absolute;
    z-index: 100;
    top: 100%;
    left: 0;
    right: 0;
    height: auto;
    max-height: 410px;
    background: var(--bg2);
    flex-wrap: wrap;
    padding-top: 39px;
    overflow-y: auto;
    box-shadow: inset 0px 4px 8px -4px rgba(var(--black), 0.15);
}
.submenu::-webkit-scrollbar {
    width: 6px;
    background-color: var(--bg2);
}
.submenu::-webkit-scrollbar-track {
    background-color: var(--bg2);
}
.submenu::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background-color: var(--main1);
}
.submenu__cat {
    width: calc(100% / 4);
    padding: 0 60px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.submenu__cat:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 10px;
    width: 1px;
    background: rgba(var(--icon), 0.7);
}
.submenu__cat:last-child:after {
    display: none;
}
.submenu__title {
    position: relative;
    display: block;
    margin-bottom: 13px;
    padding: 6px 0;
}
.submenu__title:hover .submenu__title-title {
    color: var(--main1);
}
.submenu__title-svg {
    position: absolute;
    left: -40px;
    top: 50%;
    margin-top: -10px;
    width: 23px;
    height: 23px;
    fill: var(--main1);
}
.submenu__title-title {
    color: var(--black);
    font-weight: 500;
    transition: 0.3s;
}
.submenu__list {
    margin-bottom: 10px;
}
.submenu__item {
    display: block;
    color: var(--text2);
    font-size: 14px;
    padding: 6px 0;
    transition: 0.3s;
}
.submenu__item:hover {
    color: var(--main1);
}
.submenu__more {
    display: flex;
    justify-content: flex-start;
    padding: 6px 0;
    align-self: flex-start;
}
.submenu__more:hover .submenu__more-round {
    background-color: var(--text2);
}
.submenu__more-round {
    width: 6px;
    height: 6px;
    background-color: var(--main1);
    border-radius: 50%;
    margin-right: 6px;
    transition: 0.3s;
}
.submenu__more-round:last-child {
    margin-right: 0;
}

.submenu2 {
    display: none;
    position: absolute;
    z-index: 100;
    top: 100%;
    left: 0;
    width: 295px;
    background: var(--bg2);
    padding: 0 25px;
    box-shadow: inset 0px 4px 8px -4px rgba(var(--black), 0.15);
}
.submenu2_right {
    top: 0;
    bottom: 0;
    left: 100%;
}
.submenu2_right:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    width: 25px;
}
.submenu2__item:last-child > .submenu2__link {
    border-bottom: none;
}
.submenu2__item:hover > .submenu2 {
    display: block;
}
.submenu2__link {
    display: block;
    padding: 15px 0;
    padding-right: 12px;
    border-bottom: 1px solid var(--icon);
    position: relative;
    color: var(--headers);
    transition: 0.3s;
}
.submenu2__link:last-child {
    border-bottom: none;
}
.submenu2__link:hover {
    color: var(--main1);
}
.submenu2__link_arr:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 22px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 4px;
    border-color: transparent transparent transparent var(--main1);
}

.fixmenu {
    position: fixed;
    z-index: 100;
    top: -300px;
    left: 0;
    right: 0;
    background-color: var(--bg);
    box-shadow: 0 4px 8px rgba(var(--black), 0.15);
    transition: 0.3s;
}
@media screen and (max-width: 991.99px) {
    .fixmenu {
        padding: 10px 0;
    }
}
.fixmenu.active {
    top: 0;
}
.fixmenu__row {
    align-items: center;
    position: relative;
    flex-wrap: nowrap;
}
@media screen and (max-width: 991.99px) {
    .fixmenu__row {
        margin: 0;
    }
}
.fixmenu__mmenu {
    display: none;
    margin-right: 20px;
}
@media screen and (max-width: 991.99px) {
    .fixmenu__mmenu {
        display: flex;
    }
}
.fixmenu__logo {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(15.4166666667% - 20px);
}
@media screen and (max-width: 767.99px) {
    .fixmenu__logo {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .fixmenu__logo {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 991.99px) {
    .fixmenu__logo {
        width: 180px;
        margin: 0;
    }
}
@media screen and (max-width: 767.99px) {
    .fixmenu__logo {
        width: 137px;
    }
}
.fixmenu__logo .header__logo-img--dark {
    display: flex;
    margin-right: 0;
}
.fixmenu__menu {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(59.5833333333% - 20px);
    align-self: stretch;
}
@media screen and (max-width: 767.99px) {
    .fixmenu__menu {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .fixmenu__menu {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 1359.99px) {
    .fixmenu__menu {
        width: calc(57.5% - 20px);
    }
}
@media screen and (max-width: 1000px) {
    .fixmenu__menu {
        width: calc(52.0833333333% - 20px);
    }
}
@media screen and (max-width: 991.99px) {
    .fixmenu__menu {
        display: none;
    }
}
.fixmenu__controls {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(7.3333333333% - 20px);
}
@media screen and (max-width: 1359.99px) {
    .fixmenu__controls {
        width: calc(5.3333333333% - 20px);
    }
}



@media screen and (max-width: 767.99px) {
    .fixmenu__controls {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .fixmenu__controls {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 1000px) {
    .fixmenu__controls {
        width: calc(10.4166666667% - 20px);
        justify-content: flex-end;
    }
}
@media screen and (max-width: 991.99px) {
    .fixmenu__controls {
        display: none;
    }
}
.fixmenu__phones {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(17.6666666667% - 20px);
    display: flex;
    justify-content: flex-end;
}
@media screen and (max-width: 767.99px) {
    .fixmenu__phones {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .fixmenu__phones {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 1359.99px) {
    .fixmenu__phones {
        width: calc(20.75% - 20px);
    }
}
@media screen and (max-width: 1000px) {
    .fixmenu__phones {
        width: calc(22.0833333333% - 20px);
    }
}
@media screen and (max-width: 991.99px) {
    .fixmenu__phones {
        width: auto;
        margin: 0;
        margin-left: auto;
    }
}
@media screen and (max-width: 767.99px) {
    .fixmenu__phones-wrap {
        display: flex;
    }
}

.hsearch {
    position: fixed;
    z-index: 1001;
    top: -2000px;
    left: 0;
    right: 0;
    background-color: var(--bg);
    transition: 0.3s;
    box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.3);
}
.hsearch.active {
    top: 0;
}
.hsearch__top {
    padding: 15px 0;
    box-shadow: 0 4px 8px rgba(var(--black), 0.15);
}
.hsearch__field {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: -10px;
}
.hsearch__input {
    flex-grow: 1;
    color: var(--black);
    font-size: 28px;
    font-weight: 400;
    margin-right: 20px;
    width: 100%;
}
.hsearch__submit {
    margin-right: 15px;
}
.hsearch__close {
    padding: 10px;
    fill: var(--headers);
    transition: 0.3s;
}
.hsearch__close:hover {
    fill: var(--main1);
}
.hsearch__close-svg {
    width: 14px;
    height: 14px;
}
.hsearch__table {
    width: 100%;
    margin: 45px 0;
}
.hsearch__left {
    vertical-align: top;
    padding-right: 15px;
}


@media screen and (max-width: 767.99px) {
    .hsearch__left {
        display: none;
    }

    .hsearch__html {
        max-height: 500px;
        overflow: auto;
    }
}

.hsearch__title {
    color: var(--icon);
    font-size: 20px;
    padding: 15px 0;
}
.hsearch__right {
    width: 100%;
}
.hsearch__item {
    font-size: 20px;
    display: block;
    padding: 15px 10px;
    border-radius: 4px;
    transition: 0.3s;
}
.hsearch__item b {
    color: var(--black);
    font-weight: 700;
}
.hsearch__item:hover {
    background-color: rgba(var(--main1), 0.2);
}

.hsearch__item {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #ccc;
}

.hsearch__image {
    min-width: 70px;
    text-align: center;
    max-width: 70px;
}

.hsearch__info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hsearch__description {
    font-size: 14px;
}

.hsearch__price {
    font-size: 14px;
    font-weight: 700;
    color: #2d2d2d;
}

.index {
    display: flex;
    flex-direction: column;
}
.index section {
    width: 100%;
}
.index section[data-order="0"] {
    order: 0;
}
.index section[data-order="1"] {
    order: 1;
}
.index section[data-order="2"] {
    order: 2;
}
.index section[data-order="3"] {
    order: 3;
}
.index section[data-order="4"] {
    order: 4;
}
.index section[data-order="5"] {
    order: 5;
}
.index section[data-order="6"] {
    order: 6;
}
.index section[data-order="7"] {
    order: 7;
}
.index section[data-order="8"] {
    order: 8;
}
.index section[data-order="9"] {
    order: 9;
}
.index section[data-order="10"] {
    order: 10;
}
.index section[data-order="11"] {
    order: 11;
}
.index section[data-order="12"] {
    order: 12;
}
.index section[data-order="13"] {
    order: 13;
}
.index section[data-order="14"] {
    order: 14;
}
.index section[data-order="15"] {
    order: 15;
}
.index section[data-order="16"] {
    order: 16;
}
.index section[data-order="17"] {
    order: 17;
}
.index section[data-order="18"] {
    order: 18;
}
.index section[data-order="19"] {
    order: 19;
}
.index section[data-order="20"] {
    order: 20;
}
.index section[data-order="21"] {
    order: 21;
}
.index section[data-order="22"] {
    order: 22;
}
.index section[data-order="23"] {
    order: 23;
}
.index section[data-order="24"] {
    order: 24;
}
.index section[data-order="25"] {
    order: 25;
}
.index section[data-order="26"] {
    order: 26;
}
.index section[data-order="27"] {
    order: 27;
}
.index section[data-order="28"] {
    order: 28;
}
.index section[data-order="29"] {
    order: 29;
}
.index section[data-order="30"] {
    order: 30;
}
.index section[data-order="31"] {
    order: 31;
}
.index section[data-order="32"] {
    order: 32;
}
.index section[data-order="33"] {
    order: 33;
}
.index section[data-order="34"] {
    order: 34;
}
.index section[data-order="35"] {
    order: 35;
}
.index section[data-order="36"] {
    order: 36;
}
.index section[data-order="37"] {
    order: 37;
}
.index section[data-order="38"] {
    order: 38;
}
.index section[data-order="39"] {
    order: 39;
}
.index section[data-order="40"] {
    order: 40;
}
.index section[data-order="41"] {
    order: 41;
}
.index section[data-order="42"] {
    order: 42;
}
.index section[data-order="43"] {
    order: 43;
}
.index section[data-order="44"] {
    order: 44;
}
.index section[data-order="45"] {
    order: 45;
}
.index section[data-order="46"] {
    order: 46;
}
.index section[data-order="47"] {
    order: 47;
}
.index section[data-order="48"] {
    order: 48;
}
.index section[data-order="49"] {
    order: 49;
}
.index section[data-order="50"] {
    order: 50;
}
.index section[data-order="51"] {
    order: 51;
}
.index section[data-order="52"] {
    order: 52;
}
.index section[data-order="53"] {
    order: 53;
}
.index section[data-order="54"] {
    order: 54;
}
.index section[data-order="55"] {
    order: 55;
}
.index section[data-order="56"] {
    order: 56;
}
.index section[data-order="57"] {
    order: 57;
}
.index section[data-order="58"] {
    order: 58;
}
.index section[data-order="59"] {
    order: 59;
}
.index section[data-order="60"] {
    order: 60;
}
.index section[data-order="61"] {
    order: 61;
}
.index section[data-order="62"] {
    order: 62;
}
.index section[data-order="63"] {
    order: 63;
}
.index section[data-order="64"] {
    order: 64;
}
.index section[data-order="65"] {
    order: 65;
}
.index section[data-order="66"] {
    order: 66;
}
.index section[data-order="67"] {
    order: 67;
}
.index section[data-order="68"] {
    order: 68;
}
.index section[data-order="69"] {
    order: 69;
}
.index section[data-order="70"] {
    order: 70;
}
.index section[data-order="71"] {
    order: 71;
}
.index section[data-order="72"] {
    order: 72;
}
.index section[data-order="73"] {
    order: 73;
}
.index section[data-order="74"] {
    order: 74;
}
.index section[data-order="75"] {
    order: 75;
}
.index section[data-order="76"] {
    order: 76;
}
.index section[data-order="77"] {
    order: 77;
}
.index section[data-order="78"] {
    order: 78;
}
.index section[data-order="79"] {
    order: 79;
}
.index section[data-order="80"] {
    order: 80;
}
.index section[data-order="81"] {
    order: 81;
}
.index section[data-order="82"] {
    order: 82;
}
.index section[data-order="83"] {
    order: 83;
}
.index section[data-order="84"] {
    order: 84;
}
.index section[data-order="85"] {
    order: 85;
}
.index section[data-order="86"] {
    order: 86;
}
.index section[data-order="87"] {
    order: 87;
}
.index section[data-order="88"] {
    order: 88;
}
.index section[data-order="89"] {
    order: 89;
}
.index section[data-order="90"] {
    order: 90;
}
.index section[data-order="91"] {
    order: 91;
}
.index section[data-order="92"] {
    order: 92;
}
.index section[data-order="93"] {
    order: 93;
}
.index section[data-order="94"] {
    order: 94;
}
.index section[data-order="95"] {
    order: 95;
}
.index section[data-order="96"] {
    order: 96;
}
.index section[data-order="97"] {
    order: 97;
}
.index section[data-order="98"] {
    order: 98;
}
.index section[data-order="99"] {
    order: 99;
}

.ibanner__slider {
    position: relative;
}
.ibanner__slider[data-theme=dark] .ibanner__pag .swiper-pagination-bullet {
    background: var(--text);
}
.ibanner__slider[data-theme=dark] .arr:hover, .ibanner__slider[data-theme=dark] .arr:focus {
    background: var(--text);
}
.ibanner__slider[data-theme=light] .ibanner__pag .swiper-pagination-bullet {
    background: var(--bg);
}
.ibanner__slider[data-theme=light] .arr:hover, .ibanner__slider[data-theme=light] .arr:focus {
    background: var(--bg);
}
.ibanner__slider_arr .ibanner__prev, .ibanner__slider_arr .ibanner__next {
    opacity: 1;
    pointer-events: all;
}
.ibanner__slider:hover .ibanner__prev, .ibanner__slider:hover .ibanner__next {
    opacity: 1;
    pointer-events: all;
}
.ibanner__slide {
    height: 738px;
    box-sizing: border-box;
}
@media screen and (max-width: 991.99px) {
    .ibanner__slide {
        height: 410px;
    }
}
@media screen and (max-width: 767.99px) {
    .ibanner__slide {
        height: auto;
    }
}
.ibanner__slide[data-theme=dark] {
    color: var(--headers);
}
.ibanner__slide[data-theme=dark] h1, .ibanner__slide[data-theme=dark] h2, .ibanner__slide[data-theme=dark] h3, .ibanner__slide[data-theme=dark] h4, .ibanner__slide[data-theme=dark] h5, .ibanner__slide[data-theme=dark] h6 {
    color: var(--headers);
}
.ibanner__slide[data-theme=light] {
    color: var(--bg);
}
.ibanner__slide[data-theme=light] h1, .ibanner__slide[data-theme=light] h2, .ibanner__slide[data-theme=light] h3, .ibanner__slide[data-theme=light] h4, .ibanner__slide[data-theme=light] h5, .ibanner__slide[data-theme=light] h6 {
    color: var(--bg);
}

@media screen and (max-width: 767.99px) {
    .ibanner__slide[data-theme=light] {
        color: var(--headers);
    }
    .ibanner__slide[data-theme=light] h1, .ibanner__slide[data-theme=light] h2, .ibanner__slide[data-theme=light] h3, .ibanner__slide[data-theme=light] h4, .ibanner__slide[data-theme=light] h5, .ibanner__slide[data-theme=light] h6 {
        color: var(--headers);
    }
}

.ibanner__slide-imgs {
    position: absolute;
    z-index: 10;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
@media screen and (max-width: 767.99px) {
    .ibanner__slide-imgs {
        position: static;
        height: 300px;
    }
}
.ibanner__slide-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}
.ibanner__slide-container {
    height: 100%;
    position: relative;
    z-index: 20;
}
@media screen and (max-width: 767.99px) {
    .ibanner__slide-container {
        height: auto;
        background-color: var(--bg2);
        padding: 0 20px;
    }
}
.ibanner__slide-row {
    padding-top: 220px;
    padding-bottom: 55px;
    height: 100%;
    align-items: center;
}
@media screen and (max-width: 991.99px) {
    .ibanner__slide-row {
        padding-top: 65px;
    }
}
@media screen and (max-width: 767.99px) {
    .ibanner__slide-row {
        padding: 20px 0;
    }
}
.ibanner__slide-content {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(83.3333333333% - 20px);
    margin-left: calc(8.3333333333% + 10px);
    margin-right: calc(8.3333333333% + 10px);
}
@media screen and (max-width: 767.99px) {
    .ibanner__slide-content {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .ibanner__slide-content {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 991.99px) {
    .ibanner__slide-content {
        width: calc(95.8333333333% - 20px);
    }
}
@media screen and (max-width: 991.99px) {
    .ibanner__slide-content {
        margin-left: calc(2.0833333333% + 10px);
    }
}
@media screen and (max-width: 991.99px) {
    .ibanner__slide-content {
        margin-right: calc(2.0833333333% + 10px);
    }
}
@media screen and (max-width: 767.99px) {
    .ibanner__slide-content {
        width: calc(100% - 10px);
    }
}
@media screen and (max-width: 767.99px) {
    .ibanner__slide-content {
        margin-left: calc(0% + 5px);
    }
}
@media screen and (max-width: 767.99px) {
    .ibanner__slide-content {
        margin-right: calc(0% + 5px);
    }
}
@media screen and (max-width: 767.99px) {
    .ibanner__slide-content {
        text-align: center;
    }
}
.ibanner__slide-title {
    font-size: 45px;
    margin-bottom: 20px;
    max-width: 550px;
}
@media screen and (max-width: 991.99px) {
    .ibanner__slide-title {
        font-size: 25px;
        margin-bottom: 15px;
    }
}
@media screen and (max-width: 767.99px) {
    .ibanner__slide-title {
        font-size: 20px;
        max-width: 100%;
    }
}
.ibanner__slide-txt {
    font-size: 24px;
    margin-bottom: 40px;
    line-height: 1.1458333333;
    max-width: 550px;
}
@media screen and (max-width: 991.99px) {
    .ibanner__slide-txt {
        font-size: 16px;
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 767.99px) {
    .ibanner__slide-txt {
        font-size: 14px;
        margin-bottom: 15px;
        max-width: 100%;
    }

    .ibanner__slide-txt br {
        display: none;
    }
}
.ibanner__slide-links {
    display: flex;
}
@media screen and (max-width: 767.99px) {
    .ibanner__slide-links {
        justify-content: center;
    }
}
.ibanner__slide-link {
    margin-right: 20px;
}
.ibanner__slide-link:last-child {
    margin-right: 0;
}
.ibanner__nav {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
}
@media screen and (max-width: 767.99px) {
    .ibanner__nav {
        position: static;
    }
}
.ibanner__nav-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: 220px;
    padding-bottom: 30px;
}
@media screen and (max-width: 767.99px) {
    .ibanner__nav-container {
        height: auto;
        padding-top: 0;
        padding-bottom: 20px;
        background-color: var(--bg2);
    }
}
.ibanner__arrs {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media screen and (max-width: 991.99px) {
    .ibanner__arrs {
        display: none;
    }
}
.ibanner__prev, .ibanner__next {
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}
.ibanner__pag {
    position: static;
    width: 100%;
    pointer-events: all;
    margin-top: auto;
}
.ibanner__pag .swiper-pagination-bullet {
    width: 50px;
    height: 4px;
    background: var(--bg);
    opacity: 1;
    border-radius: 0;
    margin: 0 10px;
    outline: none;
    transition: 0.3s;
}
@media screen and (max-width: 767.99px) {
    .ibanner__pag .swiper-pagination-bullet {
        width: 30px;
        height: 3px;
        background: var(--icon);
        margin: 0 5px;
    }
}
.ibanner__pag .swiper-pagination-bullet-active {
    height: 8px;
    background: var(--main1) !important;
}
@media screen and (max-width: 767.99px) {
    .ibanner__pag .swiper-pagination-bullet-active {
        height: 5px;
    }
}

.iadvantages {
    padding-top: 50px;
    padding-bottom: 20px;
}
.iadvantages__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-left: -10px;
    margin-right: -10px;
}
@media screen and (max-width: 1359.99px) {
    .iadvantages__row {
        justify-content: center;
    }
}
@media screen and (max-width: 767.99px) {
    .iadvantages__row {
        display: flex;
        flex-wrap: wrap;
        margin-left: -10px;
        margin-right: -10px;
    }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
    .iadvantages__row {
        margin-left: -5px;
        margin-right: -5px;
    }
}
@media screen and (max-width: 767.99px) and (max-width: 575.99px) {
    .iadvantages__row {
        margin-left: -5px;
        margin-right: -5px;
    }
}

.iadvantage {
    max-width: 225px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    margin-left: 10px;
    margin-right: 10px;
}
@media screen and (max-width: 767.99px) {
    .iadvantage {
        box-sizing: border-box;
        word-wrap: break-word;
        margin-left: 10px;
        margin-right: 10px;
    }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
    .iadvantage {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 767.99px) and (max-width: 575.99px) {
    .iadvantage {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 767.99px) {
    .iadvantage {
        width: calc(50% - 10px);
    }
}
.iadvantage__img {
    height: 60px;
    margin-bottom: 10px;
}
.iadvantage__img-img {
    max-height: 100%;
    fill: var(--main1);
}
.iadvantage__img-img .grey {
    fill: var(--icon);
}
.iadvantage__img-img .white {
    fill: var(--bg);
}
.iadvantage__title {
    color: var(--headers);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
}
@media screen and (max-width: 767.99px) {
    .iadvantage__title {
        font-size: 14px;
        margin-bottom: 7px;
    }
}
.iadvantage__txt {
    color: var(--text2);
    font-size: 14px;
}
@media screen and (max-width: 767.99px) {
    .iadvantage__txt {
        font-size: 12px;
    }
}

.iservices {
    padding-top: 70px;
    padding-bottom: 90px;
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
    background-color: var(--bg2);
}
@media screen and (max-width: 767.99px) {
    .iservices {
        padding: 30px 0;
    }
}
.iservices__top {
    margin-bottom: 40px;
}
@media screen and (max-width: 767.99px) {
    .iservices__top {
        margin-bottom: 25px;
    }
}
.iservices__item {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(33.3333333333% - 20px);
    margin-bottom: 20px;
}
@media screen and (max-width: 767.99px) {
    .iservices__item {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .iservices__item {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 1359.99px) {
    .iservices__item {
        width: calc(50% - 20px);
    }
}
@media screen and (max-width: 575.99px) {
    .iservices__item {
        width: calc(100% - 10px);
    }
}

.iservice {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    background-color: var(--bg);
    overflow: hidden;
    display: flex;
    height: 200px;
}
@media screen and (max-width: 991.99px) {
    .iservice {
        height: 171px;
    }
}
@media screen and (max-width: 767.99px) {
    .iservice {
        height: 145px;
    }
}
.iservice:hover .iservice__left {
    background-color: var(--main2);
}
.iservice:hover .iservice__title {
    color: var(--bg);
}
.iservice:hover .iservice__svg {
    fill: var(--bg);
}
.iservice__left, .iservice__right {
    width: 50%;
    transition: 0.3s;
}
.iservice__left {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
}
@media screen and (max-width: 991.99px) {
    .iservice__left {
        padding: 25px 15px;
        padding-top: 30px;
    }
}
@media screen and (max-width: 767.99px) {
    .iservice__left {
        padding: 15px 10px;
    }
}
.iservice__title {
    color: var(--headers);
    font-weight: 300;
    margin-bottom: 15px;
    transition: 0.3s;
}
@media screen and (max-width: 767.99px) {
    .iservice__title {
        font-size: 14px;
        margin-bottom: 10px;
    }
}
.iservice__svg {
    width: 56px;
    height: 8px;
    fill: var(--main1);
    transition: 0.3s;
}
@media screen and (max-width: 767.99px) {
    .iservice__svg {
        width: 48px;
        height: 8px;
    }
}
.iservice__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.iprojects {
    padding-top: 85px;
    padding-bottom: 15px;
}
@media screen and (max-width: 991.99px) {
    .iprojects {
        padding-top: 65px;
    }
}
@media screen and (max-width: 767.99px) {
    .iprojects {
        padding-top: 30px;
        padding-bottom: 40px;
    }
}
.iprojects__container {
    margin-bottom: 60px;
}
@media screen and (max-width: 991.99px) {
    .iprojects__container {
        margin-bottom: 50px;
    }
}
.iprojects__pag {
    display: flex;
    justify-content: center;
}

.iproject {
    width: 420px;
    height: 300px;
    overflow: hidden;
}
@media screen and (max-width: 991.99px) {
    .iproject {
        width: 354px;
        height: 252px;
    }
}
@media screen and (max-width: 767.99px) {
    .iproject {
        width: auto;
        height: 214px;
    }
}
.iproject:hover:before {
    opacity: 0;
}
.iproject:hover:after {
    opacity: 1;
}
.iproject:hover .iproject__img {
    transform: scale(1.2);
}
.iproject:hover .iproject__txt {
    display: block;
}
@media screen and (max-width: 991.99px) {
    .iproject:hover .iproject__txt {
        display: none;
    }
}
.iproject__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}
.iproject:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(0deg, rgba(var(--black), 0.64) 0%, rgba(var(--black), 0) 100%);
    transition: 0.3s;
    opacity: 1;
}
.iproject:after {
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(var(--black), 0.8) 0%, rgba(var(--black), 0.3) 83.32%);
    transition: 0.3s;
    opacity: 0;
}
.iproject__content {
    position: absolute;
    z-index: 10;
    bottom: 24px;
    left: 20px;
    right: 85px;
    display: flex;
    flex-direction: column;
}
@media screen and (max-width: 991.99px) {
    .iproject__content {
        right: 40px;
    }
}
.iproject__title {
    color: var(--bg);
    font-weight: 600;
}
@media screen and (max-width: 767.99px) {
    .iproject__title {
        font-size: 14px;
    }
}
.iproject__txt {
    color: var(--bg);
    font-size: 14px;
    margin-top: 15px;
    display: none;
}
.iproject__svg {
    margin-top: 15px;
    width: 56px;
    height: 8px;
    fill: var(--main1);
    transition: 0.3s;
}
@media screen and (max-width: 767.99px) {
    .iproject__svg {
        margin-top: 10px;
    }
}

.ipops {
    padding-top: 60px;
    padding-bottom: 100px;
    border-bottom: 1px solid var(--border);
}
@media screen and (max-width: 991.99px) {
    .ipops {
        padding-bottom: 10px;
    }
}
@media screen and (max-width: 767.99px) {
    .ipops {
        border-top: 1px solid var(--icon);
        padding-top: 40px;
    }
}

.ipop {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(25% - 20px);
    display: flex;
    flex-direction: column;
}
@media screen and (max-width: 767.99px) {
    .ipop {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .ipop {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 991.99px) {
    .ipop {
        width: calc(50% - 20px);
    }
}
@media screen and (max-width: 991.99px) {
    .ipop {
        margin-bottom: 50px;
    }
}
@media screen and (max-width: 575.99px) {
    .ipop {
        width: calc(100% - 10px);
    }
}
@media screen and (max-width: 767.99px) {
    .ipop {
        margin-bottom: 40px;
    }
}
.ipop:hover .ipop__title {
    color: var(--main1);
}
.ipop__img {
    height: 200px;
    margin-bottom: 15px;
}
@media screen and (max-width: 991.99px) {
    .ipop__img {
        height: 230px;
    }
}
@media screen and (max-width: 767.99px) {
    .ipop__img {
        height: 194px;
    }
}
.ipop__img-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ipop__title {
    color: var(--headers);
    margin-bottom: 20px;
    transition: 0.3s;
}
@media screen and (max-width: 767.99px) {
    .ipop__title {
        margin-bottom: 10px;
    }
}
.ipop__bottom {
    display: flex;
    padding-right: 10px;
}
.ipop__prices {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}
.ipop__priceold {
    margin-left: 7px;
}
.ipop__svg {
    margin-left: auto;
    width: 56px;
    height: 12px;
    fill: var(--main1);
}

.irecom {
    padding-top: 60px;
    padding-bottom: 85px;
}
@media screen and (max-width: 991.99px) {
    .irecom {
        padding-bottom: 60px;
    }
}
@media screen and (max-width: 767.99px) {
    .irecom {
        padding-bottom: 45px;
    }
}
.irecom__slider {
    display: flex;
    align-items: center;
    margin-bottom: 55px;
}
@media screen and (max-width: 767.99px) {
    .irecom__slider {
        margin-bottom: 30px;
    }
}
.irecom__prev, .irecom__next {
    position: relative;
    z-index: 2;
}
@media screen and (max-width: 991.99px) {
    .irecom__prev, .irecom__next {
        display: none;
    }
}
.irecom__container {
    width: calc(100% - 40px);
    margin-left: -10px;
    margin-right: -10px;
    padding: 5px 10px 15px 10px;
}
@media screen and (max-width: 991.99px) {
    .irecom__container {
        width: calc(100% + 20px);
    }
}
@media screen and (max-width: 767.99px) {
    .irecom__container {
        padding: 0;
    }
}
.irecom__pag {
    width: 100%;
    display: flex;
    justify-content: center;
}
.irecom__item {
    height: auto;
}
.irecom__item .item {
    height: 100%;
}
.irecom__item:hover {
    z-index: 10;
}

.view-all-link {
    width: 26px;
    height: 26px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--border2);
    margin-left: 10px;
    transition: 0.3s;
}

.view-all-link:hover {
    background: var(--main2);
    color: var(--bg);
}

.view-all-link__icon {
    position: relative;
    bottom: 1px;
    font-size: 24px;
}

.ipromo {
    height: 332px;
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
@media screen and (max-width: 991.99px) {
    .ipromo {
        height: 224px;
    }
}
@media screen and (max-width: 767.99px) {
    .ipromo {
        height: auto;
    }
}
.ipromo__img {
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 767.99px) {
    .ipromo__img {
        height: auto;
    }
}
.ipromo__img-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 767.99px) {
    .ipromo__img-img {
        display: none;
        height: auto;
    }
}
.ipromo__img-img_m {
    display: none;
}
@media screen and (max-width: 767.99px) {
    .ipromo__img-img_m {
        display: block;
    }
}
.ipromo__wrapper {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
@media screen and (max-width: 767.99px) {
    .ipromo__wrapper {
        position: static;
    }
}
.ipromo__container {
    height: 100%;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 767.99px) {
    .ipromo__container {
        padding-top: 15px;
        padding-bottom: 45px;
        text-align: center;
        justify-content: center;
    }
}
.ipromo__title {
    color: var(--bg);
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}
@media screen and (max-width: 991.99px) {
    .ipromo__title {
        font-size: 25px;
    }
}
@media screen and (max-width: 767.99px) {
    .ipromo__title {
        color: var(--headers);
    }
}
.ipromo__txt {
    color: var(--bg);
    font-size: 30px;
    font-weight: 100;
    margin-bottom: 20px;
}
@media screen and (max-width: 991.99px) {
    .ipromo__txt {
        font-size: 16px;
        margin-bottom: 15px;
    }
}
@media screen and (max-width: 767.99px) {
    .ipromo__txt {
        color: var(--headers);
        margin-bottom: 25px;
    }
}

.icats {
    padding-top: 115px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--border);
    background-color: var(--bg2);
}
@media screen and (max-width: 991.99px) {
    .icats {
        padding-top: 60px;
        padding-bottom: 30px;
    }
}
@media screen and (max-width: 767.99px) {
    .icats {
        padding-top: 30px;
        padding-bottom: 50px;
    }
}
.icats__top {
    margin-bottom: 50px;
}
@media screen and (max-width: 767.99px) {
    .icats__top {
        margin-bottom: 25px;
    }
}

.icat {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(25% - 20px);
    margin-bottom: 20px;
    border: 1px solid var(--border);
    background-color: var(--bg);
    transition: 0.3s;
}
@media screen and (max-width: 767.99px) {
    .icat {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .icat {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 1000px) {
    .icat {
        width: calc(33.3333333333% - 20px);
    }
}
@media screen and (max-width: 767.99px) {
    .icat {
        width: calc(50% - 10px);
    }
}
@media screen and (max-width: 767.99px) {
    .icat {
        margin-bottom: 10px;
    }
}
.icat:hover {
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767.99px) {
    .icat:hover {
        box-shadow: none;
    }
}
.icat:hover .icat__img:after {
    background-color: var(--main1);
}
.icat__img {
    height: 221px;
    display: block;
    position: relative;
}
@media screen and (max-width: 575.99px) {
    .icat__img {
        height: 160px;
    }
}
.icat__img:after {
    content: "";
    display: block;
    position: absolute;
    left: 60px;
    right: 60px;
    bottom: -3px;
    height: 6px;
    background-color: var(--icon);
    transition: 0.3s;
}
@media screen and (max-width: 991.99px) {
    .icat__img:after {
        left: 40px;
        right: 40px;
    }
}
@media screen and (max-width: 767.99px) {
    .icat__img:after {
        height: 4px;
        left: 25px;
        right: 25px;
        background-color: var(--main1);
    }
}
.icat__img-img {
    height: 100%;
    display: block;
    object-fit: fill;
    width: auto;
    margin: auto;
}
.icat__bottom {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-top: 1px solid var(--border);
}
@media screen and (max-width: 991.99px) {
    .icat__bottom {
        height: 69px;
    }
}
@media screen and (max-width: 767.99px) {
    .icat__bottom {
        height: 58px;
    }
}

.iactions {
    padding: 110px 0;
}
@media screen and (max-width: 991.99px) {
    .iactions {
        padding: 140px 0;
        padding-bottom: 15px;
    }
}
@media screen and (max-width: 767.99px) {
    .iactions {
        padding-top: 45px;
        padding-bottom: 55px;
    }
}
@media screen and (max-width: 1200px) {
    .iactions_basket {
        padding: 50px 0;
    }
}
.iactions__top {
    margin-bottom: 40px;
}
@media screen and (max-width: 767.99px) {
    .iactions__top {
        margin-bottom: 15px;
    }
}
.iactions__slider {
    display: flex;
    align-items: center;
    margin-bottom: 65px;
}
@media screen and (max-width: 991.99px) {
    .iactions__slider {
        padding: 0 20px;
    }
}
@media screen and (max-width: 767.99px) {
    .iactions__slider {
        padding: 0;
        margin-bottom: 40px;
    }
}
.iactions__container {
    padding: 10px;
    width: calc(100% - 40px);
    margin-left: -10px;
    margin-right: -10px;
}
@media screen and (max-width: 991.99px) {
    .iactions__container {
        width: calc(100% + 20%);
    }
}
.iactions__prev, .iactions__next {
    position: relative;
    z-index: 2;
}
@media screen and (max-width: 991.99px) {
    .iactions__prev, .iactions__next {
        display: none;
    }
}
.iactions__item {
    height: auto;
}
.iactions__pag {
    display: flex;
    justify-content: center;
}

.iaction {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    box-shadow: 0 0 8px rgba(var(--black), 0.15);
    border: 1px solid var(--border2);
    background-color: var(--bg);
    transition: 0.3s;
}
@media screen and (max-width: 767.99px) {
    .iaction {
        background-color: var(--main1);
        color: var(--bg);
    }
}
.iaction:hover .iaction__bottom {
    color: var(--bg);
    background-color: var(--main1);
}
.iaction__img {
    height: 265px;
}
@media screen and (max-width: 991.99px) {
    .iaction__img {
        height: 196px;
    }
}
@media screen and (max-width: 767.99px) {
    .iaction__img {
        height: 123px;
    }
}
.iaction__img-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.iaction__bottom {
    flex-grow: 1;
    padding: 25px 22px 35px 22px;
    transition: 0.3s;
}
@media screen and (max-width: 991.99px) {
    .iaction__bottom {
        padding: 20px;
    }
}
@media screen and (max-width: 767.99px) {
    .iaction__bottom {
        padding: 15px 10px;
    }
}
.iaction__date {
    display: block;
    margin-bottom: 10px;
}
@media screen and (max-width: 991.99px) {
    .iaction__date {
        font-size: 14px;
    }
}
@media screen and (max-width: 767.99px) {
    .iaction__date {
        font-size: 12px;
        margin-bottom: 3px;
    }
}
.iaction__title {
    font-size: 20px;
    font-weight: 600;
}
@media screen and (max-width: 991.99px) {
    .iaction__title {
        font-size: 16px;
    }
}
@media screen and (max-width: 767.99px) {
    .iaction__title {
        font-size: 14px;
    }
}
.iaction__price {
    margin-top: 20px;
}

.inews {
    background-color: var(--bg2);
    padding-top: 70px;
    padding-bottom: 100px;
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
}
@media screen and (max-width: 991.99px) {
    .inews {
        padding-bottom: 55px;
    }
}
@media screen and (max-width: 767.99px) {
    .inews {
        padding-top: 25px;
        padding-bottom: 0;
    }
}

.inew {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(25% - 20px);
    display: flex;
    flex-direction: column;
}
@media screen and (max-width: 767.99px) {
    .inew {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .inew {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 991.99px) {
    .inew {
        width: calc(50% - 20px);
    }
}
@media screen and (max-width: 991.99px) {
    .inew {
        margin-bottom: 45px;
    }
}
@media screen and (max-width: 575.99px) {
    .inew {
        width: calc(100% - 10px);
    }
}
.inew:hover .inew__title {
    color: var(--main1);
}
.inew:hover .inew__link {
    color: var(--main1);
    fill: var(--main1);
}
.inew__img {
    height: 201px;
    margin-bottom: 20px;
}
@media screen and (max-width: 991.99px) {
    .inew__img {
        height: 228px;
        margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.99px) {
    .inew__img {
        height: 193px;
    }
}
.inew__img-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.inew__bottom {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.inew__date {
    color: var(--text2);
    margin-bottom: 10px;
}
@media screen and (max-width: 991.99px) {
    .inew__date {
        margin-bottom: 15px;
    }
}
@media screen and (max-width: 767.99px) {
    .inew__date {
        margin-bottom: 10px;
    }
}
.inew__title {
    color: var(--headers);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: 0.3s;
}
@media screen and (max-width: 991.99px) {
    .inew__title {
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 767.99px) {
    .inew__title {
        margin-bottom: 10px;
    }
}
.inew__txt {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 20px;
}
@media screen and (max-width: 991.99px) {
    .inew__txt {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 767.99px) {
    .inew__txt {
        margin-bottom: 20px;
    }
}
.inew__link {
    margin-top: auto;
}

.iabout {
    border-bottom: 1px solid var(--border);
    padding: 75px 0;
}
@media screen and (max-width: 991.99px) {
    .iabout {
        padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.99px) {
    .iabout {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
.iabout .row {
    align-items: center;
}
.iabout__left {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(50% - 20px);
}
@media screen and (max-width: 767.99px) {
    .iabout__left {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .iabout__left {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 767.99px) {
    .iabout__left {
        width: calc(100% - 10px);
    }
}
@media screen and (max-width: 767.99px) {
    .iabout__left {
        margin-bottom: 30px;
    }
}
.iabout__right {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(50% - 20px);
}
@media screen and (max-width: 767.99px) {
    .iabout__right {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .iabout__right {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 767.99px) {
    .iabout__right {
        width: calc(100% - 10px);
    }
}
.iabout__top {
    padding-left: 20px;
    padding-bottom: 10px;
    border-left: 12px solid var(--main1);
    margin-bottom: 30px;
}
.iabout__bread {
    color: var(--text2);
    font-weight: 500;
    margin-bottom: 15px;
}
@media screen and (max-width: 991.99px) {
    .iabout__bread {
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 767.99px) {
    .iabout__bread {
        font-size: 16px;
        margin-bottom: 15px;
    }
}
.iabout__title {
    color: var(--headers);
}
.iabout__content {
    margin-bottom: 45px;
}
@media screen and (max-width: 991.99px) {
    .iabout__content {
        margin-bottom: 30px;
    }
}
.iabout__btns {
    display: flex;
    flex-wrap: wrap;
}
.iabout__link {
    margin-right: 12px;
}
@media screen and (max-width: 991.99px) {
    .iabout__link {
        margin-right: 10px;
        width: 149px;
    }
}
@media screen and (max-width: 767.99px) {
    .iabout__link {
        width: 105px;
    }
}
.iabout__catalog {
    width: 223px;
}
@media screen and (max-width: 991.99px) {
    .iabout__catalog {
        width: 194px;
    }
}
@media screen and (max-width: 767.99px) {
    .iabout__catalog {
        width: auto;
    }
}

.irevs {
    padding-top: 75px;
    padding-bottom: 65px;
    border-bottom: 1px solid var(--border);
}
@media screen and (max-width: 991.99px) {
    .irevs {
        padding-top: 90px;
    }
}
@media screen and (max-width: 767.99px) {
    .irevs {
        padding-top: 30px;
    }
}
.irevs__top {
    margin-bottom: 40px;
}
@media screen and (max-width: 767.99px) {
    .irevs__top {
        margin-bottom: 25px;
    }
}
.irevs__slider {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}
@media screen and (max-width: 767.99px) {
    .irevs__slider {
        margin-bottom: 20px;
    }
}
.irevs__container {
    padding: 10px;
    width: calc(100% - 40px);
    margin-left: -10px;
    margin-right: -10px;
}
@media screen and (max-width: 991.99px) {
    .irevs__container {
        width: calc(100% + 20px);
    }
}
.irevs__prev, .irevs__next {
    position: relative;
    z-index: 2;
}
@media screen and (max-width: 991.99px) {
    .irevs__prev, .irevs__next {
        display: none;
    }
}
.irevs__pag {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}
@media screen and (max-width: 767.99px) {
    .irevs__pag {
        margin-bottom: 25px;
    }
}
.irevs__btn {
    display: block;
    margin: 0 auto;
}
@media screen and (max-width: 991.99px) {
    .irevs__btn {
        width: 204px;
        font-size: 14px;
    }
}
@media screen and (max-width: 767.99px) {
    .irevs__btn {
        height: 39px;
    }
}

.irev {
    display: flex;
    flex-direction: column;
    height: auto;
    box-sizing: border-box;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
    background-color: var(--bg);
    padding: 50px 25px 30px 25px;
}
@media screen and (max-width: 1359.99px) {
    .irev {
        padding: 40px 20px 25px 20px;
    }
}
.irev:hover .irev__link {
    color: var(--main1);
    fill: var(--main1);
}
.irev__img {
    width: 152px;
    height: 152px;
    border: 1px solid var(--border);
    border-radius: 50%;
    padding: 12px;
    margin-bottom: 15px;
    align-self: center;
}
@media screen and (max-width: 991.99px) {
    .irev__img {
        width: 130px;
        height: 130px;
        padding: 10px;
        margin-bottom: 10px;
    }
}
.irev__img-wrap {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.irev__img-img {
    display: block;
}
.irev__bottom {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.irev__title {
    color: var(--headers);
    font-size: 18px;
    text-align: center;
    margin-bottom: 10px;
}
@media screen and (max-width: 991.99px) {
    .irev__title {
        margin-bottom: 5px;
    }
}
.irev__prof {
    font-size: 12px;
    margin-bottom: 15px;
    text-align: center;
}
@media screen and (max-width: 991.99px) {
    .irev__prof {
        margin-bottom: 10px;
    }
}
.irev__rating {
    align-self: center;
    margin-bottom: 15px;
}
@media screen and (max-width: 991.99px) {
    .irev__rating {
        margin-bottom: 0px;
    }
}
.irev__txt {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 25px;
}
@media screen and (max-width: 991.99px) {
    .irev__txt {
        margin-bottom: 15px;
    }
}
.irev__link {
    align-self: flex-end;
}

.ibrands {
    background-color: var(--bg2);
    padding-top: 60px;
    padding-bottom: 45px;
}
@media screen and (max-width: 767.99px) {
    .ibrands {
        padding-top: 30px;
    }
}
.ibrands__top {
    margin-bottom: 30px;
}
.ibrands__slider {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
@media screen and (max-width: 767.99px) {
    .ibrands__slider {
        margin-bottom: 20px;
    }
}
.ibrands__container {
    padding: 10px;
    width: calc(100% - 40px);
    margin-left: -10px;
    margin-right: -10px;
}
@media screen and (max-width: 991.99px) {
    .ibrands__container {
        width: calc(100% + 20px);
    }
}
.ibrands__prev, .ibrands__next {
    position: relative;
    z-index: 2;
}
@media screen and (max-width: 991.99px) {
    .ibrands__prev, .ibrands__next {
        display: none;
    }
}
.ibrands__pag {
    display: flex;
    justify-content: center;
}

.ibrand {
    height: 199px;
    border: 1px solid var(--border);
    background-color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-sizing: border-box;
    transition: 0.3s;
}
@media screen and (max-width: 991.99px) {
    .ibrand {
        height: 180px;
    }
}
@media screen and (max-width: 767.99px) {
    .ibrand {
        height: 114px;
        padding: 25px;
    }
}
.ibrand:hover {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.catalog {
    padding: 40px 0;
}
@media screen and (max-width: 991.99px) {
    .catalog {
        padding-top: 15px;
    }
}
.catalog .item {
    height: 100%;
}
.catalog_basket {
    display: flex;
    flex-wrap: wrap;
}
@media screen and (max-width: 991.99px) {
    .catalog__left {
        display: block;
    }
}
.catalog__menu {
    margin-bottom: 20px;
}
@media screen and (max-width: 991.99px) {
    .catalog__menu {
        display: none;
    }
}
.catalog__filters {
    margin-bottom: 20px;
}
@media screen and (max-width: 991.99px) {
    .catalog__filters {
        margin-bottom: 0;
    }
}
.catalog__filters-btn {
    display: none;
    margin-right: 30px;
}
@media screen and (max-width: 991.99px) {
    .catalog__filters-btn {
        display: block;
    }
}
.catalog__consult {
    border: 1px solid var(--border);
    background-color: var(--bg);
    margin-bottom: 20px;
}
@media screen and (max-width: 991.99px) {
    .catalog__consult {
        display: none;
    }
}
.catalog__consult-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    border-bottom: 1px solid var(--border);
}
.catalog__consult-img {
    margin-bottom: 10px;
}
.catalog__consult-title {
    color: var(--black);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}
.catalog__consult-txt {
    color: var(--text2);
    font-size: 14px;
}
.catalog__consult-btn {
    width: 100%;
    color: var(--text2);
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    padding: 18px 0;
}
.catalog__banner {
    display: block;
}
@media screen and (max-width: 991.99px) {
    .catalog__banner {
        display: none;
    }
}
.catalog__banner-image {
    display: block;
}
.catalog__banner-img {
    display: block;
}
.catalog__banner-title {
    display: block;
    background: var(--main1);
    color: var(--bg);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: 22px 15px;
}
.catalog__cats {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 1px;
    margin-left: 1px;
    margin-bottom: 20px;
    gap: 10px;
}
@media screen and (max-width: 991.99px) {
    .catalog__cats {
        margin-bottom: 40px;
    }
}
.catalog__top {
    margin-bottom: 65px;
}
@media screen and (max-width: 991.99px) {
    .catalog__top {
        margin-bottom: 35px;
    }
}
@media screen and (max-width: 767.99px) {
    .catalog__top {
        margin-bottom: 0;
    }
}
.catalog__cat {
    width: calc(33.3333333333% - 20px);
}
@media screen and (max-width: 991.99px) {
    .catalog__cat {
        width: calc(25% - 20px);
    }
}
@media screen and (max-width: 850px) {
    .catalog__cat {
        width: calc(33.3333333333% - 20px);
    }
}
@media screen and (max-width: 767.99px) {
    .catalog__cat {
        width: calc(50% - 10px);
    }
}
.catalog__cat .icat__bottom {
    background: var(--bg2);
}
.catalog__cat .icat__title {
    color: var(--black);
    font-size: 18px;
    font-weight: 500;
}
@media screen and (max-width: 767.99px) {
    .catalog__cat .icat__title {
        font-size: 14px;
        font-weight: 400;
    }
}
.catalog__sort {
    display: flex;
}
@media screen and (max-width: 767.99px) {
    .catalog__sort {
        display: none;
    }
}
.catalog__panel {
    display: flex;
    align-items: center;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}
.catalog__controls {
    margin-left: auto;
}
.catalog__control {
    margin-right: 15px;
}
.catalog__control:last-child {
    margin-right: 0;
}
.catalog__control.active svg {
    fill: var(--main1);
}
.catalog__control-svg {
    width: 22px;
    height: 22px;
    fill: var(--icon);
}
.catalog__list {
    margin-bottom: 25px;
}
@media screen and (max-width: 767.99px) {
    .catalog__list {
        margin-bottom: 35px;
    }
}
.catalog__list.list .catalog__row {
    margin: 0;
    width: 100%;
}
.catalog__list.list .catalog__item {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
}
@media screen and (max-width: 767.99px) {
    .catalog__list.list .catalog__item {
        margin-bottom: 10px;
    }
}
.catalog__list.list .item {
    flex-direction: row;
    align-items: center;
    padding-right: 25px;
}
@media screen and (max-width: 1359.99px) {
    .catalog__list.list .item {
        padding-right: 35px;
    }
}
@media screen and (max-width: 767.99px) {
    .catalog__list.list .item {
        padding-right: 10px;
    }
}
.catalog__list.list .item__top {
    min-width: 175px;
    width: 175px;
    padding: 0;
    margin-right: 20px;
}
@media screen and (max-width: 767.99px) {
    .catalog__list.list .item__top {
        min-width: 145px;
        width: 145px;
        margin-right: 0;
        padding: 10px;
    }
}
.catalog__list.list .item__sticks {
    top: 10px;
    left: 10px;
}
@media screen and (max-width: 767.99px) {
    .catalog__list.list .item__sticks {
        top: 0;
        left: 0;
    }
}
.catalog__list.list .item__controls {
    display: none;
}
@media screen and (max-width: 767.99px) {
    .catalog__list.list .item__controls {
        display: flex;
    }
}
.catalog__list.list .item__controls_list {
    display: flex;
    flex-wrap: nowrap;
    min-width: auto;
    width: auto;
    position: static;
    justify-content: space-between;
}
@media screen and (max-width: 1359.99px) {
    .catalog__list.list .item__controls_list {
        flex-direction: column;
        align-items: center;
    }
}
@media screen and (max-width: 767.99px) {
    .catalog__list.list .item__controls_list {
        display: none;
    }
}
.catalog__list.list .item__control {
    margin-right: 20px;
}
@media screen and (max-width: 1359.99px) {
    .catalog__list.list .item__control {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
@media screen and (max-width: 767.99px) {
    .catalog__list.list .item__control {
        margin-bottom: 0;
    }
}
.catalog__list.list .item__control:last-child {
    margin-right: 0;
    margin-bottom: 0;
}
.catalog__list.list .item__control_favorite svg {
    width: 20px;
    height: 18px;
}
@media screen and (max-width: 767.99px) {
    .catalog__list.list .item__control_favorite svg {
        width: 15px;
        height: 13px;
    }
}
.catalog__list.list .item__control_compare svg {
    width: 28px;
    height: 28px;
}
@media screen and (max-width: 767.99px) {
    .catalog__list.list .item__control_compare svg {
        width: 18px;
        height: 18px;
    }
}
.catalog__list.list .item__bottom {
    padding: 10px 0;
    margin-right: 35px;
    flex-direction: row;
    align-items: center;
}
@media screen and (max-width: 1359.99px) {
    .catalog__list.list .item__bottom {
        margin-right: 25px;
    }
}
@media screen and (max-width: 767.99px) {
    .catalog__list.list .item__bottom {
        flex-direction: column;
        align-items: flex-start;
        margin-right: 0;
    }
}
.catalog__list.list .item__content {
    margin-right: 30px;
    margin-bottom: 0;
}
@media screen and (max-width: 1359.99px) {
    .catalog__list.list .item__content {
        margin-right: 20px;
    }
}
@media screen and (max-width: 767.99px) {
    .catalog__list.list .item__content {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 767.99px) {
    .catalog__list.list .item__avaible {
        margin-bottom: 5px;
    }
}
@media screen and (max-width: 767.99px) {
    .catalog__list.list .item__prices {
        display: flex;
        flex-direction: row;
    }
}
@media screen and (max-width: 991.99px) {
    .catalog__list.list .item__price {
        font-size: 16px;
    }
}
@media screen and (max-width: 767.99px) {
    .catalog__list.list .item__price {
        font-size: 12px;
    }
}
@media screen and (max-width: 991.99px) {
    .catalog__list.list .item__priceold {
        font-size: 12px;
        margin-left: 20px;
    }
}
@media screen and (max-width: 767.99px) {
    .catalog__list.list .item__priceold {
        font-size: 10px;
        margin-left: 5px;
    }
}
.catalog__list.list .item__btns {
    min-width: 175px;
    width: 175px;
}
@media screen and (max-width: 1359.99px) {
    .catalog__list.list .item__btns {
        min-width: 150px;
    }
}
@media screen and (max-width: 767.99px) {
    .catalog__list.list .item__btns {
        min-width: auto;
        width: 100%;
        flex-direction: row;
        align-items: center;
    }
}
@media screen and (max-width: 767.99px) {
    .catalog__list.list .item__buy {
        margin-bottom: 0;
        margin-right: 10px;
    }
}
.catalog__list.list .catalog__more, .catalog__list.list .news__more {
    border-color: transparent;
}
@media screen and (max-width: 767.99px) {
    .catalog__list.list .catalog__more, .catalog__list.list .news__more {
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 767.99px) {
    .catalog__list.list .add {
        width: 24px;
        height: 24px;
        border-radius: 4px;
        border: 1px solid var(--main1);
    }
}
@media screen and (max-width: 767.99px) {
    .catalog__list.list .add__txt {
        display: none;
    }
}
@media screen and (max-width: 767.99px) {
    .catalog__list.list .add__mobile {
        display: flex;
    }
}
@media screen and (max-width: 767.99px) {
    .catalog__list.list .add_in .add__svg {
        display: none;
    }
}
@media screen and (max-width: 767.99px) {
    .catalog__list.list .add_in .add__txt2 {
        display: none;
    }
}
.catalog__row {
    width: calc(100% - 1px);
    display: flex;
    flex-wrap: wrap;
    margin-top: 1px;
    margin-left: 1px;
    margin-right: 1px;
    gap: 10px;
}
.catalog__item {
    position: relative;
    z-index: 0;
    width: calc(25% - 8px);
    transition: 0.3s;
}

@media screen and (max-width: 1200px) {
    .catalog__item {
        width: calc(100% / 3 - 7px);
    }
}

@media screen and (max-width: 767.99px) {
    .catalog__item {
        width: calc(100% / 2 - 5px);
    }
}
.catalog__item:hover {
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.catalog__more, .news__more {
    background-color: var(--bg2);
    display: block;
    width: 100%;
    color: var(--text2);
    font-size: 18px;
    padding: 15px;
    margin-bottom: 55px;
    border: 1px solid var(--border);
    border-top: none;
    transition: 0.3s;
}
@media screen and (max-width: 991.99px) {
    .catalog__more, .news__more {
        margin-bottom: 40px;
    }
}
@media screen and (max-width: 767.99px) {
    .catalog__more, .news__more {
        font-size: 14px;
        padding: 10px;
    }
}
.catalog__more:hover, .news__more:hover {
    background-color: var(--main1);
    color: var(--bg);
}
.catalog__inner-banner {
    margin-bottom: 20px;
}
.catalog__inner-banner:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 991.99px) {
    .category__left {
        display: block;
    }
}

.item {
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 0 rgba(var(--black), 0.1);
    border: 1px solid var(--border);
    background-color: var(--bg);
    box-sizing: border-box;
    position: relative;
    transition: 0.3s;
}
.item:hover {
    box-shadow: 0px 4px 12px rgba(var(--black), 0.25);
}
@media screen and (max-width: 991.99px) {
    .item:hover {
        box-shadow: none;
    }
}
.item.nopadding .item__top {
    padding: 0;
}
.item.nopadding .item__img-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.item.nopadding .item__sticks {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 70px;
    display: block;
}
@media screen and (max-width: 991.99px) {
    .item.nopadding .item__sticks {
        top: 10px;
        left: 10px;
        right: 50px;
    }
}
@media screen and (max-width: 767.99px) {
    .item.nopadding .item__sticks {
        right: 0;
    }
}
.item.noheight .item__img {
    height: auto;
}
.item.disabled {
    pointer-events: none;
    filter: grayscale(100%);
    opacity: 0.5;
}
.item__top {
    padding: 10px;
    padding-bottom: 0;
    position: relative;
}
@media screen and (max-width: 991.99px) {
    .item__top {
        padding: 10px;
        padding-bottom: 0;
    }
}
.item__img {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}
.item__img-wrap {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
}
.item__img-img {
    display: block;
    width: auto;
    height: 240px;
    max-width: 200px;
    max-height: 240px;
    padding: 25px 0 0 0;
    object-fit: contain;
}
.item__sticks {
    position: absolute;
    top: 0;
    left: 0;
    right: 50px;
    display: block;
}
@media screen and (max-width: 991.99px) {
    .item__sticks {
        top: 0;
        left: 0;
        right: 40px;
    }
}
@media screen and (max-width: 767.99px) {
    .item__sticks {
        right: 0;
    }
}
.item__controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: absolute;
    top: 0px;
    right: 5px;
}
@media screen and (max-width: 991.99px) {
    .item__controls {
        top: 0;
        right: 0;
    }
}
@media screen and (max-width: 767.99px) {
    .item__controls {
        top: initial;
        bottom: 0;
        right: 0;
        left: 0;
        justify-content: space-between;
    }
}
.item__controls_list {
    display: none;
}
.item__control {
    fill: var(--icon);
    margin-right: 5px;
    display: flex;
}
@media screen and (max-width: 767.99px) {
    .item__control {
        margin-right: 0;
        background-color: var(--bg);
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.item__control:last-child {
    margin-right: 0;
}
.item__control.active {
    fill: var(--main1);
}
.item__control_compare {
    width: 17px;
    height: 15px;
}
@media screen and (max-width: 767.99px) {
    .item__control_compare {
        width: 27px;
        height: 22px;
        border-top-right-radius: 50%;
        padding-right: 3px;
    }
    .item__control_compare svg {
        width: 18px;
        height: 18px;
    }
}
.item__control_favorite {
    width: 16px;
    height: 13px;
}
@media screen and (max-width: 767.99px) {
    .item__control_favorite {
        order: 1;
        width: 27px;
        height: 22px;
        border-top-left-radius: 50%;
        padding-left: 3px;
    }
    .item__control_favorite svg {
        width: 15px;
        height: 13px;
    }
}
.item__control_close {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid var(--icon);
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 767.99px) {
    .item__control_close {
        margin: 0 5px;
    }
}
.item__control_close svg {
    width: 8px;
    height: 8px;
    fill: var(--icon);
}
.item__control-svg {
    max-width: 100%;
    max-height: 100%;
}
.item__bottom {
    flex-grow: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}
@media screen and (max-width: 991.99px) {
    .item__bottom {
        padding: 10px;
        padding-bottom: 30px;
    }
}
.item__content {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    flex-grow: 1;
}
.item__avaible {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
@media screen and (max-width: 991.99px) {
    .item__avaible {
        margin-bottom: 3px;
    }
}
.item__avaible__round {
    width: 10px;
    height: 10px;
    border: 1px solid var(--main3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 7px;
    border-radius: 50%;
}
.item__avaible__round:before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--main3);
}
.item__avaible__txt {
    color: var(--main3);
    font-size: 12px;
    line-height: 1;
}
@media screen and (max-width: 767.99px) {
    .item__avaible__txt {
        font-size: 10px;
    }
}
.item__prices {
    margin-bottom: 10px;
    width: 100%;
}
@media screen and (max-width: 991.99px) {
    .item__prices {
        margin-bottom: 5px;
    }
}
@media screen and (max-width: 767.99px) {
    .item__price {
        display: block;
    }
}
.item__priceold {
    white-space: nowrap;
    margin-left: 10px;
}
@media screen and (max-width: 767.99px) {
    .item__priceold {
        display: block;
        margin-left: 0;
    }
}
.item__title {
    width: 100%;
    color: var(--black);
    transition: 0.3s;
    min-height: 80px;
}
@media screen and (max-width: 991.99px) {
    .item__title {
        font-size: 14px;
    }
}
@media screen and (max-width: 767.99px) {
    .item__title {
        font-size: 12px;
        margin-top: auto;
    }
}
.item__title:hover {
    color: var(--main1);
}
.item__btns {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.item__buy {
    margin-top: auto;
    align-self: center;
    margin-bottom: 10px;
    max-width: 100%;
}
@media screen and (max-width: 767.99px) {
    .item__buy {
        height: 24px;
    }
}
.item__fast {
    align-self: center;
}

.sticks {
    width: calc(100% + 5px);
    display: flex;
    flex-wrap: wrap;
    margin-left: -2.5px;
    margin-right: -2.5px;
}

.stick {
    color: var(--bg);
    font-size: 12px;
    font-weight: 500;
    padding: 0px 8px;
    margin: 0 2.5px 5px 2.5px;
}
@media screen and (max-width: 991.99px) {
    .stick {
        font-size: 11px;
        padding: 0 6px;
    }
}
.stick_hit {
    background-color: var(--hit);
}
.stick_recom {
    background-color: var(--recom);
}
.stick_new {
    background-color: var(--main3);
}
.stick_action {
    background-color: var(--main2);
    color: var(--headers);
}

.amenu {
    border: 1px solid var(--border);
}
.amenu__title {
    background-color: var(--main1);
    color: var(--bg);
    font-size: 18px;
    font-weight: 700;
    padding: 17px 20px;
}
.amenu__item {
    position: relative;
}

.aitem {
    border-bottom: 1px solid var(--border);
}
.aitem__link {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 300;
    padding: 18px 16px;
    padding-right: 35px;
    position: relative;
    border-left: 4px solid transparent;
    transition: 0.3s;
}
.aitem__link:after {
    content: "";
    display: none;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    border-color: var(--text) transparent transparent transparent;
    position: absolute;
    top: 50%;
    margin-top: -2.5px;
    right: 20px;
    transition: 0.3s;
}
.aitem__link_arr:after {
    display: block;
}
.aitem__link:hover {
    color: var(--main1);
}
.aitem__link:hover:after {
    border-color: var(--main1) transparent transparent transparent;
}
.aitem__link.active {
    background-color: rgba(var(--text), 0.1);
    border-color: var(--main1);
}
.aitem__link.active:after {
    transform: rotate(-180deg);
}
.aitem__link.active .aitem__link_dropmenu:after {
    transform: rotate(-180deg);
}
.aitem__link_dropmenu {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50px;
}
.aitem__link_dropmenu:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    border-color: var(--text) transparent transparent transparent;
    position: absolute;
    top: 50%;
    margin-top: -2.5px;
    right: 20px;
    transition: 0.3s;
}
.aitem:last-child {
    border-bottom: 1px solid transparent;
}
.aitem__exit {
    display: flex;
    align-items: center;
}
.aitem__exit-svg {
    width: 16px;
    height: 12px;
    fill: var(--main1);
    margin-right: 10px;
}
.aitem__exit-txt {
    color: var(--main1);
    font-size: 16px;
    font-weight: 600;
}
.asubmenu {
    display: none;
    padding: 0 30px;
    background-color: var(--bg2);
}
.asubmenu__item {
    display: block;
    font-size: 14px;
    font-weight: 300;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
    transition: 0.3s;
}
.asubmenu__item:last-child {
    border-bottom: 1px solid transparent;
}
.asubmenu__item:hover {
    color: var(--main1);
}

.filters {
    background: var(--bg);
    transition: 0.3s;
}
@media screen and (max-width: 991.99px) {
    .filters {
        position: fixed;
        z-index: 110;
        top: 0;
        bottom: 0;
        height: 100%;
        left: -400px;
        width: 320px;
        display: block;
        border: none;
        overflow-y: auto;
        overflow-x: hidden;
    }
}
@media screen and (max-width: 767.99px) {
    .filters {
        left: -768px;
        width: 100%;
    }
}
.filters:before {
    content: none;
    position: fixed;
    z-index: 10;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(var(--black), 0.2);
    pointer-events: all;
    display: none;
}
.filters.active {
    left: 0;
}
.filters.active:before {
    display: block;
}
.filters__block {
    position: relative;
    z-index: 90;
    display: flex;
    flex-direction: column;
    background: var(--bg);
    height: 100%;
}
.filters__title {
    background-color: var(--main1);
    padding: 17px 20px;
    display: flex;
    align-items: center;
    position: relative;
}
@media screen and (max-width: 991.99px) {
    .filters__title {
        background-color: var(--bg2);
    }
}
.filters__title-svg {
    width: 11px;
    height: 6px;
    fill: var(--headers);
    margin-right: 6px;
    display: none;
}
@media screen and (max-width: 991.99px) {
    .filters__title-svg {
        display: flex;
    }
}
.filters__title-txt {
    color: var(--bg);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}
@media screen and (max-width: 991.99px) {
    .filters__title-txt {
        color: var(--headers);
        font-size: 16px;
        font-weight: 500;
        text-transform: none;
    }
}
.filters__list {
    flex-grow: 1;
    overflow-y: auto;
}
@media screen and (max-width: 767.99px) {
    .filters__list {
        margin-bottom: 59px;
    }
}
.filters__close {
    padding: 10px;
    position: absolute;
    top: 30px;
    margin-top: -17px;
    right: 15px;
    z-index: 1000;
    display: none;
}
@media screen and (max-width: 991.99px) {
    .filters__close {
        display: block;
    }
}
.filters__close-svg {
    width: 14px;
    height: 14px;
    display: flex;
    fill: var(--icon);
}
.filters__btns {
    display: flex;
    flex-direction: column;
    padding: 25px;
    position: relative;
}
@media screen and (max-width: 991.99px) {
    .filters__btns {
        padding: 0;
    }
}
@media screen and (max-width: 767.99px) {
    .filters__btns {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }
}
.filters__submit {
    width: 100%;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
}
@media screen and (max-width: 991.99px) {
    .filters__submit {
        border-radius: 0;
        padding: 20px 10px;
        margin-bottom: 0;
    }
}
.filters__reset {
    padding: 10px 10px;
    background-color: var(--bg2);
    border-radius: 4px;
}
@media screen and (max-width: 991.99px) {
    .filters__reset {
        border-radius: 0;
        background-color: transparent;
        position: absolute;
        top: 50%;
        margin-top: -17px;
        right: 15px;
    }
}
.filters__reset-txt {
    color: var(--text2);
    font-size: 13px;
    font-weight: 400;
}
@media screen and (max-width: 991.99px) {
    .filters__reset-txt {
        display: none;
    }
}
.filters__reset-svg {
    width: 14px;
    height: 14px;
    fill: var(--bg);
    display: none;
}
@media screen and (max-width: 991.99px) {
    .filters__reset-svg {
        display: block;
    }
}

.filters-btn {
    display: flex;
    align-items: center;
}
.filters-btn__svg {
    width: 11px;
    height: 6px;
    fill: var(--text);
    margin-right: 6px;
}
.filters-btn__txt {
    font-weight: 300;
}

@media screen and (max-width: 991.99px) {
    .bx_filter {
        border: none;
    }
}

@media screen and (max-width: 991.99px) {
    .bx_filter .bx_filter_title {
        justify-content: center;
    }
}

@media screen and (max-width: 991.99px) {
    .bx_filter_popup_result.left {
        margin-right: 0;
    }
}

.bx_filter_button_box:last-child {
    border-bottom: none;
}

.filter {
    padding: 10px 20px;
    border-bottom: 1px solid var(--border);
}
.filter_m {
    padding: 10px 0;
    display: none;
}
@media screen and (max-width: 767.99px) {
    .filter_m {
        display: block;
    }
}
.filter_m .filter__title {
    padding: 18px 20px;
}
.filter_m .filter__title:after {
    right: 20px;
}
.filter.active .filter__title:after {
    transform: rotate(-180deg);
}
.filter__title {
    display: block;
    font-weight: 700;
    padding: 18px 0;
    padding-right: 15px;
    position: relative;
    font-size: 13px;
    text-transform: uppercase;
    width: 100%;
    text-align: left;
    transition: 0.3s;
}
.filter__title:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    border-color: var(--text) transparent transparent transparent;
    position: absolute;
    top: 50%;
    margin-top: -2.5px;
    right: 0;
    transition: 0.3s;
}
.filter__title:hover {
    color: var(--main1);
}
@media screen and (max-width: 991.99px) {
    .filter__title:hover {
        color: var(--text);
    }
}
.filter__title:hover:after {
    border-color: var(--main1) transparent transparent transparent;
}
@media screen and (max-width: 991.99px) {
    .filter__title:hover:after {
        border-color: var(--text) transparent transparent transparent;
    }
}
.filter__title.active:after {
    transform: rotate(-180deg);
}
.filter__content {
    display: none;
}
.filter__sort {
    display: block;
    font-size: 14px;
    padding: 10px 20px;
}
.filter__sort.active {
    color: var(--main1);
}

.range {
    padding-bottom: 25px;
}
.range__fields {
    display: flex;
    align-items: center;
}
.range__fields-seporator {
    min-width: 15px;
    width: 15px;
    height: 3px;
    background: var(--text2);
    margin: 0 10px;
}
.range__field {
    width: calc(50% - 17.5px);
}
.range__input {
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--icon);
    background-color: var(--bg);
    padding: 10px 10px;
    font-size: 13px;
    font-weight: 400;
    color: var(--text2);
}
.range .irs--round .irs-line {
    height: 5px;
    border-radius: 8px;
    background-color: var(--icon);
}
.range .irs--round .irs-bar {
    background-color: var(--main1);
    height: 5px;
}
.range .irs--round .irs-handle {
    width: 16px;
    height: 16px;
    border: 2px solid var(--icon);
    background-color: var(--bg);
    box-shadow: none;
    top: 30px;
    cursor: pointer;
}
.range .irs-min, .range .irs-max {
    top: calc(100% + 50px);
    color: var(--text2);
    font-size: 13px;
    font-weight: 400;
    font-family: "SF Pro Display";
    background-color: transparent;
}

.check {
    display: block;
    padding: 5px 0;
    cursor: pointer;
}
.check__input {
    display: none;
}
.check__input:checked + .check__fake .check__check {
    background: var(--main1);
    border-color: var(--main1);
}
.check__input:checked + .check__fake .check__check-svg {
    opacity: 1;
}
.check__fake {
    display: flex;
    align-items: center;
}
.check__check {
    width: 18px;
    height: 18px;
    border: 1px solid var(--icon);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: 0.3s;
}
.check__check-svg {
    width: 14px;
    height: 10px;
    fill: var(--bg);
    opacity: 0;
    transition: 0.3s;
}
.check__title {
    color: var(--text2);
    font-size: 13px;
}

.colors {
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}

.color {
    display: block;
    width: 42px;
    height: 42px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
}
.color__input {
    display: none;
}
.color__input:checked + .color__fake {
    border-color: var(--main1);
}
.color__fake {
    width: 100%;
    height: 100%;
    border: 2px solid var(--icon);
    padding: 5px;
    display: block;
    cursor: pointer;
    transition: 0.3s;
}
.color__fake-color {
    width: 100%;
    height: 100%;
    display: block;
}

.ccat {
    position: relative;
    z-index: 0;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 10px 20px 10px 10px;
    transition: 0.3s;
    border-radius: 5px;
}

@media screen and (max-width: 767.99px) {
    .ccat {
        width: calc(100% / 1 + 1px);
    }
}

.ccat:hover {
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 991.99px) {
    .ccat:hover {
        box-shadow: none;
    }
}
.ccat:hover .ccat__title {
    color: var(--main1);
}
@media screen and (max-width: 991.99px) {
    .ccat:hover .ccat__title {
        color: var(--text);
    }
}
.ccat__img {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 767.99px) {
    .ccat__img {
        width: 60px;
        height: 60px;
    }
}
.ccat__img-img {
    max-height: 100%;
}
.ccat__right {
    margin-left: 10px;
}
.ccat__title {
    display: block;
    color: var(--headers);
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 5px;
    transition: 0.3s;
}
@media screen and (max-width: 767.99px) {
    .ccat__title {
        margin-bottom: 0;
    }
}
.ccat__sub {
    display: block;
    color: var(--text2);
    font-size: 10px;
    font-weight: 300;
    text-transform: uppercase;
}

.csort {
    position: relative;
}
.csort:hover .csort__drop {
    display: block;
}
.csort__title {
    font-size: 14px;
    padding: 8px 0;
    padding-right: 20px;
    position: relative;
    min-width: 200px;
}
.csort__title:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    border-color: var(--text) transparent transparent transparent;
    position: absolute;
    top: 50%;
    margin-top: -2.5px;
    right: 0;
}
.csort__drop {
    box-shadow: 0 4px 12px rgba(var(--black), 0.25);
    background-color: var(--bg);
    position: absolute;
    z-index: 20;
    top: 100%;
    left: 0;
    min-width: 100%;
    display: none;
}
.csort__link {
    display: block;
    padding: 10px;
    font-size: 14px;
    background: var(--bg);
    transition: 0.3s;
}
.csort__link:hover {
    color: var(--main1);
}
.csort__link.active {
    color: var(--main1);
    background: var(--bg2);
}

.page-pagination {
    margin-bottom: 50px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination__item {
    margin: 0 5px;
}
.pagination__item:hover .pagination__item-svg {
    fill: var(--main1);
}
.pagination__item:hover .pagination__item-txt {
    color: var(--main1);
}
.pagination__item.active .pagination__item-txt {
    color: var(--main1);
    border-color: var(--main1);
}
.pagination__item_left, .pagination__item_right {
    padding: 0 10px;
}
.pagination__item_left {
    margin: 0;
    margin-right: 35px;
}
.pagination__item_right {
    margin: 0;
    margin-left: 35px;
}
.pagination__item-svg {
    width: 9px;
    height: 14px;
    fill: var(--text2);
    display: flex;
    transition: 0.3s;
}
.pagination__item-txt {
    display: block;
    text-align: center;
    min-width: 20px;
    font-size: 18px;
    color: var(--text2);
    border-bottom: 2px solid transparent;
}

.search__top {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.search__input {
    flex-grow: 1;
    height: 40px;
    border-radius: 4px;
    border: 1px solid var(--border);
    background-color: var(--bg2);
    color: var(--black);
    font-size: 16px;
    font-weight: 300;
    padding: 0 15px;
}
@media screen and (max-width: 767.99px) {
    .search__input {
        border-radius: 4px 0 0 4px;
    }
}
.search__submit {
    width: 90px;
    height: 40px;
    margin-left: 20px;
}
@media screen and (max-width: 767.99px) {
    .search__submit {
        width: 43px;
        height: 40px;
        border-radius: 0 4px 4px 0;
        font-size: 0;
        margin-left: 0;
        background: var(--main1) url("/images/icons/loop.png") center center no-repeat;
    }
}

.product {
    padding-bottom: 140px;
}
@media screen and (max-width: 1100px) {
    .product .left {
        display: none;
    }
    .product .right {
        width: calc(100% - 20px);
    }
}
@media screen and (max-width: 991.99px) {
    .product {
        padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.99px) {
    .product {
        padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.99px) {
    .product .right {
        width: calc(100% - 10px);
    }
}
.product__left {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(55.5555555556% - 20px);
}
@media screen and (max-width: 767.99px) {
    .product__left {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .product__left {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 991.99px) {
    .product__left {
        width: calc(50% - 20px);
    }
}
@media screen and (max-width: 767.99px) {
    .product__left {
        width: calc(100% - 10px);
    }
}
@media screen and (max-width: 767.99px) {
    .product__left {
        margin-bottom: 20px;
    }
}
.product__slider {
    position: relative;
    margin-bottom: -1px;
    display: flex;
    flex-direction: column;
}
.product__nav {
    position: absolute;
    z-index: 10;
    left: 20px;
    right: 20px;
    bottom: 20px;
    pointer-events: none;
    display: flex;
    justify-content: flex-end;
}
@media screen and (max-width: 991.99px) {
    .product__nav {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}
@media screen and (max-width: 767.99px) {
    .product__nav {
        justify-content: space-between;
    }
}
.product__arr {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    padding: 12px 15px;
    cursor: pointer;
    pointer-events: all;
    transition: 0.3s;
}
@media screen and (max-width: 991.99px) {
    .product__arr {
        width: 32px;
        height: 32px;
        padding: 7px 10px;
    }
}
@media screen and (max-width: 767.99px) {
    .product__arr {
        width: 27px;
        height: 27px;
        padding: 5px 8px;
    }
}
.product__arr:hover {
    border: 1px solid var(--main1);
}
@media screen and (max-width: 991.99px) {
    .product__arr:hover {
        border: 1px solid var(--border);
    }
}
.product__arr:hover .product__arr-svg {
    fill: var(--main1);
}
@media screen and (max-width: 991.99px) {
    .product__arr:hover .product__arr-svg {
        fill: var(--icon);
    }
}
.product__arr-svg {
    width: 100%;
    height: 100%;
    fill: var(--icon);
    transition: 0.3s;
}
.product__controls {
    position: absolute;
    z-index: 10;
    top: 20px;
    left: 20px;
    right: 20px;
    pointer-events: none;
    display: flex;
    justify-content: flex-end;
}
@media screen and (max-width: 991.99px) {
    .product__controls {
        top: 10px;
        left: 10px;
        right: 10px;
    }
}
.product__control {
    fill: var(--icon);
    pointer-events: all;
    cursor: pointer;
    margin-right: 25px;
}
@media screen and (max-width: 767.99px) {
    .product__control {
        margin-right: auto;
    }
}
.product__control.active {
    fill: var(--main1);
}
.product__control:last-child {
    margin-right: 0;
}
.product__control-svg_compare {
    width: 22px;
    height: 22px;
}
.product__control-svg_heart {
    width: 22px;
    height: 18px;
}
.product__right {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(44.4444444444% - 20px);
}
@media screen and (max-width: 767.99px) {
    .product__right {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .product__right {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 991.99px) {
    .product__right {
        width: calc(50% - 20px);
    }
}
@media screen and (max-width: 767.99px) {
    .product__right {
        width: calc(100% - 10px);
    }
}
.product__sticks {
    margin-bottom: 10px;
}
.product__prices {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
@media screen and (max-width: 767.99px) {
    .product__prices {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}
.product__prices-info {
    color: var(--text2);
    font-size: 12px;
}
.product__price {
    display: flex;
    align-items: center;
}
.product__price-val {
    color: var(--main1);
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 20px;
}
.product__price-avaible {
    margin-bottom: 0;
}
.product__oldprice {
    color: var(--text2);
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: line-through;
    margin-bottom: 10px;
}
.product__info {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 25px;
}
.product__info-articul {
    color: var(--black);
    font-size: 13px;
    margin-bottom: 10px;
}
@media screen and (max-width: 991.99px) {
    .product__info-articul {
        margin-bottom: 5px;
    }
}
.product__info-top {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
@media screen and (max-width: 991.99px) {
    .product__info-top {
        margin-bottom: 5px;
    }
}
@media screen and (max-width: 767.99px) {
    .product__info-top {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 15px;
    }
}
.product__info-txt {
    color: var(--black);
}
.product__rating {
    margin-right: 20px;
}
@media screen and (max-width: 767.99px) {
    .product__rating {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
.product__add {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.product__count {
    width: 86px;
    margin-right: 40px;
}
@media screen and (max-width: 767.99px) {
    .product__count {
        margin-right: 15px;
    }
}
@media screen and (max-width: 767.99px) {
    .product__buy {
        flex-grow: 1;
    }
}
@media screen and (max-width: 767.99px) {
    .product__one .btn3__txt {
        font-size: 16px;
    }
}
.product__one .btn3__svg {
    width: 14px;
    height: 14px;
}
.product__sections {
    margin-top: 35px;
}
@media screen and (max-width: 991.99px) {
    .product__sections {
        margin-top: 60px;
    }
}
@media screen and (max-width: 767.99px) {
    .product__sections {
        margin-top: 30px;
    }
}
.product__section {
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
    padding-bottom: 20px;
}
.product__section:last-child {
    margin-bottom: 0;
    border-bottom: none;
}
.product__section-title {
    color: var(--black);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}
.product__gallery {
    margin-bottom: 50px;
}
@media screen and (max-width: 991.99px) {
    .product__gallery {
        margin-bottom: 40px;
    }
}
@media screen and (max-width: 767.99px) {
    .product__gallery {
        margin-bottom: 15px;
    }
}
.product__thumbs2 {
    margin-bottom: 60px;
}
@media screen and (max-width: 767.99px) {
    .product__thumbs2 {
        margin-bottom: 30px;
    }
}
.product__revs {
    padding-bottom: 85px;
}
@media screen and (max-width: 767.99px) {
    .product__revs {
        padding-bottom: 45px;
    }
}
.product__property a {
    margin-bottom: 0;
}
.product__brand-img {
    max-width: 100px;
}

.pslider {
    border: 1px solid var(--border);
    width: 100%;
}

.pslide {
    box-sizing: border-box;
}
.pslide:before {
    content: none;
    display: block;
    width: 100%;
    padding-top: calc((360 / 509) * 100%);
}
.pslide__img {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pslide__img-img {
    display: block;
    width: auto;
    height: auto;
    object-fit: fill;
    max-width: 500px;
    max-height: 500px;
    padding: 25px;
}
.pslide.ps_1x1:before {
    padding-top: 100%;
}

.pthumb {
    box-sizing: border-box;
    border: 1px solid var(--border);
    position: relative;
    max-height: 130px;
    max-width: 130px;
    transition: 0.3s;
}
.pthumb.swiper-slide-thumb-active {
    border-color: var(--main1);
    z-index: 10;
}
.pthumb:before {
    content: none;
    display: block;
    width: 100%;
    padding-top: calc((128 / 128) * 100%);
}
.pthumb__img {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pthumb__img-img {
    padding: 5px;
    width: auto;
    height: auto;
    object-fit: fill;
    display: block;
    max-height: 100px;
}

.pdocs {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: 60px;
}
@media screen and (max-width: 767.99px) {
    .pdocs {
        margin-left: -5px;
        margin-right: -5px;
    }
}
@media screen and (max-width: 575.99px) {
    .pdocs {
        margin-left: -5px;
        margin-right: -5px;
    }
}
@media screen and (max-width: 991.99px) {
    .pdocs {
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 767.99px) {
    .pdocs {
        margin-bottom: 0;
    }
}

.pdoc {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(33.3333333333% - 20px);
    display: flex;
    align-items: center;
}
@media screen and (max-width: 767.99px) {
    .pdoc {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .pdoc {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 991.99px) {
    .pdoc {
        width: calc(50% - 20px);
    }
}
@media screen and (max-width: 991.99px) {
    .pdoc {
        margin-bottom: 40px;
    }
}
@media screen and (max-width: 767.99px) {
    .pdoc {
        width: calc(100% - 10px);
    }
}
.pdoc__left {
    margin-right: 25px;
    min-width: 60px;
    width: 60px;
}
.pdoc__title {
    color: var(--black);
    font-size: 14px;
    margin-bottom: 15px;
}
@media screen and (max-width: 767.99px) {
    .pdoc__title {
        margin-bottom: 10px;
    }
}
.pdoc__link {
    display: block;
    color: var(--text2);
    text-decoration: underline;
    -webkit-text-decoration-style: dashed;
    text-decoration-style: dashed;
    transition: 0.3s;
}
.pdoc__link:hover {
    color: var(--main1);
}

.pgallery {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pgallery__arr {
    width: 60px;
    height: 60px;
    background-color: var(--main1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
@media screen and (max-width: 991.99px) {
    .pgallery__arr {
        width: 46px;
        height: 46px;
    }
}
.pgallery__arr:hover {
    background-color: var(--main2);
}
.pgallery__arr-svg {
    width: 9px;
    height: 16px;
    fill: var(--bg);
}
@media screen and (max-width: 991.99px) {
    .pgallery__arr-svg {
        width: 7px;
        height: 13px;
    }
}
.pgallery__container {
    width: calc(100% - 240px);
}
@media screen and (max-width: 991.99px) {
    .pgallery__container {
        width: calc(100% - 200px);
    }
}
@media screen and (max-width: 767.99px) {
    .pgallery__container {
        width: 100%;
    }
}
@media screen and (max-width: 767.99px) {
    .pgallery__prev, .pgallery__next {
        display: none;
    }
}
.pgallery__item {
    box-sizing: border-box;
    position: relative;
}
.pgallery__item:before {
    content: "";
    display: block;
    width: 100%;
    padding-top: calc((430 / 698) * 100%);
}
.pgallery__img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.pgallery__img-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pthumbs2 {
    width: calc(100% - 240px);
    margin: 0 auto;
}
@media screen and (max-width: 991.99px) {
    .pthumbs2 {
        width: calc(100% - 200px);
    }
}
@media screen and (max-width: 767.99px) {
    .pthumbs2 {
        width: 100%;
    }
}

.pthumb2 {
    box-sizing: border-box;
    position: relative;
    opacity: 0.5;
    transition: 0.3s;
}
.pthumb2.swiper-slide-thumb-active {
    opacity: 1;
}
.pthumb2:before {
    content: "";
    display: block;
    width: 100%;
    padding-top: calc((128 / 128) * 100%);
}
.pthumb2__img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.pthumb2__img-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.revs__list {
    margin-bottom: 40px;
}
.revs__txt {
    font-weight: 300;
    margin-bottom: 20px;
}
@media screen and (max-width: 991.99px) {
    .revs__txt {
        margin-bottom: 30px;
    }
}
.revs__btn {
    width: 204px;
    height: 39px;
    font-size: 14px;
    text-transform: none;
    margin-bottom: 45px;
}

.rev {
    box-shadow: 0 0 8px rgba(var(--black), 0.15);
    background-color: var(--bg);
    margin-bottom: 20px;
    padding: 25px 25px 15px 30px;
    display: flex;
    transition: 0.3s;
}
@media screen and (max-width: 767.99px) {
    .rev {
        padding: 20px 15px;
    }
}
.rev.open {
    background-color: var(--bg2);
}
.rev:last-child {
    margin-bottom: 0;
}
.rev__left {
    margin-right: 30px;
}
@media screen and (max-width: 767.99px) {
    .rev__left {
        display: none;
        margin-right: 15px;
    }
}
.rev__left_m {
    display: none;
}
@media screen and (max-width: 767.99px) {
    .rev__left_m {
        display: block;
    }
}
.rev__img {
    width: 150px;
    height: 150px;
    border: 1px solid var(--border);
    border-radius: 50%;
    padding: 10px;
}
@media screen and (max-width: 767.99px) {
    .rev__img {
        width: 88px;
        height: 88px;
        padding: 7px;
    }
}
.rev__img-wrap {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}
.rev__img-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rev__right {
    flex-grow: 1;
    transition: 0.3s;
}
.rev__top {
    margin-bottom: 10px;
}
@media screen and (max-width: 767.99px) {
    .rev__top-wrap {
        display: flex;
        align-items: center;
    }
}
.rev__top-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media screen and (max-width: 767.99px) {
    .rev__top-block {
        flex-direction: column;
        align-items: flex-start;
    }
}
.rev__top-left {
    margin-right: 60px;
}
@media screen and (max-width: 767.99px) {
    .rev__top-left {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
.rev__date {
    color: var(--text2);
    font-size: 14px;
}
@media screen and (max-width: 767.99px) {
    .rev__date {
        display: none;
    }
}
.rev__name {
    font-size: 18px;
}
@media screen and (max-width: 767.99px) {
    .rev__name {
        font-size: 16px;
    }
}
.rev__prof {
    font-size: 12px;
    font-weight: 400;
}
.rev__txt {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 10px;
}
.rev__hidden {
    display: none;
    padding-bottom: 25px;
}
@media screen and (max-width: 767.99px) {
    .rev__hidden {
        padding-bottom: 15px;
    }
}
.rev__imgs {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: 20px;
}
@media screen and (max-width: 767.99px) {
    .rev__imgs {
        margin-left: -5px;
        margin-right: -5px;
    }
}
@media screen and (max-width: 575.99px) {
    .rev__imgs {
        margin-left: -5px;
        margin-right: -5px;
    }
}
@media screen and (max-width: 767.99px) {
    .rev__imgs {
        margin-bottom: 0;
    }
}
.rev__image {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(25% - 20px);
    position: relative;
}
@media screen and (max-width: 767.99px) {
    .rev__image {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .rev__image {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 767.99px) {
    .rev__image {
        width: calc(50% - 10px);
    }
}
@media screen and (max-width: 767.99px) {
    .rev__image {
        margin-bottom: 10px;
    }
}
.rev__image:before {
    content: "";
    display: block;
    width: 100%;
    padding-top: calc((123 / 159) * 100%);
}
.rev__image-fancy {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
}
.rev__image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.rev__yt {
    position: relative;
    width: 100%;
}
.rev__yt:before {
    content: "";
    display: block;
    width: 100%;
    padding-top: calc((9 / 16) * 100%);
}
.rev__yt iframe {
    border: none;
    outline: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.rev__bottom {
    display: flex;
    justify-content: flex-end;
}
.rev__more {
    color: var(--main1);
    font-size: 14px;
    display: flex;
    align-items: center;
}
.rev__more.open .rev__more-open {
    display: none;
}
.rev__more.open .rev__more-close {
    display: flex;
}
.rev__more.open:after {
    transform: rotate(-180deg);
}
.rev__more:after {
    content: "";
    margin-left: 25px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 4px 0 4px;
    border-color: var(--main1) transparent transparent transparent;
}
@media screen and (max-width: 767.99px) {
    .rev__more:after {
        margin-left: 10px;
    }
}
.rev__more-close {
    display: none;
}

.precom__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.precom__title {
    color: var(--black);
    font-size: 28px;
    font-weight: 600;
}
@media screen and (max-width: 767.99px) {
    .precom__title {
        font-size: 20px;
    }
}
.precom__nav {
    display: flex;
    align-items: center;
}
@media screen and (max-width: 767.99px) {
    .precom__nav {
        display: none;
    }
}
.precom__slider {
    width: 100%;
}
.precom__container {
    margin-left: -10px;
    margin-right: -10px;
    padding: 5px 10px 15px 10px;
    margin-bottom: 45px;
}
@media screen and (max-width: 991.99px) {
    .precom__container {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 767.99px) {
    .precom__container {
        padding: 0;
    }
}
.precom__item {
    height: auto;
}
.precom__item .item {
    height: 100%;
}
.precom__item:hover {
    z-index: 10;
}
.precom__pag {
    display: flex;
    justify-content: center;
}

.popup {
    position: fixed;
    z-index: 1000;
    top: 0;
    bottom: 0;
    right: -692px;
    display: flex;
    align-items: flex-start;
    pointer-events: none;
    transition: 0.3s;
}

@media screen and (max-width: 767.99px) {
    .popup {
        width: 100%;
        right: -100%;
    }
}

.popup:before {
    content: "";
    display: none;
    position: fixed;
    z-index: 10;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(var(--black), 0.2);
    pointer-events: all;
}
.popup.active {
    right: 0;
}
.popup.active:before {
    display: block;
}
.popup__btns {
    border-radius: 4px 0px 0px 4px;
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-top: 260px;
    position: relative;
    z-index: 20;
    pointer-events: all;
    box-shadow: 0 0 12px rgba(var(--black), 0.1);
}
@media screen and (max-width: 991.99px) {
    .popup__btns {
        margin-top: 140px;
    }
}
@media screen and (max-width: 767.99px) {
    .popup__btns {
        display: none;
    }
}
.popup__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 60px;
    background-color: var(--bg);
    fill: var(--icon);
    border-bottom: 1px solid var(--border);
    transition: 0.3s;
}
@media screen and (max-width: 991.99px) {
    .popup__btn {
        display: none;
        width: 50px;
        height: 50px;
    }
}
@media screen and (max-width: 991.99px) {
    .popup__btn_t {
        display: flex;
    }
}
.popup__btn.active {
    fill: var(--main1);
}
.popup__btn:last-child {
    border-bottom: none;
}
.popup__btn-img {
    position: relative;
}
.popup__btn-svg_cart {
    width: 22px;
    height: 22px;
}
.popup__btn-svg_heart {
    width: 20px;
    height: 18px;
}
.popup__btn-svg_compare {
    width: 21px;
    height: 21px;
}
.popup__btn-svg_tel {
    width: 14px;
    height: 22px;
}
@media screen and (max-width: 991.99px) {
    .popup__btn-svg_tel {
        width: 12px;
        height: 18px;
    }
}
.popup__btn-svg_review {
    width: 25px;
    height: 25px;
}
@media screen and (max-width: 991.99px) {
    .popup__btn-svg_review {
        width: 22px;
        height: 22px;
    }
}
.popup__btn-svg_callback {
    width: 22px;
    height: 16px;
}
@media screen and (max-width: 991.99px) {
    .popup__btn-svg_callback {
        width: 18px;
        height: 14px;
    }
}
.popup__btn-count {
    width: 16px;
    height: 16px;
    background-color: var(--main3);
    border-radius: 50%;
    color: var(--bg);
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: -9px;
    right: -10px;
}
.popup__tabs {
    width: 692px;
    height: 100%;
    border: 1px solid var(--border2);
    background-color: var(--bg);
    position: relative;
    z-index: 20;
    pointer-events: all;
}
@media screen and (max-width: 767.99px) {
    .popup__tabs {
        width: 100%;
    }
}
.popup__tab {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
}
@media screen and (max-width: 767.99px) {
    .popup__tab {
        padding-bottom: 20px;
    }
}
.popup__tab.active {
    display: flex;
}
.popup__top {
    padding: 90px 100px 0 100px;
}
@media screen and (max-width: 767.99px) {
    .popup__top {
        padding: 45px 20px 0 20px;
    }
}
.popup__title {
    color: var(--headers);
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 35px;
}
@media screen and (max-width: 767.99px) {
    .popup__title {
        font-size: 20px;
        text-align: center;
        margin-bottom: 25px;
    }
}
.popup__subtitle {
    color: var(--text2);
}
.popup__close {
    position: absolute;
    top: 45px;
    right: 35px;
    fill: var(--icon);
    padding: 10px;
}
@media screen and (max-width: 767.99px) {
    .popup__close {
        top: 20px;
        right: 20px;
    }
}
.popup__close-svg {
    width: 14px;
    height: 14px;
}
.popup__middle {
    overflow-y: auto;
    padding: 0 100px;
    padding-top: 50px;
}
@media screen and (max-width: 767.99px) {
    .popup__middle {
        padding: 0 20px;
        padding-top: 30px;
    }
}
.popup__middle::-webkit-scrollbar {
    width: 6px;
}
.popup__middle::-webkit-scrollbar-track {
    background-color: var(--icon);
}
.popup__middle::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background-color: var(--main1);
}
.popup__fields {
    margin-bottom: 25px;
}
.popup__field {
    position: relative;
    margin-bottom: 55px;
}
.popup__field:last-child {
    margin-bottom: 0;
}
.popup__field_m30 {
    margin-bottom: 30px;
}
.popup__field label.error {
    min-width: 300px;
    color: var(--validation);
    font-size: 12px;
    font-weight: 300;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
}
.popup__input {
    width: 100%;
    border-bottom: 1px solid var(--border);
    padding: 5px 0;
    font-size: 16px;
}
.popup__input.error {
    border-color: var(--validation);
}
.popup__area {
    border: 1px solid var(--icon);
    height: 161px;
    width: 100%;
    padding: 5px;
}
.popup__area.error {
    border-color: var(--validation);
}
.popup__file {
    color: var(--icon);
}
.popup__placeholder, .popup__label {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--icon);
    pointer-events: none;
    font-size: 16px;
    transition: 0.3s;
}
.popup__placeholder.active, .active.popup__label {
    top: -20px;
}
.popup__placeholder i, .popup__label i {
    color: var(--validation);
    font-style: normal;
}
.popup__label {
    position: static;
    margin-bottom: 10px;
}
.popup__rating {
    margin-bottom: 25px;
}
.popup__policy {
    font-size: 12px;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
}
@media screen and (max-width: 767.99px) {
    .popup__policy {
        margin-bottom: 20px;
    }
}
.popup__policy_left {
    margin-right: 10px;
}
.popup__policy a {
    color: var(--main1);
    transition: 0.3s;
}
.popup__policy a:hover {
    color: var(--main2);
}
@media screen and (max-width: 767.99px) {
    .popup__submit {
        width: 185px;
        height: 50px;
        font-size: 18px;
    }
}
.popup__success {
    margin-top: 205px;
}
@media screen and (max-width: 767.99px) {
    .popup__success {
        margin-top: auto;
        margin-bottom: auto;
    }
}
.popup .rating {
    display: flex;
    align-items: center;
}
.popup .rating__list {
    margin-left: -6px;
    margin-right: -6px;
}
.popup .rating__star {
    margin: 0;
    padding: 0 6px;
}
.popup .rating__star:hover .rating__star-svg {
    fill: var(--link);
}
.popup .rating__txt {
    margin-left: 6px;
    color: var(--icon);
}
.popup__link {
    border-bottom: 1px solid var(--border);
    padding: 5px 0;
}
.popup__link-label {
    color: var(--icon);
    font-size: 16px;
}
.popup__link-link {
    color: var(--main1);
    transition: 0.3s;
}
.popup__link-link:hover {
    color: var(--main2);
}

.popup__field label.error {
    min-width: 300px;
}

.psuccess {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.psuccess__img {
    margin-bottom: 15px;
}
.psuccess__svg {
    width: 84px;
    height: 84px;
    fill: var(--main3);
}
.psuccess__title {
    color: var(--headers);
    font-size: 35px;
    margin-bottom: 15px;
    text-align: center;
}
.psuccess__txt {
    color: var(--black);
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center;
}
.psuccess__close {
    width: 128px;
    height: 50px;
    text-transform: none;
    font-size: 16px;
}
@media screen and (max-width: 767.99px) {
    .psuccess__close {
        width: 118px;
        height: 40px;
    }
}

.file {
    border: 1px solid var(--icon);
    background-color: var(--bg2);
    display: block;
    padding: 13px 17px;
    position: relative;
}
.file.active .file__del {
    display: flex;
}
.file__input {
    display: none;
}
.file__fake {
    display: flex;
    align-items: center;
}
.file__svg {
    width: 10px;
    height: 19px;
    fill: var(--text2);
    margin-right: 13px;
}
.file__title {
    color: var(--text2);
    font-size: 14px;
}
.file__del {
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -7px;
    align-items: center;
    display: none;
}
.file__del-svg {
    width: 14px;
    height: 14px;
    fill: var(--text2);
}

.rating2 {
    display: flex;
    align-items: center;
}
.rating2__input {
    display: none;
}
.rating2__input:checked ~ .rating2__star svg {
    fill: var(--link);
}
.rating2__star {
    padding: 0 6px;
    cursor: pointer;
}
.rating2__star:first-child {
    margin-right: 0;
}
.rating2__star svg {
    fill: var(--icon);
    width: 24px;
    height: 24px;
}
.rating2__star:hover svg, .rating2__star:hover ~ .rating2__star svg {
    fill: var(--link);
}
.rating2__wrapper {
    display: flex;
    flex-direction: row-reverse;
    margin-left: -6px;
    margin-right: -6px;
}
.rating2__wrapper:hover .rating2__star svg {
    fill: var(--icon);
}
.rating2__wrapper:hover .rating2__star:hover svg, .rating2__wrapper:hover .rating2__star:hover ~ .rating2__star svg {
    fill: var(--link);
}
.rating2__txt {
    color: var(--icon);
    margin-left: 6px;
}

.city__field {
    position: relative;
    margin-bottom: 20px;
}
.city__search {
    width: 100%;
    border: 1px solid var(--icon);
    padding: 13px 45px 13px 20px;
}
.city__search::placeholder {
    color: var(--text2);
}
.city__svg {
    position: absolute;
    top: 50%;
    margin-top: -9.5px;
    right: 20px;
    width: 19px;
    height: 19px;
    fill: var(--headers);
}
.city__cities {
    display: flex;
    flex-wrap: wrap;
}
.city__cities-title {
    margin-right: 15px;
    color: var(--text2);
    margin-bottom: 10px;
}
.city__item {
    color: var(--main1);
    margin-right: 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--main1);
}

.loader {
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--black), 0.2);
}
.loader_white {
    background: rgba(var(--bg), 0.7);
}
.loader__wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.625rem;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    perspective: 800px;
}
.loader .inner {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.loader .inner.one {
    left: 0%;
    top: 0%;
    animation: rotate-one 1s linear infinite;
    border-bottom: 0.6em solid var(--text);
}
.loader .inner.two {
    right: 0%;
    top: 0%;
    animation: rotate-two 1s linear infinite;
    border-right: 0.6em solid var(--main1);
}
.loader .inner.three {
    right: 0%;
    bottom: 0%;
    animation: rotate-three 1s linear infinite;
    border-top: 0.6em solid var(--main3);
}

@keyframes rotate-one {
    0% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }
    100% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
}
@keyframes rotate-two {
    0% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }
    100% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
}
@keyframes rotate-three {
    0% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }
    100% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}
.mmenu {
    position: fixed;
    z-index: 100;
    top: 0;
    bottom: 0;
    width: 320px;
    left: -100%;
    background: var(--bg);
    overflow: hidden;
    transition: 0.3s;
}
@media screen and (max-width: 767.99px) {
    .mmenu {
        width: 100%;
    }
}
.mmenu:before {
    content: "";
    position: fixed;
    z-index: 10;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(var(--black), 0.2);
    pointer-events: all;
    display: none;
}
.mmenu.active {
    right: 0;
}
.mmenu.active:before {
    display: block;
}
.mmenu.active {
    left: 0;
}
.mmenu__main {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    background: var(--bg);
    z-index: 20;
}
.mmenu__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg2);
    padding: 15px 20px;
}
.mmenu__top-right {
    display: flex;
    align-items: center;
}
.mmenu__title {
    display: flex;
    align-items: center;
}
.mmenu__title-svg {
    width: 20px;
    height: 8px;
    fill: var(--headers);
    margin-right: 8px;
}
.mmenu__title-title {
    color: var(--headers);
    font-size: 18px;
    font-weight: 500;
}
.mmenu__enter {
    display: flex;
    align-items: center;
    margin-right: 23px;
}
.mmenu__enter-svg {
    width: 20px;
    height: 20px;
    fill: var(--main1);
    margin-right: 9px;
}
.mmenu__enter-txt {
    color: var(--headers);
}
.mmenu__search-svg {
    width: 21px;
    height: 21px;
    fill: var(--headers);
}
.mmenu__close-svg {
    width: 14px;
    height: 14px;
    fill: var(--icon);
}
.mmenu__wrapper {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    right: -768px;
    width: 100%;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}
.mmenu__wrapper.active {
    right: 0;
}
.mmenu__bottom {
    flex-grow: 1;
    overflow-y: auto;
    padding-bottom: 40px;
}
.mmenu__contacts {
    padding: 20px;
}
.mmenu-btn__svg {
    width: 20px;
    height: 12px;
    fill: var(--headers);
}

.mcontrols {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 0;
}

.mcontrol {
    position: relative;
    width: 31px;
    height: 31px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-right: 20px;
}
.mcontrol:last-child {
    margin-right: 0;
}
.mcontrol__svg {
    fill: var(--icon);
}
.mcontrol__svg_cart {
    width: 22px;
    height: 22px;
}
.mcontrol__svg_heart {
    width: 20px;
    height: 18px;
}
.mcontrol__svg_compare {
    width: 25px;
    height: 25px;
    display: flex;
    margin-bottom: -3px;
}
.mcontrol__count {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--main3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bg);
    font-size: 9px;
    position: absolute;
    top: 0;
    right: 0;
}

.mitem {
    border-top: 1px solid var(--border);
}
.mitem:last-child {
    border-bottom: 1px solid var(--border);
}
.mitem__link {
    display: flex;
    align-items: center;
    color: var(--headers);
    position: relative;
    padding: 20px;
}
.mitem__link_b {
    font-weight: 600;
}
.mitem__link:after {
    content: "";
    display: none;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 4px;
    border-color: transparent transparent transparent var(--main1);
    position: absolute;
    top: 50%;
    margin-top: -4px;
    right: 20px;
}
.mitem__link_arr:after {
    display: block;
}
.mitem__link_phone {
    padding: 10px 20px;
}
.mitem__link-img {
    width: 22px;
    height: 22px;
    margin-right: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mitem__link-svg {
    fill: var(--main1);
}
.mitem__link-svg_tel {
    width: 14px;
    height: 22px;
}
.mitem__link-svg_review {
    width: 22px;
    height: 22px;
}
.mitem__link-svg_callback {
    width: 22px;
    height: 16px;
}
.mitem__link-txt {
    font-size: 16px;
    font-weight: 600;
}
.mitem__phone {
    display: flex;
    align-items: center;
}
.mitem__phone-svg {
    width: 20px;
    height: 26px;
    fill: var(--main1);
    margin-right: 15px;
}
.mitem__phone-wrap {
    display: flex;
    flex-direction: column;
}
.mitem__phone-phone {
    color: var(--headers);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}
.mitem__phone-txt {
    color: var(--icon);
    font-size: 14px;
}

.cart {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.cart__top {
    padding: 40px;
    border-bottom: 1px solid var(--border);
}
.cart__title {
    margin-bottom: 0;
    font-size: 30px;
}
.cart__middle {
    padding: 0;
    border-bottom: 1px solid var(--border);
}
.cart__total {
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.cart__total-right {
    display: flex;
    align-items: baseline;
}
.cart__total-txt, .cart__total-val {
    color: var(--black);
    font-size: 20px;
    font-weight: 700;
}
.cart__total-txt {
    margin-right: 15px;
}
.cart__clear {
    display: flex;
    align-items: center;
}
.cart__clear-img {
    width: 18px;
    height: 18px;
    border: 1px solid var(--icon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}
.cart__clear-svg {
    width: 8px;
    height: 8px;
    fill: var(--icon);
}
.cart__clear-txt {
    color: var(--icon);
    font-size: 14px;
    text-transform: uppercase;
}
.cart__bottom {
    padding: 40px;
    padding-bottom: 0;
}
.cart__btns {
    display: flex;
    justify-content: flex-end;
}
.cart__btn {
    width: 212px;
    margin-right: 40px;
}
.cart__btn:last-child {
    margin-right: 0;
}
.cart__btn-btn {
    margin-bottom: 20px;
}
.cart__btn-txt {
    color: var(--icon);
    font-size: 14px;
}
.cart__one {
    font-size: 18px;
    height: 42px;
}
.cart__one svg {
    width: 18px;
    height: 18px;
}
.cart__buy {
    width: 100%;
}

.citem {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
}
.citem_basket {
    padding-right: 45px;
}
.citem_basket:last-child {
    border-bottom: none;
}
@media screen and (max-width: 767.99px) {
    .citem_basket:last-child {
        border: 1px solid var(--border);
    }
}
@media screen and (max-width: 991.99px) {
    .citem_basket {
        padding-right: 20px;
    }
}
@media screen and (max-width: 767.99px) {
    .citem_basket {
        border: 1px solid var(--border);
        padding: 0;
        flex-direction: column;
        z-index: 0;
        width: calc(50% + 1px);
        margin-left: -1px;
        margin-top: -1px;
    }
    .citem_basket:hover {
        z-index: 1;
    }
}
.citem_basket .citem__top {
    padding-right: 45px;
}
@media screen and (max-width: 991.99px) {
    .citem_basket .citem__top {
        padding-right: 20px;
    }
}
@media screen and (max-width: 767.99px) {
    .citem_basket .citem__top {
        padding: 10px;
    }
}
@media screen and (max-width: 991.99px) {
    .citem_basket .citem__img {
        min-width: 126px;
        width: 126px;
    }
}
@media screen and (max-width: 767.99px) {
    .citem_basket .citem__bottom {
        flex-direction: column;
        padding: 10px;
        padding-top: 0;
    }
}
.citem_basket .citem__calc {
    min-width: 216px;
    width: 216px;
    margin-right: 18px;
}
@media screen and (max-width: 991.99px) {
    .citem_basket .citem__calc {
        min-width: 176px;
        width: 176px;
        margin-right: 20px;
    }
}
@media screen and (max-width: 767.99px) {
    .citem_basket .citem__calc {
        min-width: auto;
        width: 100%;
        margin-right: 0;
    }
}
.citem_basket .citem__btns {
    width: 150px;
    min-width: 150px;
    justify-content: space-between;
}
@media screen and (max-width: 991.99px) {
    .citem_basket .citem__btns {
        min-width: 110px;
        width: 110px;
    }
}
@media screen and (max-width: 767.99px) {
    .citem_basket .citem__btns {
        min-width: auto;
        width: auto;
    }
}
.citem_basket .citem__btn {
    margin-right: 0;
}
.citem_basket .citem__del {
    align-self: center;
    width: 28px;
    height: 28px;
}
@media screen and (max-width: 991.99px) {
    .citem_basket .citem__del {
        width: 22px;
        height: 22px;
    }
}
@media screen and (max-width: 767.99px) {
    .citem_basket .citem__del {
        position: absolute;
        top: 0;
        right: 0;
        width: 14px;
        height: 14px;
        pointer-events: all;
    }
}
.citem_basket .citem__del-svg {
    width: 14px;
    height: 14px;
}
@media screen and (max-width: 991.99px) {
    .citem_basket .citem__del-svg {
        width: 10px;
        height: 10px;
    }
}
@media screen and (max-width: 767.99px) {
    .citem_basket .citem__del-svg {
        width: 8px;
        height: 8px;
    }
}
.citem_favorite .citem__btn_favorite {
    display: none;
}
.citem_favorite .citem__btn_cart {
    display: flex;
}
.citem_favorite .citem__count {
    display: none;
}
.citem_favorite .citem__total {
    display: none;
}
.citem.add_in {
    background: var(--bg);
}
.citem.add_in svg {
    fill: var(--main1);
}
.citem__top {
    padding: 0 20px;
    padding-left: 0;
}
@media screen and (max-width: 767.99px) {
    .citem__top {
        position: relative;
    }
}
.citem__img {
    display: block;
    position: relative;
    min-width: 100px;
    width: 100px;
}
.citem__img:before {
    content: none;
    display: block;
    width: 100%;
    padding-top: calc((120 / 151) * 100%);
}
.citem__img-wrap {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
}
.citem__img-img {
    display: block;
    width: auto;
    height: auto;
    object-fit: fill;
    max-width: 100px;
    max-height: 100px;
    padding: 5px;
}
.citem__bottom {
    display: flex;
    align-items: center;
    flex-grow: 1;
}
@media screen and (max-width: 767.99px) {
    .citem__bottom {
        padding-bottom: 15px;
    }
}
.citem__content {
    margin-right: 10px;
    flex-grow: 1;
}
@media screen and (max-width: 767.99px) {
    .citem__content {
        margin-bottom: 20px;
    }
}
.citem__avaible {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
@media screen and (max-width: 991.99px) {
    .citem__avaible {
        margin-bottom: 3px;
    }
}
@media screen and (max-width: 767.99px) {
    .citem__avaible {
        margin-bottom: 10px;
    }
}
.citem__avaible__round {
    width: 10px;
    height: 10px;
    border: 1px solid var(--main3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 7px;
    border-radius: 50%;
}
.citem__avaible__round:before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--main3);
}
.citem__avaible__txt {
    color: var(--main3);
    font-size: 12px;
    line-height: 1;
}
@media screen and (max-width: 767.99px) {
    .citem__avaible__txt {
        font-size: 10px;
    }
}
.citem__title {
    max-width: 310px;
    color: var(--text2);
    font-size: 14px;
    display: block;
}
.citem__prices {
    margin-bottom: 10px;
}
@media screen and (max-width: 991.99px) {
    .citem__prices {
        margin-bottom: 5px;
    }
}
@media screen and (max-width: 767.99px) {
    .citem__prices {
        margin-bottom: 15px;
    }
}
.citem__calc {
    margin-right: 35px;
    min-width: 120px;
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.citem__count {
    width: 86px;
    margin-bottom: 15px;
}
.citem__total {
    color: var(--headers);
    font-size: 12px;
    font-weight: 700;
}
.citem__btns {
    align-self: stretch;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 767.99px) {
    .citem__btns {
        display: none;
        position: absolute;
        top: 10px;
        bottom: 10px;
        left: 10px;
        right: 10px;
        pointer-events: none;
    }
}
.citem__btns_m {
    display: none;
}
@media screen and (max-width: 767.99px) {
    .citem__btns_m {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        min-width: auto;
        width: 100%;
    }
}
.citem__btn {
    display: flex;
    margin-right: 20px;
    fill: var(--icon);
}
@media screen and (max-width: 767.99px) {
    .citem__btn {
        background: var(--bg);
        pointer-events: all;
        align-items: center;
        justify-content: center;
    }
}
@media screen and (max-width: 767.99px) {
    .citem__btn_compare {
        width: 27px;
        height: 22px;
        border-top-right-radius: 50%;
        padding-right: 3px;
    }
    .citem__btn_compare svg {
        width: 18px;
        height: 18px;
    }
}
@media screen and (max-width: 767.99px) {
    .citem__btn_favorite {
        width: 27px;
        height: 22px;
        border-top-left-radius: 50%;
        padding-left: 3px;
    }
    .citem__btn_favorite svg {
        width: 15px;
        height: 13px;
    }
}
.citem__btn_cart {
    display: none;
}
.citem__btn.active {
    fill: var(--main1);
}
.citem__btn-svg_compare {
    width: 21px;
    height: 21px;
}
.citem__btn-svg_heart {
    width: 20px;
    height: 18px;
}
.citem__btn-svg_cart {
    width: 22px;
    height: 22px;
}
.citem__del {
    width: 20px;
    height: 20px;
    border: 1px solid var(--icon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
}
@media screen and (max-width: 767.99px) {
    .citem__del {
        position: absolute;
        top: 0;
        right: 0;
        width: 14px;
        height: 14px;
        pointer-events: all;
    }
}
.citem__del-svg {
    width: 10px;
    height: 10px;
    fill: var(--icon);
}
@media screen and (max-width: 767.99px) {
    .citem__del-svg {
        width: 8px;
        height: 8px;
    }
}

.basket__main {
    padding-top: 40px;
    margin-bottom: 220px;
}
@media screen and (max-width: 991.99px) {
    .basket__main {
        margin-bottom: 60px;
        padding-top: 20px;
    }
}
@media screen and (max-width: 767.99px) {
    .basket__main {
        padding-top: 10px;
    }
}
.basket__bread {
    margin-bottom: 30px;
}
@media screen and (max-width: 1200px) {
    .basket__bread {
        margin-bottom: 20px;
    }
}
.basket__left {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(75% - 20px);
}
@media screen and (max-width: 767.99px) {
    .basket__left {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .basket__left {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 1200px) {
    .basket__left {
        width: calc(100% - 20px);
        order: 1;
    }
}
@media screen and (max-width: 767.99px) {
    .basket__left {
        width: calc(100% - 10px);
    }
}
.basket__table {
    margin-bottom: 40px;
}
@media screen and (max-width: 767.99px) {
    .basket__table {
        margin-bottom: 20px;
    }
}
.basket__fields {
    padding: 35px 20px 15px 20px;
}
@media screen and (max-width: 991.99px) {
    .basket__fields {
        padding-top: 20px;
        padding-bottom: 0;
    }
}
@media screen and (max-width: 767.99px) {
    .basket__fields {
        padding: 20px;
    }
}
.basket__field {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}
@media screen and (max-width: 767.99px) {
    .basket__field {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .basket__field {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 767.99px) {
    .basket__field {
        margin-bottom: 15px;
    }
}
.basket__field_8 {
    width: calc(33.3333333333% - 20px);
}
@media screen and (max-width: 767.99px) {
    .basket__field_8 {
        width: calc(100% - 10px);
    }
}
.basket__field_24 {
    width: calc(100% - 20px);
}
@media screen and (max-width: 767.99px) {
    .basket__field_24 {
        width: calc(100% - 10px);
    }
}
.basket__label {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 10px;
}
.basket__input {
    border-radius: 4px;
    border: 1px solid var(--border);
    width: 100%;
    padding: 8px 10px;
    font-weight: 300;
}
.basket__input_area {
    height: 143px;
}
.basket__input.error {
    border-color: red;
}
.basket__right {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(25% - 20px);
}
@media screen and (max-width: 767.99px) {
    .basket__right {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .basket__right {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 1200px) {
    .basket__right {
        width: calc(100% - 20px);
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 767.99px) {
    .basket__right {
        width: calc(100% - 10px);
    }
}
.basket__clear {
    width: 100%;
    justify-content: flex-end;
}
.basket__block {
    margin-bottom: 40px;
}
@media screen and (max-width: 1200px) {
    .basket__block {
        margin-bottom: 20px;
    }
}
.basket__block:last-child {
    margin-bottom: 0;
}

.btable__table {
    border-collapse: collapse;
    width: 100%;
    background-color: var(--bg2);
}
.btable__w-1 {
    width: 215px;
    padding-left: 20px;
}
.btable__w-1.btable__th {
    width: auto;
}
@media screen and (max-width: 991.99px) {
    .btable__w-1 {
        width: 168px;
    }
}
@media screen and (max-width: 767.99px) {
    .btable__w-1 {
        width: auto;
        padding-left: 10px;
    }
}
@media screen and (max-width: 767.99px) {
    .btable__w-2 {
        display: none;
    }
}
.btable__w-3 {
    width: 234px;
    text-align: center;
    padding-right: 18px;
}
@media screen and (max-width: 991.99px) {
    .btable__w-3 {
        width: 196px;
        padding-right: 20px;
    }
}
@media screen and (max-width: 767.99px) {
    .btable__w-3 {
        display: none;
    }
}
.btable__w-4 {
    width: 195px;
    padding-right: 45px;
    text-align: right;
    alignment: right;
}
@media screen and (max-width: 991.99px) {
    .btable__w-4 {
        padding-right: 20px;
        width: 130px;
    }
}
@media screen and (max-width: 767.99px) {
    .btable__w-4 {
        width: auto;
        padding-right: 10px;
    }
}
.btable__top {
    background-color: var(--main1);
    border: 1px solid var(--main1);
}
.btable__title {
    color: var(--bg);
    fill: var(--bg);
    display: flex;
    align-items: center;
}
.btable__title_m {
    display: none;
}
@media screen and (max-width: 767.99px) {
    .btable__title_m {
        display: flex;
        color: var(--black);
        font-size: 16px;
        padding: 18px 10px;
    }
}
.btable__title_center {
    justify-content: center;
}
.btable__title-txt {
    font-size: 16px;
    font-weight: 400;
}
@media screen and (max-width: 767.99px) {
    .btable__title-txt {
        font-size: 13px;
    }
}
.btable__title-txt_15b {
    font-size: 15px;
    font-weight: 700;
}
@media screen and (max-width: 767.99px) {
    .btable__title-txt_15b {
        font-size: 13px;
    }
}
.btable__title-txt_m {
    font-weight: 500;
}
.btable__title-svg_cart {
    width: 24px;
    height: 24px;
    margin-right: 20px;
}
.btable__title-svg_close {
    width: 14px;
    height: 14px;
    margin-right: 10px;
}
@media screen and (max-width: 767.99px) {
    .btable__title-svg_close {
        width: 12px;
        height: 12px;
    }
}
.btable__th {
    padding-top: 17px;
    padding-bottom: 17px;
}
@media screen and (max-width: 767.99px) {
    .btable__th {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}
.btable__headers {
    background-color: var(--bg2);
    border: 1px solid var(--border);
}
@media screen and (max-width: 767.99px) {
    .btable__headers {
        border-bottom: none;
    }
}
.btable__head {
    color: var(--text2);
    font-size: 13px;
    padding-top: 19px;
    padding-bottom: 19px;
}
@media screen and (max-width: 767.99px) {
    .btable__head {
        display: none;
    }
}
.btable__head_b {
    color: var(--black);
    font-size: 15px;
    font-weight: 700;
}
.btable__list {
    border: 1px solid var(--border);
    border-top: none;
}
@media screen and (max-width: 767.99px) {
    .btable__list {
        display: flex;
        flex-wrap: wrap;
        width: calc(100% - 1px);
        margin-top: 1px;
        margin-left: 1px;
        margin-right: 1px;
        border: none;
    }
}

.brow__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 20px;
    background-color: var(--main1);
    border: 1px solid var(--main1);
}
@media screen and (max-width: 767.99px) {
    .brow__info {
        padding: 10px;
    }
}
.brow__header {
    color: var(--bg);
    fill: var(--bg);
    display: flex;
    align-items: center;
}
@media screen and (max-width: 767.99px) {
    .brow__header {
        display: none;
    }
}
@media screen and (max-width: 767.99px) {
    .brow__header_m {
        display: flex;
    }
}
.brow__header-svg {
    margin-right: 15px;
}
.brow__header-svg_cart {
    width: 24px;
    height: 24px;
}
.brow__title {
    padding: 19px 20px;
    color: var(--black);
    font-size: 15px;
    font-weight: 700;
    background: var(--bg2);
    border: 1px solid var(--border);
}
@media screen and (max-width: 767.99px) {
    .brow__title {
        font-size: 13px;
    }
}
.brow__content {
    border: 1px solid var(--border);
    border-top: none;
    border-bottom: none;
}
.brow__content_p {
    padding: 35px 20px;
}
@media screen and (max-width: 991.99px) {
    .brow__content_p {
        padding: 25px 20px;
    }
}
@media screen and (max-width: 767.99px) {
    .brow__content_p {
        padding: 25px 10px;
    }
}
.brow__left {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(50% - 20px);
}
@media screen and (max-width: 767.99px) {
    .brow__left {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .brow__left {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 767.99px) {
    .brow__left {
        width: calc(100% - 10px);
    }
}
@media screen and (max-width: 767.99px) {
    .brow__left {
        margin-bottom: 25px;
    }
}
.brow__right {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(50% - 20px);
    display: flex;
    justify-content: flex-end;
    align-self: flex-start;
}
@media screen and (max-width: 767.99px) {
    .brow__right {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .brow__right {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 767.99px) {
    .brow__right {
        width: calc(100% - 10px);
    }
}
.brow__bottom {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(100% - 20px);
    margin-top: 25px;
}
@media screen and (max-width: 767.99px) {
    .brow__bottom {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .brow__bottom {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 767.99px) {
    .brow__bottom {
        width: calc(100% - 10px);
    }
}

.bdelivery__info {
    max-width: 300px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--main1);
    padding: 20px;
}
.bdelivery__info-title {
    color: var(--black);
    font-size: 15px;
    margin-bottom: 15px;
}
.bdelivery__info-sub {
    color: var(--text2);
    font-size: 12px;
    margin-bottom: 15px;
}
.bdelivery__info-list {
    margin-bottom: 10px;
}
.bdelivery__info-item {
    color: var(--black);
    font-size: 12px;
    margin-bottom: 5px;
}
.bdelivery__info-item:last-child {
    margin-bottom: 0;
}
.bdelivery__info-link {
    color: var(--main1);
    font-size: 12px;
    text-decoration: underline;
    transition: 0.3s;
}
.bdelivery__info-link:hover {
    color: var(--main2);
}
.bdelivery__addr-info {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 10px;
}
.bdelivery__addr-input {
    border-radius: 4px;
    border: 1px solid var(--main1);
    width: 100%;
    padding: 12px;
}

.delopt, .payopt {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.delopt:last-child, .payopt:last-child {
    margin-bottom: 0;
}
.delopt__label, .payopt__label {
    margin-right: 40px;
    cursor: pointer;
}
@media screen and (max-width: 767.99px) {
    .delopt__label, .payopt__label {
        margin-right: 20px;
    }
}
.delopt__block, .payopt__block {
    display: flex;
    flex-direction: column;
    width: 120px;
    height: 100px;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: 0.3s;
}
.delopt__input, .payopt__input {
    display: none;
}
.delopt__input:checked + .delopt__block, .delopt__input:checked + .payopt__block, .payopt__input:checked + .delopt__block, .payopt__input:checked + .payopt__block {
    border-color: var(--main1);
}
.delopt__input:checked + .delopt__block .delopt__bottom, .delopt__input:checked + .delopt__block .payopt__bottom, .delopt__input:checked + .payopt__block .delopt__bottom, .delopt__input:checked + .payopt__block .payopt__bottom, .payopt__input:checked + .delopt__block .delopt__bottom, .payopt__input:checked + .delopt__block .payopt__bottom, .payopt__input:checked + .payopt__block .delopt__bottom, .payopt__input:checked + .payopt__block .payopt__bottom {
    background-color: var(--main1);
}
.delopt__input:checked + .delopt__block .delopt__price, .delopt__input:checked + .delopt__block .payopt__price, .delopt__input:checked + .payopt__block .delopt__price, .delopt__input:checked + .payopt__block .payopt__price, .payopt__input:checked + .delopt__block .delopt__price, .payopt__input:checked + .delopt__block .payopt__price, .payopt__input:checked + .payopt__block .delopt__price, .payopt__input:checked + .payopt__block .payopt__price {
    color: var(--bg);
}
.delopt__input:checked + .delopt__block .delopt__fake, .delopt__input:checked + .delopt__block .payopt__fake, .delopt__input:checked + .payopt__block .delopt__fake, .delopt__input:checked + .payopt__block .payopt__fake, .payopt__input:checked + .delopt__block .delopt__fake, .payopt__input:checked + .delopt__block .payopt__fake, .payopt__input:checked + .payopt__block .delopt__fake, .payopt__input:checked + .payopt__block .payopt__fake {
    border-color: var(--main1);
    background-color: var(--main1);
}
.delopt__input:checked + .delopt__block .delopt__fake-svg, .delopt__input:checked + .delopt__block .payopt__fake-svg, .delopt__input:checked + .payopt__block .delopt__fake-svg, .delopt__input:checked + .payopt__block .payopt__fake-svg, .payopt__input:checked + .delopt__block .delopt__fake-svg, .payopt__input:checked + .delopt__block .payopt__fake-svg, .payopt__input:checked + .payopt__block .delopt__fake-svg, .payopt__input:checked + .payopt__block .payopt__fake-svg {
    opacity: 1;
}
.delopt__top, .payopt__top {
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.delopt__fake, .payopt__fake {
    width: 20px;
    height: 20px;
    border: 2px solid var(--text2);
    border-radius: 50%;
    position: absolute;
    top: 7px;
    left: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.delopt__fake-svg, .payopt__fake-svg {
    width: 14px;
    height: 10px;
    fill: var(--bg);
    opacity: 0;
    transition: 0.3s;
}
.delopt__bottom, .payopt__bottom {
    background-color: var(--bg2);
    border-top: 1px solid var(--border);
    text-align: center;
    transition: 0.3s;
}
.delopt__price, .payopt__price {
    color: var(--black);
    font-size: 12px;
    transition: 0.3s;
}
.delopt__title, .payopt__title {
    color: var(--black);
    font-size: 15px;
    font-weight: 600;
}

.btotal {
    display: flex;
    flex-wrap: wrap;
    background: var(--bg2);
    padding: 14px 0;
    border: 1px solid var(--border);
}
@media screen and (max-width: 767.99px) {
    .btotal {
        padding: 35px 0;
    }
}
.btotal__col {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid var(--border);
    padding: 10px 20px;
}
@media screen and (max-width: 991.99px) {
    .btotal__col {
        padding: 10px;
    }
}
@media screen and (max-width: 767.99px) {
    .btotal__col {
        width: 100%;
        padding: 0;
        margin-bottom: 15px;
    }
}
.btotal__col:last-child {
    border-color: transparent;
    margin-bottom: 0;
}
.btotal__item {
    display: flex;
    align-items: center;
}
.btotal__item-icon {
    width: 51px;
    height: 51px;
    background-color: var(--main1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btotal__item-svg {
    fill: var(--bg);
}
.btotal__item-svg_cart {
    width: 27px;
    height: 24px;
}
.btotal__item-svg_car {
    width: 33px;
    height: 19px;
}
.btotal__item-left {
    margin-right: 20px;
}
@media screen and (max-width: 991.99px) {
    .btotal__item-left {
        margin-right: 10px;
    }
}
.btotal__item-title {
    font-size: 13px;
    font-weight: 700;
}
.btotal__item-price {
    font-size: 18px;
}
.btotal__price-txt {
    font-size: 13px;
}
.btotal__price-price {
    font-size: 24px;
    font-weight: 700;
}
.btotal__submit {
    width: 157px;
    height: 40px;
    border-radius: 100px;
    background-color: var(--main3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bg);
    font-size: 14px;
    transition: 0.3s;
}
@media screen and (max-width: 991.99px) {
    .btotal__submit {
        width: 135px;
        height: 34px;
        font-size: 12px;
    }
}
.btotal__submit:hover {
    background-color: var(--main1);
}

.bblock__title {
    background-color: var(--main1);
    display: flex;
    align-items: center;
    padding: 17px 20px;
}
.bblock__title-svg {
    width: 18px;
    height: 18px;
    fill: var(--bg);
    margin-right: 15px;
}
.bblock__title-txt {
    color: var(--bg);
    font-size: 18px;
    font-weight: 700;
}
.bblock__content {
    border: 1px solid var(--border);
}
.bblock__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
}
@media screen and (max-width: 1200px) {
    .bblock__info {
        flex-direction: row;
    }
}
@media screen and (max-width: 767.99px) {
    .bblock__info {
        padding: 35px 40px;
        flex-direction: column;
    }
}
.bblock__info-left {
    margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
    .bblock__info-left {
        margin-bottom: 0;
        margin-right: 30px;
    }
}
@media screen and (max-width: 767.99px) {
    .bblock__info-left {
        margin-right: 0;
        margin-bottom: 25px;
    }
}
@media screen and (max-width: 1200px) {
    .bblock__info-img {
        min-width: 74px;
        width: 74px;
    }
}
.bblock__info-txt {
    color: var(--black);
    font-weight: 300;
    margin-bottom: 15px;
    text-align: center;
}
@media screen and (max-width: 1200px) {
    .bblock__info-txt {
        margin-bottom: 10px;
        text-align: left;
    }
}
@media screen and (max-width: 767.99px) {
    .bblock__info-txt {
        text-align: center;
        font-size: 16px;
        margin-bottom: 20px;
    }
}
.bblock__info-links {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media screen and (max-width: 1200px) {
    .bblock__info-links {
        flex-direction: row;
    }
}
@media screen and (max-width: 767.99px) {
    .bblock__info-links {
        flex-direction: column;
    }
}
.bblock__info-link {
    display: flex;
    align-items: center;
    color: var(--main1);
    fill: var(--main1);
    font-size: 16px;
    text-decoration: underline;
    margin-bottom: 8px;
    transition: 0.3s;
}
@media screen and (max-width: 1200px) {
    .bblock__info-link {
        margin-bottom: 0;
        margin-right: 25px;
    }
}
@media screen and (max-width: 767.99px) {
    .bblock__info-link {
        margin-bottom: 8px;
        margin-right: 0;
    }
}
.bblock__info-link:hover {
    color: var(--main2);
    fill: var(--main2);
}
.bblock__info-link:last-child {
    margin-bottom: 0;
    margin-right: 0;
}
.bblock__info-svg {
    width: 16px;
    height: 16px;
    margin-right: 7px;
}

.border {
    padding-bottom: 25px;
}
@media screen and (max-width: 1200px) {
    .border {
        padding-bottom: 40px;
    }
}
@media screen and (max-width: 767.99px) {
    .border {
        padding-bottom: 20px;
    }
}
.border__list {
    padding: 0 30px;
}
@media screen and (max-width: 1200px) {
    .border__list {
        padding: 0;
    }
}
@media screen and (max-width: 767.99px) {
    .border__list {
        padding: 0 30px;
    }
}
.border__item {
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    min-height: 60px;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 1200px) {
    .border__item {
        padding: 10px 30px;
    }
}
@media screen and (max-width: 767.99px) {
    .border__item {
        padding: 10px 0;
        min-height: 55px;
    }
}
.border__item:last-child {
    border-color: transparent;
    border-bottom: 1px solid var(--border);
}
.border__item-wrap {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.border__item-title {
    color: var(--text2);
    font-size: 13px;
}
.border__item-prices {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.border__item-price {
    color: var(--black);
    font-size: 13px;
}
.border__item-oldprice {
    color: var(--text2);
    font-size: 12px;
    text-decoration: line-through;
}
.border__discount {
    background-color: var(--main3);
    padding: 14px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--bg);
    font-size: 13px;
    font-weight: 400;
}
@media screen and (max-width: 767.99px) {
    .border__discount {
        padding: 14px 25px;
    }
}
.border__total {
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
}
@media screen and (max-width: 767.99px) {
    .border__total {
        padding: 15px 25px;
        margin-bottom: 10px;
    }
}
.border__btns {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.border__submit {
    width: 137px;
    height: 40px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    margin-bottom: 15px;
}
@media screen and (max-width: 767.99px) {
    .border__fast .btn3__txt {
        font-size: 16px;
    }
}
@media screen and (max-width: 767.99px) {
    .border__fast .btn3__svg {
        width: 18px;
        height: 18px;
        margin-right: 13px;
    }
}

.brecom {
    background-color: var(--bg2);
    padding-top: 80px;
    padding-bottom: 80px;
}
@media screen and (max-width: 991.99px) {
    .brecom {
        padding-top: 45px;
        padding-bottom: 45px;
    }
}
.brecom__slider {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
@media screen and (max-width: 767.99px) {
    .brecom__slider {
        margin-bottom: 30px;
    }
}
.brecom__prev, .brecom__next {
    position: relative;
    z-index: 2;
}
@media screen and (max-width: 991.99px) {
    .brecom__prev, .brecom__next {
        display: none;
    }
}
.brecom__container {
    width: calc(100% - 40px);
    margin-left: -10px;
    margin-right: -10px;
    padding: 5px 10px 15px 10px;
}
@media screen and (max-width: 991.99px) {
    .brecom__container {
        width: calc(100% + 20px);
    }
}
@media screen and (max-width: 767.99px) {
    .brecom__container {
        padding: 0;
    }
}
.brecom__pag {
    width: 100%;
    display: flex;
    justify-content: center;
}
.brecom__item {
    height: auto;
}
.brecom__item .item {
    height: 100%;
}

.favorite__main {
    padding-bottom: 90px;
    margin-bottom: 0;
    border-bottom: 1px solid var(--border);
}
@media screen and (max-width: 1200px) {
    .favorite__main {
        padding-bottom: 30px;
    }
}

.ok__main {
    padding-top: 0;
    padding-bottom: 120px;
    border-bottom: 1px solid var(--border);
}
@media screen and (max-width: 1200px) {
    .ok__main {
        padding-top: 20px;
        padding-bottom: 20px;
        border-bottom: none;
    }
}
@media screen and (max-width: 767.99px) {
    .ok__main {
        padding-top: 10px;
        padding-bottom: 100px;
    }
}
.ok__left {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(25% - 20px);
}
@media screen and (max-width: 767.99px) {
    .ok__left {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .ok__left {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 1200px) {
    .ok__left {
        width: calc(100% - 20px);
        order: 1;
        margin-top: 100px;
    }
}
@media screen and (max-width: 767.99px) {
    .ok__left {
        width: calc(100% - 10px);
    }
}
@media screen and (max-width: 767.99px) {
    .ok__left {
        margin-top: 40px;
    }
}
.ok__block {
    margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
    .ok__consult {
        display: none;
    }
}
.ok__middle {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(41.6666666667% - 20px);
    margin-right: calc(8.3333333333% + 10px);
    padding-left: 20px;
}
@media screen and (max-width: 767.99px) {
    .ok__middle {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .ok__middle {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 1200px) {
    .ok__middle {
        width: calc(66.6666666667% - 20px);
        margin-right: calc(0% + 10px);
        padding-left: 0;
    }
}
@media screen and (max-width: 767.99px) {
    .ok__middle {
        width: calc(100% - 10px);
    }
}
@media screen and (max-width: 767.99px) {
    .ok__middle {
        margin-bottom: 30px;
    }
}
.ok__bread {
    margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
    .ok__bread {
        margin-bottom: 40px;
    }
}
@media screen and (max-width: 767.99px) {
    .ok__bread {
        margin-bottom: 15px;
    }
}
.ok__title {
    margin-bottom: 30px;
}
.ok__sub {
    color: var(--black);
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 25px;
}
@media screen and (max-width: 767.99px) {
    .ok__sub {
        font-size: 16px;
    }
}
.ok__num {
    margin-bottom: 40px;
}
.ok__info {
    margin-bottom: 30px;
}
@media screen and (max-width: 767.99px) {
    .ok__info {
        margin-bottom: 0;
    }
}
@media screen and (max-width: 767.99px) {
    .ok__btn {
        display: none;
    }
}
.ok__back {
    width: 217px;
    height: 39px;
    border-radius: 2px;
    background: var(--main1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.ok__back:hover, .ok__back:focus {
    background-color: var(--main2);
    color: var(--bg);
}
.ok__back:active {
    background-color: var(--main1);
}
.ok__back-svg {
    width: 21px;
    height: 8px;
    fill: var(--bg);
    margin-right: 10px;
}
@media screen and (max-width: 767.99px) {
    .ok__back-svg {
        display: none;
    }
}
.ok__back-txt {
    color: var(--bg);
    font-size: 14px;
}
.ok__right {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(25% - 20px);
    padding-top: 120px;
}
@media screen and (max-width: 767.99px) {
    .ok__right {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .ok__right {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 1200px) {
    .ok__right {
        width: calc(33.3333333333% - 20px);
        padding-top: 140px;
    }
}
@media screen and (max-width: 767.99px) {
    .ok__right {
        width: calc(100% - 10px);
    }
}
@media screen and (max-width: 767.99px) {
    .ok__right {
        padding-top: 0;
    }
}
@media screen and (max-width: 1200px) {
    .ok__actions {
        display: none;
    }
}

.oknum {
    display: flex;
    align-items: center;
}
.oknum__left {
    margin-right: 30px;
}
@media screen and (max-width: 767.99px) {
    .oknum__left {
        margin-right: 20px;
    }
}
.oknum__svg {
    width: 42px;
    height: 42px;
    fill: var(--main3);
}
.oknum__item {
    color: var(--black);
    font-size: 18px;
    font-weight: 300;
}
@media screen and (max-width: 767.99px) {
    .oknum__item {
        font-size: 14px;
        margin-bottom: 5px;
    }
}
.oknum__item:last-child {
    margin-bottom: 0;
}
.oknum__item b {
    font-weight: 700;
}
.okinfo {
    background: var(--bg2);
    padding: 30px 40px 60px 40px;
}
@media screen and (max-width: 767.99px) {
    .okinfo {
        padding: 15px 10px;
    }
}
.okinfo__title {
    color: var(--black);
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
}
@media screen and (max-width: 767.99px) {
    .okinfo__title {
        font-size: 16px;
        margin-bottom: 15px;
    }
}
.okinfo__list {
    margin-bottom: 40px;
}
@media screen and (max-width: 767.99px) {
    .okinfo__list {
        margin-bottom: 35px;
    }
}
.okinfo__item {
    margin-top: 15px;
}
.okinfo__item_delivery {
    margin-top: 25px;
}
@media screen and (max-width: 767.99px) {
    .okinfo__item_delivery {
        margin-top: 15px;
    }
}
.okinfo__item:first-child {
    margin-top: 0;
}
.okinfo__item-title {
    color: var(--black);
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 10px;
}
@media screen and (max-width: 767.99px) {
    .okinfo__item-title {
        margin-bottom: 5px;
    }
}
.okinfo__item-wrap {
    display: flex;
    align-items: flex-end;
}
.okinfo__item-txt {
    flex-grow: 1;
    margin-right: 8px;
    position: relative;
}
@media screen and (max-width: 767.99px) {
    .okinfo__item-txt {
        margin-right: 0;
        padding-right: 65px;
    }
}
.okinfo__item-txt:after {
    content: "";
    display: inline-block;
    height: 2px;
    width: 100%;
    background: url("../images/icons/line.png") 0 0;
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
}
.okinfo__item-text {
    display: inline;
    position: relative;
    z-index: 1;
    color: var(--text2);
    font-size: 12px;
    background: var(--bg2);
}
.okinfo__item-prices {
    white-space: nowrap;
}
.okinfo__item-price {
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
}
.okinfo__item-oldprice {
    color: var(--icon);
    font-size: 12px;
    font-weight: 500;
    text-decoration: line-through;
}
.okinfo__detail {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.okinfo__detail:last-child {
    margin-bottom: 0;
}
.okinfo__detail-img {
    min-width: 32px;
    width: 32px;
    display: flex;
    justify-content: center;
    margin-right: 15px;
}
.okinfo__detail-txt {
    color: var(--text2);
    font-size: 12px;
    font-weight: 300;
}

.okclient__title {
    color: var(--black);
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
}
.okclient__item {
    color: var(--text2);
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 20px;
}
.okclient__item:last-child {
    margin-bottom: 0;
}
.okclient__btn {
    margin-top: 40px;
    display: none;
}
@media screen and (max-width: 767.99px) {
    .okclient__btn {
        display: block;
    }
}

.compare__main {
    padding-top: 40px;
    padding-bottom: 110px;
}
@media screen and (max-width: 991.99px) {
    .compare__main {
        padding-top: 20px;
        padding-bottom: 80px;
    }
}
@media screen and (max-width: 767.99px) {
    .compare__main {
        padding-top: 10px;
        padding-bottom: 60px;
    }
}
@media screen and (max-width: 767.99px) {
    .compare__main .container {
        padding: 0;
    }
}
.compare__bread {
    margin-bottom: 40px;
}
@media screen and (max-width: 991.99px) {
    .compare__bread {
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 767.99px) {
    .compare__bread {
        padding-left: 10px;
    }
}
@media screen and (max-width: 991.99px) {
    .compare__title {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 767.99px) {
    .compare__title {
        padding-left: 10px;
    }
}
.compare__head {
    display: flex;
    align-items: center;
    background: var(--main1);
    padding: 20px 30px;
    margin-bottom: 20px;
}
@media screen and (max-width: 767.99px) {
    .compare__head {
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 0;
        background: transparent;
    }
}
.compare__th {
    color: var(--bg);
    font-size: 16px;
    fill: var(--bg);
    display: flex;
    align-items: center;
}
@media screen and (max-width: 767.99px) {
    .compare__th {
        font-size: 13px;
        padding: 10px;
        background: var(--main1);
        height: 40px;
    }
}
@media screen and (max-width: 767.99px) {
    .compare__th:first-child {
        flex-grow: 1;
    }
}
.compare__th:nth-child(2) {
    margin-left: auto;
    margin-right: 60px;
}
@media screen and (max-width: 767.99px) {
    .compare__th:nth-child(2) {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        order: 1;
        color: var(--black);
        font-size: 16px;
        background: var(--bg);
        margin-top: 10px;
    }
}
.compare__th-svg {
    margin-right: 10px;
}
.compare__th-svg_compare {
    width: 21px;
    height: 21px;
}
.compare__th-svg_close {
    width: 14px;
    height: 14px;
}
.compare__slider {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
@media screen and (max-width: 767.99px) {
    .compare__slider {
        margin-bottom: 30px;
    }
}
.compare__prev, .compare__next {
    position: relative;
    z-index: 2;
}
@media screen and (max-width: 991.99px) {
    .compare__prev, .compare__next {
        display: none;
    }
}
.compare__container {
    width: calc(100% - 60px);
}
@media screen and (max-width: 991.99px) {
    .compare__container {
        width: 100%;
    }
}
.compare__item {
    height: auto;
}
.compare__item .item {
    height: 100%;
}
.compare__item .item:hover {
    box-shadow: none;
}
.compare__pag {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
@media screen and (max-width: 767.99px) {
    .compare__pag {
        margin-bottom: 30px;
    }
}
.compare__pag .pag {
    align-items: flex-end;
    height: 8px;
}
.compare__pag .pag .swiper-pagination-bullet {
    transition: 0.3s;
}
.compare__pag .pag .swiper-pagination-bullet-active {
    height: 8px;
}
@media screen and (max-width: 767.99px) {
    .compare__pag .pag .swiper-pagination-bullet-active {
        height: 5px;
    }
}
.compare__container2 {
    width: calc(100% - 60px);
    margin: 0 auto;
}
@media screen and (max-width: 991.99px) {
    .compare__container2 {
        width: 100%;
    }
}
.compare__item2 {
    border: 1px solid var(--border);
    height: auto;
    box-sizing: border-box;
}
.compare__item2.swiper-slide-active .cchar__title {
    opacity: 1;
}
.compare__reset {
    display: flex;
    align-items: center;
}
.compare__reset svg {
    fill: var(--bg);
}

.cchars_title .cchar__title {
    opacity: 1;
}

.cchar {
    padding: 15px;
    border-bottom: 1px solid var(--border);
}
.cchar:last-child {
    border-bottom: none;
}
.cchar__title {
    color: var(--text2);
    font-size: 13px;
    margin-bottom: 5px;
    opacity: 0;
}
.cchar__val {
    color: var(--black);
    font-size: 14px;
}

.cart-empty {
    padding: 40px;
}
.cart-empty__title {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 20px;
}
.cart-empty__text {
    margin-bottom: 20px;
}

.services__item {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(50% - 20px);
    margin-bottom: 20px;
}
@media screen and (max-width: 767.99px) {
    .services__item {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .services__item {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 767.99px) {
    .services__item {
        width: calc(100% - 10px);
    }
}

.service__wrap {
    display: flex;
    flex-direction: column;
}
.service__title {
    margin-bottom: 10px;
}
.service__quote {
    background-color: var(--bg2);
    margin-bottom: 30px;
    padding: 20px;
    border-left: 7px solid var(--main1);
    color: var(--headers);
    font-size: 20px;
    font-weight: 500;
}
@media screen and (max-width: 991.99px) {
    .service__quote {
        font-size: 18px;
        padding: 15px 20px;
    }
}
@media screen and (max-width: 767.99px) {
    .service__quote {
        font-size: 14px;
    }
}
.service__top:after {
    content: "";
    display: inline-block;
    clear: both;
}
.service__img {
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
}
@media screen and (max-width: 767.99px) {
    .service__img {
        float: none;
        margin-right: 0;
        margin-bottom: 30px;
    }
}
.service__img-img {
    max-width: 350px;
}
@media screen and (max-width: 767.99px) {
    .service__img-img {
        max-width: 100%;
        width: 100%;
    }
}
.service__banner {
    margin-bottom: 90px;
}
@media screen and (max-width: 991.99px) {
    .service__banner {
        margin-bottom: 60px;
    }
}
@media screen and (max-width: 767.99px) {
    .service__banner {
        margin-bottom: 30px;
    }
}
.service__gallery {
    margin-bottom: 40px;
}
@media screen and (max-width: 991.99px) {
    .service__gallery {
        margin-bottom: 0px;
    }
}
@media screen and (max-width: 767.99px) {
    .service__gallery {
        margin-bottom: 35px;
    }
}
.service__gallery_bdb {
    padding-bottom: 50px;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--border);
}
@media screen and (max-width: 991.99px) {
    .service__gallery_bdb {
        padding-bottom: 20px;
        margin-bottom: 40px;
    }
}
@media screen and (max-width: 767.99px) {
    .service__gallery_bdb {
        padding-bottom: 0;
    }
}
.service__gallery-title {
    color: var(--headers);
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 90px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}
@media screen and (max-width: 991.99px) {
    .service__gallery-title {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 40px;
    }
}
@media screen and (max-width: 767.99px) {
    .service__gallery-title {
        margin-left: -10px;
        margin-right: -10px;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 20px;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
}
.service__docs {
    margin-bottom: 100px;
}
@media screen and (max-width: 991.99px) {
    .service__docs {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 767.99px) {
    .service__docs {
        margin-bottom: 0;
    }
}
.service__docs-title {
    color: var(--black);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}
.service__recom {
    padding-top: 65px;
    border-top: 1px solid var(--border);
}
.service__recom_bdb {
    border-bottom: 1px solid var(--border);
    padding-bottom: 75px;
    margin-bottom: 55px;
}
@media screen and (max-width: 767.99px) {
    .service__recom_bdb {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}

.sbanner {
    background: var(--bg2) url("../images/content/service/bg.svg") right center no-repeat;
    display: flex;
    align-items: center;
    padding: 25px 35px;
}
@media screen and (max-width: 767.99px) {
    .sbanner {
        padding: 0;
        background-image: none;
        flex-direction: column;
        align-items: stretch;
    }
}
.sbanner__left {
    display: flex;
    align-items: center;
    margin-right: auto;
    padding-right: 80px;
}
@media screen and (max-width: 767.99px) {
    .sbanner__left {
        flex-direction: column;
        margin-right: 0;
        padding: 40px 15px 30px 15px;
    }
}
.sbanner__img {
    margin-right: 25px;
    min-width: 76px;
}
@media screen and (max-width: 767.99px) {
    .sbanner__img {
        margin-right: 0;
        margin-bottom: 20px;
        min-width: 60px;
        width: 60px;
    }
}
.sbanner__txt {
    font-size: 18px;
    font-weight: 300;
}
@media screen and (max-width: 767.99px) {
    .sbanner__right {
        background-color: var(--border);
        padding: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
.sbanner__oldprice {
    color: var(--icon);
    font-size: 14px;
    text-decoration: line-through;
}
@media screen and (max-width: 767.99px) {
    .sbanner__oldprice {
        font-size: 12px;
    }
}
.sbanner__price {
    color: var(--headers);
    font-size: 24px;
    font-weight: 700;
}
@media screen and (max-width: 767.99px) {
    .sbanner__price {
        font-size: 18px;
        margin-bottom: 10px;
    }
}
.sbanner__btn {
    width: 166px;
    height: 38px;
    background-color: var(--main1);
    font-size: 12px;
}

.project {
    padding-bottom: 180px;
}
@media screen and (max-width: 767.99px) {
    .project {
        padding-bottom: 50px;
    }
}

.actions__item {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(33.3333333333% - 20px);
    margin-bottom: 20px;
}
@media screen and (max-width: 767.99px) {
    .actions__item {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .actions__item {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 767.99px) {
    .actions__item {
        width: calc(50% - 10px);
    }
}
@media screen and (max-width: 767.99px) {
    .actions__item .iaction {
        color: var(--black);
    }
}
.actions__item .iaction__bottom {
    background: var(--bg);
}

.action {
    padding-top: 0;
}
.action__banner {
    margin-bottom: 0;
}
@media screen and (max-width: 991.99px) {
    .action__banner {
        margin-bottom: 15px;
    }
}

.abanner {
    position: relative;
}
.abanner__img {
    height: 450px;
}
@media screen and (max-width: 991.99px) {
    .abanner__img {
        height: 300px;
    }
}
@media screen and (max-width: 767.99px) {
    .abanner__img {
        height: 220px;
    }
}
.abanner__img-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.abanner__container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
@media screen and (max-width: 767.99px) {
    .abanner__container {
        position: static;
        background: var(--bg2);
        padding-top: 20px;
        padding-bottom: 20px;
    }
}
.abanner__row {
    align-items: center;
    height: 100%;
}
.abanner__content {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(50% - 20px);
}
@media screen and (max-width: 767.99px) {
    .abanner__content {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .abanner__content {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 767.99px) {
    .abanner__content {
        width: calc(100% - 10px);
    }
}
@media screen and (max-width: 767.99px) {
    .abanner__content {
        text-align: center;
    }
}
.abanner__title {
    color: var(--headers);
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 30px;
}
@media screen and (max-width: 991.99px) {
    .abanner__title {
        font-size: 25px;
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 767.99px) {
    .abanner__title {
        font-size: 20px;
    }
}
.abanner__txt {
    color: var(--headers);
    font-size: 24px;
    margin-bottom: 20px;
}
@media screen and (max-width: 991.99px) {
    .abanner__txt {
        font-size: 16px;
    }
}
.abanner__btns {
    display: flex;
    align-items: center;
}
@media screen and (max-width: 767.99px) {
    .abanner__btns {
        justify-content: center;
    }
}
.abanner__btn {
    margin-right: 20px;
    font-size: 18px;
    width: 195px;
    text-transform: none;
}
@media screen and (max-width: 991.99px) {
    .abanner__btn {
        width: 157px;
    }
}
@media screen and (max-width: 767.99px) {
    .abanner__btn {
        width: 145px;
        margin-right: 10px;
        font-size: 16px;
    }
}
.abanner__link {
    width: 187px;
    font-size: 18px;
    text-transform: none;
}
@media screen and (max-width: 991.99px) {
    .abanner__link {
        width: 157px;
    }
}
@media screen and (max-width: 767.99px) {
    .abanner__link {
        width: 145px;
        font-size: 16px;
    }
}

.news__sections {
    margin-bottom: 30px;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: -10px;
    display: flex;
    flex-wrap: wrap;
}
.news__sections:after {
    content: "";
    width: 100%;
    border-bottom: 1px solid var(--border);
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 10px;
}
.news__section {
    padding: 10px 15px;
    font-weight: 300;
    transition: 0.3s;
}
.news__section:hover {
    color: var(--link);
}
.news__section.active {
    color: var(--black);
    font-weight: 700;
}
.news__list {
    margin-bottom: 40px;
}
.news__item {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(33.3333333333% - 20px);
    margin-bottom: 20px;
}
@media screen and (max-width: 767.99px) {
    .news__item {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .news__item {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 767.99px) {
    .news__item {
        width: calc(50% - 10px);
    }
}
@media screen and (max-width: 767.99px) {
    .news__item {
        margin-bottom: 15px;
    }
}
.news__more {
    margin-top: 40px;
    border: none;
}
@media screen and (max-width: 991.99px) {
    .news__more {
        margin-top: 20px;
    }
}
.nitem {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: 0.3s;
}
.nitem:hover {
    background: var(--main1);
}
@media screen and (max-width: 991.99px) {
    .nitem:hover {
        background: transparent;
    }
}
.nitem:hover .nitem__date {
    color: var(--black);
}
@media screen and (max-width: 991.99px) {
    .nitem:hover .nitem__date {
        color: var(--text2);
    }
}
.nitem:hover .nitem__txt {
    color: var(--black);
}
@media screen and (max-width: 991.99px) {
    .nitem:hover .nitem__txt {
        color: var(--text2);
    }
}
.nitem:hover .nitem__link {
    color: var(--black);
    fill: var(--black);
}
@media screen and (max-width: 991.99px) {
    .nitem:hover .nitem__link {
        color: var(--main1);
        fill: var(--main1);
    }
}
.nitem__img {
    width: 100%;
    display: block;
    padding-top: calc(196/304 * 100%);
    position: relative;
}
.nitem__img-img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}
.nitem__bottom {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px;
    transition: 0.3s;
}
@media screen and (max-width: 991.99px) {
    .nitem__bottom {
        padding: 15px 0;
    }
}
@media screen and (max-width: 767.99px) {
    .nitem__bottom {
        padding: 5px 0;
    }
}
.nitem__date {
    color: var(--text2);
    margin-bottom: 10px;
    transition: 0.3s;
}
@media screen and (max-width: 767.99px) {
    .nitem__date {
        font-size: 12px;
        margin-bottom: 0;
    }
}
.nitem__title {
    color: var(--headers);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
@media screen and (max-width: 767.99px) {
    .nitem__title {
        font-size: 14px;
        margin-bottom: 15px;
    }
}
.nitem__txt {
    color: var(--text2);
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 15px;
    transition: 0.3s;
}
@media screen and (max-width: 767.99px) {
    .nitem__txt {
        display: none;
    }
}
.nitem__link {
    margin-top: auto;
    color: var(--main1);
    fill: var(--main1);
}

.new {
    padding-top: 40px;
    padding-bottom: 250px;
}
@media screen and (max-width: 991.99px) {
    .new {
        padding-bottom: 150px;
        padding-top: 25px;
    }
}
@media screen and (max-width: 767.99px) {
    .new {
        padding-bottom: 130px;
        padding-top: 20px;
    }
}
.new__bread {
    margin-bottom: 35px;
}
@media screen and (max-width: 767.99px) {
    .new__bread {
        margin-bottom: 10px;
    }
}
.new__left {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(75% - 20px);
    padding-right: 25px;
}
@media screen and (max-width: 767.99px) {
    .new__left {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .new__left {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 991.99px) {
    .new__left {
        width: calc(100% - 20px);
    }
}
@media screen and (max-width: 991.99px) {
    .new__left {
        padding-right: 0;
    }
}
@media screen and (max-width: 767.99px) {
    .new__left {
        width: calc(100% - 10px);
    }
}
.new__title {
    margin-bottom: 15px;
}
@media screen and (max-width: 991.99px) {
    .new__title {
        margin-bottom: 20px;
    }
}
.new__info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.new__info-item {
    padding: 0 25px;
    border-left: 1px solid var(--icon);
    color: var(--icon);
}
.new__info-item:first-child {
    padding-left: 0;
    border-color: transparent;
}
.new__top {
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 50px;
}
@media screen and (max-width: 767.99px) {
    .new__top {
        padding-bottom: 10px;
        margin-bottom: 30px;
    }
}
.new__top:after {
    content: "";
    display: inline-block;
    clear: both;
}
.new__top-left {
    float: left;
    width: calc(58% - 15px);
    margin-right: 15px;
    margin-bottom: 15px;
}
@media screen and (max-width: 991.99px) {
    .new__top-left {
        width: calc(50% - 15px);
    }
}
@media screen and (max-width: 767.99px) {
    .new__top-left {
        width: 100%;
        margin-right: 0;
        float: none;
        margin-bottom: 20px;
    }
}
.new__img {
    width: 100%;
}
.new__right {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(25% - 20px);
}
@media screen and (max-width: 767.99px) {
    .new__right {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .new__right {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 991.99px) {
    .new__right {
        display: none;
    }
}
.new__content-top:after {
    content: "";
    display: inline-block;
    clear: both;
}
.new__content-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media screen and (max-width: 767.99px) {
    .new__content-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
.new__from {
    color: var(--text2);
    font-weight: 300;
}
@media screen and (max-width: 767.99px) {
    .new__from {
        margin-bottom: 15px;
    }
}
.new__recom {
    padding-bottom: 75px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 50px;
}
@media screen and (max-width: 767.99px) {
    .new__recom {
        padding-bottom: 30px;
        margin-bottom: 25px;
    }
}
.new__item {
    margin-bottom: 20px;
}
.new__item:last-child {
    margin-bottom: 0;
}

.nservices__title {
    color: var(--black);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 50px;
}
@media screen and (max-width: 767.99px) {
    .nservices__title {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

.nservice {
    border: 1px solid var(--border);
    background-color: var(--bg);
    margin-bottom: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    transition: 0.3s;
}
@media screen and (max-width: 767.99px) {
    .nservice {
        padding: 10px;
        align-items: flex-start;
    }
}
.nservice:hover {
    box-shadow: 0 0 8px rgba(var(--black), 0.1);
}
@media screen and (max-width: 767.99px) {
    .nservice:hover {
        box-shadow: none;
    }
}
.nservice:last-child {
    margin-bottom: 0;
}
.nservice__left {
    display: block;
    margin-right: 25px;
    width: 120px;
    min-width: 120px;
}
@media screen and (max-width: 767.99px) {
    .nservice__left {
        min-width: 95px;
        width: 95px;
        margin-right: 10px;
    }
}
.nservice__img {
    display: block;
    position: relative;
    padding-top: 83.3333333333%;
}
.nservice__img-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.nservice__right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
}
@media screen and (max-width: 767.99px) {
    .nservice__right {
        flex-direction: column;
        align-items: flex-start;
    }
}
.nservice__main {
    display: flex;
    flex-direction: column;
    max-width: 530px;
    margin-right: 20px;
}
.nservice__title {
    color: var(--black);
    font-weight: 300;
    margin-bottom: 10px;
}
@media screen and (max-width: 767.99px) {
    .nservice__title {
        margin-bottom: 15px;
    }
}
.nservice__txt {
    color: var(--text2);
    font-size: 12px;
    font-weight: 300;
}
@media screen and (max-width: 767.99px) {
    .nservice__txt {
        display: none;
    }
}
.nservice__link {
    white-space: nowrap;
    color: var(--main1);
    fill: var(--main1);
}

.brands__item {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(25% - 20px);
    position: relative;
    border: 1px solid var(--border);
    margin-bottom: 20px;
    transition: 0.3s;
}
@media screen and (max-width: 767.99px) {
    .brands__item {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .brands__item {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 767.99px) {
    .brands__item {
        width: calc(50% - 10px);
    }
}
.brands__item:hover {
    box-shadow: 0 0 8px rgba(var(--black), 0.1);
}
.brands__item:after {
    content: "";
    display: block;
    width: 100%;
    padding-top: calc(180/223*100%);
}
.brands__item-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
}
.brands__item-img {
    max-height: 100%;
}

.brand__top {
    margin-bottom: 60px;
}
@media screen and (max-width: 991.99px) {
    .brand__top {
        margin-bottom: 30px;
    }
}
.brand__left {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(25.5555555556% - 20px);
}
@media screen and (max-width: 767.99px) {
    .brand__left {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .brand__left {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 991.99px) {
    .brand__left {
        width: calc(33.3333333333% - 20px);
    }
}
@media screen and (max-width: 767.99px) {
    .brand__left {
        width: calc(100% - 10px);
    }
}
@media screen and (max-width: 767.99px) {
    .brand__left {
        margin-bottom: 25px;
    }
}
.brand__img {
    width: 100%;
    position: relative;
    padding-top: calc(180/223*100%);
    border: 1px solid var(--border);
    margin-bottom: 20px;
}
@media screen and (max-width: 767.99px) {
    .brand__img {
        width: 150px;
        height: 120px;
        margin: 0 auto;
        padding-top: 0;
        margin-bottom: 15px;
    }
}
.brand__img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
@media screen and (max-width: 767.99px) {
    .brand__img-wrap {
        padding: 20px;
    }
}
.brand__txt {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 25px;
}
.brand__back {
    display: flex;
    align-items: center;
    fill: var(--main1);
    color: var(--main1);
    transition: 0.3s;
}
.brand__back:hover {
    color: var(--text);
    fill: var(--text);
}
.brand__back-svg {
    width: 41px;
    height: 8px;
    margin-right: 10px;
}
.brand__back-txt {
    font-size: 13px;
}
.brand__right {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(74.4444444444% - 20px);
}
@media screen and (max-width: 767.99px) {
    .brand__right {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .brand__right {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 991.99px) {
    .brand__right {
        width: calc(66.6666666667% - 20px);
    }
}
@media screen and (max-width: 767.99px) {
    .brand__right {
        width: calc(100% - 10px);
    }
}
.brand__sub {
    color: var(--headers);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}
@media screen and (max-width: 991.99px) {
    .brand__sub {
        margin-bottom: 15px;
    }
}
@media screen and (max-width: 767.99px) {
    .brand__sub {
        font-size: 20px;
    }
}

.about__title {
    margin-bottom: 25px;
}
.about__row {
    margin-bottom: 45px;
}
@media screen and (max-width: 767.99px) {
    .about__row {
        margin-bottom: 20px;
    }
}
.about__left {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(35.5555555556% - 20px);
}
@media screen and (max-width: 767.99px) {
    .about__left {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .about__left {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 767.99px) {
    .about__left {
        width: calc(100% - 10px);
    }
}
.about__right {
    padding-top: 30px;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(64.4444444444% - 20px);
}
@media screen and (max-width: 767.99px) {
    .about__right {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .about__right {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 767.99px) {
    .about__right {
        width: calc(100% - 10px);
    }
}
.about__advantages {
    margin-bottom: 20px;
}

.aadvantages .row {
    justify-content: center;
}

.aadvantage {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(33.3333333333% - 20px);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 767.99px) {
    .aadvantage {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .aadvantage {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 1359.99px) {
    .aadvantage {
        width: calc(50% - 20px);
    }
}
@media screen and (max-width: 991.99px) {
    .aadvantage {
        width: calc(33.3333333333% - 20px);
    }
}
@media screen and (max-width: 767.99px) {
    .aadvantage {
        width: calc(50% - 10px);
    }
}
@media screen and (max-width: 767.99px) {
    .aadvantage {
        flex-direction: column;
    }
}
.aadvantage__left {
    min-width: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
}
@media screen and (max-width: 991.99px) {
    .aadvantage__left {
        min-width: 60px;
        width: 60px;
        margin-right: 20px;
    }
}
@media screen and (max-width: 767.99px) {
    .aadvantage__left {
        margin: 0 auto;
        margin-bottom: 10px;
    }
}
.aadvantage__title {
    font-size: 18px;
}
@media screen and (max-width: 991.99px) {
    .aadvantage__title {
        font-size: 14px;
        margin-bottom: 5px;
    }
}
@media screen and (max-width: 767.99px) {
    .aadvantage__title {
        text-align: center;
    }
}
.aadvantage__txt {
    color: var(--text2);
    font-size: 14px;
}
@media screen and (max-width: 991.99px) {
    .aadvantage__txt {
        font-size: 12px;
    }
}
@media screen and (max-width: 767.99px) {
    .aadvantage__txt {
        text-align: center;
    }
}
.aadvantage__img {
    fill: var(--main1);
}
.aadvantage__img .grey {
    fill: var(--icon);
}
.aadvantage__img .white {
    fill: var(--bg);
}

.contacts {
    padding-bottom: 80px;
}
@media screen and (max-width: 767.99px) {
    .contacts {
        padding-bottom: 40px;
    }
}
.contacts__bread {
    margin-bottom: 20px;
}
@media screen and (max-width: 767.99px) {
    .contacts__bread {
        margin-bottom: 5px;
    }
}
.contacts__top {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}
@media screen and (max-width: 991.99px) {
    .contacts__top {
        padding-bottom: 20px;
    }
}
@media screen and (max-width: 767.99px) {
    .contacts__top {
        padding-bottom: 10px;
    }
}
.contacts__row {
    padding: 45px 0;
}
@media screen and (max-width: 1100px) {
    .contacts__row {
        padding: 0;
    }
}
.contacts__row .row {
    margin: 0 -60px;
}
@media screen and (max-width: 1100px) {
    .contacts__row .row {
        margin: 0;
        margin-left: 1px;
    }
}
@media screen and (max-width: 767.99px) {
    .contacts__row .row {
        margin: 0 -10px;
    }
}
.contacts__col {
    width: calc(100% / 3);
    border-right: 1px solid var(--border);
    padding: 0 60px;
}
@media screen and (max-width: 1100px) {
    .contacts__col {
        padding: 35px 50px;
        width: 50%;
        border: 1px solid var(--border);
        margin-left: -1px;
        margin-top: -1px;
    }
}
@media screen and (max-width: 991.99px) {
    .contacts__col {
        padding: 25px 30px;
    }
}
@media screen and (max-width: 767.99px) {
    .contacts__col {
        width: 100%;
        margin-top: 0;
        margin-left: 0;
        border: none;
        border-bottom: 1px solid var(--border);
        padding: 25px 10px;
    }
}
.contacts__col:last-child {
    border-color: transparent;
}
@media screen and (max-width: 1100px) {
    .contacts__col:last-child {
        border-color: var(--border);
    }
}
.contacts__item {
    margin-top: 50px;
}
.contacts__item:first-child {
    margin-top: 0;
}
@media screen and (max-width: 767.99px) {
    .contacts__item {
        margin-top: 30px;
    }
}
.contacts__btn {
    width: 166px;
    height: 38px;
    font-size: 12px;
    margin-top: 25px;
}
.contacts__call {
    margin-bottom: 45px;
}
@media screen and (max-width: 767.99px) {
    .contacts__call {
        margin-bottom: 0;
    }
}
.contacts__column {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(50% - 20px);
}
@media screen and (max-width: 767.99px) {
    .contacts__column {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .contacts__column {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 1100px) {
    .contacts__column {
        width: calc(100% - 20px);
        margin-bottom: 30px;
        padding: 0 40px;
    }
    .contacts__column:last-child {
        margin-bottom: 0;
    }
}
@media screen and (max-width: 767.99px) {
    .contacts__column {
        padding: 0;
        margin-bottom: 0;
    }
}
@media screen and (max-width: 767.99px) {
    .contacts__column {
        width: calc(100% - 10px);
    }
}
@media screen and (max-width: 767.99px) {
    .contacts__bottom .container {
        padding: 0;
    }
}

.contact__top {
    display: flex;
    align-items: center;
}
@media screen and (max-width: 767.99px) {
    .contact__top {
        margin-bottom: 10px;
    }
}
.contact__svg {
    fill: var(--main1);
    margin-right: 10px;
}
.contact__svg_pin {
    width: 18px;
    height: 23px;
}
.contact__svg_metro {
    width: 20px;
    height: 20px;
}
.contact__svg_date {
    width: 20px;
    height: 20px;
}
.contact__svg_email {
    width: 22px;
    height: 18px;
}
.contact__svg_tel2 {
    width: 20px;
    height: 20px;
}
.contact__name {
    color: var(--text2);
    font-size: 14px;
}
.contact__link {
    color: var(--headers);
    font-size: 22px;
    line-height: 1.8181818182;
}
@media screen and (max-width: 767.99px) {
    .contact__link {
        font-size: 18px;
        line-height: 1.3611111111;
    }
}
.contact__phone {
    display: flex;
    align-items: center;
}
@media screen and (max-width: 767.99px) {
    .contact__phone {
        margin-bottom: 15px;
    }
    .contact__phone:last-child {
        margin-bottom: 0;
    }
}
.contact__phone-val {
    white-space: nowrap;
    color: var(--headers);
    font-size: 22px;
    margin-right: 20px;
    line-height: 1.8181818182;
}
@media screen and (max-width: 767.99px) {
    .contact__phone-val {
        font-size: 18px;
        line-height: 1.3611111111;
    }
}
.contact__phone-dept {
    color: var(--text2);
    font-size: 14px;
}

.ccall {
    box-shadow: 0 0 10px rgba(var(--black), 0.25);
    background-color: var(--bg2);
    padding: 40px 50px 60px 50px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}
@media screen and (max-width: 1100px) {
    .ccall {
        padding: 40px 20px;
        padding-bottom: 0;
    }
}
@media screen and (max-width: 767.99px) {
    .ccall {
        margin-top: 0;
        box-shadow: none;
        margin: 0 -10px;
    }
}
.ccall__title {
    color: var(--headers);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}
@media screen and (max-width: 767.99px) {
    .ccall__title {
        font-size: 20px;
    }
}
.ccall__col {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(37.5% - 20px);
}
@media screen and (max-width: 767.99px) {
    .ccall__col {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .ccall__col {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 1100px) {
    .ccall__col {
        width: calc(50% - 20px);
        margin-bottom: 40px;
    }
}
@media screen and (max-width: 767.99px) {
    .ccall__col {
        width: calc(100% - 10px);
    }
}
@media screen and (max-width: 767.99px) {
    .ccall__col {
        margin-bottom: 25px;
    }
}
.ccall__col_small {
    width: calc(20.8333333333% - 20px);
}
@media screen and (max-width: 1100px) {
    .ccall__col_small {
        width: calc(100% - 20px);
    }
}
.ccall__col_row {
    display: flex;
}
.ccall__field {
    margin-bottom: 10px;
}
.ccall__field:last-child {
    margin-bottom: 0;
}
.ccall__input {
    width: 100%;
    border-radius: 2px;
    border: 1px solid var(--border);
    background-color: var(--bg);
    font-size: 18px;
    font-weight: 300;
    padding: 11.5px 25px;
    transition: 0.3s;
}
@media screen and (max-width: 767.99px) {
    .ccall__input {
        font-size: 16px;
        padding: 12px;
    }
}
.ccall__input_area {
    height: 171px;
}
.ccall__input.error {
    border-color: var(--validation);
}
.ccall__input.error::placeholder {
    color: var(--validation);
}
.ccall__txt {
    color: var(--text2);
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 15px;
}
@media screen and (max-width: 991.99px) {
    .ccall__txt {
        margin-bottom: 35px;
    }
}
.ccall__txt a {
    color: var(--main1);
    text-decoration: underline;
}
.ccall__submit {
    width: 189px;
    height: 37px;
    font-size: 12px;
}
@media screen and (max-width: 991.99px) {
    .ccall__submit {
        display: block;
        margin: 0 auto;
    }
}

.cblock {
    border: 1px solid var(--border);
    padding: 60px 50px;
    height: 100%;
}
@media screen and (max-width: 767.99px) {
    .cblock {
        padding: 45px 15px;
        border: none;
        border-top: 1px solid var(--border);
    }
}
.cblock__top {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}
.cblock__title {
    color: var(--headers);
    font-size: 35px;
    font-weight: 700;
    margin-right: 20px;
}
@media screen and (max-width: 767.99px) {
    .cblock__title {
        font-size: 20px;
    }
}
.cblock__svg {
    fill: var(--main1);
}
.cblock__svg_bag {
    width: 36px;
    height: 34px;
}
@media screen and (max-width: 767.99px) {
    .cblock__svg_bag {
        width: 26px;
        height: 23px;
    }
}
.cblock__svg_metro {
    width: 34px;
    height: 34px;
}
@media screen and (max-width: 767.99px) {
    .cblock__svg_metro {
        width: 24px;
        height: 24px;
    }
}
.cblock__row {
    align-items: flex-start;
}
.cblock__col {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(50% - 20px);
    color: var(--black);
}
@media screen and (max-width: 767.99px) {
    .cblock__col {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .cblock__col {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 767.99px) {
    .cblock__col {
        width: calc(100% - 10px);
    }
}
@media screen and (max-width: 767.99px) {
    .cblock__col {
        margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.99px) {
    .cblock__col:first-child {
        order: 1;
        margin-bottom: 0;
    }
}
.cblock__col_g {
    padding: 15px 25px;
    background: var(--bg2);
}
.cblock .content *:last-child {
    margin-bottom: 0;
}

#map {
    height: 630px;
}
@media screen and (max-width: 1100px) {
    #map {
        height: 559px;
    }
}
@media screen and (max-width: 767.99px) {
    #map {
        height: 255px;
    }
}

.contacts__map + .contacts__call .ccall {
    margin-top: 40px;
}

.notfound {
    padding-top: 40px;
    padding-bottom: 160px;
}
@media screen and (max-width: 991.99px) {
    .notfound {
        padding-bottom: 90px;
    }
}
@media screen and (max-width: 767.99px) {
    .notfound {
        padding-top: 10px;
    }
}
.notfound__bread {
    margin-bottom: 60px;
}
@media screen and (max-width: 991.99px) {
    .notfound__bread {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 767.99px) {
    .notfound__bread {
        margin-bottom: 10px;
    }
}
.notfound__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.notfound__title {
    color: var(--headers);
    font-size: 35px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}
@media screen and (max-width: 767.99px) {
    .notfound__title {
        font-size: 18px;
    }
}
.notfound__img {
    margin-top: -40px;
    margin-bottom: -30px;
}
@media screen and (max-width: 991.99px) {
    .notfound__img {
        max-width: 645px;
    }
}
@media screen and (max-width: 767.99px) {
    .notfound__img {
        max-width: 210px;
        margin-top: 0px;
        margin-bottom: 20px;
    }
}
.notfound__sub {
    color: var(--headers);
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}
@media screen and (max-width: 767.99px) {
    .notfound__sub {
        font-size: 16px;
    }
}
.notfound__back {
    width: 189px;
    height: 37px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cabinet {
    padding-top: 40px;
    padding-bottom: 110px;
}
@media screen and (max-width: 991.99px) {
    .cabinet {
        padding-top: 20px;
    }
}
@media screen and (max-width: 767.99px) {
    .cabinet {
        padding-top: 10px;
        padding-bottom: 80px;
    }
}
.cabinet__title {
    margin-bottom: 60px;
}
.cabinet__list {
    width: calc(100% - 1px);
    display: flex;
    flex-wrap: wrap;
    margin-top: 1px;
    margin-left: 1px;
}
.cabinet__item {
    position: relative;
    z-index: 0;
    width: calc(100% / 3 + 1px);
    height: 157px;
    border: 1px solid var(--border);
    background: white;
    margin-left: -1px;
    margin-top: -1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
@media screen and (max-width: 991.99px) {
    .cabinet__item {
        height: 120px;
    }
}
@media screen and (max-width: 767.99px) {
    .cabinet__item {
        height: 120px;
        width: calc(100% / 2 + 1px);
    }
}
.cabinet__item:hover {
    z-index: 1;
    box-shadow: 0px 0px 10px rgba(var(--black), 0.1);
    color: var(--main1);
}
@media screen and (max-width: 991.99px) {
    .cabinet__item:hover {
        box-shadow: none;
    }
}
.cabinet__item-title {
    font-size: 18px;
    font-weight: 300;
}
@media screen and (max-width: 991.99px) {
    .cabinet__item-title {
        font-size: 16px;
    }
}
@media screen and (max-width: 767.99px) {
    .cabinet__item-title {
        font-size: 14px;
    }
}
.cabinet__img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 991.99px) {
    .cabinet__img {
        width: 45px;
        height: 45px;
        margin-bottom: 5px;
    }
}
.cabinet__icon {
    fill: var(--main1);
}
.cabinet__icon_lk-orders {
    width: 43px;
    height: 52px;
}
@media screen and (max-width: 991.99px) {
    .cabinet__icon_lk-orders {
        width: 36px;
        height: 44px;
    }
}
.cabinet__icon_lk-account {
    width: 50px;
    height: 50px;
}
@media screen and (max-width: 991.99px) {
    .cabinet__icon_lk-account {
        width: 41px;
        height: 41px;
    }
}
.cabinet__icon_lk-data {
    width: 43px;
    height: 49px;
}
@media screen and (max-width: 991.99px) {
    .cabinet__icon_lk-data {
        width: 33px;
        height: 38px;
    }
}
.cabinet__icon_lk-history {
    width: 52px;
    height: 52px;
}
@media screen and (max-width: 991.99px) {
    .cabinet__icon_lk-history {
        width: 41px;
        height: 41px;
    }
}
.cabinet__icon_lk-profile {
    width: 47px;
    height: 47px;
}
@media screen and (max-width: 991.99px) {
    .cabinet__icon_lk-profile {
        width: 38px;
        height: 37px;
    }
}
.cabinet__icon_lk-basket {
    width: 56px;
    height: 54px;
}
@media screen and (max-width: 991.99px) {
    .cabinet__icon_lk-basket {
        width: 44px;
        height: 41px;
    }
}
.cabinet__icon_lk-subscribe {
    width: 45px;
    height: 44px;
}
@media screen and (max-width: 991.99px) {
    .cabinet__icon_lk-subscribe {
        width: 35px;
        height: 34px;
    }
}
.cabinet__icon_lk-contacts {
    width: 53px;
    height: 38px;
}
@media screen and (max-width: 991.99px) {
    .cabinet__icon_lk-contacts {
        width: 41px;
        height: 30px;
    }
}
.cabinet__icon_lk-favorite {
    width: 51px;
    height: 44px;
}
@media screen and (max-width: 991.99px) {
    .cabinet__icon_lk-favorite {
        width: 40px;
        height: 35px;
    }
}

.orders__title {
    margin-bottom: 40px;
}
.orders__list {
    margin-bottom: 45px;
}
@media screen and (max-width: 767.99px) {
    .orders__list {
        margin-left: -10px;
        margin-right: -10px;
    }
}
.orders__back {
    width: 217px;
    height: 39px;
    border-radius: 2px;
    background: var(--main1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.orders__back:hover {
    background-color: var(--main2);
}
.orders__back-svg {
    width: 24px;
    height: 8px;
    fill: var(--bg);
    margin-right: 10px;
}
.orders__back-txt {
    color: var(--bg);
    font-size: 14px;
}

.order {
    border-bottom: 1px solid var(--border);
}
.order:first-child {
    border-top: 1px solid var(--border);
}
.order.active .order__top:after {
    transform: rotate(-180deg);
}
.order__top {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding: 25px 0;
    padding-right: 50px;
    cursor: pointer;
}
@media screen and (max-width: 991.99px) {
    .order__top {
        padding: 15px 20px;
        padding-left: 20px;
        padding-right: 30px;
    }
}
@media screen and (max-width: 767.99px) {
    .order__top {
        padding: 20px 10px;
        padding-right: 30px;
        flex-direction: column;
    }
}
.order__top:after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -2px;
    right: 15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 3px 0 3px;
    border-color: var(--headers) transparent transparent transparent;
    transition: 0.3s;
}
@media screen and (max-width: 767.99px) {
    .order__top:after {
        top: 25px;
    }
}
.order__num, .order__sum, .order__status {
    color: var(--headers);
    font-size: 18px;
    font-weight: 300;
}
.order__num b, .order__sum b, .order__status b {
    font-weight: 700;
}
@media screen and (max-width: 767.99px) {
    .order__num, .order__sum, .order__status {
        font-size: 14px;
        margin-bottom: 10px;
    }
}
.order__num {
    margin-right: 40px;
}
.order__status {
    margin-left: auto;
}
@media screen and (max-width: 991.99px) {
    .order__status {
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
    }
}
@media screen and (max-width: 767.99px) {
    .order__status {
        margin-top: 0;
    }
}
.order__status_b {
    color: var(--main3);
    font-weight: 700;
}
.order__status_or {
    color: var(--main1);
    font-weight: 700;
}
.order__status_l {
    color: var(--text2);
}
.order__bottom {
    display: none;
    background: var(--bg2);
    padding: 50px 40px;
}
@media screen and (max-width: 767.99px) {
    .order__bottom {
        border-top: 1px solid var(--border);
        padding: 20px 10px;
    }
}
.order__date {
    color: var(--headers);
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 10px;
}
@media screen and (max-width: 767.99px) {
    .order__date {
        font-size: 16px;
        margin-bottom: 20px;
    }
}
.order__date b {
    font-weight: 700;
}
.order__items {
    margin-bottom: 30px;
}
@media screen and (max-width: 767.99px) {
    .order__items {
        margin-bottom: 20px;
    }
}
.order__item {
    margin-bottom: 15px;
}
.order__item:last-child {
    margin-bottom: 0;
}
@media screen and (max-width: 767.99px) {
    .order__item {
        margin-bottom: 20px;
    }
}
.order__delivery {
    margin-bottom: 30px;
}
.order__delivery-title {
    color: var(--headers);
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 10px;
}
@media screen and (max-width: 767.99px) {
    .order__delivery-title {
        font-size: 16px;
    }
}
.order__total {
    margin-bottom: 30px;
}
@media screen and (max-width: 767.99px) {
    .order__total {
        margin-bottom: 35px;
    }
}
.order__info {
    margin-bottom: 35px;
}
.order__client-title {
    color: var(--headers);
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
}
@media screen and (max-width: 767.99px) {
    .order__client-title {
        font-size: 16px;
    }
}

.oitem {
    display: flex;
    align-items: flex-end;
}
.oitem__title {
    flex-grow: 1;
    position: relative;
    color: var(--text2);
    font-size: 14px;
    line-height: 1.4285714286;
    transition: 0.3s;
}
@media screen and (max-width: 767.99px) {
    .oitem__title {
        font-size: 12px;
        padding-right: 60px;
    }
}
.oitem__title_b {
    color: var(--headers);
    font-size: 18px;
    font-weight: 700;
}
.oitem__title-txt {
    position: relative;
    z-index: 2;
    background: var(--bg2);
}
.oitem__title:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: url("../images/icons/line.png") 0 0;
}
.oitem__prices {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.oitem__price {
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    transition: 0.3s;
}
.oitem__price_b {
    color: var(--main3);
    font-size: 18px;
    font-weight: 700;
}
.oitem__oldprice {
    color: var(--text2);
    font-size: 12px;
    font-weight: 500;
    text-decoration: line-through;
    text-transform: uppercase;
    white-space: nowrap;
}

a.oitem:hover .oitem__title {
    color: var(--main1);
}
a.oitem:hover .oitem__price {
    color: var(--main1);
}

.oinfo__item {
    display: flex;
    align-items: center;
}
@media screen and (max-width: 767.99px) {
    .oinfo__item {
        margin-bottom: 15px;
    }
}
.oinfo__img {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.oinfo__img-svg {
    fill: var(--main1);
}
.oinfo__img-svg_car {
    width: 32px;
    height: 32px;
}
.oinfo__img-svg_wallet {
    width: 23px;
    height: 19px;
}
.oinfo__txt {
    color: var(--text2);
    font-size: 12px;
    font-weight: 300;
    line-height: 1.6666666667;
}

.oclient {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.oclient__item {
    margin-left: 15px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
@media screen and (max-width: 767.99px) {
    .oclient__item {
        width: calc(100% - 30px);
    }
}
.oclient__img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.oclient__svg {
    fill: var(--main1);
}
.oclient__svg_cabinet {
    width: 18px;
    height: 18px;
}
.oclient__svg_tel2 {
    width: 18px;
    height: 18px;
}
.oclient__svg_pin {
    width: 14px;
    height: 18px;
}
.oclient__svg_pin2 {
    width: 15px;
    height: 21px;
}
.oclient__txt {
    color: var(--text2);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4285714286;
}

@media screen and (max-width: 767.99px) {
    .account {
        padding-bottom: 40px;
    }
}
@media screen and (max-width: 767.99px) {
    .account__title {
        margin-bottom: 20px;
    }
}
.account__main {
    border: 1px solid var(--border);
}
@media screen and (max-width: 767.99px) {
    .account__main {
        margin-left: -10px;
        margin-right: -10px;
        border-left: none;
        border-right: none;
    }
}
.account__top {
    border-bottom: 1px solid var(--border);
    padding: 22px 30px;
    background: var(--bg2);
}
@media screen and (max-width: 767.99px) {
    .account__top {
        padding: 10px;
    }
}
.account__status {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--headers);
}
@media screen and (max-width: 767.99px) {
    .account__status {
        flex-direction: column;
        align-items: flex-start;
    }
}
.account__status-txt {
    font-size: 18px;
    font-weight: 300;
}
@media screen and (max-width: 767.99px) {
    .account__status-txt {
        font-size: 14px;
        margin-bottom: 10px;
    }
}
.account__status-price {
    font-size: 24px;
    font-weight: 700;
}
@media screen and (max-width: 767.99px) {
    .account__status-price {
        font-size: 18px;
    }
}
.account__bottom {
    padding: 30px;
}
@media screen and (max-width: 767.99px) {
    .account__bottom {
        padding: 20px 10px;
    }
}
.account__bottom-title {
    color: var(--headers);
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
}
@media screen and (max-width: 767.99px) {
    .account__bottom-title {
        font-size: 20px;
        margin-bottom: 5px;
    }
}
.account__payments {
    margin-bottom: 40px;
}
@media screen and (max-width: 767.99px) {
    .account__payments {
        margin-bottom: 20px;
    }
}
.account__types {
    margin-bottom: 55px;
}
@media screen and (max-width: 767.99px) {
    .account__types {
        margin-bottom: 15px;
    }
}
.account__btns {
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 767.99px) {
    .account__btns {
        justify-content: flex-end;
    }
}
@media screen and (max-width: 767.99px) {
    .account__back {
        display: none;
    }
}
.account__pay {
    width: 147px;
    height: 39px;
    border-radius: 2px;
    font-size: 14px;
    text-transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accpayments__title {
    color: var(--headers);
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
}
.accpayments__list {
    margin-left: -5px;
    margin-right: -5px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
@media screen and (max-width: 767.99px) {
    .accpayments__list {
        margin-bottom: 5px;
    }
}
.accpayments__item {
    border: 1px solid var(--main1);
    margin-left: 5px;
    margin-right: 5px;
    padding: 7px 20px;
    color: var(--main1);
    font-size: 18px;
    font-weight: 300;
}
@media screen and (max-width: 767.99px) {
    .accpayments__item {
        margin-bottom: 20px;
    }
}
.accpayments__sub {
    color: var(--text2);
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 15px;
}
.accpayments__input {
    width: 100%;
    border: 1px solid var(--border);
    background-color: var(--bg2);
    padding: 15px 40px;
    text-align: right;
    color: var(--headers);
    font-size: 20px;
    font-weight: 300;
}

.acctypes__title {
    color: var(--text2);
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 25px;
}
@media screen and (max-width: 767.99px) {
    .acctypes__title {
        margin-bottom: 35px;
    }
}
.acctypes__list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}
@media screen and (max-width: 767.99px) {
    .acctypes__list {
        margin-left: -5px;
        margin-right: -5px;
    }
}
@media screen and (max-width: 575.99px) {
    .acctypes__list {
        margin-left: -5px;
        margin-right: -5px;
    }
}
.acctypes__item {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(50% - 20px);
    margin-bottom: 25px;
}
@media screen and (max-width: 767.99px) {
    .acctypes__item {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .acctypes__item {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 767.99px) {
    .acctypes__item {
        width: calc(100% - 10px);
    }
}

.acctype {
    cursor: pointer;
}
.acctype__input {
    display: none;
}
.acctype__input:checked + .acctype__row .acctype__block {
    border-color: var(--main1);
}
.acctype__input:checked + .acctype__row .acctype__check {
    border-color: var(--main1);
    background: var(--main1);
}
.acctype__input:checked + .acctype__row .acctype__check-svg {
    opacity: 1;
}
.acctype__row {
    display: flex;
    align-items: center;
}
.acctype__block {
    width: 120px;
    height: 100px;
    border-radius: 12px;
    border: 1px solid var(--border);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 45px;
    transition: 0.3s;
}
.acctype__check {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--text2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.acctype__check-svg {
    width: 14px;
    height: 10px;
    fill: var(--bg);
    opacity: 0;
    transition: 0.3s;
}
.acctype__name {
    color: var(--black);
    font-size: 15px;
    font-weight: 600;
}

.data__title {
    margin-bottom: 40px;
}
@media screen and (max-width: 767.99px) {
    .data__title {
        margin-bottom: 20px;
    }
}
.data__fields {
    border: 1px solid var(--border);
    padding: 40px 30px;
}
@media screen and (max-width: 991.99px) {
    .data__fields {
        margin-left: -20px;
        margin-right: -20px;
        padding: 30px 20px;
        border-right: none;
        border-left: none;
    }
}
@media screen and (max-width: 767.99px) {
    .data__fields {
        margin-left: -10px;
        margin-right: -10px;
        padding: 20px 10px;
    }
}
.data__field {
    margin-bottom: 30px;
}
.data__field:last-child {
    margin-bottom: 0;
}
.data__field-title {
    color: var(--headers);
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 15px;
}
.data__row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
    align-items: center;
}
@media screen and (max-width: 767.99px) {
    .data__row {
        margin-left: -5px;
        margin-right: -5px;
    }
}
@media screen and (max-width: 575.99px) {
    .data__row {
        margin-left: -5px;
        margin-right: -5px;
    }
}
.data__left, .data__right {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(50% - 20px);
}
@media screen and (max-width: 767.99px) {
    .data__left, .data__right {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 575.99px) {
    .data__left, .data__right {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width: 767.99px) {
    .data__left, .data__right {
        width: calc(100% - 10px);
    }
}
@media screen and (max-width: 767.99px) {
    .data__left {
        margin-bottom: 10px;
    }
}
.data__left_btn {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.data__left_btn .data__btn {
    margin: 10px 0;
}
.data__label {
    color: var(--text2);
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 10px;
}
@media screen and (max-width: 767.99px) {
    .data__label {
        font-size: 14px;
        margin-bottom: 5px;
    }
}
.data__label_r {
    color: var(--validation);
}
.data__txt {
    color: var(--text2);
    font-weight: 300;
}
.data__txt a {
    color: var(--main1);
}
.data__policy {
    font-size: 14px;
    line-height: 1.4285714286;
}
.data__policy a {
    color: var(--main1);
}
.data__btns {
    display: flex;
}
.data__btn {
    cursor: pointer;
    width: 194px;
    height: 39px;
    border-radius: 2px;
    font-size: 14px;
    text-transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.data__sub {
    color: var(--headers);
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 10px;
}
.data__sub_r {
    color: var(--validation);
}
.data__add {
    width: 126px;
    height: 39px;
    border-radius: 2px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    text-transform: none;
}
.data__reset {
    width: 126px;
    height: 39px;
    border-radius: 2px;
    font-size: 14px;
    text-transform: none;
}

.alert {
    border: none;
    border-radius: 1px;
    font-size: 14px;
    padding: 15px;
    margin-bottom: 20px;
}

.alert-success {
    color: var(--main3);
    background-color: var(--bg);
    border-color: var(--border2);
}

.alert-warning {
    color: var(--warning);
    background-color: var(--bg);
    border-color: var(--border2);
}

.alert-danger {
    color: var(--validation);
    background-color: var(--bg);
    border-color: var(--border2);
}

.back_btn_mobile {
    display: none;
}
@media (max-width: 991.98px) {
    .back_btn_mobile .back_btn_mobile {
        display: block;
    }
}

.bx_filter {
    margin-bottom: 20px;
}

.auth_errors {
    color: var(--validation);
}

.popup-render {
    overflow-y: auto;
}
.popup-render::-webkit-scrollbar {
    width: 6px;
}
.popup-render::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background-color: var(--main1);
}
.popup-render::-webkit-scrollbar-track {
    background-color: var(--icon);
}

.svg__icon {
    line-height: 0;
}

.search-page form {
    display: flex;
    align-items: center;
}
.search-page input {
    flex-grow: 1;
    background: var(--bg);
    font-size: 18px;
    color: var(--headers);
    background: var(--bg) url(../images/icons/loop.svg) 15px center no-repeat;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding-left: 45px;
    height: 40px;
}
.search-page input[type=submit] {
    flex-grow: 0;
    width: 115.84px;
    height: 40px;
    background: var(--main1);
    border-radius: 4px;
    font-size: 16px;
    color: var(--bg);
    padding: 0;
    text-align: center;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.3s;
}
.search-page input[type=submit]:hover {
    background-color: var(--main2);
}

.bx_filter {
    border: 1px solid var(--icon);
}

.bx_filter .bx_filter_title {
    background-color: var(--main1);
    padding: 17px 20px;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--bg);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.bx_filter .bx_filter_parameters_box {
    padding: 10px 20px;
    border-bottom: 1px solid var(--border);
}

.bx_filter .bx_filter_parameters_box_title {
    display: block;
    font-weight: 700;
    padding: 10px 0;
    padding-right: 15px;
    position: relative;
    font-size: 13px;
    text-transform: uppercase;
    width: 100%;
    text-align: left;
    transition: 0.3s;
    cursor: pointer;
    color: var(--black);
}

.bx_filter .bx_filter_parameters_box_title:hover {
    color: var(--main1);
}

.bx_filter .bx_filter_parameters_box.active .bx_filter_block i {
    font-size: 15px;
    font-style: normal;
    color: var(--text2);
    display: block;
    padding-bottom: 3px;
}

.bx_filter .bx_filter_parameters_box_container_block {
    font-size: 11px;
    float: left;
    box-sizing: border-box;
    width: 50%;
    color: var(--footer);
}

.bx_filter .bx_filter_parameters_box_container .bx_filter_input_container input {
    display: block;
    box-sizing: border-box;
    height: 33px;
    margin: 0;
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--icon);
    background-color: var(--bg);
    padding: 10px 10px;
    font-size: 13px;
    font-weight: 400;
    color: var(--text2);
}

.bx_filter .bx_ui_slider_part span {
    font-size: 11px;
    font-weight: bold;
    position: absolute;
    top: -16px;
    left: 50%;
    display: block;
    width: 100px;
    margin-left: -50px;
    text-align: center;
    color: var(--black);
}

.bx_filter .bx_ui_slider_pricebar_V {
    z-index: 80;
    top: -1px;
    bottom: -1px;
    background: var(--main1);
}

.bx_filter .bx_filter_select_block {
    position: relative;
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 33px;
    margin: 0;
    padding: 0 33px 0 10px;
    border: none;
    border-radius: 2px;
    background: var(--bg);
    box-shadow: inset 0 3px 6px 0 rgba(var(--icon), 0.75);
}

.bx_filter_select_popup ul li:first-child {
    border-bottom: 1px solid var(--border2);
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.bx_filter_select_popup ul li label {
    font-size: 14px;
    line-height: 26px;
    display: block;
    text-align: left !important;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
    height: 26px;
    padding: 0 5px;
    cursor: pointer;
    vertical-align: middle;
    white-space: nowrap;
    text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    color: var(--text);
}

.bx_filter_select_popup ul li label:hover {
    color: var(--black);
    background: var(--bg2);
}

.bx_filter_select_popup ul li label.disabled {
    color: var(--border2);
    background: transparent;
}

.bx_filter .bx_filter_param_label.disabled .bx_filter_param_text {
    color: var(--text);
    /*text-decoration: line-through;*/
}

.bx_filter_select_popup .bx_filter_param_label.active {
    background: var(--bg2);
}

.bx_filter .bx_filter_input_checkbox input[type=checkbox]:checked {
    background: var(--main1);
}

.bx_filter .bx_filter_param_btn {
    display: inline-block;
    width: 42px;
    height: 42px;
    text-align: center;
    text-decoration: none;
    color: var(--black);
    vertical-align: middle;
    border: 2px solid var(--icon);
    background: var(--bg2);
    background-clip: padding-box;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.22);
    text-shadow: 0 1px 0 var(--bg);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fbfdfd", endColorstr="#cfe1e7", GradientType=0);
    transition: border 0.3s ease, box-shadow 0.1s ease, color 0.3s ease;
    cursor: pointer;
}

.bx_filter .bx_filter_param_label.active .bx_filter_param_btn {
    border-color: var(--main1);
    background: var(--bg2);
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZjZmVmZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjZmUyZTciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: linear-gradient(top bottom, #fcfefe 0%, #cfe2e7 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fcfefe", endColorstr="#feffff", GradientType=0);
    /*box-shadow:0 0 0 3px #2995d7,inset 0 2px 3px rgba(0,0,0,.12);*/
}

.bx_filter span.bx_spm {
    font-size: 18px;
    font-weight: bold;
    line-height: 23px;
    display: inline-block;
    height: 23px;
    margin: 0 10px;
    vertical-align: middle;
    color: var(--black);
}

.bx_filter_btn_color_icon.all:before {
    position: absolute;
    width: 60%;
    height: 60%;
    background: var(--bg);
    content: " ";
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.bx_filter .bx_filter_parameter_biz.active {
    position: relative;
    padding-left: 20px;
    color: var(--validation);
    border-bottom: 1px solid;
}

.bx_filter .bx_filter_search_button {
    cursor: pointer;
    background-color: var(--main1);
    color: var(--bg);
    margin-bottom: 20px;
    font-size: 14px;
    width: 177px;
    border-radius: 4px;
    display: inline-block;
    font-weight: 500;
    line-height: 1.42;
    text-transform: uppercase;
    text-align: center;
    padding: 10px 10px;
    transition: 0.3s;
}

.bx_filter .bx_filter_search_reset {
    color: var(--text2);
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
}

.bx_filter .bx_filter_search_reset:hover {
    color: var(--footer);
}

.bx_filter .bx_filter_popup_result {
    font-size: 13px;
    font-weight: normal;
    line-height: 33px;
    position: absolute;
    z-index: 930;
    display: none;
    height: 33px;
    margin-top: -7px;
    margin-left: 10px;
    padding: 0 10px;
    white-space: nowrap;
    color: var(--footer);
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-left: 1px solid var(--border);
    border-radius: 3px;
    background: var(--bg);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
}

a[type=button] {
    -webkit-appearance: inherit !important;
}

.no-available .item__avaible__round {
    border-color: #aaa;
}

.no-available .item__avaible__round::before {
    background-color: #aaa;
}

.no-available .item__avaible__txt {
    color: #aaa;
}

.contacts__socials {
    margin-top: 50px;
}

.contacts__socials-top {
    margin-bottom: 20px;
}

.contacts__socials-name {
    text-transform: uppercase;
}

.contacts__socials-svg {
    fill: var(--main1);
    margin-right: 10px;
}

@media screen and (max-width: 767.99px) {
    .pslide__img-img {
        width: 100%;
    }
}

.company-documents__heading {
    font-size: 24px;
    font-weight: 500;
    color: var(--headers);
    margin-bottom: 20px;
}

.company-documents__description {
    margin-bottom: 40px;
}

.company-documents__item {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ededed;
}

.company-documents__item-left {
    min-width: 220px;
    width: 220px;
}

.company-documents__item-title {
    font-size:18px;
    font-weight: 500;
    color: var(--headers);
    margin-bottom: 20px;
}

@media screen and (max-width: 575.99px) {

    .company-documents__item {
        flex-wrap: wrap;
        justify-content: center;
    }

    .company-documents__item-left {
        text-align: center;
        min-width: 100%;
        width: 100%;
    }
}

.offers__active {
    font-size: 20px;
    margin: 20px 0;
}


.h2like {
	font-size: 28px;
	margin: 40px 0;
    color: var(--headers);
    font-weight: 700;
}



/*# sourceMappingURL=main.css.map */
