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

a {
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

.container {
  max-width: 1260px;
  padding: 0 10px;
  margin: 0 auto;
}

@media screen and (min-width: 1919px) {
  .container {
    max-width: 1440px;
  }
}

@media screen and (max-width: 992px) {
  .container {
    padding: 0 20px;
  }
}

@media screen and (max-width: 300px) {
  .container {
    padding: 0 10px;
  }
}

@font-face {
  font-family: "NexaBold";
  src: url("../fonts/NexaBold.ttf") format("truetype");
}

@font-face {
  font-family: "NexaBlack";
  src: url("../fonts/NexaBlack.ttf") format("truetype");
}

html {
  background-color: #360458;
  color: #fff;
  font-family: 'NexaBold', sans-serif;
  overflow-x: hidden;
}

body {;
  width: 100vw;
  overflow-x: hidden;
  background-image: url(../img/bg.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  /* Demonstrate a "mostly customized" scrollbar
   * (won't be visible otherwise if width/height is specified) */
  /* Add a thumb */
}

body .shadow {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

@media screen and (max-width: 500px) {
  body .shadow {
    top: -40px;
  }
}

body .visible-scrollbar, body .invisible-scrollbar, body .mostly-customized-scrollbar {
  display: block;
  width: 10em;
  overflow: auto;
  height: 2em;
}

body::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #6E2041;
}

body::-webkit-scrollbar-thumb {
  background: #C4B0A5;
}

body > .container {
  min-height: 105vh;
}

@media screen and (min-width: 2250px) {
  body > .container {
    min-height: 120vh;
  }
}

@media screen and (min-width: 1300px) and (max-width: 1600px) {
  body > .container {
    min-height: 100vh;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1299px) {
  body > .container {
    min-height: 100vh;
  }
}

@media screen and (max-width: 1024px) {
  body > .container {
    min-height: 69vh;
  }
}

@media screen and (max-width: 1024px) and (orientation: landscape) {
  body > .container {
    min-height: 140vh;
  }
}

@media screen and (max-width: 768px) {
  body > .container {
    min-height: 80vh;
  }
}

@media screen and (max-width: 767px) and (orientation: landscape) {
  body > .container {
    min-height: 120vh;
  }
}

@media screen and (max-width: 375px) and (max-height: 668px) {
  body > .container {
    min-height: 91vh;
  }
}

.container {
  display: flex;
  flex-flow: column;
  align-items: center;
  position: relative;
}

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #382F59;
  z-index: 100;
}

.preloader.hide {
  display: none;
}

.img {
  position: fixed;
  top: 50%;
  left: 50%;
  height: 100px;
  width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  z-index: 2;
  pointer-events: none;
  -webkit-animation: pulse 0.5s infinite;
          animation: pulse 0.5s infinite;
}

@-webkit-keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
  }
  70% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.95);
  }
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
  }
  70% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.95);
  }
}

.footer {
  z-index: 100;
  position: relative;
}
.footer__wrapper {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}
.footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer__nav a {
  margin: 10px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer__nav a {
    font-size: 14px;
    margin: 5px;
  }
}
@media screen and (max-width: 320px) {
  .footer__nav a {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav {
    margin-bottom: 10px;
  }
}
.footer__providers {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer__providers img {
  min-height: 35px;
  max-height: 35px;
  margin: 10px;
}
.footer__providers img.softswiss {
  width: 125px;
}
@media screen and (max-width: 768px) {
  .footer__providers img {
    min-height: 27px;
    max-height: 27px;
    margin: 5px;
  }
}
@media screen and (max-width: 320px) {
  .footer__providers img {
    min-height: 22px;
    max-height: 22px;
  }
}
.footer__text {
  color: #fff;
  font-weight: normal;
  font-size: 18px;
  text-align: center;
  padding: 40px 0;
  width: 84%;
  line-height: 30px;
}
@media screen and (max-width: 1024px) {
  .footer__text {
    font-size: 14px;
  }
}
@media screen and (max-width: 525px) {
  .footer__text {
    display: none;
  }
}

.wheel {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media screen and (max-width: 767px) {
  .wheel {
    top: -75px;
  }
}

.wheel__logo {
  z-index: 3;
}

.wheel__logo img {
  width: 8vw;
  margin-top: 2vw;
}

@media screen and (max-width: 1200px) {
  .wheel__logo img {
    width: 12vw;
    margin-top: 3vw;
  }
}

@media screen and (max-width: 500px) {
  .wheel__logo img {
    width: 15vw;
    margin-top: 4vw;
  }
}

.wheel__title {
  width: 80%;
  position: absolute;
  text-align: center;
  top: 8vw;
  font-weight: 500;
  z-index: 10;
  font-size: 2.5vw;
}

@media screen and (max-width: 1200px) {
  .wheel__title {
    top: 13vw;
    font-size: 3.5vw;
  }
}

@media screen and (max-width: 767px) {
  .wheel__title {
    top: 13vw;
    font-size: 26px;
    width: 100%;
  }
}

@media screen and (max-width: 375px) {
  .wheel__title {
    font-size: 23px;
    top: 60px;
  }
}

.wheel__inner {
  width: 37%;
  position: absolute;
  top: 0;
  left: 50%;
  right: 0;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  z-index: 3;
  transform: translateX(-50%);
}

.wheel__section {
  position: absolute;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  transition: .2s;
  min-height: 170px;
  max-width: 435px;
}

.wheel__section.visible {
  visibility: visible;
  opacity: 1;
}

.wheel__section.smaller *:not(img) {
  transform: scale(0.7);
}

.wheel__section.hidden *:not(img) {
  opacity: 0;
}

.wheel__section img {
  width: 125px;
}

@media screen and (max-width: 768px) {
  .wheel__section img {
    width: 95px;
  }
}

.wheel__section h3 {
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  font-weight: 900;
  font-size: 4vmin;
  max-width: 500px;
}

@media screen and (max-width: 768px) {
  .wheel__section h3 {
    font-size: 3vmin;
  }
}

@media screen and (max-width: 535px) {
  .wheel__section h3 {
    font-size: 4vmin;
  }
}

.wheel__section h4 {
  width: 100%;
  text-align: center;
  margin-top: 10px;
  font-weight: 900;
  font-size: 25px;
  text-transform: capitalize;
}

@media screen and (max-width: 1450px) {
  .wheel__section h4 {
    font-size: 22px;
  }
}

@media screen and (max-width: 1340px) {
  .wheel__section h4 {
    font-size: 20px;
  }
}

@media screen and (max-width: 1235px) {
  .wheel__section h4 {
    font-size: 18px;
  }
}

@media screen and (max-width: 325px) {
  .wheel__section h4 {
    font-size: 17px;
  }
}

.wheel__section h4 span {
  font-size: 13px;
}

.wheel__section:nth-of-type(1) {
  bottom: 22%;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .wheel__section:nth-of-type(1) {
    bottom: 20%;
  }
}

.wheel__section:nth-of-type(2) {
  top: 26%;
  left: 38%;
  transform: translateX(-50%) rotate(145deg);
}

@media screen and (max-width: 768px) {
  .wheel__section:nth-of-type(2) {
    top: 23%;
    left: 38%;
  }
}

@media screen and (max-width: 325px) {
  .wheel__section:nth-of-type(2) {
    top: 20%;
    left: 41%;
  }
}

.wheel__section:nth-of-type(3) {
  left: 21%;
  top: 56%;
  transform: translateY(-50%) rotate(73deg);
}

@media screen and (max-width: 768px) {
  .wheel__section:nth-of-type(3) {
    left: 22%;
    top: 55%;
  }
}

@media screen and (max-width: 325px) {
  .wheel__section:nth-of-type(3) {
    left: 24%;
  }
}

.wheel__section:nth-of-type(4) {
  left: 60%;
  top: 55%;
  transform: translateY(-50%) rotate(-71deg);
}

.wheel__section:nth-of-type(4) img {
  width: 90px;
}

@media screen and (max-width: 500px) {
  .wheel__section:nth-of-type(4) img {
    width: 70px;
  }
}

@media screen and (max-width: 1430px) {
  .wheel__section:nth-of-type(4) {
    left: 59%;
  }
}

@media screen and (max-width: 1355px) {
  .wheel__section:nth-of-type(4) {
    left: 57%;
  }
}

@media screen and (max-width: 1210px) {
  .wheel__section:nth-of-type(4) {
    left: 56%;
  }
}

@media screen and (max-width: 1150px) {
  .wheel__section:nth-of-type(4) {
    left: 54%;
  }
}

@media screen and (max-width: 1024px) {
  .wheel__section:nth-of-type(4) {
    left: 56%;
  }
}

@media screen and (max-width: 768px) {
  .wheel__section:nth-of-type(4) {
    left: 59%;
  }
}

.wheel__section:nth-of-type(5) {
  top: 26%;
  left: 62%;
  transform: translateX(-50%) rotate(217deg);
}

.wheel__section:nth-of-type(5) img {
  width: 110px;
}

@media screen and (max-width: 500px) {
  .wheel__section:nth-of-type(5) img {
    width: 85px;
  }
}

@media screen and (max-width: 768px) {
  .wheel__section:nth-of-type(5) {
    top: 23%;
    left: 62%;
  }
}

@media screen and (max-width: 500px) {
  .wheel__section:nth-of-type(5) {
    top: 22%;
    left: 60%;
  }
}

.wheel__disk_big {
  width: 73vw;
  height: 73vw;
  position: relative;
  transition: all 6s cubic-bezier(0, 0.99, 0.44, 0.99);
  top: -24vw;
  display: flex;
  flex-flow: column;
  position: absolute;
  align-items: center;
}

@media screen and (max-width: 1220px) {
  .wheel__disk_big {
    top: -16vw;
  }
}

@media screen and (max-width: 1024px) {
  .wheel__disk_big {
    width: 100vw;
    height: 100vw;
  }
}

@media screen and (max-width: 535px) {
  .wheel__disk_big {
    width: 640px;
    height: 634px;
    top: -30vw;
  }
}

@media screen and (max-width: 375px) {
  .wheel__disk_big {
    top: -44vw;
  }
}

@media screen and (max-width: 325px) {
  .wheel__disk_big {
    width: 540px;
    height: 536px;
  }
}

@media screen and (min-height: 400px) and (max-height: 600px) and (orientation: landscape) {
  .wheel__disk_big {
    top: -45vw;
  }
}

@media screen and (max-height: 399px) and (orientation: landscape) {
  .wheel__disk_big {
    top: -51vw;
  }
}

.wheel__disk_big--wrap {
  position: relative;
  width: 100%;
}

.wheel__disk_big--wrap.trans {
  transition: all 6s cubic-bezier(0, 0.99, 0.44, 0.99);
}

.wheel__disk_big img.wheel__img {
  width: 73vw;
  height: 73vw;
  transition: all 6s cubic-bezier(0, 0.99, 0.44, 0.99);
}

@media screen and (max-width: 1024px) {
  .wheel__disk_big img.wheel__img {
    width: 100vw;
    height: 100vw;
  }
}

@media screen and (max-width: 535px) {
  .wheel__disk_big img.wheel__img {
    width: 640px;
    height: 634px;
  }
}

@media screen and (max-width: 325px) {
  .wheel__disk_big img.wheel__img {
    width: 540px;
    height: 536px;
  }
}

.wheel__spin {
  width: 10vw;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 1024px) {
  .wheel__spin {
    width: 13vw;
  }
}

@media screen and (max-width: 535px) {
  .wheel__spin {
    width: 21vw;
  }
}

.bonus, .register {
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: 46px;
  padding: 0 25px;
  background-image: url(../img/button-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-color: transparent;
  transition: .1s;
  outline: none;
  text-transform: uppercase;
  font-weight: 900;
  z-index: 50;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #fff;
  transition: .2s;
}

.bonus:hover, .register:hover {
  cursor: pointer;
  transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .bonus, .register {
    padding: 0 30px;
    min-height: 60px;
    font-size: .8rem;
  }
}

.bonus {
  min-height: 8vw;
  min-width: 18vw;
  position: relative;
  top: -9vw;
  font-size: 2vw;
}

@media screen and (max-width: 1550px) {
  .bonus {
    top: -9.5vw;
  }
}

@media screen and (max-width: 1024px) {
  .bonus {
    min-height: 14vw;
    min-width: 32vw;
    font-size: 3vw;
  }
}

@media screen and (min-height: 400px) and (max-height: 600px) and (orientation: landscape) {
  .bonus {
    top: -13vw;
  }
}

@media screen and (max-width: 525px) {
  .bonus {
    min-height: 24vw;
    min-width: 47vw;
    font-size: 5vw;
  }
}

.register {
  width: 150px;
  height: 60px;
  padding: 0;
}

.shadow-top {
  position: fixed;
  left: 0;
  top: -20px;
  height: 300px;
  width: 200%;
  background: linear-gradient(180deg, #000 1%, transparent);
  z-index: 5;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.5);
}

@-webkit-keyframes scale {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  100% {
    transform: scale(2);
    -webkit-transform: scale(2);
  }
}

@keyframes scale {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  100% {
    transform: scale(2);
    -webkit-transform: scale(2);
  }
}

.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
}

.popup__overlay {
  background-color: rgba(0, 0, 0, 0);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s all;
}

.popup.open {
  visibility: visible;
}

.popup.open .popup__overlay {
  background-color: rgba(0, 0, 0, 0.7);
}

.popup__window {
  position: relative;
  opacity: 0;
  transform: scale(0.9) translateY(50px);
  transition: 0.2s all;
  font-size: 14px;
  overflow: auto;
  background-color: #382F59;
  max-height: 80vh;
  max-width: 90vw;
  width: 400px;
  padding: 20px 30px;
  box-sizing: border-box;
  color: #fff;
  border-radius: 3px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  border-radius: 15px;
  text-align: center;
}

@media screen and (max-width: 850px) and (max-height: 535px) {
  .popup__window {
    padding: 10px 30px;
  }
}

.popup__window h2 {
  text-transform: uppercase;
  margin: 20px 0;
  font-size: 27px;
  color: #d3ff07;
}

@media screen and (max-width: 850px) and (max-height: 535px) {
  .popup__window h2 {
    font-size: 23px;
  }
}

.popup__window h3 {
  font-weight: 500;
  font-size: 20px;
  text-align: center;
}

@media screen and (max-width: 850px) and (max-height: 535px) {
  .popup__window h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 325px) {
  .popup__window h3 {
    font-size: 17px;
  }
}

.popup__window h4 {
  color: #d3ff07;
  font-size: 19px;
  margin-bottom: 30px;
  text-align: center;
}

@media screen and (max-width: 850px) and (max-height: 535px) {
  .popup__window h4 {
    font-size: 17px;
  }
}

.popup__window p {
  font-size: 16px;
  margin-bottom: 10px;
}

.popup__window img:not(.popup__close) {
  width: 140px;
  align-self: center;
}

@media screen and (max-width: 850px) and (max-height: 535px) {
  .popup__window img:not(.popup__close) {
    width: 55px;
  }
}

.popup.open .popup__window {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.popup__close {
  position: absolute;
  width: 15px;
  bottom: calc(100% + 10px);
  right: 15px;
  top: 15px;
  cursor: pointer;
}

.popup__content {
  display: flex;
  justify-content: center;
}

.popup__content h3, .popup__content h4 {
  text-transform: uppercase;
}

.modal-text > div {
  text-align: center;
}

.modal-text .bonus-description {
  margin: 10px 0 20px;
  text-align: start;
}

.popup__content::-webkit-scrollbar {
  width: 8px;
}

.popup__content::-webkit-scrollbar-thumb {
  background-color: #E74C50;
}

.popup__content h1 {
  font-size: 22px;
}

.popup__content h2 {
  font-size: 20px;
}

.popup__content h3 {
  font-size: 18px;
}

.modal-btn {
  text-decoration: none;
  height: 42px;
  border-radius: 15px;
  background-color: #E74C50;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  margin-top: 30px;
}

.bonus-day {
  font-weight: 600;
  margin-bottom: 10px;
}

.bonus-title {
  font-weight: 600;
  font-size: 30px;
  color: #E74C50;
  margin-bottom: 10px;
}

.bonus-promo {
  text-transform: uppercase;
  font-size: 17px;
  color: #D3FF06;
}

.bonus-popup hr {
  margin: 10px 0;
  border-color: #e0e0e0;
}

.bonus-popup.finished .modal-btn {
  display: none;
}
