@charset "UTF-8";

:root {
  --fiolet: #764AF1;
  --dark-grey: #202020;
  --grey: #767676;
  --black: #000000;
}

form#ContactsForm {
  display: none;
}

ul {
  list-style: none;
}

h1 {
  color: var(--black, #000);
  font-family: Inter;
  font-size: 50px;
  font-style: italic;
  font-weight: 600;
  line-height: 72px;
  letter-spacing: -0.09rem;
  text-align: left;
  text-transform: uppercase;
}

h1 span {
  font-style: normal;
}

.italic {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

.margin-0 {
  margin: 0;
}

.half {
  width: 50%;
  box-sizing: border-box;
}

.third {
  width: 33.333%;
  box-sizing: border-box;
}

.quart {
  width: 25%;
  box-sizing: border-box;
}

.flex-wrap {
  display: flex;
}

body {
  font-family: Inter !important;
  font-style: normal;
  font-weight: 400;
  padding: 0;
  margin: 0;
  background-color: #fff;
  font-display: swap;
}

a {
  color: var(--fiolet, #764AF1);
}

.bounce {
  animation: tripleBounce 1.2s ease;
}

@keyframes tripleBounce {
  0% {
    transform: translateY(0);
  }

  10% {
    transform: translateY(-15px);
    /* Первый прыжок: 15px */
  }

  20% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
    /* Второй прыжок: 10px */
  }

  50% {
    transform: translateY(0);
  }

  70% {
    transform: translateY(-5px);
    /* Третий прыжок: 5px */
  }

  80% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(0);
  }
}

.big {
  width: 1440px;
  height: auto;
  position: relative;
  background: white;
  margin: auto;
}

.small-wrapper {
  width: 1192px;
  margin: auto;
}

.top_line {
  width: 100%;
  min-width: 1440px;
  height: auto;
  left: 0;
  top: 0;
  position: relative;
  border: none;
  box-sizing: border-box;
  background: var(--fiolet);
  padding: 4px 134px;
  color: #fff;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  justify-content: center;
}

.marquee-container {
  width: 50%;
  max-width: 1192px;
  overflow: hidden;
  position: relative;
  background-color: transparent;
  height: 21px;
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  position: absolute;
  left: 100%;
  /* Начальная позиция за правым краем контейнера */
  animation: none;
  /* Анимация будет установлена через JS */
}

.marquee span {
  font-size: 14px;
  color: #ffffff;
}

@keyframes marqueeAnimation {
  0% {
    transform: translateX(0);
    /* Начало движения с правого края контейнера */
  }

  100% {
    transform: translateX(calc(-100% - 100%));
    /* Полное скрытие текста за левым краем */
  }
}

.bx-header {
  padding-top: 12px;
  box-sizing: border-box;
  height: 122px;
  margin: auto;
}

.logo-link {
  width: 133px;
  height: 39.01px;
  position: relative;
  display: block;
}

.logo-link svg {
  width: 133px;
  height: 39.01px;
  fill: black;
}

.bx-header-1-line {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  height: 39px;
}

.bx-header-1-line .lyrmin-favorite-1:hover,
.bx-header-1-line .lyrmin-favorite-1.active {
  position: relative;
}

.subscribe-window+script+script+script+a,
.subscribe-window form input:nth-child(5) {
  display: none;
}

.bx-header-1-line-row#icons span.number {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='7' cy='7' r='7' fill='%23764AF1'/%3e%3c/svg%3e ");
  position: absolute;
  background-repeat: no-repeat;
  width: 14px;
  height: 20px;
  box-sizing: border-box;
  font-size: 9px;
  background-position: 0 3px;
  top: -5px;
  color: #fff;
  margin-left: unset;
}

.bx-header-1-line span.number.cart-num {
  padding: 4px 0 0 4.3px;
  left: 12px;
}

[tooltip] {
  margin: 20px 60px;
  position: relative;
  display: inline-block;
}

[tooltip]::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 4px 6px 0 6px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.7) transparent transparent transparent;
  z-index: 99;
  opacity: 0;
}

[tooltip-position=top]::before {
  left: 50%;
}

[tooltip]::after {
  content: attr(tooltip);
  position: absolute;
  left: 50%;
  top: -6px;
  transform: translateX(-50%) translateY(-100%);
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  color: #fff;
  padding: 10px;
  font-size: 12px;
  min-width: 110px;
  border-radius: 5px;
  pointer-events: none;
  z-index: 99;
  opacity: 0;
}

[tooltip-position=top]::after {
  left: 50%;
}

[tooltip]:hover::after,
[tooltip]:hover::before {
  opacity: 1;
  transition: 0.4s;
}

.search-form {
  position: relative;
}

.wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 55px;
  line-height: 55px;
  padding-right: 55px;
  border-radius: 5px;
  transition: all 0.5s ease;
}

.input-search {
  border: 0;
  background: transparent;
  width: 0;
  outline: none;
  font-family: sans-serif;
  font-size: 18px;
  color: #000000;
  font-style: italic;
  transition: all 0.3s ease;
  position: relative;
}

.wrap .search-icon {
  position: absolute;
  right: 25px;
  top: 17px;
  cursor: pointer;
}

.wrap.active {
  width: 250px;
  padding-left: 25px;
  transition: all 0.5s ease;
  left: -150px;
}

.input-search.active {
  width: 199px;
  padding-left: 5px;
  transition: all 0.5s 0.8s ease;
  border: solid 1px #C9BEFF;
  position: absolute;
  top: 11px;
  right: 18px;
  height: 27px;
}

input::placeholder {
  color: #000000;
}

.cart-icon .bx-basket-block a {
  margin: 0;
  padding: 1px;
}

.cart-icon .bx-basket-block {
  padding: 0;
  position: relative;
}

div.cart-icon {
  margin-left: 28px;
}

.basket-checkout-container,
.basket-items-list-header,
.basket-items-list-wrapper,
.basket-items-list-wrapper-compact {
  background-color: transparent;
  border: none;
}

.basket-items-list-header {
  justify-content: space-between;
}

.basket-items-list-header-filter {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.basket-coupon-block-field .form-control {
  text-align: center;
}

.btn-back {
  background-color: #fff;
  border: 1px solid var(--black, #000);
  width: auto;
  height: 44px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  box-sizing: border-box;
  margin-right: 20px;
}

.basket-checkout-block-btn {
  padding-top: 0;
  padding-left: 25px;
}

.basket-coupon-block-field {
  padding-right: 30px;
  min-width: 100%;
}

.basket-coupon-section {
  max-width: 231px;
  width: 231px;
}

.basket-coupon-section input.form-control {
  height: 44px;
  box-sizing: border-box;
  width: 100%;
}

.basket-items-list-header {
  padding: 0;
}

.basket-coupon-section input.form-control::placeholder {
  color: var(--grey);
}

.basket-coupon-block-coupon-btn {
  border: none;
  position: relative;
  top: unset;
  right: unset;
  transform: none;
  margin: 10px auto;
  width: 100%;
  height: auto;
  left: 0;
  top: 0;
  position: relative;
  border: none;
  box-sizing: border-box;
  background: transparent;
  padding: 4px;
  color: #c9c9c9;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: underline;
}

.bx-basket.bx-blue .btn.btn-default {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  color: var(--white, #FFF);
  width: auto;
  height: 44px;
}

.bx-soa-coupon-label label {
  padding-bottom: 10px;
  display: block;
}

ul.bx-soa-pp-list {
  line-height: normal;
}

.basket-item-info-name,
.basket-item-info-name-link {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
}

.bx-basket .basket-item-property-scu-text .basket-item-scu-item-inner,
.bx-basket .basket-item-scu-item {
  padding: 0;
  border: none;
}

.bx-basket .basket-item-property-name,
.bx-basket .basket-item-property-value {
  display: inline-flex;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  color: var(--black, #000);
}

.bx-basket .basket-item-scu-item {
  display: none;
}

.bx-basket .basket-item-scu-item.selected {
  display: inline-flex;
}

button.btn-refresh-page {
  background: transparent;
  border: none;
  background-image: url('data:image/svg+xml,<svg width="20px" height="20px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 21C16.9706 21 21 16.9706 21 12C21 9.69494 20.1334 7.59227 18.7083 6L16 3M12 3C7.02944 3 3 7.02944 3 12C3 14.3051 3.86656 16.4077 5.29168 18L8 21M21 3H16M16 3V8M3 21H8M8 21V16" stroke="%23d2d2d2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /></svg>');
  width: 20px;
  height: 20px;
  position: relative;
  top: 2px;
}

button.btn-refresh-page:hover {
  background-image: url('data:image/svg+xml,<svg width="20px" height="20px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 21C16.9706 21 21 16.9706 21 12C21 9.69494 20.1334 7.59227 18.7083 6L16 3M12 3C7.02944 3 3 7.02944 3 12C3 14.3051 3.86656 16.4077 5.29168 18L8 21M21 3H16M16 3V8M3 21H8M8 21V16" stroke="%23000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /></svg>');
}

.profile-icon {
  padding: 2px;
  box-sizing: border-box;
}

.card-242 {
  width: 242px;
  padding: 10px;
  box-sizing: border-box;
  transition: transform 0.25s;
}

.card-242:hover,
.slider-wrapper article .col-sm-4.product-item-big-card .row:hover,
.cat .bx_catalog_line_ul li:hover,
.bottom-cats-wrap .bx_catalog_line .bx_catalog_line_ul li:hover {
  transform: scale(1.05);
  transition: transform 0.25s;
}

.lyrmin-favorite-1.active,
.lyrmin-favorite-1:hover {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20' height='17' viewBox='0 0 20 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10 17L8.55 15.7771C3.4 11.4507 0 8.58801 0 5.09537C0 2.2327 2.42 0 5.5 0C7.24 0 8.91 0.750409 10 1.92698C11.09 0.750409 12.76 0 14.5 0C17.58 0 20 2.2327 20 5.09537C20 8.58801 16.6 11.4507 11.45 15.7771L10 17Z' fill='%23764AF1'/%3e%3c/svg%3e ");
}

.lyrmin-favorite-1.active:hover {
  background-image: url(data:image/svg+xml,%3Csvg%20width%3D%2221%22%20height%3D%2219%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6.225%202C3.805%202%202%203.796%202%206.082c0%201.36.91%203.034%202.65%205.023%201.554%201.777%203.621%203.644%205.85%205.574%202.229-1.93%204.296-3.797%205.85-5.574C18.09%209.116%2019%207.443%2019%206.081%2019%203.796%2017.194%202%2014.775%202c-1.326%200-2.666.614-3.52%201.597a1%201%200%200%201-1.51%200C8.892%202.614%207.552%202%206.226%202ZM0%206.082C0%202.639%202.754%200%206.225%200c1.55%200%203.09.572%204.275%201.55A6.802%206.802%200%200%201%2014.775%200C18.245%200%2021%202.639%2021%206.082c0%202.149-1.37%204.31-3.145%206.34-1.81%202.07-4.238%204.215-6.703%206.336a1%201%200%200%201-1.304%200c-2.465-2.12-4.892-4.266-6.703-6.336C1.369%2010.392%200%208.23%200%206.082Z%22%20fill%3D%22%23313132%22%2F%3E%3C%2Fsvg%3E);
  background-position: center;
  background-repeat: no-repeat;
}

.bx-header-1-line-row {
  width: 33.33333%;
  display: flex;
  align-items: center;
}

.bx-header-1-line-row .lyrmin-favorite-1 {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='17' viewBox='0 0 20 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10 3.77934L9.21 2.81193C6.31 -0.743192 1 1.20498 1 5.34054C1 7.43168 2.442 9.37222 4.521 11.2661C5.543 12.1963 6.665 13.0684 7.751 13.91C8.51542 14.4886 9.2653 15.0845 10 15.6971C10.648 15.1471 11.38 14.5791 12.123 14.0034L12.248 13.9062C13.335 13.0627 14.458 12.1877 15.478 11.2546C17.56 9.35602 19 7.41452 19 5.34054C19 1.20593 13.69 -0.743192 10.79 2.81193L10 3.77934ZM10 17C9.244 16.2899 8.266 15.5341 7.218 14.7249C3.948 12.1953 0 9.14252 0 5.34054C0 0.629294 5.724 -1.75921 9.321 1.50902C9.557 1.72347 9.784 1.9627 10 2.22672C10.216 1.9627 10.443 1.72347 10.679 1.50902C14.276 -1.75826 20 0.630248 20 5.34054C20 9.1225 16.045 12.1896 12.773 14.7268C11.729 15.537 10.754 16.2928 10 17Z' fill='black'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
}

ul.lyrmin-favorite-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

ul.lyrmin-favorite-list li {
  width: 20%;
  margin-bottom: 60px;
  margin-right: 1%;
}

ul.lyrmin-favorite-list li a img {
  width: 80%;
  display: block;
  margin: auto;
}

ul.lyrmin-favorite-list li a {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
  display: block;
  text-decoration: none;
}

ul.lyrmin-favorite-list li span.fav-price {
  color: #3f3f3f;
  white-space: nowrap;
  font-weight: bold;
  font-size: 13px;
}

.lyrmin-favorite-list-button {
  font-size: 14px;
  border: 1px var(--fiolet) solid;
  color: var(--fiolet);
}

.bx-header-1-line-row#logo-link {
  justify-content: center;
}

.bx-header-1-line-row#icons {
  justify-content: flex-end;
  align-items: center;
  /* padding: 13px 0 0 236px; */
  padding: 13px 0 0 0;
  box-sizing: border-box;
  width: 397px;
  display: flex;
}

.bx-header-1-line-row#icons span {
  margin-left: 28px;
}

.bx-header-1-line-row#callme {
  justify-content: flex-start;
}

.bx-header-1-line-row .phone-block {
  font-size: 13px;
  font-weight: 400;
}

.bx-header-1-line-row#callme a {
  font-size: 11px;
  text-decoration: none;
  font-weight: 400;
  display: flex;
  align-items: center;
  padding: 5px 12px;
  text-align: center;
  border: solid 1px #000;
  color: #000000;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: -0.2px;
}

.phone-icon svg {
  fill: #000;
  margin-bottom: -3px;
}

span.phone-number {
  margin-left: 8px;
}

.callme-block {
  margin-left: 22px;
  height: 28px;
  width: 131px;
}

.bx-header-2-line {
  margin-top: 42px;
}

.small-menu {
  display: none;
}

.bx-header-2-line nav {
  background: transparent;
}

.bx-header-2-line nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bx-header-2-line nav ul.topmenu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.bx-header-2-line nav ul:after {
  content: "";
  display: table;
  clear: both;
}

.bx-header-2-line nav a {
  text-decoration: none;
  transition: 0.3s linear;
  color: var(--black);
}

.bx-header-2-line .topmenu>li {
  margin-left: 139px;
  position: relative;
}

.bx-header-2-line .topmenu>li:first-child {
  border-left: 0;
  margin-left: 0;
  position: relative;
}

.bx-header-2-line .topmenu>li>a,
.bx-header-2-line .topmenu>li {
  color: var(--black);
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  text-transform: uppercase;
  border-bottom: solid 1px transparent;
  white-space: nowrap;
}

.bx-header-2-line .topmenu>li>a:hover,
.bx-header-2-line .topmenu>li:first-child:hover {
  border-bottom: solid 1px #000;
}

.bx-header-2-line .topmenu>li>a:active,
.bx-header-2-line .topmenu>li:active {
  border-bottom: solid 1px #000;
}

.bx-header-2-line .topmenu .fa,
.bx-header-2-line .submenu .fa {
  margin-left: 5px;
  color: inherit;
}

.bx-header-2-line .submenu {
  position: absolute;
  z-index: 5;
  min-width: 200px;
  background: white;
  visibility: hidden;
  opacity: 0;
  transform-origin: 0 0;
  transform: rotateX(-90deg);
  transition: 0.3s linear;
}

.bx-header-2-line .submenu li {
  position: relative;
}

.bx-header-2-line .submenu li a {
  color: var(--black, #000);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  border-bottom: solid 1px transparent;
}

.bx-header-2-line .submenu li a:hover {
  border-bottom: solid 1px #000;
}

.bx-header-2-line .submenu.two li:first-child {
  /*  margin-top: 0; */
}

.bx-header-2-line .submenu.two li:last-child {
  margin-bottom: 16px;
}

.bx-header-2-line .submenu.two li {
  margin-top: 10px;
}

.bx-header-2-line .submenu .submenu {
  position: absolute;
  left: 100%;
  top: -1px;
  transition: 0.3s linear;
}

.bx-header-2-line nav li:hover>.submenu {
  transform: rotateX(0deg);
  visibility: visible;
  opacity: 1;
}

.bx-header-2-line .submenu.two {
  padding-top: 25px;
  display: flex;
  justify-content: flex-start;
  z-index: 14;
}

.bx-header-2-line .submenu.two .submenu-box-wrap {
  padding: 0 30px;
}

.bx-header-2-line .submenu.two .submenu-box-wrap:nth-child(1) {
  padding-left: 0;
}

.bx-header-2-line .submenu.two .submenu-box-wrap:nth-child(4) ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0 30px;
  align-items: center;
}

.bx-header-2-line .submenu.two .submenu-box-wrap:nth-child(4) span.submenu-zag {
  margin-top: 0;
}

.bx-header-2-line ul.topmenu li:nth-child(1) div.submenu {
  width: 1276px;
  padding-left: 41px;
  left: -41px;
}

.bx-header-2-line .submenu.two.horizontal {
  justify-content: flex-start;
  padding-left: 15px;
  left: -15px;
  min-width: 300px;
}

.bx-header-2-line .submenu.two.horizontal li {
  display: block;
}

.bx-header-2-line .submenu.two.horizontal li a {
  color: var(--black, #000);
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
}

.bx-header-2-line span.submenu-zag {
  margin-top: 25px;
  color: var(--black, #000);
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
}

.bx-header-2-line div.submenu-box-wrap:nth-child(2) a.submenu-zag {
  color: var(--black, #000);
  display: block;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  margin-top: 37px;
}

.bx-header-2-line div.submenu-box-wrap:nth-child(4) a.submenu-zag {
  color: var(--black, #000);
  display: block;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.big-menu {
  position: relative;
  z-index: 100;
}

.stones-list ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.container.bx-content-section {
  position: relative;
}




.ban-indx {
  position: relative;
  margin-top: 66px;
  width: 1276px;
  left: -41px;
  background-image: url("/upload/slide-1.webp");
  height: 516px;
}

.ban-indx a {
  position: relative;
  top: 0;
  left: 0;
  width: 1276px;
  height: 516px;
  display: block;
}

.bann-h1 {
  position: absolute;
  top: 198px;
  left: 41px;
  width: 500px;
  color: #fff;
  display: none;
}

.ban-indx img {
  width: 100%;
}

.ban-indx.mob {
  display: none;
}

.bann-h1 h1 {
  color: #fff;
}

div.bann-h1>h1 {
  margin: 0;
  font-weight: 600;
  font-size: 50px;
  line-height: 72px;
  letter-spacing: -4.5px;
}

div.bann-h1>h1 span {
  font-style: italic;
  margin-right: 14px;
}

div.bann-h1>.bann-idx-podzagolovok {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  margin-top: 17px;
  display: block;
}

h2.indx.h44 {
  margin-top: 130px;
  color: var(--black, #000);
  font-family: Inter;
}

h2.indx.h50 {
  font-size: 50px;
}

h2.indx.new {
  color: var(--black, #000);
  font-family: Inter;
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.44px;
  text-transform: lowercase;
}

h2.indx.top {
  letter-spacing: -0.44px;
  text-transform: none;
  font-size: 44px;
}

h3.indx {
  color: var(--black, #000);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-transform: uppercase;
  width: 487px;
}

.top-wrapper .favor-check-block {
  position: absolute;
  z-index: 15;
  top: 13px;
  right: 15px;
}

.slider-wrapper article .product-item-small-card .row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 0 0 30px 0;
}

#slider_bl .wrapper {
  max-width: 100%;
  margin: 1em auto;
  position: relative;
}

.slider-wrapper .product-item-small-card .col-xs-6.col-md-3 {
  padding: 0;
  width: 256px;
  height: 333px;
}

.slider-wrapper .product-item-small-card .product-item-image-original {
  width: 256px;
  height: 283px;
  flex-shrink: 0;
}

.slider-wrapper .product-item-small-card .product-item-title {
  overflow: visible;
  line-height: normal;
}

.slider-wrapper .product-item-small-card .product-item {
  padding: 10px;
  border: none;
  height: 333px;
  box-sizing: content-box;
}

.slider-wrapper .product-item-small-card .product-item-price-container {
  display: none;
}

.slider-wrapper .product-item-big-card .product-item-title a {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
}

.slider-wrapper .product-item-big-card .product-item-image-wrapper {
  margin-bottom: 28px;
}

.slider-wrapper .product-item-image-wrapper {
  width: 256px;
  height: 283px;
  padding: 0;
}

#slider_bl input {
  display: none;
}

#slider_bl .inner {
  width: 500%;
  line-height: 0;
}

#slider_bl article {
  width: 20%;
  float: left;
  position: relative;
}

#slider_bl article img {
  width: 100%;
}

#slider_bl .slider-prev-next-control {
  height: 50px;
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

#slider_bl .slider-prev-next-control label {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.7;
}

#slider_bl .slider-prev-next-control label:hover {
  opacity: 1;
}

#slider_bl .slider-dot-control {
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
}

#slider_bl .slider-dot-control label {
  cursor: pointer;
  border-radius: 5px;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #bbb;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

#slider_bl .slider-dot-control label:hover {
  background: #ccc;
  border-color: #777;
}

#slider_bl .info {
  position: absolute;
  font-style: italic;
  line-height: 20px;
  opacity: 0;
  color: #000;
  text-align: left;
  -webkit-transition: all 1s ease-out 0.6s;
  -moz-transition: all 1s ease-out 0.6s;
  transition: all 1s ease-out 0.6s;
}

#slider_bl .info h3 {
  color: #fcfff4;
  margin: 0 0 5px;
  font-weight: 400;
  font-size: 1.5em;
  font-style: normal;
}

#slider_bl .info.top-left {
  top: 30px;
  left: 30px;
}

#slider_bl .info.top-right {
  top: 30px;
  right: 30px;
}

#slider_bl .info.bottom-left {
  bottom: 30px;
  left: 30px;
}

#slider_bl .info.bottom-right {
  bottom: 30px;
  right: 30px;
}

#slider_bl .slider-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

#slider_bl .slider-wrapper .inner {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

label.label1,
label.label2 {
  position: absolute;
  top: 115px;
}

label.label2 {
  right: 0;
}

#slider_bl #slide1:checked~label.label2,
#slider_bl #slide2:checked~.slider-prev-next-control label:nth-child(3),
#slider_bl #slide3:checked~.slider-prev-next-control label:nth-child(4),
#slider_bl #slide4:checked~.slider-prev-next-control label:nth-child(5),
#slider_bl #slide5:checked~label.label1 {
  display: block;
  float: right;
  margin-right: 5px;
  background-image: url(/local/templates/IZAR/images/arrow-right-black.webp);
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
}

#slider_bl #slide1:checked~.slider-prev-next-control label:nth-child(5),
#slider_bl #slide2:checked~label.label1,
#slider_bl #slide3:checked~.slider-prev-next-control label:nth-child(2),
#slider_bl #slide4:checked~.slider-prev-next-control label:nth-child(3),
#slider_bl #slide5:checked~.slider-prev-next-control label:nth-child(4) {
  display: block;
  float: left;
  margin-left: 5px;
  background-image: url(/local/templates/IZAR/images/arrow-left-black.webp);
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
  position: absolute;
  left: -43px;
}

#slider_bl #slide1:checked~.slider-dot-control label:nth-child(1),
#slider_bl #slide2:checked~.slider-dot-control label:nth-child(2),
#slider_bl #slide3:checked~.slider-dot-control label:nth-child(3),
#slider_bl #slide4:checked~.slider-dot-control label:nth-child(4),
#slider_bl #slide5:checked~.slider-dot-control label:nth-child(5) {
  background: #333;
}

#slider_bl #slide1:checked~.slider-wrapper article:nth-child(1) .info,
#slider_bl #slide2:checked~.slider-wrapper article:nth-child(2) .info,
#slider_bl #slide3:checked~.slider-wrapper article:nth-child(3) .info,
#slider_bl #slide4:checked~.slider-wrapper article:nth-child(4) .info,
#slider_bl #slide5:checked~.slider-wrapper article:nth-child(5) .info {
  opacity: 1;
}

#slider_bl #slide1:checked~.slider-wrapper .inner {
  margin-left: 0;
}

#slider_bl #slide2:checked~.slider-wrapper .inner {
  margin-left: -100%;
}

#slider_bl #slide3:checked~.slider-wrapper .inner {
  margin-left: -200%;
}

#slider_bl #slide4:checked~.slider-wrapper .inner {
  margin-left: -300%;
}

#slider_bl #slide5:checked~.slider-wrapper .inner {
  margin-left: -400%;
}

@media only screen and (max-width: 850px) and (min-width: 450px) {
  #slider_bl .slider-wrapper {
    border-radius: 0;
  }
}

@media only screen and (max-width: 450px) {
  #slider_bl .slider-wrapper {
    border-radius: 0;
  }

  #slider_bl .slider-wrapper .info {
    opacity: 0;
  }
}

@media only screen and (min-width: 850px) {
  #slider_bl body {
    padding: 0 80px;
  }
}

#slider_bl .col-sm-4.product-item-big-card,
#slider_bl_new .col-sm-4.product-item-big-card {
  width: 33%;
}

#slider_bl_new input {
  display: none;
}

#slider_bl_new .wrapper {
  max-width: 100%;
  margin: 1em auto;
  position: relative;
}

#slider_bl_new .slider-wrapper .product-item-small-card .col-xs-6.col-md-3 {
  padding: 0;
  width: 256px;
  height: 333px;
}

#slider_bl_new .slider-wrapper .product-item-small-card .product-item-image-original {
  width: 256px;
  height: 283px;
  flex-shrink: 0;
}

#slider_bl_new .slider-wrapper .product-item-small-card .product-item-title {
  overflow: visible;
  line-height: normal;
}

#slider_bl_new .slider-wrapper .product-item-small-card .product-item {
  padding: 0;
  border: none;
  height: 333px;
}

#slider_bl_new .slider-wrapper .product-item-small-card .product-item-price-container {
  display: none;
}

#slider_bl_new .slider-wrapper .product-item-big-card .product-item-title a {
  font-size: 16px;
  text-transform: uppercase;
}

#slider_bl_new .slider-wrapper .product-item-big-card .product-item-image-wrapper {
  margin-bottom: 28px;
}

#slider_bl_new .slider-wrapper .product-item-image-wrapper {
  width: 256px;
  height: 283px;
  padding: 0;
}

#slider_bl_new .inner {
  width: 500%;
  line-height: 0;
}

#slider_bl_new article {
  width: 20%;
  float: left;
  position: relative;
}

#slider_bl_new .slider-prev-next-control {
  height: 50px;
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

#slider_bl_new .slider-prev-next-control label {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.7;
}

#slider_bl_new .slider-prev-next-control label:hover {
  opacity: 1;
}

#slider_bl_new .slider-dot-control {
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
}

#slider_bl_new .slider-dot-control label {
  cursor: pointer;
  border-radius: 5px;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #bbb;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

#slider_bl_new .info {
  position: absolute;
  font-style: italic;
  line-height: 20px;
  opacity: 0;
  color: #000;
  text-align: left;
  -webkit-transition: all 1s ease-out 0.6s;
  -moz-transition: all 1s ease-out 0.6s;
  transition: all 1s ease-out 0.6s;
}

#slider_bl_new .info h3 {
  color: #fcfff4;
  margin: 0 0 5px;
  font-weight: 400;
  font-size: 1.5em;
  font-style: normal;
}

#slider_bl_new .info.top-left {
  top: 30px;
  left: 30px;
}

#slider_bl_new .info.top-right {
  top: 30px;
  right: 30px;
}

#slider_bl_new .info.bottom-left {
  bottom: 30px;
  left: 30px;
}

#slider_bl_new .info.bottom-right {
  bottom: 30px;
  right: 30px;
}

#slider_bl_new .slider-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

#slider_bl_new .slider-wrapper .inner {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

label.new-label1,
label.new-label2 {
  position: absolute;
  top: 115px;
}

label.new-label2 {
  right: 0;
}

#slider_bl_new #new-slide1:checked~label.new-label2,
#slider_bl_new #new-slide2:checked~.slider-prev-next-control label:nth-child(3),
#slider_bl_new #slide3:checked~.slider-prev-next-control label:nth-child(4),
#slider_bl_new #slide4:checked~.slider-prev-next-control label:nth-child(5),
#slider_bl_new #slide5:checked~.slider-prev-next-control label:nth-child(1) {
  display: block;
  float: right;
  margin-right: 5px;
  background-image: url(/local/templates/IZAR/images/arrow-right-black.webp);
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
}

#slider_bl_new #new-slide1:checked~.slider-prev-next-control label:nth-child(5),
#slider_bl_new #new-slide2:checked~label.new-label1,
#slider_bl_new #slide3:checked~.slider-prev-next-control label:nth-child(2),
#slider_bl_new #slide4:checked~.slider-prev-next-control label:nth-child(3),
#slider_bl_new #slide5:checked~.slider-prev-next-control label:nth-child(4) {
  display: block;
  float: left;
  margin-left: 5px;
  background-image: url(/local/templates/IZAR/images/arrow-left-black.webp);
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
  position: absolute;
  left: 0;
}

#slider_bl_new #new-slide1:checked~.slider-dot-control label:nth-child(1),
#slider_bl_new #new-slide2:checked~.slider-dot-control label:nth-child(2),
#slider_bl_new #slide3:checked~.slider-dot-control label:nth-child(3),
#slider_bl_new #slide4:checked~.slider-dot-control label:nth-child(4),
#slider_bl_new #slide5:checked~.slider-dot-control label:nth-child(5) {
  background: #333;
}

#slider_bl_new #new-slide1:checked~.slider-wrapper article:nth-child(1) .info,
#slider_bl_new #new-slide2:checked~.slider-wrapper article:nth-child(2) .info,
#slider_bl_new #slide3:checked~.slider-wrapper article:nth-child(3) .info,
#slider_bl_new #slide4:checked~.slider-wrapper article:nth-child(4) .info,
#slider_bl_new #slide5:checked~.slider-wrapper article:nth-child(5) .info {
  opacity: 1;
}

#slider_bl_new #new-slide1:checked~.slider-wrapper .inner {
  margin-left: 0;
}

#slider_bl_new #new-slide2:checked~.slider-wrapper .inner {
  margin-left: -100%;
}

#slider_bl_new #slide3:checked~.slider-wrapper .inner {
  margin-left: -200%;
}

#slider_bl_new #slide4:checked~.slider-wrapper .inner {
  margin-left: -300%;
}

#slider_bl_new #slide5:checked~.slider-wrapper .inner {
  margin-left: -400%;
}

@media only screen and (max-width: 850px) and (min-width: 450px) {
  #slider_bl_new .slider-wrapper {
    border-radius: 0;
  }
}

@media only screen and (max-width: 450px) {
  #slider_bl_new .slider-wrapper {
    border-radius: 0;
  }

  #slider_bl_new .slider-wrapper .info {
    opacity: 0;
  }
}

@media only screen and (min-width: 850px) {
  #slider_bl_new body {
    padding: 0 80px;
  }
}

#zodiac-slider_bl input {
  display: none;
}

#zodiac-slider_bl .wrapper {
  max-width: 100%;
  margin: 1em auto 0 auto;
  position: relative;
}

#zodiac-slider_bl .inner {
  width: 500%;
  line-height: 0;
}

#zodiac-slider_bl article {
  width: 159px;
  float: left;
  position: relative;
  display: flex;
  justify-content: flex-start;
  margin-right: 48px;
  flex-wrap: wrap;
  height: 209px;
}

#zodiac-slider_bl article:nth-child(6) {
  margin-right: 0;
}

#zodiac-slider_bl article img {
  width: 159px;
  height: 159px;
}

#zodiac-slider_bl article span,
#zodiac-slider_bl article a {
  color: var(--black, #000);
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
  width: 100%;
  text-decoration: none;
  transform: scale(1);
  transition: transform 0.25s;
  display: block;
}

#zodiac-slider_bl article a:hover {
  transform: scale(1.05);
  transition: transform 0.25s;
}

#zodiac-slider_bl article h4 {
  margin: 0;
}

#zodiac-slider_bl .slider-prev-next-control {
  height: 50px;
  position: absolute;
  top: -138px;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: flex;
  padding-top: 8px;
  justify-content: flex-end;
}

#zodiac-slider_bl .slider-prev-next-control label {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.7;
}

#zodiac-slider_bl .slider-prev-next-control label:hover {
  opacity: 1;
}

#zodiac-slider_bl .slider-dot-control {
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
}

#zodiac-slider_bl .slider-dot-control label {
  cursor: pointer;
  border-radius: 5px;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #bbb;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

#zodiac-slider_bl .info {
  position: absolute;
  font-style: italic;
  line-height: 20px;
  opacity: 0;
  color: #000;
  text-align: left;
  -webkit-transition: all 1s ease-out 0.6s;
  -moz-transition: all 1s ease-out 0.6s;
  transition: all 1s ease-out 0.6s;
}

#zodiac-slider_bl .info h3 {
  color: #fcfff4;
  margin: 0 0 5px;
  font-weight: 400;
  font-size: 1.5em;
  font-style: normal;
}

#zodiac-slider_bl .info.top-left {
  top: 30px;
  left: 30px;
}

#zodiac-slider_bl .info.top-right {
  top: 30px;
  right: 30px;
}

#zodiac-slider_bl .info.bottom-left {
  bottom: 30px;
  left: 30px;
}

#zodiac-slider_bl .info.bottom-right {
  bottom: 30px;
  right: 30px;
}

#zodiac-slider_bl .slider-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

#zodiac-slider_bl .slider-wrapper .inner {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

#zodiac-slider_bl #zodiac-slide1:checked~.slider-prev-next-control label:nth-child(2),
#zodiac-slider_bl #zodiac-slide2:checked~.slider-prev-next-control label:nth-child(3),
#zodiac-slider_bl #slide3:checked~.slider-prev-next-control label:nth-child(4),
#zodiac-slider_bl #slide4:checked~.slider-prev-next-control label:nth-child(5),
#zodiac-slider_bl #slide5:checked~.slider-prev-next-control label:nth-child(1) {
  display: block;
  float: right;
  right: 15px;
  background-image: url(/local/templates/IZAR/images/arrow-right-black.webp);
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
  position: absolute;
  opacity: 1;
}

#zodiac-slider_bl #zodiac-slide1:checked~.slider-prev-next-control label:nth-child(5),
#zodiac-slider_bl #zodiac-slide2:checked~.slider-prev-next-control label:nth-child(1),
#zodiac-slider_bl #slide3:checked~.slider-prev-next-control label:nth-child(2),
#zodiac-slider_bl #slide4:checked~.slider-prev-next-control label:nth-child(3),
#zodiac-slider_bl #slide5:checked~.slider-prev-next-control label:nth-child(4) {
  display: block;
  float: left;
  right: 46px;
  background-image: url(/local/templates/IZAR/images/arrow-left-black.webp);
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
  position: absolute;
  opacity: 1;
}

#zodiac-slider_bl .slider-prev-next-control label:nth-child(1) {
  background-image: url(/local/templates/IZAR/images/arrow-left-black.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
  right: 46px;
  position: absolute;
  width: 32px;
  height: 32px;
  opacity: 0.3;
}

#zodiac-slider_bl .slider-prev-next-control label:nth-child(2) {
  background-image: url(/local/templates/IZAR/images/arrow-right-black.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
  right: 15px;
  width: 32px;
  height: 32px;
  position: absolute;
  opacity: 0.3;
}

#zodiac-slider_bl #zodiac-slide1:checked~.slider-dot-control label:nth-child(1),
#zodiac-slider_bl #zodiac-slide2:checked~.slider-dot-control label:nth-child(2),
#zodiac-slider_bl #slide3:checked~.slider-dot-control label:nth-child(3),
#zodiac-slider_bl #slide4:checked~.slider-dot-control label:nth-child(4),
#zodiac-slider_bl #slide5:checked~.slider-dot-control label:nth-child(5) {
  background: #333;
}

#zodiac-slider_bl #zodiac-slide1:checked~.slider-wrapper article:nth-child(1) .info,
#zodiac-slider_bl #zodiac-slide2:checked~.slider-wrapper article:nth-child(2) .info,
#zodiac-slider_bl #slide3:checked~.slider-wrapper article:nth-child(3) .info,
#zodiac-slider_bl #slide4:checked~.slider-wrapper article:nth-child(4) .info,
#zodiac-slider_bl #slide5:checked~.slider-wrapper article:nth-child(5) .info {
  opacity: 1;
}

#zodiac-slider_bl #zodiac-slide1:checked~.slider-wrapper .inner {
  margin-left: 0;
}

#zodiac-slider_bl #zodiac-slide2:checked~.slider-wrapper .inner {
  margin-left: -100%;
}

#zodiac-slider_bl #slide3:checked~.slider-wrapper .inner {
  margin-left: -200%;
}

#zodiac-slider_bl #slide4:checked~.slider-wrapper .inner {
  margin-left: -300%;
}

#zodiac-slider_bl #slide5:checked~.slider-wrapper .inner {
  margin-left: -400%;
}

@media only screen and (max-width: 850px) and (min-width: 450px) {
  #zodiac-slider_bl .slider-wrapper {
    border-radius: 0;
  }
}

@media only screen and (max-width: 450px) {
  #zodiac-slider_bl .slider-wrapper {
    border-radius: 0;
  }

  #zodiac-slider_bl .slider-wrapper .info {
    opacity: 0;
  }
}

@media only screen and (min-width: 850px) {
  #zodiac-slider_bl body {
    padding: 0 80px;
  }
}

.mob,
.small-menu__btn,
.small-menu__checkbox {
  display: none;
}

.collections-page h1 {
  text-align: center;
}

.collections-page .collections-group-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.collections-page .collections-group-wrap div {
  width: 565px;
  text-align: center;
}

.collections-page .collections-group-wrap div img {
  width: 100%;
}

.collections-page .collections-group-wrap div span {
  color: var(--black, #000);
  font-family: Inter;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin: 30px auto 65px auto;
  display: block;
}

.collections-page .collections-group-wrap div a {
  text-decoration: none;
}

.collections-group-wrap#izar-dream div:nth-child(3) {
  width: 100%;
}

.berries {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 130px;
}

.berries .stones {
  display: flex;
  flex-wrap: wrap;
}

.gem-bar {
  text-align: center;
}

.gem-bar h2.indx {
  margin-top: 65px;
  text-align: center;
  margin-bottom: 19px;
  font-size: 50px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: -4.5px;
}

.gem-bar h2.indx span {
  font-style: italic;
  font-weight: 600;
  margin-right: 10px;
  font-size: 50px;
}

.gem-bar span.undr-h2 {
  color: var(--black, #000);
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-transform: uppercase;
  width: 100%;
  display: block;
  margin-bottom: 18px;
}

.gem-bar a {
  color: var(--black, #000);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  border-block-end: 1px solid #000;
  padding-bottom: 6px;
  text-decoration: none;
}

h2.indx {
  letter-spacing: -4.5px;
}

h2.indx span {
  font-weight: 400;
  font-style: italic;
}

h2.indx.goroskop {
  font-weight: 600;
  text-transform: uppercase;
  font-style: normal;
  line-height: 72px;
  margin-bottom: 10px;
  margin-top: 100px;
}

h2.indx.goroskop span {
  font-style: italic;
  font-weight: 600;
  margin-right: 12px;
}

h2.indx.goroskop+h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: none;
  width: 100%;
  margin-bottom: 65px;
  margin-top: 0;
}

.slider#slider-zodiac-mob {
  display: none;
}

.cat.ix h2 {
  color: var(--black, #000);
  font-family: Inter;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 19px;
  line-height: 55px;
  letter-spacing: -0.09rem;
}

.cat h2.indx {
  margin-bottom: 19px;
}

.cat .bx_catalog_line_ul li {
  position: relative;
}

.cat .bx_catalog_line_ul li:nth-child(6),
.hidden {
  display: none;
}

.cat a.bx_catalog_line_img {
  width: 242px;
  height: 243px;
  background-size: auto 100%;
  display: block;
  margin: auto;
  transition: 0.4s;
  box-shadow: 0 0 0 rgba(86, 86, 86, 0.2705882353);
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
}

.cat .bx_catalog_line_title a {
  text-decoration: none;
  color: var(--black, #000);
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
  margin: auto;
  display: block;
}

.cat .bx_catalog_line_ul li {
  list-style: none;
}

.cat .bx_catalog_line_ul {
  display: flex;
  justify-content: space-between;
}

.cat .bx_catalog_line_title a span {
  color: var(--black, #000);
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
  display: block;
}

.cat h2.bx_catalog_line_title {
  margin-top: 27px;
}

.main-ui-pagination {
  margin-top: 36px;
}

.bottom-block-subscribe {
  margin-top: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 138px;
}

.bottom-block-subscribe .chkbx {
  color: var(--black, #000);
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-top: 20px;
}

.bottom-block-subscribe .chkbx input[type=checkbox] {
  width: 15px;
  height: 15px;
  margin: 0 11px 0 0;
  background-color: transparent;
  appearance: none;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: baseline;
  border: solid 1px #000;
  box-sizing: border-box;
}

.bottom-block-subscribe .chkbx input[type=checkbox]:checked::before {
  content: "✔";
  display: block;
  text-align: center;
  font-size: 12px;
  line-height: 15px;
  color: #000;
  width: 14px;
  height: 14px;
  margin: auto;
}

.bottom-block-subscribe img {
  width: 636px;
  height: 415px;
  flex-shrink: 0;
}

.bottom-block-subscribe .half:nth-child(1) {
  width: 636px;
  background-image: url("/local/templates/IZAR/images/subscribe-boxes.webp");
  height: 415px;
}

.bottom-block-subscribe .half:nth-child(2) {
  width: auto;
}

.bottom-block-subscribe span {
  display: block;
  margin-bottom: 7px;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
}

.bottom-block-subscribe input[type=text],
.bottom-block-subscribe .bx-subscribe .bx-input-group input.bx-form-control {
  width: 285px;
  border-top-width: 0;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom: solid 1px #000;
  padding-bottom: 6px;
  color: #767676;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.bottom-block-subscribe input[type=submit],
.bottom-block-subscribe .btn-subscribe {
  width: 128px;
  height: 34px;
  flex-shrink: 0;
  border: 1px solid #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 17px;
  text-transform: uppercase;
  padding: 8px 10px;
  text-align: center;
  margin-left: 42.5px;
  background: var(--violet, #764AF1);
  color: #fff;
}

.bottom-block-subscribe .btn-subscribe span {
  font-size: 14px;
}

.bottom-block-subscribe .bx_subscribe_submit_container,
.bottom-block-subscribe .bx-input-group {
  display: inline-flex;
}

.bottom-block-subscribe form {
  display: flex;
  flex-wrap: wrap;
}

.bottom-block-subscribe .bx-input-group input:nth-child(2),
.bottom-block-subscribe .bx-input-group input:nth-child(3),
.bottom-block-subscribe .bx_subscribe_checkbox_container.bx-sender-subscribe-agreement,
form#asd_subscribe_form input:nth-child(1) {
  display: none;
}

form#asd_subscribe_form input {
  width: 285px;
  border-top-width: 0;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom: solid 1px #000;
  padding-bottom: 6px;
  color: #767676;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

form#asd_subscribe_form input[type=submit] {
  width: 128px;
  height: 34px;
  flex-shrink: 0;
  border: 1px solid #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 17px;
  text-transform: uppercase;
  padding: 8px 10px;
  text-align: center;
  margin-left: 42.5px;
  background: var(--violet, #764AF1);
  color: #fff;
}


.popup-window#sender_subscribe_component {
  position: fixed !important;
  top: 40% !important;
}

.popup-window-overlay {
  width: 100% !important;
  height: 100% !important;
  position: fixed;
  bottom: 0;
  left: 0;
}

span.subtitle {
  color: var(--black, #000);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 65px;
  display: block;
  width: 370px;
}

.cat.ix h2.indx.h44+span.subtitle {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 507px;
}

.bottom-block-subscribe span:nth-child(2) {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: none;
  margin-bottom: 30px;
}

.bottom-cats-wrap {
  margin-top: 134px;
}

.bottom-cats-wrap p,
.bottom-cats-wrap div,
.bottom-cats-wrap h1,
.bottom-cats-wrap h2,
.bottom-cats-wrap h3 {
  margin: 0;
  padding: 0;
}

.bottom-cats-wrap h2 {
  color: var(--black, #000);
  font-family: Inter;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 19px;
  line-height: 55px;
  letter-spacing: calc(50px * -0.02);
}

.bottom-cats-wrap .bx_catalog_line_ul li:nth-child(6) {
  display: none;
}

.bottom-cats-wrap .bx_catalog_line .bx_catalog_line_ul {
  display: flex;
  justify-content: space-between;
  padding: 0;
  list-style: none;
}

.bottom-cats-wrap a.bx_catalog_line_img {
  width: 200px;
  height: 200px;
  background-size: auto 100%;
  display: block;
  margin: auto;
  transition: 0.4s;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
}

.bottom-cats-wrap h2.bx_catalog_line_title {
  font-size: 16px;
  margin-top: 27px;
}

.bottom-cats-wrap h2.bx_catalog_line_title a {
  color: var(--black, #000);
  text-align: center;
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
}

.footer-line hr {
  width: 1440px;
  height: 8px;
  background-color: var(--fiolet);
  box-sizing: border-box;
  margin: 135px auto 0;
}

footer {
  padding: 31px 121px;
  width: 1440px;
  box-sizing: border-box;
  display: flex;
  margin: auto;
}

footer p,
footer div,
footer h1,
footer h2,
footer h3,
footer ul {
  margin: 0;
  padding: 0;
}

footer p,
footer a {
  color: var(--dark-grey);
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0.4px;
  text-decoration: none;
  margin-bottom: 6.96px;
}

footer .cprght {
  color: var(--dark-grey, #202020);
  margin-top: 38px;
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0.4px;
}

footer .nav-item {
  margin-bottom: 6.96px;
  line-height: 20px;
}

footer .quart:nth-child(1) p:nth-child(2) {
  font-size: 17px;
}

footer ul.nav {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0 30px;
}

footer .soc-icons svg {
  fill: var(--fiolet);
}

footer .soc-icons svg:nth-child(2) {
  position: relative;
  bottom: 2px;
}

.bx-breadcrumb {
  color: var(--grey);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.bx-breadcrumb a {
  color: var(--grey);
  text-decoration: none;
}

.bx-breadcrumb .bx-breadcrumb-item {
  margin: 0;
}

.bx-breadcrumb .slash {
  margin: 0 0 0 5px;
}

/* ///////////////////////// Фильтр в категории */

.jew-cat-page .my-filter#slide-block .my-filter-head,
.cat-noimage .my-filter#slide-block .my-filter-head {
  color: #fff;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  width: 100%;
  text-align: center;
  padding-top: 12px;
  background: var(--fiolet);
  height: 30px;
}

.jew-cat-page .my-filter .my-filter-head span,
.cat-noimage .my-filter .my-filter-head span {
  border-bottom: dotted 1px #fff;
}

.jew-cat-page .my-filter .my-filter-heads,
.cat-noimage .my-filter .my-filter-heads {
  display: flex;
  justify-content: flex-start;
  width: 798px;
}

.jew-cat-page .my-filter .my-filter-link,
.cat-noimage .my-filter .my-filter-link {
  color: #000000;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  margin-right: 30px;
}

.jew-cat-page .my-filter .my-filter-link label,
.cat-noimage .my-filter .my-filter-link label {
  color: #313131;
}



/* END ///////////////////////// Фильтр в категории */

/* ///////////////////////// Страница фильтрации */
.cards-wrap.filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cards-wrap.filter .product-item {
  display: flex;
  margin-top: 23px;
  justify-content: flex-start;
  width: 242px;
  flex-wrap: wrap;
}

.cards-wrap.filter a.product-item-image {
  width: 242px;
  height: 243px;
  background-size: auto 100%;
  display: block;
  margin: auto;
  transition: 0.4s;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
}

.cards-wrap.filter a {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 28px;
  height: 42px;
}

.cards-wrap.filter .product-item-price-current {
  color: #3f3f3f;
  white-space: nowrap;
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  margin: 5px 0 10px;
}

.product-item-price-old {
  display: block;
  color: #a5a5a5;
  text-decoration: line-through;
  white-space: nowrap;
  font-size: 12px;
}

.cards-wrap.filter .product-item-sostav {
  margin-top: 10px;
  color: #000;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  height: 88px;
  width: 100%;
}

/* END ///////////////////////// Страница фильтрации */
.stone.my-filter .my-filter-head {
  color: var(--grey);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.big .stone.my-filter .my-filter-heads {
  display: flex;
  justify-content: flex-start;
  width: auto;
  margin-left: 7px;
}

.jew-cat-page .stone.my-filter {
  display: flex;
  margin-top: 23px;
  justify-content: center;
  width: 100%;
  height: 20px;
  flex-shrink: 0;
}

.stone.my-filter .my-filter-link {
  color: #000;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  border-bottom: 1px solid #000;
}

.stone.my-filter+.ajax-cat .jew-cat-page,
.stone.my-filter+.ajax-cat .jew-cat-page h1 {
  margin: 0;
}

.stones-all-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.stones-all-wrap a span {
  display: block;
}

.stones-all-wrap a {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 35px;
  color: #000;
  text-decoration: none;
}

.stones-all-wrap h1 {
  margin-bottom: 65px;
}

img.loading-gif {
  display: block;
  margin: auto;
  width: 100px;
  height: 100px;
}

.btn.btn-default.btn-lg.center-block {
  background-color: transparent;
  color: #444444;
  width: 100%;
  text-align: center;
}

.jew-cat-page {
  margin-top: 58px;
}

.jew-cat-page h1 {
  text-align: center;
}

.jew-cat-page .bx-section-desc {
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  margin: 20px auto 0 auto;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  width: 807px;
}

.jew-cat-page .cat-img {
  margin-bottom: 100px;
}

.jew-cat-page .cat-img img {
  width: 1192px;
  height: auto;
  flex-shrink: 0;
  margin-top: 65px;
}


.jew-cat-page .catalog-section .product-item-row {
  margin-top: 55px;
}

.jew-cat-page .catalog-section .product-item-row:nth-child(1) {
  margin-top: 0;
}

.cat-page-0 h1.pagetitle {
  text-align: center;
}

.jew-cat-page .cards-wrap,
.cat-page-0 .cards-wrap {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 36px;
}

.row.cards-wrap .card-242,
.row.cards-wrap .card-25-prcnt {
  margin-right: calc((100% - (242px * 4)) / 3);
}

.jew-cat-page .product-item-image-wrapper,
.cat-page-0 .product-item-image-wrapper {
  padding: 0;
  width: 242px;
  height: 242px;
  margin: auto;
}

.jew-cat-page .product-item-image-wrapper video,
.cards-wrap .product-item-video-alternative video {
  width: 232px;
  height: 232px;
}

.cat-page-0 .card-242 {
  margin-right: calc((100% - (242px * 4)) / 3);
}

.cat-page-0 .row.cards-wrap .card-242:nth-child(4n) {
  margin-right: 0;
}

.cards-wrap.filter.ajax-cat {
  justify-content: flex-start;
  width: 100%;
}

.cards-wrap.filter.ajax-cat .product-item {
  margin-right: calc((100% - (242px * 4)) / 3);
}

.cards-wrap.filter.ajax-cat .product-item:nth-child(4n) {
  margin-right: 0;
}

.jew-cat-page .catalog-section {
  margin-top: 28px;
}

.jew-cat-page .favor-check-block,
.cat-page-0 .favor-check-block {
  text-align: center;
}

.jew-cat-page .favor-check-block .heart,
.cat-page-0 .favor-check-block .heart {
  margin-top: 17px;
}

.jew-cat-page .product-item-container,
.cat-page-0 .product-item-container {
  width: 242px;
}

.jew-cat-page .product-item-container .product-item-title,
.cat-page-0 .product-item-container .product-item-title {
  margin-top: 28px;
  height: 42px;
}

.jew-cat-page .product-item-container .product-item-title a,
.cat-page-0 .product-item-container .product-item-title a {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
}

.jew-cat-page .product-item-container .product-item-sostav,
.cat-page-0 .product-item-container .product-item-sostav {
  margin-top: 10px;
  color: #000;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  height: 88px;
}

.jew-cat-page.cat-noimage h1,
.cat-page-0 h1 {
  margin-bottom: 75px;
}

.cat-page-0 .product-item-list-col-4 .col-xs-6.col-md-3 {
  width: 242px;
  box-sizing: border-box;
}

.cat-page-0.product-item-list-col-4 .col-xs-12.product-item-small-card .row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 55px;
}

.contacts.page {
  text-align: center;
}


.contacts.page h2 {
  color: var(--black, #000);
  text-align: center;
  margin-top: 71px;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-transform: uppercase;
}

.contacts.page p,
.contacts.page a#email-placeholder {
  color: var(--black, #000);
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-transform: uppercase;
}

.contacts.page a#email-placeholder {
  margin-top: 10px;
  display: block;
}

.contacts.page .phone-email {
  display: block;
  margin: auto;
  color: var(--black, #000);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-transform: uppercase;
}

.contacts.page .phone-email span {
  position: relative;
  top: 7px;
}

.contacts.page .phone-email svg {
  margin-top: 14px;
}

.contacts.page .partners img:nth-child(1) {
  width: 198px;
  height: 77px;
  flex-shrink: 0;
}

.contacts.page .partners img:nth-child(2) {
  width: 133px;
  height: 77px;
  flex-shrink: 0;
}

a.re {
  display: block;
  text-decoration: none;
  color: #d1d1d1;
  text-transform: none;
  margin-top: 10px;
}

a.re:hover {
  color: #000000;
}

div.news-list {
  margin-top: 50px;
}

div.news-list .news-item-wrap {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}

div.news-list .news-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  margin-bottom: 65px;
  width: 50%;
}

div.news-list .news-item a:first-child {
  width: 556px;
  height: 272px;
  overflow: hidden;
}

div.news-list img.preview_picture:hover {
  transform: scale(0.7);
  transition: transform 5s;
}

div.news-list img.preview_picture {
  transform: scale(0.6);
  transition: transform 5s;
  float: none;
  width: 100%;
  margin: 0;
  height: auto;
  position: relative;
}

.simple-page.blog h1 {
  margin: 0 0 30px;
  text-align: left;

}

.simple-page.blog .blog-line {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 71px;
  min-height: 452px;
}


.simple-page.blog .blog-line:nth-child(even) div:nth-child(2) {
  width: 490px;
}

.simple-page.blog .blog-line:nth-child(odd) div:nth-child(1) {
  width: 490px;
}



div.news-detail .news-detail-img-wrap {
  height: 452px;
  width: 658px;
  background-position: center;
  margin-bottom: 65px;
  background-repeat: no-repeat;
  float: left;
  margin: 0 50px 71px 0;
  background-size: cover;
}

img.news-detail-img-right {
  object-fit: cover;
  margin: 0 0 71px 48px;
  width: 658px;
  height: 452px;
  float: right;
}

img.news-detail-img-left {
  object-fit: cover;
  margin: 0 48px 71px 0;
  width: 658px;
  height: 452px;
  float: left;
}

div.news-list h1 {
  text-align: center;
}

.news-detail h2 {

  color: var(--black, #000);
  font-family: Inter;
  font-size: 50px;
  font-style: italic;
  font-weight: 600;
  line-height: 52px;
  letter-spacing: -0.09rem;
  text-align: left;
  text-transform: uppercase;

}

div.news-detail p {
  padding-right: 15px;
}

div.news-list a.blog-zag-link {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-transform: uppercase;
  display: block;
  margin-top: 28px;
  text-decoration: none;
}

div.news-list a.more {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: solid 1px #000;
}

a.btn-news-back {
  width: 141px;
  height: 42px;
  font-family: Inter;
  font-size: 16px;
  font-weight: 600;
  line-height: 71px;
  text-align: left;
  display: flex;
  border: solid 1px #949494;
  color: #949494;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  margin: 130px auto 0;
}

.news-detail .slider__item img {
  max-width: 60%;
  display: block;
  margin: auto;
  max-height: 70vh;
}

.news-detail .slider .slider__control {
  opacity: 0.8;
  background-color: #FFF;
}

.news-detail .slider {
  margin: 65px auto;
}

.slider__control[data-slide=next]::before {
  background-image: url(/local/templates/IZAR/images/arrow-right-black.webp);
  background-repeat: no-repeat;
  background-size: 32px;
  background-position: center;
}

.slider__control[data-slide=prev]::before {
  background-image: url(/local/templates/IZAR/images/arrow-left-black.webp);
  background-repeat: no-repeat;
  background-size: 32px;
  background-position: center;
}

.ac-container {
  max-width: 400px;
}

.ac-container label {
  position: relative;
  z-index: 10;
  display: block;
  cursor: pointer;
  color: var(--black, #000);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}

.ac-container label span {
  position: relative;
  top: 5px;
  margin-left: 2px;
}

.ac-container label span.arrow-up {
  display: none;
}

.ac-container input:checked+label~label .arrow-up {
  display: inline-block;
}

.ac-container {
  width: 100%;
  margin: 10px auto 30px auto;
  text-align: left;
}

.ac-container label:hover {
  background: #fff;
}

.ac-container input:checked+label,
.ac-container input:checked+label:hover {
  background: #f1f2f3;
  color: #666;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 1px rgba(155, 155, 155, 0.3), 0 2px 2px rgba(0, 0, 0, 0.1);
  height: 30px;
  line-height: 21px;
  font-size: 13px;
}

.ac-container label:hover:after,
.ac-container input:checked+label:hover:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  right: 13px;
  top: 7px;
  background: transparent url(../images/arrow_down.png) no-repeat center center;
}

.ac-container input:checked+label:hover:after {
  background-image: url(../images/arrow_up.png);
}

.ac-container#ac-sec-2 input:checked~.ac-container#ac-sec-2 label .arrow-up {
  display: inline-block;
}

.ac-container input {
  display: none;
}

.ac-container article {
  background: rgba(255, 255, 255, 0.5);
  margin-top: -1px;
  overflow: hidden;
  height: 0;
  position: relative;
  z-index: 10;
  -webkit-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
  -moz-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
  -o-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
  -ms-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
  transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
}

.ac-container article p {
  font-style: normal;
  color: #777;
  line-height: 23px;
  font-size: 10px;
  padding: 20px;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
  font: normal normal 12px "Open Sans";
}

.ac-container input:checked~article {
  -webkit-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
  -moz-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
  -o-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
  -ms-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
  transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
}

.ac-container input:checked~article.ac-small {
  height: 88px;
  padding-top: 8px;
}

.ac-container#ac-sec-3 input:checked~article.ac-small {
  height: 170px;
}

.ac-container input:checked~article.ac-medium {
  height: 180px;
}

.ac-container input:checked~article.ac-large {
  height: 230px;
}

.product-item-info-container a {
  text-decoration: none;
  color: #000;
}

.item-element-wrap .bx-breadcrumb {
  margin-top: 56px;
  margin-bottom: 36px;
  width: 100%;
}

.item-element-wrap #bx_incl_area_5_1_1_1 {
  width: 100%;
}

.item-element-wrap .product-item-scu-item-text-container.selected .product-item-scu-item-text-block {
  outline-color: #000;
}

.item-element-wrap .product-item-scu-item-text-container {
  padding: 0;
  margin-right: 31px;
  margin-bottom: 8px;
}

.item-element-wrap .product-item-scu-item-list {
  padding-top: 3px;
  padding-left: 4px;
}

.item-element-wrap .product-item-scu-item-text-container .product-item-scu-item-text-block {
  position: relative;
  padding: 0;
  outline-color: #fff;
  cursor: pointer;
}

.item-element-wrap .product-item-scu-item-text,
.variation-button {
  color: var(--grey);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  outline-color: transparent;
  padding: 0 5px;
  background: transparent;
  border: transparent;
}

.product-item-scu-item-text-container.selected .product-item-scu-item-text,
.variation-button.active {
  color: #000;

}

.variation-button.active {
  border: solid 1px #000;
}

.item-element-wrap .img-prop-price-btn {
  display: inline-flex;
}

.item-element-wrap .product-item-detail-slider-block {
  width: 613px;
  height: 613px;
  display: inline-flex;
}

.item-element-wrap .product-item-detail-slider-container {
  display: flex;
  flex-direction: row-reverse;
}

.item-element-wrap .product-item-detail-slider-controls-block {
  padding: 0;
  display: inline-flex;
  flex-wrap: wrap;
  width: 110px;
  margin-right: 30px;
  align-content: flex-start;
}

.item-element-wrap .product-item-detail-slider-right,
.item-element-wrap .product-item-detail-slider-left {
  display: none;
}

.simple-page .item-element-wrap h1,
.item-element-wrap h1 {
  color: var(--black, #000);
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: normal;
  text-transform: uppercase;
}

.item-element-wrap .art-nali4-wrap {
  display: flex;
}

.item-element-wrap .art-nali4-wrap .art,
.item-element-wrap .art-nali4-wrap .nali4 {
  width: 50%;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}

.item-element-wrap .art-nali4-wrap .nali4 .havenot {
  position: relative;
  top: -1px;
}

.item-element-wrap .art-nali4-wrap .art {
  color: var(--grey, #767676);
}

.item-element-wrap .art-nali4-wrap .wearehave {
  color: var(--fiolet);
}

.item-element-wrap .art-nali4-wrap .havenot {
  color: #FF4738;
}

.item-element-wrap {
  display: flex;
  flex-wrap: wrap;
}

.item-element-wrap .h1-art-price-btn {
  width: 339px;
  margin-left: 78px;
  display: inline-flex;
}

.item-element-wrap .product-item-detail-info-section {
  padding: 0;
}

.item-element-wrap .product-item-detail-slider-controls-image {
  width: 110px;
  height: 110px;
  margin-bottom: 15px;
}

.item-element-wrap .product-item-detail-slider-controls-image img {
  max-width: 110px;
  max-height: 110px;
}

.item-element-wrap .product-item-detail-tab-content {
  padding: 0;
  line-height: 26px;
}

.item-element-wrap .product-item-detail-price-current {
  color: #202020;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-top: 30px;
  margin-bottom: 28px;
}

.item-element-wrap .product-item-detail-pay-block {
  border: none;
  padding: 0;
}

.item-element-wrap .btn.product-item-detail-buy-button,
.anketa-form form input[type=submit],
.add-to-cart {
  width: 315px;
  height: 44px;
  background: var(--violet, #764AF1);
  color: var(--white, #FFF);
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
  text-decoration: none;
  padding-top: 11px;
  box-sizing: border-box;
  margin: 0;
  border: solid 1px #000;
}

.modal.modal-rassrochka .add-to-cart {
  padding-top: unset;
  margin: auto;
}

.item-element-wrap .whatsapp {
  margin: 32.5px 0 0 0;
  display: flex;
}

.whatsapp.margin-0 {
  margin: 0;
}

.item-element-wrap .whatsapp div:nth-child(1) {
  width: 52px;
}

.item-element-wrap .whatsapp span {
  display: block;
}

.item-element-wrap .whatsapp a {
  text-decoration: none;
}

.item-element-wrap .whatsapp span#whpp-blck {
  color: var(--black, #000);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.item-element-wrap .whatsapp span#whpp-grey {
  color: var(--grey, #767676);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.item-element-wrap .fav-near-btn {
  border: 1px solid var(--black, #000);
  width: 44px;
  height: 44px;
  margin-left: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.product-item-detail-slider-video video {
  width: 753px;
}

.product-item-detail-slider-controls-video video {
  width: 110px;
}

div.bx-blue .btn.btn-default {
  background-color: var(--fiolet);
  padding: 10px;
  text-decoration: none;
  cursor: pointer;
}

.product-item-detail-info-container-title {
  font-weight: bold;
}

.product-item-scu-container {
  margin-bottom: 30px;
}

.links {
  margin-top: 30px;
}

.links a {
  color: #202020;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.4px;
  text-decoration: none;
}

.links svg {
  position: relative;
  float: right;
  top: 2px;
}

.links li {
  margin-bottom: 10px;
}

.links ul {
  margin: 0;
  padding: 0;
  text-align: left;
}

.catalog-block-header {
  border: none;
  margin: 0;
  padding: 0;
}

.catalog-block-header h2 {
  color: var(--black, #000);
  font-family: Inter;
  font-size: 44px;
  line-height: 110%;
  font-style: italic;
  font-weight: 400;
  text-transform: lowercase;
  margin: 130px 0 65px 0;
}

.catalog-block-header h2 span {
  font-style: normal;
  font-weight: 600;
}

a.btn-rassrochka {
  text-decoration: none;
}

a.btn-rassrochka+div {
  margin-top: 8px;
  margin-bottom: 30px;
  color: #767676;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 166.667% */
}

a.btn-rassrochka img {
  width: 15px;
  height: 15px;
  float: right;
  margin-top: 2px;
}

.modal-rassrochka.modal-credit .modal-title {
  line-height: normal;
}

.modal-rassrochka .modal-dialog {
  width: 599px;
  min-height: 403px;
  height: auto;
}

.modal-rassrochka .modal-content {
  padding: 20px;
  height: 100%;
  box-sizing: border-box;
}

.modal-rassrochka .modal-body {
  padding: unset;
  margin-top: 16px;
}

.modal-rassrochka .modal-title {
  font-family: Inter;
  font-size: 24px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 20px;
}

.modal-rassrochka .modal-title+span {
  font-family: Inter;
  font-size: 16px;
  font-weight: 300;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: left;
}

.modal-rassrochka .steps {
  display: flex;
  flex-wrap: wrap;
}

.modal-rassrochka .step {
  font-family: Inter;
  font-size: 14px;
  font-weight: 300;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: left;
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.modal-rassrochka .step div:nth-child(2) {
  margin-left: 10px;
}

.modal-rassrochka .step svg {
  width: 32px;
  height: 32px;
}

.modal-rassrochka .summs {
  width: 100%;
  height: 87px;
  background: #F5F5F5;
  border-radius: 11px;
  display: flex;
  justify-content: space-around;
  margin-top: 25px;
  align-items: center;
}

.modal-rassrochka .summs .summ span {
  display: block;
  text-align: center;
}

.modal-rassrochka .summs .summ span:nth-child(1) {
  font-family: Inter;
  font-size: 14px;
  font-weight: 300;
  line-height: 40px;
  letter-spacing: 0em;
}

.offers-selection {
  padding-top: 20px;
}

.product-variations {
  display: flex;
  justify-content: space-evenly;
  margin: 0 60px 60px;
  font-size: 12px;
}

.modal-rassrochka .buy-btn-blck {
  display: block;
  margin: auto;
  padding: 36px 0 12px;
  width: 240px;
}

.izar-tabs {
  position: relative;
  margin: 2rem 0;
  background: transparent;
  min-height: 110px;
  display: flex;
  justify-content: space-between;
}

.izar-tabs::before,
.izar-tabs::after {
  content: "";
  display: table;
}

.izar-tabs::after {
  clear: both;
}

.izar-tab {
  float: left;
  width: 33%;
  text-align: center;
}

.izar-tab-switch {
  display: none;
}

.izar-tab-label {
  position: relative;
  display: block;
  line-height: 2.75em;
  padding: 0 10px;
  background: transparent;
  color: #cccccc;
  cursor: pointer;
  top: 0;
  transition: all 0.25s;
}

.izar-tab-label:hover {
  top: -0.25rem;
  transition: top 0.25s;
}

.izar-tab-content {
  position: absolute;
  z-index: 1;
  top: 2.75em;
  left: 0;
  padding: 1.618rem;
  background: #fff;
  color: #2c3e50;
  width: 100%;
  opacity: 0;
  transition: all 0.35s;
}

.izar-tab-switch:checked+.izar-tab-label {
  background: #ededed;
  color: #2c3e50;
  border-bottom: 0;
  transition: all 0.35s;
  z-index: 1;
  top: -0.0625rem;
}

.izar-tab-switch:checked+label+.izar-tab-content {
  z-index: 2;
  opacity: 1;
  transition: all 0.35s;
}

.catalog-products-viewed a.product-item-image-wrapper {
  width: 242px;
  height: 243px;
  background-size: auto 100%;
  display: block;
  margin: auto;
  transition: 0.4s;
  box-shadow: 0 0 0 rgba(86, 86, 86, 0.2705882353);
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  padding-top: 0;
}

.catalog-products-viewed video {
  width: 95%;
  margin: auto;
  display: block;
}

.catalog-products-viewed .product-item-image-wrapper a {
  text-decoration: none;
  color: var(--black, #000);
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
  margin: auto;
  display: block;
}

.catalog-products-viewed .favor-check-block {
  text-align: center;
}

.catalog-products-viewed .favor-check-block .heart {
  margin-top: 17px;
}

.catalog-products-viewed .product-item-title {
  margin-top: 28px;
}

.catalog-products-viewed .product-item-title a {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
  white-space: wrap;
}

.catalog-products-viewed .product-item-sostav {
  margin-top: 10px;
  color: #000;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  min-height: 44px;
}

.catalog-products-viewed .izar-view .view-wrap {
  display: flex;
  justify-content: space-between;
}

.catalog-products-viewed .product-item-price-current {
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  font-family: Inter;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  margin-top: 28px;
}

.catalog-top.element h2 {
  color: var(--black, #000);
  font-family: Inter;
  font-size: 44px;
  line-height: 110%;
  font-style: italic;
  font-weight: 400;
  text-transform: lowercase;
  margin: 130px 0 65px 0;
}

.catalog-top.element h2 span {
  font-style: normal;
  font-weight: 600;
}

.catalog-top.element .slider-wrapper article .product-item-small-card .row {
  justify-content: space-between;
}

.catalog-top.element .product-item-title {
  color: var(--black, #000);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
  text-align: center;
}

.block-popup,
.msgok {
  position: fixed;
  bottom: 0;
  right: 0;
  display: none;
  justify-content: center;
  width: 100%;
  padding: 30px;
  box-sizing: border-box;
  background-color: rgb(255, 255, 255);
  width: 623px;
  height: 149px;
  flex-shrink: 0;
  padding: 26px;
  fill: #FFF;
  z-index: 99;
}

.block-popup .cookie-txt2,
.msgok .cookie-txt2 {
  color: var(--black, #000);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  width: 355px;
}

.cookie-txt2 {
  cursor: pointer;
  color: #007bff;
  text-decoration: underline;
}

.cookie-txt2:hover {
  color: #0056b3;
}

.cookie-popup-content {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px;
  z-index: 1002;
  max-width: 500px;
  width: 90%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.cookie-popup-content .close-cookie-popup {
  cursor: pointer;
  color: #007bff;
  text-align: right;
  margin-bottom: 10px;
}

.cookie-popup-content .scrollable-content {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
}

.block-popup .warning-btn-n-span,
.msgok .warning-btn-n-span {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.block-popup .warning__apply_wrap,
.msgok .warning__apply_wrap {
  width: 180px;
}

.block-popup .warning__apply_wrap button,
.msgok .warning__apply_wrap button {
  width: 180px;
  height: 44px;
  flex-shrink: 0;
  background: var(--violet, #764AF1);
  color: var(--white, #FFF);
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  align-items: center;
}

.warning--active {
  display: flex;
  flex-wrap: wrap;
}

.warning__text {
  color: var(--black, #000);
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  display: block;
  width: 100%;
}

.warning__read {
  display: block;
  margin-left: 15px;
}

.overlay {
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.78);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 98;
}

@media (max-width: 768px) {

  .block-popup h3,
  .msgok h3 {
    font-size: 2em;
    margin: 30px 30px 30px 30px;
  }

  .block-popup,
  .msgok {
    max-width: 100%;
    width: 100%;
    bottom: unset;
    height: 300px;
    left: 0;
    top: 25%;
  }

  .podpiska-popup,
  .msgok {
    z-index: 99;
  }
}

.simple-page h1 {
  text-align: center;
  margin: 65px auto;
  line-height: 52px;
}

.simple-page h3 {
  color: var(--black, #000);
  margin: 65px 0 10px 0;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
}

.simple-page .txt-page ul {
  list-style: disc;
  padding: 0 0 0 25px;
}

.simple-page .txt-page ul li {
  margin-bottom: 15px;
}

.simple-page.gifts .flex-wrap {
  margin-top: 65px;
  font-size: 20px;
  line-height: 140%;
}

.simple-page.gifts h1 {
  text-align: left;
  font-style: italic;
  margin-bottom: 25px;
}

.simple-page.gifts h1 span {
  font-style: normal;
  display: block;
}

.simple-page.gifts h2.top {
  color: var(--black, #000);
  margin-top: 130px;
  font-family: Inter;
  font-size: 65px;
  font-style: italic;
  font-weight: 600;
  line-height: 110%;
  text-transform: uppercase;
}

.simple-page.gifts h2.top span {
  color: var(--black, #000);
  font-family: Inter;
  font-size: 65px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
}

body .whatsapp {
  margin: 0;
  display: flex;
  width: 260px;
}

body .whatsapp div:nth-child(1) {
  width: 52px;
}

.simple-page.gifts .whatsapp div:nth-child(2) {
  padding-left: 10px;
}

body .whatsapp a {
  text-decoration: none;
}

body .whatsapp span#whpp-blck {
  color: var(--black, #000);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-transform: none;
  display: block;
}

body .whatsapp span#whpp-grey {
  color: var(--grey, #767676);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  text-transform: none;
}

.simple-page.gifts .whatsapp {
  position: absolute;
  left: 36px;
  top: 50px;
  opacity: 0.5;
}

.simple-page.gifts .whatsapp:hover {
  opacity: 1;
}

.product-item-container .product-item-title a {
  white-space: normal;
}

.simple-page.pages h1 {
  margin-bottom: 25px;
}

div.podz {
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

div.podz+div {
  margin: 130px 0 135px 0;
  align-items: center;
}

div.podz+div div:first-child {
  width: 38%;
}

div.podz+div svg {
  margin: auto;
  display: block;
}

div.podz+div ol {
  margin: 0;
  padding-inline-start: 19px;
}

div.podz+div ol li {
  margin-bottom: 15px;
}

div.podz+div span:first-child {
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.flex-wrap.rings {
  flex-wrap: wrap;
}

.ring-wrap {
  width: 20%;
  justify-content: center;
  align-items: flex-end;
  display: inline-flex;
  flex-wrap: wrap;
  align-content: flex-end;
}

.ring-wrap .ring {
  border: 2px solid #000;
  border-radius: 50%;
  width: 125px;
  height: 125px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ring-wrap:nth-child(2) .ring {
  width: 130px;
  height: 130px;
}

.ring-wrap:nth-child(3) .ring {
  width: 135px;
  height: 135px;
}

.ring-wrap:nth-child(4) .ring {
  width: 140px;
  height: 140px;
}

.ring-wrap:nth-child(5) .ring {
  width: 145px;
  height: 145px;
}

.ring-wrap:nth-child(6) .ring {
  width: 150px;
  height: 150px;
}

.ring-wrap:nth-child(7) .ring {
  width: 155px;
  height: 155px;
}

.ring-wrap:nth-child(8) .ring {
  width: 160px;
  height: 160px;
}

.ring-wrap:nth-child(9) .ring {
  width: 165px;
  height: 165px;
}

.ring-wrap:nth-child(10) .ring {
  width: 170px;
  height: 170px;
}

.ring-wrap .ring div:first-child,
.ring-wrap div:nth-child(2) {
  text-align: center;
}

.ring-wrap div:nth-child(2) {
  margin-top: 17px;
  padding-bottom: 87px;
}

.ring-wrap span:nth-child(1) {
  color: var(--black, #000);
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  display: block;
}

.ring-wrap span:nth-child(2) {
  color: var(--grey, #767676);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  display: block;
}

.flex-wrap.rings+div {
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-top: 60px;
}

.razmery.whatsapp {
  margin: 17.5px auto 140px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.razmery.whatsapp div:first-child {
  width: 52px;
}

.bx-catalog-element .bx-catalog-element.sert .product-item-detail-tab-content.active span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
}

.bx-catalog-element.sert .item-element-wrap .img-prop-price-btn {
  justify-content: space-between;
}

.bx-catalog-element.sert .item-element-wrap+div:nth-child(1) {
  width: 577px;
}

.bx-catalog-element.sert .item-element-wrap div.h1-art-price-btn {
  width: 554px;
  height: auto;
  margin-left: 28px;
}

.bx-catalog-element.sert .product-item-detail-tab-content.active {
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  padding-top: 55px;
  height: 67px;
}

.bx-catalog-element.sert .item-element-wrap .product-item-detail-slider-block,
.bx-catalog-element.sert .product-item-detail-slider-images-container {
  position: unset;
}

.bx-catalog-element.sert .price-current {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-transform: uppercase;
  margin: 25px 0 25px 0;
  margin-left: 60px;
}

.bx-catalog-element.sert .btn.product-item-detail-buy-button {
  max-width: unset;
}

.bx-catalog-element.sert .item-element-wrap .btn.product-item-detail-buy-button {
  background: transparent;
  border: solid 1px #000;
  width: 286px;
  height: 35px;
  color: #000;
}

.bx-catalog-element.sert .item-element-wrap {
  display: flex;
  margin-top: 50px;
}

h2.sert {
  color: var(--black, #000);
  font-family: Inter;
  font-size: 65px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin-top: 130px;
  text-transform: uppercase;
}

h2.sert span {
  font-style: italic;
  line-height: 110%;
}

.simple-page.pages .slider#slider-new {
  height: 426px;
}

.btn-slider-wrap {
  position: absolute;
  width: 253px;
  top: 52%;
  right: 29.5%;
}

.sert-img {
  width: 586px;
  height: 378px;
}

.about {
  width: 1196px;
  margin: auto;
  background-color: #fff;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.about .top-img-wrap {
  position: relative;
  height: 669px;
  margin-top: 66px;
  margin-bottom: 36px;
}

.about .top-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.about .top-img-wrap .text {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 586px;
  margin: 36px 0 36px 30px;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #fff;
}

.simple-page .about .top-img-wrap h1 {
  text-align: left;
  margin: 0 0 25px 0;
  color: #fff;
  font-style: italic;
}

.about .top-img-wrap h1 span {
  display: block;
  font-style: italic;
}

.about h2 {
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  margin: 0 0 25px 0;
}

.about h2 span {
  font-style: italic;
  font-weight: 600;
  line-height: 110%;
  text-transform: uppercase;
}

.about .history h2 span {
  display: block;
}

.about .history {
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  flex-wrap: wrap;
}

.about .history div {
  width: 50%;
  box-sizing: border-box;
  margin-bottom: 130px;
}

.about .history div:nth-child(1) {
  padding-right: 30px;
}

.about .history div:nth-child(4) {
  padding: 0 0 0 51px;
}

.about .history div:nth-child(3) img:nth-child(1) {
  margin-right: 18px;
}

.about .history+h2 {
  text-align: center;
  margin: 0 0 65px 0;
}

.about .benefit {
  flex-wrap: wrap;
}

.about .benefit div {
  width: 50%;
  box-sizing: border-box;
  margin-bottom: 50px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  padding-right: 40px;
}

.about .benefit div:nth-child(2),
.about .benefit div:nth-child(3) {
  margin-bottom: 0;
}

.about .benefit div:nth-child(2) {
  order: 4;
}

.about .benefit div:nth-child(3) {
  order: 6;
}

.about .benefit div:nth-child(4) {
  order: 1;
}

.about .benefit div:nth-child(5) {
  order: 3;
}

.about .benefit div:nth-child(6) {
  order: 6;
}

.about .benefit div:nth-child(7) {
  order: 2;
}

.about .benefit div:nth-child(1) {
  width: 100%;
  padding: 0;
  display: inline-flex;
  justify-content: space-between;
}

.about .benefit div img {
  width: 290px;
  height: 290px;
}

.about .benefit h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about .benefit ul {
  display: grid;
  grid-gap: 0;
  grid-template-columns: 50% 50%;
  padding: 0;
}

.natali {
  margin-top: 66px;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.natali .flex-wrap:nth-child(1) {
  margin-bottom: 130px;
}

.natali .flex-wrap:nth-child(1) div img {
  width: 100%;
}

.natali .flex-wrap:nth-child(1) div:nth-child(1) {
  width: 40%;
  margin-right: 61px;
}

.natali .flex-wrap:nth-child(1) div:nth-child(2) {
  width: 60%;
}

.natali h1 {
  text-align: left;
  margin: 39px 0 25px;
}

.natali h1 span {
  line-height: 110%;
  display: block;
}

.natali h2 {
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 25px;
}

.natali h2 span {
  font-size: 50px;
  font-style: italic;
  font-weight: 600;
  line-height: 110%;
  display: block;
  text-transform: uppercase;
}

.natali .flex-wrap.atelie div:nth-child(1),
.natali .flex-wrap.atelie div:nth-child(2) {
  width: 100%;
  text-align: center;
}

.natali .flex-wrap.atelie div {
  width: 50%;
}

.natali .flex-wrap.atelie {
  flex-wrap: wrap;
}

.natali .flex-wrap.atelie div:nth-child(2) {
  margin: 65px 0;
}

.recykling h1 {
  margin-bottom: 25px;
}

.recykling h1 span {
  display: block;
}

.recykling h1+span {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  display: block;
  width: 817px;
  margin: auto;
  text-align: center;
}

.recykling h1+span+div {
  background-image: url("/local/templates/IZAR/images/atelie-top-ban.webp");
  height: 440px;
  background-repeat: no-repeat;
  background-size: auto 100%;
  margin-top: 65px;
}

.recykling .old {
  width: 290px;
}

.recykling .old:nth-child(3) {
  margin-right: 0;
}

.recykling .old2 {
  width: 290px;
  text-align: center;
}

.flex-old {
  justify-content: space-between;
}

.flex-wrap.box {
  margin: 130px auto;
  align-items: center;
}

.recykling .whatsapp {
  margin-top: 30px;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  opacity: 0;
  -webkit-transition: opacity 200ms ease-in;
  -moz-transition: opacity 200ms ease-in;
  transition: opacity 200ms ease-in;
  pointer-events: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.modal:target {
  opacity: 1;
  pointer-events: auto;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 700px;
    margin: 30px auto;
  }
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
  padding: 50px 80px 40px 80px;
}

.modal-title {
  text-align: center;
  margin-bottom: 35px;
  color: var(--black, #000);
  font-family: Inter;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

.modal-header a.close {
  position: absolute;
  right: 15px;
  font-family: sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
  text-decoration: none;
  border: none;
  z-index: 999;
}

.close:focus,
.close:hover {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.75;
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 15px;
  overflow: auto;
}

form.call-me-form {
  width: 345px;
  margin: auto;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

form.call-me-form div span {
  color: #F03;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.call-me-form input {
  width: 345px;
  height: 44px;
  display: block;
  margin: auto;
  text-align: left;
  border: 1px solid var(--black, #000);
  color: var(--grey);
  background: #ffffff;
  margin-bottom: 10px;
  box-sizing: border-box;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-transform: uppercase;
  padding: 11px 20px;
  box-sizing: border-box;
}

.call-me-form input:nth-child(1) {
  display: none;
}

.call-me-form input.name {
  margin-bottom: 10px;
}

.call-me-form input:focus {
  color: var(--black, #000);
}

.call-me-form input.submit_kontakt {
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
  color: var(--black, #000);
  margin-top: 20px;
  margin-bottom: 50px;
}

.modalimg {
  display: none;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modalimg-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
}

.closemodalimg {
  color: white;
  font-size: 40px;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}

.closemodalimg:hover {
  color: #ccc;
}


@media (max-width: 550px) {

  .subscribe-window form,
  .subscribe-window .avatar+div {
    width: 100% !important;
  }

  .subscribe-window .bx_subscribe_submit_container,
  .subscribe-window .bx-input-group,
  .subscribe-window .btn-subscribe {
    display: block;
  }

  .subscribe-window .btn-subscribe {
    margin: 15px auto;
  }

  .subscribe-window input[type=text],
  .subscribe-window .bx-subscribe .bx-input-group input.bx-form-control {
    text-align: center;
  }

  .subscribe-window {
    width: 100%;
    left: 0;
    bottom: 0;
  }

  .subscribe-window input[type=text],
  .subscribe-window .bx-subscribe .bx-input-group input.bx-form-control {
    width: 100%;
  }

  .popup-flex {
    padding: 90px 30px 68px 30px;
    width: 80%;
  }

  form#asd_subscribe_form input {
    width: 100%;
    margin: 20px auto 0;
    display: block;
  }

  form#asd_subscribe_form input[type=submit] {
    width: 100%;
    margin: 20px auto;
  }
}

.jew-garderob {
  margin-top: 65px;
}

.jew-garderob a {
  text-decoration: none;
}

.jew-garderob .top-ban-wrap {
  position: relative;
  height: 600px;
  width: 100%;
  margin-bottom: 108px;
  background-repeat: no-repeat;
}

.jew-garderob .top-ban-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.jew-garderob .top-ban-wrap div {
  position: absolute;
  z-index: 2;
  left: 30px;
  top: 36px;
  width: 585px;
  color: var(--white, #FFF);
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.jew-garderob .top-ban-wrap h1 {
  color: #FFF;
  line-height: 100%;
  text-align: left;
  margin-top: 0;
  margin-bottom: 25px;
}

.jew-garderob .top-ban-wrap h1 span {
  line-height: 110%;
  display: block;
}

.jew-garderob .flex-wrap.garderob {
  flex-wrap: wrap;
  justify-content: space-between;
}

.jew-garderob .flex-wrap.garderob div:nth-child(4),
.jew-garderob .flex-wrap.garderob div:nth-child(3) {
  margin-bottom: 150px;
}

.jew-garderob .flex-wrap.garderob div:nth-child(3) {
  width: 100%;
}

.jew-garderob .flex-wrap.garderob div {
  margin-bottom: 86px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 567px;
}

.flex-wrap.garderob .half a img {
  width: 100%;
}

.flex-wrap.garderob .half a {
  width: 567px;
  height: 272px;
  background-size: contain;
  background-repeat: no-repeat;
}

.jew-garderob .flex-wrap.garderob div span {
  display: flex;
  color: #000;
  height: 56px;
  align-items: center;
  justify-content: center;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.jew-garderob form.call-me-form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 50px;
}

.jew-garderob form.call-me-form input {
  display: inline-flex;
}

.jew-garderob form.call-me-form input.phone {
  display: none;
}

.jew-garderob form.call-me-form div {
  width: 33%;
}

.jew-garderob form.call-me-form input.submit_kontakt {
  margin: 0;
  display: flex;
  justify-content: center;
  background: var(--violet, #764AF1);
  color: var(--white, #FFF);
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
}

.jew-garderob .form-zag {
  display: block;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 35px;
}

.jew-garderob .bottom-cats-wrap {
  margin-top: 184px;
}

.simple-page .bx-catalog-element h1 {
  text-align: left;
  margin: 12px 0 17px;
}

.bx-catalog-element.gard .breadcrumb span,
.bx-catalog-element.gard .breadcrumb a {
  white-space: nowrap;
  color: var(--grey, #767676);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  text-decoration: none;
}

.bx-catalog-element.gard .breadcrumb {
  display: flex;
  margin: 56px 0 36px;
}

.bx-catalog-element.gard .breadcrumb .slash {
  margin: 0 0 0 5px;
}

.simple-page .bx-catalog-element.gard h1 {
  margin-top: 0;
}

.bx-catalog-element.gard .item-element-wrap .product-item-detail-slider-container {
  flex-wrap: wrap;
}

.bx-catalog-element.gard .anketa-form-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.reg-form-wrap {
  display: flex;
  flex-wrap: wrap;
}

.bx-authform-input-container input[type=text],
.bx-authform-input-container input[type=password] {
  background: transparent;
  border: 1px solid var(--black, #000);
}

.reg-form-wrap form input[type=text],
.bx-authform-input-container input[type=text],
.bx-authform-input-container input[type=password],
.reg-form-wrap form,
input[type=password] {
  border: 1px solid var(--black, #000);
  background: transparent;
  height: 44px;
  box-sizing: border-box;
  padding: 0;
  max-width: 486px;
  width: 486px;
}

.bx-authform {
  max-width: unset;
  margin-top: 80px;
}

.reg-form-wrap form input[type=submit] {
  max-width: 486px;
  width: 486px;
  box-sizing: border-box;
  height: 44px;
  background: #fff;
  border: 1px solid var(--black, #000);
}

.reg-form-wrap form {
  border: none;
  height: auto;
  margin: auto;
  box-sizing: border-box;
}

.reg-form-block.half:nth-child(2) {
  border-left: solid 2px #764AF1;
}

.bx-authform-formgroup-container {
  margin-bottom: 20px;
}

.bx-authform input[type=text] {
  border: 1px solid var(--black, #000);
  background: transparent;
  height: 44px;
  box-sizing: border-box;
  padding: 0;
  max-width: 486px;
  width: 486px;
}

.bx-authform label {
  display: block;
}

.ref-form-label+input {
  margin-bottom: 20px;
}

.reg-form-wrap h3 {
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  text-transform: uppercase;
}

form#anketa input#phone {
  display: none;
}

.dop-anketa#slider_bl_new input {
  display: unset;
}

.dop-anketa#slider_bl_new .slider-prev-next-control label {
  display: block;
}

.dop-anketa#slider_bl_new article {
  margin: 10px 0 15px 0;
}

.dop-anketa#slider_bl_new .oformlenie-right-column {
  margin-left: 55px;
}

.dop-anketa#slider_bl_new label.new-label1,
.dop-anketa#slider_bl_new label.new-label2 {
  position: relative;
  top: unset;
  right: unset;
  left: unset;
}

.submit-next-anketa {
  display: flex;
}

.dop-anketa#slider_bl_new .submit-anketa,
.dop-anketa#slider_bl_new .slider-prev-next-anketa {
  display: inline-flex;
  width: 50%;
}

.dop-anketa#slider_bl_new .slider-next-anketa,
.dop-anketa#slider_bl_new .slider-prev-anketa {
  width: 315px;
  height: 44px;
  background: var(--violet, #ffffff);
  color: #e1e1e1;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
  text-decoration: none;
  padding-top: 11px;
  box-sizing: border-box;
  margin: 0 auto;
}

.dop-anketa#slider_bl_new .bx-soa-sidebar {
  height: auto;
}

.dop-anketa#slider_bl_new input[type=radio]#new-slide2,
.dop-anketa#slider_bl_new input[type=radio]#new-slide1 {
  display: none;
}

.dop-anketa.saved form input[type=submit] {
  background: var(--violet, #ffffff);
  color: #000;
}

.dop-anketa.saved#slider_bl_new .slider-next-anketa {
  background: var(--violet, #764AF1);
  color: #FFF;
}

.anketa-form p.anketa {
  line-height: normal;
  font-size: 20px;
}

.wrap-order-simple {
  display: flex;
}

.wrap-order-simple .order-simple-right-block,
.wrap-order-simple .order-simple-left-block {
  width: 50%;
}

#bx-soa-total-mobile {
  display: none;
}

.col-lg-8.col-md-7.bx-soa {
  position: relative;
}

.bx-soa-section.bx-active.bx-selected {
  width: 663px;
}

.bx-soa-section-content {
  display: block !important;
  padding: 0;
}

.row#bx-soa-order {
  position: relative;
  width: 100%;
  display: flex;
  margin-top: 65px;
}

.pull-right.btn.btn-primary,
.btn.btn-outline-secondary,
.bx-soa-section-title-count,
.bx-soa-section-title-container,
#bx-soa-orderSave .checkbox+a {
  display: none;
}

.bx-soa-cart-total.bx-soa-cart-total-bottom {
  opacity: 1;
}

.bx-soa-pp-company-image {
  background-image: none !important;
}

.bx-soa-pp-company-graf-container {
  padding-top: 0;
  border: none;
}

.bx-soa-pp-company-logo .bx-soa-pp-company-graf-container,
.bx-soa-pp-delivery-cost,
.oformlenie-left-column #bx-soa-delivery .order-md-1.order-2.col-md-7.bx-soa-pp-item-container {
  display: none;
}

.btn.btn-primary.btn-lg {
  border: 1px solid #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 17px;
  text-transform: uppercase;
  padding: 8px 10px;
  text-align: center;
  background: var(--violet, #764AF1);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

.bx-soa-item-imgcontainer {
  border: none;
}

.bx-soa-item-img-block {
  width: 145px;
  height: 145px;
  float: none;
  flex-shrink: 0;
}

.bx-soa-item-title a {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  text-decoration: none;
  color: var(--black, #000);
}

.bx-soa-item-td {
  display: flex;
  border: none;
}

.oformlenie-right-column {
  width: 466px;
  box-shadow: 1px 1px 10px 0 #764AF1;
  padding: 30px;
  box-sizing: border-box;
  margin-left: 67px;
}

.bx-soa-item-title {
  width: 250px;
}

.bx-soa-section {
  border: none;
}

.bx-soa-item-block {
  display: flex;
}

.bx-soa-section.bx-selected {
  border: none;
}

.bx-soa-item-td.bx-soa-item-properties.bx-text-right .bx-soa-item-td-title {
  margin-right: 5px;
}

.bx-soa-item-td.bx-soa-item-properties.bx-text-right .bx-soa-item-td-title,
.bx-price.all,
.bx-soa-item-td-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  color: var(--black, #000);
}

.bx-soa-item-tr.bx-soa-basket-info {
  margin-bottom: 58px;
  display: block;
}

.form-group.bx-soa-customer-field input[type=text],
.form-group.bx-soa-customer-field textarea {
  width: 663px;
  padding: 8px 20px;
  box-sizing: border-box;
}

.form-control:focus {
  border-color: unset;
  box-shadow: none;
}

.bx-soa-pp-company-smalltitle {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #000;
  text-align: left;
  margin-left: 41px;
  margin-right: 15px;
}

input[type=checkbox].bx-soa-pp-company-checkbox {
  width: 26px;
  height: 26px;
  background: linear-gradient(0deg, transparent 50%, #898989 50%), linear-gradient(90deg, transparent 50%, #898989 50%);
  background-size: 50% 100%, 100% 50%;
  background-position: 0 0, 0 0;
  background-repeat: no-repeat;
  top: 10px;
}

.bx-soa-coupon-input input[type=text].form-control {
  box-sizing: border-box;
}

.bx-soa-coupon-input {
  top: 0;
  width: 100%;
}

.oformlenie-left-column .bx-soa-coupon {
  display: none;
}

/* Блок доставки */
.bx-soa-pp-desc-container {
  display: none;
  width: 662px;
}

/* Блок доставки */

.bx-soa-customer-field,
.bx-soa-customer-field input,
.bx-soa-customer-field textarea {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.bx-soa-customer-field label {
  margin-top: 25px;
  display: block;
}

.bx-soa-customer-field:nth-child(1) label {
  margin-top: 0;
}

.btn-success {
  display: block;
  margin: 15px auto;
  width: 100px;
  text-align: center;
  padding: 10px 15px;
  background-color: var(--fiolet);
  color: #fff;
  text-decoration: none;
  border-radius: 0;
}

.widget-payment-checkout-info {
  margin: 10px 0;
}

.nodelivery .order-md-1.order-2.col-md-7.bx-soa-pp-item-container .bx-soa-pp-company:nth-child(3),
.nodelivery .bx-soa-section.bx-active#bx-soa-delivery,
.nodelivery .bx-soa-section-content .col-sm-12.bx-soa-customer .form-group.bx-soa-customer-field:nth-child(4),
.noone .order-md-1.order-2.col-md-7.bx-soa-pp-item-container .bx-soa-pp-company:nth-child(4),
.noone .order-md-1.order-2.col-md-7.bx-soa-pp-item-container .bx-soa-pp-company:nth-child(2) {
  display: none;
}

.main-profile-block-shown .form-group {
  display: block;
}

h2.sale-personal-section-index-block-name {
  color: #000;
}

.sale-personal-section-index-block-link,
.sale-personal-section-index-block-link:hover,
.sale-personal-section-index-block-link:active,
.sale-personal-section-index-block-link:focus,
.sale-personal-section-index-block-link:visited {
  color: var(--white, #FFF);
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  background: var(--violet, #764AF1);
  width: 286px;
  height: 35px;
  flex-shrink: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

h2.sale-personal-section-index-block-name {
  color: var(--white, #FFF);
  text-align: center;
  margin: 0;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.sale-personal-section-row-flex {
  justify-content: space-between;
  margin: 38px auto;
}

.goroskop-item .product-item-container {
  width: 255px;
  margin: auto;
}

.goroskop-item .product-item-image-wrapper {
  padding-top: 100%;
  width: 100%;
  margin: auto;
}

.bx-content-section .goroskop .flex-wrap div.product-item-video-alternative {
  padding: 0;
}

.goroskop {
  margin-top: 65px;
}

.goroskop h1 span {
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.goroskop h1 {
  margin-top: 28px;
}

.goroskop .flex-wrap div:nth-child(2) span.mini-zag {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
}

.goroskop .flex-wrap div:nth-child(2) {
  padding: 0 0 0 20px;
}

.goroskop .zodiac-stones {
  display: flex;
  margin-top: 40px;
}

.goroskop .zodiac-stones div {
  width: 33%;
  height: 140px;
  padding: 0;
  background-position: center;
}

.goroskop .zodiac-stones div.almaz {
  background: url(/local/templates/IZAR/images/lab-diamond.webp) no-repeat;
}

.goroskop .zodiac-stones div.topaz {
  background: url(/local/templates/IZAR/images/topaz.webp) no-repeat;
}

.goroskop .zodiac-stones div.rubin {
  background: url(/local/templates/IZAR/images/rubin.webp) no-repeat;
}

.goroskop .zodiac-stones div.morganit {
  background: url(/local/templates/IZAR/images/morganit.webp) no-repeat;
}

.goroskop .zodiac-stones div.yellow-saphire {
  background: url(/local/templates/IZAR/images/yellow-saphire.webp) no-repeat;
}

.goroskop .zodiac-stones div.yellow-cetrine {
  background: url(/local/templates/IZAR/images/yellow-cetrine.webp) no-repeat;
}

.goroskop .zodiac-stones div.praziolit {
  background: url(/local/templates/IZAR/images/praziolit.webp) no-repeat;
}

.goroskop .zodiac-stones div.pink-shpinel {
  background: url(/local/templates/IZAR/images/pink-shpinel.webp) no-repeat;
}

.goroskop .zodiac-stones div.pink-saphire {
  background: url(/local/templates/IZAR/images/pink-saphire.webp) no-repeat;
}

.goroskop .zodiac-stones div.paraiba {
  background: url(/local/templates/IZAR/images/paraiba.webp) no-repeat;
}

.goroskop .zodiac-stones div.lavandovyi-kvarc {
  background: url(/local/templates/IZAR/images/lavandovyi-kvarc.webp) no-repeat;
}

.goroskop .zodiac-stones div.muassanit {
  background: url(/local/templates/IZAR/images/muassanit.webp) no-repeat;
}

.goroskop .zodiac-stones div.orange-cetrine {
  background: url(/local/templates/IZAR/images/orange-cetrine.webp) no-repeat;
}

.goroskop .zodiac-stones div.lab-diamond {
  background: url(/local/templates/IZAR/images/lab-diamond.webp) no-repeat;
}

.goroskop .zodiac-stones div.green-saphire {
  background: url(/local/templates/IZAR/images/green-saphire.webp) no-repeat;
}

.goroskop .zodiac-stones div.izumrud {
  background: url(/local/templates/IZAR/images/izumrud.webp) no-repeat;
}

.goroskop .zodiac-stones div.ametist {
  background: url(/local/templates/IZAR/images/blue-saphire.webp) no-repeat;
}

.goroskop .zodiac-stones div.ametist {
  background: url(/local/templates/IZAR/images/blue-saphire.webp) no-repeat;
}

.goroskop-item .favor-check-block {
  display: none;
}


.thumbs a img {
  border: none;
}

.lightbox {
  position: fixed;
  overflow: hidden;
  z-index: 9999;
  width: 0;
  height: 0;
  text-align: center;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
}

.lightbox img {
  width: 95%;
  max-width: 800px;
  height: auto;
  margin: auto auto;
  opacity: 0;
  border: 1px solid #4D4D4D;
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  -webkit-transition: opacity 500ms ease-in;
  -moz-transition: opacity 500ms ease-in;
  transition: opacity 500ms ease-in;
}

.lightbox:target {
  width: auto;
  height: auto;
  bottom: 0;
  right: 0;
  outline: none;
}

.lightbox:target img {
  opacity: 1;
}

.thumb img {
  width: 45%;
  margin: 2%;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.6);
  -webkit-box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.6);
}

.anketa-btn {
  margin-bottom: 15px;
  padding: 10px;
  text-align: center;
  border: solid 1px;
  width: 278px;
}

.anketa-btn a {
  text-decoration: none;
  color: var(--black, #000);
}

.anketa-form form {
  width: 604px;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.anketa-form form div {
  width: 100%;
}

.anketa-form form input[type=radio]:checked+label:before {
  background: none;
}

.anketa-form form input[type=submit] {
  padding: 10px;
  width: 100%;
}

.anketa-form #txtarea {
  margin-top: 0;
}

.anketa-form form input[type=radio]:checked::before {
  content: "✔";
  display: block;
  text-align: center;
  font-size: 12px;
  line-height: 15px;
  color: #000;
  width: 14px;
  height: 14px;
  margin: auto;
  background: #fff;
  border: solid 1px #000;
  border-radius: 50%;
}

.anketa-form form div:nth-child(even),
.anketa-form form .lable {
  margin-top: 20px;
}

.anketa-form input.inputtext,
.anketa-form .inputtextarea {
  width: 100%;
  height: 44px;
  padding: 10px 19px;
  box-sizing: border-box;
}

label span {
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.anketa-form-page h1 {
  margin-bottom: 25px;
}

.anketa-form-page h1 span {
  line-height: 100%;
}

.anketa-form-page h1+span {
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-align: center;
  display: block;
  margin-bottom: 30px;
}

.anketa-form-page span+p {
  text-align: center;
  margin-bottom: 60px;
}

.anketa-form-page span+.flex-wrap div:nth-child(1) {
  width: 477px;
}

.anketa-form-page span+.flex-wrap {
  justify-content: space-evenly;
  margin-bottom: 130px;
}

.anketa-form-page h2 {
  font-size: 65px;
  font-style: italic;
  font-weight: 600;
  line-height: 110%;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 76px;
}

.anketa-form .bigtxt textarea {
  height: 170px;
}

.anketa-form form div.bigtxt {
  margin-top: 9px;
}

.modalDialog {
  position: absolute;
  font-family: Arial, Helvetica, sans-serif;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99999;
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  display: none;
  pointer-events: none;
}

.modalDialog:target {
  display: block;
  pointer-events: auto;
}

.modalDialog>div {
  width: 100%;
  position: relative;
  margin: 10% auto;
  padding: 5px 20px 13px 20px;
  border-radius: 10px;
  background: #fff;
  background: -moz-linear-gradient(#fff, #999);
  background: -webkit-linear-gradient(#fff, #999);
  background: -o-linear-gradient(#fff, #999);
}

.closeomodal {
  background: #606061;
  color: #FFFFFF;
  line-height: 25px;
  position: absolute;
  right: -12px;
  text-align: center;
  top: -10px;
  width: 24px;
  text-decoration: none;
  font-weight: bold;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -moz-box-shadow: 1px 1px 3px #000;
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
}

.closeomodal:hover {
  background: #00d9ff;
}

.msgok-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  align-content: center;
  flex-direction: column;
}

.msgok {
  top: 10%;
  left: 30%;
  display: none;
  width: 500px;
  height: 500px;
  z-index: 999;
}

.msgok .warning-btn-n-span,
.warning__text {
  width: unset;
  display: unset;
}

.popup-window.popup-window-with-titlebar {
  padding: 25px;
}

form.gem-bar-form label img {
  cursor: pointer;
  border: 2px solid transparent;
  width: 115px;
  height: 115px;
  margin-right: 8px;
  box-sizing: border-box;
}

form.gem-bar-form {
  display: flex;
  flex-wrap: wrap;
}

form.gem-bar-form label>input {
  visibility: hidden;
  position: absolute;
}

form.gem-bar-form div#third-step label span {
  display: block;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
  text-align: center;
}

form.gem-bar-form div#third-step label {
  width: 33%;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 30px;
}

form.gem-bar-form div#third-step {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

form.gem-bar-form div#third-step div:first-child {
  width: 100%;
}

.gem-right.gem-bar-form-block div.nonchecked {
  filter: saturate(0);
  opacity: 0.3;
  transition: filter 0.7s ease, opacity 0.7s ease;
}

form.gem-bar-form .checked {
  filter: saturate(100%);
  transition: filter 0.7s ease, opacity 0.7s ease;
  opacity: 1;
}

.gem-bar-form-block.gem-left {
  width: 613px;
}

.gem-bar-form-block.gem-left .sticky span {
  display: none;
}

.gem-bar-form-block.gem-left .sticky {
  transition: transform 1s;
  position: sticky;
  top: 0;
}

.gem-bar-form-block.gem-left div {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-transform: uppercase;
  margin: 38px auto 31px;
}

.gem-bar-form-block.gem-left .input+input {
  display: none;
}

.gem-bar-form-block.gem-left input {
  width: 486px;
  display: block;
}

.gem-bar-form-block.gem-left input.input {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  border-bottom: solid 1px #000;
  box-sizing: border-box;
  margin-bottom: 20px;
  padding: 3px 0;
}

.gem-bar-form-block.gem-left input.submit_kontakt {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  border: 1px solid var(--black, #000);
  background-color: #fff;
  border-radius: 0;
  height: 44px;
}

.gem-bar-form-block.gem-right {
  width: 514px;
  margin-left: 65px;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
}

.gem-bar-form-block.gem-left img {
  width: 100%;
}

form.gem-bar-form label input:checked+img {
  box-shadow: 0 0 9px 0 #764AF1;
}

.gem-right.gem-bar-form-block div {
  margin-bottom: 11px;
  margin-top: 40px;
}

.gem-bar-form-page h1+div {
  width: 856px;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin: 0 auto 65px;
}

div.gem-bann {
  width: 1196px;
  height: 400px;
  background: url("/local/templates/IZAR/images/gem-bann.webp") no-repeat;
  background-size: 100%;
  background-position: 0 -270px;
  margin-bottom: 130px;
}

.search-page {
  margin-top: 150px;
}

.search-page-wrap {
  display: flex;
  flex-wrap: wrap;
}

.search-page-card {
  width: 20%;
  margin: 30px 2.5%;
}

.search-page-card img {
  width: 100%;
}

.search-page-card a {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
  text-decoration: none;
}

.search-page-card small a {
  color: #000;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
}

.nazakaz-page {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  /* or 130% */
  text-align: left;
  width: 100%;
}

.nazakaz-page span.violet {
  color: #764AF1;
}

.nazakaz-page div.first {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}

.nazakaz-page div.first div {
  width: 50%;
}

.nazakaz-page div.first div:nth-child(1) {
  padding-right: 20px;
  box-sizing: border-box;
}

.nazakaz-page div.first div.nazakaz-img {
  background-image: url("/local/templates/IZAR/images/nazakaz-ring1.webp");
  background-size: 115%;
  background-repeat: no-repeat;
  background-position: center 49px;
}

.nazakaz-page h1 {
  line-height: 52px;
  margin-top: 80px;
  text-align: left;
}

.nazakaz-page h1 span {
  font-size: 50px;
  line-height: 52px;
  display: block;
}

.nazakaz-page h2 {
  font-family: Inter;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0em;
  text-transform: uppercase;
  margin-top: 40px;
}

.nazakaz-page .second {
  display: flex;
}

.nazakaz-page .second div.nazakaz-img {
  background-image: url("/local/templates/IZAR/images/nazakaz-ring.webp");
  background-size: 120%;
  background-repeat: no-repeat;
  background-position: center -11px;
  width: 50%;
}

.nazakaz-page .second .list {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
}

.nazakaz-page .second div div {
  width: 75%;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  /* or 150% */
  text-align: left;
  margin-top: 40px;
}

.nazakaz-page .second div div.numbers {
  font-family: "Inter";
  font-style: italic;
  font-weight: 600;
  font-size: 50px;
  line-height: 71px;
  /* or 142% */
  display: flex;
  align-items: flex-start;
  text-transform: uppercase;
  width: 25%;
  justify-content: center;
}

.nazakaz-page div.last {
  margin-top: 80px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  padding: 0 217px;
  box-sizing: border-box;
  font-family: Inter;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  text-align: center;

}

.nazakaz-page div.wtspp .whatsapp,
.wedding-page div.wtspp .whatsapp {
  display: flex;
  width: 302px;
  margin-top: 50px;
  text-align: left;
  line-height: normal;
  padding: 10px;
  border: solid 1px var(--fiolet);
  background-color: var(--fiolet);
  justify-content: center;
  box-sizing: border-box;
}

div.bottom-bl {
  display: flex;
  justify-content: center;
}

.nazakaz-page div.wtspp .whatsapp span {
  line-height: normal;
}

body .nazakaz-page .whatsapp span#whpp-blck,
.wedding-page div.wtspp .whatsapp span#whpp-blck {
  color: #fff;
  font-family: Inter;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  text-align: left;
  text-transform: none;
}

body .nazakaz-page .whatsapp span#whpp-grey,
.wedding-page div.wtspp .whatsapp span#whpp-grey {
  color: #fff;
  text-transform: none;
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 26px;
  text-align: left;

}

.nazakaz-page .whatsapp svg {
  fill: var(--fiolet);
}

@media (max-width: 550px) {
  .nazakaz-page {
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
  }

  .nazakaz-page h1 {
    font-style: italic;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    margin-top: 45px;
  }

  .nazakaz-page h1 span {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
  }

  .nazakaz-page h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin-top: 20px;
  }

  .nazakaz-page div.first {
    display: flex;
    margin: auto;
    flex-wrap: wrap;
  }

  .nazakaz-page div.first div {
    width: 100%;
  }

  .nazakaz-page div.first div.nazakaz-img {
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 358px;
  }

  .nazakaz-page .second {
    flex-wrap: wrap;
  }

  .nazakaz-page .second .list {
    width: 100%;
  }

  .nazakaz-page .second div.nazakaz-img {
    width: 100%;
    min-height: 381px;
    order: 2;
    background-size: 100%;
  }

  .nazakaz-page .second div div {
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    margin-top: 20px;
    width: 85%;
  }

  .nazakaz-page .second div div.numbers {
    font-family: "Inter";
    font-style: italic;
    font-weight: 600;
    font-size: 24px;
    line-height: 33px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 15%;
  }

  .nazakaz-page div.last {
    width: 100%;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    padding: unset;
    margin-top: 20px;
  }

  .nazakaz-page div.last div.wtspp .whatsapp {
    width: 260px;
    margin: 40px auto;
  }

  .nazakaz-page div:nth-child(1) {
    width: 100%;
  }

  .nazakaz-page .whatsapp span#whpp-blck {
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
  }
}



.whats .whatsapp {
  background: transparent;
  box-shadow: 0 0 0 0 rgba(67, 216, 84, 0.4784313725);
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0% {
    transform: scale(0.97);
    box-shadow: 0 0 0 0 rgba(67, 216, 84, 0.4784313725);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
  }

  100% {
    transform: scale(0.97);
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
  }
}

@media (max-width: 1399px) {
  body {
    zoom: 0.75;
    -ms-zoom: 0.75;
    -webkit-zoom: 0.75;
    -moz-transform: scale(0.75, 0.75);
    -moz-transform-origin: center top;
  }

  .modal-rassrochka .modal-body {
    margin-top: 26.6666666667px;
  }

  .modal-rassrochka .modal-content {
    padding: 26.6666666667px;
  }

  .modal-rassrochka .modal-title {
    font-size: 32px;
    margin-bottom: 26.6666666667px;
    line-height: 53.3333333333px;
  }

  .modal-rassrochka .modal-title+span {
    font-size: 21.3333333333px;
    line-height: 25.3333333333px;
  }

  .modal-rassrochka .step {
    font-size: 18.6666666667px;
    line-height: 22.6666666667px;
    padding: 6.6666666667px 0;
  }

  .modal-rassrochka .step svg {
    width: 42.6666666667px;
    height: 42.6666666667px;
  }

  .modal-rassrochka .modal-dialog {
    width: 800px;
    min-height: 540px;
    max-width: 800px;
    height: auto;
  }

  .modal-rassrochka .summs {
    height: 116px;
    margin-top: 33.3333333333px;
  }

  .modal-rassrochka .summs .summ span,
  .modal-rassrochka .summs .summ span:nth-child(1) {
    font-size: 18.6666666667px;
  }
}

body.horo .ban {
  background-image: url("/local/templates/IZAR/images/zodiac/horo-ban.webp");
  width: 100%;
  height: 482px;
  background-size: 80%;
  background-position: right;
  background-repeat: no-repeat;
  background-color: #2D0B3E;
  position: relative;
  margin-top: 60px;
}

body.horo .ban .txt {
  position: absolute;
  width: 470px;
  top: 90px;
  left: 80px;
}

body.horo .ban .txt h1+span+div {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  /* or 140% */
  color: #FFFFFF;
  margin-top: 30px;
}

body.horo .ban .txt h1 {
  font-weight: 600;
  font-size: 50px;
  line-height: 52px;
  /* or 104% */
  color: #FFFFFF;
  width: 340px;
  margin: 0;
}

body.horo .ban .txt h1 span:nth-child(1) {
  font-style: normal;
  font-weight: 600;
  /* or 104% */
  display: block;
}

body.horo .ban .txt h1+span {
  font-size: 20px;
  color: #f1f1f1;
}

body.horo .zodiacs {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 60px;
}

body.horo .zodiacs .zodiac {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-bottom: 30px;
}

body.horo .zodiacs .zodiac article:hover {
  border: 1.5px solid #764BF0;
  transition: all 1s ease;
}

body.horo .zodiacs .zodiac article:nth-child(4n) {
  margin-right: 9%;
}

body.horo .zodiacs .zodiac article:first-child,
body.horo .zodiacs .zodiac article:nth-child(5),
body.horo .zodiacs .zodiac article:nth-child(9) {
  margin-left: 9%;
}

body.horo .zodiacs .zodiac article {
  width: 160px;
  text-align: center;
  border: 1.5px solid transparent;
  height: 225px;
  transition: all 0.5s ease;
  margin-right: 16px;
}

body.horo .zodiacs .zodiac article a {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
}

.bx_item_list_recommended_products {
  display: flex;
  width: 100%;
  justify-content: center;
}

.bx_item_list_recommended_products .quart.product-item-big-card {
  width: 25%;
}

.bx_item_list_recommended_products .quart.product-item-big-card .product-item-price-container,
.bx_item_list_recommended_products .quart.product-item-big-card .product-item-info-container.product-item-hidden {
  display: none;
}

.quart.product-item-big-card .product-item-title a {
  color: var(--black, #000);
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
  text-align: center;
  display: block;
}

h1.CatFilterTitle {
  margin-top: 66px;
  text-align: center;
}


h1.CatFilterTitle+.jew-cat-page {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 550px) {
  h1.CatFilterTitle+.jew-cat-page {
    justify-content: flex-start;
  }

  .popup-content {
    background-color: #fefefe;
    margin: 40% auto !important;
    padding: 20px;
    border: 1px solid #888;
    width: 80% !important;
  }

  body.horo .ban {
    background-image: url("/local/templates/IZAR/images/zodiac/horo-ban-mob.webp");
    width: 100%;
    height: 477px;
    background-size: cover;
    background-position: center top;
    margin-top: 50px;
    padding-top: 250px;
    box-sizing: border-box;
  }

  body.horo .ban .txt {
    position: relative;
    top: unset;
    left: unset;
    margin: auto;
    width: 350px;
    text-align: center;
  }

  body.horo .ban .txt h1+div {
    font-size: 14px;
    margin-top: 14px;
    line-height: 22px;
  }

  body.horo .ban .txt h1 {
    font-size: 29px;
    line-height: 33px;
    text-align: center;
  }

  body.horo .zodiacs .zodiac article:nth-child(4n) {
    margin-right: unset;
  }

  body.horo .zodiacs .zodiac article:first-child,
  body.horo .zodiacs .zodiac article:nth-child(5),
  body.horo .zodiacs .zodiac article:nth-child(9) {
    margin-left: unset;
  }

  body {
    zoom: 1;
    -ms-zoom: 1;
    -webkit-zoom: 1;
    -moz-transform: scale(1, 1);
    -moz-transform-origin: center top;
    margin: 0;
    overflow-x: hidden;
  }

  .marquee-container {
    width: 100%;
  }

  .big,
  .small-wrapper {
    width: 100%;
  }

  .search-page-card {
    width: 45%;
    margin: 30px 2.5%;
  }

  .search-page-card a {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    display: block;
  }

  .callme-block,
  .phone-block,
  .bx-header-2,
  .bx-header-1-line-row#icons .search,
  .bx-header-2-line .topmenu>li span.menu-zag,
  .small-menu ul li div.submenu.two div:nth-child(2) a.submenu-zag,
  .bx-header-2-line div.submenu-box-wrap:nth-child(4) a.submenu-zag,
  .small-menu ul li div.submenu.two div:nth-child(3),
  .small-menu ul li div.submenu.two div:nth-child(4),
  .small-menu ul li:nth-child(2) a.parent:nth-child(1),
  .small-menu ul li:nth-child(3) a.parent:nth-child(1),
  .small-menu ul li:nth-child(4) a.parent:nth-child(1),
  .basket-item-actions-remove,
  .bx-header-1-line-row#callme {
    display: none;
  }

  .basket-item-block-info .basket-item-actions-remove {
    display: block;
  }

  .bx-header-2-line {
    margin: 0;
  }

  .bx-header-1-line {
    height: unset;
    flex-wrap: wrap-reverse;
  }

  .search-form table {
    width: 100%;
    padding: 15px;
  }

  .bx-header-1-line-row#logo-link {
    width: 100%;
  }

  .search-form .search-btn-mob {
    background: rgba(0, 0, 0, 0) url('data:image/svg+xml,<svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.93211 2.07437C2.59262 1.36709 3.38549 0.817652 4.25855 0.462226C5.13161 0.106801 6.06505 -0.0465552 6.99743 0.0122521C7.92982 0.0710594 8.84 0.340697 9.66807 0.803416C10.4961 1.26613 11.2233 1.91144 11.8018 2.69687C12.7629 4.00277 13.2645 5.62915 13.2189 7.29129C13.1732 8.95342 12.5832 10.5454 11.552 11.7885L13.8862 14.2885C13.9591 14.3668 14.0001 14.4728 14 14.5834C13.9999 14.694 13.9588 14.8 13.8858 14.8781C13.8127 14.9562 13.7137 15.0001 13.6105 15C13.5072 14.9999 13.4083 14.9559 13.3353 14.8777L11.0011 12.3777C9.7149 13.5992 8.03512 14.2363 6.31778 14.154C4.60044 14.0717 2.98051 13.2764 1.8013 11.9367C0.622081 10.597 -0.0237508 8.81812 0.000668061 6.97712C0.025087 5.13613 0.717837 3.37765 1.93211 2.07437ZM2.4822 11.5019C1.3878 10.3297 0.772974 8.73994 0.772974 7.08228C0.772974 5.42461 1.3878 3.83484 2.4822 2.6627C3.57659 1.49055 5.06091 0.83205 6.60862 0.83205C8.15634 0.83205 9.64066 1.49055 10.7351 2.6627C11.8296 3.83495 12.4444 5.42487 12.4444 7.08269C12.4444 8.74051 11.8296 10.3304 10.7351 11.5027C9.64055 12.6749 8.15609 13.3335 6.60824 13.3335C5.06038 13.3335 3.57592 12.6749 2.48142 11.5027L2.4822 11.5019Z" fill="black"/></svg>');
    background-repeat: no-repeat;
    border: none;
    width: 15px;
    height: 15px;
    position: absolute;
    right: 20px;
    top: 12px;
  }

  .big-menu {
    display: none;
  }

  .search-form {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .search-form input[type=text] {
    width: 100%;
    box-sizing: border-box;
    padding: 5px 9px;
    margin-top: 5px;
    height: 30px;
  }

  .search-form form {
    width: 100%;
    margin-bottom: 20px;
  }

  div.main-nav,
  main {
    width: 100%;
    text-align: left;
    margin-top: 80px;
  }

  .slinky-theme-default a:not(.back) {
    padding: 0.4em 1em !important;
  }

  .slinky-menu a span {
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-align: left;
  }

  .small-menu {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 58px 0 0;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    z-index: 1002;
    background-color: #fff;
    width: 35px;
  }

  .small-menu__btn {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 30px;
    cursor: pointer;
    transition: 0.4s;
    left: 15px;
    z-index: 1000;
  }

  .small-menu__icon {
    display: block;
    position: relative;
    background: black;
    width: 90%;
    height: 4px;
    transition: 0.4s;
  }

  .small-menu__icon::after,
  .small-menu__icon::before {
    content: "";
    display: block;
    position: absolute;
    background: black;
    width: 100%;
    height: 4px;
    transition: 0.4s;
  }

  .small-menu__icon::after {
    top: 8px;
  }

  .small-menu__icon::before {
    top: -8px;
  }

  .small-menu__container {
    position: fixed;
    text-align: center;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: 0;
    opacity: 1;
    transition: 0.5s;
    transition-delay: 0.2s;
    overflow: scroll;
    background-color: #fff;
  }

  .small-menu__list {
    transition: 0.5s;
    transition-delay: 0.5s;
    list-style: none;
    padding-left: 0;
    margin-top: -50px;
  }

  .small-menu__item {
    font-size: 26px;
    padding-bottom: 15px;
  }

  .small-menu__link {
    text-decoration: none;
    color: #fff;
  }

  .small-menu__checkbox {
    display: none;
  }

  .small-menu__checkbox:checked~.small-menu__nav {
    opacity: 1;
    transition-delay: 0s;
  }

  .small-menu__checkbox:checked~.small-menu__container {
    height: 100%;
    transition-delay: 0s;
  }

  .small-menu__checkbox:checked~.small-menu__btn .small-menu__icon {
    background: transparent;
  }

  .small-menu__checkbox:checked~.small-menu__btn .small-menu__icon::before,
  .small-menu__checkbox:checked~.small-menu__btn .small-menu__icon::after {
    top: -50px;
  }

  .small-menu__checkbox:checked~.small-menu__btn .small-menu__icon::after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }

  .small-menu__checkbox:checked~.small-menu__btn .small-menu__icon::before {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }

  .bx-header-2-line .slinky-menu ul.menu-stones {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-columns: 50%;
    font-size: 12px;
  }

  .bx-header-2-line .slinky-menu ul.menu-stones li.header:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 3;
    display: grid;
  }

  h1,
  div.bann-h1>h1 {
    font-family: Inter;
    font-size: 29px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -2.61px;
  }

  .catalog-top.element h2 span {
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.21px;
  }

  .catalog-top.element h2 {
    font-size: 21px;
    font-style: italic;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.21px;
  }

  .slider__control {
    width: 120px;
  }

  .simple-page.gifts .flex-wrap {
    flex-wrap: wrap;
    margin-top: 47px;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    text-align: center;
  }

  .simple-page.gifts .flex-wrap .half,
  .simple-page.gifts .flex-wrap .half img {
    width: 100%;
  }

  .workarea {
    padding: 0 15px;
    box-sizing: border-box;
    position: relative;
    overflow-x: hidden;
  }

  .simple-page.gifts .flex-wrap .half:nth-child(1) {
    order: 2;
  }

  .simple-page.gifts .flex-wrap .half:nth-child(2) {
    order: 1;
    margin-bottom: 30px;
  }

  .simple-page.gifts h1 {
    font-size: 23px;
    font-style: italic;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: -0.46px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 0;
    margin-bottom: 15px;
  }

  .simple-page.gifts h1 span {
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: -0.46px;
    text-transform: uppercase;
  }

  .simple-page.gifts h2.top span {
    margin-top: 80px;
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.21px;
  }

  .simple-page.gifts h2.top span,
  .catalog-block-header h2 {
    font-size: 21px;
    font-style: italic;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.21px;
  }

  .simple-page.gifts .whatsapp {
    right: unset;
    opacity: 0.3;
    top: 157px;
    left: 24px;
  }

  .bx-header-1-line-row#icons {
    padding: 0 15px;
    width: 100%;
    height: 15px;
    justify-content: space-between;
  }

  .bx-header-1-line-row#icons span,
  .bx-header-1-line-row#icons div.cart-icon {
    margin: 0 0 30px;
  }

  .bx-header-1-line-row#icons span svg {
    height: 15px;
    width: auto;
  }

  .bx-header-1-line#icons span span.number {
    display: none;
    width: 0;
  }


  .bx-header-1-line-row#icons span.search {
    width: 0;
  }

  .bx-header-1-line-row#icons span.favor {
    left: -2px;
    position: relative;
    top: 2px;
  }

  .bx-header-1-line-row .lyrmin-favorite-1 {
    background-size: 16px 17px;
    background-position: 0 -1px;
  }

  .bx-header-1-line span.number.cart-num {
    left: 9px;
  }

  .bx-header-1-line span.number {
    display: none;
  }

  .lyrmin-favorite-1 {
    height: 17px;
    width: auto;
    background-image: url('data:image/svg+xml,<svg width="20" height="17" viewBox="0 0 10 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M5 1.77851L4.605 1.32326C3.155 -0.349737 0.5 0.567047 0.5 2.5132C0.5 3.49726 1.221 4.41046 2.2605 5.30167C2.7715 5.73943 3.3325 6.14983 3.8755 6.54588C4.25771 6.81818 4.63265 7.09858 5 7.38687C5.324 7.12807 5.69 6.86075 6.0615 6.58984L6.124 6.54409C6.6675 6.14714 7.229 5.7354 7.739 5.29629C8.78 4.40283 9.5 3.48919 9.5 2.5132C9.5 0.567496 6.845 -0.349737 5.395 1.32326L5 1.77851ZM5 8C4.622 7.66585 4.133 7.31017 3.609 6.92937C1.974 5.73899 0 4.30236 0 2.5132C0 0.296139 2.862 -0.827865 4.6605 0.710127C4.7785 0.811045 4.892 0.923625 5 1.04787C5.108 0.923625 5.2215 0.811045 5.3395 0.710127C7.138 -0.827416 10 0.296587 10 2.5132C10 4.29294 8.0225 5.7363 6.3865 6.93027C5.8645 7.31151 5.377 7.66719 5 8Z" fill="black"/></svg>');
  }

  ul.lyrmin-favorite-list {
    margin: 0;
    padding: 0;
  }

  ul.lyrmin-favorite-list li {
    width: 30%;
  }

  ul.lyrmin-favorite-list li a,
  ul.lyrmin-favorite-list li {
    font-size: 10px;
    text-decoration: none;
  }

  ul.lyrmin-favorite-list li a:nth-child(1) {
    height: 30px;
    display: block;
  }

  .logo-link svg {
    width: 66px;
    height: 19px;
  }

  .top_line {
    font-size: 10px;
    padding: 4px 15px;
    min-width: 100%;
  }

  .top_line marquee {
    marquee-speed: 1;
  }

  .bx-header {
    padding-top: 13px;
    height: auto;
  }

  .logo-link {
    height: unset;
    width: unset;
  }

  .container.slider-wrap {
    position: relative;
    left: -15px;
    width: calc(100% + 30px);
  }


  .ban-indx {
    background-image: url(/upload/slide-1-mob.webp);
    width: calc(100% + 30px);
    left: -15px;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .ban-indx+a {
    display: block;
    width: 100%;
    margin-top: 38px;
    height: auto;
  }

  .ban-indx+a video {
    display: block;
    height: auto;
    background-repeat: no-repeat;
    width: 100%;

  }

  .bann-h1 {
    position: absolute;
    top: 284px;
    left: 0;
    width: 100%;
    color: #fff;
    text-align: center;
    display: unset;
  }

  .ban-indx.mob {
    display: block;
    width: 100%;
    left: unset;
    margin: 0 auto;
  }

  .ban-indx.mob .bann-h1 h1 {
    letter-spacing: -1.5px;
  }

  .ban-indx.mob h1 span {
    margin-right: 5px;
  }

  div.bann-h1>.bann-idx-podzagolovok {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 11px;
  }

  h2.indx.h44 {
    margin: 80px 0 30px 15px;
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.21px;
  }

  .top-wrapper {
    display: none;
  }

  .mob {
    display: unset;
  }

  .slider .lyrmin-favorite-1,
  .lyrmin-favorite-2 {
    height: 20px;
  }

  .bx-touch .product-item {
    width: 209px;
    margin: auto;
  }

  .slider .favor-check-block span {
    position: absolute;
    right: 5%;
    top: 65px;
    z-index: 15;
  }

  .slider__control {
    background: transparent;
    width: 70px !important;
  }

  .slider__control[data-slide=next]::before {
    background-image: url(/local/templates/IZAR/images/arrow-right-black.webp);
  }

  .slider__control[data-slide=prev]::before {
    background-image: url(/local/templates/IZAR/images/arrow-left-black.webp);
  }

  .slider .product-item-big-card .product-item-title a {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
  }

  .slider .product-item-title {
    margin-bottom: 0;
    text-align: center;
  }

  .slider .product-item-big-card .product-item-image-wrapper {
    margin-bottom: 0;
  }

  .collection-indx {
    padding: 80px 15px 0 15px;
    align-items: flex-start;
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    box-sizing: border-box;
    margin: 0;
    position: relative;
  }

  .collection-indx .txt-block {
    width: 100%;
  }

  .collection-indx .txt-block .zag {
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: -0.46px;
    text-transform: uppercase;
    margin-left: unset;
  }

  .collection-indx .txt-block .txt {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
  }

  .collection-indx .text-link {
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    width: 142px;
    margin-top: 13px;
    padding-bottom: 1px;
  }

  .collection-indx .images {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    margin-top: 33px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }

  .collection-indx .thumbs a img {
    border: none;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 1px;
  }

  .thumbs a {
    border: none;
    width: 47.5%;
    box-sizing: border-box;
  }

  .images.thumbs a:nth-child(odd) img {
    margin-right: unset;
  }

  h2.indx.goroskop {
    margin: 80px 0 15px 15px;
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: -0.46px;
    text-transform: uppercase;
  }

  h2.indx.goroskop span {
    font-size: 23px;
    font-style: italic;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: -0.46px;
    text-transform: uppercase;
    display: block;
  }

  h2.indx.goroskop+h3 {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    margin: 0 0 30px 15px;
    width: 231px;
  }

  .slider__container {
    position: relative;
  }

  div#zodiac-slider_bl {
    display: none;
  }

  .slider#slider-zodiac-mob {
    display: unset;
  }

  .slider#slider-zodiac-mob .slider__item {
    display: flex;
    justify-content: center;
  }

  .slider#slider-zodiac-mob article {
    width: 45%;
    text-align: center;
  }

  .slider#slider-zodiac-mob article a {
    text-decoration: none;
    width: 100%;
    display: block;
    text-align: center;
    margin: auto;
  }

  .slider#slider-zodiac-mob article a span {
    text-decoration: none;
    width: 100%;
    display: block;
    text-align: center;
    margin: auto;
  }

  .slider#slider-zodiac-mob article h4 {
    margin: 0;
    font-weight: normal;
  }

  .berries {
    margin-top: 75px;
  }

  .berries .stones.half {
    width: 100%;
    margin: 0 15px;
  }

  .berries .stones.half .third img {
    width: 100%;
  }

  .berries .half:nth-child(2) {
    display: none;
  }

  .gem-bar h2.indx span {
    font-size: 23px;
    font-style: italic;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: -0.46px;
    text-transform: uppercase;
    margin: 0;
  }

  .gem-bar h2.indx {
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: -0.46px;
    text-transform: uppercase;
    margin: 30px 0 15px;
  }

  .gem-bar span.undr-h2 {
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    text-transform: none;
    width: 152px;
    margin: 0 auto 15px;
  }

  .gem-bar a {
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-bottom: 2px;
  }

  .cat.ix h2.indx.h44 {
    margin: 95px 0 10px;
  }

  .cat.ix {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    margin: 0;
  }

  span.subtitle,
  .cat.ix h2.indx.h44+span.subtitle {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    margin-bottom: 30px;
  }

  .cat .bx_catalog_line_ul,
  .bottom-cats-wrap .bx_catalog_line_ul {
    padding: 0;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cat a.bx_catalog_line_img,
  .bottom-cats-wrap .bx_catalog_line_ul a.bx_catalog_line_img {
    width: 209px;
    height: 209px;
  }

  .cat.ix h2.bx_catalog_line_title {
    margin: 10px 0 40px;
  }

  .bottom-block-subscribe {
    margin: 70px 15px 0 15px;
  }

  .bottom-block-subscribe .half:nth-child(1) {
    display: none;
    background-image: unset;
  }

  .bottom-block-subscribe span:nth-child(1) {
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin: 0 0 7px;
  }

  .bottom-block-subscribe span:nth-child(2) {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    margin-bottom: 14px;
  }

  .bottom-block-subscribe .bx-input-group {
    margin-bottom: 22px;
  }

  .bottom-block-subscribe .btn-subscribe {
    background: var(--violet, #764AF1);
    color: #FFF;
    width: 100%;
    margin: 0;
  }

  .bottom-block-subscribe .bx_subscribe_submit_container,
  .bottom-block-subscribe .bx-input-group {
    display: flex;
  }

  .bottom-block-subscribe .half:nth-child(2) {
    width: 100%;
  }

  .footer-line hr {
    margin-top: 80px;
    width: 100%;
  }

  footer {
    padding: 17px 15px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
  }

  footer .half {
    order: 1;
    width: 100%;
    /* padding-left: 48px; */
    margin-bottom: 31px;
  }

  footer .quart:nth-child(1) {
    order: 2;
    width: 100%;
    text-align: center;
  }

  footer .quart:nth-child(3) {
    order: 3;
    width: 100%;
    text-align: center;
  }

  footer p,
  footer a {
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.4px;
  }

  footer .cprght {
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.4px;
    margin-top: 8px;
  }

  .bottom-block-subscribe input[type=text],
  .bottom-block-subscribe .bx-subscribe .bx-input-group input.bx-form-control {
    width: 90%;
  }

  .simple-page .workarea {
    padding: 0 15px;
  }

  .simple-page h1 {
    font-size: 23px;
    font-style: italic;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: -0.46px;
    text-transform: uppercase;
  }

  .ring-wrap {
    width: 20%;
    justify-content: center;
    align-items: flex-end;
    display: inline-flex;
    flex-wrap: wrap;
    align-content: flex-end;
  }

  .ring-wrap span:nth-child(1) {
    font-size: 12px;
  }

  .ring-wrap span:nth-child(2) {
    font-size: 10px;
  }

  .ring-wrap .ring {
    width: 100%;
    height: 65px;
  }

  div.podz {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }

  div.podz+div.flex-wrap {
    margin: 30px 0 30px 0;
    align-items: center;
    flex-wrap: wrap;
  }

  div.podz+div svg {
    margin: auto;
    display: block;
    width: 67px;
    height: 93px;
  }

  div.podz+div div:first-child {
    width: 100%;
  }

  div.news-list .news-item a:first-child,
  div.news-list .news-item a,
  .jew-cat-page .cat-img img {
    width: 100%;
    height: auto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
  }

  div.news-list .news-item a.more {
    width: auto;
  }

  div.news-detail {
    display: flex;
    flex-wrap: wrap;
  }

  div.news-detail .news-detail-img-wrap {
    background-size: cover;
    background-repeat: no-repeat;
    height: 480px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 31px;
  }

  div.news-detail .news-detail-img-wrap#news4691 {
    background-position-x: left;
  }

  div.news-detail .news-detail-img-wrap+div {
    width: 100%;
  }

  img.news-detail-img-left,
  img.news-detail-img-right {
    float: unset;
    width: 100%;
    height: 480px;
    margin: auto;
  }

  div.news-detail p {
    padding: 0;
  }

  div.news-detail h2 {
    font-family: Inter;
    font-size: 24px;
    font-style: italic;
    font-weight: 600;
    line-height: 29.05px;
    text-align: left;

  }

  .blog h1.pagetitle {
    margin-bottom: 30px;
  }

  div.news-list .news-item {
    text-align: center;
  }

  .simple-page.blog .blog-line:nth-child(odd) div:nth-child(1),
  .simple-page.blog .blog-line:nth-child(odd) div:nth-child(2),
  .simple-page.blog .blog-line:nth-child(even) div:nth-child(1) {
    width: 100%;
  }


  .simple-page.blog .blog-line:nth-child(3) div:nth-child(1) h2 {
    margin-bottom: 10px !important;
  }


  .jew-cat-page .cat-img img {
    margin-top: 0;
  }

  .jew-cat-page .bx-section-desc {
    width: 100%;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
  }

  h1.pagetitle {
    font-size: 23px;
    font-style: italic;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: -0.46px;
    text-transform: uppercase;
  }

  .jew-cat-page .my-filter {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    margin-bottom: 0;
  }

  .cards-wrap.filter a.product-item-image {
    width: 130px;
    height: 130px;
  }

  .cat-page-0 .product-item-container,
  .cat-page .product-item-container {
    width: 100%;
    margin: auto;
  }

  .jew-cat-page .my-filter .my-filter-link {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
  }


  .jew-cat-page .my-filter .my-filter-link p {
    width: 100%;
    margin-bottom: 0;
  }

  .jew-cat-page .my-filter .my-filter-link:nth-child(2),
  .jew-cat-page .my-filter .my-filter-link:nth-child(3) {
    width: 50%;
    box-sizing: border-box;
    margin: 0;
  }

  .cards-wrap.filter a {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    display: block;
  }

  .cards-wrap.filter .product-item-sostav {
    font-size: 12px;
    font-style: normal;
    font-weight: 100;
    line-height: 12px;
    height: 42px;
    width: 100%;
  }

  .jew-cat-page .my-filter .my-filter-heads {
    flex-wrap: wrap;
    width: 100%;
  }

  .jew-cat-page .cat-img {
    margin: 30px 0;
  }

  .cards-wrap.filter.ajax-cat {
    width: 100%;
  }

  .cat-page-0 h1 {
    margin: 58px 0 25px;
  }

  .card-242,
  .cards-wrap.filter .product-item,
  .cat-page-0 .card-242,
  .row.cards-wrap .card-242,
  .row.cards-wrap .card-25-prcnt {
    width: 50%;
    margin-right: unset;
  }

  .cat-page-0 .card-242 {
    margin-right: unset;
  }

  .cards-wrap.filter .product-item {
    padding: 10px;
    width: 50%;
    box-sizing: border-box;
  }

  .cards-wrap.filter.ajax-cat .product-item {
    margin-right: unset;
  }

  .jew-cat-page .product-item-container {
    width: 100%;
    padding: 15px;
  }

  .jew-cat-page .card-242 .product-item-container,
  .bx-touch .catalog-section .card-242 .product-item,
  .jew-cat-page .card-25-prcnt .product-item-container,
  .bx-touch .catalog-section .card-25-prcnt .product-item {
    width: 100%;
  }

  .jew-cat-page .cards-wrap,
  .cat-page-0 .product-item-list-col-4 .col-xs-12.product-item-small-card .row,
  .cat-page-0 .cards-wrap {
    justify-content: center;
    flex-wrap: wrap;
  }

  .row.cards-wrap .card-25-prcnt,
  .cat-page-0 .product-item-list-col-4 .col-xs-6.col-md-3 {
    width: 50%;
    display: flex;
    align-content: center;
  }

  .jew-cat-page .product-item-image-wrapper,
  .cat-page-0 .product-item-image-wrapper {
    width: 130px;
    height: 130px;
  }

  .jew-cat-page .product-item-image-wrapper video,
  .cards-wrap .product-item-video-alternative video,
  .cat-page-0 .product-item-image-wrapper video,
  .cat-page-0 .product-item-video-alternative video {
    width: 120px;
    height: 120px;
  }

  .jew-cat-page .lyrmin-favorite-1 {
    height: 17px;
    width: auto;
  }

  .jew-cat-page .product-item-container .product-item-title a,
  .catalog-products-viewed .product-item-title a,
  .cat-page-0 .product-item-container .product-item-title a {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    display: block;
  }

  .jew-cat-page .product-item-container .product-item-sostav,
  .catalog-products-viewed .product-item-sostav {
    font-size: 12px;
    font-style: normal;
    font-weight: 100;
    line-height: 12px;
    height: 36px;
    margin-bottom: 10px;
  }

  .bx-touch .catalog-section .product-item {
    width: 50%;
  }

  .bx-touch .catalog-section .product-item .product-item-button-container {
    display: none;
  }

  .bx-touch .catalog-section .product-item-container .product-item-sostav {
    font-size: 12px;
    font-style: normal;
    font-weight: 100;
    line-height: 12px;
    width: 100%;
    height: 24px;
    margin: 0;
    overflow: hidden;
  }

  .bottom-cats-wrap h2,
  .simple-page.gifts h2.top {
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.21px;
    margin-bottom: 10px;
  }

  .bottom-cats-wrap ul li {
    margin: auto;
  }

  .jew-cat-page .product-item-container .product-item-title {
    margin-top: 0;
    width: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 12px 0 0;
  }

  .card-25-prcnt .product-item-price-container {
    display: block;
    margin-bottom: 30px;
  }

  .item-element-wrap .img-prop-price-btn {
    display: flex;
    flex-wrap: wrap;
  }

  .item-element-wrap .img-prop-price-btn .col-md-6.col-sm-12 {
    margin: auto;
  }

  .item-element-wrap .product-item-detail-slider-block {
    width: 100%;
    height: auto;
    margin-bottom: 22px;
  }

  .item-element-wrap .product-item-detail-slider-container {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
    width: 90vw;
  }

  .item-element-wrap .product-item-detail-slider-controls-block {
    flex-wrap: nowrap;
    width: 100%;
    height: 54px;
    margin-right: 0;
    justify-content: flex-start;
  }

  .item-element-wrap .product-item-detail-slider-controls-image,
  .item-element-wrap .product-item-detail-slider-controls-image img {
    width: 54px;
    height: 54px;
    outline: none;
  }

  .item-element-wrap .product-item-detail-slider-controls-image {
    width: 54px;
  }

  .product-item-detail-slider-block.product-item-detail-slider-block-square.have-slide+.product-item-detail-slider-controls-block .product-item-detail-slider-controls-image {
    margin-right: 4.5px;
  }

  .item-element-wrap .h1-art-price-btn {
    width: 100%;
    margin-left: auto;
  }

  .h1-art-price-btn>.row>.col-sm-6 {
    display: flex;
    flex-wrap: wrap;
  }

  .h1-art-price-btn>.row>.col-sm-6>div:nth-child(1) {
    order: 2;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }

  /* Блок .links на странице товара */
  .product-item-detail-pay-block .main-button-container {
    width: 100%;
  }

  .h1-art-price-btn>.row>.col-sm-6>div:nth-child(1) div:nth-child(4) {
    order: 2;
  }

  .h1-art-price-btn>.row>.col-sm-6>div:nth-child(1) div.row:nth-child(3) {
    order: 3;
  }

  .h1-art-price-btn>.row>.col-sm-6>div:nth-child(1)+div {
    order: 1;
  }

  .item-element-wrap .art-nali4-wrap {
    display: flex;
    margin-bottom: 25px;
    text-align: left;
    width: 100%;
  }

  .item-element-wrap .art-nali4-wrap+.row {
    width: 100%;
  }

  .product-item-detail-slider-video video {
    width: 90vw;
  }

  .product-item-detail-slider-controls-video {
    width: 64px;
  }

  .product-item-detail-slider-controls-video video {
    width: 54px;
  }

  .ac-container input:checked~article.ac-small {
    height: auto;
  }

  .item-element-wrap .product-item-scu-item-text {
    font-size: 13px;
  }

  .product-variations {
    margin: 0 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .offers-selection {
    padding-top: unset;
  }

  .prop-title {
    font-size: 12px;
    color: var(--grey);
  }

  .fav-near-btn .lyrmin-favorite-1 {
    height: 20px;
  }

  .catalog-top.element .slider-wrapper article .product-item-small-card .row {
    justify-content: space-around;
  }

  .catalog-top.element .slider-wrapper article .product-item-small-card .favor-check-block {
    text-align: right;
    top: 51px;
    position: relative;
  }

  .catalog-top.element #slider_bl_new .slider-wrapper .product-item-small-card .col-xs-6.col-md-3 {
    margin-bottom: 60px;
  }

  .catalog-products-viewed .izar-view .view-wrap {
    flex-wrap: wrap;
  }

  .catalog-products-viewed a.product-item-image-wrapper {
    width: 100%;
  }

  .bx-touch .product-item {
    width: 100%;
  }

  .product-item-detail-info-container.fixed {
    position: fixed;
    bottom: 15px;
    width: 90%;
    box-sizing: border-box;
    z-index: 999;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transform: translateY(0);
    opacity: 1;
  }

  .product-item-detail-info-container.fixed.weareonthebottom {
    transform: translateY(100%);
    opacity: 0;
  }

  .product-item-detail-properties {
    font-size: 13px;
  }

  .product-item-detail-properties dt,
  .product-item-detail-properties dd {
    display: inline;
    float: unset !important;
  }

  .modal-rassrochka .modal-title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    width: 240px;
    margin: 10px 0;
  }

  .modal-rassrochka .modal-title+span {
    font-size: 14.5454545455px;
    line-height: 17.2727272727px;
  }

  .modal-rassrochka .modal-dialog {
    width: 95%;
    height: max-content;
  }

  .modal-rassrochka .modal-body {
    margin-top: 10px;
  }

  .modal-rassrochka .steps {
    flex-wrap: wrap;
  }

  .modal-rassrochka .step {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    color: #565555;
  }

  .modal-rassrochka .step:nth-child(1) {
    order: 1;
  }

  .modal-rassrochka .step:nth-child(2) {
    order: 3;
  }

  .modal-rassrochka .step:nth-child(3) {
    order: 2;
  }

  .modal-rassrochka .step:nth-child(4) {
    order: 4;
  }

  .modal-rassrochka .half {
    width: 100%;
  }

  .modal-rassrochka .step div:nth-child(2) {
    width: 191px;

  }

  .modal-rassrochka .summs {
    width: 100%;
    height: max-content;
    flex-wrap: nowrap;
  }

  .modal-rassrochka .summ {
    width: 30%;
  }

  .modal-rassrochka .summs .summ span:nth-child(1) {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 40px;
    color: #8A8A8A;
  }

  .modal-rassrochka .summs .summ span:nth-child(2) {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 40px;
    color: #000000;
  }

  .modal-rassrochka .summ span svg {
    width: 100%;
  }

  .anketa-form-page,
  .anketa-form-page h1+span {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
  }

  .anketa-form-page span+p {
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
  }

  .anketa-form-page .flex-wrap {
    flex-wrap: wrap;
  }

  .anketa-form-page .flex-wrap img {
    width: 100%;
  }

  .anketa-form-page .flex-wrap .half {
    width: 100%;
  }

  .simple-page .anketa-form-page h1 span {
    font-size: 23px;
    display: block;
  }

  .anketa-form-page span+.flex-wrap {
    margin-bottom: 80px;
  }

  .anketa-form form {
    width: 100%;
    font-size: 12px;
    line-height: 170%;
  }

  .anketa-form label span {
    font-size: 12px;
  }

  .msgok .warning__apply_wrap button span {
    display: block;
  }

  .anketa-form-page h2 {
    font-size: 23px;
    font-style: italic;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: -0.46px;
  }

  .jew-garderob .top-ban-wrap {
    height: 340px;
    width: 100%;
    margin-bottom: 90px;
    margin-top: 180px;
    background-position: 95% 0;
    background-size: 200%;
  }

  .jew-garderob .top-ban-wrap img {
    width: 100%;
    top: 112px;
  }

  .jew-garderob .top-ban-wrap div {
    left: unset;
    top: -140px;
    color: var(--white, #000);
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    text-align: center;
    width: 100%;
    margin: auto;
    display: block;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .jew-garderob .top-ban-wrap h1 {
    font-size: 23px;
    font-style: italic;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: -0.46px;
    text-transform: uppercase;
    color: var(--black, #000);
    text-align: center;
    margin-bottom: 15px;
  }

  .jew-garderob .top-ban-wrap h1 span {
    font-size: 23px;
    font-style: italic;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: -0.46px;
    text-transform: uppercase;
    display: unset;
  }

  .jew-garderob .top-ban-wrap p {
    width: 90%;
    display: block;
    margin: auto;
    font-size: 12px;
  }

  .jew-garderob .flex-wrap.garderob div.half {
    width: 100%;
  }

  .jew-garderob .flex-wrap.garderob div.half a img {
    width: 50%;
    margin-top: 10px;
  }

  .flex-wrap.garderob .half a {
    width: 100%;
    max-height: 190px;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .jew-garderob .flex-wrap.garderob div.half:nth-child(3) a img,
  .jew-garderob .flex-wrap.garderob div.half:nth-child(4) a img {
    width: 100%;
  }

  .jew-garderob .flex-wrap.garderob {
    text-align: center;
  }

  .simple-page .about .top-img-wrap h1 {
    font-family: Inter;
    font-size: 23px;
    font-style: italic;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: -0.46px;
    text-transform: uppercase;
  }

  .simple-page .about .top-img-wrap h1 span {
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: -0.46px;
    text-transform: uppercase;
  }

  .jew-garderob .flex-wrap.garderob div span {
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    width: 238px;
    display: block;
    margin: auto;
    height: unset;
  }

  form.call-me-form {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    width: 100%;
  }

  .call-me-form input {
    width: 100%;
  }

  .modal-content {
    padding: 0 15px;
  }

  form.call-me-form div span {
    font-size: 12px;
  }

  .jew-garderob .form-zag {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 30px;
  }

  .jew-garderob form.call-me-form div {
    width: 100%;
  }

  .jew-garderob form.call-me-form div:nth-child(2) {
    order: 1;
  }

  .jew-garderob form.call-me-form div:nth-child(3) {
    order: 4;
  }

  .jew-garderob form.call-me-form div:nth-child(4) {
    display: none;
  }

  .jew-garderob form.call-me-form div:nth-child(6) {
    order: 5;
  }

  .jew-garderob form.call-me-form div:nth-child(5) {
    order: 3;
  }

  .jew-garderob form.call-me-form div:nth-child(7) {
    order: 6;
  }

  .jew-garderob form.call-me-form {
    display: grid;
    padding: 0;
  }

  .jew-garderob form.call-me-form input.submit_kontakt {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }

  .jew-garderob .bottom-cats-wrap h2 .italic {
    font-style: normal;
  }

  .jew-garderob .bottom-cats-wrap h2 {
    font-style: italic;
    margin-bottom: 10px;
  }

  .bx-catalog-element.gard .breadcrumb span,
  .bx-catalog-element.gard .breadcrumb a {
    font-size: 8px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
  }

  .bx-catalog-element.gard .breadcrumb {
    margin: 0 0 16px;
  }

  .bx-catalog-element.gard .item-element-wrap .img-prop-price-btn .col-md-6.col-sm-12,
  .bx-catalog-element.gard .item-element-wrap .product-item-detail-slider-container,
  .bx-catalog-element.gard .item-element-wrap .product-item-detail-slider-block {
    min-width: 300px;
    min-height: 300px;
  }

  .product-item-detail-slider-block {
    padding-top: 100%;
  }

  .bx-catalog-element.gard .item-element-wrap .product-item-detail-slider-container {
    margin-bottom: 30px;
  }

  .simple-page .bx-catalog-element.gard h1 {
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }

  .bx-catalog-element.gard .item-element-wrap .product-item-detail-tab-content {
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
  }

  .bx-catalog-element.gard .h1-art-price-btn>.row>.col-sm-6 {
    display: block;
  }

  .item-element-wrap .product-item-detail-price-current {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }


  .btn.product-item-detail-buy-button span {
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }

  .item-element-wrap .btn.product-item-detail-buy-button {
    width: 90%;
    max-width: unset;
  }

  .bx-catalog-element.gard+.catalog-top.element h2 {
    margin: 80px 0 30px;
  }

  .bx-catalog-element.gard+.catalog-top.element #slider_bl_new .slider-wrapper .product-item-small-card .col-xs-6.col-md-3 {
    width: 50%;
    height: auto;
  }

  .bx-catalog-element.gard+.catalog-top.element #slider_bl_new .slider-wrapper .product-item-image-wrapper {
    height: 180px;
    width: 100%;
  }

  .bx-catalog-element.gard+.catalog-top.element #slider_bl_new .slider-wrapper .product-item-small-card .product-item-image-original {
    width: 100%;
    height: auto;
  }

  .bx-catalog-element.gard+.catalog-top.element #slider_bl_new .slider-wrapper .product-item-small-card .col-xs-6.col-md-3 {
    margin: 0;
  }

  .bx-catalog-element.gard+.catalog-top.element #slider_bl_new .slider-wrapper .product-item-small-card .product-item {
    height: auto;
  }

  .bx-catalog-element.gard+.catalog-top.element .slider-wrapper article .product-item-small-card .favor-check-block {
    display: none;
  }

  .about {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
  }

  .about .top-img-wrap,
  .about .top-img-wrap img,
  .about,
  .about .history img {
    width: 100%;
  }

  .about .mob.top-img-wrap {
    height: 300px;
    overflow: hidden;
    margin-top: 30px;
    position: unset;
    display: block;
    background: url(/local/templates/IZAR/images/brand_top.webp) no-repeat;
    background-size: auto 300px;
    margin-bottom: 80px;
    background-position: 110% 0;
  }

  .about .top-img-wrap img {
    height: 300px;
    width: auto;
  }

  .about h1 span {
    display: block;
  }

  .about h1 {
    margin: 47px 0 15px;
  }

  .about .text {
    text-align: center;
  }

  .about h2 {
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: -0.46px;
    text-transform: uppercase;
  }

  .about .history h2 span {
    display: unset;
    margin-right: 4px;
  }

  .about .history div:nth-child(1) {
    padding: 0;
  }

  .about .history div {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }

  .about .history {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }

  .about .history div:nth-child(1) {
    order: 1;
  }

  .about .history div:nth-child(2) {
    order: 2;
  }

  .about .history div:nth-child(4) {
    order: 3;
    padding: 0;
    margin-top: 50px;
  }

  .about .history div:nth-child(3) {
    order: 4;
  }

  .about .history div:nth-child(3) img {
    width: 48%;
    display: inline-block;
  }

  .about .history div:nth-child(3) img:nth-child(1) {
    margin-right: 9px;
  }

  .desk.top-img-wrap {
    display: none;
  }

  .about .history div:nth-last-child(2) {
    margin-bottom: 80px;
  }

  .about h2 span {
    display: block;
  }

  .about_page .bottom-cats-wrap h2 {
    text-align: left;
    margin-bottom: 30px;
    font-size: 21px;
    font-style: italic;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.21px;
    text-wrap: nowrap;
  }

  .about_page .bottom-cats-wrap h2 span.italic {
    font-style: normal;
    font-weight: 800;
  }

  .flex-wrap.benefit div img {
    width: 33%;
    height: auto;
  }

  .flex-wrap.benefit div img:nth-child(4) {
    display: none;
  }

  .about .benefit div:nth-child(1) {
    flex-wrap: wrap;
  }

  .about .benefit div {
    width: 100%;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 30px;
  }

  .about .benefit div:nth-child(2),
  .about .benefit div:nth-child(3) {
    margin-bottom: 30px;
  }

  .about .benefit h3 {
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0 0 20px;
    height: auto;
  }

  .bottom-cats-wrap {
    margin-top: 80px;
  }

  .block-popup .cookie-txt2,
  .msgok .cookie-txt2 {
    font-size: 12px;
  }

  .block-popup .warning-btn-n-span,
  .msgok .warning-btn-n-span {
    flex-wrap: wrap;
    margin-top: 20px;
  }

  .block-popup .warning__apply_wrap,
  .msgok .warning__apply_wrap {
    margin-top: 20px;
  }

  .bottom-cats-wrap h2,
  .bottom-cats-wrap h2.bx_catalog_line_title {
    margin: 10px 0 40px;
  }

  .popup-window-buttons {
    font-size: 12px;
  }

  .msgok {
    top: 0;
    left: 0;
    display: none;
    width: 100vw;
    height: 100vh;
    filter: none;
    z-index: 999;
  }

  .modal-dialog {
    position: relative;
    width: 90%;
    margin: auto;
    box-sizing: border-box;
  }

  .popup-window#sender_subscribe_component {
    left: 0 !important;
  }

  .contacts.page p,
  .contacts.page .phone-email,
  .contacts.page a#email-placeholder {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
  }

  .contacts.page .phone-email svg:nth-child(1) {
    width: 18px;
    height: 18px;
    margin-top: 20px;
  }

  .contacts.page .phone-email svg {
    height: 10px;
    width: auto;
  }

  .contacts.page .phone-email span {
    position: relative;
    top: 5px;
  }

  .contacts.page .partners img:nth-child(1) {
    width: 115px;
    height: auto;
  }

  .contacts.page .partners a:nth-child(2) img {
    width: 77px;
    height: auto;
  }

  .bx-catalog-element.sert .item-element-wrap {
    flex-wrap: wrap;
    margin-top: 0;
  }

  .bx-catalog-element.sert .item-element-wrap div img {
    width: 100%;
  }

  .bx-catalog-element.sert .item-element-wrap div.h1-art-price-btn {
    margin-left: 0;
    width: 100%;
  }

  .bx-catalog-element.sert .product-item-detail-tab-content.active span {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
  }

  .bx-catalog-element.sert .product-item-detail-tab-content.active {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }

  .bx-catalog-element.sert .price-current {
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.17px;
    margin: 25px auto 25px;
    text-align: center;
  }

  .bx-catalog-element.sert .item-element-wrap .btn.product-item-detail-buy-button {
    margin: auto;
  }

  #slider_bl_new .slider-prev-next-control {
    top: 369px;
    left: 295px;
  }

  .bx-catalog-element.sert .item-element-wrap .btn.product-item-detail-buy-button {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
  }

  .simple-page.pages #slider_bl_new #new-slide2:checked~.slider-prev-next-control label:nth-child(1) {
    left: -235px;
  }

  h2.sert {
    font-size: 21px;
    font-style: italic;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.21px;
  }

  h2.sert span {
    font-style: normal;
  }

  .simple-page.pages .slider#slider-new {
    height: auto;
  }

  .btn-slider-wrap {
    width: 100%;
    right: unset;
    top: 43%;
  }

  .natali {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }

  .natali .natali-img {
    width: 100%;
  }

  .natali .flex-wrap:nth-child(1) {
    flex-wrap: wrap;
    margin-bottom: 80px;
  }

  .natali .flex-wrap:nth-child(1) div:nth-child(1) {
    width: 100%;
    margin-right: 0;
    order: 1;
  }

  .natali .flex-wrap:nth-child(1) div:nth-child(2) {
    order: 2;
    width: 100%;
  }

  .natali h1 span {
    display: unset;
  }

  .natali h1 {
    margin: 18px 0 16px;
  }

  .natali h2 {
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: -0.46px;
    text-transform: uppercase;
  }

  .natali h2 span {
    font-size: 23px;
    font-style: italic;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: -0.46px;
    text-transform: uppercase;
  }

  .natali .flex-wrap.atelie div,
  .natali .flex-wrap.atelie div img {
    width: 100%;
  }

  .natali .flex-wrap.atelie div:nth-child(1),
  .natali .flex-wrap.atelie div:nth-child(2) {
    text-align: left;
  }

  .goroskop {
    margin-top: 47px;
  }

  .goroskop .flex-wrap {
    flex-wrap: wrap;
  }

  .goroskop .flex-wrap div:nth-child(1) img {
    width: 100%;
  }

  .goroskop .flex-wrap div:nth-child(1) {
    order: 1;
  }

  .goroskop .flex-wrap div:nth-child(2) {
    order: 2;
    padding: 0;
  }

  .goroskop .flex-wrap div:nth-child(1) {
    width: 100%;
  }

  .goroskop .flex-wrap div:nth-child(2) span.mini-zag {
    display: block;
    text-align: center;
  }

  .goroskop h1 {
    text-align: center;
  }

  .goroskop .flex-wrap .zodiac-stones div {
    width: 33%;
  }

  .goroskop .flex-wrap a.btn.btn-default {
    margin: 50px auto;
    display: block;
  }



  .razmery.whatsapp {
    margin: 22px auto 140px auto;
  }

  body .razmery.whatsapp span#whpp-grey {
    color: var(--grey, #767676);
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    text-transform: none;
    display: block;
  }

  body .whatsapp span#whpp-blck {
    color: var(--black, #000);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-transform: none;
  }

  .flex-wrap.rings+div {
    text-align: center;
    margin-top: 60px;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }

  .links {
    width: 100%;
  }


  .links a {
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.4px;
  }

  .basket-items-list-header.basket-items-list-header-fixed {
    position: relative;
    width: 100%;
  }

  .basket-items-list-wrapper-light .basket-items-list-header {
    display: block !important;
    width: 100%;
    box-sizing: border-box;
    margin-top: 30px;
  }

  .basket-items-list-header-filter {
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }

  .basket-item-price-old {
    position: relative;
  }

  .btn-back,
  .basket-checkout-section,
  .bx-basket.bx-blue .btn.btn-default {
    width: 100%;
    margin: 0 auto 9px;
  }

  .basket-checkout-container {
    margin: auto;
    padding: 0;
  }

  .basket-checkout-block-btn {
    padding: 0;
  }

  .basket-coupon-section {
    max-width: 100%;
    width: 100%;
  }

  .basket-checkout-block:nth-child(1) {
    display: none;
  }

  button.btn-refresh-page {
    background: transparent;
    border: none;
    background-image: url('data:image/svg+xml,<svg width="13px" height="13px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 21C16.9706 21 21 16.9706 21 12C21 9.69494 20.1334 7.59227 18.7083 6L16 3M12 3C7.02944 3 3 7.02944 3 12C3 14.3051 3.86656 16.4077 5.29168 18L8 21M21 3H16M16 3V8M3 21H8M8 21V16" stroke="%23d2d2d2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /></svg>');
    width: 13px;
    height: 13px;
    position: relative;
    top: 1px;
  }

  button.btn-refresh-page:hover {
    background-image: url('data:image/svg+xml,<svg width="13px" height="13px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 21C16.9706 21 21 16.9706 21 12C21 9.69494 20.1334 7.59227 18.7083 6L16 3M12 3C7.02944 3 3 7.02944 3 12C3 14.3051 3.86656 16.4077 5.29168 18L8 21M21 3H16M16 3V8M3 21H8M8 21V16" stroke="%23000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /></svg>');
  }

  .basket-item-block-image {
    width: 120px;
    height: 120px;
  }

  .basket-item-image {
    width: 100%;
    max-height: 109px;
  }

  .basket-items-list-item-descriptions-inner {
    flex-wrap: wrap;
  }

  .basket-item-info-name,
  .basket-item-info-name-link {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }

  #basket-item-table .basket-item-property-name,
  #basket-item-table .basket-item-property-custom-name,
  .bx-content-section .bx-basket .basket-item-property-scu-text .basket-item-scu-item-inner,
  .bx-content-section .bx-basket .basket-item-scu-item {
    font-size: 8px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px;
  }

  .bx-content-section .basket-items-list-item-price.basket-items-list-item-price-for-one.hidden-xs {
    display: none;
  }

  td.basket-items-list-item-amount {
    display: inline-flex;
    min-width: unset;
  }

  .basket-item-amount-btn-plus::after {
    width: 6px;
    margin-left: -3px;
  }

  .basket-item-amount-btn-plus::before {
    margin-top: -3px;
    width: 2px;
    height: 6px;
  }

  .basket-item-amount-btn-minus::after {
    width: 6px;
    margin-left: -3.5px;
  }

  .basket-item-amount-btn-minus,
  .basket-item-amount-btn-plus {
    background-color: unset;
    border: unset;
  }

  .basket-item-amount-filed {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    background-color: unset;
    border: unset;
    width: 11px;
  }

  .basket-item-amount-field-description {
    display: none;
  }

  .basket-items-list .basket-items-list-item-container:first-child>td {
    display: flex;
    width: 100%;
  }

  .basket-item-block-price,
  .basket-item-block-amount,
  .basket-item-block-info,
  basket-item-block-image {
    padding: 0;
    margin: 0;
    display: inline-flex;
  }

  .basket-item-block-info {
    flex-wrap: wrap;
  }

  .basket-item-price-current-text {
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
  }

  .basket-items-list-header.basket-items-list-header-fixed {
    border: none;
    box-sizing: border-box;
  }

  .btn-back,
  .btn-back,
  .bx-basket.bx-blue .btn.btn-default,
  .btn.btn-primary.btn-lg {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    height: auto;
    padding: 10px;
  }

  .btn.btn-primary.btn-lg+.btn.btn-link {
    margin-left: 7px;
  }

  .col-lg-8.col-md-7.bx-soa,
  .bx-soa-section.bx-active.bx-selected,
  .bx-authform input[type=text],
  input[type=password],
  .bx-authform input[type=password] {
    width: 100%;
  }

  input[type=password],
  .bx-authform input[type=password],
  .bx-authform input[type=text] {
    height: auto;
    padding: 14px;
    box-sizing: border-box;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .form-group.bx-soa-customer-field input[type=text],
  .form-group.bx-soa-customer-field textarea {
    width: 100%;
  }

  .row#bx-soa-order {
    flex-wrap: wrap;
  }

  .oformlenie-right-column {
    width: 100%;
    margin: auto;
    box-shadow: none;
    padding: 0;
  }

  .oformlenie-left-column {
    width: 100%;
  }

  .bx-soa-item-img-block {
    width: 120px;
    height: 120px;
  }

  .bx-soa-item-title a {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }

  .bx-scu-container .bx-soa-item-td-text,
  .bx-scu-container .bx-soa-item-td-title,
  .bx-soa-reference.col,
  .bx-soa-wrapper,
  .bx-soa .form-group label {
    font-size: 8px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px;
  }

  #authRememberCheckbox,
  .bx-authform label {
    display: inline-block;
  }

  .form-check.mb-3 {
    margin: 10px 0;
  }

  .bx-authform .mb-3:nth-child(4)+div {
    text-align: center;
  }

  .bx-soa-reg-block {
    padding: 0;
    background: unset;
  }

  .bx-soa-reg-block .btn.btn-primary.btn-lg {
    display: block;
  }

  .item-element-wrap .btn.product-item-detail-buy-button,
  .anketa-form form input[type=submit],
  .dop-anketa#slider_bl_new .slider-next-anketa,
  .dop-anketa#slider_bl_new .slider-prev-anketa {
    font-size: 12px;
  }

  .bx-soa-customer-field,
  .bx-soa-customer-field input,
  .bx-soa-customer-field textarea,
  .bx-soa-pp-company-smalltitle {
    font-size: 12px;
  }

  .bx-soa-pp-desc-container {
    width: 100%;
  }

  .dop-anketa#slider_bl_new .oformlenie-right-column {
    margin: auto;
  }

  input[type=checkbox].bx-soa-pp-company-checkbox {
    width: 11px;
    height: 11px;
  }


  .recykling h1+span {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    width: unset;
  }

  .recykling h1+span+div {
    background-image: url("/local/templates/IZAR/images/atelie-top-ban.webp");
    height: 300px;
    background-position: -300px top;
    background-repeat: no-repeat;
    background-size: auto 300px;
    margin-top: 30px;
  }


  .recykling h2+.flex-wrap {
    flex-wrap: wrap;
  }

  .recykling h2+.flex-wrap .half {
    width: 100%;
  }

  .recykling h2+.flex-wrap .half img {
    width: 100%;
    margin-top: 30px;
  }


  .flex-wrap.box {
    flex-wrap: wrap;
    margin-bottom: 80px;
  }

  .flex-wrap.box .half {
    width: 100%;
  }

  .flex-wrap.box .half:nth-child(1) img {
    width: 100%;
  }

  .flex-wrap.box .half:nth-child(1) {
    margin-bottom: 30px;
  }

  .flex-wrap.box .half {
    width: 100%;
  }

  .flex-wrap.box .half .whatsapp {
    margin: 20px auto;
  }

  form.gem-bar-form input[type=radio] {
    display: none;
  }

  form.gem-bar-form label:before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 18px;
    position: absolute;
    left: 0;
    bottom: 1px;
    background: url(/local/templates/IZAR/images/s1.webp) 0 0 no-repeat;
  }

  form.gem-bar-form label {
    width: 32%;
    display: inline-flex;
  }

  form.gem-bar-form label img {
    cursor: pointer;
    border: 2px solid transparent;
    width: 100%;
    height: auto;
    margin-right: 8px;
    box-sizing: border-box;
  }

  form.gem-bar-form div#third-step label span {
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }

  form.gem-bar-form {
    display: flex;
    flex-wrap: wrap;
  }

  form.gem-bar-form label>input {
    visibility: hidden;
    position: absolute;
  }

  .gem-bar-form-block.gem-left {
    width: 100%;
    order: 2;
  }

  .gem-bar-form-block.gem-left div {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin: 20px auto 20px;
  }

  .gem-bar-form-block.gem-left .input+input {
    display: none;
  }

  .gem-bar-form-block.gem-left input {
    width: 100%;
    display: block;
  }

  .gem-bar-form-block.gem-left input.input {
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    border-bottom: solid 1px #000;
    box-sizing: border-box;
    margin-bottom: 20px;
    padding: 3px 0;
  }

  .gem-bar-form-block.gem-left input.submit_kontakt {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border: 1px solid var(--black, #000);
    background-color: #fff;
    border-radius: 0;
    height: 35px;
  }

  .gem-bar-form-block.gem-right {
    width: 100%;
    margin: 0 auto 21px;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    order: 1;
  }

  .gem-bar-form-block.gem-left img {
    width: 30%;
    margin: auto;
    display: block;
  }

  .gem-bar-form-block.gem-left .sticky span {
    opacity: 0;
  }

  .gem-bar-form-block.gem-left .sticky {
    transform: translateY(100%);
    transition: transform 1s;
  }

  .gem-bar-form-block.gem-left .sticky.fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    background: #fff;
    z-index: 999;
    margin: 0;
    padding: 15px 40px;
    max-height: 40vh;
    top: unset;
    border-top: solid 2px var(--fiolet);
    transition: transform 1s;
    transform: translateY(0);
  }

  .gem-bar-form-block.gem-left .sticky.fixed.full {
    bottom: unset;
    top: 0;
    max-height: 100vh;
    height: 100vh;
  }

  .gem-bar-form-block.gem-left .sticky.fixed.full span {
    opacity: 1;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 99999;
    display: block;
  }

  .gem-bar-form-block.gem-left .sticky.fixed.full img {
    width: 100%;
  }

  form.gem-bar-form label input:checked+img {
    box-shadow: 0 0 9px 0 #764AF1;
  }

  .gem-right.gem-bar-form-block div {
    margin-bottom: 11px;
    margin-top: 40px;
  }

  .gem-bar-form-page h1 span {
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: -0.46px;
    margin: 47px auto 15px;
  }

  .gem-bar-form-page h1+div {
    width: 100%;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    margin: 0 auto 30px;
  }

  div.gem-bann {
    width: 100%;
    height: 290px;
    background: url("/local/templates/IZAR/images/gem-bann.webp") no-repeat;
    background-size: 100%;
    background-position: center;
    margin-bottom: 80px;
  }

  .sale-personal-section-index-block-link,
  .sale-personal-section-index-block-link:hover,
  .sale-personal-section-index-block-link:active,
  .sale-personal-section-index-block-link:focus,
  .sale-personal-section-index-block-link:visited {
    width: 100%;
  }

  .row.sale-personal-section-row-flex .col-lg-4.col-md-6.col-sm-12.col-xs-12 {
    width: 30%;
  }

  h2.sale-personal-section-index-block-name {
    color: var(--white, #FFF);
    text-align: center;
    font-family: Inter;
    font-size: 8px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
  }

  .bx_item_list_recommended_products {
    flex-wrap: wrap;
  }

  .bx_item_list_recommended_products .quart.product-item-big-card {
    width: 50%;
    padding: 10px;
  }

  .bx_item_list_recommended_products .quart.product-item-big-card .product-item-price-container,
  .bx_item_list_recommended_products .quart.product-item-big-card .product-item-info-container.product-item-hidden {
    display: none;
  }
}