*, *::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: 900px;
  padding: 0 10px;
  margin: 0 auto;
}

@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");
}

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

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

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

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

html {
  color: #fff;
  font-family: 'NexaBold', sans-serif;
}

body {
  background-color: #302952;
  /* Demonstrate a "mostly customized" scrollbar
    * (won't be visible otherwise if width/height is specified) */
  /* Add a thumb */
}

body.not-scroll {
  overflow: hidden;
}

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: #FF2977;
}

body::-webkit-scrollbar-thumb {
  background: #31EAE5;
}

.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);
  }
}

@-webkit-keyframes pulse-cta-button {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 41, 119, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 41, 119, 0.5);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 41, 119, 0.5);
  }
}

@keyframes pulse-cta-button {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 41, 119, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 41, 119, 0.5);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 41, 119, 0.5);
  }
}

h3 {
  text-transform: uppercase;
}

@media screen and (max-width: 560px) {
  main {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    position: relative;
  }
}

.footer {
  background-color: #302952;
  padding-top: 30px;
}

.footer .container {
  max-width: 1260px;
}

.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: #7B6FA8;
}

.footer__providers {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 20px 0;
}

.footer__providers img {
  min-height: 35px;
  max-height: 35px;
  margin: 10px;
  -webkit-filter: invert(51%) sepia(20%) saturate(852%) hue-rotate(212deg) brightness(85%) contrast(89%);
          filter: invert(51%) sepia(20%) saturate(852%) hue-rotate(212deg) brightness(85%) contrast(89%);
}

.footer__providers img.softswiss {
  width: 125px;
}

.footer__text {
  font-family: 'NexaRegular';
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 1;
  padding-bottom: 30px;
}

.header {
  padding-top: 15px;
  display: flex;
  justify-content: center;
  position: relative;
  background-image: url(../img/bg-desktop.jpg);
  background-color: #302952;
  background-repeat: no-repeat;
  background-size: 100%;
  text-transform: uppercase;
}

@media screen and (max-width: 560px) {
  .header {
    background-image: url(../img/bg-mobile.jpg);
    background-size: 134%;
    background-position: 50% top;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
  }
}

.header__wrapper {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  transform: translateY(-5%);
}

@media screen and (max-width: 1024px) {
  .header__wrapper {
    transform: translateY(-4%);
  }
}

@media screen and (max-width: 768px) {
  .header__wrapper {
    transform: translateY(-2%);
  }
}

@media screen and (max-width: 768px) {
  .header__wrapper {
    transform: none;
    margin-top: 10px;
  }
}

.header .container {
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
}

.header__logo img {
  width: 95px;
  position: relative;
  z-index: 5;
}

.header__jackpot {
  width: 49vw;
}

@media screen and (max-width: 560px) {
  .header__jackpot {
    display: none;
  }
}

.header__jackpot--mobile {
  display: none;
  width: 90vw;
}

@media screen and (max-width: 560px) {
  .header__jackpot--mobile {
    display: block;
  }
}

@media screen and (max-width: 375px) {
  .header__jackpot--mobile {
    width: 80vw;
  }
}

.header__title {
  font-family: 'NexaBlack', sans-serif;
  font-size: 2.33vw;
  font-weight: 900px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .header__title {
    font-size: 4vw;
  }
}

@media screen and (max-width: 560px) {
  .header__title {
    font-size: 6vw;
  }
}

@media screen and (max-width: 375px) {
  .header__title {
    font-size: 5vw;
  }
}

.header__text {
  font-family: 'NexaBlack', sans-serif;
  font-weight: 900;
  font-size: 18px;
  text-align: center;
}

@media screen and (max-width: 560px) {
  .header__text {
    font-size: 17px;
  }
}

@media screen and (max-width: 375px) {
  .header__text {
    font-size: 15px;
  }
}

.header__text--yellow {
  font-family: 'MontserratBlack', sans-serif;
  color: #FFD029;
  font-size: 24px;
  font-weight: 900px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .header__text--yellow {
    font-size: 3vw;
  }
}

@media screen and (max-width: 560px) {
  .header__text--yellow {
    font-size: 5vw;
  }
}

.header__text--yellow span {
  font-size: 48px;
  margin-left: 8px;
}

@media screen and (max-width: 375px) {
  .header__text--yellow span {
    font-size: 40px;
  }
}

.reasons {
  line-height: 1.9;
  text-align: center;
  margin-bottom: 50px;
  cursor: pointer;
}

.header__reasons {
  display: flex;
  font-size: 14px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  width: 80%;
  cursor: pointer;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .header__reasons {
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  .header__reasons {
    flex-flow: column nowrap;
    align-items: center;
    margin-bottom: 30px;
  }
}

.header__reasons_reason {
  position: relative;
}

.header__reasons_reason:not(:last-child) {
  margin-right: 20px;
}

.header__reasons_reason:not(:last-child):after {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  right: -12px;
  top: 50%;
  background-color: #fff;
  transform: translateY(-50%);
}

@media screen and (max-width: 560px) {
  .header__reasons_reason:not(:last-child):after {
    display: none;
  }
}

@media screen and (max-width: 560px) {
  .header__reasons_reason:not(:last-child) {
    margin-right: 0;
    margin-left: 0;
  }
}

.header__reasons_reason:not(:first-child) {
  margin-left: 20px;
}

.header__reasons_reason:not(:first-child):before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  left: -12px;
  top: 50%;
  background-color: #fff;
  transform: translateY(-50%);
}

@media screen and (min-width: 561px) {
  .header__reasons_reason:not(:first-child):before {
    display: none;
  }
}

@media screen and (min-width: 561px) {
  .header__reasons_reason:not(:first-child) {
    margin-left: 0;
  }
}

.header__steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 560px) {
  .header__steps--desktop {
    display: none;
  }
}

.header__steps--desktop .animation-jackpot-step {
  transform: translateX(-50%);
  font-size: 24px;
  letter-spacing: initial;
  top: 29%;
  left: 50%;
}

@media screen and (max-width: 900px) {
  .header__steps--desktop .animation-jackpot-step {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .header__steps--desktop .animation-jackpot-step {
    top: 35%;
  }
}

.header__steps_wrapper {
  width: 80%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
}

.header__steps_step {
  width: 30%;
  background-image: url(../img/bg-step.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-size: contain;
  background-position: center;
  min-height: 390px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.header__steps_step img {
  width: 90px;
}

.header__steps_step h3 {
  font-size: 17px;
  margin: 34px 0 34px 0;
}

@media screen and (max-width: 768px) {
  .header__steps_step h3 {
    font-size: 13px;
  }
}

.header__steps_step .quetion {
  width: 134px;
  position: absolute;
  top: 0;
  left: -50px;
}

@media screen and (max-width: 560px) {
  .header__steps_step .quetion {
    width: 102px;
    top: -110px;
    left: -25px;
  }
}

.header__steps--mobile {
  display: none;
  flex-flow: column nowrap;
  background-image: url(../img/bg-step.png);
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
}

@media screen and (max-width: 560px) {
  .header__steps--mobile {
    display: flex;
    min-height: 105vw;
    justify-content: center;
  }
}

.header__steps--mobile .animation-jackpot-step {
  transform: translateX(-50%);
  font-size: 24px;
  letter-spacing: initial;
  top: -10%;
  left: 50%;
}

.header__steps--mobile .header__steps_wrapper {
  width: 100%;
}

.header__steps--mobile .header__steps_step {
  width: 80%;
  background: none;
  min-height: 21vw;
}

.header__steps--mobile .header__steps_step h3 {
  margin: 20px 0 20px 0;
  font-size: 20px;
  text-transform: uppercase;
}

@media screen and (max-width: 560px) {
  .header__steps--mobile .header__steps_step h3 {
    font-size: 14px;
  }
}

@media screen and (max-width: 325px) {
  .header__steps--mobile .header__steps_step h3 {
    margin: 10px 0 10px 0;
  }
}

@media screen and (max-width: 560px) {
  .header__steps--mobile .header__steps_step p {
    font-size: 14px;
  }
}

.header__steps--mobile .header__steps_step:nth-of-type(1) .animation-jackpot-step {
  left: 54%;
}

.header__steps--mobile .header__steps_step:nth-of-type(2) .animation-jackpot-step {
  left: 49%;
}

.header__steps--mobile .header__steps_step:nth-of-type(3) .animation-jackpot-step {
  left: 44%;
}

.header__bonus-link {
  background: #FF2977;
  border-radius: 100px;
  width: 264px;
  min-height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
  letter-spacing: 4px;
  margin: 30px 0;
  box-shadow: 0 0 0 #ff2977;
  text-transform: uppercase;
}

@media screen and (max-width: 560px) {
  .header__bonus-link {
    width: 280px;
    margin: 12px 0 30px 0;
  }
}

.header__bonus-link--mobile {
  display: flex;
  margin: 20px auto;
}

.header__bonus-link.button-animate {
  -webkit-animation: pulse-cta-button 1s infinite linear;
          animation: pulse-cta-button 1s infinite linear;
}

.header__stars_text {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  margin-bottom: 10px;
  align-items: center;
  position: relative;
  margin-top: -55px;
  z-index: 2;
}

@media screen and (max-width: 560px) {
  .header__stars_text {
    margin-top: 0;
  }
}

.header__stars_text img {
  width: 24px;
  position: relative;
  top: -3px;
  margin-right: 3px;
}

.header__stars_text span {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .header__stars_text span {
    flex-flow: column nowrap;
    margin-top: 10px;
  }
}

.animation-jackpot {
  position: absolute;
  font-size: 2.1vw;
  transform: rotate(-5deg) translate(-50%, 63%);
  -webkit-text-stroke: 1.5px #382F59;
  letter-spacing: -3px;
  overflow: hidden;
  left: 50%;
  top: 50%;
}

@media screen and (max-width: 1024px) {
  .animation-jackpot {
    font-size: 2.3vw;
    -webkit-text-stroke: 1px #382F59;
  }
}

@media screen and (max-width: 768px) {
  .animation-jackpot {
    font-size: 2.4vw;
    transform: rotate(-5deg) translate(-50%, 58%);
  }
}

@media screen and (max-width: 560px) {
  .animation-jackpot {
    font-size: 8.3vw;
    transform: rotate(-5deg) translate(-44%, 112%);
    min-width: 50vw;
  }
}

.animation-jackpot.animation-jackpot-1 {
  text-shadow: 3px 2px 0px #e06303;
}

.animation-jackpot.animation-jackpot-2 {
  color: red;
  background: linear-gradient(to bottom, #F9C816 47%, #C15F06 10%, #CA820E 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.jackpot {
  position: relative;
}

@media screen and (max-width: 560px) {
  .jackpot {
    display: none;
  }
}

.jackpot-mobile {
  display: none;
}

@media screen and (max-width: 560px) {
  .jackpot-mobile {
    display: block;
  }
}

.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: hidden;
  background-color: #382F59;
  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;
  width: 65vw;
  height: 90vh;
}

@media screen and (max-width: 1300px) {
  .popup__window {
    width: 80vw;
  }
}

@media screen and (max-width: 830px) and (orientation: landscape) {
  .popup__window {
    height: calc(var(--vh, 1vh) * 55) !important;
  }
}

@media screen and (max-width: 768px) {
  .popup__window {
    width: 100vw;
    height: calc(var(--vh, 1vh) * 100);
    max-width: 100vw;
    border-radius: 0px;
    padding: 20px 4px;
  }
}

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

.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;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 15px;
  overflow: auto;
  margin-top: 3vw;
}

@media screen and (max-width: 1024px) {
  .popup__content {
    padding: 20px 35px;
  }
}

@media screen and (max-width: 768px) {
  .popup__content {
    padding: 20px 50px;
    display: block;
  }
}

@media screen and (max-width: 560px) {
  .popup__content {
    overflow: auto;
    padding: 20px;
  }
}

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

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

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

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

.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;
}

.popup__title {
  font-size: 40px;
  text-align: center;
  margin-top: 230px;
}

@media screen and (max-width: 768px) {
  .popup__title {
    margin-top: 75vh;
    font-size: 32px;
  }
}

@media screen and (max-width: 768px) {
  .popup__title {
    flex-flow: column;
    align-items: center;
    margin: 0;
    text-align: center;
  }
}

.popup__subtitle {
  font-size: 21px;
  font-family: 'NexaRegular', sans-serif;
  margin: 20px 0px 40px 0;
}

@media screen and (max-width: 768px) {
  .popup__subtitle {
    font-size: 17px;
    text-align: center;
  }
}

.popup__bonuses {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .popup__bonuses {
    flex-flow: column;
    align-items: center;
    display: block;
  }
}

.popup__bonuses_bonus {
  width: 31%;
  min-height: 20vw;
  padding: 28px 0;
  border-radius: 10px;
  background-size: contain;
  background-position: bottom right;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1300px) {
  .popup__bonuses_bonus {
    min-height: 35vw;
  }
}

@media screen and (max-width: 1024px) {
  .popup__bonuses_bonus {
    min-height: 40vw;
  }
}

@media screen and (max-width: 768px) {
  .popup__bonuses_bonus {
    width: 100%;
    min-height: 48vh;
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 500px) {
  .popup__bonuses_bonus {
    min-height: 47vh;
  }
}

.popup__bonuses_bonus * {
  text-align: center;
  color: #382F59;
}

.popup__bonuses_bonus:nth-of-type(1) {
  background-color: #9CF7D5;
  background-image: url("../img/bonus-bg-1.png");
}

.popup__bonuses_bonus:nth-of-type(2) {
  background-color: #FEE5B1;
  background-image: url("../img/bonus-bg-2.png");
}

.popup__bonuses_bonus:nth-of-type(3) {
  background-color: #70EBE8;
  background-image: url("../img/bonus-bg-3.png");
}

.popup__bonuses_text-top, .popup__bonuses_text-bottom {
  text-transform: uppercase;
  font-size: 14px;
  padding: 0 10px;
}

.popup__bonuses_text-middle {
  font-size: 25px;
  margin: 15px 0;
}

@media screen and (max-width: 768px) {
  .popup__bonuses_text {
    text-align: center;
  }
}

.popup__terms {
  overflow: auto;
}

.popup__terms::-webkit-scrollbar {
  width: 5px;
}

.popup__terms::-webkit-scrollbar-thumb {
  background-color: #FF2977;
}

@media screen and (max-width: 560px) {
  .popup__terms {
    font-size: 13px;
  }
}

@media screen and (max-width: 375px) {
  .popup__terms {
    font-size: 12px;
  }
}

@media screen and (max-width: 325px) {
  .popup__terms {
    font-size: 10px;
  }
}

.popup__terms h3 {
  font-size: 21px;
  margin: 40px 0;
}

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

.popup__terms p {
  font-family: 'NexaRegular', sans-serif;
  line-height: 1.8;
}

.popup__terms ul, .popup__terms ol {
  list-style: disc;
  margin: 10px 0;
  line-height: 1.2;
}

.popup__terms li {
  margin: 10px 0 0 30px;
  list-style-type: disc;
}
