html {
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100%;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

input::-ms-clear {
  display: none;
}

a,
:visited {
  color: inherit;
  text-decoration: none;
  outline: 0;
  outline: none;
}

:hover,
:active,
:focus {
  outline: 0;
  outline: none;
}

img {
  border: none;
}

button,
input {
  border: 0;
}

button,
input[type="submit"],
input[type="button"] {
  cursor: pointer;
}

button:disabled,
input[type="submit"]:disabled,
input[type="button"]:disabled {
  cursor: default;
}

.class {
  font-size: 120px;
  font-weight: normal;
  background: rgba(255, 0, 0, 0.5);
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

main {
  display: block;
}

.selectric {
  position: relative;
  border-radius: 6px;
  background-color: #fff;
  font-family: SourceSansPro, sans-serif;
  text-align: left;
}

.selectric-wrapper {
  position: relative;
  cursor: pointer;
  text-align: left;
}

.selectric-hide-select {
  position: relative;
  overflow: hidden;
}

.selectric-hide-select select {
  position: absolute;
  left: -100%;
}

.selectric-hide-select.selectric-is-native {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.selectric-hide-select.selectric-is-native select {
  left: 0;
  top: 0;
  z-index: 4;
  opacity: 0;
  height: 100%;
  width: 100%;
}

.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ffb69f;
  z-index: -1;
  overflow: hidden;
  border-radius: 0 0 3px 3px;
  margin-top: -2px;
}

.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
  position: relative;
}

.selectric-items .selectric-scroll::webkit-scrollbar {
  display: none;
}

.selectric-items ul,
.selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  min-height: 20px;
}

.selectric-items li {
  display: block;
  padding: 5px 10px;
  color: #000;
  cursor: pointer;
  font-family: SourceSansPro, sans-serif;
  text-align: left;
}

.selectric-items li:hover {
  background: #c4c4c4;
  color: #fff;
}

.selectric-items li.highlighted,
.selectric-items li.selected {
  background: #c4c4c4;
  color: #000;
}

.selectric .label {
  display: block;
  height: 38px;
  margin: 0 23px 0 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 15px;
  line-height: 38px;
  color: #999;
}

.selectric .button {
  background: 0 0;
  border-radius: 0;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 28px;
  height: 32px;
  color: #99acbf;
  text-align: center;
  font: 0/0 a;
}

.selectric .button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 5px;
  height: 5px;
  margin-top: -2px;
  border-left: 1px solid gray;
  border-bottom: 1px solid gray;
  transform: rotate(-45deg);
}

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: 0 !important;
  border: none !important;
  background: 0 0 !important;
}

.selectric-open {
  z-index: 9999;
}

.selectric-open .selectric-items {
  z-index: 1;
  display: block;
}

.selectric-open .selectric {
  border-radius: 6px 6px 0 0;
}

.selectric-open .selectric .button::after {
  transform: rotate(135deg);
}

.selectric-wrapper.country .selectric-items {
  display: block;
  width: 100%;
  height: 124px;
}

.popup {
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 21, 33, 0.7);
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  font-family: "Open Sans", sans-serif;
  pointer-events: none;
  transition: opacity 0.3s;
  font-weight: normal;
}

.popup-reg {
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 700px) {
  .popup-reg {
    background: #20253a;
    align-items: flex-start;
    padding: 0 10px;
  }
}

@media screen and (max-height: 700px) and (orientation: landscape) {
  .popup-reg {
    align-items: flex-start;
    padding: 24px 0;
  }
}

.popup-reg-holder {
  background: #20253a;
  border-radius: 12px;
  position: relative;
  padding: 40px 80px;
}

@media screen and (max-width: 700px) {
  .popup-reg-holder {
    padding: 40px 0 45px;
  }
}

@media screen and (orientation: landscape) and (max-width: 700px) and (max-height: 600px) {
  .popup-reg-holder {
    padding: 0 0 24px;
  }
}

.popup__header {
  text-align: center;
}

.popup__title {
  text-align: center;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  font-family: "Open Sans ExtraBold", sans-serif;
  margin-bottom: 16px;
}

.popup__title + .popup__title {
  margin-top: -16px;
}

.popup__hint {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 18px;
  color: #7681af;
}

.popup__subtitle {
  font-family: "Open Sans ExtraBold", sans-serif;
  color: #aeb9e4;
  font-size: 18px;
  line-height: 32px;
}

.popup-hint {
  font-size: 14px;
  margin: 20px auto 15px;
  text-align: center;
  font-family: "Open Sans", sans-serif;
}

.popup__step {
  font-size: 14px;
  margin: 10px auto 15px;
  text-align: center;
  font-family: "Open Sans", sans-serif;
}

.popup__step--second {
  display: none;
}

.popup .progress {
  display: block;
}

.default-link {
  text-decoration: underline;
  color: #fff;
  font-family: "Open Sans", sans-serif;
}

.signup {
  max-width: 290px;
  font-size: 14px;
  margin: 0 auto;
  line-height: 1.2;
}

.signup .form-select {
  padding: 0;
}

.signup .selectric .label {
  display: block;
  height: auto;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  line-height: 1.7;
  color: #7681af;
}

.signup .selectric .button::after {
  width: 16px;
  height: 13px;
  background-position: -24px -28px;
  background-repeat: no-repeat;
  border: none;
  transform: rotate(0) translateY(-50%);
  transition: transform 0.3s;
  transform-origin: 50% 0%;
}

.signup .selectric-open .selectric-items {
  max-height: 154px;
}

.signup-terms {
  text-align: left;
}

.signup .password-rules {
  text-align: left;
}

.signup .password-rules__item {
  color: #7681af;
  font-size: 12px;
  margin: 8px 0 8px 5px;
}

.signup .password-rules__item.is-active {
  color: #10ba67;
}

.signup-logo {
  max-width: 140px;
}

.selectric-items .selectric-scroll::-webkit-scrollbar {
  display: none;
}

.selectric-open .selectric .button::after {
  transform: rotate(180deg) translateY(-50%);
}

.selectric-items {
  background: #171b29;
  border: none;
}

.selectric-items li {
  color: #7681af;
}

.selectric-items li.highlighted,
.selectric-items .selectric-items li.selected {
  background: #171b29;
  color: #7681af;
}

.form-input,
.selectric {
  padding: 10px 8px;
  border-radius: 8px;
  background-color: #171b29;
  color: #fff;
  box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.25), inset 0px -1px 0px #313955;
  box-sizing: border-box;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  line-height: 1.7;
  height: 44px;
}

.form-input::-webkit-input-placeholder,
.selectric::-webkit-input-placeholder {
  color: #7681af;
}

.form-input::-moz-placeholder,
.selectric::-moz-placeholder {
  color: #7681af;
}

.form-input:-ms-input-placeholder,
.selectric:-ms-input-placeholder {
  color: #7681af;
}

.form-input::-ms-input-placeholder,
.selectric::-ms-input-placeholder {
  color: #7681af;
}

.form-input::placeholder,
.selectric::placeholder {
  color: #7681af;
}

.form {
  position: static;
  transform: translateX(0);
  margin-top: 0;
}

.form-row {
  width: 100%;
  max-width: 290px;
  margin: 0 auto;
}

.form-row + .form-row {
  margin-top: 10px;
}

.form-error {
  text-align: center;
  padding: 0;
  margin-top: 6px;
  color: #d98282;
  font-size: 12px;
  width: 100%;
}

.form-button {
  background: #e0440f;
  padding: 16px 48px;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 2em;
  font-family: "Open Sans Bold", sans-serif;
  display: inline-block;
  cursor: pointer;
  color: #fff;
}

.form-button--disabled {
  filter: brightness(0.5);
  cursor: default;
  pointer-events: none;
}

.form-button--back {
  background: transparent;
  position: absolute;
  bottom: 25px;
  color: #d9572b;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  width: 100%;
  outline: none;
  box-shadow: none;
  height: auto;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-block;
}

.form-button__holder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 16px 0;
}

.form-input {
  position: relative;
  width: 100%;
}

.form-input[type="password"] + .form-input__icon-holder {
  background-position: -71px -22px;
}

.form-input__group {
  position: relative;
}

.form-input__group::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.2s;
}

.form-input__icon {
  position: absolute;
  color: #384f66;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
  font-size: 12px;
}

.form-input__icon-holder {
  position: absolute;
  cursor: pointer;
  background-position: -46px -22px;
  width: 24px;
  height: 21px;
  bottom: 12px;
  right: 8px;
  z-index: 10;
}

.form-group.has-error .form-input,
.form-group.has-error .selectric,
.form-group.has-error .selectric .label {
  background-color: #ffaeae;
  color: #ff1e00;
  border-color: #d94141;
}

.form-group.has-error .form-input:focus,
.form-group.has-error .selectric:focus,
.form-group.has-error .selectric .label:focus {
  border: 2px solid #d94141;
  box-shadow: 0 0 10px #fff;
  background-color: #fff;
  color: #384f66;
}

.form-group.has-error .form-input__group::after,
.form-group.has-error .selectric__group::after,
.form-group.has-error .selectric .label__group::after {
  background-position: -8px -9px;
  opacity: 1;
}

.form-group.has-success .form-input {
  color: #fff;
}

.form-group.has-success .form-input__group::after {
  background-position: -27px -10px;
  opacity: 1;
}

.form-group.has-error .form-input__icon-holder,
.form-group.has-success .form-input__icon-holder,
.form-group.has-error .form-input__icon,
.form-group.has-success .form-input__icon {
  right: 28px;
}

.form-radio,
.form-checkbox {
  display: inline-block;
  padding: 0 0 0 20px;
  position: relative;
}

.form-radio__input,
.form-checkbox__input {
  position: fixed;
  left: -100em;
  opacity: 0;
  visibility: hidden;
}

.form-radio__input:checked + .form-radio__icon,
.form-checkbox__input:checked + .form-radio__icon {
  border: none;
  background: #10ba67;
}

.form-radio__input:checked + .form-radio__icon::after,
.form-checkbox__input:checked + .form-radio__icon::after {
  content: "";
}

.form-radio__label,
.form-checkbox__label {
  display: inline-block;
  margin-left: 6px;
  color: #fff;
  font-family: "Open Sans", sans-serif;
}

.form-radio__icon,
.form-checkbox__icon {
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #7681af;
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
  padding: 3px 0 0 3px;
}

.form-radio__icon::after,
.form-checkbox__icon::after {
  position: absolute;
  width: 20px;
  top: 0;
  right: 0px;
  height: 16px;
  background-position: -73px -3px;
}

.form-checkbox__input {
  position: fixed;
  left: -100em;
  opacity: 0;
  visibility: hidden;
}

.form-checkbox__input:checked + .form-checkbox__icon {
  border: none;
  background: #10ba67;
}

.form-checkbox__input:checked + .form-checkbox__icon::after {
  content: "";
}

.form-checkbox__label {
  display: inline-block;
  text-align: left;
  margin-left: 6px;
}

.form-checkbox__icon {
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #7681af;
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
  padding: 3px 0 0 3px;
}

.form-checkbox__icon::after {
  position: absolute;
  width: 20px;
  top: 0;
  right: 0px;
  height: 16px;
  background-position: -73px -3px;
}

.form-radio-toggle {
  display: flex;
  justify-content: space-around;
  padding: 4px;
  margin-top: 26px;
  border-radius: 8px;
  background-color: #171b29;
  color: #fff;
  box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.25), inset 0px -1px 0px #313955;
  box-sizing: border-box;
  height: 44px;
}

.form-radio-toggle .form-radio {
  width: 50%;
  text-align: center;
  padding: 0;
  height: 100%;
  line-height: 36px;
}

.form-radio-toggle .form-radio__icon {
  display: none;
}

.form-radio-toggle .form-radio__label {
  color: #7681af;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.form-radio-toggle .form-radio .form-radio__input:checked ~ .form-radio__label {
  border-radius: 7px;
  background: #20253a;
  margin: 0;
  width: 100%;
  height: 100%;
  color: #fff;
}

.form-radio-toggle .form-radio-group__items {
  width: 100%;
}

.signup-phone__row .form-select {
  width: 85px;
  flex: 1 0 auto;
  margin-right: 5px;
}

.signup-limits .form-select {
  width: 52%;
}

.signup-limits .form-group {
  width: 46%;
}

.signup-birthday__row .form-select:nth-child(2),
.signup-birthday__row .form-select:nth-child(4) {
  width: 70px;
}

.signup-birthday__row .form-select:nth-child(3) {
  min-width: auto;
  flex-grow: 1;
  margin: 0 3px 0;
}

.popup__cross {
  position: absolute;
  background-position: -6px -8px;
  width: 11px;
  height: 11px;
  right: 24px;
  top: 24px;
  cursor: pointer;
}

div[name="gamblingLimits"] .form-input__icon {
  background: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.footer {
  background: #171b29;
  color: #7681af;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
}

.footer-container {
  padding: 48px 16px;
}

@media screen and (max-width: 768px) {
  .footer-container {
    padding: 24px 16px;
  }
}

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

.footer-providers {
  padding: 24px;
  background: #20253a;
  border-radius: 24px;
  margin-bottom: 38px;
}

@media screen and (max-width: 320px) {
  .footer-providers {
    padding: 16px 0;
  }
}

.footer-row {
  display: flex;
  justify-content: center;
  gap: 24px 30px;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .footer-row {
    gap: 8px 0;
  }
}

@media screen and (max-width: 320px) {
  .footer-row {
    gap: 8px 10px;
  }
}

.footer__item {
  align-self: center;
  padding: 0 10px;
}

@media screen and (max-width: 320px) {
  .footer__item {
    padding: 0;
  }

  .footer__item:nth-child(1) {
    width: 26px;
  }

  .footer__item:nth-child(2) {
    width: 86px;
  }

  .footer__item:nth-child(3) {
    width: 80px;
  }

  .footer__item:nth-child(4) {
    width: 70px;
  }

  .footer__item:nth-child(5) {
    width: 80px;
  }

  .footer__item:nth-child(6) {
    width: 57px;
  }

  .footer__item:nth-child(7) {
    width: 73px;
  }

  .footer__item:nth-child(8) {
    width: 61px;
  }

  .footer__item:nth-child(9) {
    width: 59px;
  }

  .footer__item:nth-child(10) {
    width: 97px;
  }

  .footer__item:nth-child(11) {
    width: 73px;
  }
}

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

@font-face {
  font-family: "Open Sans";
  src: url("../common/_default/fonts/OpenSans/Regular/opensans-regular.woff2")
      format("woff2"),
    url("../common/_default/fonts/OpenSans/Regular/opensans-regular.woff")
      format("woff");
}

@font-face {
  font-family: "Open Sans Bold";
  src: url("../common/_default/fonts/OpenSans/Bold/OpenSans-Bold.woff2")
      format("woff2"),
    url("../common/_default/fonts/OpenSans/Bold/OpenSans-Bold.woff")
      format("woff");
}

@font-face {
  font-family: "Open Sans ExtraBold";
  src: url("../common/_default/fonts/OpenSans/ExtraBold/OpenSans-ExtraBold.woff2")
      format("woff2"),
    url("../common/_default/fonts/OpenSans/ExtraBold/OpenSans-ExtraBold.woff")
      format("woff");
}

.selectric .button::after,
.switch-real-inputs:checked + .switch-fake-checkbox::before,
.info,
.form-input__icon,
.label-wrapper::before,
.popup__cross,
.form-radio__icon::after,
.form-checkbox__icon::after,
.form-input__group::after,
.form-input__icon-holder {
  background-image: url("../common/_default/img/mb/icons/mb-signup-sprite.png");
}

body {
  font-family: SourceSansPro, sans-serif;
  font-size: 14px;
  color: #fff;
  background: #fff;
  overflow-x: hidden;
  position: relative;
}

body.modal {
  position: fixed;
  height: 100%;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

body.modal .popup {
  opacity: 1;
  pointer-events: auto;
}

body.modal .popup-reg-holder {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  opacity: 1;
}

body .popup-reg-holder {
  -webkit-transform: translateY(-30%);
  -ms-transform: translateY(-30%);
  transform: translateY(-30%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(35%, rgba(0, 0, 0, 0)),
    to(rgba(0, 0, 0, 0.5))
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0.5) 100%
  );
  display: none;
  pointer-events: none;
  z-index: 10;
}

.header {
  width: 100%;
  position: relative;
  z-index: 10;
}

.header-wrapper {
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  /* max-width: 630px; */
  max-width: 230px;
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 60px;
}

.header__logo {
  max-width: 260px;
  padding-right: 100px;
}

/* custom  */
.header__logo img {
  width: 100px;
}

.divider {
  /* position: absolute; */
  margin: 0 20px 0 35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.hero-logo {
  padding-left: 110px;
}

.m-wrapper {
  background: center / cover no-repeat
    url("../web/mb_wo113_class_creg/img/bg.jpg");
  position: relative;
  overflow: hidden;
}

.hero,
.slot {
  position: absolute;
}

.hero {
  width: 946px;
  height: 1131px;
  background: center / contain no-repeat
    url("../web/mb_wo113_class_creg/img/hero.png");
  bottom: -225px;
  left: calc(50vw - 985px);
  z-index: 0;
}

.slot {
  width: 557px;
  height: 846px;
  background: center / contain no-repeat
    url("../web/mb_wo113_class_creg/img/slot.png");
  bottom: -125px;
  right: calc(50vw - 780px);
}

.slot::after {
  content: "";
  position: absolute;
  width: 335px;
  height: 215px;
  top: 385px;
  left: 140px;
  background: center / contain no-repeat
    url("../web/mb_wo113_class_creg/img/slot_anim.gif");
}

.main {
  position: relative;
}

.main-wrapper {
  max-width: 1400px;
  width: 100%;
  margin: 160px auto 280px;
}

.main-block {
  text-align: center;
}

.main-text-block {
  position: relative;
  padding: 28px;
  z-index: 0;
  display: inline-block;
  min-width: 570px;
  cursor: pointer;
}

.main-text-block::before,
.main-text-block::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) skew(-20deg);
  -ms-transform: translate(-50%, -50%) skew(-20deg);
  transform: translate(-50%, -50%) skew(-20deg);
  border-radius: 16px;
  background: radial-gradient(77.5% 77.5% at 50% 50%, #9a1068 0%, #560137 100%);
  border: 4px solid #ef68aa;
  -webkit-box-shadow: 0px 0px 1px 0px #ff0bc9 inset;
  box-shadow: 0px 0px 1px 0px #ff0bc9 inset;
  -webkit-filter: blur(0.5px) drop-shadow(0px 0px 6px #d357ff);
  filter: blur(0.5px) drop-shadow(0px 0px 6px #d357ff);
  z-index: -1;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.main-text-block::after {
  background: radial-gradient(77.5% 77.5% at 50% 50%, #d11b8f 0%, #bd0078 100%);
  opacity: 0;
}

.main-text-block:hover::before {
  opacity: 0;
}

.main-text-block:hover::after {
  opacity: 1;
}

.main-text {
  color: #fff;
  text-transform: uppercase;
  font-family: "BakbakOne", sans-serif;
  line-height: 1;
  text-shadow: 0 0.1em rgba(69, 60, 81, 0.8);
}

.main-text--l {
  font-size: 36px;
}

.main-text--xl {
  font-size: 64px;
  margin: 16px 0;
}

.main-text--m {
  font-size: 24px;
  text-transform: lowercase;
}

.main-mob {
  display: none;
  background: center / contain no-repeat
    url("../web/mb_wo113_class_creg/img/pers_mob.png");
  position: absolute;
  width: 370px;
  height: 285px;
  right: calc(50vw - 185px);
  bottom: -60px;
}

.btn,
.btn-popup {
  color: #fff;
  border-radius: 24px;
  background: radial-gradient(
    70.71% 70.71% at 50% 50%,
    #0683a3 0%,
    #009cc3 82.29%
  );
  -webkit-box-shadow: inset -2px -2px 2px 0px rgba(0, 0, 0, 0.12),
    inset -4px -5px 5px -2px rgba(0, 0, 0, 0.17),
    0px 7px 15px -5px rgba(0, 0, 0, 0.24),
    inset 1.5px 1.5px 4px 1px rgba(255, 255, 255, 0.45),
    0px 12px 5px -8px rgba(0, 23, 36, 0.2);
  box-shadow: inset -2px -2px 2px 0px rgba(0, 0, 0, 0.12),
    inset -4px -5px 5px -2px rgba(0, 0, 0, 0.17),
    0px 7px 15px -5px rgba(0, 0, 0, 0.24),
    inset 1.5px 1.5px 4px 1px rgba(255, 255, 255, 0.45),
    0px 12px 5px -8px rgba(0, 23, 36, 0.2);
  padding: 24px;
  min-width: 415px;
  font-family: "BakbakOne", sans-serif;
  font-size: 48px;
  text-transform: uppercase;
  display: block;
  margin: 0 auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  text-align: center;
}

.btn-holder,
.btn-popup-holder {
  margin: 40px 0 0;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 20;
}

.btn:hover,
.btn-popup:hover {
  background: radial-gradient(
    70.71% 70.71% at 50% 50%,
    #5fd9f7 0%,
    #63d8f6 82.29%
  );
}

.btn--sm,
.btn-popup--sm {
  min-width: 136px;
  height: 56px;
  line-height: 56px;
  font-size: 20px;
}

.btn--signin,
.btn-popup--signin {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#e4db00),
    to(#b28100)
  );
  background: linear-gradient(to bottom, #e4db00 0%, #b28100 100%);
}

.btn-hint {
  font-family: "BakbakOne", sans-serif;
  font-size: 16px;
  height: 44px;
  line-height: 40px;
  border-radius: 12px 12px 0 0;
  background: rgba(54, 71, 87, 0.95);
  border: 2px solid #efc646;
  max-width: 300px;
  padding: 0 10px;
  margin-bottom: -3px;
  position: relative;
  z-index: -2;
}

.btn-popup {
  height: 60px;
  line-height: 60px;
  font-size: 24px;
}

.btn-popup.ui-button-disabled::before {
  opacity: 0.6;
}

.btn-popup--signin {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#0089d0),
    to(#00679d)
  );
  background: linear-gradient(to bottom, #0089d0 0%, #00679d 100%);
  margin-top: 20px;
}

.btn-popup--signin::before {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#00679c),
    to(#0089d0)
  );
  background: linear-gradient(to bottom, #00679c 0%, #0089d0 100%);
}

.reg-next {
  margin-top: 40px;
}

@media screen and (max-height: 600px) {
  .form-wrapper {
    top: 20px;
    padding: 30px;
  }

  .form-wrapper::after {
    display: none;
  }
}

@media screen and (max-width: 1366px) {
  .main-wrapper {
    max-width: 980px;
    margin: 110px auto 220px;
  }

  .main-text--l {
    font-size: 32px;
  }

  .main-text--m {
    font-size: 20px;
  }

  .main-text--xl {
    font-size: 60px;
  }

  .main-text-block {
    min-width: 510px;
  }

  .btn {
    font-size: 32px;
    min-width: 380px;
  }

  .hero {
    width: 780px;
    height: 930px;
    left: calc(50vw - 795px);
  }

  .slot {
    width: 410px;
    height: 620px;
    bottom: -65px;
    right: calc(50vw - 600px);
  }

  .slot::after {
    width: 250px;
    height: 160px;
    top: 283px;
    left: 98px;
  }
}

@media screen and (max-width: 1024px) {
  .main-wrapper {
    margin: 32px auto 220px;
  }

  .hero {
    width: 500px;
    height: 600px;
    left: calc(50vw - 515px);
    bottom: -150px;
  }

  .slot {
    width: 260px;
    height: 395px;
    bottom: -40px;
    right: calc(50vw - 375px);
  }

  .slot::after {
    width: 160px;
    height: 103px;
    top: 178px;
    left: 63px;
  }

  .btn {
    font-size: 26px;
    min-width: 340px;
  }
}

@media screen and (max-width: 640px) {
  .header-wrapper {
    max-width: 290px;
    /* padding-left: 30px; */
    margin-bottom: 230px;
  }

  .hero-logo {
    width: 80px;
    padding: 0;
  }

  .header__logo {
    /* width: 118px; */
    padding: 0;
  }

  .divider {
    height: 32px;
  }

  .main-text--xl {
    font-size: 32px;
    margin: 4px 0;
  }

  .main-text--l {
    font-size: 20px;
  }

  .main-text--m {
    font-size: 12px;
  }

  .main-text-block {
    min-width: 265px;
    max-width: 80%;
    padding: 8px 16px;
  }

  .main-wrapper {
    margin-bottom: 74px;
  }

  .m-wrapper {
    background: -75px -45px / 1130px 635px no-repeat url("../web/mb_wo113_class_creg/img/bg_mob.jpg");
  }

  .hero {
    background: center / contain no-repeat
      url("../web/mb_wo113_class_creg/img/hero_mob.png");
    width: 310px;
    height: 417px;
    left: calc(50vw - 160px);
    bottom: auto;
    top: 65px;
  }

  .slot {
    width: 300px;
    height: 456px;
    bottom: auto;
    top: 155px;
    right: calc(50vw - 130px);
    background: center / contain no-repeat
      url("../web/mb_wo113_class_creg/img/slot_mob.png");
  }

  .slot::after {
    display: none;
  }

  .btn {
    font-size: 24px;
    min-width: 290px;
    padding: 16px;
  }

  .btn-holder {
    margin-top: 28px;
  }
  .header__logo img {
    width: 60px;
  }
}

@media all and (orientation: landscape) and (min-aspect-ratio: 13/9) and (max-width: 896px) {
  .header-wrapper {
    max-width: 290px;
    padding-left: 30px;
    margin-bottom: 32px;
  }

  .hero-logo {
    width: 80px;
    padding: 0;
  }

  .header__logo {
    width: 118px;
    padding: 0;
  }

  .divider {
    height: 32px;
  }

  .main-text--xl {
    font-size: 32px;
    margin: 4px 0;
  }

  .main-text--l {
    font-size: 20px;
  }

  .main-text--m {
    font-size: 12px;
  }

  .main-text-block {
    min-width: 265px;
    max-width: 80%;
    padding: 8px 16px;
  }

  .main-wrapper {
    margin-bottom: 74px;
  }

  .m-wrapper {
    background: -75px -45px / 1130px 635px no-repeat url("../web/mb_wo113_class_creg/img/bg_mob.jpg");
  }

  .hero {
    width: 320px;
    height: 380px;
    left: -75px;
    bottom: auto;
    top: 5px;
    background: center / contain no-repeat
      url("../web/mb_wo113_class_creg/img/hero.png");
  }

  .slot {
    width: 300px;
    height: 456px;
    bottom: auto;
    top: 15px;
    right: -65px;
    background: center / contain no-repeat
      url("../web/mb_wo113_class_creg/img/slot_mob.png");
  }

  .slot::after {
    display: none;
  }

  .btn {
    font-size: 24px;
    min-width: 290px;
    padding: 16px;
  }

  .btn-holder {
    margin-top: 28px;
  }
}
