

/* Start:/local/styles/style.css?175637301314019*/
:root {
  --color-gray-100: rgba(0, 0, 0, 0.1);
  --page-title: 300 40px/48px 'suisse', sans-serif;
  --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;
}

@media (max-width: 767px) {
  :root {
    --page-title: 300 24px/32px 'suisse', sans-serif;
  }
}

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: 48px;
  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: 40px;
    font-size: 12px;
    line-height: 20px;
  }
}

.button__wrapper {
  overflow: hidden;
}

.button--big {
  min-height: 64px;
}

@media (max-width: 767px) {
  .button--big {
    min-height: 48px;
  }
}

.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;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  gap: 16px;
}

.product-description__price {
  font-size: 32px;
  line-height: 40px;
}

@media (max-width: 767px) {
  .product-description__price {
    font-size: 24px;
    line-height: 32px;
  }
}

.product-description__price sup {
  font-size: 65%;
}

.product-description__price-old {
  font-size: 18px;
  line-height: 20px;
  opacity: 0.5;
}

.product-description__price-old span {
  text-decoration: line-through;
  text-decoration-thickness: from-font;
}

.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);
  }
}

.layout {
  margin-top: 120px;
  margin-bottom: 120px;
}

@media (max-width: 767px) {
  .layout {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}

.layout--gray {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #ECECEC;
}

@media (max-width: 767px) {
  .layout--gray {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.layout--column2 .layout__wrapper {
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(2, minmax(0, 585px));
  gap: 30px;
}

@media (max-width: 767px) {
  .layout--column2 .layout__wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.layout__header {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (max-width: 767px) {
  .layout__header {
    gap: 16px;
  }
}

.title {
  font: var(--page-title);
}

.title em {
  font-style: normal;
  color: inherit;
  opacity: 0.5;
}

.container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-right: 30px;
  padding-left: 30px;
}

@media (max-width: 767px) {
  .container {
    padding-right: 16px;
    padding-left: 16px;
  }
}

.subscribe-tg {}

.subscribe-tg__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

@media (max-width: 1024px) {
  .subscribe-tg__wrapper {
    flex-direction: column;
    gap: 10px;
  }
}

.subscribe-tg__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

@media (max-width: 767px) {
  .subscribe-tg__header {
    gap: 16px;
  }
}

.subscribe-tg__header .button {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .subscribe-tg__header .button {
    width: auto;
    margin-top: 16px;
  }
}

.subscribe-tg__post-title {
  display: none;
}

@media (max-width: 767px) {
  .subscribe-tg__post-title {
    display: unset;
  }
}

.subscribe-tg__banner {
  width: 100%;
  max-width: 390px;
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzg5IiBoZWlnaHQ9IjMzMyIgdmlld0JveD0iMCAwIDM4OSAzMzMiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzQ4LjM1NSAyLjY0NjcyQzM1My4xMzMgMC42MzU4ODIgMzU4LjM2MiAtMC4wNTc2NDMzIDM2My40OTkgMC42MzgzMjNDMzY4LjYzNSAxLjMzNDI5IDM3My40OTIgMy4zOTQzMSAzNzcuNTYyIDYuNjAzOTdDMzgxLjYzMiA5LjgxMzYzIDM4NC43NjggMTQuMDU1NiAzODYuNjQyIDE4Ljg4ODNDMzg4LjUxNyAyMy43MjExIDM4OS4wNjIgMjguOTY3OSAzODguMjIxIDM0LjA4MjdMMzQ0LjM3MyAzMDAuMDUxQzM0MC4xMTkgMzI1LjcwNyAzMTEuOTcgMzQwLjQxOSAyODguNDQxIDMyNy42NEMyNjguNzYgMzE2Ljk0OSAyMzkuNTI4IDMwMC40NzcgMjEzLjIzNSAyODMuMjg5QzIwMC4wODggMjc0LjY4NiAxNTkuODE3IDI0Ny4xMzYgMTY0Ljc2NiAyMjcuNTMyQzE2OS4wMTkgMjEwLjc3IDIzNi42ODYgMTQ3Ljc4MiAyNzUuMzUzIDExMC4zMzNDMjkwLjUyOSA5NS42MjA3IDI4My42MDggODcuMTMzNCAyNjUuNjg2IDEwMC42NjdDMjIxLjE4MSAxMzQuMjY4IDE0OS43MjUgMTg1LjM2NiAxMjYuMDk5IDE5OS43NUMxMDUuMjU4IDIxMi40MzMgOTQuMzkyNiAyMTQuNTk4IDgxLjQwMDYgMjEyLjQzM0M1Ny42OTggMjA4LjQ4OSAzNS43MTYgMjAyLjM3OSAxNy43NzQ2IDE5NC45MzZDLTYuNDY5MzYgMTg0Ljg4MyAtNS4yOTAwMyAxNTEuNTUyIDE3Ljc1NTMgMTQxLjg0N0wzNDguMzU1IDIuNjQ2NzJaIiBmaWxsPSJibGFjayIvPgo8L3N2Zz4K");
  aspect-ratio: 390 / 330;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 1300px) {
  .subscribe-tg__banner {
    max-width: 290px;
  }
}

.subscribe-tg__banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.subscribe-tg__logo {
  padding: 30px;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .subscribe-tg__logo {
    display: none;
  }
}

.subscribe-tg__logo-circle {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #D9D9D9;
  border-radius: 50%;
}

.subscribe-tg__logo-circle:before {
  position: absolute;
  top: -30px;
  right: -30px;
  bottom: -30px;
  left: -30px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
  background-image: url('/local/styles/../img/subscribe-tg-letters.svg');
  animation-name: rotate;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  pointer-events: none;
  will-change: transform;
  content: "";
}

@keyframes rotate {

  100% {
    transform: rotate(360deg);
  }
}
/* End */


/* Start:/bitrix/templates/.default/components/bitrix/news.line/topbanner/style.css?174647289736*/
.news-date-time {
	color:#486DAA;
}

/* 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?175637301314019 */
/* /bitrix/templates/.default/components/bitrix/news.line/topbanner/style.css?174647289736 */
/* /local/templates/catalog/styles.css?17557897211413 */
/* /local/templates/catalog/template_styles.css?1755785147497 */
