:root {
    --accent-color: #08536a;
    --color: #202020;
    --border-color: #cccccc;
    --collection-items-in-row: 6;
    ----collection-border-radius: 3px;
}

/*
  32pt = 18px
  28pt = 16px
*/
@font-face {
    src: url("../fonts/segoescript.woff2") format("woff2");
    font-family: "segoe-script";
    font-weight: 400;
    font-style: normal;
}

.show-xs {
    display: none !important;
}

.slogan {
    display: inline-block;
    position: relative;
    font-family: "segoe-script", sans-serif;
    font-size: 16px;
    color: var(--color);
    padding-right: 70px;
}

.slogan::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -3px;
    width: 50px;
    height: 50px;
    background-image: url(../images/heart.svg);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center center;
}

.header_top {
    border-bottom: 1px solid var(--border-color);
}

.header_top .topcart {
    height: auto;
    padding-right: 0;
    position: relative;
    top: -2px;
}

.header_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 4.5%;
}

.header-col--main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 4%;
}

.header-col--first {
    flex: 0 0 22%;
    width: 22%;
}

.header-col--last {
    flex: 0 0 16%;
    width: 16%;
    display: flex;
    justify-content: space-between;
}

.header__col {
    flex: 1;
}

.header_bottom {
    position: relative;
    padding: 45px 0;
}

.header_bottom .headermen {
    display: none;
}

.headermen {
    flex: 1;
    width: 100%;
}

.contacts-window {
    display: none;
    position: absolute;
    top: 36px;
    left: 50%;
    width: 92%;
    height: auto;
    max-width: 400px;
    background-color: #ffffff;
    z-index: 99;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    padding: 36px 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contacts-window .map_zg {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 24px;
}

.contacts-window .map_tels a[href*="tel"] {
    margin-left: -10px;
}

.contacts-window .map_tels a[href*="tel"],
.contacts-window .map_tels a[href*="tel"] strong {
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 0;
}

.contacts-window .map_tels span {
    font-weight: 300;
    font-size: 12px;
}

.contacts-window .map_tels,
.contacts-window .map_tels a[href*="mailto"] {
    font-size: 17px;
}

.contacts-window .map_adr {
    font-size: 16px;
}

.contacts-window .map_tels {
    margin-bottom: 24px;
    padding-left: 10px;
}

.contacts-window .map_adr,
.contacts-window .map_soc {
    margin-bottom: 32px;
}

.contacts-window .map_tels a[href*="mailto"] {
    margin-top: 14px;
    font-weight: 500;
}

.contacts-window .map_soc .soc_list > a,
.contacts-window .map_soc .soc_list > a img,
.contacts-window .map_soc .soc_list > a svg {
    width: 48px;
    height: 48px;
}

.contacts-window a[href="#zamer"] {
    display: flex !important;
    background: #202020;
    color: #ffffff;
    border-radius: 1px;
    width: 232px;
    padding: 8px 14px;
}

.contacts-window a[href="#zamer"]:before {
    background: url(/imgs/measuring-tape-white.svg) center no-repeat;
}

.contacts-window-close {
    position: absolute;
    top: 16px;
    right: 12px;
    width: 28px;
    height: 28px;
    background-image: url(../images/close_gallery.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    z-index: 2;
}

.center {
    text-align: center;
}

.soc_list {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.soc_list > a {
    display: block;
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.header_bottom #logotip {
    width: 100% !important;
}

.header_bottom #logotip img {
    width: 100%;
}

.header .cartimg {
    width: 22px;
    height: 22px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    padding: 0 30px;
    height: 90px;
    border-radius: 4px;
    cursor: pointer;
    background-color: var(--accent-color);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    column-gap: 12px;
    white-space: nowrap;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.btn:hover {
    background-color: #12617a;
}

.btn.btn-dark {
    background-color: var(--color);
    color: #ffffff;
}

.btn .icon {
    flex: 0 0 60px;
    width: 60px;
    max-height: 44px;
    position: relative;
    left: -10px;
}

.btn.btn-catalog {
    padding: 0 50px;
    /*flex: 0 0 30.75%;
    width: 30.75%;
    */
    flex: 0 0 auto;
    width: auto;
    font-weight: 700;
}

.btn.btn-catalog .close-icon {
    display: none;
}

.btn.btn-catalog.active .icon.close-icon {
    display: block;
}

.btn.btn-catalog.active .icon {
    display: none;
}

.header_bottom .topsearch {
    display: flex;
    align-items: center;
    margin: 0;
    flex: 1;
    width: 100%;
    max-width: 100%;
}

.header_bottom .search-form input[type="submit"] {
    right: 20px;
    left: unset;
    background-position: center center;
}

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

.radius-10 {
    border-radius: 10px !important;
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    -ms-border-radius: 10px !important;
    -o-border-radius: 10px !important;
}

.top_mail a:first-child {
    margin-right: 0 !important;
    margin-top: 3px !important;
}

#toggle.active .podmenwrap,
#toggle.show-active .podmenwrap {
    display: block;
}

.w-100 {
    width: 100%;
}

.fixed .header_top {
    display: none;
}

.fixed .topsearch {
    flex: 0 0 0;
}

.fixed .topsearch,
#header.fixed .top_mail {
    display: flex !important;
}

.fixed .header_bottom {
    padding: 4px 0 !important;
}

.fixed .header_bottom .search-form {
    display: none;
}

.fixed .header_bottom .headermen {
    display: block;
    flex: 1;
}

.fixed .header_bottom .headermen .main_menu {
    justify-content: space-around;
    column-gap: 6px;
}

.fixed .header_bottom .headermen .main_menu .nofixmen {
    display: none;
}

.header_bottom .mobtrigger {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    background: var(--color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-left: auto;
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
}

.header_bottom .mobtrigger:before {
    background-image: url(../images/menu-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 24px 24px;
}

.how_section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
}

.spec_item {
    overflow: hidden;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.spec_item .spec_item3 {
    z-index: 13;
}

.spec_item .spec_item_link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 12;
    width: 100%;
    height: 100%;
    border: none;
}

.spec_item .spec_item_link:hover {
    background: transparent;
    color: var(--color);
}

.mainform2 {
    position: relative;
    background-color: var(--accent-color);
}

.mainform2::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 20.7477%;
    height: 100%;
    background-color: #cad0dc;
    z-index: 1;
}

.mainform2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/consultation.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    z-index: 2;
}

.mainform2 .content_wrap {
    position: relative;
    z-index: 11;
}

.mainform2 .formzg,
.mainform2 .frmsec3,
.mainform2 .frmsec3 label,
.mainform2 .frmsec3 a {
    color: #ffffff;
}

.mainform2 .frmsec3 input[type="checkbox"]:checked + label:before {
    background: url(/imgs/checkbox_white.png) center no-repeat;
    background-size: contain;
}

.mainform2 .frmsec3 label:before {
    background: #ffffff;
}

.mainform2 .frmsec22 button {
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}

.mainform2 .frmsec22 button span {
    font-weight: normal;
}

.section_description {
    font-size: 28px;
    line-height: 150%;
    margin-bottom: 50px;
}

.text_section {
    margin-top: 170px;
}

.text_section .section_line_zg,
.text_section .section_description {
    text-align: center;
}

.preims_item {
    flex: 1;
}

.map_soc .soc_list {
    justify-content: center;
    column-gap: 20px !important;
}

.map_soc .soc_list > a {
    width: 32px;
    height: 32px;
}

.map_soc .soc_list > a img,
.map_soc .soc_list > a svg {
    height: 40px;
}

.catalog-item .tovlink {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 11;
}

.catalog-item .tovbutton1 a {
    position: relative;
    z-index: 12;
}

.catalog-item .skidka,
.rel_item .relprice .skidka {
    background-color: transparent;
    box-shadow: none;
    color: #c00000;
    padding: 0;
    font-size: 16px;
    right: 0 !important;
    top: 30px !important;
}

.catalog-item .skidka::after,
.rel_item .relprice .skidka::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 4px;
    width: 70px;
    height: 40px;
    background-image: url(/imgs/discount.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center center;
    display: block;
}

.katalog_descr.katalog_descr_last {
    margin-top: 105px;
    margin-bottom: 0;
}

.relativewrap_carousel {
    max-width: 100%;
    overflow: hidden;
    padding-bottom: 40px;
}

.relativeitems_section.relativeitems_section_custom .owl-stage-outer {
    overflow: visible;
}

.relativeitems_section.relativeitems_section_custom .owl-stage {
    display: flex;
}

.relativeitems_section.relativeitems_section_custom .owl-nav {
    padding: 0;
}

.relativeitems_section.relativeitems_section_custom .owl-item {
    padding: 0;
}

.relativeitems_section.relativeitems_section_custom .owl-item .rel_item {
    width: 400px;
    height: 100%;
}

.relativeitems_section.relativeitems_section_custom
.owl-item
.rel_item
.relprice {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 20px;
    margin-bottom: 30px;
}

.relativeitems_section.relativeitems_section_custom
.owl-item
.rel_item.rel_item_sale
.relprice {
    transform: translateX(40px);
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -ms-transform: translateX(40px);
    -o-transform: translateX(40px);
}

.relativeitems_section.relativeitems_section_custom
.owl-item
.rel_item
.relprice
.skidka {
    position: relative;
    top: 0 !important;
    font-size: 14px;
    width: 80px;
}

.relativeitems_section.relativeitems_section_custom
.owl-item
.rel_item
.relprice
.skidka::after {
    left: -3px;
    top: -11px;
}

.relativeitems_section.relativeitems_section_custom
.owl-item
.rel_item
.catalog-item-price {
    margin: 0;
}

.photopechat {
    margin-top: 0 !important;
}

.photopechat .photopechat_left {
    display: flex;
    flex-direction: column;
    width: 36%;
}

.photopechat .photopechat_left .photopimgblock {
    flex: 1;
}

.photopechat .photopechat_left .photopimgblock img {
    max-height: 100%;
    max-width: 100%;
}

.photopechat .photopechat_right {
    width: 64%;
}

.contactpageflex .contactpageright {
    padding: 120px 200px 90px 200px;
}

.drag-handle {
    width: 60px;
    height: 60px;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    cursor: grab;
}

.catalog-item .drag-handle {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 101;
}

.top_conts {
    position: relative;
}

.mobmenudiv.mobmenudiv-um {
    padding: 28px 32px 24px 32px !important;
}

.mobmenudiv.mobmenudiv-um div {
    margin-bottom: 24px;
}

.mobmenudiv.mobmenudiv-um .closemenu {
    background-color: #202020;
    background-image: url(../images/close_gallery_white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    width: 40px;
    height: 40px;
    top: 16px;
    right: 22px;
    border-radius: 50%;
    background-size: 24px 24px;
}

.mobmenudiv .mobmenudiv-label {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 54px !important;
}

.mobmenudiv .podmenwrap {
    position: relative;
    display: block;
    box-shadow: none;
    padding: 0;
    background: transparent;
}

.mobmenudiv .podmenwrap .shadowdiv {
    display: none;
}

.mobmenudiv .podmenwrap .podmensec {
    flex-direction: column;
    padding: 0 !important;
}

.mobmenudiv .podmenwrap .podmensec .ppunkt {
    width: 100%;
    margin-right: 0;
    margin-bottom: 28px;
}

.mobmenudiv .podmenwrap .podmensec .ppunkt > a {
    position: relative;
    display: inline;
    font-weight: 400;
    font-size: 15px;
}

.mobmenudiv .podmenwrap .podmensec .ppunkt > a .ppicon {
    max-height: 22px;
    max-width: 22px;
    margin-right: 12px;
}

.mobmenudiv .podmenwrap .podmensec .ppunkt .scnd_icon {
    right: -32px;
}

.mobmenudiv .podmenwrap .podmensec .ppunkt .scnd_icon.komar {
    top: -16px;
}

.mobmenudiv .podmenwrap .pomenzag {
    padding-left: 0;
    padding-right: 0;
    border: none;
    margin-top: 0;
    padding-top: 24px;
}

.mobmenudiv .podmenwrap .pomenzag > div {
    margin-bottom: 32px;
}

.mobmenudiv .podmenwrap .podmenu2 {
    margin: 0 -32px;
    padding: 0 32px;
    background-color: #f6f7f9;
    border-top: 1px solid var(--border-color);
}

.cart_link {
    position: relative;
    padding-left: 32px;
    font-weight: 500;
    font-size: 14px;
}

.cart_link::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 16px;
    height: 16px;
    background-image: url(../images/cart.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.cart_link > span {
    background-color: #08536a;
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    padding: 2px 8px;
    border-radius: 3px;
    position: relative;
    left: 8px;
}

.slider_item.hasMobImg .mob {
    display: none;
}

.proizv_sec2.owl-carousel .owl-dots,
.ddts.owl-carousel .owl-dots {
    display: flex;
    justify-content: center;
    column-gap: 4px;
    margin-top: 24px !important;
}

.proizv_sec2.owl-carousel .owl-dots .owl-dot span,
.ddts.owl-carousel .owl-dots .owl-dot span {
    margin: 0;
    width: 6px;
    height: 6px;
    background: transparent;
    border: 1px solid #202020;
}

.proizv_sec2.owl-carousel .owl-dots .owl-dot.active span,
.ddts.owl-carousel .owl-dots .owl-dot.active span {
    background: #202020;
    width: 16px;
}

.order-zamer-block {
    position: relative;
    background-image: url(/images/1111.png);
    background-repeat: no-repeat;
    background-position: 130px center;
    background-size: cover;
    padding: 40px 0;
}

.order-zamer-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/images/gradient.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.order-zamer-block .title {
    font-weight: 400;
    font-size: 22px;
    text-align: center;
}

.order-zamer-block .title span {
    font-weight: 600;
    display: block;
}

.order-zamer-block .content_wrap {
    max-width: 76%;
    margin-left: 0;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.order-zamer-block .descr {
    font-weight: 500;
    font-size: 14px;
}

.order-zamer-block .descr span {
    font-weight: bold;
    color: #3abeb1;
}

.order-zamer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: 12px;
    font-weight: 600;
    color: #3abeb1;
    text-underline-offset: 2px;
    font-size: 14px;
}

.order-zamer-btn img {
    width: 24px;
}

.order-zamer-block .order-btn,
.order-zamer-btn-wrap .order-btn {
    text-transform: uppercase;
    font-weight: 400;
    background: #ffd84e;
    text-align: center;
    font-size: 14px;
    width: 120px;
    text-decoration: none;
    color: #202020;
    padding: 16px 0;
    border-radius: 2px;
    margin: 0 auto;
}

.order-zamer-btn-wrap {
    text-align: center;
}

.order-zamer-btn-wrap .order-btn {
    display: inline-block;
    font-size: 12px;
    width: auto;
    padding: 12px 16px;
}

.order-zamer-popup {
    position: absolute;
    top: 50%;
    left: 15px;
    right: 15px;
    width: auto;
    background-color: #ffffff;
    z-index: 11;
    padding: 16px 16px 32px;
    border-radius: 4px;
    box-shadow: 0px 10px 18px 2px rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
}

.order-zamer-popup.active {
    opacity: 1;
    visibility: visible;
}

.order-zamer-popup .title {
    font-weight: 500;
    text-align: left;
    margin-bottom: 24px;
}

.order-zamer-popup .descr {
    font-weight: 400;
}

.order-zamer-popup ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.order-zamer-popup ul li {
    margin-bottom: 6px;
}

.order-zamer-popup .close {
    position: absolute;
    top: 18px;
    right: 16px;
    width: 24px;
    height: 24px;
    background-image: url(../images/close_gallery.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    z-index: 22;
    cursor: pointer;
}

.order-zamer-popup ul li.imgs {
    display: flex;
    justify-content: space-around;
    margin: 16px 0;
}

.order-zamer-popup ul li.imgs img {
    max-width: 46px;
}

.order-zamer-popup > a {
    background: #202020;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    width: 170px;
    font-weight: 500;
    padding: 16px 0;
    border-radius: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    margin: 32px auto 0;
}

.relativewrap {
    overflow: hidden;
}

.mobmenudiv #accent-links {
    margin-left: -32px;
    margin-right: -32px;
    overflow: hidden;
    margin-top: 24px;
}

#appended {
    margin-left: -32px;
    margin-right: -32px;
    overflow: hidden;
}

#appended #footer .footer_inner {
    padding-top: 0;
}

#appended #footer .footcnt2 {
    display: none;
}

.mobmenudiv.mobmenudiv-um #appended .footcnt {
    margin-bottom: 0;
}

.mobmenudiv.mobmenudiv-um #appended .footcnt1 {
    margin-top: 12px;
    margin-bottom: 0;
}

.mobmenudiv.mobmenudiv-um #appended .footcnt1 .footc1 {
    margin-bottom: 16px;
}

.mobmenudiv.mobmenudiv-um #appended #footer .order-zamer-btn-wrap {
    display: block;
    margin-top: 36px;
}

#footer .order-zamer-btn-wrap {
    margin-bottom: 32px;
    display: none;
}

.topcart .topcart-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.catalogsection .catalog-item {
    background-color: #ffffff;
}

.tovinfoleft1 {
    min-width: 0;
}

.catalog-item .owl-carousel .owl-dots {
    display: flex;
    justify-content: center;
    column-gap: 4px;
}

.catalog-item .owl-carousel .owl-dots .owl-dot span {
    width: 5px;
    height: 5px;
    margin: 0;
    background: transparent;
    border: 1px solid #202020;
}

.catalog-item .owl-carousel .owl-dots .owl-dot.active span {
    background: #202020;
    width: 14px;
}

.catalog-item .catalog-item-price {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    column-gap: 6px;
}

.catalog-item .catalog-item-price > div:first-child {
    position: relative;
    top: -4px;
}

#to-back {
    display: inline-flex;
    align-items: center;
    column-gap: 12px;
    text-decoration: none;
    margin-bottom: 48px;
    color: #202020;
    font-weight: 500;
    user-select: none;
}

#to-back > img {
    width: 32px;
    flex: 0 0 32px;
    height: auto;
}

.pricetable table a {
    text-decoration: none;
    color: #202020;
}

@media (max-width: 500px) {
    .catalogsection {
        margin-top: 24px;
    }

    .catalogsection .catalog-item {
        padding-bottom: 20px !important;
    }

    /*.catalog-item .tovlink {
        display: none;
    }
     */
    .catalog-item .tovinfoleft1 {
        position: relative;
        z-index: 11;
    }

    .catalog-item .owl-carousel .item img {
        height: auto;
        max-height: 100%;
    }

    .catalog-item .owl-carousel .item {
        width: 100%;
    }

    .catalog-item .catalog-item-desc {
        margin-top: 10px !important;
    }

    .catalog-item .catalog-item-desc table p {
        display: none;
    }

    .catalog-item .catalog-item-desc table tr td {
        padding-top: 10px !important;
        font-size: 12px;
        font-weight: 300;
    }

    .catalog-item .catalog-item-desc table tr img[width="250"] {
        width: 250px;
    }

    .catalog-item .tovname1 {
        margin-bottom: 10px;
    }

    .catalog-item .tovname1 a {
        font-size: 12px;
    }

    .catalog-item .tovinfo1 {
        column-gap: 6px;
    }

    .catalog-item .tovinfo1 .skidka {
        position: absolute !important;
        top: -3px !important;
        right: 5px !important;
        font-weight: 400;
        margin: 0 !important;
    }

    .catalog-item .tovinforight1 {
        position: relative;
        justify-content: flex-end;
        padding-bottom: 32px;
    }

    .catalog-item .tovbutton1 {
        position: relative;
        z-index: 11;
        padding-left: 7px;
    }

    .catalog-item .tovbutton1 a {
        border-radius: 2px;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        -o-border-radius: 2px;
        padding: 14px 24px;
        font-size: 12px;
    }

    .catalog-item .catalog-item-price {
        position: relative;
        margin-right: 0;
        margin-bottom: 20px;
        text-align: left;
        display: block;
        padding-left: 7px;
    }

    .catalog-item .catalog-item-price > div.real {
        margin-left: 40px;
    }

    .show-xs .preims_block {
        margin-top: 50px;
    }
}

.electro_desc table tr tr td.float-text {
    display: flex !important;
    flex-direction: row !important;
    column-gap: 16px;
    align-items: center;
}

.page-section {
    position: relative;
    padding: 60px 0;
}

.page-section-title {
    font-weight: 400;
    font-size: 32px;
    margin: 0 0 60px;
}

.bg-gray {
    background-color: #f6f7f9 !important;
}

.collections-list {
    display: grid;
    grid-template-columns: repeat(var(--collection-items-in-row), minmax(0, 1fr));
    grid-gap: 32px;
}

.collection-item {
    position: relative;
    cursor: pointer;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.19);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.19);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.19);
    border-radius: var(----collection-border-radius);
    overflow: hidden;
}

.collection-item.active {
    border: 1px solid #202020;
}

.collection-item-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.collection-item-img {
    position: relative;
    padding-bottom: 100%;
}

.collection-item-img > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-item-content {
    padding: 12px 16px;
}

.collection-item-title {
    margin: 0 0 3px;
    font-weight: 600;
}

.collection-item-descr {
    opacity: .5;
    text-transform: lowercase;
}

.selected-collection-container {
    position: relative;
    grid-column: span var(--collection-items-in-row);
    padding: 24px;
    -webkit-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
    border-radius: var(----collection-border-radius);
    min-height: 570px;
    display: none;
}

.selected-collection-container-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(/bitrix/templates/jaluzy/assets/images/close-dark.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    cursor: pointer;
    z-index: 2;
}

.selected-collection-container-loader-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.selected-collection-container-loader {
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #25b09b;
    --_m: conic-gradient(#0000 10%, #000),
    linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
}

@keyframes l3 {
    to {
        transform: rotate(1turn)
    }
}

.selected-collections {
    position: relative;
    z-index: 11;
}

.selected-collection {
    display: none;
    column-gap: 48px;
    transition: all .4s ease;
}

.selected-collection.active {
    display: flex;
}

.selected-collection-gallery {
    min-width: 0;
    flex: 1;
    width: auto;
    position: relative;
    padding-bottom: 40.3%;
    align-self: baseline;
}

.selected-collection-gallery.no_p {
    padding-bottom: 0;
}

.selected-collection-gallery > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.selected-collection-gallery .collection-swiper .swiper-slide {
    padding-bottom: 100%;
}

.selected-collection-gallery .collection-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.selected-collection-gallery .collection-swiper .swiper-button-prev,
.selected-collection-gallery .collection-swiper .swiper-button-next {
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    border-radius: 50%;
    color: #202020;
    top: calc(50% - 16px);
}

.selected-collection-gallery .collection-swiper .swiper-button-prev::after,
.selected-collection-gallery .collection-swiper .swiper-button-next::after {
    font-size: 24px;
}

.selected-collection-gallery .collection-swiper .swiper-button-prev {
    left: 32px;
}

.selected-collection-gallery .collection-swiper .swiper-button-next {
    right: 32px;
}

.selected-collection-gallery .collection-swiper .swiper-pagination {
    position: relative;
    top: 0;
    bottom: 0;
    margin-top: 24px;
    display: flex;
    justify-content: center;
    column-gap: 12px;
}

.selected-collection-gallery .collection-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background: grey;
    margin: 0;
}

.selected-collection-gallery .collection-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #202020;
}

.selected-collection-content {
    flex: 0 0 56%;
    width: 56%;
    display: flex;
    flex-direction: column;
}

.selected-collection-title {
    margin: 12px 0 32px;
    font-size: 24px;
    font-weight: 500;
}

.selected-collection-title span {
    font-weight: 300;
    text-transform: lowercase;
    opacity: .5;
    font-size: 20px;
}

.selected-collection-props {
    display: flex;
    flex-direction: column;
}

.selected-collection-prop {
    padding: 16px 0;
    border-bottom: 1px solid #202020;
    font-size: 14px;
}

.selected-collection-prop:last-child {
    border-bottom: none;
}

.selected-collection-prop > span {
    display: block;
    font-weight: 300;
}

.selected-collection-prop > span:first-child {
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 6px;
}

.selected-collection-buttons {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    row-gap: 12px;
    column-gap: 24px;
}

.selected-collection-buttons .button {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    text-transform: uppercase;
    background-color: #202020;
    color: #ffffff;
    padding: 8px 16px;
    min-width: 250px;
    min-height: 48px;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    border-radius: var(----collection-border-radius);
}

.selected-collection-buttons .button img {
    width: 32px;
    height: 32px;
}

.selected-collection-buttons .button span {
    font-weight: 600;
}

.selected-collection-buttons .button.button-yellow {
    background-color: #ffd84e;
    color: #202020;
}

.success-page-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 16px;
    min-height: 520px;
}

.success-page-title {
    font-weight: 600;
    line-height: 1;
    position: relative;
    margin: 0;
}

.success-page-title img {
    position: relative;
    top: 8px;
    max-width: 44px;
}

h1.success-page-title {
    font-size: 46px;
    left: 34px;
}

h2.success-page-title {
    font-size: 24px;
}

.success-page-descr {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
}

.success-page-note {
    font-style: italic;
    font-size: 18px;
    font-weight: 300;
    margin: 40px 0;
}

.success-page-note > a {
    background: linear-gradient(to right, #C21E94 0%, 37.08791136741638%, #9619B3 74.17582273483276%, 87.08791136741638%, #6D15CE 100%);
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    padding: 3px 8px;
    border-radius: 2px;
}

.success-page-btn {
    background-color: #ffd84e;
    color: #202020;
    text-decoration: none;
    padding: 8px 42px;
    font-size: 20px;
    min-width: 380px;
}

@media (max-width: 1200px) {
    .collections-list {
        grid-gap: 24px;
    }

    .selected-collection {
        column-gap: 32px;
    }
}

@media (max-width: 992px) {
    :root {
        --collection-items-in-row: 5;
    }

    .selected-collection-buttons .button {
        font-size: 14px;
    }

    .selected-collection-container {
        min-height: 200px;
    }

    .page-section {
        padding: 40px 0;
    }

    .page-section-title {
        font-size: 24px;
    }

    h1.success-page-title {
        font-size: 34px;
        left: 0;
    }

    h2.success-page-title,
    .success-page-descr {
        font-size: 20px;
    }

    .success-page-note,
    .success-page-btn {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    :root {
        --collection-items-in-row: 4;
    }

    .collections-list {
        grid-gap: 12px;
    }

    .selected-collection {
        flex-direction: column;
        padding-top: 24px;
    }

    .selected-collection-gallery {
        width: 100%;
    }

    .selected-collection-content {
        flex: 1;
        width: 100%;
    }

    .selected-collection-title {
        text-transform: uppercase;
        font-size: 16px;
        position: absolute;
        top: -12px;
        left: 0;
        z-index: 1;
        padding-right: 40px;
        white-space: nowrap;
        margin: 0;
    }

    .selected-collection-gallery .collection-swiper .swiper-pagination {
        margin-top: 16px;
    }

    .selected-collection-gallery .collection-swiper .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
    }

    .selected-collection-prop > span:first-child {
        margin-bottom: 2px;
    }

    .selected-collection-prop {
        padding: 10px 0;
        border-bottom: none;
    }

    .selected-collection-buttons {
        flex-direction: column-reverse;
        margin-top: 24px;
    }

    .selected-collection-gallery {
        padding-bottom: 100%;
    }

}

@media (max-width: 576px) {
    :root {
        --collection-items-in-row: 3;
    }

    .success-page-content {
        min-height: auto;
        padding: 30px 0;
    }

    h1.success-page-title {
        font-size: 26px;
        left: 0;
    }

    h2.success-page-title,
    .success-page-descr {
        font-size: 16px;
    }

    .success-page-note,
    .success-page-btn {
        font-size: 14px;
    }

    .success-page-note {
        margin: 24px 0;
    }

    .success-page-note > a {
        display: table;
        margin: 12px auto 0;
    }

    .success-page-btn {
        min-width: auto;
        text-transform: uppercase;
        padding: 16px 24px;
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    :root {
        --collection-items-in-row: 2;
    }
}



