@charset "UTF-8";
:root {
  --white: #fff;
  --black: #000;
  --blackfriday: radial-gradient(
      168.33% 79.62% at 25.77% -11.61%,
      #bdf82d 0%,
      rgba(189, 248, 45, 0) 100%
    ),
    radial-gradient(
      161.36% 136.08% at 92.29% 0%,
      #d7be00 0%,
      rgba(215, 190, 0, 0) 61.94%
    ),
    #5fd900;
  --roboto: "Roboto", Arial, Helvetica, sans-serif;
  --freeset: "Freeset", "Roboto", Arial, Helvetica, sans-serif;
}

[x-cloak] {
  display: none !important;
}

*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--roboto);
  font-size: 18px;
  overflow-x: hidden;
  background-color: var(--black);
  color: var(--white);
}
@media (max-width: 480px) {
  body {
    font-size: 16px;
  }
}

ul {
  list-style: none;
}

.image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.container {
  max-width: 1280px;
  padding-inline: 56px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container {
    padding-inline: 32px;
  }
}
@media (max-width: 480px) {
  .container {
    padding-inline: 16px;
  }
}
@media (max-width: 320px) {
  .container {
    padding-inline: 12px;
  }
}

.black_bg {
  background-color: #000;
}

.button_transparent {
  cursor: pointer;
  background: transparent;
  padding: 16px 48px;
  border-radius: 1000px;
  font-size: 24px;
  line-height: 100%;
  transition: box-shadow 0.3s ease;
  position: relative;
  border: none;
  color: var(--white);
}
.button_transparent::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-radius: 1000px;
  background: var(--blackfriday);
  z-index: -1;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 1.6px;
}
.button_transparent:hover {
  box-shadow: 0 0 24px 0 #bcd900;
}
.button_transparent:active {
  border-color: transparent;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), radial-gradient(168.33% 79.62% at 25.77% -11.61%, #bdf82d 0%, rgba(189, 248, 45, 0) 100%), radial-gradient(161.36% 136.08% at 92.29% 0%, #d7be00 0%, rgba(215, 190, 0, 0) 61.94%), #5fd900;
}

.link {
  color: transparent;
  display: inline-block;
  position: relative;
  background: var(--blackfriday);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 14px;
  line-height: 18px;
}
.link::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  display: block;
  bottom: 0px;
  background: var(--blackfriday);
}

.text_green {
  color: #5fd900;
  display: inline-block;
  position: relative;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .text_green {
    color: transparent;
    background: var(--blackfriday);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}
.subtitle {
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000;
  font-family: var(--freeset);
  font-weight: 600;
  line-height: 100%;
  background: -webkit-linear-gradient(#ffffff 0%, #0b0b0b 100%);
  -webkit-background-clip: text;
  -webkit-text-stroke: 2px transparent;
  color: #0b0b0b;
  font-size: clamp(56px, 7.05vw, 90px);
}
@media (max-width: 768px) {
  .subtitle {
    font-size: 56px;
  }
}
.subtitle__wrapper {
  margin-bottom: -36px;
}
@media (max-width: 768px) {
  .subtitle__wrapper {
    margin-bottom: -24px;
  }
}

.timer_wrapper {
  display: flex;
  gap: 6px;
}

.timer_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.timer_dots {
  text-align: center;
  font-family: var(--freeset);
  font-size: 40px;
  font-weight: 600;
  line-height: 44px; /* 110% */
}

.timer_count {
  font-family: var(--freeset);
  font-size: 40px;
  font-weight: 400;
  line-height: 44px; /* 110% */
}

.price {
  font-size: 18px;
  line-height: 24px; /* 133.333% */
  text-decoration-line: line-through;
}
.price_discount {
  font-family: var(--freeset);
  font-size: 32px;
  font-weight: 600;
  line-height: 36px; /* 112.5% */
  position: relative;
  transition: color 0.5s ease;
}
.price_discount::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: transparent;
  background: var(--blackfriday);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.5s ease;
  opacity: 0;
  pointer-events: none;
}
.price_economy {
  padding: 4px 10px;
  font-size: 14px;
  line-height: 14px;
  border-radius: 6px;
  display: inline-block;
  transition: all 0.3s ease;
}

.button_card {
  border-radius: 1000px;
  background-color: var(--white);
  padding: 12px 48px;
  cursor: pointer;
  color: #0b0b0b;
  font-size: 24px;
  line-height: 100%;
  border: none;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease;
}
.button_card span {
  position: relative;
  z-index: 2;
}
.button_card::after {
  content: "";
  position: absolute;
  inset: 0;
  transition: opacity 0.2s linear;
  opacity: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(168.33% 79.62% at 25.77% -11.61%, #bdf82d 0%, rgba(189, 248, 45, 0) 100%), radial-gradient(161.36% 136.08% at 92.29% 0%, #d7be00 0%, rgba(215, 190, 0, 0) 61.94%), #5fd900;
}
.button_card::before {
  content: "";
  position: absolute;
  inset: 0;
  transition: opacity 0.2s linear;
  opacity: 0;
  z-index: 1;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(167.91% 89.74% at 59.69% -23.21%, #bdf82d 0%, rgba(189, 248, 45, 0) 100%), radial-gradient(211.29% 169.5% at 119.16% -20.54%, #d7be00 0%, rgba(215, 190, 0, 0) 61.94%), #5fd900;
}

/* Для Webkit-браузеров (Chrome, Safari, Opera, большинство мобильных) */
.scroll::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

/* Для Firefox */
.scroll {
  scrollbar-width: none; /* скрывает скроллбар */
  -ms-overflow-style: none; /* IE и Edge */
}

.scroll::-webkit-scrollbar {
  display: none;
}

.scroll {
  -ms-overflow-style: none; /* IE и Edge */
  scrollbar-width: none; /* Firefox */
}

.word-break {
  word-break: break-all;
}

.nds {
  font-size: 12px;
  margin-top: 2px;
}

.header {
  overflow: hidden;
  padding-block: 64px 88px;
}
@media (max-width: 768px) {
  .header {
    padding-block: 48px;
  }
}
@media (max-width: 480px) {
  .header {
    padding-block: 40px 0;
  }
}
.header__wrapper {
  position: relative;
  display: flex;
  gap: 32px;
}
@media (max-width: 945px) {
  .header__wrapper {
    flex-direction: column;
    gap: 0;
  }
}
.header_bg {
  background: radial-gradient(128.98% 141.42% at 100% 0%, #353535 0%, #0b0b0b 60.81%);
}
.header__left {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 768px) {
  .header__left {
    gap: 48px;
  }
}
@media (max-width: 480px) {
  .header__left {
    gap: 32px;
  }
}
.header__left-top {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.header__left-bottom {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 32px;
}
.header__right {
  flex: 1;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 945px) {
  .header__right {
    align-self: flex-end;
  }
}
@media (max-width: 480px) {
  .header__right {
    align-self: center;
    justify-content: normal;
  }
}
.header__title {
  font-family: var(--freeset);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  font-size: clamp(64px, 12.5vw, 96px);
}
@media (max-width: 480px) {
  .header__title {
    font-size: 64px;
  }
}
.header__description {
  font-family: var(--freeset);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 112.5%;
  font-size: clamp(20px, 4.16vw, 32px);
}
@media (max-width: 480px) {
  .header__description {
    font-size: 20px;
  }
}
.header__discount {
  font-family: var(--freeset);
  font-size: 72px;
  font-weight: 600;
  line-height: 110%;
  font-size: clamp(40px, 9.37vw, 72px);
  margin-left: 10%;
}
@media (max-width: 480px) {
  .header__discount {
    font-size: 40px;
  }
}
.header__star {
  position: absolute;
  bottom: -20%;
  z-index: 0;
}
@media (max-width: 945px) {
  .header__star {
    left: -90%;
    bottom: -35%;
  }
}
.header__star img {
  max-width: 1548px;
}
.header__image {
  width: 568px;
  height: 539px;
  z-index: 1;
  position: relative;
}
@media (max-width: 945px) {
  .header__image {
    width: 468px;
    height: 444px;
    margin-top: -96px;
  }
}
@media (max-width: 716px) {
  .header__image {
    margin-top: 0;
  }
}
.header__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  min-width: 468px;
}

.protection {
  padding-block: 64px;
}
@media (max-width: 768px) {
  .protection {
    padding-block: 48px;
  }
}
@media (max-width: 480px) {
  .protection {
    padding-block: 40px;
  }
}
.protection__blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .protection__blocks {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (min-width: 1280px) {
  .protection__blocks {
    gap: 32px;
  }
}
.protection__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
@media (max-width: 480px) {
  .protection__item {
    gap: 12px;
  }
}
.protection__item-image {
  max-width: 368px;
}
@media (max-width: 768px) {
  .protection__item-image {
    max-width: 224px;
  }
}
.protection__item-text {
  text-align: center;
  font-family: var(--freeset);
  font-size: 32px;
  font-weight: 600;
  line-height: 112.5%;
  font-size: clamp(20px, 4.6vw, 32px);
}
@media (max-width: 480px) {
  .protection__item-text {
    font-size: 20px;
  }
}

.chance {
  padding-top: 64px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .chance {
    padding-top: 48px;
  }
}
@media (max-width: 480px) {
  .chance {
    padding-top: 40px;
  }
}
.chance__wrapper {
  position: relative;
}
.chance__top {
  position: relative;
  z-index: 5;
  padding-bottom: 322px;
}
@media (min-width: 768px) {
  .chance__top {
    padding-bottom: 344px;
  }
}
@media (min-width: 1280px) {
  .chance__top {
    padding-bottom: 166px;
  }
}
.chance__top-title {
  margin-bottom: 32px;
  font-family: var(--freeset);
  font-weight: 600;
  line-height: 110%;
  font-size: clamp(24px, 5.2vw, 40px);
  max-width: 892px;
}
@media (max-width: 480px) {
  .chance__top-title {
    font-size: 24px;
  }
}
.chance__top-timer {
  margin-top: 64px;
}
@media (max-width: 768px) {
  .chance__top-timer {
    margin-top: 48px;
  }
}
.chance__top-timer_wrapper {
  margin-bottom: 32px;
}
.chance__top .chance__top-fr {
  font-size: 14px;
  margin-top: 10px;
}
.chance__bottom {
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
}
@media (min-width: 768px) {
  .chance__bottom {
    right: 0;
    transform: none;
  }
}
.chance__bottom-images {
  position: relative;
  height: 294px;
  width: 847px;
  margin-left: auto;
}
@media (max-width: 480px) {
  .chance__bottom-images {
    width: 635px;
  }
}
.chance__bottom-pics {
  display: flex;
  position: relative;
  justify-self: flex-end;
  align-items: flex-end;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media (min-width: 768px) {
  .chance__bottom-pics {
    margin-top: -128px;
  }
}
.chance__bottom-pic1 {
  position: relative;
  width: 498px;
  height: 358px;
}
@media (max-width: 480px) {
  .chance__bottom-pic1 {
    width: 373px;
    height: 268px;
  }
}
.chance__bottom-pic2 {
  position: relative;
  width: 432px;
  height: 217px;
  margin-left: -84px;
}
@media (max-width: 480px) {
  .chance__bottom-pic2 {
    width: 324px;
    height: 163px;
  }
}
.chance__bottom-star {
  position: absolute;
  top: 0;
  max-width: 860px;
  z-index: -1;
  scale: 1.8;
}

.cards {
  overflow: hidden;
  padding-block: 64px;
  position: relative;
}
@media (max-width: 768px) {
  .cards {
    padding-block: 48px;
  }
}
@media (max-width: 480px) {
  .cards {
    padding-block: 40px;
  }
}
.cards__title {
  margin-bottom: -24px;
  padding-inline: 6px;
}
@media (max-width: 768px) {
  .cards__title {
    margin-bottom: -12px;
  }
}
@media (max-width: 408px) {
  .cards__title {
    word-break: break-all;
  }
}
.cards__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cards__star {
  width: 1633px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cards__block {
  z-index: 5;
  position: relative;
  display: flex;
  gap: 32px;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: hidden;
  padding-block: 5px;
  scroll-snap-type: x mandatory;
}
@media (max-width: 785px) {
  .cards__block {
    justify-content: flex-start;
    padding-left: 184px;
    padding-right: 184px;
    overflow-x: auto;
  }
}
.cards__block-form {
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.cards__block-item {
  padding: 40px 32px;
  border-radius: 32px;
  background: #0b0b0b;
  width: 368px;
  position: relative;
  min-height: 710px;
  flex-shrink: 0;
  scroll-snap-align: center;
}
.cards__block-item::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  opacity: 1;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: 32px;
  background: var(--white);
  z-index: -1;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 1.6px;
  transition: all 0.3s ease;
}
.cards__block-item::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  opacity: 0;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: 32px;
  background: var(--blackfriday);
  z-index: -1;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 1.6px;
  transition: all 0.3s ease;
}
.cards__block-item:hover::after {
  opacity: 0;
}
.cards__block-item:hover::before {
  opacity: 1;
}
.cards__block-item:hover .button_card::after {
  opacity: 1;
}
.cards__block-item:hover .button_card:hover::before {
  opacity: 1;
}
.cards__block-item:hover .button_card:active {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(167.91% 89.74% at 59.69% -23.21%, #bdf82d 0%, rgba(189, 248, 45, 0) 100%), radial-gradient(211.29% 169.5% at 119.16% -20.54%, #d7be00 0%, rgba(215, 190, 0, 0) 61.94%), #5fd900;
}
.cards__block-item:hover .button_card:active::after {
  opacity: 0;
}
.cards__block-item:hover .button_card:active:hover::before {
  opacity: 0;
}
.cards__block-item:hover .cards__block-item_info {
  color: transparent;
}
.cards__block-item:hover .cards__block-item_info::before {
  opacity: 1;
}
.cards__block-item:hover .price_discount {
  color: transparent;
}
.cards__block-item:hover .price_discount::before {
  opacity: 1;
}
.cards__block-item:hover .cards__block-list_item svg {
  fill: #5fd900;
}
.cards__block-item:hover .price_economy {
  background-color: #5fd900;
}
.cards__block-item_top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cards__block-item_title {
  font-family: var(--freeset);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px; /* 125% */
}
.cards__block-item_info {
  font-family: var(--freeset);
  font-size: 32px;
  font-weight: 600;
  line-height: 36px;
  position: relative;
  transition: color 0.5s ease;
}
.cards__block-item_info::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: transparent;
  background: var(--blackfriday);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.5s ease;
  opacity: 0;
  pointer-events: none;
}
.cards__block-item_discount {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.cards__block-item_svg {
  display: flex;
  gap: 8px;
}
.cards__block-item_select {
  display: flex;
  gap: 6px;
}
.cards__block-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cards__block-list_item {
  display: flex;
  gap: 8px;
  font-size: 16px;
  line-height: 137.5%;
}
.cards__block-list_item svg {
  transition: all 0.3s ease;
}

.active.cards__block-item::after {
  opacity: 0;
}
.active.cards__block-item::before {
  opacity: 1;
}
.active.cards__block-item .button_card::after {
  opacity: 1;
}
.active.cards__block-item .button_card:hover::before {
  opacity: 1;
}
.active.cards__block-item .button_card:active {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(167.91% 89.74% at 59.69% -23.21%, #bdf82d 0%, rgba(189, 248, 45, 0) 100%), radial-gradient(211.29% 169.5% at 119.16% -20.54%, #d7be00 0%, rgba(215, 190, 0, 0) 61.94%), #5fd900;
}
.active.cards__block-item .button_card:active::after {
  opacity: 0;
}
.active.cards__block-item .button_card:active:hover::before {
  opacity: 0;
}
.active.cards__block-item .cards__block-item_info {
  color: transparent;
}
.active.cards__block-item .cards__block-item_info::before {
  opacity: 1;
}
.active.cards__block-item .price_discount {
  color: transparent;
}
.active.cards__block-item .price_discount::before {
  opacity: 1;
}
.active.cards__block-item .cards__block-list_item svg {
  fill: #5fd900;
}
.active.cards__block-item .price_economy {
  background-color: #5fd900;
}

.select {
  position: relative;
}
.select_input {
  border-radius: 5px;
  border: 1px solid var(--white);
  padding: 9px 12px;
  background: #0f0f0f;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
  color: var(--white);
  font-family: var(--roboto);
  font-size: 14px;
  line-height: 100%;
}
.select_input.open .select_arrow {
  rotate: 180deg;
}
.select_options {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  font-size: 14px;
  line-height: 100%;
  border-radius: 10px;
  border: 1px solid var(--white);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
  position: absolute;
  top: calc(100% + 4px);
  z-index: 5;
  position: absolute;
  background-color: #0f0f0f;
}
.select_option {
  cursor: pointer;
  padding: 9px 16px;
  transition: all 0.3s ease;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  width: -moz-max-content;
  width: max-content;
  background-color: transparent;
  border: none;
  color: var(--white);
  font-family: var(--roboto);
  font-size: 14px;
}
.select_option span {
  position: relative;
  z-index: 2;
}
.select_option::after {
  content: "";
  background: var(--blackfriday);
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.select_option:hover::after {
  opacity: 1;
}

.option-focused:focus-visible {
  content: "";
  background: var(--blackfriday);
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.hero_pic1 {
  position: absolute;
  top: 0;
  animation: pic1_down_hero 5s ease infinite;
  z-index: 2;
}

.hero_pic2 {
  position: absolute;
  top: 0;
  z-index: 1;
  animation: pic2_up_hero 5s ease infinite;
}

@keyframes pic1_down_hero {
  0% {
    top: 0%;
  }
  50% {
    top: -3%;
  }
  100% {
    top: 0%;
  }
}
@keyframes pic2_up_hero {
  0% {
    top: 0%;
  }
  50% {
    top: 3%;
  }
  100% {
    top: 0%;
  }
}
.header__star {
  animation: star_blink 10s ease infinite;
}

@keyframes star_blink {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.chance_pic1 {
  position: absolute;
  animation: pic1_down 5s ease infinite;
}

.chance_pic2 {
  position: absolute;
  bottom: 35%;
  animation: pic2_up 5s ease infinite;
}

@keyframes pic1_down {
  0% {
    top: 0%;
  }
  50% {
    top: -5%;
  }
  100% {
    top: 0%;
  }
}
@keyframes pic2_up {
  0% {
    bottom: 35%;
  }
  50% {
    bottom: 30%;
  }
  100% {
    bottom: 35%;
  }
}
.scroll-content {
  position: relative;
}

.custom-scrollbar {
  max-width: 368px;
  min-width: 296px;
  height: 4px;
  position: relative;
  background: transparent;
  margin: 20px;
  position: absolute;
  top: 100%;
}
@media (min-width: 786px) {
  .custom-scrollbar {
    display: none;
  }
}

.scrollbar-track {
  width: 100%;
  height: 4px;
  border-radius: 3px;
  background: #F2F2F2;
  position: absolute;
  overflow: hidden;
}

.scrollbar-thumb {
  width: 20%;
  height: 4px;
  border-radius: 3px;
  background: #808080;
  position: absolute;
}/*# sourceMappingURL=main.css.map */