

/* Start:/local/styles/style.css?17557851478820*/
:root {
  --color-gray-100: rgba(0, 0, 0, 0.1);
  --modal-title: 300 32px/40px 'suisse', sans-serif;
  --font-button: normal 300 14px/20px 'suisse', sans-serif;
  --font-input: normal 300 16px/24px 'suisse', sans-serif;
  --font-family: 'suisse', sans-serif;
  --border-radius: 4px;
}

body {
  font-size: 0.875rem;

  @media (width >=40rem) {
    font-size: 1rem;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  font-size: 0;
  clip: rect(0 0 0 0);
}

.static {
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  overflow: hidden;
}

.button {
  font: var(--font-button);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  leading-trim: none;
  position: relative;
  display: inline-grid;
  max-width: 100%;
  min-height: 64px;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding-top: 5px;
  padding-right: 15px;
  padding-bottom: 5px;
  padding-left: 15px;
  border-radius: var(--border-radius);
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background-color: #000000;
  transition: color 0.3s, background-color 0.3s;
  grid-auto-flow: column;
  gap: 10px;
  flex-shrink: 0;
  cursor: pointer;
}

@media (max-width: 767px) {
  .button {
    width: 100%;
    min-height: 48px;
    font-size: 12px;
    line-height: 20px;
  }
}

.button__wrapper {
  overflow: hidden;
}

.button--small {
  min-height: 48px;
}

@media (max-width: 767px) {
  .button--small {
    min-height: 40px;
  }
}

.button__wrapper span {
  position: relative;
  display: inline-block;
  transition: transform 0.3s;
  will-change: transform;
}

.button__wrapper span::before {
  content: attr(data-hover);
  position: absolute;
  top: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  font: inherit;
}

.button:hover .button__wrapper span,
.button:focus .button__wrapper span {
  transform: translateY(-100%);
}

.border-gray-100 {
  border-color: var(--color-gray-100);
}

.opacity-50 {
  opacity: 0.5;
}

.uppercase {
  text-transform: uppercase;
}

.flex-row {
  flex-direction: row;
}

.sm\:flex-row {
  @media (width >=40rem) {
    flex-direction: row;
  }
}

.rounded {
  border-radius: 0.25rem;
}

.gap-x-5 {
  column-gap: 1.25rem;
}

.gap-y-4 {
  row-gap: 1rem;
}

.flex-wrap {
  flex-wrap: wrap;
}

.sm\:w-auto {
  @media (width >=40rem) {
    width: auto;
  }
}

.lg\:grid {
  @media (width >=64rem) {
    display: grid;
  }
}

.lg\:grid-cols-2 {
  @media (width >=64rem) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.gap-y-\[32px\] {
  row-gap: 32px;
}

/* Модалки. Старт. */
.popUp {
  z-index: 15;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none
}

.popUp,
.popUp__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.popUp__overlay {
  z-index: 10;
  background-color: #000;
  opacity: 0.5;
  pointer-events: auto
}

.popUp__body-fixer {
  top: 0;
  right: 0;
  left: 0;
  margin: auto auto auto calc(100vw - 100%);
  padding-right: 17px;
  overflow: hidden
}

@media (max-width: 767px) {
  .popUp__body-fixer {
    padding-right: 0
  }
}

.popUp__body-fixer:before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  content: ""
}

.popUp__container {
  position: relative;
  z-index: 11;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden
}

.popUp__wrapper {
  pointer-events: auto
}

.modal .button {
  width: 100%;
}

.modal a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: currentcolor;
  transition: text-decoration-color 0.3s;
}

.modal a:hover {
  text-decoration-color: transparent;
}

.modal__container {
  position: relative;
  width: 100%;
  max-width: 640px;
  padding: 30px;
  box-sizing: border-box
}

@media (max-width: 767px) {
  .modal__container {
    width: 100%;
    min-width: unset;
    padding: 15px
  }
}

.modal__wrapper {
  box-shadow: 0 0 25px rgba(60, 60, 60, .18);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px;
  background-color: #fff;
  gap: 40px
}

@media (max-width: 767px) {
  .modal__wrapper {
    padding: 24px 16px;
    gap: 24px
  }
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;
  display: flex;
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  color: rgba(0, 0, 0, 0.3);
  background-color: rgba(0, 0, 0, 0);
  transition: color .3s;
  outline: none;
  cursor: pointer
}

@media (max-width: 767px) {
  .modal__close {
    top: 24px;
    right: 16px
  }
}

.modal__close:hover {
  color: #000000;
}

.modal__close span {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 2px;
  background: rgba(0, 0, 0, 0);
  vertical-align: bottom
}

.modal__close span:before {
  transform: rotate(45deg)
}

.modal__close span:after,
.modal__close span:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: currentcolor;
  content: ""
}

.modal__close span:after {
  transform: rotate(-45deg)
}

.modal__title {
  font: var(--modal-title);
  letter-spacing: -0.02em;
  leading-trim: none;
}

@media (max-width: 767px) {
  .modal__title {
    font-size: 20px;
    line-height: 28px;
  }
}

.modal__form {
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex-grow: 1;
}

@media (max-width: 767px) {
  .modal__form {
    gap: 24px;
  }
}

.modal__legal-text {
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
}

@media (max-width: 767px) {
  .modal__legal-text {
    font-size: 12px;
    line-height: 16px;
  }
}

/* Модалки. Конец. */

/* Поле ввода. Начало. */
.field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.field textarea {
  min-height: 100px;
}

.field select {
  display: none;
}

.field__inner {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.field__label {
  margin-bottom: 12px;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.5)
}

@media (max-width: 767px) {
  .field__label {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 24px;
  }
}

.field__input {
  width: 100%;
  min-height: 64px;
  margin: 0;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  font: var(--font-input);
  color: #000000;
  background-color: rgba(0, 0, 0, 0.05);
  border: 0;
  border-radius: 8px;
  text-align: left;
  overflow: hidden;
  outline: none;
}

@media (max-width: 767px) {
  .field__input {
    min-height: 48px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

.field__input::placeholder {
  font: inherit;
  color: rgba(0, 0, 0, 0.5);
}

/* Поле ввода. Конец. */

.product-description {}

.product-description__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  gap: 16px;
}

.product-description__label {
  display: block;
  padding-top: 14px;
  padding-bottom: 14px;
  text-transform: uppercase;
  opacity: 0.5;
}

.product-description__item {}

.product-description__link {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.product-description__link:after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #000000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
  will-change: transform;
  content: '';
}

@media(min-width: 992px) {
  .product-description__link:hover .product-description__link-icon svg {
    transform: translateY(0);
  }

  .product-description__link:hover:after {
    transform: scaleX(100%);
  }
}

.product-description__link-icon {
  overflow: hidden;
}

.product-description__link-icon svg {
  stroke: #000000;
  transform: translateY(-100%);
  transition: transform 0.3s;
  will-change: transform;
}


@media (max-width: 767px) {
  .product-description__link-icon svg {
    stroke: rgba(0, 0, 0, 0.5);
    transform: translateY(0);
  }
}
/* End */


/* Start:/local/templates/catalog/styles.css?17557897211413*/
.embla {
  overflow: hidden;
}
.embla__container {
  display: flex;
}
.embla__slide {
  flex: 0 0 33.3333%;
  min-width: 0;
}

.button--disabled,
button:disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
  background-color: #ccc;
}

.field__input.error,
.field__input:invalid:not(:placeholder-shown) {
  border-color: #e53935;
  box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.1);
}

.modal__result-wrapper {
  text-align: center;
  padding: 20px;
}

.modal__result-icon::before {
  content: '✅';
  font-size: 48px;
  display: block;
  margin-bottom: 10px;
}

.modal__result-text {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

.modal__result-error .modal__result-icon::before {
  content: '❌';
}

.button--disabled,
button:disabled {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
  background-color: #ccc;
}

.top-bar {
  position: relative;
  z-index: 5;
  top: 0;
  color: #ffffff;
  background-color: #000000;
  font-size: 10px;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}

.top-bar__padding {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  user-select: none;
}

.top-bar__wrapper {
  padding-top: 20px;
  padding-bottom: 20px;
}

.top-bar__fixed {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: #000000;
}

.top-menu {
  top: unset !important;
}
/* End */


/* Start:/local/templates/catalog/template_styles.css?1755785147497*/
.field__input.error {
    border-color: #e53935 !important;
    box-shadow: 0 0 0 1px #e53935;
}

.field__error {
    display: none;
    font-size: 14px;
    color: #e53935;
    margin-top: 6px;
    min-height: 20px;
    line-height: 1.4;
}

.field__error.visible {
    display: block;
}

.field__error.hidden {
    display: none;
}

.button--disabled,
button:disabled {
    opacity: 0.6;
    pointer-events: none;
    cursor: not-allowed;
    background-color: #ccc;
}
/* End */
/* /local/styles/style.css?17557851478820 */
/* /local/templates/catalog/styles.css?17557897211413 */
/* /local/templates/catalog/template_styles.css?1755785147497 */
