:root {
  --color-bg: #000b16;
  --color-header-bg: #282b36;
  --color-text: #fff;
  --color-button-bg: #fbe13b;
  --color-button-text: #000b16;
  --color-button-bg-hover: #fdcd0e;
  --color-button-text-hover: #000b16;
  --color-muted: #caccd5;
  --color-dim: #9e9fb4;
  --color-faint: #757683;
  --color-line: #353946;
  --color-title: var(--color-text);
  --color-title-span: var(--color-button-bg);
  --color-link: var(--color-button-bg);
  --color-block-bg: var(--color-header-bg);
  --color-to-top-bg: var(--color-header-bg);
  --color-slider-nav: var(--color-line);
  --color-slider-play: var(--color-button-bg);
  --site-font-family: -apple-system, blinkmacsystemfont, "Segoe UI", roboto, helvetica, arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body,
body.custom-background {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--site-font-family, -apple-system, blinkmacsystemfont, "Segoe UI", roboto, helvetica, arial, sans-serif);
  font-size: var(--content-body-font-size, 16px);
  line-height: var(--content-line-height, 1.5);
  letter-spacing: var(--content-letter-spacing, 0);
}

button {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

a {
  -webkit-tap-highlight-color: transparent;
}

figure {
  margin: 0;
}

.site {
  background: var(--color-bg);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: var(--site-container-width, 1030px);
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .container {
    padding: 0 12px;
  }
}

.page-main {
  flex: 1 0 auto;
  padding-top: 29px;
  padding-bottom: 16px;
}
@media (max-width: 600px) {
  .page-main {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(69px, 10vw + 26px, 123px);
  padding: clamp(8px, 0.6vw + 7px, 16px) clamp(12px, 3vw, 30px);
  border-radius: var(--button-border-radius, 7px);
  font-size: var(--button-font-size, clamp(11px, 0.62vw + 8.9px, 15px));
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  user-select: none;
  text-align: center;
  border: 1px solid transparent;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  appearance: none;
  transition: 0.3s;
}
.cta:focus-visible {
  outline: 2px solid var(--color-button-bg);
  outline-offset: 2px;
}
.cta--outline {
  background: transparent;
  border-color: var(--color-button-bg);
  color: var(--color-text);
}
.cta--outline:hover {
  border-color: var(--color-button-bg-hover);
  color: var(--color-text);
}
.cta--filled {
  background: var(--color-button-bg);
  border-color: transparent;
  color: var(--color-button-text);
}
.cta--filled:hover {
  background: var(--color-button-bg-hover);
  color: var(--color-button-text-hover);
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  word-wrap: normal !important;
  border: 0;
}
.screen-reader-text:focus {
  clip: auto !important;
  clip-path: none;
  display: block;
  height: auto;
  width: auto;
  top: 8px;
  left: 8px;
  z-index: 100000;
  padding: 12px 16px;
  background: var(--color-header-bg);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  line-height: normal;
}

.entry-content {
  margin: 0;
}
@media (max-width: 600px) {
  .entry-content {
    padding: 20px 0;
  }
}
.entry-content h1 {
  margin: 0 0 20px;
  padding-bottom: 12px;
  font-size: var(--content-h1-font-size, 28px);
  line-height: 1.3;
  color: var(--color-title, var(--color-text));
  position: relative;
}
@media (max-width: 600px) {
  .entry-content h1 {
    font-size: var(--content-h1-font-size, 23px);
  }
}
.entry-content h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 67px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-button-bg), var(--color-button-bg-hover));
}
.entry-content h2:not(.slider__title) {
  margin: 29px 0 11px;
  font-size: var(--content-h2-font-size, 20px);
  line-height: 1.3;
  color: var(--color-title, var(--color-text));
  padding-left: 11px;
  border-left: 3px solid var(--color-title, var(--color-text));
}
.entry-content :is(h1, h2, h3, h4, h5) span {
  color: var(--color-title-span, var(--color-button-bg));
}
.entry-content h3 {
  margin: 20px 0 8px;
  font-size: var(--content-h3-font-size, 16px);
  color: var(--color-title, var(--color-text));
}
.entry-content h4 {
  margin: 16px 0 8px;
  font-size: var(--content-h4-font-size, 16px);
  color: var(--color-title, var(--color-text));
}
.entry-content h5 {
  margin: 14px 0 8px;
  font-size: var(--content-h5-font-size, 16px);
  color: var(--color-title, var(--color-text));
}
.entry-content p {
  margin: 0 0 12px;
  color: #caccd5;
  font-size: var(--content-body-font-size, 15px);
  line-height: var(--content-line-height, 1.7);
}
.entry-content p:last-child {
  margin-bottom: 0;
}
.entry-content a:not(.cta):not(.slider__slide) {
  color: var(--color-link, var(--color-button-bg));
  text-decoration: none;
}
.entry-content a:not(.cta):not(.slider__slide):hover {
  text-decoration: underline;
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 476px;
  border: 0;
}
.entry-content th {
  background: var(--color-line);
  color: var(--color-text);
  text-align: left;
  padding: 12px;
  font-weight: 600;
  white-space: nowrap;
  border: 0;
}
.entry-content td {
  padding: 12px;
  border: 0;
  border-top: 1px solid var(--color-line);
  color: #caccd5;
  white-space: nowrap;
}
.entry-content tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.035);
}
.entry-content tbody tr:hover {
  background: color-mix(in srgb, var(--color-button-bg) 12%, transparent);
}
.entry-content ol {
  list-style: none;
  margin: 0 0 12px;
  padding-left: 0;
  counter-reset: step;
}
.entry-content ol li {
  position: relative;
  counter-increment: step;
  padding: 11px 18px 11px 43px;
  margin-bottom: 12px;
  background: var(--color-block-bg, var(--color-header-bg));
  border: 1px solid var(--color-line);
  border-radius: var(--block-border-radius, 8px);
  color: var(--color-muted);
}
.entry-content ol li::before {
  content: counter(step);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--color-button-bg), var(--color-button-bg-hover));
  color: var(--color-button-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
}
.entry-content ul:not(.glide__slides) {
  list-style: none;
  margin: 0 0 12px;
  padding-left: 0;
}
.entry-content ul:not(.glide__slides) li {
  position: relative;
  padding: 7px 0 7px 24px;
  color: var(--color-muted);
  line-height: 1.6;
}
.entry-content ul:not(.glide__slides) li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-button-bg);
}

.page-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--color-line);
  border-radius: var(--block-border-radius, 8px);
  margin-bottom: 12px;
}

.to-top {
  position: fixed !important;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--color-button-bg);
  background: var(--color-to-top-bg, var(--color-header-bg));
  color: var(--color-button-bg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s, background 0.2s, color 0.2s;
}
.to-top--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.to-top:hover {
  background: var(--color-button-bg);
  color: var(--color-button-text);
}
.to-top svg {
  display: block;
  width: 16px;
  height: 16px;
}

body[data-button-anim]:not([data-button-anim=none]) .cta, body[data-button-anim]:not([data-button-anim=none]) .error-page__button, body[data-button-anim]:not([data-button-anim=none]) .to-top, body[data-button-anim]:not([data-button-anim=none]) .slider__play, body[data-button-anim]:not([data-button-anim=none]) .site-footer__social,
body[class*=button-anim-] .cta,
body[class*=button-anim-] .error-page__button,
body[class*=button-anim-] .to-top,
body[class*=button-anim-] .slider__play,
body[class*=button-anim-] .site-footer__social {
  transform: translateZ(0);
  will-change: transform;
}

body[data-button-anim=lift] .cta:hover, body[data-button-anim=lift] .error-page__button:hover, body[data-button-anim=lift] .to-top:hover, body[data-button-anim=lift] .slider__play:hover, body[data-button-anim=lift] .site-footer__social:hover,
body.button-anim-lift .cta:hover,
body.button-anim-lift .error-page__button:hover,
body.button-anim-lift .to-top:hover,
body.button-anim-lift .slider__play:hover,
body.button-anim-lift .site-footer__social:hover {
  transform: translateY(-6px);
}
body[data-button-anim=lift] .cta:active, body[data-button-anim=lift] .error-page__button:active, body[data-button-anim=lift] .to-top:active, body[data-button-anim=lift] .slider__play:active, body[data-button-anim=lift] .site-footer__social:active,
body.button-anim-lift .cta:active,
body.button-anim-lift .error-page__button:active,
body.button-anim-lift .to-top:active,
body.button-anim-lift .slider__play:active,
body.button-anim-lift .site-footer__social:active {
  transform: translateY(-2px);
}

body[data-button-anim=scale] .cta:hover, body[data-button-anim=scale] .error-page__button:hover, body[data-button-anim=scale] .to-top:hover, body[data-button-anim=scale] .slider__play:hover, body[data-button-anim=scale] .site-footer__social:hover,
body.button-anim-scale .cta:hover,
body.button-anim-scale .error-page__button:hover,
body.button-anim-scale .to-top:hover,
body.button-anim-scale .slider__play:hover,
body.button-anim-scale .site-footer__social:hover {
  transform: scale(1.08);
}
body[data-button-anim=scale] .cta:active, body[data-button-anim=scale] .error-page__button:active, body[data-button-anim=scale] .to-top:active, body[data-button-anim=scale] .slider__play:active, body[data-button-anim=scale] .site-footer__social:active,
body.button-anim-scale .cta:active,
body.button-anim-scale .error-page__button:active,
body.button-anim-scale .to-top:active,
body.button-anim-scale .slider__play:active,
body.button-anim-scale .site-footer__social:active {
  transform: scale(1.03);
}

body[data-button-anim=pop] .cta, body[data-button-anim=pop] .error-page__button, body[data-button-anim=pop] .to-top, body[data-button-anim=pop] .slider__play, body[data-button-anim=pop] .site-footer__social,
body.button-anim-pop .cta,
body.button-anim-pop .error-page__button,
body.button-anim-pop .to-top,
body.button-anim-pop .slider__play,
body.button-anim-pop .site-footer__social {
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}
body[data-button-anim=pop] .cta:hover, body[data-button-anim=pop] .error-page__button:hover, body[data-button-anim=pop] .to-top:hover, body[data-button-anim=pop] .slider__play:hover, body[data-button-anim=pop] .site-footer__social:hover,
body.button-anim-pop .cta:hover,
body.button-anim-pop .error-page__button:hover,
body.button-anim-pop .to-top:hover,
body.button-anim-pop .slider__play:hover,
body.button-anim-pop .site-footer__social:hover {
  transform: scale(1.12);
}
body[data-button-anim=pop] .cta:active, body[data-button-anim=pop] .error-page__button:active, body[data-button-anim=pop] .to-top:active, body[data-button-anim=pop] .slider__play:active, body[data-button-anim=pop] .site-footer__social:active,
body.button-anim-pop .cta:active,
body.button-anim-pop .error-page__button:active,
body.button-anim-pop .to-top:active,
body.button-anim-pop .slider__play:active,
body.button-anim-pop .site-footer__social:active {
  transform: scale(1.04);
}

@keyframes button-shine {
  to {
    transform: translateX(220%) skewX(-20deg);
  }
}
body[data-button-anim=shine] .cta, body[data-button-anim=shine] .error-page__button, body[data-button-anim=shine] .to-top, body[data-button-anim=shine] .slider__play, body[data-button-anim=shine] .site-footer__social,
body.button-anim-shine .cta,
body.button-anim-shine .error-page__button,
body.button-anim-shine .to-top,
body.button-anim-shine .slider__play,
body.button-anim-shine .site-footer__social {
  position: relative;
  overflow: hidden;
}
body[data-button-anim=shine] .cta::after, body[data-button-anim=shine] .error-page__button::after, body[data-button-anim=shine] .to-top::after, body[data-button-anim=shine] .slider__play::after, body[data-button-anim=shine] .site-footer__social::after,
body.button-anim-shine .cta::after,
body.button-anim-shine .error-page__button::after,
body.button-anim-shine .to-top::after,
body.button-anim-shine .slider__play::after,
body.button-anim-shine .site-footer__social::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
  transform: translateX(-180%) skewX(-20deg);
  pointer-events: none;
}
body[data-button-anim=shine] .cta:hover::after, body[data-button-anim=shine] .error-page__button:hover::after, body[data-button-anim=shine] .to-top:hover::after, body[data-button-anim=shine] .slider__play:hover::after, body[data-button-anim=shine] .site-footer__social:hover::after,
body.button-anim-shine .cta:hover::after,
body.button-anim-shine .error-page__button:hover::after,
body.button-anim-shine .to-top:hover::after,
body.button-anim-shine .slider__play:hover::after,
body.button-anim-shine .site-footer__social:hover::after {
  animation: button-shine 0.65s ease;
}

.site-header {
  flex-shrink: 0;
  background: var(--color-header-bg);
  border-bottom: 1px solid var(--color-line);
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 67px;
  flex-wrap: nowrap;
  gap: 12px;
  padding: 12px 0;
}
.site-header__brand {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
}
.site-header__brand-link {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.site-header__logo {
  display: block;
  width: 100%;
  max-width: clamp(89px, 6vw + 65px, 126px);
  height: auto;
}
.site-header__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
}
.site-header__actions {
  display: flex;
  gap: 11px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .site-header__actions {
    gap: 8px;
  }
}

.site-footer {
  flex-shrink: 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-line);
  padding-top: 43px;
}
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 29px;
  justify-content: space-between;
  padding: 29px 0;
  border-top: 1px solid var(--color-line);
}
.site-footer__col {
  min-width: 148px;
}
.site-footer__heading {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.site-footer__link {
  display: block;
  width: fit-content;
  font-size: 14px;
  color: var(--color-dim);
  margin-bottom: 12px;
  text-decoration: none;
  transition: 0.3s;
}
.site-footer__link:hover {
  color: var(--color-button-bg);
}
.site-footer__link:focus-visible {
  outline: 2px solid var(--color-button-bg);
  outline-offset: 2px;
}
.site-footer__address {
  font-style: normal;
}
.site-footer__socials {
  display: flex;
  gap: 12px;
}
.site-footer__social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-header-bg);
  color: #caccd5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}
.site-footer__social:hover {
  background: var(--color-button-bg);
  color: var(--color-button-text);
}
.site-footer__social:focus-visible {
  outline: 2px solid var(--color-button-bg);
  outline-offset: 2px;
}
.site-footer__social-icon {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.site-footer__studios {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 23px;
  padding: 0 0 20px;
}
.site-footer__studios:not(:has(img)) {
  display: none;
}
.site-footer__studio-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 17px;
}
.site-footer__studio-logo {
  display: block;
  width: auto;
  height: 27px;
  max-width: none;
  max-height: 27px;
  object-fit: contain;
  opacity: 0.6;
}
.site-footer__payments {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 23px;
  padding: 21px 0;
  border-top: 1px solid var(--color-line);
}
.site-footer__payments:not(:has(img)) {
  display: none;
}
@media (max-width: 767px) {
  .site-footer__payments {
    gap: 17px;
    padding: 23px 0;
  }
}
.site-footer__payment-list, .site-footer__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
@media (max-width: 767px) {
  .site-footer__payment-list, .site-footer__trust {
    justify-content: center;
  }
}
.site-footer__payment-logo {
  display: block;
  width: auto;
  height: 21px;
  max-width: none;
  max-height: 21px;
  object-fit: contain;
  opacity: 0.75;
}
.site-footer__trust-logo {
  display: block;
  width: auto;
  height: 15px;
  max-width: none;
  max-height: 15px;
  object-fit: contain;
  opacity: 0.7;
}
.site-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--color-line);
}
@media (max-width: 767px) {
  .site-footer__legal {
    justify-content: center;
  }
}
.site-footer__legal:empty {
  display: none;
}
.site-footer__box {
  display: flex;
  align-items: center;
  gap: 15px;
}
.site-footer__age {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-button-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text);
}
.site-footer__copy {
  margin: 0;
  font-size: 12px;
  color: var(--color-faint);
  line-height: 1.6;
}
.site-footer__trust:not(:has(img)) {
  display: none;
}

.error-page {
  padding: 40px 0 60px;
  text-align: center;
}
.error-page__title {
  font-size: 80px;
  line-height: normal;
  margin: 0 0 16px;
  color: var(--color-title, var(--color-text));
  position: relative;
}
.error-page__title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 67px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-button-bg), var(--color-button-bg-hover));
  margin: 0 auto;
}
.error-page__text {
  margin: 0 0 12px;
  color: #caccd5;
  font-size: var(--content-body-font-size, 15px);
  line-height: var(--content-line-height, 1.7);
}
.error-page__button {
  display: block;
  width: fit-content;
  margin: 20px auto 0;
}

.slider {
  display: block;
  margin: 27px 0;
}
.slider__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
  margin: 0 0 12px;
}
.slider__title {
  margin: 0;
  font-size: var(--block-title-font-size, var(--content-h2-font-size, 20px));
  line-height: 1.3;
  font-weight: 400;
  color: var(--color-title, var(--color-text));
  padding-left: 11px;
  border-left: 3px solid var(--color-title-span, var(--color-button-bg));
}
.slider__nav {
  display: none;
  gap: 8px;
  flex-shrink: 0;
}
.slider__nav[hidden] {
  display: none;
}
.slider__slide {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: var(--block-border-radius, 8px);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.slider__slide:focus-visible {
  outline: 2px solid var(--color-button-bg);
  outline-offset: 2px;
}
.slider__slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1728/2304;
  object-fit: cover;
  border-radius: var(--block-border-radius, 8px);
  background: var(--color-block-bg, var(--color-header-bg));
}
.slider__slide:hover .slider__overlay, .slider__slide:focus-visible .slider__overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.56);
}
.slider__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  transition: opacity 0.15s, background-color 0.15s;
}
.slider__play {
  padding: 8px 20px;
  border-radius: var(--button-border-radius, 7px);
  background: linear-gradient(90deg, var(--color-button-bg), var(--color-button-bg-hover));
  color: var(--color-button-text);
  font-size: var(--block-button-font-size, var(--button-font-size, 13px));
  font-weight: 700;
}
.slider__arrow {
  display: flex;
  box-sizing: border-box;
  width: 26px;
  height: 26px;
  padding: 0;
  border-radius: var(--button-border-radius, 7px);
  background: var(--color-slider-nav, var(--color-line));
  border: 1px solid #404554;
  color: var(--color-text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  appearance: none;
  font: inherit;
  line-height: 0;
}
.slider__arrow svg {
  display: block;
  width: 8px;
  height: 12px;
  flex-shrink: 0;
}
.slider__arrow:hover {
  background: #3c4152;
  border-color: var(--color-button-bg);
  color: var(--color-text);
}
.slider__arrow:disabled, .slider__arrow.glide__arrow--disabled {
  opacity: 0.4;
  pointer-events: none;
}
.slider .glide__track {
  overflow: visible;
}
.slider .glide__slides {
  display: flex;
  gap: 11px;
  margin: 0;
  padding: 2px 2px 12px;
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-button-bg) transparent;
}
@media (max-width: 767px) {
  .slider .glide__slides {
    touch-action: auto;
  }
}
.slider .glide__slides::-webkit-scrollbar {
  height: 5px;
}
.slider .glide__slides::-webkit-scrollbar-track {
  background: transparent;
}
.slider .glide__slides::-webkit-scrollbar-thumb {
  background: var(--color-button-bg);
  border-radius: 2px;
}
.slider .glide__slide {
  flex: 0 0 auto;
  width: 135px;
  height: auto;
  scroll-snap-align: start;
}
@media (min-width: 601px) {
  .slider .glide__slide {
    width: 199px;
  }
}
@media (min-width: 765px) {
  .slider__nav {
    display: flex;
  }
  .slider .glide__track {
    overflow: hidden;
  }
  .slider .glide__slides {
    gap: 0;
    overflow-x: visible;
    scroll-snap-type: none;
    padding: 2px;
  }
  .slider .glide__slide {
    width: auto;
    scroll-snap-align: none;
  }
}

/*# sourceMappingURL=main-component.css.map */
