.lines {
  border:1px solid gray;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width:700px) {
  .lines {
    width: 300px;
  }
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-color: rgb(0 0 0 / 73%);
  z-index: 20;
}
.popup.popup____visible {
  display: flex;
}
@media (max-width: 700px) {
  .popup.popup____visible {
    overflow-y: auto;
  }
}
.popup .popup__anti-over-scroll {
  min-height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 380px) {
  .popup {
    align-items: baseline;
  }
}
.component-select {
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--textPrimary);
  position: relative;
}
.component-select .component-select__value {
  margin-right: 12px;
}
.component-select .component-select__toggle {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: inherit;
  text-align: inherit;
  color: inherit;
  border: 0;
  outline: none;
  background-color: inherit;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border: 1px solid var(--borderFrame);
  border-radius: 15px;
  background-color: var(--backgroundSecondary);
}
.component-select .component-select__list {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  min-width: 100%;
  display: none;
  flex-direction: column;
  border-radius: 15px;
  background-color: var(--backgroundSecondary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  max-height: 300px;
  overflow-x: hidden;
  overflow-y: scroll;
}
.component-select .component-select__list::-webkit-scrollbar {
  display: none;
}
.component-select.component-select____open .component-select__list {
  display: flex;
}
.component-select.component-select____disabled .component-select__toggle,
.component-select.component-select____empty .component-select__value {
  opacity: 0.5;
}
.component-select .component-select__option {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: inherit;
  text-align: inherit;
  color: inherit;
  border: 0;
  outline: none;
  background-color: inherit;
  padding: 10px 20px;
  text-align: left;
  background-color: transparent;
  white-space: nowrap;
}
.component-select .component-select__option .component-select__option__active,
.component-select .component-select__option:hover {
  color: var(--primary);
}
.component-select.component-select____small {
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--textPrimary);
}
.component-select.component-select____small .component-select__toggle {
  height: 45px;
}
.component-select.component-select____xsmall {
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--textPrimary);
}
.component-select.component-select____xsmall .component-select__toggle {
  height: 40px;
  border: 2px solid #565966;
  border-radius: 16px;
}
.input {
  position: relative;
}
.input .input__field {
  font: inherit;
  text-align: inherit;
  color: inherit;
  border: 0;
  outline: none;
  background-color: inherit;
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--textPrimary);
  position: relative;
  width: 100%;
  padding: 26px 20px 10px;
  height: 55px;
  transition: border-color 0.2s ease-in;
  border: 1px solid var(--borderFrame);
  border-radius: 15px;
  background-color: var(--inputColorBackground);
}
.input .input__field[type="number"]::-webkit-inner-spin-button,
.input .input__field[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
@media (max-width: 1020px) {
  .input .input__field {
    width: 100%;
  }
}
.input .input__field::-webkit-input-placeholder {
  font-weight: 400;
  color: var(--textSecondary);
}
.input .input__field:-ms-input-placeholder {
  font-weight: 400;
  color: var(--textSecondary);
}
.input .input__field::placeholder {
  font-weight: 400;
  color: var(--textSecondary);
}
.input .input__title {
  font-family: OpenSansRegular, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--textSecondary);
  position: absolute;
  top: 20px;
  left: 20px;
  transition: all 0.2s ease-in;
}
.input .input__title__phone {
  left: 90px;
}
.input .input__title .input__hint {
  font-family: OpenSansRegular, sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--textSecondary);
  margin-left: 0.5em;
}
.input.input____active .input__field {
  height: 100%;
  border: 1px solid var(--primary);
}
.input.input____active .input__field.input__field__error {
  border: 1px solid var(--error);
}
.input.input____active .input__title {
  font-family: OpenSansRegular, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--textSecondary);
  top: 8px;
}
.input.input____active .input__title.input__title__error {
  color: var(--error);
}
.input.input____disabled {
  opacity: 0.5;
}
.input.input____small {
  width: 100%;
}
.input.input____small .input__field {
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--textPrimary);
  height: 45px;
  padding: 19px 20px 7px;
}
.input.input____small .input__title {
  font-family: OpenSansRegular, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--textSecondary);
  top: 13px;
  left: 20px;
}
.input.input____small.input____active .input__title {
  font-family: OpenSansRegular, sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--textSecondary);
  top: 8px;
}
.input.input____small.input____active .input__title.input__title__error {
  color: var(--error);
}
.input.input____xsmall {
  width: 100%;
  height: 45px;
}
.input.input____xsmall .input__field {
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--textPrimary);
  border-radius: 8px;
  padding: 11px 11px 7px;
}
.input.input____xsmall .input__title {
  font-family: OpenSansRegular, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--textSecondary);
  top: 11px;
  left: 20px;
}
.input.input____xsmall.input____active .input__title {
  font-family: OpenSansRegular, sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--textSecondary);
  top: 3px;
}
.input.input____xsmall.input____active .input__title.input__title__error {
  color: var(--error);
}
.input.input____xxsmall {
  width: 100%;
  height: 40px;
  background: #fff;
  border: 2px solid #565966;
  border-radius: 16px;
}
.input.input____xxsmall .input__field {
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--textPrimary);
  height: 100%;
  padding: 11px 11px 7px;
  background-color: var(--buttonFontColor);
}
.input.input____xxsmall .input__title {
  font-family: OpenSansRegular, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--textSecondary);
  top: 11px;
  left: 20px;
}
.input.input____xxsmall.input____active .input__title {
  font-family: OpenSansRegular, sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--textSecondary);
  top: 3px;
}
.input.input____xxsmall.input____active .input__title.input__title__error {
  color: var(--error);
}
.input__phone {
  position: relative;
  width: 65px;
  height: 55px;
  background: #fff;
  border: 1px solid #ecedef;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.input__phone,
.input__phone:after {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
}
.input__phone:after {
  position: absolute;
  content: "+";
  left: 16px;
  top: 18px;
}
.input__phone .input__field {
  padding: 14px 17px 11px 25px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
}
.input__phone_wrapper {
  display: grid;
  grid-template-columns: 65px 1fr;
  grid-column-gap: 8px;
  -webkit-column-gap: 8px;
  column-gap: 8px;
}
.form-wheel {
  flex-direction: column;
  align-items: center;
}
.form-wheel,
.wheel-sign-up {
  display: flex;
  justify-content: center;
  width: 100%;
}
.wheel-sign-up {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: inherit;
  text-align: inherit;
  color: inherit;
  border: 0;
  outline: none;
  background-color: inherit;
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--textPrimaryContrast);
  margin-top: 20px;
  background: linear-gradient(111.45deg, #fc4665 -17.28%, #3959d9 67.05%);
  border-radius: 15px;
  padding: 12px 100px;
  opacity: 0.5;
}
@media (max-width: 700px) {
  .wheel-sign-up {
    font-family: OpenSansRegular, sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--textPrimaryContrast);
    margin-top: 18px;
  }
}
.wheel-sign-up.wheel-sign-up____active {
  opacity: 1;
}
.wheel-sign-up.wheel-sign-up____girl {
  font-family: OpenSansBold, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--textPrimaryContrast);
  padding: 14px;
  background: #ff0a0a;
  border-radius: 15px;
}
.wheel-sign-up.wheel-sign-up____teen {
  font: inherit;
  border: 0;
  background-color: inherit;
  font-family: OpenSansBold, sans-serif;
  font-size: 20px;
  font-weight: 700;
  width: 100%;
  margin-top: 24px;
  background: linear-gradient(180deg, #00e0ff -4.94%, #02db3e 50.01%);
  border: 3px solid hsla(0, 0%, 100%, 0.5);
  border-radius: 16px;
  padding: 14px 29px;
}
.wheel-sign-up.wheel-sign-up____aviator,
.wheel-sign-up.wheel-sign-up____teen {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: inherit;
  color: inherit;
  outline: none;
  color: var(--textPrimaryContrast);
  display: flex;
  justify-content: center;
}
.wheel-sign-up.wheel-sign-up____aviator {
  font: inherit;
  padding: 0;
  border: 0;
  background-color: inherit;
  font-family: OpenSansBold, sans-serif;
  font-size: 24px;
  font-weight: 800;
  background-image: url("");
  background-repeat: no-repeat, repeat;
  background-position: top;
  width: 304px;
  height: 105px;
  align-items: center;
  text-transform: uppercase;
  margin-top: 12px;
  z-index: 1;
}
.aviator-registration {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 466px;
  height: 646px;
  background: #f5f9ff;
  border-radius: 15px;
  position: relative;
}
@media (max-width: 700px) {
  .aviator-registration {
    width: 353px;
    height: 631px;
  }
}
.aviator-registration .aviator-registration__top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 354px;
  margin-top: 86px;
  z-index: 1;
}
@media (max-width: 700px) {
  .aviator-registration .aviator-registration__top {
    margin-top: 78px;
  }
}
.aviator-registration .aviator-registration__top .aviator-registration__header {
  font-family: OpenSansBold, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--textPopupAviator);
}
.aviator-registration
  .aviator-registration__top
  .aviator-registration__description {
  font-family: OpenSansRegular, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--textPopupAviator);
  margin-top: 8px;
}
.aviator-registration .aviator-registration__top .aviator-registration__title {
  font-family: OpenSansRegular, sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--textBonusAviator);
  font-family: inherit;
  margin-top: 8px;
  text-transform: uppercase;
  text-align: center;
}
.aviator-registration .aviator-registration__top .aviator-registration__reg {
  font-family: OpenSansBold, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--textPopupAviator);
  font-family: inherit;
  margin-top: 22px;
  text-align: center;
}
.aviator-registration .aviator-registration__top .aviator-registration__subreg {
  font-family: OpenSansRegular, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: --textPopupAviator;
  font-family: inherit;
  margin-top: 8px;
  text-align: center;
}
.aviator-registration .aviator-registration__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 293px;
  margin-top: 11px;
  z-index: 1;
}
.aviator-registration .aviator-registration__plane {
  position: absolute;
  width: 182px;
  height: 100px;
  top: -30px;
}
@media (max-width: 700px) {
  .aviator-registration .aviator-registration__plane {
    width: 158px;
    height: 87px;
  }
}
.win-aviator {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 428px;
  height: 468px;
  background: #f5f9ff;
  border-radius: 15px;
  position: relative;
}
@media (max-width: 700px) {
  .win-aviator {
    width: 353px;
    height: 442px;
  }
}
.win-aviator .win-aviator__header {
  font-family: OpenSansBold, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--textPopupAviator);
  margin-top: 90px;
}
@media (max-width: 700px) {
  .win-aviator .win-aviator__header {
    margin-top: 80px;
  }
}
.win-aviator .win-aviator__description {
  font-family: OpenSansBold, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: inherit;
  color: #1d2c40;
  text-align: center;
  margin-top: 23px;
}
@media (max-width: 700px) {
  .win-aviator .win-aviator__description {
    font-family: OpenSansRegular, sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: inherit;
    margin-top: 21px;
  }
}
.win-aviator .win-aviator__title {
  font-family: OpenSansBold, sans-serif;
  font-size: 42px;
  font-family: inherit;
}
.win-aviator .win-aviator__subtitle,
.win-aviator .win-aviator__title {
  font-weight: 800;
  color: var(--textBonusAviator);
  margin-top: 8px;
  text-align: center;
  width: 320px;
  text-transform: uppercase;
}
.win-aviator .win-aviator__subtitle {
  font-family: OpenSansRegular, sans-serif;
  font-size: 19px;
  font-family: inherit;
}
.win-aviator .win-aviator__again {
  font-family: OpenSansRegular, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--textPopupAviator);
  text-align: center;
  margin-top: 24px;
}
@media (max-width: 700px) {
  .win-aviator .win-aviator__again {
    font-family: OpenSansRegular, sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: var(--textPopupAviator);
  }
}
.win-aviator .win-aviator__button {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: inherit;
  padding: 0;
  text-align: inherit;
  color: inherit;
  border: 0;
  outline: none;
  background-color: inherit;
  font-family: OpenSansBold, sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--textPrimaryContrast);
  background-image: url("");
  background-repeat: no-repeat, repeat;
  background-position: top;
  width: 304px;
  height: 105px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  margin-top: 8px;
  z-index: 1;
}
.win-aviator .win-aviator__plane {
  position: absolute;
  width: 182px;
  height: 100px;
  top: -30px;
}
@media (max-width: 700px) {
  .win-aviator .win-aviator__plane {
    width: 158px;
    height: 87px;
  }
}
.login-button {
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--textPrimary);
  background: transparent;
  border: none;
  margin-top: 8px;
  cursor: pointer;
}
.login-button.login-button____girl,
.login-button.login-button____teen {
  font-family: OpenSansRegular, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--textPrimary);
  color: var(--textPrimaryContrast);
  margin-top: 16px;
}
.win-registration {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 500px;
  background: #f3f3f6;
  border-radius: 15px;
  position: relative;
  padding: 35px 0;
}
@media (max-width:700px) {
  .win-registration {
    width: 350px;
  }
}

.win-registration .win-registration__top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 400px;
  z-index: 1;
}
.win-registration .win-registration__top .win-registration__header {
  font-family: OpenSansBold, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--textPrimary);
}
@media (max-width: 700px) {
  .win-registration .win-registration__top .win-registration__header {
    font-family: OpenSansBold, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--textPrimary);
  }
}
.win-registration .win-registration__top .win-registration__description {
  font-family: OpenSansRegular, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--textPrimary);
  margin-top: 8px;
}
@media (max-width: 700px) {
  .win-registration .win-registration__top .win-registration__description {
    font-family: OpenSansRegular, sans-serif;
    font-size: 18px;
    font-weight: 400;
    width: 300px;
    color: var(--textPrimary);
  }
}
.win-registration .win-registration__top .win-registration__title {
  font-family: OpenSansRegular, sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--secondary);
  font-family: inherit;
  margin-top: 8px;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 700px) {
  .win-registration .win-registration__top .win-registration__title {
    font-family: OpenSansRegular, sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--secondary);
    font-family: inherit;
  }
}
.win-registration .win-registration__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 300px;
  margin-top: 24px;
  z-index: 1;
}
.win-registration .win-registration__things {
  position: absolute;
  /*background-image: url("flying_items.e13ab528.svg");*/
  background-repeat: no-repeat, repeat;
  background-position: top;
  width: 600px;
  height: 700px;
  margin-left: -40px;
  margin-top: -5px;
}
@media (max-width: 700px) {
  .win-registration .win-registration__things {
    background-image: url("");
    width: 315px;
    height: 715px;
    margin-left: 0;
    margin-top: -95px;
    z-index: 0;
  }
}
.win {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 500px;
  background: #f3f3f6;
  border-radius: 15px;
  position: relative;
  padding: 35px 0;
}
@media (max-width:700px) {
  .win {
    width: 350px;
  }
}
.win .win__header {
  font-family: OpenSansBold, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--textPrimary);
}
@media (max-width: 700px) {
  .win .win__header {
    font-family: OpenSansBold, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--textPrimary);
    margin-top: 52px;
  }
}
.win .win__description {
  font-family: OpenSansRegular, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--textPrimary);
  text-align: center;
  margin-top: 8px;
  width: 400px;
}
@media (max-width: 700px) {
  .win .win__description {
    font-family: OpenSansRegular, sans-serif;
    font-size: 18px;
    font-weight: 400;
    width: 300px;
    color: var(--textPrimary);
  }
}
.win .win__title {
  font-family: OpenSansRegular, sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--secondary);
  font-family: inherit;
  margin-top: 8px;
  text-align: center;
  width: 300px;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .win .win__title {
    font-family: OpenSansRegular, sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--secondary);
    font-family: inherit;
  }
}
.win .win__again {
  font-family: OpenSansRegular, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--textPrimary);
  text-align: center;
  margin-top: 24px;
  width: 400px;
}
@media (max-width: 700px) {
  .win .win__again {
    font-family: OpenSansRegular, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--textPrimary);
    width: 350px;
  }
}
.win .win__button {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: inherit;
  text-align: inherit;
  color: inherit;
  border: 0;
  outline: none;
  background-color: inherit;
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--textPrimaryContrast);
  margin-top: 16px;
  background: linear-gradient(111.45deg, #fc4665 -17.28%, #3959d9 67.05%);
  border-radius: 15px;
  padding: 12px 100px;
  z-index: 1;
}
@media (max-width: 700px) {
  .win .win__button {
    font-family: OpenSansRegular, sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--textPrimaryContrast);
    margin-top: 14px;
    padding: 11px 90px;
  }
}
.win .win__things {
  position: absolute;
  /*background-image: url("flying_cards.9eafe16e.svg");*/
  background-repeat: no-repeat, repeat;
  background-position: top;
  width: 550px;
  height: 470px;
  margin-left: -40px;
  margin-top: -5px;
}
@media (max-width: 700px) {
  .win .win__things {
    background-image: url("");
    width: 349px;
    height: 526px;
    margin-left: -7px;
    margin-top: -95px;
    z-index: 0;
  }
}
.girl-registration {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 428px;
  height: 670px;
  background: #1d2c40;
  border: 1px solid #3a567b;
  border-radius: 15px;
}
@media (max-width: 700px) {
  .girl-registration {
    width: 352px;
    height: 641px;
  }
}
.girl-registration .girl-registration__things {
  position: absolute;
  background-image: url("");
  background-repeat: no-repeat, repeat;
  background-position: top;
  width: 600px;
  height: 700px;
  margin-top: 25px;
}
@media (max-width: 700px) {
  .girl-registration .girl-registration__things {
    background-image: url("");
    width: 315px;
    height: 715px;
    margin-top: -55px;
    z-index: 0;
  }
}
.girl-registration .girl-registration__top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 260px;
  margin-top: 57px;
  z-index: 1;
}
@media (max-width: 700px) {
  .girl-registration .girl-registration__top {
    margin-top: 25px;
  }
}
.girl-registration .girl-registration__top .girl-registration__header {
  font-family: OpenSansBold, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--textPrimaryContrast);
}
@media (max-width: 700px) {
  .girl-registration .girl-registration__top .girl-registration__header {
    font-family: OpenSansBold, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--textPrimaryContrast);
  }
}
.girl-registration .girl-registration__top .girl-registration__description {
  font-family: OpenSansRegular, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--textPrimaryContrast);
  margin-top: 8px;
}
@media (max-width: 700px) {
  .girl-registration .girl-registration__top .girl-registration__description {
    font-family: OpenSansRegular, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--textPrimaryContrast);
  }
}
.girl-registration .girl-registration__top .girl-registration__title {
  font-family: OpenSansRegular, sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #ff0a0a;
  font-family: inherit;
  margin-top: 8px;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 700px) {
  .girl-registration .girl-registration__top .girl-registration__title {
    font-family: OpenSansRegular, sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #ff0a0a;
    font-family: inherit;
  }
}
.girl-registration .girl-registration__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 300px;
  margin-top: 24px;
  z-index: 1;
}
.win-girl {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 428px;
  height: 422px;
  background: #1d2c40;
  border-radius: 15px;
  position: relative;
}
@media (max-width: 700px) {
  .win-girl {
    width: 352px;
    height: 391px;
  }
}
.win-girl .win-girl__header {
  font-family: OpenSansBold, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--textPrimaryContrast);
  margin-top: 57px;
}
@media (max-width: 700px) {
  .win-girl .win-girl__header {
    font-family: OpenSansBold, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--textPrimaryContrast);
    margin-top: 52px;
  }
}
.win-girl .win-girl__description {
  font-family: OpenSansRegular, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--textPrimaryContrast);
  text-align: center;
  margin-top: 8px;
  width: 260px;
}
@media (max-width: 700px) {
  .win-girl .win-girl__description {
    font-family: OpenSansRegular, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--textPrimaryContrast);
  }
}
.win-girl .win-girl__title {
  font-family: OpenSansRegular, sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #ff0a0a;
  font-family: inherit;
  margin-top: 8px;
  text-align: center;
  width: 260px;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .win-girl .win-girl__title {
    font-family: OpenSansRegular, sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #ff0a0a;
  }
}
.win-girl .win-girl__again {
  font-family: OpenSansRegular, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--textPrimaryContrast);
  text-align: center;
  margin-top: 24px;
  width: 182px;
}
@media (max-width: 700px) {
  .win-girl .win-girl__again {
    font-family: OpenSansRegular, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--textPrimaryContrast);
    width: 146px;
  }
}
.win-girl .win-girl__button {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: inherit;
  text-align: inherit;
  color: inherit;
  border: 0;
  outline: none;
  background-color: inherit;
  font-family: OpenSansBold, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--textPrimaryContrast);
  text-transform: uppercase;
  margin-top: 16px;
  background: #ff0a0a;
  border-radius: 6px;
  padding: 14px 29px;
  z-index: 1;
}
.win-girl .win-girl__things {
  position: absolute;
  background-image: url("");
  background-repeat: no-repeat, repeat;
  background-position: top;
  width: 550px;
  height: 470px;
  margin-left: 20px;
  margin-top: 40px;
}
@media (max-width: 700px) {
  .win-girl .win-girl__things {
    background-image: url("");
    width: 349px;
    height: 526px;
    margin-left: -35px;
    margin-top: -50px;
    z-index: 0;
  }
}
.teen-registration {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 428px;
  height: 670px;
  background: #001e6e;
  border: 1px solid #3a567b;
  border-radius: 15px;
}
@media (max-width: 700px) {
  .teen-registration {
    width: 352px;
    height: 641px;
  }
}
.teen-registration .teen-registration__things {
  position: absolute;
  background-image: url("");
  background-repeat: no-repeat, repeat;
  background-position: top;
  width: 600px;
  height: 700px;
  margin-top: 25px;
}
@media (max-width: 700px) {
  .teen-registration .teen-registration__things {
    background-image: url("");
    width: 315px;
    height: 715px;
    margin-top: -55px;
    z-index: 0;
  }
}
.teen-registration .teen-registration__top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 260px;
  margin-top: 57px;
  z-index: 1;
}
@media (max-width: 700px) {
  .teen-registration .teen-registration__top {
    margin-top: 25px;
  }
}
.teen-registration .teen-registration__top .teen-registration__header {
  font-family: OpenSansBold, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--textPrimaryContrast);
}
@media (max-width: 700px) {
  .teen-registration .teen-registration__top .teen-registration__header {
    font-family: OpenSansBold, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--textPrimaryContrast);
  }
}
.teen-registration .teen-registration__top .teen-registration__description {
  font-family: OpenSansRegular, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--textPrimaryContrast);
  margin-top: 8px;
}
@media (max-width: 700px) {
  .teen-registration .teen-registration__top .teen-registration__description {
    font-family: OpenSansRegular, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--textPrimaryContrast);
  }
}
.teen-registration .teen-registration__top .teen-registration__title {
  font-family: OpenSansRegular, sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #02db3e;
  font-family: inherit;
  margin-top: 8px;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 700px) {
  .teen-registration .teen-registration__top .teen-registration__title {
    font-family: OpenSansRegular, sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #02db3e;
    font-family: inherit;
  }
}
.teen-registration .teen-registration__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 300px;
  margin-top: 24px;
  z-index: 1;
}
.win-teen {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 428px;
  height: 422px;
  background: #001e6f;
  border: 1px solid #3a567b;
  border-radius: 15px;
  position: relative;
}
@media (max-width: 700px) {
  .win-teen {
    width: 352px;
    height: 391px;
  }
}
.win-teen .win-teen__header {
  font-family: OpenSansBold, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--textPrimaryContrast);
  margin-top: 57px;
}
@media (max-width: 700px) {
  .win-teen .win-teen__header {
    font-family: OpenSansBold, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--textPrimaryContrast);
    margin-top: 52px;
  }
}
.win-teen .win-teen__description {
  font-family: OpenSansRegular, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--textPrimaryContrast);
  text-align: center;
  margin-top: 8px;
  width: 260px;
}
@media (max-width: 700px) {
  .win-teen .win-teen__description {
    font-family: OpenSansRegular, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--textPrimaryContrast);
  }
}
.win-teen .win-teen__title {
  font-family: OpenSansRegular, sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #02db3e;
  font-family: inherit;
  margin-top: 8px;
  text-align: center;
  width: 260px;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .win-teen .win-teen__title {
    font-family: OpenSansRegular, sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #02db3e;
    font-family: inherit;
  }
}
.win-teen .win-teen__again {
  font-family: OpenSansRegular, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--textPrimaryContrast);
  text-align: center;
  margin-top: 24px;
  width: 182px;
}
@media (max-width: 700px) {
  .win-teen .win-teen__again {
    font-family: OpenSansRegular, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--textPrimaryContrast);
    width: 146px;
  }
}
.win-teen .win-teen__button {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: inherit;
  text-align: inherit;
  color: inherit;
  border: 0;
  outline: none;
  background-color: inherit;
  font-family: OpenSansBold, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--textPrimaryContrast);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  background: linear-gradient(180deg, #00e0ff -4.94%, #02db3e 50.01%);
  border: 3px solid hsla(0, 0%, 100%, 0.5);
  border-radius: 16px;
  padding: 14px 29px;
  text-transform: uppercase;
  z-index: 1;
}
.win-teen .win-teen__things {
  position: absolute;
  background-image: url("");
  background-repeat: no-repeat, repeat;
  background-position: top;
  width: 550px;
  height: 470px;
  margin-left: 15px;
  margin-top: 25px;
}
@media (max-width: 700px) {
  .win-teen .win-teen__things {
    background-image: url("");
    width: 349px;
    height: 526px;
    margin-left: -30px;
    margin-top: -60px;
    z-index: 0;
  }
}
.forgot-password {
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  width: 100%;
  text-align: center;
}
.log-in-close {
  position: absolute;
  top: 2px;
  right: 0;
  cursor: pointer;
  background-color: transparent;
}
.log-in-header {
  position: relative;
  display: flex;
  justify-content: center;
}
.log-in-header__title {
  font-family: OpenSansBold, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--textPrimary);
}
.login-email {
  margin: 60px 0 0;
}
.login-email input:-webkit-autofill {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.login-password {
  margin-top: 8px;
  position: relative;
}
.login-password .login-password__toggle {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: inherit;
  padding: 0;
  text-align: inherit;
  color: inherit;
  border: 0;
  outline: none;
  background-color: inherit;
  position: absolute;
  right: 15px;
  top: 10px;
}
.login-password input:-webkit-autofill {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.register-hint {
  font-family: OpenSansRegular, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: inherit;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 254px;
}
.register-hint .register-hint__registration {
  color: var(--primary);
}
.sign-in-button {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: inherit;
  text-align: inherit;
  color: inherit;
  border: 0;
  outline: none;
  background-color: inherit;
  font-size: 12px;
  text-align: center;
  border-radius: 15px;
  background-color: var(--buttonBackgroundColor);
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--buttonFontColor);
  padding: 18px;
  border-radius: 8px;
  width: 100%;
  margin: 20px 0 8px;
}
.sign-in-button.sign-in-button____active {
  color: var(--buttonFontColorActive);
  background-color: var(--buttonBackgroundColorActive);
}
.log-in {
  display: flex;
  flex-flow: column;
  background-color: var(--backgroundSecondary);
  width: 343px;
  height: 616px;
  padding: 20px 20px 16px;
  border-radius: 15px;
}
@media (max-width: 400px) {
  .log-in {
    width: 96vw;
  }
}
@media (min-width: 700px) {
  .log-in {
    padding: 40px 40px 16px;
    width: 380px;
  }
}
.connection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  width: 560px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-radius: 40px;
  padding: 20px 0 40px;
  overflow: hidden;
}
@media (max-width: 700px) {
  .connection {
    width: 343px;
    padding-top: 35px;
  }
}
.connection .connection__logo {
  display: flex;
  margin-left: -50px;
}
.connection .connection__title {
  font-family: OpenSansBold, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--textPrimary);
}
@media (max-width: 1020px) {
  .connection .connection__title {
    font-family: OpenSansBold, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--textPrimary);
  }
}
.connection .connection__description {
  font-family: OpenSansRegular, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--textPrimary);
  margin-top: 12px;
  margin-bottom: 34px;
}
@media (max-width: 1020px) {
  .connection .connection__description {
    font-family: OpenSansRegular, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--textPrimary);
  }
}
.connection .connection__button {
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--textPrimaryContrast);
  text-decoration: none;
  padding: 18px 43px;
  background: #3959d9;
  border-radius: 8px;
}
.casino-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.casino-list .casino-list__title {
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--textPrimary);
  margin-bottom: 12px;
}
.casino-list .casino-list__link {
  display: flex;
  flex-direction: column;
  width: 140px;
}
.casino-list .casino-list__link .casino-list__value {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: inherit;
  padding: 0;
  text-align: inherit;
  color: inherit;
  border: 0;
  outline: none;
  background-color: inherit;
  font-family: OpenSansRegular, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--textSecondary);
  margin: 4px 0;
  text-decoration: none;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.casino-list .casino-list__link .casino-list__value:hover {
  color: var(--primary);
}
.casino-list .casino-list__link .casino-list__aviator {
  font-family: OpenSansRegular, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--textSecondary);
  margin: 4px 0;
  text-decoration: none;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.casino-link {
  position: relative;
  width: 100%;
}
.casino-link .casino-link__current {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: inherit;
  text-align: inherit;
  color: inherit;
  border: 0;
  outline: none;
  background-color: inherit;
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--textPrimary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 9px 12px;
  background: #fff;
  border-radius: 8px;
}
.casino-link .casino-link__current.casino-link__current____active {
  border-radius: 8px 8px 0 0;
}
.casino-link .casino-link__current .casino-link__arrow {
  display: flex;
  transition: all 0.4s;
}
.casino-link
  .casino-link__current
  .casino-link__arrow.casino-link__arrow____up {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.casino-link .casino-link__list {
  width: 100%;
}
.casino-link .casino-link__list .casino-link__collapsible {
  display: flex;
  flex-direction: column;
  padding: 6px;
  background: #fff;
  border-radius: 0 0 8px 8px;
}
.casino-link .casino-link__list .casino-link__value {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: inherit;
  text-align: inherit;
  color: inherit;
  border: 0;
  outline: none;
  background-color: inherit;
  font-family: OpenSansRegular, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--textPrimary);
  text-decoration: none;
  padding: 6px;
}
.casino-link .casino-link__list .casino-link__value:hover {
  background-color: var(--buttonBackgroundColor);
  border-radius: 8px;
}
.contacts {
  width: 160px;
}
@media (max-width: 1020px) {
  .contacts {
    width: 100%;
  }
}
.contacts .contacts-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-wrap: wrap;
}
@media (max-width: 1020px) {
  .contacts .contacts-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }
}
.contacts .contacts-wrapper .contacts__email-box {
  display: flex;
  margin-top: 8px;
  text-decoration: none;
}
.contacts .contacts-wrapper .contacts__email-box .contacts__email {
  font-family: OpenSansRegular, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}
@media (max-width: 1020px) {
  .contacts .contacts-wrapper .contacts__email-box .contacts__email {
    font-family: OpenSansSemiboldBold, sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
  }
}
.contacts .contacts-wrapper .contacts__phone-box {
  display: flex;
  margin-top: 8px;
}
.contacts .contacts-wrapper .contacts__phone-box .contacts__phone {
  font-family: OpenSansRegular, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}
@media (max-width: 1020px) {
  .contacts .contacts-wrapper .contacts__phone-box .contacts__phone {
    font-family: OpenSansSemiboldBold, sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
  }
}
.contacts .contacts__support {
  font-family: OpenSansRegular, sans-serif;
  font-size: 8px;
  font-weight: 400;
  color: var(--primary);
  margin-top: 8px;
}
@media (max-width: 1020px) {
  .contacts .contacts__support {
    font-family: OpenSansRegular, sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.information-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.information-list .information-list__title {
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--textPrimary);
  margin-bottom: 12px;
}
.information-list .information-list__link {
  display: flex;
  flex-direction: column;
  width: 190px;
}
.information-list .information-list__link .information-list__value {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: inherit;
  padding: 0;
  text-align: inherit;
  color: inherit;
  border: 0;
  outline: none;
  background-color: inherit;
  font-family: OpenSansRegular, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--textSecondary);
  margin: 4px 0;
  text-decoration: none;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.information-list .information-list__link .information-list__value:hover {
  color: var(--primary);
}
.information-list .information-list__link .information-list__aviator {
  font-family: OpenSansRegular, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--textSecondary);
  margin: 4px 0;
  text-decoration: none;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media (min-width: 1020px) {
  .license-container {
    padding: 8px 20px;
    margin-left: 8px;
    margin-right: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 1020px) {
  .license-container {
    display: flex;
    flex-direction: column;
    padding: 0 30px;
    position: relative;
    background-color: var(--background);
  }
}
@media (max-width: 700px) {
  .license-container {
    padding: 0;
    align-items: center;
  }
}
.license-container .license-container__iframe {
  display: none;
}
@media (max-width: 400px) {
  .license-container .license-container__iframe {
    display: flex;
    width: 120px;
    height: 50px;
    border: none;
    left: 180px;
    top: 55px;
    margin-top: 20px;
  }
}
.license-container .license-container__desktop {
  font-family: OpenSansRegular, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--textSecondary);
}
@media (max-width: 1020px) {
  .license-container .license-container__desktop {
    display: none;
  }
}
.license-container .license-container__mobile {
  display: none;
}
@media (max-width: 1020px) {
  .license-container .license-container__mobile {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    grid-gap: 1em;
    margin-top: 20px;
    text-align: center;
  }
}
.license-container .license-container__mobile .license-container__title {
  font-family: OpenSansRegular, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--textSecondary);
}
.logo-partners {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--borderFrame);
}
.logo-partners .logo-partners__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 412px;
  flex-wrap: wrap;
}
@media (max-width: 700px) {
  .logo-partners .logo-partners__wrapper {
    width: 100%;
    justify-content: center;
    grid-gap: 28px;
  }
}
.logo-partners .logo-partners__wrapper .logo-partners__iframe {
  width: 120px;
  height: 50px;
  border: none;
  left: 180px;
  top: 55px;
}
@media (max-width: 400px) {
  .logo-partners .logo-partners__wrapper .logo-partners__iframe {
    display: none;
  }
}
.logo-partners .logo-partners__wrapper .logo-partners__age {
  display: none;
  margin-left: 20px;
  width: 22px;
}
@media (max-width: 1020px) {
  .logo-partners .logo-partners__wrapper .logo-partners__age {
    display: flex;
  }
}
.payment-partners {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--borderFrame);
}
.payment-partners .payment-partners__wrapper {
  display: flex;
  justify-content: center;
  width: 640px;
  flex-wrap: wrap;
}
.payment-partners .payment-partners__wrapper img {
  margin: 0 10px;
}
@media (max-width: 700px) {
  .payment-partners .payment-partners__wrapper {
    width: 100%;
    justify-content: center;
    grid-gap: 34px;
  }
}
.social-network {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.social-network .social-network__header {
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--textPrimary);
}
.social-network .social-network__logos {
  display: flex;
  grid-gap: 12px;
  margin-top: 8px;
  cursor: pointer;
}
.footer,
.footer .footer-wrapper {
  display: flex;
  flex-direction: column;
}
.footer .footer-wrapper {
  padding: 20px;
  border-radius: 8px;
  background-color: var(--backgroundSecondary);
  margin-top: 60px;
  margin-left: 8px;
  margin-right: 8px;
  border-bottom: 1px solid var(--borderFrame);
}
@media (max-width: 1020px) {
  .footer .footer-wrapper {
    background-color: var(--background);
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px 20px;
  }
}
@media (max-width: 700px) {
  .footer .footer-wrapper {
    grid-template-columns: 1fr;
  }
}
.footer .footer-wrapper .footer__contacts____tablet {
  display: none;
}
@media (max-width: 1020px) {
  .footer .footer-wrapper .footer__contacts____tablet {
    display: flex;
    width: 100%;
  }
}
.footer .footer-wrapper .footer__container {
  display: flex;
  justify-content: space-evenly;
  border-bottom: 1px solid var(--borderFrame);
  padding-bottom: 40px;
}
.footer .footer-wrapper .footer__container .footer__desktop {
  display: flex;
  width: 100%;
}
@media (max-width: 1020px) {
  .footer .footer-wrapper .footer__container .footer__desktop {
    display: none;
  }
}
.footer .footer-wrapper .footer__container .footer__tablet {
  display: none;
}
@media (max-width: 1020px) {
  .footer .footer-wrapper .footer__container .footer__tablet {
    display: flex;
    grid-gap: 20px;
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 400px) {
  .footer .footer-wrapper .footer__container .footer__tablet {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
  }
}
.footer .footer-wrapper .footer__container .footer-contacts__desktop {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-right: 86px;
}
@media (max-width: 1020px) {
  .footer .footer-wrapper .footer__container .footer-contacts__desktop {
    display: none;
  }
}
.footer
  .footer-wrapper
  .footer__container
  .footer-contacts__desktop
  .footer-contacts__header {
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--textPrimary);
}
.media-marker {
  display: none;
  font-family: m;
}
@media (min-width: 1340px) {
  .media-marker {
    font-family: l;
  }
}
@media (max-width: 1019px) {
  .media-marker {
    font-family: s;
  }
}
@media (max-width: 699px) {
  .media-marker {
    font-family: xs;
  }
}
.button-select {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: inherit;
  text-align: inherit;
  color: inherit;
  border: 0;
  outline: none;
  background-color: inherit;
  display: flex;
  align-items: center;
  padding: 8px;
  background: #fff;
  width: 100%;
}
.button-select:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.button-select:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.button-select .button-select__img {
  display: flex;
  align-items: center;
  margin-right: 4px;
  -webkit-filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.15));
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.15));
  border-radius: 4px;
}
@media (min-width: 1020px) {
  .button-select .button-select__img {
    border-radius: 8px;
  }
}
.button-select .button-select__title {
  display: flex;
  align-items: center;
}
.button-select:hover {
  background-color: #ecedef;
}
.language-select {
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: inherit;
  position: relative;
}
.language-select .language-select__current {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: inherit;
  text-align: inherit;
  color: inherit;
  border: 0;
  outline: none;
  background-color: inherit;
  display: flex;
  flex-flow: row;
  align-items: center;
  padding: 8px;
  margin-bottom: -4px;
}
.language-select .language-select__current .language-select__img {
  -webkit-filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.15));
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.15));
  border-radius: 4px;
}
@media (min-width: 1020px) {
  .language-select .language-select__current .language-select__img {
    border-radius: 8px;
  }
}
.language-select .language-select__current .language-select__title {
  margin-left: 4px;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
}
.language-select .language-select__list {
  display: none;
  border-radius: 8px;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
}
.language-select .language-select__list-up {
  top: -143px;
}
.language-select .language-select__arrows {
  display: flex;
  align-items: center;
}
.language-select.language-select____small {
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: inherit;
}
.language-select.language-select____small
  .language-select__current
  .language-select__title {
  margin-right: 8px;
}
.language-select.language-select____active .language-select__list {
  display: block;
}
.intercom {
  background-color: #fff;
  background-image: url("");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
  height: 28px;
  width: 28px;
  cursor: pointer;
  margin-left: 8px;
  border-bottom: 2px solid transparent;
}
.intercom:hover {
  color: var(--primary);
}
.intercom:hover:after {
  content: "";
  position: absolute;
  bottom: -23px;
  height: 1px;
  left: 1px;
  width: 28px;
  background: var(--primary);
}
@media (max-width: 1020px) {
  .intercom {
    background-image: url("");
  }
}
.header__sign-in {
  display: flex;
  align-items: center;
}
.header__sign-in .header__sign-in__link {
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  padding: 7px 20px;
  margin-left: 8px;
  cursor: pointer;
  border: 1px solid var(--primary);
  border-radius: 8px;
  text-decoration: none;
}
@media (max-width: 1020px) {
  .header__sign-in .header__sign-in__link {
    font-family: OpenSansSemiboldBold, sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    padding: 4.5px 11px;
  }
}
.header__sign-in .header__sign-in__link:hover {
  background: #c4cdf4;
}
.header__sign-in .header__sign-in__mobile {
  display: none;
}
@media (max-width: 700px) {
  .header__sign-in .header__sign-in__mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid #3959d9;
    border-radius: 8px;
    margin-left: 4px;
  }
}
.header__sign-in .header__sign-in__mobile:hover {
  background: #c4cdf4;
}
.header-sign-up-button {
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  padding: 8px 20px;
  margin-left: 8px;
  cursor: pointer;
  text-decoration: none;
  border-radius: 8px;
  background: linear-gradient(103.42deg, #fc4665 6.06%, #3959d9 77.61%);
}
@media (max-width: 1020px) {
  .header-sign-up-button {
    font-family: OpenSansSemiboldBold, sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    padding: 5.5px 11px;
  }
}
.header-sign-up-button:hover {
  background: linear-gradient(103.42deg, #e31a3c 6.06%, #0f32bd 77.61%);
}
.controls,
.notification-item {
  display: flex;
  align-items: center;
}
.notification-item {
  position: relative;
  width: 100%;
  min-height: 76px;
  background: #fff;
  border-radius: 16px;
  margin: 8px 0;
  padding: 0 20px;
}
.notification-item__point {
  position: absolute;
  left: 6px;
  background: #fc4665;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.notification-item__title {
  width: 100%;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}
.notification-item__text {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}
.notification-item__text-amount {
  color: #00f;
}
.notification-item__date {
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 14px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #9fa0a8;
}
.notification-item__icon {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: #3959d9;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
}
.notification-item__info {
  display: flex;
  flex-direction: column;
}
.notification-desktop {
  width: 100%;
  height: 194px;
  overflow-y: auto;
}
.notification-desktop-wrapper {
  position: absolute;
  background: #fff;
  overflow-y: auto;
  top: 70px;
  right: 82px;
  width: 400px;
  z-index: 2;
  border-radius: 16px;
  -webkit-filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}
.notification-desktop-triangle {
  z-index: 3;
  top: 61px;
  right: 103px;
  position: absolute;
  -webkit-transform: rotate(227deg);
  transform: rotate(227deg);
  width: 40px;
  height: 40px;
  background: #fff;
}
.notification-desktop__title {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  text-align: start;
  padding: 0 24px;
  margin-top: 12px;
}
.notification-desktop__hr {
  margin: 12px 0;
  background: #ecedef;
  border: 1px solid #ecedef;
}
.notification-desktop__items {
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.notification-desktop__items-not {
  font-family: OpenSansRegular, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--textPrimary);
  padding-top: 36px;
  display: flex;
  justify-content: center;
}
.header-info {
  display: flex;
  flex-flow: row;
  align-items: center;
}
.header-info .header-info__balance {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header-info .header-info__balance .header-info__currency {
  display: flex;
}
.header-info
  .header-info__balance
  .header-info__currency
  .header-info__currency-count {
  margin-right: 3px;
  white-space: nowrap;
}
.header-info
  .header-info__balance
  .header-info__currency
  .header-info__currency-count,
.header-info
  .header-info__balance
  .header-info__currency
  .header-info__currency-value {
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--textPrimary);
  line-height: 20px;
}
.header-info .header-info__balance .header-info__bonus {
  display: flex;
  align-items: center;
  margin-left: auto;
  opacity: 0.5;
}
.header-info
  .header-info__balance
  .header-info__bonus
  .header-info__bonus-text {
  font-family: OpenSansRegular, sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--textPrimary);
  margin-right: 2px;
}
.header-info .header-info__deposit {
  background-color: #fff;
  background-image: url("");
  background-repeat: no-repeat;
  background-position: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  position: relative;
  width: 28px;
  height: 28px;
  margin-left: 8px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
}
.header-info .header-info__deposit:hover {
  color: var(--primary);
}
.header-info .header-info__deposit:hover:after {
  content: "";
  position: absolute;
  bottom: -23px;
  height: 1px;
  left: 1px;
  width: 28px;
  background: var(--primary);
}
@media (max-width: 1020px) {
  .header-info .header-info__deposit {
    background-image: url("");
    background-repeat: no-repeat;
    background-position: 50%;
  }
}
.header-info .header-info__profile {
  background-color: #fff;
  background-image: url("");
  background-repeat: no-repeat;
  background-position: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border-bottom: 2px solid transparent;
  position: relative;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
  width: 28px;
  height: 28px;
  margin-left: 8px;
  cursor: pointer;
}
@media (max-width: 1020px) {
  .header-info .header-info__profile {
    display: none;
  }
}
.header-info .header-info__profile:hover:after {
  content: "";
  position: absolute;
  bottom: -23px;
  height: 1px;
  left: 1px;
  width: 28px;
  background: var(--primary);
}
.header-info .header-info__notice {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 28px;
  height: 28px;
  margin-left: 8px;
  border-radius: 8px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1020px) {
  .header-info .header-info__notice {
    display: none;
  }
}
.header-info .header-info__notice:hover:after {
  content: "";
  position: absolute;
  bottom: -23px;
  height: 1px;
  left: 1px;
  width: 28px;
  background: var(--primary);
}
.header-info .header-info__notice-active {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fc4665;
  position: absolute;
  top: 3px;
  right: 5px;
}
.header-info .header-info__notice-active:hover {
  border-bottom: 2px solid transparent;
}
.slide-menu-button {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: inherit;
  padding: 0;
  text-align: inherit;
  color: inherit;
  border: 0;
  outline: none;
  background-color: inherit;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-left: 8px;
  border-bottom: 2px solid transparent;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
}
.slide-menu-button:hover {
  border-bottom: 2px solid var(--primary);
}
.navbar {
  display: flex;
  position: relative;
}
.navbar .navbar__link {
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--textSecondary);
  margin-left: 40px;
  text-decoration: none;
  border-bottom: 2px solid hsla(0, 0%, 100%, 0);
  padding: 24px 0 25px;
  min-width: 55px;
  cursor: pointer;
  background: transparent;
}
.navbar .navbar__link:first-child {
  margin-left: 0;
}
.navbar .navbar__link:hover {
  color: var(--primary);
}
.navbar .navbar__link.navbar__link__active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}
.navbar .navbar__aviator {
  position: relative;
}
.navbar .navbar__aviator .navbar__sticker {
  position: absolute;
  right: -26px;
  top: 8px;
  width: 45px;
  height: 45px;
}
.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--background);
  z-index: 19;
  display: flex;
  align-items: center;
  padding: 0 20px;
  justify-content: space-between;
  height: 70px;
}
@media (min-width: 1020px) {
  .header {
    padding-left: 8px;
    padding-right: 8px;
    border-bottom: 1px solid rgba(159, 160, 168, 0.2);
  }
}
.header .header__block-logo {
  position: -webkit-sticky;
  position: sticky;
  z-index: 1;
  top: 0;
  left: 0;
  min-width: 256px;
}
@media (max-width: 700px) {
  .header .header__block-logo {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}
.header .header__block-logo .header__title-container {
  display: flex;
}
.header .header__block-logo .header__title-back-icon {
  z-index: 10;
  margin-right: 12px;
}
.header .header__block-logo .header__title {
  font-weight: 700;
  margin-left: 6px;
}
.header .header__logo-container {
  display: flex;
  align-items: center;
}
.header .header__logo-container .header__menu {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: inherit;
  padding: 0;
  text-align: inherit;
  color: inherit;
  border: 0;
  outline: none;
  background-color: inherit;
}
@media (max-width: 1020px) {
  .header .header__logo-container .header__logo {
    margin-right: 8px;
    width: 82px;
  }
}
.header .header__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (max-width: 1020px) {
  .header .header__main {
    justify-content: flex-end;
  }
}
.header .header__main .header__navbar {
  display: inline-block;
}
@media (max-width: 1020px) {
  .header .header__main .header__navbar {
    display: none;
  }
}
.header .header__main .header__auth {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header .header__main .header__auth .header__language {
  margin-top: -4px;
}
@media (max-width: 1020px) {
  .header .header__main .header__auth .header__language {
    display: none;
  }
}
.header .header__main .header__auth .header__close-icon {
  margin-left: 12px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.general-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.general-info__title {
  font-family: OpenSansBold, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.general-info__card {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-row-gap: 35px;
  border-radius: 15px;
  background-color: var(--backgroundSecondary);
  padding: 20px;
}
@media (max-width: 700px) {
  .general-info__card {
    grid-row-gap: 7px;
  }
}
.general-row {
  display: flex;
  align-items: center;
}
@media (max-width: 700px) {
  .general-row {
    flex-direction: column;
  }
}
.general-row__title {
  font-family: OpenSansRegular, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--textPrimary);
  margin-left: 56px;
}
@media (max-width: 700px) {
  .general-row__title {
    margin-left: 0;
    margin-top: 22px;
  }
}
.general-row__title__header {
  color: var(--primary);
}
.general-row__divider {
  display: none;
  height: 1px;
  width: 230px;
  margin-top: 12px;
  background-color: #e2e2e2;
}
@media (max-width: 700px) {
  .general-row__divider {
    display: block;
  }
}
.licence-card {
  padding: 20px;
  border-radius: 15px;
  background-color: var(--backgroundSecondary);
}
.licence-card__title {
  font-family: OpenSansRegular, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--textPrimary);
  margin-bottom: 20px;
}
@media (max-width: 700px) {
  .licence-card__title {
    margin-bottom: 40px;
  }
}
.licence-card__title__header {
  font-weight: 600;
  color: var(--primary);
}
.licence-card__title__link {
  color: var(--primary);
}
.licence-card__row {
  display: flex;
  align-items: center;
}
@media (max-width: 700px) {
  .licence-card__row {
    flex-direction: column;
  }
}
.licence-card__description {
  font-family: OpenSansRegular, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--textPrimary);
  margin-left: 32px;
}
@media (max-width: 700px) {
  .licence-card__description {
    margin-top: 32px;
    margin-left: 0;
  }
}
.licence {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.licence__title {
  font-family: OpenSansBold, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.partners {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.partners__title {
  font-family: OpenSansBold, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.partners__card {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-row-gap: 35px;
  padding: 20px;
  border-radius: 15px;
  background-color: var(--backgroundSecondary);
}
@media (max-width: 700px) {
  .partners__card {
    grid-row-gap: 20px;
  }
}
.partner-card {
  display: flex;
  align-items: center;
}
@media (max-width: 700px) {
  .partner-card {
    flex-direction: column;
  }
}
.partner-card__img {
  margin-right: 60px;
  display: flex;
  align-items: center;
}
@media (max-width: 700px) {
  .partner-card__img {
    margin-right: 0;
  }
}
.partner-card__divider {
  display: none;
  margin-top: 12px;
  width: 230px;
  height: 1px;
  background-color: #e2e2e2;
}
@media (max-width: 700px) {
  .partner-card__divider {
    display: block;
  }
}
.partner-card__description {
  font-family: OpenSansRegular, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--textPrimary);
  margin-left: auto;
  max-width: 530px;
}
@media (max-width: 700px) {
  .partner-card__description {
    margin-top: 30px;
  }
}
.partner-card__title {
  color: var(--primary);
}
.about-company,
.aml {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  margin-top: 16px;
  width: 100%;
}
.aml__header {
  font-family: OpenSansBold, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}
.aml__title {
  font-family: OpenSans, sans-serif;
  font-weight: 600;
}
.aml__sub-title,
.aml__title {
  font-size: 18px;
  color: var(--primary);
  margin-top: 16px;
}
.aml__description,
.aml__sub-title {
  font-family: OpenSansRegular, sans-serif;
  font-weight: 400;
}
.aml__description {
  font-size: 14px;
  color: var(--textPrimary);
  margin-top: 4px;
  white-space: pre-wrap;
}
.cookies {
  background: #fff;
  border-radius: 16px;
  padding: 0 16px 16px;
  width: 100%;
  margin-top: 16px;
}
.cookies__header {
  font-family: OpenSansBold, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  padding-top: 16px;
}
.cookies__title {
  font-family: OpenSans, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  white-space: pre-wrap;
  margin-top: 16px;
}
.cookies__description {
  font-family: OpenSansRegular, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--textPrimary);
  margin-top: 4px;
  white-space: pre-wrap;
}
.gamble {
  background: #fff;
  border-radius: 16px;
  padding: 0 16px 16px;
  width: 100%;
  margin-top: 16px;
}
.gamble__header {
  font-family: OpenSansBold, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  padding-top: 16px;
}
.gamble__title {
  font-family: OpenSans, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  white-space: pre-wrap;
  margin-top: 16px;
}
.gamble__description {
  font-family: OpenSansRegular, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--textPrimary);
  white-space: pre-wrap;
}
.info-header {
  font-family: OpenSansBold, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--textPrimary);
  padding: 16px;
}
.info-header,
.info-navigation {
  background: #fff;
  border-radius: 16px;
}
.info-navigation {
  width: 100%;
  padding: 12px;
}
.info-navigation .info-navigation__category {
  font-family: OpenSans, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--textPrimary);
  border-radius: 8px;
  padding-bottom: 11px;
  border-bottom: 1px solid #ecedef;
}
.info-navigation .info-navigation__category.info-navigation__category__active {
  color: var(--primary);
  background: rgba(57, 89, 217, 0.1);
}
.info-navigation .info-navigation__link {
  font-family: OpenSansRegular, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--textPrimary);
  padding: 15px 0 14px;
  color: var(--textSecondary);
  text-decoration: none;
  display: block;
}
.info-navigation .info-navigation__link____active {
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  width: 100%;
}
.privacy {
  background: #fff;
  border-radius: 16px;
  padding: 0 16px 16px;
  width: 100%;
  margin-top: 16px;
}
.privacy__header {
  font-family: OpenSansBold, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  padding-top: 16px;
}
.privacy__title {
  font-family: OpenSans, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  white-space: pre-wrap;
  margin-top: 16px;
}
.privacy__description {
  font-family: OpenSansRegular, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--textPrimary);
  margin-top: 4px;
  white-space: pre-wrap;
}
.casino-banner-main {
  margin-top: 8px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1020px) {
  .casino-banner-main {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.casino-banner-main img {
  width: 100%;
  height: 100%;
}
.casino-banner-main .casino-banner-main__image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
@media (min-width: 1020px) {
  .casino-banner-main .casino-banner-main__image {
    height: 311px;
  }
}
@media (min-width: 1340px) {
  .casino-banner-main .casino-banner-main__image {
    height: 360px;
  }
}
.bonus__link {
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--textPrimaryContrast);
  background: #fc4665;
  box-shadow: 0 0 10px #fc4665;
  border-radius: 8px;
  text-decoration: none;
  padding: 18px 40px;
}
.table-bonus {
  border-spacing: 0;
  border-collapse: collapse;
  max-width: 750px;
  width: 100%;
  margin-top: 8px;
}
.table-bonus .table-bonus__row {
  background-color: #fec8d1;
}
.table-bonus .table-bonus__cell {
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--textPrimary);
}
.table-bonus td {
  font-family: OpenSansRegular, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--textPrimary);
  border: 1px solid #9fa0a8;
  padding: 10px;
  width: 33%;
}
.welcome {
  display: flex;
  flex-direction: column;
}
.welcome .welcome__header {
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--textPrimary);
  margin-top: 40px;
}
.welcome .welcome__block {
  margin-top: 20px;
}
.welcome .welcome__block .welcome__block__title {
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--textPrimary);
}
.welcome .welcome__block .welcome__block__description {
  font-family: OpenSansRegular, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--textPrimary);
  margin-top: 20px;
}
.bonus-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 348px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 20px;
  flex-wrap: wrap;
}
@media (max-width: 1020px) {
  .bonus-item {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 700px) {
  .bonus-item {
    display: flex;
    flex-direction: row;
    min-width: 100%;
  }
}
.bonus-item .bonus-item__title {
  font-family: Montserrat, sans-serif;
  font-style: normal;
  text-transform: uppercase;
  font-size: 48px;
  font-weight: 800;
  color: var(--backgroundAltActive);
  order: 1;
}
@media (max-width: 1020px) {
  .bonus-item .bonus-item__title {
    margin-top: 20px;
    order: 2;
  }
}
@media (max-width: 700px) {
  .bonus-item .bonus-item__title {
    font-family: Montserrat, sans-serif;
    font-style: normal;
    text-transform: uppercase;
    font-size: 36px;
    font-weight: 800;
    color: var(--backgroundAltActive);
    order: 1;
  }
}
.bonus-item .bonus-item__img {
  order: 2;
}
@media (max-width: 1020px) {
  .bonus-item .bonus-item__img {
    order: 1;
    margin-top: 10px;
  }
}
@media (max-width: 700px) {
  .bonus-item .bonus-item__img {
    order: 2;
    width: 70px;
  }
}
.bonus-item .bonus-item__description {
  font-family: OpenSansRegular, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--textSecondary);
  display: flex;
  order: 3;
  max-width: 200px;
}
@media (max-width: 1020px) {
  .bonus-item .bonus-item__description {
    margin-top: 8px;
    text-align: center;
  }
}
@media (max-width: 700px) {
  .bonus-item .bonus-item__description {
    font-family: OpenSansRegular, sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--textSecondary);
    text-align: left;
  }
}
.welcome-bonus .welcome-bonus__banner {
  width: 100%;
  border-radius: 12px;
}
.welcome-bonus .welcome-bonus__title {
  font-family: OpenSansBold, sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: inherit;
  background: linear-gradient(0.422turn, #ff367f -8.26%, #7451ff 106.33%);
  -webkit-background-clip: text;
  color: transparent;
  max-width: 614px;
  margin-top: 29px;
}
@media (max-width: 1020px) {
  .welcome-bonus .welcome-bonus__title {
    margin-top: 20px;
  }
}
@media (max-width: 700px) {
  .welcome-bonus .welcome-bonus__title {
    font-family: OpenSansBold, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: inherit;
    background: linear-gradient(0.422turn, #ff367f -8.26%, #7451ff 106.33%);
    -webkit-background-clip: text;
    color: transparent;
    max-width: 307px;
  }
}
.welcome-bonus .welcome-bonus__promo-list {
  display: grid;
  grid-gap: 19px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 40px;
}
@media (max-width: 700px) {
  .welcome-bonus .welcome-bonus__promo-list {
    display: flex;
    flex-direction: column;
  }
}
.welcome-bonus .welcome-bonus__description {
  font-family: OpenSansRegular, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--textPrimary);
  margin-top: 40px;
}
@media (max-width: 700px) {
  .welcome-bonus .welcome-bonus__description {
    font-family: OpenSansRegular, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--textPrimary);
  }
}
.welcome-bonus .welcome-bonus__button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.welcome-bonus .welcome-bonus__terms {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  font-family: OpenSansRegular, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--secondary);
}
.welcome-bonus .welcome-bonus__terms .welcome-bonus__terms-button {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: inherit;
  padding: 0;
  text-align: inherit;
  color: inherit;
  border: 0;
  outline: none;
  background-color: inherit;
}
.welcome-bonus .welcome-bonus__terms .welcome-bonus__terms-arrow {
  margin-left: 5.5px;
  transition: all 0.4s;
}
.welcome-bonus
  .welcome-bonus__terms
  .welcome-bonus__terms-arrow.welcome-bonus__terms-arrow__up {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.rule {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  margin-top: 16px;
  width: 100%;
}
.rule__header {
  font-family: OpenSansBold, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}
.rule__title {
  font-family: OpenSans, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  white-space: pre-wrap;
  margin-top: 16px;
}
.rule__description {
  font-family: OpenSansRegular, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--textPrimary);
  margin-top: 4px;
  white-space: pre-wrap;
}
.support-item {
  display: flex;
  align-items: center;
  flex-direction: row;
  padding: 20px 40px 20px 20px;
  grid-gap: 20px;
  gap: 20px;
  border-radius: 15px;
  background-color: var(--backgroundSecondary);
  width: 100%;
}
@media (min-width: 700px) {
  .support-item {
    width: auto;
  }
}
.support-item .support-item__logo {
  width: 100px;
}
@media (max-width: 1020px) {
  .support-item .support-item__logo {
    width: 88px;
  }
}
@media (max-width: 700px) {
  .support-item .support-item__logo {
    width: 60px;
  }
}
.support-item__title {
  font-family: OpenSansRegular, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--textPrimary);
  margin-bottom: 4px;
}
.support-item__description {
  font-family: OpenSansBold, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--textPrimary);
  margin-bottom: 4px;
}
.support-item__notice {
  font-family: OpenSansRegular, sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--textSecondary);
}
.support {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.support__title {
  font-family: OpenSansBold, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--textPrimary);
}
@media (max-width: 1020px) {
  .support__title {
    display: none;
  }
}
.support__list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  grid-gap: 12px;
  gap: 12px;
  margin-top: 12px;
}
@media (min-width: 700px) {
  .support__list {
    flex-wrap: nowrap;
    grid-gap: 20px;
    gap: 20px;
  }
}
.about-company-switch {
  font-family: OpenSansRegular, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--textSecondary);
  white-space: nowrap;
  margin-right: 12px;
  padding: 7px 15px;
  background-color: var(--backgroundSecondary);
  border-radius: 8px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.07);
  text-decoration: none;
}
.about-company-switch:focus {
  font-weight: 700;
  color: var(--textPrimaryContrast);
  background-color: var(--primary);
}
.info-page {
  flex: 1 1;
  flex-direction: column;
  min-height: 100vh;
}
.info-page,
.info-page .info-page__container {
  display: flex;
}
.info-page .info-page__container .info-page__nav {
  width: 278px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  flex-flow: column;
  transition: width 0.2s;
}
@media (max-width: 1020px) {
  .info-page .info-page__container .info-page__nav {
    display: none;
  }
}
.info-page .info-page__container .info-page__main {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.info-page .info-page__container .info-page__main .info-page__content {
  display: flex;
  justify-content: center;
  width: 100%;
  flex: 1 1;
  grid-gap: 8px;
  gap: 8px;
  padding: 8px 8px 0;
}
@media (max-width: 1020px) {
  .info-page .info-page__container .info-page__main .info-page__content {
    padding: 20px;
  }
}
.info-page
  .info-page__container
  .info-page__main
  .info-page__content
  .info-page__center {
  justify-content: center;
  min-height: calc(100vh - 90px);
  width: 100%;
}
.info-page
  .info-page__container
  .info-page__main
  .info-page__content
  .info-page__center
  .info-page__switch-list {
  display: none;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  padding-bottom: 12px;
}
@media (max-width: 1020px) {
  .info-page
    .info-page__container
    .info-page__main
    .info-page__content
    .info-page__center
    .info-page__switch-list {
    display: flex;
  }
}
.info-page
  .info-page__container
  .info-page__main
  .info-page__content
  .info-page__center
  .info-page__switch-list::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1020px) {
  .info-page
    .info-page__container
    .info-page__main
    .info-page__content
    .info-page__center
    .info-page__switch-list::-webkit-scrollbar {
    display: flex;
  }
}
.info-page
  .info-page__container
  .info-page__main
  .info-page__content
  .info-page__center
  .info-page__info {
  padding: 0 12px;
}
.info-page
  .info-page__container
  .info-page__main
  .info-page__content
  .info-page__right {
  max-width: 310px;
}
.registration-accept-checkbox {
  font-family: OpenSansRegular, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--textSecondary);
  display: flex;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 400px) {
  .registration-accept-checkbox {
    margin-top: 17px;
  }
}
@media (max-width: 699px) {
  .registration-accept-checkbox {
    font-family: OpenSansRegular, sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: var(--textSecondary);
  }
}
.registration-accept-checkbox__check {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: inherit;
  padding: 0;
  text-align: inherit;
  color: inherit;
  border: 0;
  outline: none;
  background-color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border: 1px solid var(--borderFrame);
  border-radius: 5px;
  background-color: var(--background);
}
.registration-accept-checkbox__link {
  color: var(--secondary);
}
.registration-age-checkbox {
  font-family: OpenSansRegular, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--textSecondary);
  display: flex;
  align-items: center;
  margin-top: 20px;
}
@media (max-width: 699px) {
  .registration-age-checkbox {
    font-family: OpenSansRegular, sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: var(--textSecondary);
  }
}
.registration-age-checkbox__check {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: inherit;
  padding: 0;
  text-align: inherit;
  color: inherit;
  border: 0;
  outline: none;
  background-color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border: 1px solid var(--borderFrame);
  border-radius: 5px;
  background-color: var(--background);
}
.registration-age-checkbox__link {
  color: var(--secondary);
}
.currency-list {
  width: 100%;
  margin-top: 8px;
}
.registration-email-input {
  margin-top: 214px;
}
@media (min-width: 1020px) {
  .registration-email-input {
    margin-top: 60px;
  }
}
@media (max-height: 800px) and (max-width: 699px) {
  .registration-email-input {
    margin-top: 148px;
  }
}
@media (max-width: 400px) {
  .registration-email-input {
    margin-top: 164px;
  }
}
.have-account-section {
  font-family: OpenSansRegular, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--textPrimaryContrast);
  display: flex;
  justify-content: center;
}
.have-account-section__link {
  color: var(--secondary);
  margin-left: 0.4em;
}
.registration-close {
  position: absolute;
  top: 2px;
  right: 0;
  cursor: pointer;
  background-color: transparent;
}
.registration-header {
  position: relative;
}
.registration-header__title {
  font-family: OpenSansBold, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--textPrimaryContrast);
  display: none;
  justify-content: center;
}
@media (min-width: 1020px) {
  .registration-header__title {
    display: flex;
  }
}
.password-input {
  margin-top: 8px;
  position: relative;
  width: 100%;
}
.password-input .password-input__eye {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: inherit;
  padding: 0;
  text-align: inherit;
  color: inherit;
  border: 0;
  outline: none;
  background-color: inherit;
  position: absolute;
  right: 12px;
  top: 10px;
}
@media (max-width: 699px) {
  .password-input .password-input__eye {
    top: 10px;
  }
}
.sign-up-button {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: inherit;
  text-align: inherit;
  color: inherit;
  border: 0;
  outline: none;
  background-color: inherit;
  font-family: OpenSansSemiboldBold, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  width: 100%;
  padding: 18px;
  margin: 20px 0 8px;
  text-align: center;
  border-radius: 15px;
  background-color: var(--buttonBackgroundAlt);
}
.sign-up-button.sign-up-button____active {
  color: #fff;
  background-color: var(--buttonBackgroundActive);
}
.registration-form {
  width: 380px;
  padding: 20px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
@media (max-width: 400px) {
  .registration-form {
    padding: 20px 8px;
  }
}
.registration {
  display: flex;
  flex-flow: row-reverse;
  width: 343px;
  height: 640px;
  position: relative;
  border-radius: 15px;
  background: #12121e url("") no-repeat 50%;
  background-size: contain;
}
@media (max-width: 400px) {
  .registration {
    width: 296px;
    height: 528px;
  }
}
@media (min-width: 1020px) {
  .registration {
    width: 976px;
    height: 616px;
    background-image: url("");
    background-position: 50%;
  }
}
@media (max-width: 400px) {
  .registration {
    background: #12121e url("") no-repeat;
    background-position: top;
    background-size: cover;
  }
}
.registration .registration__chip {
  display: none;
  position: absolute;
}
@media (min-width: 1020px) {
  .registration .registration__chip {
    display: block;
  }
}
.registration .registration__chip-small {
  width: 48px;
  height: 65px;
  top: -22px;
  left: 198px;
  background-image: url("");
  -webkit-transform: rotate(8.91deg);
  transform: rotate(8.91deg);
}
.registration .registration__chip-big {
  width: 172px;
  height: 156px;
  bottom: -39px;
  left: -33px;
  background-image: url("");
}
.wheel {
  width: 850px;
  height: 850px;
  position: absolute;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel {
    width: 360px;
    height: 360px;
  }
}
.wheel .wheel__field {
  background-image: url("Disk.f3538c91.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.wheel .wheel__text {
  font-family: Alegreya Sans, sans-serif;
  font-size: 50px;
  font-weight: 600;
  color: var(--textPrimary);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel .wheel__text {
    font-family: OpenSansBold, sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--textPrimary);
  }
}
.wheel .wheel__text .wheel__text__value {
  position: absolute;
  display: flex;
  justify-content: center;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  top: 150px;
  left: 360px;
  height: 544px;
  text-align: center;
  width: 135px;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel .wheel__text .wheel__text__value {
    width: 75px;
    height: 255px;
    left: 142px;
    top: 50px;
  }
}
.wheel-card {
  background:#171430;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
@media (max-width: 700px) {
  .wheel-card {
    background-image: url("Background_mobile.b15d4d81.png");
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
  }
}
@media (max-height: 750px) {
  .wheel-card {
    overflow-y: auto;
  }
}
.wheel-card .wheel-card__flame {
  background-image: url("Background_flame.a43f4928.png");
  background-repeat: no-repeat;
  background-position: 50%;
  position: absolute;
  height: 100%;
  width: 100%;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-card .wheel-card__flame {
    background-size: 640px;
  }
}
.wheel-card .wheel-card__logo {
  text-align: left;
  background-repeat: no-repeat;
  background-position: top;
  position: absolute;
  height: 100%;
  width: 100%;
  margin-top: 52px;
  z-index: 1;
}
@media (max-height: 1023px), (max-width: 1020px) {
  .wheel-card .wheel-card__logo {
    background-position: 0 0;
    margin-left: 21px;
    margin-top: 44px;
  }
}
@media (max-width: 700px) and (max-height: 1023px),
  (max-width: 700px) and (min-height: 1023px) {
  .wheel-card .wheel-card__logo {
    background-size: 254px;
    text-align: center;
    background-position: top;
    margin-left: 0;
    margin-top: 47px;
  }
}
@media (max-height: 700px) {
  .wheel-card .wheel-card__logo {
    background-size: 154px;
    background-position: top;
    margin-left: 0;
    margin-top: 0;
  }
}
.wheel-card .wheel-card__attempts {
  position: absolute;
  top: 67px;
  right: 69px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1020px) {
  .wheel-card .wheel-card__attempts {
    top: 62px;
    right: 39px;
  }
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-card .wheel-card__attempts {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 130px;
    left: 78px;
  }
}
@media (max-height: 700px) and (max-height: 700px),
  (max-width: 700px) and (max-height: 700px) {
  .wheel-card .wheel-card__attempts {
    top: 85px;
  }
}
.wheel-card .wheel-card__attempts .wheel-card__title {
  font-family: OpenSansBold, sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--textPrimaryContrast);
  text-transform: uppercase;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-card .wheel-card__attempts .wheel-card__title {
    font-family: OpenSansBold, sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--textPrimaryContrast);
  }
}
.wheel-card .wheel-card__attempts .wheel-card__number {
  font-family: OpenSansBold, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #847AE7;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  border: 2px solid #847AE7;
  height: 80px;
  background: none;
  border-radius: 50%;
  margin-top: 23px;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-card .wheel-card__attempts .wheel-card__number {
    font-family: OpenSansBold, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--textPrimaryContrast);
    width: 44px;
    height: 44px;
    margin-left: 16px;
    margin-top: 0;
  }
}

.wheel-card .wheel-card__scoreboard {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.wheel-card .wheel-card__scoreboard.wheel-card__scoreboard {
  -webkit-animation-name: cardIdle;
  animation-name: cardIdle;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
.wheel-card .wheel-card__frame {
  background-image: url("Frame.01222080.png");
  background-repeat: no-repeat;
  background-position: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -90px;
  left: 0;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-card .wheel-card__frame {
    background-size: 330px;
    top: -40px;
    left: 0;
  }
}
.wheel-card .wheel-card__frame .wheel-card__lights {
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
.wheel-card .wheel-card__frame .wheel-card__lights.wheel-card__lights_first {
  background-image: url("Lights_Default.c06f6b19.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  -webkit-animation-name: blik-card_1;
  animation-name: blik-card_1;
  margin-top: 75px;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-card .wheel-card__frame .wheel-card__lights.wheel-card__lights_first {
    background-size: 365px;
    margin-top: 35px;
  }
}
.wheel-card .wheel-card__frame .wheel-card__lights.wheel-card__lights_second {
  background-image: url("Lights_Variant.3f90f654.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  -webkit-animation-name: blik-card_2;
  animation-name: blik-card_2;
  margin-top: 75px;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-card .wheel-card__frame .wheel-card__lights.wheel-card__lights_second {
    background-size: 330px;
    margin-top: 35px;
  }
}
.wheel-card .wheel-card__frame .wheel-card__lights.wheel-card__lights__fast {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.wheel-card .wheel-card__things {
  background-image:url("Small_things_desktop.a828a20e.png");
  background-repeat: no-repeat, repeat;
  background-position: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 60px;
  left: 15px;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-card .wheel-card__things {
    background-image: url("Small_things_mobile.57bfdf8a.png");
    background-repeat: no-repeat, repeat;
    background-position: 50%;
    top: 30px;
    left: 0;
  }
}
.wheel-card .wheel-card__dwarven-spawn {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
.wheel-card .wheel-card__dwarven-spawn .wheel-card__dwarf-left {
  background-image: url("phone.webp");
  background-repeat: no-repeat;
  background-position: 0 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  z-index: 1;
}
@media (max-height: 1023px), (max-width: 1020px) {
  .wheel-card .wheel-card__dwarven-spawn .wheel-card__dwarf-left {
    background-size: 242px;
  }
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-card .wheel-card__dwarven-spawn .wheel-card__dwarf-left {
    background-size: 181px;
    bottom: 4vh;

  }
}
.wheel-card .wheel-card__dwarven-spawn .wheel-card__dwarf-right {
  background-image: url("benefits_2.webp");
  background-repeat: no-repeat;
  background-position: 100% 100%;
  width: 100%;
  height: 100%;
  margin-right: -150px;
  position: absolute;
  bottom: 0;
  right: 30px;
}
@media (max-height: 1023px), (max-width: 1020px) {
  .wheel-card .wheel-card__dwarven-spawn .wheel-card__dwarf-right {
    background-size: 487px;
  }
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-card .wheel-card__dwarven-spawn .wheel-card__dwarf-right {
    background-size: 342px;
    right: 60px;
  }
}
.wheel-card .wheel-card__button {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: inherit;
  padding: 0;
  text-align: inherit;
  color: inherit;
  border: 0;
  outline: none;
  background-color: inherit;
  display: flex;
  justify-content: center;
  width: 100%;
  position: absolute;
  background: transparent;
  bottom: 57vh;
  z-index: 1;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-card .wheel-card__button {
    bottom: 54vh;
  }
}
.wheel-card .wheel-card__button .wheel-card__button-text {
  font-family: OpenSansBold, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--textPrimaryContrast);
  text-shadow: 0 5.28686px 9.252px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  position: absolute;
  height: 140px;
  width: 140px;
  border-radius: 50%;
  background: #383360;
  border: 6px solid #847AE7;
  box-shadow: 0 7.55452px 8.63374px rgba(0, 0, 0, 0.25);
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-card .wheel-card__button .wheel-card__button-text {
    font-family: OpenSansRegular, sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: var(--textPrimaryContrast);
    height: 66px;
    width: 66px;
  }
}
.wheel-card .wheel-card__button .wheel-card__button-text:disabled {
  background: #ccc;
}
@-webkit-keyframes cardIdle {
  0% {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
  }
  to {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }
}
@keyframes cardIdle {
  0% {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
  }
  to {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }
}
@-webkit-keyframes blik-card_1 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes blik-card_1 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes blik-card_2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes blik-card_2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.wheel-black {
  width: 479px;
  height: 479px;
  position: relative;
  transition: 4s ease-out;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-black {
    width: 237px;
    height: 237px;
  }
}
.wheel-black .wheel-black__field {
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.wheel-black .wheel-black__text {
  font-family: Alegreya Sans, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-black .wheel-black__text {
    font-size: 10px;
  }
}
.wheel-black .wheel-black__text .wheel-black__text__value {
  position: absolute;
  display: flex;
  justify-content: center;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  top: 40px;
  left: 185.5px;
  height: 395px;
  text-align: center;
  width: 110px;
}
.wheel-black .wheel-black__text .wheel-black__text__value:nth-child(2n-1) {
  color: #0f131a;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-black .wheel-black__text .wheel-black__text__value {
    width: 54px;
    height: 190px;
    left: 92px;
    top: 22px;
  }
}
.wheel-girl {
  background-image: url("");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
@media (max-width: 700px) {
  .wheel-girl {
    background-image: url("");
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
  }
}
@media (max-height: 750px) {
  .wheel-girl {
    overflow-y: auto;
  }
}
.wheel-girl .wheel-girl__logo {
  background-image: url("");
  background-repeat: no-repeat;
  background-position: top;
  position: absolute;
  height: 100%;
  width: 100%;
  margin-top: 52px;
  z-index: 1;
}
@media (max-height: 1023px), (max-width: 1020px) {
  .wheel-girl .wheel-girl__logo {
    background-position: 0 0;
    margin-left: 21px;
    margin-top: 44px;
  }
}
@media (max-width: 700px) and (max-height: 1023px),
  (max-width: 700px) and (min-height: 1023px) {
  .wheel-girl .wheel-girl__logo {
    background-size: 154px;
    background-position: top;
    margin-left: 0;
    margin-top: 47px;
  }
}
@media (max-height: 700px) {
  .wheel-girl .wheel-girl__logo {
    background-size: 154px;
    background-position: top;
    margin-left: 0;
    margin-top: 0;
  }
}
.wheel-girl .wheel-girl__attempts {
  position: absolute;
  top: 67px;
  right: 69px;
  z-index: 1;
}
@media (max-width: 1020px) {
  .wheel-girl .wheel-girl__attempts {
    top: 62px;
    right: 39px;
  }
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-girl .wheel-girl__attempts {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 130px;
    left: 78px;
  }
}
@media (max-height: 700px) and (max-height: 700px),
  (max-width: 700px) and (max-height: 700px) {
  .wheel-girl .wheel-girl__attempts {
    top: 65px;
  }
}
.wheel-girl .wheel-girl__attempts .wheel-girl__attempts_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-girl .wheel-girl__attempts .wheel-girl__attempts_wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.wheel-girl .wheel-girl__attempts .wheel-girl__title {
  font-family: OpenSansBold, sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--textPrimaryContrast);
  text-transform: uppercase;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-girl .wheel-girl__attempts .wheel-girl__title {
    font-family: OpenSansBold, sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--textPrimaryContrast);
  }
}
.wheel-girl .wheel-girl__attempts .wheel-girl__number {
  font-family: OpenSansBold, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--textPrimaryContrast);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background: #ff0a0a;
  border-radius: 50%;
  margin-top: 23px;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-girl .wheel-girl__attempts .wheel-girl__number {
    font-family: OpenSansBold, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--textPrimaryContrast);
    width: 44px;
    height: 44px;
    margin-left: 16px;
    margin-top: 0;
  }
}
.wheel-girl .wheel-girl__scoreboard {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-top: -50px;
}
.wheel-girl .wheel-girl__scoreboard.wheel-girl__scoreboard {
  -webkit-animation-name: girlIdle;
  animation-name: girlIdle;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
.wheel-girl .wheel-girl__frame {
  background-image: url("");
  background-repeat: no-repeat;
  background-position: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -50px;
  left: 0;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-girl .wheel-girl__frame {
    background-size: 336px;
  }
}
.wheel-girl .wheel-girl__frame .wheel-girl__lights {
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
.wheel-girl .wheel-girl__frame .wheel-girl__lights.wheel-girl__lights_first {
  background-image: url("");
  background-repeat: no-repeat;
  background-position: 50%;
  -webkit-animation-name: blik1;
  animation-name: blik1;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-girl .wheel-girl__frame .wheel-girl__lights.wheel-girl__lights_first {
    background-size: 470px;
  }
}
.wheel-girl .wheel-girl__frame .wheel-girl__lights.wheel-girl__lights_second {
  background-image: url("");
  background-repeat: no-repeat;
  background-position: 50%;
  -webkit-animation-name: blik2;
  animation-name: blik2;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-girl .wheel-girl__frame .wheel-girl__lights.wheel-girl__lights_second {
    background-size: 360px;
  }
}
.wheel-girl .wheel-girl__frame .wheel-girl__lights.wheel-girl__lights__fast {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.wheel-girl .wheel-girl__harem {
  position: absolute;
  width: 1400px;
  height: 100%;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
@media (max-width: 1340px) {
  .wheel-girl .wheel-girl__harem {
    width: 1100px;
  }
}
@media (max-width: 1020px) {
  .wheel-girl .wheel-girl__harem {
    width: 100%;
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.wheel-girl .wheel-girl__harem .wheel-girl__girl-left {
  background-image: url("");
  background-repeat: no-repeat;
  background-position: 0 100%;
  width: 100%;
  height: 100%;
}
@media (max-height: 1023px), (max-width: 1020px) {
  .wheel-girl .wheel-girl__harem .wheel-girl__girl-left {
    background-size: 365px;
  }
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-girl .wheel-girl__harem .wheel-girl__girl-left {
    background-size: 220px;
  }
}
@media (min-width: 1340px) {
  .wheel-girl .wheel-girl__harem .wheel-girl__girl-left {
    background-size: 500px;
  }
}
.wheel-girl .wheel-girl__harem .wheel-girl__girl-right {
  background-image: url("");
  background-repeat: no-repeat;
  background-position: 100% 100%;
  width: 100%;
  height: 100%;
}
@media (max-height: 1023px), (max-width: 1020px) {
  .wheel-girl .wheel-girl__harem .wheel-girl__girl-right {
    background-size: 315px;
  }
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-girl .wheel-girl__harem .wheel-girl__girl-right {
    background-size: 190px;
  }
}
@media (min-width: 1340px) {
  .wheel-girl .wheel-girl__harem .wheel-girl__girl-right {
    background-size: 425px;
  }
}
.wheel-girl .wheel-girl__button {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: inherit;
  text-align: inherit;
  color: inherit;
  border: 0;
  outline: none;
  background-color: inherit;
  font-family: OpenSansBold, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--textPrimaryContrast);
  border-radius: 8px;
  background: #ff0a0a;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 360px;
  padding: 20px;
  margin-left: calc(50% - 180px);
  position: absolute;
  bottom: 10vh;
  z-index: 1;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-girl .wheel-girl__button {
    font-family: OpenSansBold, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--textPrimaryContrast);
    margin-top: 10px;
    width: 252px;
    padding: 14px;
    margin-left: calc(50% - 126px);
    bottom: 17vh;
  }
}
.wheel-girl .wheel-girl__button:disabled {
  background: #ccc;
}
.wheel-girl .wheel-girl__button .wheel-girl__button-center {
  display: flex;
  flex-flow: row;
  align-items: center;
}
.wheel-girl
  .wheel-girl__button
  .wheel-girl__button-center
  .wheel-girl__button-image {
  display: flex;
}
.wheel-girl
  .wheel-girl__button
  .wheel-girl__button-center
  .wheel-girl__button-text {
  color: #fff;
  text-transform: uppercase;
  margin-left: 0.4em;
}
@-webkit-keyframes girlIdle {
  0% {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
  }
  to {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }
}
@keyframes girlIdle {
  0% {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
  }
  to {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }
}
.wheel-teen {
  height: 941px;
  width: 941px;
  position: absolute;
  transition: 4s ease-out;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-teen {
    position: absolute;
    width: 470px;
    height: 470px;
  }
}
.wheel-teen .wheel-teen__field {
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(51deg);
  transform: rotate(51deg);
}
.wheel-teen .wheel-teen__text {
  font-family: Alegreya Sans, serif;
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-teen .wheel-teen__text {
    font-size: 10px;
  }
}
.wheel-teen .wheel-teen__text .wheel-teen__text__value {
  position: absolute;
  display: flex;
  justify-content: center;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  top: 271px;
  left: 412px;
  height: 375px;
  text-align: center;
  width: 110px;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-teen .wheel-teen__text .wheel-teen__text__value {
    width: 54px;
    height: 190px;
    left: 205px;
    top: 140px;
  }
}
.wheel-teenager {
  background-image: url("");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
@media (max-height: 750px) {
  .wheel-teenager {
    overflow-y: auto;
  }
}
.wheel-teenager .wheel-teenager__logo {
  background-image: url("");
  background-repeat: no-repeat;
  background-position: top;
  position: absolute;
  height: 100%;
  width: 100%;
  margin-top: 52px;
  z-index: 1;
}
@media (max-height: 1023px), (max-width: 1020px) {
  .wheel-teenager .wheel-teenager__logo {
    background-position: 0 0;
    margin-left: 21px;
    margin-top: 44px;
  }
}
@media (max-width: 700px) and (max-height: 1023px),
  (max-width: 700px) and (min-height: 1023px) {
  .wheel-teenager .wheel-teenager__logo {
    background-size: 154px;
    background-position: top;
    margin-left: 0;
    margin-top: 47px;
  }
}
@media (max-height: 700px) {
  .wheel-teenager .wheel-teenager__logo {
    background-size: 154px;
    background-position: top;
    margin-left: 0;
    margin-top: 0;
  }
}
.wheel-teenager .wheel-teenager__attempts {
  position: absolute;
  top: 67px;
  right: 69px;
  z-index: 1;
}
@media (max-width: 700px) {
  .wheel-teenager .wheel-teenager__attempts {
    top: 62px;
    right: 39px;
  }
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-teenager .wheel-teenager__attempts {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 130px;
    left: 78px;
  }
}
@media (max-height: 700px) and (max-height: 700px),
  (max-width: 700px) and (max-height: 700px) {
  .wheel-teenager .wheel-teenager__attempts {
    top: 65px;
  }
}
.wheel-teenager .wheel-teenager__attempts .wheel-teenager__attempts_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-teenager .wheel-teenager__attempts .wheel-teenager__attempts_wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.wheel-teenager .wheel-teenager__attempts .wheel-teenager__title {
  font-family: OpenSansBold, sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--textPrimaryContrast);
  text-transform: uppercase;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-teenager .wheel-teenager__attempts .wheel-teenager__title {
    font-family: OpenSansBold, sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--textPrimaryContrast);
  }
}
.wheel-teenager .wheel-teenager__attempts .wheel-teenager__number {
  font-family: OpenSansBold, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--textPrimaryContrast);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(180deg, #00e0ff -4.94%, #02db3e 50.01%);
  border: 3px solid hsla(0, 0%, 100%, 0.5);
  border-radius: 50%;
  margin-top: 23px;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-teenager .wheel-teenager__attempts .wheel-teenager__number {
    font-family: OpenSansBold, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--textPrimaryContrast);
    width: 44px;
    height: 44px;
    margin-left: 16px;
    margin-top: 0;
  }
}
.wheel-teenager .wheel-teenager__scoreboard {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-top: -50px;
}
.wheel-teenager .wheel-teenager__scoreboard.wheel-teenager__scoreboard {
  -webkit-animation-name: teenIdle;
  animation-name: teenIdle;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
.wheel-teenager .wheel-teenager__frame {
  background-image: url("");
  background-repeat: no-repeat;
  background-position: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -35px;
  left: 0;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-teenager .wheel-teenager__frame {
    background-size: 336px;
    top: -42px;
  }
}
.wheel-teenager .wheel-teenager__frame .wheel-teenager__lights {
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  margin-top: -7px;
}
.wheel-teenager
  .wheel-teenager__frame
  .wheel-teenager__lights.wheel-teenager__lights_first {
  background-image: url("");
  background-repeat: no-repeat;
  background-position: 50%;
  -webkit-animation-name: blik1;
  animation-name: blik1;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-teenager
    .wheel-teenager__frame
    .wheel-teenager__lights.wheel-teenager__lights_first {
    background-size: 380px;
  }
}
.wheel-teenager
  .wheel-teenager__frame
  .wheel-teenager__lights.wheel-teenager__lights_second {
  background-image: url("");
  background-repeat: no-repeat;
  background-position: 50%;
  -webkit-animation-name: blik2;
  animation-name: blik2;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-teenager
    .wheel-teenager__frame
    .wheel-teenager__lights.wheel-teenager__lights_second {
    background-size: 425px;
  }
}
.wheel-teenager
  .wheel-teenager__frame
  .wheel-teenager__lights.wheel-teenager__lights__fast {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.wheel-teenager .wheel-teenager__team {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
.wheel-teenager .wheel-teenager__team .wheel-teenager__boy-left {
  background-image: url("");
  background-repeat: no-repeat;
  background-position: 0 100%;
  width: 100%;
  height: 100%;
  position: absolute;
}
@media (max-height: 1023px), (max-width: 1020px) {
  .wheel-teenager .wheel-teenager__team .wheel-teenager__boy-left {
    background-size: 218px;
  }
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-teenager .wheel-teenager__team .wheel-teenager__boy-left {
    background-size: 154px;
  }
}
.wheel-teenager .wheel-teenager__team .wheel-teenager__boy-right {
  background-image: url("");
  background-repeat: no-repeat;
  background-position: 100% 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  right: -150px;
  bottom: 0;
}
@media (max-height: 1023px), (max-width: 1020px) {
  .wheel-teenager .wheel-teenager__team .wheel-teenager__boy-right {
    background-size: 545px;
    right: -160px;
    bottom: -50px;
  }
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-teenager .wheel-teenager__team .wheel-teenager__boy-right {
    background-size: 365px;
    right: -100px;
    bottom: 5vh;
  }
}
.wheel-teenager .wheel-teenager__button {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: inherit;
  text-align: inherit;
  color: inherit;
  border: 0;
  outline: none;
  background-color: inherit;
  display: flex;
  justify-content: center;
  position: absolute;
  align-items: center;
  width: 290px;
  padding: 19px 71px;
  margin-left: calc(50% - 145px);
  background: linear-gradient(180deg, #00e0ff -4.94%, #02db3e 50.01%);
  border: 3px solid hsla(0, 0%, 100%, 0.5);
  box-shadow: 0 20px 20px #26208b;
  border-radius: 16px;
  bottom: 10vh;
  z-index: 1;
}
@media (max-height: 700px), (max-width: 1020px) {
  .wheel-teenager .wheel-teenager__button {
    width: 260px;
    padding: 19px 66px;
    margin-left: calc(50% - 130px);
  }
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-teenager .wheel-teenager__button {
    width: 190px;
    padding: 13px 46px;
    margin-left: calc(50% - 95px);
    bottom: 20vh;
  }
}
.wheel-teenager .wheel-teenager__button:disabled {
  background: #ccc;
}
.wheel-teenager .wheel-teenager__button .wheel-teenager__button__title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Alegreya Sans, serif;
  font-style: normal;
  font-weight: 900;
  font-size: 35px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 10px 16px rgba(0, 0, 0, 0.25);
}
@media (max-height: 700px), (max-width: 1020px) {
  .wheel-teenager .wheel-teenager__button .wheel-teenager__button__title {
    font-size: 30px;
  }
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-teenager .wheel-teenager__button .wheel-teenager__button__title {
    font-size: 24px;
  }
}
@-webkit-keyframes teenIdle {
  0% {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
  }
  to {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }
}
@keyframes teenIdle {
  0% {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
  }
  to {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }
}
.item-block {
  background-image: url("");
  background-repeat: no-repeat;
  background-position: 50%;
  width: 282px;
  height: 286px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 15px;
  gap: 15px;
}
@media (max-width: 1020px) {
  .item-block {
    background: none;
    height: 150px;
    grid-gap: 15px;
    gap: 15px;
  }
}
@media (max-height: 700px), (max-width: 700px) {
  .item-block {
    background-image: url("");
    background-repeat: no-repeat;
    background-position: 50%;
    width: 310px;
    height: 150px;
    justify-content: center;
    grid-gap: 14px;
    gap: 14px;
  }
}
.item-block-column {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  white-space: pre;
}
@media (max-height: 700px), (max-width: 1020px) {
  .item-block-column {
    white-space: normal;
  }
}
@media (max-width: 1020px) {
  .item-block-column__logo {
    width: 24px;
  }
}
.item-block-column__title {
  font-family: OpenSansBold, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--textAviator);
}
@media (max-height: 700px), (max-width: 1020px) {
  .item-block-column__title {
    font-family: OpenSansBold, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--textAviator);
    margin-bottom: 10px;
    margin-left: 20px;
  }
}
.info-block {
  top: 0;
}
.info-block,
.info-block_desktop {
  position: absolute;
  width: 100%;
  height: 100%;
}
.info-block_desktop {
  top: 265px;
  padding: 22px;
  display: flex;
  justify-content: space-between;
}
@media (max-height: 700px), (max-width: 1020px) {
  .info-block_desktop {
    display: none;
  }
}
.info-block_tablet {
  display: none;
}
@media (max-width: 1020px) {
  .info-block_tablet {
    background-image: url("");
    background-repeat: no-repeat;
    background-position: bottom;
    position: absolute;
    width: 100%;
    height: 150px;
    bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 14px;
    gap: 14px;
  }
}
@media (max-height: 700px), (max-width: 700px) {
  .info-block_tablet {
    display: none;
  }
}
.info-block_mobile {
  display: none;
}
@media (max-height: 700px), (max-width: 700px) {
  .info-block_mobile {
    position: absolute;
    top: 145px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.partners-logo {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1;
  grid-gap: 22px;
  gap: 22px;
}
.wheel-item-aviator {
  width: 778px;
  height: 100%;
  position: relative;
  transition: 4s ease-out;
}
@media (max-width: 1020px) {
  .wheel-item-aviator {
    width: 640px;
  }
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-item-aviator {
    width: 362px;
  }
}
.wheel-item-aviator .wheel-item-aviator__field {
  background-image: url("");
  background-repeat: no-repeat;
  background-position: 50%;
  width: 100%;
  height: 100%;
}
@media (max-width: 1020px) {
  .wheel-item-aviator .wheel-item-aviator__field {
    background-size: 640px;
  }
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-item-aviator .wheel-item-aviator__field {
    background-size: 362px;
  }
}
@font-face {
  font-family: OpenSansExtraBold;
  src: url("");
}
@font-face {
  font-family: OpenSansBold;
  src: url("OpenSans-Bold.dbb97fd9.ttf");
}
@font-face {
  font-family: OpenSansSemiboldBold;
  src: url("");
}
@font-face {
  font-family: OpenSansRegular;
  src: url("OpenSans-Regular.1b0809d5.ttf");
}
@font-face {
  font-family: OpenSansLight;
  src: url("");
}
@font-face {
  font-family: Montserrat;
  src: url("");
}
.wheel-aviator {
  background-image: url("");
  background-size: cover;
  height: 100vh;
  position: relative;
  overflow: hidden;
  mix-blend-mode: color-burn;
  background-color: #1e1e1e;
}
.wheel-aviator,
.wheel-aviator .wheel-aviator__back-center {
  background-repeat: no-repeat;
  background-position: 50%;
  width: 100%;
}
.wheel-aviator .wheel-aviator__back-center {
  background-image: url("");
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1020px) {
  .wheel-aviator .wheel-aviator__back-center {
    background-size: 1050px;
    top: -110px;
  }
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-aviator .wheel-aviator__back-center {
    background-size: 600px;
    top: -130px;
  }
}
.wheel-aviator .wheel-aviator__scoreboard {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-left: -10px;
  margin-top: -44px;
  width: 100%;
}
.wheel-aviator .wheel-aviator__scoreboard.wheel-aviator__scoreboard {
  -webkit-animation-name: aviatorIdle;
  animation-name: aviatorIdle;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@media (max-width: 1020px) {
  .wheel-aviator .wheel-aviator__scoreboard.wheel-aviator__scoreboard {
    margin-top: -150px;
  }
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-aviator .wheel-aviator__scoreboard.wheel-aviator__scoreboard {
    margin-top: -152px;
  }
}
.wheel-aviator .wheel-aviator__frame {
  background-image: url("");
  background-repeat: no-repeat;
  background-position: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -55px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1020px) {
  .wheel-aviator .wheel-aviator__frame {
    background-size: 587px;
    top: -158px;
    left: 0;
  }
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-aviator .wheel-aviator__frame {
    background-size: 336px;
    top: -158px;
    left: 0;
  }
}
.wheel-aviator .wheel-aviator__frame .wheel-aviator__lights {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
.wheel-aviator
  .wheel-aviator__frame
  .wheel-aviator__lights.wheel-aviator__lights_first {
  background-image: url("");
  background-repeat: no-repeat;
  background-position: 50%;
  mix-blend-mode: color-dodge;
  -webkit-animation-name: blik1;
  animation-name: blik1;
  top: 15px;
  left: -18px;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-aviator
    .wheel-aviator__frame
    .wheel-aviator__lights.wheel-aviator__lights_first {
    background-size: 370px;
    top: 5px;
    left: -10px;
  }
}
.wheel-aviator
  .wheel-aviator__frame
  .wheel-aviator__lights.wheel-aviator__lights_second {
  background-image: url("");
  background-repeat: no-repeat;
  background-position: 50%;
  mix-blend-mode: color-dodge;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-animation-name: blik2;
  animation-name: blik2;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-aviator
    .wheel-aviator__frame
    .wheel-aviator__lights.wheel-aviator__lights_second {
    background-size: 370px;
    top: 0;
    left: 0;
  }
}
.wheel-aviator
  .wheel-aviator__frame
  .wheel-aviator__lights.wheel-aviator__lights__fast {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.wheel-aviator .wheel-aviator__logo {
  background-image: url("");
  background-repeat: no-repeat;
  background-position: 0 0;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 45px;
  left: 64px;
  z-index: 1;
}
@media (max-width: 700px) {
  .wheel-aviator .wheel-aviator__logo {
    background-size: 120px;
    top: 28px;
    left: 38px;
  }
}
@media (max-width: 400px) {
  .wheel-aviator .wheel-aviator__logo {
    background-size: 88px;
    top: 25px;
    left: 21px;
  }
}
.wheel-aviator .wheel-aviator__aviator {
  background-image: url("");
  background-repeat: no-repeat;
  background-position: 100% 0;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 43px;
  right: 73px;
}
@media (max-width: 700px) {
  .wheel-aviator .wheel-aviator__aviator {
    background-size: 130px;
    top: 25px;
    right: 40px;
  }
}
@media (max-width: 400px) {
  .wheel-aviator .wheel-aviator__aviator {
    background-size: 97px;
    top: 24px;
    right: 23px;
  }
}
.wheel-aviator .wheel-aviator__cloud {
  background-image: url("");
  bottom: 0;
}
.wheel-aviator .wheel-aviator__cloud,
.wheel-aviator .wheel-aviator__plane {
  background-repeat: no-repeat;
  background-position: bottom;
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}
.wheel-aviator .wheel-aviator__plane {
  background-image: url("");
  bottom: 175px;
  left: -425px;
}
@media (max-width: 1020px) {
  .wheel-aviator .wheel-aviator__plane {
    background-position: 50%;
    background-size: 140px;
    top: 100px;
    left: -310px;
  }
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-aviator .wheel-aviator__plane {
    background-position: bottom;
    background-size: 120px;
    top: -80px;
    left: 0;
  }
}
.wheel-aviator .wheel-aviator__ribbon {
  background-image: url("");
  background-repeat: no-repeat;
  background-position: bottom;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -55px;
  overflow: hidden;
}
@media (max-width: 1020px) {
  .wheel-aviator .wheel-aviator__ribbon {
    background-position: 50%;
    background-size: 600px;
    top: 160px;
  }
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-aviator .wheel-aviator__ribbon {
    background-position: 50%;
    background-size: 385px;
    top: 30px;
    left: -15px;
  }
}
.wheel-aviator .wheel-aviator__text {
  position: absolute;
  width: 675px;
  bottom: 70px;
  left: calc(50% - 337px);
}
@media (max-width: 1020px) {
  .wheel-aviator .wheel-aviator__text {
    width: 560px;
    top: calc(50% + 90px);
    left: calc(50% - 280px);
  }
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-aviator .wheel-aviator__text {
    width: 340px;
    left: calc(50% - 185px);
    top: calc(50% - 15px);
  }
}
.wheel-aviator .wheel-aviator__block_mobile {
  display: none;
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-aviator .wheel-aviator__block_mobile {
    position: absolute;
    top: 145px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.wheel-aviator .wheel-aviator__button-container {
  position: absolute;
  top: -40px;
  left: -7px;
  width: 100%;
  height: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
@media (max-height: 700px), (max-width: 1020px) {
  .wheel-aviator .wheel-aviator__button-container {
    top: -152px;
    left: -2px;
  }
}
.wheel-aviator .wheel-aviator__button-container .wheel-aviator__button {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: inherit;
  padding: 0;
  text-align: inherit;
  color: inherit;
  border: 0;
  outline: none;
  background-color: inherit;
  background-image: url("");
  background-repeat: no-repeat;
  background-position: 50%;
  width: 310px;
  height: 110px;
  margin-left: -2px;
  margin-top: 7px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1020px) {
  .wheel-aviator .wheel-aviator__button-container .wheel-aviator__button {
    background-size: 260px;
    margin-left: -6px;
    margin-top: 18px;
  }
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-aviator .wheel-aviator__button-container .wheel-aviator__button {
    background-size: 147px;
    margin-left: -3px;
    margin-top: 5px;
  }
}
.wheel-aviator .wheel-aviator__button-container .wheel-aviator__button:hover {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
}
.wheel-aviator .wheel-aviator__button-container .wheel-aviator__button_text {
  font-family: Montserrat, sans-serif;
  font-size: 31px;
  font-weight: 800;
  color: var(--textPrimaryContrast);
  text-transform: uppercase;
  padding: 20px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  position: absolute;
  z-index: 2;
}
@media (max-width: 1020px) {
  .wheel-aviator .wheel-aviator__button-container .wheel-aviator__button_text {
    font-family: Montserrat, sans-serif;
    font-size: 27px;
    font-weight: 800;
    color: var(--textPrimaryContrast);
  }
}
@media (max-height: 700px), (max-width: 700px) {
  .wheel-aviator .wheel-aviator__button-container .wheel-aviator__button_text {
    font-family: Montserrat, sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--textPrimaryContrast);
  }
}
@-webkit-keyframes aviatorIdle {
  0% {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
  }
  to {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }
}
@keyframes aviatorIdle {
  0% {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
  }
  to {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }
}
@-webkit-keyframes blik1 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes blik1 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes blik2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes blik2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  height: -webkit-fill-available;
}
body,
html {
  width: 100%;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::-webkit-scrollbar {
  display: none;
}
code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}
#root {
  width: 100%;
}
button {
  border: none;
  outline: none;
}
body {
  --background: #f3f3f6;
  --backgroundSecondary: #fff;
  --backgroundAlt: #e77990;
  --backgroundAltActive: #fc4665;
  --borderFrame: #ecedef;
  --error: #f31f1f;
  --imagedCard: #fff;
  --primary: #3959d9;
  --primaryLight: #c4cdf4;
  --secondary: #fc4665;
  --secondaryLight: #f4bde4;
  --secondaryOpacity10: rgba(252, 70, 101, 0.06274509803921569);
  --secondaryOpacity50: rgba(252, 70, 101, 0.3137254901960784);
  --success: #2eba4d;
  --successOpacity10: rgba(46, 186, 77, 0.06274509803921569);
  --successOpacity50: rgba(46, 186, 77, 0.3137254901960784);
  --textPrimary: #3f4250;
  --textPrimaryContrast: #fff;
  --textPrimaryOpacity30: rgba(63, 66, 80, 0.18823529411764706);
  --textSecondary: #9fa0a8;
  --textSecondaryOpacity50: rgba(159, 160, 168, 0.3137254901960784);
  --warn: #fdb43c;
  --warnOpacity10: rgba(253, 180, 60, 0.06274509803921569);
  --warnOpacity20: #fff4e2;
  --warnOpacity50: rgba(253, 180, 60, 0.3137254901960784);
  --textAviator: #5abef5;
  --textPopupAviator: #1d2c40;
  --textBonusAviator: #ff0a0a;
  --buttonFontColor: var(--textPrimaryContrast);
  --buttonFontColorActive: var(--textPrimaryContrast);
  --buttonBackgroundColor: var(--primaryLight);
  --buttonBackgroundColorActive: var(--primary);
  --buttonBackgroundAlt: var(--backgroundAlt);
  --buttonBackgroundActive: var(--backgroundAltActive);
  --inputColorBackground: var(--backgroundSecondary);
  overflow: hidden;
  position: fixed;
}
#root {
  overflow-y: auto;
}
/*# sourceMappingURL=main.f49ae72c.chunk.css.map */
