a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
  outline: none;
}
button:focus {
  outline: none;
}
figure {
  margin: 0;
}
input {
  outline: none;
}
input:focus {
  outline: none;
}
input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}
ul,
ol,
dd,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}
p {
  margin: 0;
}
cite {
  font-style: normal;
}
fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}
form {
  margin: 0;
}
.page {
  font-family: Arial;
  font-size: 1rem;
  font-weight: 400;
  color: #515050;
}
.page {
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.outer {
  padding: 0 2rem;
}
@media screen and (max-width: 1023px) {
  .outer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media screen and (max-width: 575px) {
  .outer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.inner {
  margin: 0 auto;
  max-width: 1290px;
  width: 100%;
}
.menu-nav {
  will-change: left;
}
@media screen and (max-width: 767px) {
  .menu-nav {
    margin-left: 0;
    position: fixed;
    top: 0;
    left: -110%;
    z-index: 100;
    min-width: 200px;
    width: 50%;
    height: 100vh;
    background-color: #232323;
    color: #fff;
    font-size: 14px;
    transition: left 0.75s;
  }
  .menu-nav.active {
    left: 0;
  }
}
.menu-burger {
  padding-bottom: 5px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 21;
}
.menu-burger--catalog {
  z-index: 31;
}
.menu-burger .line {
  width: 21px;
  height: 3px;
  background: #515050;
  border-radius: 5px;
  margin-top: 3px;
  transition: all 0.5s ease-in-out;
}
.menu-burger.active {
  z-index: 9999;
}
.menu-burger.active .line {
  background-color: #d0043c;
}
.menu-burger.active .line:nth-child(1) {
  transform: translateY(3px) rotate(-45deg);
}
.menu-burger.active .line:nth-child(2) {
  position: absolute;
  opacity: 0;
}
.menu-burger.active .line:nth-child(3) {
  transform: translateY(-3px) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .menu-burger {
    display: none;
  }
}
.menu-burger--catalog {
  margin-left: 10px;
  position: static;
  transform: none;
}
.overlay {
  display: block;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.5s ease-in-out;
  position: fixed;
}
.overlay.active {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 20;
}
.overlay--catalog.active {
  z-index: 30;
}
@media screen and (min-width: 768px) {
  .overlay {
    display: none;
  }
}
.s-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.s-title--1 {
  text-align: center;
}
.s-title--2 {
  -moz-text-align-last: left;
  text-align-last: left;
}
.s-subtitle {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.73;
}
.s-subtitle--1 {
  margin-left: auto;
  margin-right: auto;
  max-width: 850px;
  text-align: center;
}
.s-subtitle--2 {
  max-width: 1180px;
  text-align: left;
}
.section-btn {
  margin: 0 auto;
  margin-top: 40px;
  width: 240px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #515050;
  border-radius: 15px;
  font-size: 15px;
}
.section-btn:hover {
  color: #d0043c;
}
.sl-pag {
  width: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 30px;
  left: 0;
  z-index: 100;
}
.sl-pag-bullet {
  display: block;
  margin: 0 10px;
  width: 10px;
  height: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
}
.sl-pag-bullet-active {
  background: #e0e0e0;
}
@media screen and (max-width: 575px) {
  .sl-pag {
    bottom: 20px;
  }
}
.sl-nav {
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  transition: background 0.2s;
}
.sl-nav:hover {
  background: rgba(122, 122, 122, 0.14);
}
.sl-nav::before {
  content: '';
  position: absolute;
  width: 9px;
  height: 14px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url('/assets/img/icons/slider-arrow-left.svg') 50% / contain
    no-repeat;
}
.sl-nav--next {
  right: -60px;
}
.sl-nav--next::before {
  transform: translate(-50%, -50%) rotateY(180deg);
}
.sl-nav--prev {
  left: -60px;
}
@media screen and (max-width: 1279px) {
  .sl-nav--next {
    right: -20px;
  }
  .sl-nav--prev {
    left: -20px;
  }
}
@media screen and (max-width: 575px) {
  .sl-nav--next {
    right: 0;
  }
  .sl-nav--prev {
    left: 0;
  }
}
.m-form {
  padding: 30px;
  padding-right: 0;
  font-size: 14px;
  width: 100%;
}
.m-form-wrapper {
  padding-top: 32px;
  display: flex;
}
.m-form-left {
  position: relative;
  padding: 30px;
  width: calc(41 / 129 * 100%);
  flex-shrink: 0;
  min-height: 410px;
  background-color: #d0043c;
  border-radius: 15px;
  font-size: 23.66px;
  color: #fff;
}
.m-form-left__phone {
  margin-top: 27px;
}
.m-form-left__logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 25px;
}
.m-form-left__logo img {
  max-width: 100%;
  height: auto;
}
.m-form-inputs--top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 26px;
}
.m-form-input {
  display: block;
  margin: 0 auto;
  max-width: 266px;
  height: 36px;
  padding: 10px 12px;
  width: 100%;
  height: 36px;
  border: 1px solid #515050;
  border-radius: 15px;
}
.m-form-input-wrapper {
  width: 100%;
}
.m-form-input::placeholder,
.m-form-input::-webkit-input-placeholder,
.m-form-input::-moz-placeholder {
  color: #959595;
}
.m-form-input-textarea {
  padding: 12px;
  width: 100%;
  height: 153px;
  border: 1px solid #515050;
  border-radius: 15px;
  resize: none;
}
.m-form-input-textarea-wrapper {
  margin-top: 30px;
  max-width: 100%;
}
.m-form-input-textarea::placeholder,
.m-form-input-textarea::-webkit-input-placeholder,
.m-form-input-textarea::-moz-placeholder {
  color: #959595;
}
.m-form-input-file-wrapper {
  margin-top: 29px;
}
.m-form-submit {
  margin-top: 30px;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.m-form-submit__text {
  letter-spacing: -0.015em;
}
.m-form-submit__btn {
  height: 40px;
  background: #d0043c;
  border-radius: 15px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .m-form-left {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .m-form {
    padding-right: 0;
    padding-left: 0;
  }
  .m-form-wrapper {
    flex-wrap: wrap;
  }
  .m-form-left {
    padding: 20px;
    padding-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-template-rows: -webkit-max-content;
    grid-template-rows: max-content;
    justify-items: center;
    gap: 10px;
    width: 100%;
    min-height: 200px;
    font-size: 18px;
  }
  .m-form-left__phone {
    margin-top: 0;
  }
  .m-form-inputs {
    gap: 20px;
  }
  .m-form-inputs--top {
    gap: 15px;
  }
}
@media screen and (max-width: 575px) {
  .m-form {
    padding-top: 20px;
    padding-bottom: 0;
  }
  .m-form-input {
    max-width: 100%;
  }
  .m-form-input-textarea-wrapper {
    margin-top: 20px;
  }
  .m-form-input-file-wrapper {
    margin-top: 20px;
  }
  .m-form-submit {
    margin-top: 20px;
    grid-template-columns: 1fr;
  }
}
.s-form {
  margin: 0 auto;
  max-width: 1070px;
  font-size: 14px;
  width: 100%;
}
.s-form-wrapper {
  padding: 32px 0 60px;
}
.s-form-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.s-form-input {
  display: block;
  margin: 0 auto;
  height: 36px;
  padding: 10px 12px;
  width: 100%;
  height: 36px;
  border: 1px solid #515050;
  border-radius: 15px;
}
.s-form-input-wrapper {
  width: 100%;
}
.s-form-input::placeholder,
.s-form-input::-webkit-input-placeholder,
.s-form-input::-moz-placeholder {
  color: #959595;
}
.s-form-input-textarea {
  padding: 12px;
  width: 100%;
  border: 1px solid #515050;
  border-radius: 15px;
  resize: none;
}
.s-form-input-textarea-wrapper {
  grid-row: span 2;
}
.s-form-input-textarea::placeholder,
.s-form-input-textarea::-webkit-input-placeholder,
.s-form-input-textarea::-moz-placeholder {
  color: #959595;
}
.s-form-submit {
  margin: 0 auto;
  margin-top: 25px;
  max-width: 850px;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.s-form-submit__btn {
  height: 40px;
  background: #d0043c;
  border-radius: 15px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
@media screen and (max-width: 575px) {
  .s-form-wrapper {
    padding-bottom: 30px;
  }
  .s-form-inputs {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .s-form-submit {
    grid-template-columns: 1fr;
  }
}
.input-file span {
  display: inline-flex;
  align-items: center;
  position: relative;
  color: #d0043c;
}
.input-file span:hover {
  text-decoration: underline;
}
.input-file span::before {
  content: '';
  width: 24px;
  height: 24px;
  background: url('/assets/img/icons/paper-clip.svg') 50% / contain no-repeat;
  display: block;
  margin-right: 15px;
}
.input-file input {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}
.input-file input:valid ~ span {
  background-color: #000;
}
.input-file input:valid ~ span::after {
  content: '1';
  position: absolute;
  right: -20px;
  top: 0;
}
.text-h {
  margin-top: 25px;
  line-height: 1.2;
}
.text-h--1 {
  font-size: 24px;
}
.text-h--2 {
  font-size: 20px;
}
.text-p {
  margin-top: 15px;
  text-align: justify;
  letter-spacing: 0.003em;
  font-size: 15px;
  line-height: 1.73;
}
.text-ul {
  padding-top: 10px;
  padding-left: 50px;
  font-size: 15px;
  line-height: 1.73;
}
.text-ul > li {
  margin-top: 5px;
  padding-left: 5px;
  list-style: square;
}
@media screen and (max-width: 575px) {
  .text-ul {
    padding-left: 25px;
  }
}
.dropdown {
  display: none;
  position: absolute;
  z-index: 100;
  top: 50px;
  left: -29px;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -20px;
  width: 110%;
  height: 125%;
  z-index: 200;
}
.dropdown-content {
  padding: 30px;
  width: 240px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.83;
}
.dropdown-content--left {
  background: #f2f2f2;
  color: #515050;
}
.dropdown-content--right {
  background: #515050;
  color: #fff;
}
.dropdown-content > li:hover {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .dropdown-content {
    display: none;
  }
}
.breadcrumb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30px, -webkit-max-content));
  grid-template-columns: repeat(auto-fit, minmax(30px, max-content));
  gap: 11px;
  color: #828282;
  font-size: 10px;
  letter-spacing: -0.04em;
}
.breadcrumb-wrapper {
  padding-top: 40px;
  padding-bottom: 30px;
}
.breadcrumb > li {
  position: relative;
  text-decoration: underline;
  display: flex;
  align-items: center;
}
.breadcrumb > li:last-of-type {
  text-decoration: none;
}
.breadcrumb > li:last-of-type::after {
  display: none;
}
.breadcrumb > li::after {
  content: '';
  display: block;
  margin-left: 10px;
  width: 5px;
  height: 9px;
  background: url('/assets/img/icons/breadcrumb-arrow.svg') 50% / contain
    no-repeat;
}
@media screen and (max-width: 575px) {
  .breadcrumb-wrapper {
    padding-top: 30px;
    padding-bottom: 20px;
  }
  .breadcrumb > li {
    text-align: center;
  }
}
.product-color {
  margin: 20px 0 0 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.product-color-items {
  display: flex;
  flex-wrap: wrap;
  margin: -20px 0 0 -20px;
  width: calc(100% + $gap-x);
}
.product-color__title {
  font-size: 16px;
}
.product-color > input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.product-color > input:checked ~ span::after {
  display: block;
}
.product-color > span {
  position: relative;
  height: 16px;
  width: 16px;
  display: block;
  background-color: #eee;
  border-radius: 50%;
}
.product-color > span::after {
  content: '';
  display: none;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  position: absolute;
  left: -4px;
  right: -4px;
  top: -4px;
  bottom: -4px;
  border: 1px solid #515050;
  border-radius: 50%;
}
.product-color--red > span {
  background-color: #d0043c;
}
.product-color--yellow > span {
  background-color: #f2c94c;
}
.product-color--blue > span {
  background-color: #27ae60;
}
.product-tile {
  margin: 0 auto;
  max-width: 300px;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.product-tile:hover {
  box-shadow: 0px 0px 28px rgba(0, 0, 0, 0.25);
}
.product-tile__view {
  padding: 30px 30px 0;
  position: relative;
  height: 260px;
}
.product-tile__view.item-hit::before {
  content: '';
  width: 36px;
  height: 48px;
  position: absolute;
  left: 30px;
  top: 30px;
  background: url('/assets/img/icons/hit.svg') 50% / contain no-repeat;
}
.product-tile__view.item-discount::before {
  content: '';
  width: 48px;
  height: 48px;
  position: absolute;
  left: 30px;
  top: 30px;
  background: url('/assets/img/icons/discount.svg') 50% / contain no-repeat;
}
.product-tile__star {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 30px;
  right: 30px;
  background: url('/assets/img/icons/star2.svg') 50% / contain;
}
.product-tile__star:hover {
  background-image: url('/assets/img/icons/star2-active.svg');
}
.product-tile__star.active {
  background-image: url('/assets/img/icons/star2-active.svg');
}
.product-tile__img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-tile__img img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.product-tile__info {
  padding: 24px 30px 30px;
  font-size: 12.23px;
}
.product-tile__price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 30px;
}
.product-tile__price-old {
  font-size: 16px;
  font-weight: 400;
  text-decoration: line-through;
  margin-right: 20px;
}
.product-tile__name {
  margin-top: 15px;
  font-weight: 700;
  color: #cd2152;
}
.product-tile__code {
  margin-top: 15px;
}
.product-tile__btn {
  display: block;
  margin: 28px auto 0;
  height: 40px;
  width: 240px;
  border: 1px solid #d0043c;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 700;
}
.product-tile__btn:hover {
  background-color: #d0043c;
  color: #fff;
}
.product-tile-color-items {
  padding-top: 7px;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  margin: -16px 0 0 -16px;
  width: calc(100% + $gap-x);
}
.product-tile-color-items > * {
  margin: 16px 0 0 16px;
}
.big-slider-container {
  border-radius: 15px;
}
.big-slider-wrapper {
  margin-top: 31px;
  position: relative;
}
.big-slider-item {
  position: relative;
  overflow: hidden;
  background: #c4c4c4;
  border-radius: 15px;
  line-height: 0;
}
.big-slider-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.big-slider-item::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.item-discount::before {
  content: '';
  width: 48px;
  height: 48px;
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 10;
  background: url('/assets/img/icons/discount.svg') 50% / contain no-repeat;
}
.item-discount--big::before {
  width: 96px;
  height: 96px;
}
@media screen and (max-width: 575px) {
  .item-discount::before {
    top: 10px;
    left: 10px;
  }
  .item-discount--big::before {
    width: 70px;
    height: 70px;
  }
}
.item-hit::before {
  content: '';
  width: 36px;
  height: 48px;
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 10;
  background: url('/assets/img/icons/hit.svg') 50% / contain no-repeat;
}
.item-star {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 20px;
  right: 20px;
  background: url('/assets/img/icons/star2.svg') 50% / contain;
  z-index: 100;
}
.item-star:hover {
  background-image: url('/assets/img/icons/star2-active.svg');
}
.item-star.active {
  background-image: url('/assets/img/icons/star2-active.svg');
}
.item-star--big {
  width: 48px;
  height: 48px;
}
@media screen and (max-width: 575px) {
  .item-star {
    top: 10px;
    right: 10px;
  }
}
.products-small-slider {
  margin-top: 35px;
  position: relative;
}
.products-small-slider-container {
  overflow: unset !important;
}
.products-small-slider-wrapper {
  margin: -25px;
  padding: 25px;
  overflow: hidden;
}
.content-nav {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-nav-items {
  display: flex;
}
.content-nav-items > li {
  margin: 0 6px;
}
.content-nav-items > li.active {
  color: #d0043c;
}
.content-nav-arrow {
  width: 20px;
  height: 20px;
  position: relative;
}
.content-nav-arrow::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url('/assets/img/icons/slider-arrow-left.svg') 50% / contain
    no-repeat;
}
.content-nav-arrow--next::before {
  transform: translate(-50%, -50%) rotateY(180deg);
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal__container {
  background-color: #fff;
  padding: 30px;
  max-width: 500px;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}
.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal__header .modal__close:before {
  content: '\2715';
}
.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}
.modal__close {
  background: transparent;
  border: 0;
}
.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}
.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  text-transform: none;
  overflow: visible;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.25s ease-out;
}
.modal__btn:hover,
.modal__btn:focus {
  transform: scale(1.05);
}
.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}
@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}
.micromodal-slide.is-open {
  display: block;
}
.micromodal-slide[aria-hidden='false'] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden='false'] .modal__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden='true'] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden='true'] .modal__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}
.lightbox-modal__overlay {
  z-index: 999;
}
.lightbox-modal__container {
  padding: 0;
  width: 100%;
  max-width: 1290px;
  height: 100%;
  max-height: 769px;
  position: relative;
  right: 9px;
}
@media screen and (max-width: 575px) {
  .lightbox-modal__container {
    max-height: 80vh;
  }
}
.range-slider-inputs {
  margin-top: 22px;
  display: grid;
  grid-template-columns: -webkit-max-content -webkit-max-content;
  grid-template-columns: max-content max-content;
  gap: 10px;
  align-items: center;
}
.range-slider-inputs > label {
  display: flex;
  align-items: center;
}
.range-slider-input {
  margin-left: 5px;
  height: 35px;
  width: 80px;
  border-radius: 15px;
  text-align: center;
  font-size: 16px;
  color: inherit;
}
.range-slider-input-slider {
  margin-top: 10px;
}
.range-slider .multi-range {
  height: 15px;
  display: flex;
  align-items: center;
  background: none;
  border: none;
  box-shadow: none;
}
.noUi-base {
  height: 2px;
}
.noUi-connects {
  background-color: #9d9d9d;
}
.noUi-connect {
  background-color: #cd2152;
}
.noUi-touch-area {
  height: 10px;
}
.noUi-horizontal .noUi-handle {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  border-color: #cd2152;
  background: #fff;
}
.noUi-horizontal .noUi-handle::before,
.noUi-horizontal .noUi-handle::after {
  display: none;
}
.header .upheader {
  min-height: 40.67px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #515050;
  color: #9d9d9d;
  font-weight: 700;
  font-size: 12px;
}
.header .upheader-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .upheader-contacts {
  display: grid;
  grid-template-columns: -webkit-max-content auto auto;
  grid-template-columns: max-content auto auto;
  gap: 32px;
}
.header .upheader-contacts__item:hover {
  color: #fff;
}
.header .upheader-ctext {
  color: #fff;
}
.header .upheader-menu {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
}
.header .upheader-menu__nav {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 35px;
}
.header .upheader-menu__nav > li:hover {
  color: #fff;
}
.header .upheader-menu__socials {
  margin-left: 33px;
  display: grid;
  grid-template-columns: repeat(2, -webkit-min-content);
  grid-template-columns: repeat(2, min-content);
  gap: 15px;
  line-height: 0.65;
}
.header .subheader {
  min-height: 81.33px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  box-shadow: 0px 7px 28px rgba(0, 0, 0, 0.25);
  font-weight: 700;
  font-size: 18px;
}
.header .subheader-logo {
  line-height: 0.65;
}
.header .subheader-logo img {
  max-width: 100%;
  height: auto;
}
.header .subheader-menu {
  padding-left: 10px;
  display: grid;
  grid-template-columns: repeat(4, -webkit-max-content);
  grid-template-columns: repeat(4, max-content);
  gap: 58px;
}
.header .subheader-menu > li {
  position: relative;
}
.header .subheader-menu > li:hover {
  color: #d0043c;
}
.header .subheader-menu > li:hover .dropdown {
  display: flex;
}
.header .subheader-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .subheader-icons {
  padding-right: 4px;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 29.72px;
}
.header .subheader-icons a {
  display: block;
  line-height: 0.6;
}
.header .subheader-icon--bag {
  position: relative;
}
.header .subheader-icon--bag span {
  position: absolute;
  right: -4px;
  bottom: -3px;
  width: 13.64px;
  height: 13.94px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #d0043c;
  border-radius: 50%;
  color: #fff;
  font-size: 7px;
}
@media screen and (max-width: 1279px) {
  .header .upheader-contacts {
    display: none;
  }
  .header .subheader-menu {
    gap: 40px;
  }
}
@media screen and (max-width: 1023px) {
  .header .subheader-menu {
    padding-left: 20px;
    padding-right: 20px;
    gap: 20px;
    font-size: 15px;
  }
  .header .subheader-icons {
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .header .upheader-ctext {
    display: none;
  }
  .header .upheader-menu {
    width: 100%;
    align-items: center;
  }
  .header .upheader-menu__nav {
    gap: 10px;
  }
  .header .upheader-menu__socials {
    margin-left: 10px;
    justify-content: flex-end;
  }
  .header .subheader {
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.25);
    position: relative;
  }
  .header .subheader-menu {
    padding-top: 20px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .header .subheader-menu > li {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
  }
  .header .subheader-menu a {
    padding-left: 20px;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 16px;
  }
  .header .subheader-icons {
    padding-right: 30px;
    gap: 30px;
  }
}
@media screen and (max-width: 575px) {
  .header .upheader {
    min-height: 35px;
  }
  .header .subheader-logo {
    max-width: 200px;
  }
  .header .subheader-content {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
  }
  .header .subheader-icons {
    padding-right: 0;
    padding-bottom: 15px;
  }
}
.promo {
  padding-top: 40px;
  padding-bottom: 30px;
}
.promo-slider {
  border-radius: 15px;
}
.promo-slider-wrapper {
  position: relative;
}
.promo-item {
  overflow: hidden;
  background: #c4c4c4;
  border-radius: 15px;
  line-height: 0;
}
.promo-item__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.promo-item__text {
  position: absolute;
  left: 0;
  top: 40px;
  padding-right: 20px;
  width: 241px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e0e0e0;
  font-size: 16px;
  font-weight: 700;
  -webkit-clip-path: polygon(
    100% 0px,
    90.92% 49%,
    100% 100%,
    0px 100%,
    0px 0px
  );
  clip-path: polygon(100% 0px, 90.92% 49%, 100% 100%, 0px 100%, 0px 0px);
}
@media screen and (max-width: 575px) {
  .promo-item__text {
    width: 200px;
    height: 40px;
    top: 20px;
    font-size: 15px;
  }
}
.services {
  padding-top: 30px;
  padding-bottom: 30px;
}
.services-items {
  margin-top: 31px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 30px;
}
.services-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  line-height: 0.75;
}
.services-item::before {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  transition: opacity 1s;
}
.services-item:hover::before {
  opacity: 0;
}
.services-item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.services-item__text {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
  color: #fff;
}
@media screen and (max-width: 575px) {
  .services-items {
    justify-items: center;
    grid-template-columns: 1fr;
  }
  .services-item__text {
    font-size: 16px;
  }
}
.catalog {
  padding-top: 29px;
  padding-bottom: 29px;
}
.catalog-items {
  margin-top: 31px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 30px;
}
.catalog-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  line-height: 0.75;
}
.catalog-item::before {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  transition: opacity 1s;
}
.catalog-item:hover::before {
  opacity: 0;
}
.catalog-item > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.catalog-item__text {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
  color: #fff;
}
@media screen and (max-width: 575px) {
  .catalog-items {
    justify-items: center;
    grid-template-columns: 1fr;
  }
  .catalog-item__text {
    font-size: 16px;
  }
}
.bestseller {
  padding-top: 30px;
  padding-bottom: 30px;
}
.bestseller-slider {
  position: relative;
}
.bestseller-slider-container {
  overflow: unset !important;
}
.bestseller-slider-wrapper {
  margin: -25px;
  margin-top: 7px;
  padding: 25px;
  overflow: hidden;
}
.portfolio {
  padding-top: 30px;
  padding-bottom: 30px;
}
.portfolio-items {
  margin-top: 31px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 30px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  line-height: 0.75;
}
.portfolio-item::before {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  transition: opacity 1s;
}
.portfolio-item:hover::before {
  opacity: 0;
}
.portfolio-item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.portfolio-item__text {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
  color: #fff;
}
.portfolio-btn {
  margin: 0 auto;
  margin-top: 40px;
  width: 240px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #515050;
  border-radius: 15px;
  font-size: 15px;
}
.portfolio-btn:hover {
  color: #d0043c;
}
@media screen and (max-width: 767px) {
  .portfolio-items {
    justify-items: center;
    grid-template-columns: 1fr;
  }
  .portfolio-item__text {
    font-size: 16px;
  }
}
.advantages {
  padding-top: 30px;
  padding-bottom: 30px;
}
.request {
  padding-top: 30px;
  padding-bottom: 30px;
}
.text-example {
  padding-top: 42px;
  padding-bottom: 30px;
}
.footer {
  margin-top: auto;
}
.footer-wrapper {
  margin-top: 70px;
  padding-top: 53px;
  padding-bottom: 45px;
  background: #515050;
}
.footer-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(calc(1290px / 5), 1fr));
  gap: 30px;
  color: #fff;
  font-size: 12px;
}
.footer-item__title {
  font-size: 24px;
}
.footer-item__list {
  padding-top: 20px;
  line-height: 1.45;
}
.footer-item__list li {
  margin-top: 9px;
}
.footer-item__list li:hover {
  text-decoration: underline;
}
.footer-item__contacts {
  margin-top: 30px;
  display: grid;
  gap: 9px;
  line-height: 1.45;
}
.footer-item__socials {
  margin-top: 30px;
}
.footer-item__socials-items {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, -webkit-min-content);
  grid-template-columns: repeat(2, min-content);
  gap: 10px;
}
.footer-copyright {
  margin-top: 25px;
  padding-top: 10px;
  border-top: 1.74898px solid #9d9d9d;
  font-size: 14px;
  color: #9d9d9d;
  display: flex;
  justify-content: space-between;
}
.footer .f-dim {
  color: #9d9d9d;
}
@media screen and (max-width: 575px) {
  .footer-wrapper {
    padding-top: 30px;
    padding-bottom: 20px;
  }
  .footer-item__list {
    padding-top: 10px;
  }
  .footer-copyright {
    flex-wrap: wrap;
    line-height: 1.5;
  }
}
.products {
  padding-top: 30px;
  padding-bottom: 30px;
}
.products-block {
  margin-top: 60px;
  display: flex;
}
.products-ctg {
  width: calc(30 / 129 * 100%);
  flex-shrink: 0;
}
.products-ctg__title {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
}
.products-ctg-items {
  margin-top: 22px;
}
.products-ctg-items > li {
  margin-top: 3.5px;
  line-height: 1.47;
}
.products-ctg-items > li.active > a,
.products-ctg-items > li:hover > a {
  text-decoration: underline;
}
.products-ctg-items > li.active > .products-ctg-dropdown-content {
  display: block;
}
.products-ctg-dropdown-content {
  display: none;
  padding: 15px;
  padding-top: 10px;
}
.products-ctg-dropdown-content > li {
  margin-top: 3px;
}
.products-ctg-dropdown-content > li > a:hover {
  color: #cd2152;
}
.products-content-top {
  display: flex;
  align-items: center;
  max-width: 434px;
}
.products-filters {
  position: relative;
  padding: 0 35px;
  width: 100%;
  height: 60px;
  display: grid;
  grid-template-columns: repeat(4, -webkit-max-content);
  grid-template-columns: repeat(4, max-content);
  gap: 49px;
  align-items: center;
  border: 1px solid #515050;
  border-radius: 15px;
  font-size: 14px;
  position: relative;
}
.products .filter-group {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.products .filter-group .filter-btns {
  position: relative;
  display: flex;
}
.products .filter-group .filter-btn {
  display: flex;
  align-items: center;
  position: relative;
}
.products .filter-group .filter-btn:after {
  content: '';
  margin-left: 10px;
  top: 2px;
  position: absolute;
  right: -18px;
  border: solid #515050;
  border-width: 0 2px 2px 0;
  display: block;
  padding: 3px;
  transform: rotate(45deg);
}
.products .filter-group .filter-btn.active::after {
  top: 4px;
  transform: rotate(-45deg);
}
.products .filter-group .filter-btn.changed:after {
  display: none;
}
.products .filter-group .filter-btn.changed ~ .filter-btn-reset {
  display: block;
}
.products .filter-group .filter-btn-reset {
  display: none;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
  background: url('/assets/img/icons/cross.svg') 50% / contain no-repeat;
}
.products .filter-dropdown {
  padding: 18px 21px;
  width: 290px;
  visibility: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  z-index: 50;
  top: 40px;
  left: 0;
  background: #ffffff;
  box-shadow: 13px -10px 50px rgba(147, 147, 147, 0.25),
    -11px 8px 50px rgba(147, 147, 147, 0.25);
  border-radius: 15px;
}
.products .filter-dropdown.active {
  visibility: visible;
}
.products .filter-dropdown--range {
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 35px;
  padding-right: 35px;
}
.products .filter-dropdown-checkboxes {
  display: grid;
  gap: 5.2px;
  font-size: 16px;
}
.products .filter-dropdown-checkboxes > label {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  display: flex;
  align-items: center;
  position: relative;
}
.products .filter-dropdown-checkboxes > label > input {
  height: 0;
  width: 0;
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.products
  .filter-dropdown-checkboxes
  > label
  > input:checked
  ~ .check-mark::after {
  display: block;
}
.products .filter-dropdown-checkboxes > label > input:checked ~ .check-text {
  color: #cd2152;
}
.products .filter-dropdown-checkboxes > label > .check-mark {
  margin-right: 6px;
  padding: 2px;
  height: 16px;
  width: 16px;
  border: 1px solid #000;
  border-radius: 50%;
}
.products .filter-dropdown-checkboxes > label > .check-mark::after {
  content: '';
  display: none;
  background: url('/assets/img/icons/check.svg') 50% / contain no-repeat;
  width: 100%;
  height: 100%;
}
.products .filter-dropdown__reset-btn {
  display: block;
  margin: 15px auto 0;
  color: #9d9d9d;
  font-size: 16px;
}
.products .filter-dropdown-sort-types {
  margin-top: 20px;
  display: grid;
  grid-template-columns: -webkit-max-content -webkit-max-content;
  grid-template-columns: max-content max-content;
  justify-content: center;
  gap: 15px;
}
.products .filter-dropdown-sort-type {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 13px;
  font-weight: 700;
}
.products .filter-dropdown-sort-type > input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.products .filter-dropdown-sort-type > input:checked ~ span {
  color: #d0043c;
  font-weight: 700;
}
.products-content {
  margin-left: 30px;
  max-width: 100%;
  width: calc(96 / 129 * 100%);
}
.products-items {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px 30px;
}
@media screen and (max-width: 767px) {
  .products-ctg {
    padding: 15px;
    overflow: scroll;
  }
  .products-content-top {
    margin: 0 auto;
  }
  .products-filters {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    justify-items: center;
    align-content: center;
  }
  .products-content {
    margin-left: 0;
    width: 100%;
  }
  .products-items {
    justify-content: center;
  }
}
@media screen and (max-width: 575px) {
  .products-filters {
    padding: 0 20px;
  }
}
.product {
  padding-top: 30px;
  padding-bottom: 30px;
}
.product-block {
  display: grid;
  grid-template-columns: calc(52 / 129 * 100%) auto;
  gap: 30px;
}
.product-view-lightbox-container {
  height: 100%;
}
.product-view-lightbox-next,
.product-view-lightbox-prev {
  z-index: inherit;
}
.product-view-lightbox-next {
  right: 20px;
}
.product-view-lightbox-prev {
  left: 20px;
}
.product-view-slider-container {
  overflow: hidden;
  border: 1px solid #515050;
  border-radius: 15px;
}
.product-view-thumbs-wrapper {
  margin-top: 30px;
  position: relative;
}
.product-view-thumbs-container {
  margin: 0 auto;
  max-width: 400px;
}
.product-view-thumbs-next {
  right: 0;
}
.product-view-thumbs-prev {
  left: 0;
}
.product-view-item {
  padding: 20px;
  position: relative;
}
.product-view-item__img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-view-item__img img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.product-view-thumb {
  width: 92px;
  height: 92px;
}
.product-view-thumb-img {
  padding: 1px;
  padding-left: 10px;
  padding-right: 10px;
  width: inherit;
  height: inherit;
  border: 1px solid #515050;
  border-radius: 15px;
  overflow: hidden;
}
.product-view-thumb-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.product-info {
  padding-right: 10px;
  font-size: 15px;
}
.product-info__code {
  margin-top: 30px;
}
.product-info__name {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.product-info-item {
  padding-right: 35px;
  margin-top: 34px;
}
.product-info-item__title {
  font-size: 16px;
  font-weight: 700;
}
.product-info-item__text {
  margin-top: 14px;
}
.product-info-item__link {
  margin-top: 15px;
  display: block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  text-decoration: underline;
}
.product-conf {
  max-width: 420px;
  padding-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 15px;
}
.product-conf-item {
  display: flex;
  align-items: center;
}
.product-conf-item__title {
  margin-right: 25px;
  font-size: 16px;
  font-weight: 700;
}
.product-conf-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 30px;
}
.product-conf-price__old {
  font-size: 16px;
  font-weight: 400;
  text-decoration: line-through;
  margin-right: 20px;
}
.product-conf-amount {
  font-size: 16px;
}
.product-conf-amount-input {
  font-size: 16px;
}
.product-conf-amount-input input {
  width: 190px;
  max-width: 100%;
  height: 40px;
  font-size: 12px;
  text-align: center;
  border: 1px solid #515050;
  border-radius: 15px;
}
.product-conf-submit-btn {
  width: 190px;
  height: 40px;
  background: #d0043c;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.product-size {
  margin: 15px 0 0 15px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 16px;
}
.product-size-items {
  display: flex;
  flex-wrap: wrap;
  margin: -15px 0 0 -15px;
  width: calc(100% + $gap-x);
}
.product-size > input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.product-size > input:checked ~ span {
  color: #d0043c;
  font-weight: 700;
}
.product-size > span {
  height: 16px;
  width: 16px;
  display: block;
}
@media screen and (max-width: 767px) {
  .product-block {
    grid-template-columns: 100%;
  }
}
@media screen and (max-width: 575px) {
  .product-view-thumbs-wrapper {
    margin-top: 20px;
  }
  .product-view-thumbs-next {
    right: -20px;
  }
  .product-view-thumbs-prev {
    left: -20px;
  }
  .product-view-thumb {
    padding-top: 1px;
    padding-bottom: 1px;
    margin-left: auto;
    margin-right: auto;
    width: 80px;
    height: auto;
  }
  .product-info {
    padding-right: 0;
  }
  .product-info-item {
    padding-right: 0;
  }
  .product-conf {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .product-conf-item {
    justify-content: space-between;
  }
  .product-conf-price {
    justify-self: flex-start;
  }
}
.polygraphy {
  padding-top: 30px;
  padding-bottom: 30px;
}
.polygraphy-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.polygraphy-view {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  line-height: 0.7;
}
.polygraphy-view-img {
  border-radius: 15px;
  overflow: hidden;
}
.polygraphy-view-img img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
}
.polygraphy-view-img--big {
  grid-column: 1 / span 2;
}
.polygraphy-info-item__title {
  margin-top: 30px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.62;
}
.polygraphy-info-item__descr {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.73;
}
.polygraphy-info-btn {
  margin-left: 0;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .polygraphy-block {
    grid-template-columns: 1fr;
  }
  .polygraphy-view {
    gap: 15px;
  }
}
.gifts {
  padding-top: 30px;
  padding-bottom: 30px;
}
.gifts .big-slider-wrapper {
  margin-top: 39px;
}
.find-gift {
  padding-top: 30px;
  padding-bottom: 30px;
}
.find-gift-block {
  margin-top: 30px;
}
.find-gift-block__title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #d0043c;
}
.find-gift-filters {
  margin-top: 30px;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  font-size: 20px;
}
.find-gift-filter {
  padding: 15px;
  padding-right: 60px;
  height: 60px;
  border: 1px solid #515050;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.find-gift-filter__text {
  padding-right: 14px;
}
.find-gift-filter__arrow {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: inherit;
  border-left: 1px solid #515050;
}
.find-gift-filter__arrow::before {
  content: '';
  border: solid #515050;
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
}
.find-gift-items {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 30px;
}
.find-gift-item__img {
  border-radius: 15px;
  overflow: hidden;
}
.find-gift-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.find-gift-item__info {
  margin-top: 25px;
}
.find-gift-item__title {
  font-size: 18px;
  font-weight: 700;
}
.find-gift-item__text {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.73;
}
.find-gift-item__link {
  display: block;
  margin-top: 15px;
  font-size: 15px;
  text-decoration: underline;
}
.find-gift-nav {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .find-gift-items {
    gap: 20px 15px;
  }
  .find-gift-item__info {
    margin-top: 10px;
  }
}
@media screen and (max-width: 575px) {
  .find-gift-filters {
    grid-template-columns: 1fr;
    gap: 15px;
    font-size: 18px;
  }
  .find-gift-items {
    margin-top: 20px;
    grid-template-columns: 1fr;
  }
}
.quiz {
  padding-top: 30px;
  padding-bottom: 30px;
}
.quiz-block {
  min-height: 600px;
  width: 100%;
  background: #515050;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contacts {
  padding-top: 30px;
  padding-bottom: 30px;
}
.contacts-items {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  margin: -55px 0 0 -55px;
  width: calc(100% + $gap-x);
  padding-top: 40px;
  font-size: 18px;
  line-height: 1.45;
}
.contacts-item {
  margin: 55px 0 0 55px;
}
.contacts-item--address {
  padding-left: 60px;
}
.contacts-item__text--address {
  font-size: 15px;
}
.contacts-map {
  padding: 45px 0;
}
.contacts-map img {
  max-width: 100%;
  height: auto;
}
.contacts-req {
  margin-top: 15px;
}
.contacts-req__title {
  font-size: 24px;
  font-weight: 700;
}
.contacts-req-items {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  font-size: 20px;
  line-height: 1.45;
}
@media screen and (max-width: 1319px) {
  .contacts-item--address {
    padding-left: 0;
  }
}
.faq {
  padding-top: 30px;
  padding-bottom: 30px;
}
.faq-items {
  margin-top: 48px;
  display: grid;
  gap: 33px;
}
.faq-items > li.active > .faq-item__title {
  color: #d0043c;
}
.faq-items > li.active > .faq-item__title::before {
  border-color: #d0043c;
  transform: rotate(45deg) scale(-1);
  top: 10px;
}
.faq-items > li.active > .faq-item__content {
  max-height: 500px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.faq-item__title {
  display: flex;
  font-size: 20px;
  cursor: pointer;
}
.faq-item__title::before {
  content: '';
  margin-right: 23px;
  padding: 5px;
  height: 5px;
  display: block;
  position: relative;
  left: 1px;
  border: solid #515050;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.faq-item__content {
  max-height: 0;
  overflow: hidden;
  will-change: max-height, margin;
  transition: max-height 0.5s, margin 0.5s;
  font-size: 15px;
  line-height: 1.73;
}
@media screen and (max-width: 575px) {
  .faq-items > li.active .faq-item__content {
    margin-top: 10px;
  }
}
.delivery {
  padding-top: 30px;
  padding-bottom: 30px;
}
.delivery-block {
  margin-top: 50px;
}
.delivery-buttons {
  display: flex;
  flex-wrap: wrap;
  margin: -60px 0 0 -60px;
  width: calc(100% + $gap-x);
}
.delivery-btn {
  margin: 60px 0 0 60px;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
}
.delivery-btn.active,
.delivery-btn:hover {
  color: #d0043c;
}
.delivery-contents {
  padding-top: 37px;
}
@media screen and (max-width: 767px) {
  .delivery-buttons {
    margin: -20px 0 0 -20px;
    width: calc(100% + $gap-x);
  }
  .delivery-btn {
    margin: 20px 0 0 20px;
  }
}
@media screen and (max-width: 575px) {
  .delivery-contents {
    padding-top: 20px;
  }
}
.full-descr {
  padding-bottom: 30px;
}
.request2 {
  padding-top: 15px;
  padding-bottom: 30px;
}
.request2-inner {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 60px;
  border: 1px solid #515050;
  border-radius: 15px;
}
@media screen and (max-width: 575px) {
  .request2-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.morealso {
  padding-top: 30px;
  padding-bottom: 30px;
}
