@charset "UTF-8";
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/lato-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/lato-bold.woff2") format("woff2");
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}
address {
  font-style: normal;
}
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}
input::-ms-clear {
  display: none;
}
button,
input[type="submit"] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}
input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
label {
  cursor: pointer;
}
legend {
  display: block;
}
input[type="file"] {
  max-width: 100%;
}
* {
  padding: 0;
  margin: 0;
  border: none;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
a,
a:link,
a:visited,
a:hover {
  text-decoration: none;
}
:root {
  --topline-height: 71px;
  --primary-color: #fdfdfd;
  --secondary-color: #001d12;
  --body-bg: linear-gradient(120deg, #070708 0%, #161618 100%);
  --header-bg: #000000;
  --accardeon-bg: var(--header-bg);
  --btn-reg: #ffffff;
  --btn-reg-hover: #f8f767;
  --btn--login: #f8f767;
  --btn--login-hover: #ffdf2b;
  --active: #f8f767;
  --link: rgb(255, 255, 255);
  --link-hover: #f8f767;
  --link-page: #f8f767;
  --link-page--hover: #ffcd44;
  --burger-active: #ffffff;
  --nav-bg: var(--header-bg);
  --nav-top: 60px;
  --logo: 100px;
}
aside,
nav,
footer,
header,
section,
main {
  display: block;
}
h1,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
  text-align: justify;
}
h1,
.title {
  font-size: clamp(20px, 5vw, 34px);
  text-align: center;
  margin: 40px 0;
}
@media (max-width: 550px) {
  h1,
  .title {
    margin: 20px 0;
  }
}
h2 {
  font-size: clamp(20px, 5vw, 28px);
  margin-bottom: 20px;
}
h3 {
  font-size: clamp(18px, 5vw, 24px);
  margin-bottom: 15px;
}
ul,
ul li {
  list-style: none;
}
li {
  margin-bottom: 10px;
}
ol,
ul {
  margin: 10px 0;
}
ol {
  margin-left: 15px;
}
p {
  margin-bottom: 10px;
}
img {
  vertical-align: top;
}
[id] {
  scroll-margin-top: 100px;
}
img,
svg {
  max-width: 100%;
  height: auto;
}
.no-scroll {
  position: fixed;
  overflow-y: hidden;
  width: 100vw;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  position: relative;
  flex-grow: 1;
}
footer {
  flex-shrink: 0;
}
body {
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: normal;
  font-weight: 400;
  color: var(--primary-color);
  background: var(--body-bg);
}
.container {
  padding: 0 10px;
  max-width: 1230px;
  margin: 0 auto;
}
.p-80 {
  margin: 40px 0;
}
@media (max-width: 768px) {
  .p-80 {
    margin: 20px 0;
  }
}
.link {
  color: var(--link);
  transition: 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .link:hover {
    color: var(--link-hover);
  }
}
.link__modile {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  position: relative;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 50px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  border: 2px solid var(--btn--login);
  background-color: var(--btn--login);
  font-weight: 600;
  color: var(--secondary-color);
  overflow: hidden;
}
@media (min-width: 768px) {
  .btn:hover {
    border-color: var(--btn--login-hover);
    background-color: var(--btn--login-hover);
  }
}
.btn:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fa4923;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.btn:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 40px;
  height: 300px;
  background: #ffffff70;
  transform: translate(-150%, -50%) rotate(45deg);
  z-index: 2;
  animation: slideme 2.8s linear infinite;
}
@keyframes slideme {
  0% {
    transform: translate(-150%, -50%) rotate(45deg);
    opacity: 0;
  }
  20% {
    opacity: 0.5;
  }
  50% {
    transform: translate(400%, -50%) rotate(45deg);
    opacity: 0.35;
  }
  to {
    transform: translate(600%, -50%) rotate(45deg);
    opacity: 0;
  }
}
.img__wrapp {
  width: 50%;
  text-align: center;
}
@media (max-width: 768px) {
  .img__wrapp {
    width: 100%;
  }
}
.wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .wrapper {
    display: flex;
    flex-direction: column;
  }
}
.text__content {
  display: flex;
  flex-direction: column;
  text-align: justify;
  width: 50%;
}
@media (max-width: 768px) {
  .text__content {
    width: 100%;
  }
}
.offer__btns--54823 {
  grid-area: btns;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.offer__btn {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 550px) {
  .offer__btn {
    font-size: 14px;
    padding: 10px;
  }
}
.offer__btn--reg {
  border-color: var(--btn-reg);
  background-color: transparent;
  color: var(--btn-reg);
  transition: 0.3s ease-in-out;
}
@media (hover: hover) {
  .offer__btn--reg:hover {
    border-color: var(--btn-reg-hover);
    background-color: var(--btn-reg-hover);
    color: #000;
  }
}
.offer__btn--download {
  margin-right: auto;
  margin-left: 0;
}
.offer__btn--download img {
  max-width: 20px;
  height: 20px;
}
@media (max-width: 990px) {
  .header__container {
    display: flex;
    gap: 0;
  }
  .offer__btns--54823 {
    margin-left: auto;
  }
}
@media screen and (min-width: 990px) {
  .burger__btn {
    grid-area: burger;
    display: none;
  }
}
@media screen and (max-width: 990px) {
  .burger__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    margin-left: 5px;
    background-color: transparent;
    cursor: pointer;
  }
}
.burger__btn span {
  position: relative;
  background-color: #fff;
  width: 23px;
  height: 2px;
}
.burger__btn span:before {
  content: "";
  position: absolute;
  display: block;
  width: 23px;
  height: 2px;
  top: -5px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 560px) {
  .burger__btn span:before {
    top: -7px;
  }
}
.burger__btn span:after {
  content: "";
  position: absolute;
  display: block;
  width: 23px;
  height: 2px;
  bottom: -5px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 560px) {
  .burger__btn span:after {
    bottom: -7px;
  }
}
.burger__btn-active span:before {
  transform: rotate(45deg);
  top: -1px;
  background-color: var(--burger-active);
}
.burger__btn-active span:after {
  transform: rotate(-45deg);
  bottom: -1px;
  background-color: var(--burger-active);
}
.span__none-active {
  height: 0 !important;
}
@media screen and (max-width: 990px) {
  .nav {
    position: absolute;
    background: var(--nav-bg);
    padding: 40px;
    width: 400px;
    right: 0;
    top: var(--nav-top);
    height: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 5;
    transform: translateY(100%);
    z-index: 40;
    transition: all 0.3s ease-in-out;
  }
}
@media screen and (min-width: 990px) {
  .nav__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: end;
    max-width: 750px;
  }
}
.nav__active {
  display: flex;
  justify-content: center;
  visibility: visible;
  opacity: 1;
  height: 100vh;
  transform: translateY(0);
}
.active {
  position: relative;
  color: var(--active);
}
.active:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: -5px;
  background-color: var(--active);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1100px) {
  .footer__wrapp {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
}
@media (max-width: 1100px) {
  .footer__block {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 1100px) {
  .footer__block p {
    text-align: center;
  }
}
.pament__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.pament__icons li {
  background: #202020;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.pament__icons img {
  width: 60px;
  height: 40px;
}
@media (hover: hover) {
  .pament__icons li:hover,
  .icons__wrapp li:hover {
    background: #353232;
  }
}
.copyright {
  text-align: center;
  margin-top: 10px;
  color: #b6b6b6;
}
.owerlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000c;
  z-index: 30;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.owerlay_active {
  visibility: visible;
  opacity: 1;
}
.li-style li {
  position: relative;
  margin-left: 20px;
}
.li-style li:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #b19464;
  border-radius: 20px;
  display: block;
  left: -20px;
  padding-right: 10px;
  margin-right: 15px;
  transform: translateY(5px);
}
.img__left {
  max-width: 50%;
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .img__left {
    max-width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }
}
.img__right {
  max-width: 50%;
  float: right;
  margin-left: 15px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .img__right {
    max-width: 100%;
    margin-bottom: 20px;
    margin-left: 0;
  }
}
.content,
.big__content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.content div {
  justify-content: center;
}
.big__content {
  gap: 20px;
}
.content div {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
}
.big__content div {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.big__content div a,
.content div a {
  height: 100%;
}
.big__content div a img,
.content div a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.link__page {
  color: var(--link-page);
  transition: all 0.3s ease-in-out;
  text-decoration: underline !important;
}
.link__page:hover {
  color: var(--link-page--hover);
}
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000c;
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.mb-20 {
  margin-bottom: 20px;
}
.mt-20 {
  margin-top: 20px;
}
@media (max-width: 400px) {
  .page__btns--54823 {
    flex-direction: column;
    padding: 0 10px;
  }
}
.cards__wrapp {
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}
.card {
  flex-grow: 1;
  flex-basis: auto;
  width: clamp(220px, 25% - 20px, 300px);
  flex-direction: column;
  text-align: center;
  padding: 10px;
  border: 1px solid var(--active);
  background: var(--header-bg);
  border-radius: 5px;
  box-shadow: 3px 2px 4px #b1a88267;
  overflow: hidden;
  position: relative;
  display: flex;
  gap: 10px;
}
.card img {
  max-width: 50px;
  margin: 0 auto 10px;
}
.card h3 {
  text-align: center;
  margin: 0;
}
.accordions {
  width: 100%;
}
.accordion__button {
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  padding: 15px 20px;
  width: 100%;
  text-align: left;
  border: 1px solid #3f445a;
  outline: none;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.5s ease;
  -webkit-user-select: none;
  user-select: none;
  background: #021152;
  box-shadow: 3px 3px 5px #756d6d86;
  position: relative;
  letter-spacing: 1px;
  font-weight: 600;
}
.accordion__button:after {
  transition: transform 0.5s;
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  transform: translate(-50%, -50%) rotate(0);
  top: 50%;
  right: 10px;
  content: "";
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(/img/arrow.svg);
}
.accordion-panel__content {
  background: #021152;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  line-height: 1.5;
  margin: 10px 0;
  -webkit-user-select: none;
  user-select: none;
  box-shadow: 0 2px 5px #00000042;
}
.menu__wrapp {
  display: flex;
  align-items: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 10px;
  scrollbar-color: #a3a8b1 transparent;
  scrollbar-width: thin;
}
.menu__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 75px;
  gap: 10px;
}
.menu__item p {
  text-align: center;
  color: #fff;
}
.sport__wrapp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.sport__card p {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(14px, 2vw, 24px);
  z-index: 10;
}
.menu__section {
  position: sticky;
  top: var(--menu-top);
  left: 0;
  width: 100%;
  background-color: var(--body-bg);
  z-index: 10;
}
.memu__line {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: thin;
  padding: 10px 5px 10px 0;
  scrollbar-width: none;
}
@media (max-width: 1200px) {
  .memu__line {
    gap: 10px;
  }
}
.memu__line::-webkit-scrollbar {
  display: none;
}
.menu__link {
  color: #fff;
}
@media (hover: hover) {
  .menu__item:hover {
    background-color: #42424256;
    box-shadow: 4px 4px 8px #223c5080;
  }
}
.menu__item p {
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}
.menu__item img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .menu__item img {
    width: 30px;
    height: 30px;
  }
}
.app {
  padding: 10px;
  border: 1px solid var(--active);
  border-radius: 10px;
}
@media (max-width: 1200px) {
  .app {
    margin: 0 10px;
  }
}
.app__wrpp {
  display: flex;
  align-items: center;
}
@media (max-width: 690px) {
  .app__wrpp {
    flex-direction: column;
  }
}
.app__btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 690px) {
  .app__btn {
    width: 100%;
  }
}
.app__desc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}
.app__img {
  max-width: 100px;
}
.app__content span {
  color: var(--link-hover);
}
.app__content p {
  text-align: center;
  font-size: 18px;
  font-weight: 600px;
  margin: 0;
}
.app__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.app__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.app__info img {
  max-width: 20px;
  margin-bottom: 10px;
}
.app__info p {
  margin: 0;
  text-align: center;
  font-size: 14px;
}
.app__info h3 {
  margin: 0;
  text-align: center;
  font-size: 18px;
  color: var(--link-hover);
}
.payment__wrapp {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}
@media (max-width: 690px) {
  .payment__wrapp {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-auto-rows: 1fr;
    align-items: stretch;
  }
}
@media (max-width: 350px) {
  .payment__wrapp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    align-items: stretch;
  }
}
.payment__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-transform: uppercase;
  box-sizing: border-box;
  width: 120px;
}
@media (max-width: 690px) {
  .payment__item {
    width: 100%;
  }
}
.payment__item img {
  width: 50px;
  height: 50px;
}
.payment__item p {
  text-align: center;
  margin: 0;
}
.bonus__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 10px;
}
@media (max-width: 1150px) {
  .bonus__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 740px) {
  .bonus__items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.bonus__item {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: 5px;
}
@media (max-width: 740px) {
  .bonus__item {
    height: 300px;
  }
}
@media (max-width: 470px) {
  .bonus__item {
    height: 270px;
  }
}
.bonus__item--1 {
  background: #b173ff;
  background: linear-gradient(178deg, #b173ff, #7100ff);
}
.bonus__item--2 {
  background: #00d65a;
  background: linear-gradient(178deg, #00d65a, #008c3b);
}
.bonus__item--3 {
  background: #d073ff;
  background: linear-gradient(178deg, #d073ff, #a0f);
}
.bonus__item--4 {
  background: #29e6ff;
  background: linear-gradient(178deg, #29e6ff, #0086d4);
}
.bonus__item img {
  display: block;
  margin-top: 10px;
  margin-right: 10px;
  margin-left: auto;
  width: 150px;
  height: 150px;
  object-fit: cover;
  transition: 0.3s ease-in-out;
  animation: pulsar 2s infinite;
}
@media (max-width: 550px) {
  .bonus__item img {
    width: 130px;
    height: 130px;
  }
}
@media (hover: hover) {
  .bonus__item:hover img {
    transform: scale(1.05);
  }
}
.bonus__text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px;
  color: #fff;
}
@keyframes pulsar {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
  to {
    transform: scale(1);
  }
}
.bonus__text h2 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(23px, 3vw, 34px);
  margin-bottom: 10px;
}
.bonus__text p {
  color: #daa520;
  font-weight: 600;
}
.bonus__text span {
  display: block;
  width: max-content;
  color: #241c09;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 10px;
  margin-left: auto;
  padding: 10px 40px;
  border-radius: 50px;
  background-color: #fff;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.registration__text {
  text-align: center;
  margin: 0 0 15px;
  color: #daa520;
  font-weight: 600;
  animation-name: color;
  animation-duration: 1.5s;
  animation-iteration-count: 3.33;
  animation-fill-mode: forwards;
}
@keyframes color {
  0% {
    color: #daa520;
  }
  50% {
    color: #fff4b7;
  }
  to {
    color: #daa520;
  }
}
.footer {
  margin-top: 50px;
  padding: 30px 0;
  background: var(--header-bg);
}
.footer__wrapp {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
}
@media (max-width: 1360px) {
  .footer__wrapp {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
}
.footer__logo {
  max-width: var(--logo);
}
.footer__title {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
.footer__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.footer__age {
  max-width: 40px;
}
.footer__img {
  width: 150px;
}
.footer__btns--54823 {
  display: flex;
  gap: 10px;
}
.footer li {
  margin-bottom: 0;
}
.footer__block {
  flex: 1 0 auto;
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 15px;
}
@media (max-width: 1360px) {
  .footer__block {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
}
.footer__block h3 {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}
.footer__block p {
  margin-bottom: 0;
}
@media (max-width: 1360px) {
  .footer__block p {
    text-align: center;
  }
}
.footer__copyright {
  text-align: center;
  margin-top: 10px;
  color: #b6b6b6;
}
.icons__wrapp {
  display: flex;
  gap: 10px;
  align-items: center;
}
.icons__wrapp li {
  background: #202020;
  padding: 10px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
}
.icon__social img {
  width: 25px;
  height: 25px;
}
.payment__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.payment__icons li {
  background: #202020;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.payment__icons img {
  width: 60px;
  height: 40px;
}
@media (hover: hover) {
  .payment__icons li:hover,
  .icons__wrapp li:hover {
    background: #353232;
  }
}
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  color: #fff;
  background: var(--header-bg);
  z-index: 50;
  padding: 10px 0;
  box-shadow: 0 0 15px #fff;
  font-weight: 600;
}
.layout--topline .header {
  top: var(--topline-height);
}
.logo__link {
  display: flex;
  align-items: center;
}
.logo__wrapp {
  max-width: var(--logo);
  margin-right: 10px;
}
.logo__wrapp img {
  width: 100%;
  height: 100%;
}
.logo {
  margin: 0;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 30px);
}
.header__container {
  display: grid;
  grid-template-areas: "logo btns" "nav nav";
  gap: 10px;
}
.logo__link {
  grid-area: logo;
}
@media (max-width: 990px) {
  .header__container {
    display: flex;
    gap: 0;
  }
}
.nav ul {
  margin: 0;
  gap: 15px;
}
.nav li {
  margin: 0;
}
.nav {
  grid-area: nav;
  margin-left: auto;
}
.nav__mobile {
  display: none;
}
@media (max-width: 820px) {
  .nav__mobile {
    display: block;
  }
  .nav__desc {
    display: none;
  }
}
@media screen and (max-width: 990px) {
  .nav {
    position: absolute;
    background: var(--nav-bg);
    padding: 40px;
    width: 400px;
    right: 0;
    top: var(--nav-top);
    height: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 5;
    transform: translateY(100%);
    z-index: 20;
    transition: all 0.3s ease-in-out;
  }
}
@media (max-width: 560px) {
  .nav {
    width: 100%;
  }
}
@media screen and (min-width: 990px) {
  .nav__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: end;
    max-width: 585px;
  }
}
.nav__list::-webkit-scrollbar {
  width: 0;
  height: 0;
}
@media screen and (max-width: 990px) {
  .nav__list {
    display: flex;
    justify-content: start;
    flex-wrap: nowrap;
    align-items: start;
    width: 100%;
    gap: 15px;
    margin-bottom: 0;
    flex-direction: column;
    overflow-y: scroll;
    padding-bottom: 50px;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
.nav__item {
  margin-right: 20px;
}
.nav__active {
  display: flex;
  justify-content: center;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  height: 100vh;
}
.accordion {
  width: 100%;
}
.accordion {
  width: 100%;
  height: auto;
  margin: 10px 0;
}
.accordion__slot {
  width: 100%;
  display: block;
}
.accordion__button {
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  padding: 15px 35px 15px 20px;
  width: 100%;
  text-align: left;
  border: 1px solid #3f445a;
  outline: none;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.5s ease;
  -webkit-user-select: none;
  user-select: none;
  background: var(--accardeon-bg);
  box-shadow: 3px 3px 5px #756d6d86;
  position: relative;
  letter-spacing: 1px;
  font-weight: 600;
}
.accordion__button:hover {
  color: #f8f767;
}
.accordion__button:after {
  transition: transform 0.5s;
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  transform: translate(-50%, -50%) rotate(0);
  top: 50%;
  right: 10px;
  content: "";
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(/img/icons/arrow.svg);
}
.accordion__button-active:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.accordion__button-active {
  color: #f8f767;
}
.accordion__panel {
  overflow: hidden;
  max-height: 0;
  visibility: hidden;
  padding: 0 5px;
  transition:
    visibility 0.5s,
    max-height 0.6s;
  transition-timing-function: cubic-bezier(0.694, 0.0482, 0.335, 1);
}
.accordion__panel-active {
  max-height: var(--height, 0);
  visibility: visible;
}
.accordion-panel__content {
  background: var(--accardeon-bg);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  line-height: 1.5;
  margin: 10px 0;
  -webkit-user-select: none;
  user-select: none;
  box-shadow: 0 2px 5px #00000042;
}
.page__btns--54823 {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}
@media (max-width: 450px) {
  .page__btns--54823 {
    flex-direction: column;
    padding: 0 10px;
  }
}
.page__btns--54823 .offer__btn {
  margin-left: 0;
  display: block;
  text-align: center;
  align-items: center;
}
.game__line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 440px) {
  .game__line {
    gap: 15px;
  }
}
.game__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.game__card img {
  border-radius: 10px;
}
.game__card p {
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  font-size: 14px;
}
@media (min-width: 590px) {
  .game__card {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .game__card img {
    width: 60px;
    object-fit: cover;
  }
}
.game {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.game__block--text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.game__title {
  display: flex;
  align-items: center;
  margin: 0;
}
.game__title img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.game__items {
  display: flex;
  align-items: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 10px;
  scrollbar-color: #a3a8b1 transparent;
  scrollbar-width: thin;
}
.game__ietms::-webkit-scrollbar {
  width: 5px;
  color: transparent;
}
.game__ietms::-webkit-scrollbar-track {
  margin-top: 10px;
  background: transparent;
}
.game__ietms::-webkit-scrollbar-thumb {
  background-color: #050c26;
  border-radius: 20px;
  border: 3px solid #050c26;
}
.game__items.expanded {
  display: grid;
  overflow: visible;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
}
@media (max-width: 1030px) {
  .game__items.expanded {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 720px) {
  .game__items.expanded {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 370px) {
  .game__items.expanded {
    grid-template-columns: repeat(2, 1fr);
  }
}
.game__item {
  width: 112px;
}
@media (max-width: 1030px) {
  .game__item {
    width: 120px;
  }
}
.game__item img {
  width: 100%;
  object-fit: cover;
}
.game__button {
  display: none;
  background: transparent;
}
@media (max-width: 1030px) {
  .game__button {
    display: block;
    color: #fff;
  }
}
.game__items.expanded .game__item {
  width: 100%;
  height: 100%;
}
.game__items.expanded .game__item img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 10px;
  aspect-ratio: 720/404;
  height: 40vh;
}
@media (max-width: 920px) {
  .slider {
    height: 25vh;
  }
}
.slider__track {
  display: flex;
  transition: transform 0.4s ease;
  height: 100%;
}
.slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
}
.slide:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #00000080;
  z-index: 1;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide__btn {
  animation: pulse 2s infinite;
  background-color: #daa520;
  border-color: var(--primary-color);
  color: #000;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  to {
    transform: scale(1);
  }
}
.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #00000080;
  border: none;
  color: #fff;
  font-size: 30px;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  z-index: 2;
}
.slider__btn.prev {
  left: 10px;
}
.slider__btn.next {
  right: 10px;
}
.slide__one {
  position: relative;
}
.slide__content {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.slider__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}
.slider__dot.active__dot {
  background: #333;
}
@media (max-width: 768px) {
  .slider__btn {
    display: none;
  }
  .slider__dots {
    display: flex;
  }
}
.spin__wrapp {
  position: relative;
  display: block;
  bottom: 0;
  width: 100%;
  max-width: 540px;
  height: 540px;
  background-color: #000;
  border-radius: 50%;
  margin-bottom: 80px;
}
@media (max-width: 580px) {
  .spin__wrapp {
    max-width: 286px;
    max-height: 286px;
  }
}
.spin {
  position: absolute;
  right: 50%;
  transform: translate(50%);
  bottom: 0;
  width: 100%;
  z-index: 15;
}
.img__spin {
  border-radius: 50%;
}
.spin__win {
  position: absolute;
  z-index: 50;
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -56%);
}
.spin-2 {
  position: absolute;
  right: 50%;
  transform: translate(50%);
  bottom: 0;
  width: 100%;
}
.spin__bottom {
  position: absolute;
  bottom: -85px;
  z-index: -1;
  right: 50%;
  transform: translate(50%);
}
@media (max-width: 580px) {
  .spin__bottom {
    margin-bottom: 45px;
  }
}
.spin__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 137px;
  height: 137px;
  z-index: 20;
  color: #fff !important;
  background-image: url(/img/icons/button-wheel.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 580px) {
  .spin__btn {
    max-width: 92px;
    height: 92px;
    font-size: 16px;
  }
}
.spin__btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0.5;
  animation: btns 1.5s ease 0s infinite;
  background-color: red;
  box-shadow: 0 0 5px 5px red;
}
@keyframes btns {
  0% {
    background-color: red;
    box-shadow: 0 0 5px 5px red;
  }
  50% {
    background-color: transparent;
    box-shadow: 0 0 5px 5px transparent;
  }
  to {
    background-color: red;
    box-shadow: 0 0 5px 5px red;
  }
}
.sector {
  position: absolute;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 580px) {
  .sector {
    font-size: 11px;
  }
}
.sector h3 {
  font-size: 42px;
  margin-bottom: 5px;
  font-weight: 600;
  background: linear-gradient(180deg, red, #fdff00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}
@media (max-width: 580px) {
  .sector h3 {
    font-size: 20px;
  }
}
.sector p {
  text-align: center;
}
.bonus {
  color: #00008b;
}
.sector_7 {
  top: 14%;
  right: 30%;
  transform: rotate(24deg);
}
.sector_1 {
  top: 15%;
  right: 54%;
  transform: rotate(-25deg);
}
.sector_2 {
  top: 34%;
  right: 69%;
  transform: rotate(-77deg);
}
.sector_3 {
  top: 56%;
  right: 67%;
  transform: rotate(-131deg);
}
.sector_4 {
  top: 78%;
  right: 43%;
  transform: rotate(-172deg);
}
.sector_5 {
  top: 60%;
  right: 21%;
  transform: rotate(-222deg);
}
.sector_6 {
  top: 39%;
  right: 6%;
  transform: rotate(77deg);
}
@keyframes glaring {
  0% {
    background: transparent;
    box-shadow: 0 0 20px 12px transparent;
  }
  50% {
    background: #f5f5f5;
    box-shadow: 0 0 20px 12px #fff;
  }
  to {
    background: transparent;
    box-shadow: 0 0 20px 12px transparent;
  }
}
@media (max-width: 580px) {
  @keyframes glaring {
    0% {
      background: transparent;
      box-shadow: 0 0 10px 5px transparent;
    }
    50% {
      background: #f5f5f5;
      box-shadow: 0 0 10px 5px #fff;
    }
    to {
      background: transparent;
      box-shadow: 0 0 10px 5px transparent;
    }
  }
}
.text__spin {
  display: none;
  position: absolute;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 100;
  text-align: center;
}
@media (max-width: 580px) {
  .text__spin {
    font-size: 16px;
    bottom: -10%;
    transform: translate(-50%, -50%);
  }
}
.spin__link {
  background-color: #03f295;
  padding: 15px;
  border-radius: 50px;
  color: #000 !important;
  animation: spin_btn 3s ease 0s infinite;
}
@media (max-width: 580px) {
  .spin__link {
    font-size: 12px;
    padding: 10px;
  }
}
@keyframes spin_btn {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  to {
    transform: scale(1);
  }
}
.text__spin span {
  font-size: 120px;
  font-weight: 700;
}
@media (max-width: 580px) {
  .text__spin span {
    font-size: 64px;
  }
}
.text__spin p {
  font-size: 16px;
  font-weight: 700;
}
.img__spin {
  transition: transform 7s ease-in-out;
}
.spin-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.spin-backdrop {
  position: absolute;
  inset: 0;
  background: #000000bf;
}
.spin-modal {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.85);
  animation: spinFadeIn 0.4s ease forwards;
}
@keyframes spinFadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.spin-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #0009;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  z-index: 10;
}
.spin-close:hover {
  background: #f00c;
}
@media (max-width: 580px) {
  .spin-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 26px;
  }
}
.table-container {
  overflow-x: auto;
  margin: 20px 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
th {
  background-color: var(--header-bg);
}
@media (max-width: 600px) {
  table {
    font-size: 14px;
  }
  th,
  td {
    padding: 10px;
  }
}
.slots__game {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 10px;
}
.slots__game a img {
  min-height: 189px;
}
@media (max-width: 690px) {
  .slots__game {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
}
.slots__btn {
  width: 200px;
  margin: 20px auto;
  display: block;
  text-align: center;
}
.sport__wrapp {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .sport__wrapp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
.sport__wrapp--hiden,
.sport__btn--hidden {
  display: none;
}
@media (max-width: 768px) {
  .sport__wrapp--hiden,
  .sport__btn--hidden {
    display: flex;
  }
  .sport__card--hidden {
    display: none;
  }
}
.sport__card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px #00000042;
}
.sport__card img {
  width: 100%;
}
.sport__card p {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(14px, 2vw, 18px);
  z-index: 10;
  margin: 0;
}
.menu__wrapp {
  display: flex;
  align-items: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 10px;
  padding: 0 10px;
  scrollbar-color: #a3a8b1 transparent;
  scrollbar-width: thin;
}
.menu__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: max-content;
  padding: 10px;
  border: 1px solid #a3a8b1;
  border-radius: 7px;
  box-shadow: 4px 4px 8px #223c5033;
  min-width: 110px;
  transition: all 0.3s ease-in-out;
}
.menu__item::-webkit-scrollbar {
  width: 5px;
  color: transparent;
}
.menu__item::-webkit-scrollbar-track {
  margin-top: 10px;
  background: transparent;
}
.menu__item::-webkit-scrollbar-thumb {
  background-color: #050c26;
  border-radius: 20px;
  border: 3px solid #050c26;
}
.menu__item p {
  text-align: center;
  color: #fff;
  margin: 0;
}
.menu__item--img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #291874;
  border-radius: 10px;
}
.menu__item--img img {
  width: 30px;
}
.age-gate {
  width: 100%;
  max-width: 420px;
  height: 400px;
  margin: 0 auto;
  padding: 30px;
  background: #0b0b0b;
  border-radius: 16px;
  color: #fff;
  text-align: center;
  box-shadow: 0 0 40px #0009;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.age-gate__title {
  font-size: 18px;
  margin-bottom: 16px;
  text-align: center;
}
.age-gate__progress {
  width: 100%;
  height: 12px;
  background: #222;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 12px;
}
.age-gate__progress-bar {
  height: 100%;
  background: linear-gradient(90deg, red, #fc0);
  transition: width 0.05s linear;
}
.age-gate__percent {
  font-size: 14px;
  opacity: 0.8;
}
.age-gate__confirm h2 {
  font-size: 22px;
  margin-bottom: 12px;
}
.age-gate__confirm p {
  font-size: 14px;
  margin-bottom: 24px;
  opacity: 0.85;
  text-align: center;
}
.age-gate__btn {
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  background: #03f295;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  margin-top: 20px;
}
.age-gate__btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #03f29599;
}
.top {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  border-bottom: 1px solid rgba(255, 217, 0, 0.295);
  z-index: 100;
  background-color: var(--header-bg);
}
.top__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding: 0 10px;
}
.top__wrapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.top__btn {
  margin-right: 15px;
  --borderWidth: 3px;
  background: #1d1f20;
  position: relative;
  border-radius: var(--borderWidth);
  transition: all 0.3s ease;
}
.top__btn:after {
  content: "";
  position: absolute;
  top: calc(-1 * var(--borderWidth));
  left: calc(-1 * var(--borderWidth));
  height: calc(100% + var(--borderWidth) * 2);
  width: calc(100% + var(--borderWidth) * 2);
  background: linear-gradient(
    60deg,
    #f79533,
    #f37055,
    #ef4e7b,
    #a166ab,
    #5073b8,
    #1098ad,
    #07b39b,
    #6fba82
  );
  border-radius: calc(2 * var(--borderWidth));
  z-index: -1;
  animation: animatedgradient 2.5s ease alternate infinite;
  background-size: 300% 300%;
}
.top__btn:hover {
  animation: none;
  background: #394044;
}
.top__close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #07b39b;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  top: -4px;
  right: 0;
  font-size: 12px;
}
#box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  color: #fff;
}
@keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  to {
    background-position: 0% 50%;
  }
}
.bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 10px 0;
  background-color: var(--header-bg);
  box-shadow: 0 -3px 8px #ffffff8f;
  z-index: 50;
}
.bottom__wrapp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}
.bottom__btn {
  width: 24%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  border: 1px solid transparent;
  color: #fff;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 560px) {
  .bottom__btn {
    flex-direction: column;
    font-size: 12px;
    padding: 5px;
  }
}
.bottom__btn:hover {
  border: 1px solid var(--active);
}
.gold {
  position: relative;
  background-color: #da8320;
}
.gold:after {
  content: "+20%";
  position: absolute;
  top: -21px;
  right: -5px;
  border-radius: 5px;
  background-color: #daa520;
  padding: 5px;
}
.green {
  background-color: green;
}
.blue {
  background-color: #0068bd;
}
.orange {
  background-color: var(--active);
  color: #000;
}
.moneyBannerLink {
  text-decoration: none;
  color: inherit;
}
.banner {
  position: fixed;
  right: 10px;
  bottom: 75px;
  z-index: 50;
  background: linear-gradient(178deg, #029c42, #08af4d 48%, #0fc636);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 6px 18px #0000002e;
  transition:
    width 0.3s ease,
    height 0.3s ease,
    padding 0.3s ease,
    transform 0.3s ease;
}
.banner:before {
  content: "";
  position: absolute;
  top: -30%;
  left: -60%;
  width: 40%;
  height: 160%;
  transform: rotate(20deg);
  background: linear-gradient(90deg, #fff0, #ffffff59, #fff0);
  animation: shine 2s linear infinite;
  pointer-events: none;
}
.banner--collapsed {
  width: 75px;
  height: 80px;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.banner--collapsed .banner__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}
.banner--expanded {
  width: 250px;
  height: 65px;
  flex-direction: row-reverse;
  gap: 10px;
}
.banner--expanded .banner__title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
.banner__img {
  display: block;
  object-fit: contain;
  animation: pulse 1.2s ease-in-out infinite;
  transform-origin: center;
}
.banner__close {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 20;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 6px;
  background: #00000040;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner__close:hover {
  background: #00000059;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}
@keyframes shine {
  0% {
    left: -60%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    left: 120%;
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  to {
    left: 120%;
    opacity: 0;
  }
}
