:root {
  --background: #190617;
  --header: #0c0c0c;
  --text: #faf9f8;
  --text-menu: #8a8a8a;
  --radius-tab: 20px;
  --radius: 24px;
  --radius-btn: 16px;
  --border: #ffffff1a;
  --black: #000;
  --bonus-color: #b8b8b8;
  --btn-log: #1d1d1e;
  --hover-log: #232325;
  --btn-reg: #ff2da6;
  --hover-reg: #ff2da6;
  --color-reg: #000000e5;
  --hover-tab: #991b6433;
  --providers: linear-gradient( 180deg, rgba(221, 134, 224, 0) 0%, rgba(221, 134, 224, 0.2) 100% );
}

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

html {
  scroll-behavior: smooth;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: "Manrope", sans-serif;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

button {
  cursor: pointer;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

@font-face {
  font-style: normal;
  font-family: "Manrope";
  font-weight: 400;
  src: url("fonts/Manrope-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-family: "Manrope";
  font-weight: 500;
  src: url("fonts/Manrope-Medium.ttf");
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-family: "Manrope";
  font-weight: 600;
  src: url("fonts/Manrope-SemiBold.ttf");
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-family: "Manrope";
  font-weight: 700;
  src: url("fonts/Manrope-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-family: "Manrope";
  font-weight: 800;
  src: url("fonts/Manrope-ExtraBold.ttf");
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--background);
  color: var(--text);
}

img {
  border-style: none;
  max-width: 100%;
  height: auto;
}

.wrapper {
  margin: auto;
  max-width: 100%;
  padding: 0 10px;
  width: 1200px;
}

/* Header */
.header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 16px;
  position: sticky;
  top: 0;
  transition: transform 0.1s ease;
  z-index: 29;
  background-color: var(--header);
  border-bottom: 1px solid var(--border);
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.header__content-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__content-left .logo img {
  width: 56px;
}
.header__content-burger {
  width: 40px;
  height: 40px;
  display: none;
  border-radius: var(--radius-btn);
}
.header__content-burger:hover {
  background-color: var(--black);
}
@media (min-width: 960px) {
  .header__content-burger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.header__content-burger svg {
  width: 20px;
  height: 20px;
}
.header__content-menu {
  display: none;
  gap: 4px;
}
@media (min-width: 960px) {
  .header__content-menu {
    display: flex;
    align-items: center;
  }
}
.header__content-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 40px;
  min-width: 40px;
  padding: 8px 12px;
  color: var(--text-menu);
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  border-radius: var(--radius-btn);
  transition: color 150ms linear, background-color 150ms linear;
}
.header__content-link:hover {
  background-color: var(--black);
}
.header__content-link svg {
  width: 20px;
  height: 20px;
}
.header__content-search {
  height: 40px;
  min-width: 40px;
  display: none;
  border-radius: var(--radius-btn);
  transition: color 150ms linear, background-color 150ms linear;
}
.header__content-search:hover {
  background-color: var(--black);
}
@media (min-width: 960px) {
  .header__content-search {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.header__content-search svg {
  width: 20px;
  height: 20px;
}
.header__content-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__content-btns .btn-reg {
  width: 115px;
  animation-name: pulse;
  animation-duration: 1.15s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
}
.header__content-btns .btn-reg .icon-bonus {
  width: 22px;
  height: 22px;
  position: absolute;
  right: -8px;
  top: -8px;
  border-radius: 50%;
  background-color: var(--bonus-color);
  border: 1px solid var(--header);
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__content-btns .btn-reg .icon-bonus svg {
  width: 14px;
  height: 14px;
}
.header__content-btns .btn-log {
  width: 60px;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.9);
  }
}
.btn {
  border-radius: var(--radius-btn);
  background-color: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  height: 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 0;
}

.btn-log {
  background-color: var(--btn-log);
}
.btn-log:hover {
  background-color: var(--hover-log);
}

.btn-reg {
  background-color: var(--btn-reg);
  color: var(--color-reg);
}
.btn-reg:hover {
  background-color: var(--hover-reg);
}

/* Content */
.content-block {
  margin: 12px 0;
}

.slider {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  position: relative;
  margin-bottom: 12px;
}
.slider .main-slider-next,
.slider .main-slider-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  display: none;
  background-color: var(--header);
}
@media (min-width: 640px) {
  .slider .main-slider-next,
  .slider .main-slider-prev {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.slider .main-slider-next svg,
.slider .main-slider-prev svg {
  width: 24px;
  height: 24px;
}
.slider .main-slider-prev {
  left: 20px;
}
.slider .main-slider-next {
  right: 20px;
}
.slider .main-slider {
  width: 100%;
  min-width: 0;
  height: 256px;
  overflow: hidden;
  touch-action: pan-y;
}
.slider .main-slider .swiper-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s ease;
  will-change: transform;
}
.slider .main-slider .swiper-slide {
  display: block;
  flex: 0 0 100%;
  min-width: 0;
}
@media (min-width: 960px) {
  .slider .main-slider {
    height: 360px;
  }
}
.slider .main-slider .swiper-wrapper,
.slider .main-slider .swiper-slide {
  height: 100%;
}
.slider .main-slider .slide-main {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.slider .main-slider .slide-main img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  -o-object-fit: cover;
     object-fit: cover;
}
.slider .main-slider .slider-text {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 16px;
}
.slider .main-slider .slider-text span {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 26px;
  line-height: 28px;
  color: var(--text);
  margin-bottom: 2px;
}
@media (min-width: 960px) {
  .slider .main-slider .slider-text span {
    font-size: 48px;
    line-height: 52px;
  }
}
.slider .main-slider .slider-text p {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--text);
  margin-bottom: 12px;
}
@media (min-width: 960px) {
  .slider .main-slider .slider-text p {
    font-size: 24px;
    line-height: 32px;
  }
}
.slider .main-slider .slider-text .btn {
  padding: 0 15px;
}
.slider .main-slider .slider-text .btn:hover {
  opacity: 0.8;
}

.items {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.items__item {
  display: flex;
  align-items: center;
  border-radius: var(--radius-tab);
  gap: 8px;
  height: 40px;
  padding: 6px 12px;
  background-color: var(--black);
}
.items__item:hover {
  background-color: var(--hover-tab);
}
.items__item img {
  width: 24px;
  height: 24px;
}
.items__item span {
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
}

.slots {
  margin-bottom: 20px;
}
.slots__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.slots__top span {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: var(--text);
}
.slots__top-more {
  display: flex;
  align-items: center;
  gap: 4px;
}
.slots__top-more span {
  font-size: 16px;
  line-height: 20px;
  color: var(--text-menu);
}
.slots__top-more svg {
  width: 20px;
  height: 20px;
}
.slots__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 8px;
  grid-column-gap: 8px;
}
@media (min-width: 640px) {
  .slots__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 960px) {
  .slots__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1280px) {
  .slots__list {
    grid-template-columns: repeat(7, 1fr);
  }
}
.slots__list-item {
  border-radius: var(--radius-tab);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--black);
}
.slots__list-img {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease-out;
  transform: scale3d(1, 1, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.slots__list-img::before {
  content-visibility: hidden;
  content: "";
  border-top-left-radius: var(--radius-tab);
  border-top-right-radius: var(--radius-tab);
  position: absolute;
  inset: 0;
  opacity: 0;
  background: var(--overlay);
  transition: opacity 0.3s ease-in-out;
  z-index: 4;
}
.slots__list-img:hover {
  transform: translateZ(0) scale3d(1.05, 1.05, 1.05);
}
.slots__list-img:hover::before {
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 1;
  content-visibility: visible;
}
.slots__list-img:hover .play {
  content-visibility: visible;
  opacity: 1;
  transform: translateZ(0) scale3d(1.05, 1.05, 1.05);
}
.slots__list-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slots__list-img .play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--btn-reg);
  position: absolute;
  transition: transform 0.35s ease-out;
  content-visibility: hidden;
  opacity: 0;
  z-index: 4;
  transform: translate(40%);
}
.slots__list-img .play svg {
  width: 38px;
  height: 38px;
}
.slots__list-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 50px;
  padding: 8px 12px;
}
.slots__list-title {
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
}
.slots__list-provider {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: var(--bonus-color);
}

.bonuses {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-row-gap: 8px;
  grid-column-gap: 8px;
  margin-bottom: 20px;
}
@media (min-width: 640px) {
  .bonuses {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .bonuses {
    grid-template-columns: repeat(3, 1fr);
  }
}
.bonuses__item {
  background-color: var(--black);
  border-radius: var(--radius-tab);
  position: relative;
  overflow: hidden;
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bonuses__item-top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  align-items: flex-start;
  position: relative;
}
.bonuses__item-category {
  display: flex;
  align-items: center;
  gap: 4px;
  top: 12px;
  left: 12px;
  z-index: 3;
  position: relative;
}
.bonuses__item-category .category-bonus, .bonuses__item-category .category-days {
  border-radius: var(--radius-tab);
  background-color: var(--btn-reg);
  padding: 2px 6px;
  display: flex;
  align-items: center;
  text-align: center;
}
.bonuses__item-category .category-bonus span, .bonuses__item-category .category-days span {
  color: var(--color-reg);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}
.bonuses__item-category .category-days {
  gap: 2px;
  background-color: unset;
}
.bonuses__item-category .category-days svg {
  width: 12px;
  height: 12px;
}
.bonuses__item-category .category-days span {
  color: var(--text);
}
.bonuses__item-img {
  position: absolute;
  overflow: hidden;
  width: 100px;
  height: 100px;
  right: 0;
  transform: translateY(50%);
}
.bonuses__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.bonuses__item-title {
  position: relative;
  bottom: 12px;
  left: 12px;
}
.bonuses__item-title span {
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--text);
}
.bonuses__item-text {
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 8px 16px;
  height: 56px;
}
.bonuses__item-text span {
  color: var(--text);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
.bonuses__item-text svg {
  width: 24px;
  height: 24px;
}

.images {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-row-gap: 8px;
  grid-column-gap: 8px;
  margin-bottom: 20px;
}
@media (min-width: 640px) {
  .images {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .images {
    grid-template-columns: repeat(3, 1fr);
  }
}
.images__item {
  background-color: var(--black);
  border-radius: var(--radius-tab);
  position: relative;
  overflow: hidden;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.images__item:hover img {
  transform: scale(1.05);
}
.images__item img {
  transition: transform 0.4s ease-out;
}
.images__item span {
  position: absolute;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: var(--text);
  top: 12px;
  left: 12px;
}

.providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  margin-top: 15px;
}
.providers__item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-btn);
  background-color: var(--black);
  background-image: var(--providers);
  width: 56px;
  height: 56px;
}
.providers__item:hover {
  background-color: var(--hover-tab);
}
.providers__item img {
  width: 32px;
  height: 32px;
}

.img-bonus {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease-out;
}

footer .footer {
  background-color: var(--black);
  border-radius: var(--radius);
}
footer .footer__row {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
footer .footer__row:last-child {
  border-bottom: 0;
}
footer .footer__row span {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: var(--text);
}
footer .footer__row a {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: var(--text-menu);
}
footer .footer__row a:hover {
  color: var(--text);
}
footer .footer__row p {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: var(--text-menu);
}
footer .footer__row .licenses {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .footer__row .licenses img {
  width: 34px;
  height: 34px;
}

.seo__block {
  border-radius: var(--radius);
  padding: 20px;
  background-color: var(--black);
}
.seo__block h1, .seo__block h2, .seo__block h3, .seo__block h4 {
  padding: 15px 0;
}
@media (min-width: 960px) {
  .seo__block h1, .seo__block h2, .seo__block h3, .seo__block h4 {
    padding: 20px 0;
  }
}
.seo__block h1 {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  padding: 0;
  margin-bottom: 20px;
}
@media (min-width: 960px) {
  .seo__block h1 {
    font-size: 36px;
  }
}
.seo__block h2 {
  font-size: 22px;
  color: var(--text);
}
@media (min-width: 960px) {
  .seo__block h2 {
    font-size: 32px;
  }
}
.seo__block h3 {
  font-size: 20px;
  color: var(--text);
}
@media (min-width: 960px) {
  .seo__block h3 {
    font-size: 28px;
  }
}
.seo__block h4 {
  font-size: 18px;
  color: var(--text);
}
@media (min-width: 960px) {
  .seo__block h4 {
    font-size: 24px;
  }
}
.seo__block p {
  line-height: 1.4;
  padding-bottom: 20px;
  margin-bottom: 0;
  font-size: 16px;
  color: var(--text);
}
@media (min-width: 960px) {
  .seo__block p {
    font-size: 18px;
  }
}
.seo__block a {
  font-size: 16px;
  color: var(--btn-reg);
}
@media (min-width: 960px) {
  .seo__block a {
    font-size: 18px;
  }
}
.seo__block a:hover {
  transition: 0.3s ease-out;
  color: var(--reg-hover);
}
.seo__block ul {
  padding-left: 30px;
  margin-bottom: 20px;
}
.seo__block ul li {
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
}
@media (min-width: 960px) {
  .seo__block ul li {
    font-size: 18px;
  }
}
.seo__block ol {
  padding-bottom: 20px;
  padding-left: 30px;
  counter-reset: myCounter;
}
.seo__block ol li {
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
  padding-left: 15px;
  margin-bottom: 15px;
  position: relative;
  list-style: none;
}
@media (min-width: 960px) {
  .seo__block ol li {
    font-size: 18px;
  }
}
.seo__block ol li::before {
  counter-increment: myCounter;
  content: counter(myCounter);
  width: 30px;
  height: 30px;
  font-size: 16px;
  background: var(--btn-reg);
  border-radius: 50%;
  position: absolute;
  top: -3px;
  left: -26px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.table-card {
  max-width: 100%;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-btn);
  margin-bottom: 20px;
}
.table-card table {
  width: 100%;
  border-collapse: collapse;
}
.table-card table tr {
  background: var(--btn-reg);
}
.table-card table tr:nth-child(2n) {
  background: var(--background);
}
.table-card table td {
  text-align: center;
  padding: 15px;
  color: var(--text);
  font-size: 16px;
}

.faq__row {
  background: var(--background);
  border-radius: var(--radius-btn);
  margin-bottom: 10px;
  position: relative;
  cursor: pointer;
}
.faq__row h3 {
  color: var(--text);
  padding: 15px 56px 15px 17px;
  font-size: 18px !important;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
}
.faq__row h3:after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(180deg);
  top: 30%;
  transition: 0.3s ease-out;
  background-image: url(img/faq-icon.svg);
  right: 15px;
  height: 28px;
  width: 28px;
}
.faq__row .faq__answer {
  border-bottom-right-radius: var(--radius-btn);
  border-bottom-left-radius: var(--radius-btn);
  padding: 17px;
  display: none;
  transition: 0.3s ease-out;
}
.faq__row .faq__answer p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.4;
}
.faq__row .faq__answer p:last-child {
  padding-bottom: 0;
}
.faq__row .faq__answer.active {
  display: block;
}

.faq__row.open h3::after {
  transform: rotate(0);
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}
.modal__content {
  position: relative;
  z-index: 1;
  background-color: var(--background);
  border-radius: var(--radius);
  padding: 25px;
  overflow: hidden;
  animation: fadeIn 0.3s ease forwards;
  width: 100%;
  margin: 0 20px;
}
@media (min-width: 960px) {
  .modal__content {
    width: 500px;
    margin: 0;
  }
}
.modal__content-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.modal__content-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
@media (min-width: 960px) {
  .modal__content-title {
    font-size: 28px;
  }
}
.modal__content-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.modal__content-close svg {
  fill: var(--text);
}
.modal__content-bottom {
  position: relative;
  display: flex;
  flex-direction: column;
}
.modal__content-bottom p {
  color: var(--text);
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  padding-bottom: 20px;
  position: relative;
  z-index: 2;
}
.modal__content-bottom img {
  position: absolute;
  bottom: -25px;
  right: 0;
  width: 160px;
  opacity: 0.4;
}
@media (min-width: 640px) {
  .modal__content-bottom img {
    opacity: 1;
  }
}
.modal__content-bottom .jackpot__btn {
  margin: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  height: 32px;
  border-radius: var(--radius-btn);
  background-color: var(--btn-reg);
  color: var(--color-reg);
  width: 200px;
  animation-name: pulse;
  animation-duration: 1.15s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
}
.modal__content-bottom .jackpot__btn:hover {
  background-color: var(--hover-reg);
}

.modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.image-card {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.image-card img {
  border-radius: var(--radius);
}/*# sourceMappingURL=style.css.map */
