@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  position: relative;
}
:root {
  --main-color: #022b38;
  --main-background-color: #faf9f8;
}
.body--active {
  overflow: hidden;
}
.container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  padding: 0 10px;
}
.cta {
  display: block;
  min-width: 70px;
  padding: 5px 8px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  font-weight: 600;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  transition: 0.2s all;
}
.cta:hover {
  color: #ffffff;
  background-color: #000000;
  border: 1px solid #000000;
}
.cta--primary {
  color: #fff;
  border: 1px solid #4c426b;
  background-color: #4c426b;
}
.cta--primary:hover {
  color: #4c426b;
  border: 1px solid #fff;
  background-color: #fff;
}
.cta--secondary {
  color: #110e1b;
  border: 1px solid #00eda6;
  background-color: #00eda6;
}
.cta--secondary:hover {
  color: #00eda6;
  border: 1px solid #110e1b;
  background-color: #110e1b;
}
.main {
  background-color: var(--main-background-color);
  position: relative;
  padding: 64px 0;
}
.main__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.main__navigation {
  left: -100%;
  width: 100%;
  position: relative;
  transition: 0.4s all;
  z-index: 100;
  position: fixed;
}
.main__navigation--active {
  left: 0;
}
.main__content {
  width: 100%;
}
.main__bonus {
  display: none;
  width: 100%;
  position: relative;
}
@media (min-width: 1440px) {
  .main {
    padding: 64px 0 0 0;
  }
  .main__navigation {
    left: 0;
    display: block;
    min-width: 300px;
    max-width: 300px;
    position: relative;
  }
  .main__navigation {
    display: block;
  }
  .main__bonus {
    display: block;
    min-width: 300px;
    max-width: 300px;
  }
}
.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background-color: var(--main-color);
}
.header__wrapper {
  height: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.header__logo-link {
  min-width: 60px;
  max-width: 70px;
  height: 40px;
  width: 100%;
}
.header__logo-img {
  width: 100%;
  height: 100%;
}
.header__block {
  display: flex;
  gap: 10px;
}
.hero {
  padding: 15px 0;
}

.hero__wrapper {
  width: 100%;
}

.hero__viewport {
  overflow: hidden;
}

.hero__track {
  display: flex;
  gap: 16px;
  transition: transform 0.3s ease;
  will-change: transform;
}

.hero__slide {
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 0;
}

.hero__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 180px;
  height: 100%;
  padding: 24px;
  border-radius: 20px;
  color: #fff;
  overflow: hidden;
}

.hero__content {
  max-width: 220px;
  z-index: 10;
}

.hero__title {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.hero__text {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.4;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background-color: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.hero__image {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  right: 0;
  bottom: 0;
}

.hero__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.hero__dot {
  width: 15px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background-color: rgba(17, 17, 17, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero__dot--active {
  width: 30px;
  background-color: #111;
}
.hero__track {
  gap: 12px;
}

.hero__slide {
  flex: 0 0 100%;
}

.hero__card {
  padding: 16px;
  min-height: 160px;
  border-radius: 16px;
  position: relative;
}

.hero__title {
  font-size: 18px;
}

.hero__text {
  margin-bottom: 14px;
  font-size: 13px;
}

.hero__button {
  min-height: 36px;
  padding: 0 14px;
  font-size: 13px;
}

@media (min-width: 425px) {
  .container {
    padding: 0 25px;
  }
}

@media (min-width: 576px) {
  .hero__slide {
    flex: 0 0 calc((100% - 16px) / 2);
  }

  .hero__card {
    min-height: 170px;
    padding: 20px;
    border-radius: 18px;
  }

  .hero__title {
    font-size: 20px;
  }

  .hero__text {
    font-size: 14px;
    margin-bottom: 14px;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 30px;
  }

  .cta {
    padding: 10px 15px;
    min-width: 160px;
  }

  .header__logo-link {
    min-width: 90px;
    max-width: 100px;
    height: 50px;
  }

  .header__block {
    gap: 15px;
  }
}

@media (min-width: 992px) {
  .hero__track {
    gap: 16px;
  }

  .hero__slide {
    flex: 0 0 calc((100% - 32px) / 3);
  }

  .hero__card {
    min-height: 180px;
    padding: 24px;
    border-radius: 20px;
  }

  .hero__title {
    font-size: 24px;
  }

  .hero__text {
    margin-bottom: 18px;
    font-size: 15px;
  }

  .hero__button {
    min-height: 40px;
    padding: 0 18px;
    font-size: 14px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1230px;
    padding: 0;
  }
}
.advantages {
  padding: 15px 0;
}

.advantages__wrapper {
  position: relative;
  width: 100%;
}

.advantages__viewport {
  overflow: hidden;
}

.advantages__track {
  display: flex;
  gap: 12px;
  transition: transform 0.3s ease;
  will-change: transform;
}

.advantages__slide {
  flex: 0 0 100%;
  min-width: 0;
}

.advantages__card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 120px;
  height: 100%;
  padding: 16px;
  border-radius: 20px;
  background: var(--main-color);
  overflow: hidden;
}

.advantages__icon {
  display: block;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  object-fit: contain;
}

.advantages__content {
  min-width: 0;
}

.advantages__title {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

.advantages__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
}

.advantages__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: rgba(108, 92, 156, 0.45);
  color: #d8d1ef;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    opacity 0.3s ease,
    background-color 0.3s ease;
}

.advantages__arrow:hover {
  background: rgba(108, 92, 156, 0.65);
}

.advantages__arrow:disabled {
  opacity: 0.45;
  cursor: default;
}

.advantages__arrow--prev {
  left: 12px;
}

.advantages__arrow--next {
  right: 12px;
}

.advantages__arrow-icon {
  flex-shrink: 0;
}

@media (min-width: 576px) {
  .advantages__slide {
    flex: 0 0 calc((100% - 12px) / 2);
  }

  .advantages__card {
    min-height: 118px;
    padding: 18px;
  }

  .advantages__title {
    font-size: 18px;
  }

  .advantages__text {
    font-size: 12px;
  }

  .advantages__icon {
    width: 64px;
    height: 64px;
  }
}

@media (min-width: 992px) {
  .advantages__track {
    gap: 16px;
  }

  .advantages__slide {
    flex: 0 0 calc((100% - 48px) / 4);
  }

  .advantages__card {
    min-height: 120px;
    padding: 20px;
    border-radius: 20px;
  }

  .advantages__title {
    font-size: 18px;
  }

  .advantages__text {
    font-size: 12px;
    line-height: 1.45;
  }

  .advantages__icon {
    width: 68px;
    height: 68px;
  }
}
.top-games {
  padding: 15px 0;
}
.top-games__content-block {
  display: flex;
  gap: 15px;
  flex-direction: column;
}
.top-games__wrapper {
  display: grid;
  gap: 20px;
  grid-template-rows: repeat(3, auto);
  grid-template-columns: repeat(2, minmax(100px, auto));
  justify-content: center;
}
.top-games__title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
}
.top-games__item {
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 2px 4px 14px -5px var(--main-color);
}
.top-games__image {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
  transition: 0.5s all;
}
.top-games__item:hover .top-games__image,
.top-games__item:active .top-games__image,
.top-games__item:target .top-games__image {
  scale: 1.1;
}
.top-games__eclips {
  justify-content: center;
  align-items: end;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0000005d;
  transition: 0.2s all;
  opacity: 0;
}
.top-games__item:hover .top-games__eclips,
.top-games__item:active .top-games__eclips,
.top-games__item:target .top-games__eclips {
  display: flex;
  opacity: 1;
}
.top-games__cta {
  width: 100%;
  padding: 5px;
  display: none;
  flex-direction: column;
  gap: 5px;
}
.top-games__item:hover .top-games__cta,
.top-games__item:active .top-games__cta,
.top-games__item:target .top-games__cta {
  display: flex;
}
@media (min-width: 425px) {
  .top-games__wrapper {
    grid-template-rows: repeat(2, minmax(140px, auto));
    grid-template-columns: repeat(3, minmax(110px, auto));
  }
}
@media (min-width: 768px) {
  .top-games__wrapper {
    grid-template-rows: repeat(2, minmax(140px, auto));
    grid-template-columns: repeat(4, minmax(110px, auto));
  }
}
@media (min-width: 1024px) {
  .top-games__wrapper {
    grid-template-rows: repeat(1, minmax(140px, auto));
    grid-template-columns: repeat(5, minmax(110px, auto));
  }
}
@media (min-width: 1440px) {
  .top-games__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 0;
  }
  .top-games__cta {
    gap: 10px;
    padding: 15px;
  }
  .top-games__item {
    width: 240px;
    height: 300px;
  }
}
.sports {
  padding: 15px 0;
}

.sports__wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.sports__viewport {
  overflow: hidden;
  width: 100%;
}

.sports__track {
  display: flex;
  gap: 12px;
  transition: transform 0.3s ease;
  will-change: transform;
}

.sports__item {
  flex: 0 0 auto;
  width: 56px;
  text-decoration: none;
  text-align: center;
}

.sports__icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: #f0ecec;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.sports__icon {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.sports__name {
  display: block;
  font-size: 12px;
  line-height: 1.2;
  color: #4a4a4a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sports__arrow {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 16px;
  background-color: #f0ecec;
  color: #9c9c9c;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.sports__arrow:disabled {
  opacity: 0.5;
  cursor: default;
}

@media (min-width: 768px) {
  .sports__item {
    width: 72px;
  }

  .sports__icon-box {
    width: 72px;
    height: 72px;
  }

  .sports__icon {
    width: 34px;
    height: 34px;
  }

  .sports__name {
    font-size: 14px;
  }

  .sports__arrow {
    width: 72px;
    height: 72px;
    font-size: 32px;
  }
}
.promo {
  padding: 10px 0;
}
.promo__content-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.promo__title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
}
.promo__swipe {
  overflow-x: auto;
  width: 100%;
}
.promo__wrapper {
  display: flex;
  gap: 20px;
}
.promo__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px 25px;
  border-radius: 10px;
  background-color: var(--main-color);
  box-shadow: 2px 4px 14px -5px var(--main-color);
  height: 450px;
}
.promo__image {
  max-width: 220px;
  border-radius: 10px;
  display: block;
}
.promo__block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #ffffff;
  height: 100%;
}
.promo__text {
  color: #c9c9c9;
}
@media (min-width: 425px) {
  .promo__image {
    width: 100%;
    min-width: 330px;
    max-width: 100%;
  }
  .promo__item {
    height: 100%;
  }
}
@media (min-width: 1200px) {
  .promo__item {
    flex-direction: row;
    height: 320px;
  }
}
.bonus {
  padding: 10px 0;
}
.bonus__content-block {
  display: flex;
  gap: 15px;
  flex-direction: column;
}
.bonus__title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
}
.bonus__wrapper {
  display: grid;
  grid-template-columns: minmax(300px, 1fr);
  grid-template-rows: repeat(7, 220px);
  gap: 15px;
}
.bonus__item {
  background-color: var(--main-color);
  box-shadow: 2px 4px 14px -5px var(--main-color);
  color: #ffffff;
  position: relative;
  border-radius: 10px;
  transition: 0.2s all;
}
.bonus__item:hover {
  scale: 1.02;
  box-shadow: 2px 4px 14px 1px var(--main-color);
}
.bonus__item--sport::before {
  content: "Спорт";
  background: #7ecef0;
  position: absolute;
  clip-path: polygon(0 0, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
  color: #000000;
  top: 15px;
  left: 0;
  padding: 5px;
  font-size: 12px;
  min-width: 60px;
  text-align: center;
  text-transform: uppercase;
}
.bonus__item--casino::before {
  content: "Казино";
  background: #f09fe7;
  position: absolute;
  clip-path: polygon(0 0, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
  color: #000000;
  top: 15px;
  left: 0;
  padding: 5px;
  font-size: 12px;
  min-width: 60px;
  text-align: center;
  text-transform: uppercase;
}
.bonus__link {
  display: flex;
  padding: 45px 15px 35px;
  height: 100%;
}

.bonus__block {
  max-width: 200px;
  z-index: 1;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.bonus__image {
  position: absolute;
  width: 170px;
  right: 0;
  top: 5px;
}
.bonus__subtitle,
.bonus__description {
  font-weight: 600;
}
.bonus__icon {
  position: absolute;
  bottom: 20px;
  right: 15px;
}
.bonus__subtitle {
  font-size: 18px;
}
.bonus__description {
  font-size: 16px;
}
.bonus__subdescription {
  color: #969696;
  font-size: 12px;
}
@media (min-width: 768px) {
  .bonus__wrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 220px);
  }
}
@media (min-width: 1024px) {
  .bonus__wrapper {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 220px);
  }
}
.invite-bonus {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #00000074;
  transition: 0.3s all;
  z-index: 10000;
  opacity: 0;
}
.invite-bonus::before {
  content: " ";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background: url("/assets/image/invite-bonus/close.svg") no-repeat center / cover;
  right: 20px;
  top: 20px;
}
.invite-bonus--active {
  right: 0;
  opacity: 1;
}
.invite-bonus--active > .invite-bonus__wrapper {
  bottom: 0;
}
.invite-bonus__wrapper {
  position: fixed;
  bottom: -100%;
  display: flex;
  flex-direction: column;
  background-color: var(--main-background-color);
  width: 100%;
  height: 85vh;
  overflow-y: auto;
  padding: 15px 20px;
  border-radius: 15px 15px 0 0;
  transition: 0.6s all;
}

.invite-bonus__image {
  display: none;
}
.invite-bonus__title {
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: 600;
}
.invite-bonus__subtitle {
  color: #969696;
  font-size: 14px;
  margin-bottom: 20px;
}
.invite-block {
  display: flex;
  flex-direction: column;
  background-color: #f0efe7;
  padding: 10px 0 10px 15px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.invite-block__item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.invite-block__item:last-child {
  margin: 0;
}
.invite-block__item:last-child > .invite-block__info {
  border-bottom: none;
  padding-bottom: 0;
}
.invite-block__icon {
  width: 32px;
  height: 32px;
  margin-right: 15px;
}
.invite-block__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  border-bottom: 1px solid #969696;
  padding-bottom: 10px;
  padding-right: 15px;
  width: 100%;
}
.invite-block__wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}
.invite-block__title {
  color: #969696;
  font-size: 14px;
}
.invite-block__text {
  font-style: 16px;
}
.invite-block__check {
  padding: 8px;
  width: 10px;
  height: 10px;
  border: 2px solid #969696;
  border-radius: 100%;
}
.invite-bonus__description {
  line-height: 16px;
  font-size: 14px;
  color: #969696;
}
.invite-bonus__link {
  color: var(--main-color);
  font-weight: 600;
}
@media (min-width: 768px) {
  .invite-bonus__wrapper {
    height: 65vh;
  }
}
@media (min-width: 1440px) {
  .invite-bonus__subtitle,
  .invite-bonus__description,
  .invite-bonus__title {
    padding: 0 15px;
  }
  .invite-bonus {
    min-width: 300px;
    max-width: 300px;
    width: 100%;
    background-color: unset;
    position: relative;
    z-index: 100;
  }
  .invite-bonus__wrapper {
    right: 0;
    border-radius: 0;
    width: 300px;
    scrollbar-width: none;
    height: calc(100% - 64px);
    padding: 0 0 20px 0;
    box-shadow: 2px 4px 14px -5px var(--main-color);
    background-color: #ffffff;
  }
  .invite-bonus__image {
    display: block;
  }
  .invite-block {
    margin: 0 15px 15px 15px;
  }
}
.navigation {
  padding: 15px 0;
  position: fixed;

  width: 100%;
  height: 100%;
  box-shadow: 2px 4px 14px -5px var(--main-color);
  background-color: #ffffff;
}
.navigation__list {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  gap: 10px;
}

.navigation__item:hover > .navigation__link,
.navigation__item:active > .navigation__link,
.navigation__item:target > .navigation__link {
  color: #ff8c00;
  border-bottom: 2px solid #ff8c00;
  font-size: 22px;
}
.navigation__link {
  width: 100%;
  color: var(--main-color);
  font-weight: 600;
  font-size: 20px;
  transition: 0.2s all;
  display: block;
  height: 100%;
  border-bottom: 2px solid var(--main-color);
  transition: 0.1s all;
  height: 35px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .navigation {
    width: 50%;
  }
}
@media (min-width: 1440px) {
  .navigation {
    min-width: 300px;
    max-width: 300px;
  }
}

.lang-switcher {
  display: flex;
  gap: 8px;
  padding: 0 15px;
}
.lang-switcher__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}
.lang-switcher__link:hover {
  color: #000000;
  border-color: rgba(0, 0, 0, 0.4);
}
.lang-switcher__link--active {
  color: #000000;
  background: rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.navigation-panel {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 64px;
  background-color: var(--main-color);
  z-index: 100;
}
.navigation-panel__list {
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: space-around;
  list-style-type: none;
  padding: 0 20px;
  border-top: 1px solid var(--main-background-color);
}
.navigation-panel__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 0;
  width: 70px;
  height: 100%;
}
.navigation-panel__icon {
  width: 28px;
  height: 28px;
}
.navigation-panel__text {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}
.navigation-panel__burger {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.navigation-panel__line {
  width: 40px;
  height: 3px;
  background-color: #ffffff;
}
@media (min-width: 1440px) {
  .navigation-panel {
    display: none;
  }
}
.providers {
  overflow: hidden;
  padding: 10px 0;
}

.providers__wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  position: relative;
}
.providers__title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
}
.providers__viewport {
  min-width: 0;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

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

.providers__track {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: max-content;
  min-width: 100%;
}

.providers__row {
  display: flex;
  gap: 12px;
  width: max-content;
}

.providers__item {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 5px 10px;
  border-radius: 10px;
  background-color: #4c426b;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
  transition: 0.2s all;
  box-shadow: 2px 4px 14px -5px var(--main-color);
  display: flex;
  gap: 5px;
}
.providers__item:hover {
  background-color: var(--main-color);
  box-shadow: 2px 4px 14px 1px var(--main-color);
  scale: 1.05;
}
.providers__arrow {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background-color: var(--main-color);
  color: #d2d6db;
  font-size: 24px;
  cursor: pointer;
  flex-shrink: 0;
  position: absolute;
  z-index: 10;
}
.providers__arrow--prev {
  top: 50%;
  left: 0;
}
.providers__arrow--next {
  top: 50%;
  right: 0;
}
.providers__arrow:disabled {
  opacity: 0.4;
  cursor: default;
}
.super-prise {
  padding: 10px 0;
}
.super-prise__content-block {
  display: flex;
  gap: 15px;
  flex-direction: column;
}
.super-prise__title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
}
.super-prise__wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}
.super-prise__item {
  display: none;
  background-color: var(--main-color);
  box-shadow: 2px 4px 14px -5px var(--main-color);
  border-radius: 10px;
  padding: 5px;
  color: #ffffff;
  align-items: center;
}
.super-prise__item--top {
  display: flex;
}
.super-prise__info {
  width: 45%;
  display: flex;
  flex-direction: column;
  margin: 0 auto 0 10px;
}
.super-prise__text {
  font-size: 16px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.super-prise__id {
  font-size: 10px;
  color: #969696;
}
.super-prise__sum {
  font-weight: 600;
}
.super-prise__block {
  display: grid;
  gap: 10px;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
}

.super-prise-list {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  list-style-type: none;
  align-items: end;
}
.super-prise-list__item {
  width: 100%;
}
.super-prise-list__item:hover .super-prise-icon__eclips,
.super-prise__item:hover .super-prise-icon__eclips {
  opacity: 1;
}
.super-prise-list__link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 160px;
  max-height: 180px;
  padding: 10px;
  background-color: var(--main-color);
  border-radius: 10px;
  color: #ffffff;
  height: 100%;
  box-shadow: 2px 4px 14px -5px var(--main-color);
}
.super-prise-list__link--win {
  min-height: 180px;
  max-height: 190px;
}
.super-prise-list__id {
  font-size: 10px;
  color: #969696;
}
.super-prise-list__text {
  font-size: 14px;
  font-weight: 600;
}
.super-prise-icon {
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100px;
}
.super-prise-icon__image {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.super-prise-icon__eclips {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #0000005b;
  border-radius: 10px;
  transition: 0.2s all;
}
.super-prise-icon__star {
  position: absolute;
  bottom: -25%;
  right: -25%;
}
@media (min-width: 375px) {
  .super-prise__info {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .super-prise__wrapper {
    flex-direction: row;
  }
  .super-prise-list__link {
    min-height: 180px;
    max-height: 180px;
  }
  .super-prise-list__link--win {
    min-height: 200px;
    max-height: 200px;
  }
  .super-prise__item {
    padding: 10px;
  }
  .super-prise-list__id {
    font-size: 14px;
  }
  .super-prise-list__text {
    font-size: 16px;
  }
  .super-prise__text {
    font-size: 16px;
  }
  .super-prise__id {
    font-size: 14px;
  }
  .super-prise__sum {
    font-size: 18px;
  }
  .super-prise-list__text {
    width: 80px;
  }
  .super-prise__block {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .super-prise__block {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
  }
  .super-prise__item {
    display: flex;
  }
  .super-prise__info {
    width: 40%;
  }
}
@media (min-width: 1200px) {
  .super-prise__info {
    width: 55%;
  }
}
.content {
  padding: 10px 0;
  height: 300px;
  overflow: hidden;
}
.content__wrapper {
  height: 300px;
  overflow-y: scroll;
}
.content__wrapper::-webkit-scrollbar {
  width: 8px;
}
.content__wrapper::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
  border-radius: 10px;
}
.content__wrapper::-webkit-scrollbar-track {
  background: transparent;
}
.content__wrapper::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.content__wrapper table {
  display: block !important;
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  margin-bottom: 30px;
  border: 1px solid var(--main-color);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.content__wrapper thead,
.content__wrapper tbody {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.content__wrapper tr {
  display: flex;
  width: 100%;
}

.content__wrapper table th,
.content__wrapper table td {
  display: flex;
  width: 100%;
  padding: 10px 12px;
  border-bottom: 1px solid var(--main-color);
  font-size: 15px;
  color: #ffffff;
  white-space: normal;
  word-wrap: break-word;
  word-break: break-word;
  box-sizing: border-box;
  font-weight: 600;
  min-width: 110px;
}
.content__wrapper table td {
  color: var(--main-color);
}

.content__wrapper table thead th {
  background-color: var(--main-color);
  color: #ffffff;
  font-size: 18px;
}
.content__wrapper h1,
.content__wrapper h2,
.content__wrapper h3 {
  margin-bottom: 15px;
  margin-top: 25px;
  padding-bottom: 10px;
}
.content__wrapper h4,
.content__wrapper h5,
.content__wrapper h6 {
  margin-bottom: 5px;
  margin-top: 15px;
  padding-bottom: 2px;
}
.content__wrapper h1 {
  font-size: clamp(30px, 5vw, 40px);
  line-height: clamp(35px, 5vw, 45px);
  color: var(--main-color);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--main-color);
  margin-top: 0;
}
.content__wrapper h2 {
  font-size: clamp(25px, 5vw, 35px);
  line-height: clamp(30px, 5vw, 40px);
}
.content__wrapper h3 {
  font-size: clamp(20px, 5vw, 30px);
  line-height: clamp(25px, 5vw, 35px);
}
.content__wrapper h4 {
  font-size: clamp(18px, 5vw, 25px);
  line-height: clamp(23px, 5vw, 30px);
}
.content__wrapper h5 {
  font-size: clamp(16px, 5vw, 20px);
  line-height: clamp(21px, 5vw, 25px);
}
.content__wrapper h6 {
  font-size: clamp(16px, 5vw, 18px);
  line-height: clamp(21px, 5vw, 23px);
}

.content__wrapper h2,
.content__wrapper h3,
.content__wrapper h4,
.content__wrapper h5,
.content__wrapper h6 {
  color: var(--main-color);
  border-bottom: 1px solid var(--main-color);
}
.content__wrapper p {
  margin-bottom: 15px;
  font-size: clamp(12px, 2vw, 16px);
  line-height: clamp(25px, 2vw, 30px);
}
.content__wrapper a {
  color: #4a4cfa;
}
.content__wrapper a:hover {
  color: #37399c;
}
.content__wrapper ol,
.content__wrapper ul {
  margin-left: 20px;
  margin-bottom: 15px;
}
.content__wrapper ol li,
.content__wrapper ul li {
  margin-bottom: 10px;
}
.content__wrapper img {
  width: 100%;
}
.footer {
  margin-top: 10px;
  padding: 10px 0;
  background-color: var(--main-color);
  color: #ffffff;
}
.footer__conten-block {
  display: flex;
  gap: 20px;
  flex-direction: column;
  padding: 0 10px;
}
.footer-navigation {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ffffff;
  list-style-type: none;
}
.footer-navigation__block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-navigation__list {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  gap: 10px;
}
.footer-navigation__link {
  color: #969696;
  width: 100%;
}
.footer-app {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ffffff;
}
.footer-app__image {
  width: 100%;
  max-width: 140px;
}
.footer-payments {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ffffff;
}
.footer-payments__block {
  display: flex;
  gap: 10px;
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ffffff;
}
.footer-social__block {
  display: flex;
  gap: 10px;
}
.footer-social__icon {
  width: 24px;
  height: 24px;
}
.footer-information {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
.footer-information__copiryght {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .footer-navigation {
    flex-direction: row;
  }
}
