* {
  -webkit-animation: fadein 0.2s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 0.2s; /* Firefox < 16 */
  -ms-animation: fadein 0.2s; /* Internet Explorer */
  -o-animation: fadein 0.2s; /* Opera < 12.1 */
  animation: fadein 0.2s;
}

@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}


button.is-loading::after,
.button.is-loading::after {
  -webkit-animation: spinAround 500ms infinite linear;
  animation: spinAround 500ms infinite linear;
  border: 2px solid #FE3F13;
  border-radius: 290486px;
  border-right-color: transparent;
  border-top-color: transparent;
  content: "";
  display: block;
  height: 1em;
  position: relative;
  width: 1em;
}

@-webkit-keyframes spinAround {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes spinAround {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.list-enter-active, .list-leave-active {
  transition: all 0.3s;
}

.list-enter {
  opacity: 0;
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
}

.list-leave-active {
  position: absolute;
  display: none !important;
}

@media screen and (max-width: 768px) {
  .list-enter {
    opacity: 0;
    -webkit-transform: translateY(200px);
    transform: translateY(200px);
  }
}
/*! minireset.css v0.0.3 | MIT License | github.com/jgthms/minireset.css */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

img,
audio,
video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

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

td,
th {
  padding: 0;
  text-align: left;
}

html {
  background-color: #000;
  font-size: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  min-width: 300px;
  overflow-x: hidden;
  overflow-y: scroll;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  height: 100%;
}

article,
aside,
figure,
footer,
header,
hgroup,
section {
  display: block;
}

body,
button,
input,
select,
textarea {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, "Sans Serif";
}

code,
pre {
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: auto;
  font-family: monospace;
}

body {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
  overflow: hidden;
  min-height: 100%;
  background: #000;
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.4) 100%), url(/images/landings/mimai/desk.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

body > video {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  margin: auto;
  height: 100%;
  height: -webkit-fill-available;
}
@media screen and (max-width: 768px) {
  body > video {
    min-width: 100%;
    min-height: 100%;
  }
}

a {
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}
a strong {
  color: currentColor;
}
a:hover {
  color: #fff;
}

code {
  background-color: #333;
  color: #fff;
  font-size: 0.875em;
  font-weight: normal;
  padding: 0.25em 0.5em 0.25em;
}

hr {
  background-color: #333;
  border: none;
  display: block;
  height: 2px;
  margin: 1.5rem 0;
}

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

input[type=checkbox],
input[type=radio] {
  vertical-align: baseline;
}

small {
  font-size: 0.875em;
}

span {
  font-style: inherit;
  font-weight: inherit;
}

strong {
  color: #fff;
  font-weight: 700;
}

pre {
  -webkit-overflow-scrolling: touch;
  background-color: #FFFFFF;
  color: #333333;
  font-size: 0.875em;
  overflow-x: auto;
  padding: 1.25rem 1.5rem;
  white-space: pre;
  word-wrap: normal;
}
pre code {
  background-color: transparent;
  color: currentColor;
  font-size: 1em;
  padding: 0;
}

table td,
table th {
  text-align: left;
  vertical-align: top;
}
table th {
  color: #9798B0;
}

.has-text-centered {
  text-align: center;
  clear: both;
}

.has-text-right {
  text-align: right;
  clear: both;
}

.is-hidden {
  display: none !important;
}

.is-invisible {
  visibility: hidden !important;
}

@media screen and (max-width: 768px) {
  body {
    display: flex;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.4) 100%), url(/images/landings/mimai/mob.jpg);
  }

  .app {
    display: flex;
    flex: 1;
    flex-flow: column nowrap;
    justify-content: space-between;
    width: 100%;
    position: relative;
  }

  html.has-cookie-policy body {
    flex-flow: column nowrap;
    justify-content: space-between;
  }
}
a.button {
  color: #FFFFFF;
}

button,
.button {
  display: inline-block;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
  background-color: #fff;
  color: #222;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 290486px;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: background-color 0.3s, border-color 0.3s;
}
button.is-active, button:active,
.button.is-active,
.button:active {
  background-color: #FE3F13;
  border-color: #FE3F13;
  color: #fff;
}
.button:hover {
  background-color: #FE3F13;
  border-color: #FE3F13;
  color: #fff;
}
button[disabled],
button.disabled,
.button[disabled],
.button.disabled {
  color: rgba(255, 255, 255, 0.25);
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
button.is-login,
.button.is-login {
  position: absolute;
  top: 40px;
  right: 50px;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border-color: transparent;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 100px;
  margin-bottom: 8px;
  line-height: 24px;
  padding: 8px 13px 9px 13px;
  transition: background-color 0.3s, border 0.3s, color 0.3s;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
button.is-login:hover,
.button.is-login:hover {
  background-color: #FE3F13;
  color: white;
}
button.is-loading,
.button.is-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
button.is-loading::after,
.button.is-loading::after {
  position: absolute;
  left: calc(50% - (1em / 2));
  top: calc(50% - (1em / 2));
  position: absolute !important;
}

@media screen and (max-width: 768px) {
  button.is-login,
  .button.is-login {
    top: 64px;
    right: 20px;
  }
  button.is-login:hover,
  .button.is-login:hover {
    text-decoration: none;
  }
}
.app .title {
  color: #fff;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3;
  margin: 0 0 56px;
}

input,
select {
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

input:not([type=radio]):not([type=checkbox]),
.input {
  display: block;
  padding: 18px 0 6px 0;
  width: 100%;
  color: rgba(255, 255, 255, 0.95);
  font-size: 24px;
  line-height: 24px;
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
}
input::-moz-placeholder,
.input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.85);
}
input::-webkit-input-placeholder,
.input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.85);
}
input:-moz-placeholder,
.input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.85);
}
input:-ms-input-placeholder,
.input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.85);
}
input.has-error,
.input.has-error {
  border-color: #FE1313;
}

.label {
  cursor: pointer;
  font-weight: 600;
}

.help {
  display: block;
  font-size: 12px;
  line-height: 18px;
}
.help.has-error {
  margin: 8px 0 0;
  color: #FE1313;
  font-size: 14px;
  font-weight: 500;
}
.help.is-notice {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
}
.help.is-notice a {
  font-weight: 600;
  text-decoration: none;
  color: #fff;
}

.app-header {
  position: relative;
}

.survey {
  max-width: 540px;
  margin: 20px auto 0;
  padding: 20px;
  border-radius: 10px;
}

.survey-header {
  padding: 0 0 24px;
}
.survey-header .logo {
  display: block;
  vertical-align: bottom;
}
.survey-header .logo svg {
  width: 150px;
  height: auto;
}

.survey-footer {
  padding: 20px 0 0;
}
.survey-footer .button-container {
  margin: 20px 0 40px;
}

@media screen and (max-width: 768px) {
  .survey {
    width: 100%;
    margin: 100px auto 20px;
    padding: 10px 30px;
  }

  .survey-header {
    position: absolute;
    top: 60px;
    left: 20px;
  }
}
.stepper:not(.is-ready) .step {
  display: none;
}
.stepper:not(.is-ready) .step-1 {
  display: block;
}
.stepper .step .button {
  margin: 24px 0 0;
}
.stepper .gender-container {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  align-items: flex-end;
}
.stepper .gender-container .label {
  position: relative;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 100px;
  margin-bottom: 8px;
  line-height: 24px;
  padding: 12px 17px;
  color: #222;
  transition: background-color 0.3s, border 0.3s, color 0.3s;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.stepper .gender-container .label:hover {
  background-color: #FE3F13;
  color: white;
}
.stepper .gender-container input {
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  padding: 0;
  opacity: 0;
}

.progress-bar {
  height: 5px;
  border-radius: 10px;
  margin-top: 46px;
  border-bottom: 5px solid rgba(0, 0, 0, 0.1);
  margin: 20px;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.progress-line {
  width: 0;
  height: 5px;
  background: #fff;
  border-radius: 10px;
  transition: width 0.25s ease-in-out;
}

/*** different from mimai original */
.date-container,
.email-container {
  position: relative;
}
.date-placeholder,
.email-placeholder {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 24px;
  line-height: 27px;
  color: rgba(255, 255, 255, 0.55);
  pointer-events: none;
  text-rendering: auto;
  padding: 18px 0 6px 0;
  border: 1px solid transparent;
}
.date-placeholder-hide,
.email-placeholder-hide {
  visibility: hidden;
}

.step {
  position: relative;
}
.back {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  top: 10px;
  right: -50px;
  background: rgba(255,255,255,0.4);
  text-align: center;
  cursor: pointer;
  transition: all 0.1s ease-out;
}
@media screen and (max-width: 768px) {
  .back {
    top: -50px;
    right: 0;
  }
}

.back:hover {
  background: rgba(255,255,255,0.6);
}
.back svg {
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-top: 9px;
}

@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-6px, 0, 0);
    transform: translate3d(-6px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(6px, 0, 0);
    transform: translate3d(6px, 0, 0);
  }
}

.email-agreement {
  margin: 10px 0 0;
  position: relative;
  padding: 8px 115px 8px 10px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(3px);
  border-radius: 12px;
  animation: none;
}
.email-agreement.has-agreement-error {
  animation-name: shake;
  animation-iteration-count: 1;
  animation-duration: 1s;
}
.is-notice.has-agreement-error {
  animation-name: shake;
  animation-iteration-count: 1;
  animation-duration: 1s;
}
.email-agreement .radios {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.email-agreement label span {
  display: inline-block;
  width: 44px;
  height: 44px;
  padding-top: 8px;
  border-radius: 22px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(3px);
  transition: background-color 0.3s, border-color 0.3s;
  cursor: pointer;
}
.email-agreement label span svg {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.email-agreement label input {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}
.email-agreement label input[value='true'] + span {
  width: 54px;
}
.email-agreement label input[value='true']:checked + span {
  border-color: #2AC420;
  background: #2AC420;
}
.email-agreement label input[value='false']:checked + span {
  border-color: #EF2A13;
  background: #EF2A13;
}

.is-notice input[type=checkbox] {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}
.is-notice {
  margin: 10px 0 0;
  min-height: 25px;
}
.is-notice.has-error {
  color: #EF2A13;
  animation-name: shake;
  animation-iteration-count: 1;
  animation-duration: 1s;
}
.is-notice.has-error a {
  color: #EF2A13;
}
.is-notice.with-checkbox {
  position: relative;
  padding: 15px 65px 15px 10px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(3px);
  border-radius: 12px;
}
.is-notice.with-checkbox label {
  display: block;
}
.is-notice.with-checkbox .checkbox-slider {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -12.5px;
}
.checkbox-slider {
  width: 48px;
  height: 25px;
  display: block;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(3px);
  cursor: pointer;
  border-radius: 15px;
  transition: all 0.2s;
  position: relative;
}
.checkbox-slider:after {
  position: absolute;
  content: '';
  display: block;
  width: 18px;
  height: 19px;
  background: #fff;
  z-index: 1;
  top: 3px;
  left: 3px;
  border-radius: 15px;
  transition: all 0.2s;
}
.checkbox-slider.checkbox-slider-on {
  background: #63C318;
}
.checkbox-slider.checkbox-slider-on:after {
  left: 27px;
}

/*** login modal form */
.modal {
  display: none;
}
.modal.is-open {
  display: block;
}
.hide {
  display: none;
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modal + .modal .modal__overlay {
  background: transparent;
}
.modal__container {
  background-color: #fff;
  padding: 0;
  width: 400px;
  max-width: 400px;
  max-height: 100vh;
  border-radius: 8px;
  overflow-y: auto;
  box-sizing: border-box;
}
.modal__header {
  display: block;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}
.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: normal;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #000;
  text-align: center;
  box-sizing: border-box;
}
.modal__content {
  margin-top: 1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  padding: 0;
  color: #000;
  position: relative;
}
.modal__close {
  position: absolute;
  right: 15px;
  top: 24px;
  cursor: pointer;
}
.modal__close svg {
  fill: #111;
  pointer-events: none;
  width: 18px;
  height: 18px;
  display: inline-block;
}
.modal__close svg g,
.modal__close svg path {
  fill: #111;
}

.login .regForm__step-box {
  margin: 0 30px 15px 30px;
}
.login .regForm__step-box div.error {
  margin: 14px 0 0;
  color: #fff;
  background: #EF2A13;
  padding: 3px 6px;
  border-radius: 5px;
}
.remember-me {
  color: #999;
}
.remember-me svg {
  vertical-align: text-bottom;
  height: 22px;
  width: 22px;
  display: inline-block;
  margin-right: 8px;
}
.remember-me input[type=checkbox] {
  opacity: 0;
  position: absolute;
  left: -10000px;
}
.remember-me input[type=checkbox]:checked + svg .fill {
  fill: #ED4E21;
}
.remember-me input[type=checkbox]:checked + svg .border {
  fill: transparent;
}
.remember-me input[type=checkbox]:checked + svg g {
  stroke-width: 2;
}

.reset-password {
  text-align: center;
}
.reset-password a {
  color: #999;
  text-decoration: underline;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.remember-me .slider {
  width: 48px;
  height: 25px;
  display: none;
  background: #D5D5D5;
  cursor: pointer;
  border-radius: 15px;
  transition: all 0.2s;
  position: relative;
}
.remember-me .slider:after {
  position: absolute;
  content: '';
  display: block;
  width: 18px;
  height: 19px;
  background: #fff;
  z-index: 1;
  top: 3px;
  left: 3px;
  border-radius: 15px;
  transition: all 0.2s;
}
.remember-me input[type=checkbox]:checked + svg + .slider {
  background: #63C318;
}
.remember-me input[type=checkbox]:checked + svg + .slider:after {
  left: 27px;
}
.login-modal .tabs {
  margin: 0 30px 10px;
  padding: 5px;
  background: #F5F4F4;
  border-radius: 8px;
  overflow: hidden;
}
.login-modal .tabs ul {
  padding: 0;
  margin: 0;
  white-space: nowrap;
}
.login-modal .tabs ul li {
  display: inline-block;
  width: calc(50% - 2px);
  padding: 13px 5px;
  text-align: center;
  font-size: 18px;
  color: #888;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.login-modal .tabs ul li.active {
  border-radius: 8px;
  color: #111;
  background: #fff;
  box-shadow: 0 0 5px 0 rgba(0,0,0,.05);
}

.regForm__step-box {
  display: block;
  position: relative;
  text-align: left;
  margin: 0 30px 30px 30px;
}
.login-modal .regForm__step-box {
  margin-bottom: 10px;
}
.login-modal .regForm-input {
  border-width: 2px !important;
}
.login-modal .regForm-input:focus {
  border-color: #EF2A13;
}

.regForm-input {
  display: block !important;
  position: relative !important;
  text-align: left !important;
  width: 100% !important;
  height: 60px !important;
  padding: 0 20px !important;
  border-radius: 7px !important;
  border: 2px solid #DEDEDE !important;
  background-color: #fff !important;
  color: #333 !important;
  font-size: 16px !important;
  line-height: 19px !important;
}
.login-modal .regForm-input:focus {
  border-color: #EF2A13 !important;
}

.login-modal .phone_container {
  white-space: nowrap;
  width: 100%;
  height: 60px;
  padding: 10px 0;
  border-radius: 7px;
  border: 2px solid #DEDEDE;
  background-color: #fff;
  font-size: 0;
}
.login-modal .phone_container.focus {
  border-color: #EF2A13;
}
.login-modal .phone_container.error {
  border-color: #EF2A13;
}
.login-modal .phone_container .regForm-input {
  display: inline-block !important;
  border: 0 !important;
  border-radius: 0 !important;
  height: 36px !important;
  padding: 0 10px !important;
}
.login-modal .phone_container .regForm-input:first-child {
  width: 70px !important;
  border-right: 1px solid #DEDEDE !important;
  text-align: center !important;
}
.login-modal .phone_container .regForm-input:nth-child(2) {
  width: calc(100% - 70px) !important;
}
.login-modal .phone_code_container {
  white-space: nowrap;
  font-size: 0;
}
.login-modal .phone_code_container .regForm-input {
  text-align: center !important;
  display: inline-block !important;
  padding: 10px 0 !important;
  width: calc(100% / 5 - 4px) !important;
  margin-right: 5px !important;
  font-size: 30px !important;
  height: 80px !important;
}
.login-modal .phone_code_container.error .regForm-input {
  border-color: #EF2A13 !important;
}
.login-modal .phone_code_container .regForm-input:last-child {
  margin-right: 0 !important;
}
.login-modal .resendCode {
  text-align: center;
  margin: 20px 0;
  color: #666;
}
.login-modal .resendCode a {
  color: #666;
  text-decoration: none;
  cursor: pointer;
}
.login-modal .resendCode[disabled] {
  pointer-events: none;
}
.login-modal .error_container {
  background: #f00;
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  margin-top: 5px;
}
.login-modal #tab-email {
  padding-bottom: 30px;
}
.login-modal #tab-email .reset-password {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.login-modal input::-moz-placeholder,
.login-modal .input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.login-modal input::-webkit-input-placeholder,
.login-modal .input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.login-modal input:-moz-placeholder,
.login-modal .input:-moz-placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.login-modal input:-ms-input-placeholder,
.login-modal .input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.login-modal .button {
  display: inline-block !important;
  padding: 14px 24px !important;
  background-color: #43C923 !important;
  color: #fff !important;
  margin: 0 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  border: none !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  outline: none !important;
  appearance: none !important;
  transition: background-color 0.3s, border-color 0.3s !important;
  width: 100% !important;
  height: 60px !important;
  line-height: 21px !important;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 1px 0px 39px -3px rgba(0,0,0,0.47);
  background-image: linear-gradient(to bottom right, #42d51f, #42c522);
  border-radius: 7px !important;
}
.regForm__block {
  margin: 10px 30px;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  color: #888;
  font-size: 14px;
}

/* mobile modal */
@media (max-width: 768px) {
  .modal__overlay {
    align-items: start;
  }
  .modal__container {
    background: #222;
    color: #fff;
    border-radius: 0 0 8px 8px;
    width: 100vw;
    max-width: initial;
  }
  .modal__content {
    margin: 15px;
  }
  .modal__content .regForm__step-box {
    margin: 0 0 10px;
  }
  .modal__content .regForm__step-box.buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 10px 0;
  }
  .login-modal .modal__container {
    height: 100%;
    border-radius: 0;
    position: relative;
  }
  .login-modal .modal__content {
    height: 100vh;
    height: calc(var(--viewport-height) - 85px);
    min-height: 380px;
    position: relative;
    transition: all 0.1s ease-in-out;
  }
  .login-modal .modal__content .regForm__step-box.buttons {
    position: absolute;
    margin: 0;
  }
  .modal__header {
    border: 0;
    background: #2B2B2B;
    border-radius: 0 0 12px 12px;
    padding: 15px 20px;
    position: relative;
  }
  .modal__title {
    color: #fff;
    text-align: center;
  }
  .modal__close {
    display: block;
    position: absolute;
    left: 10px;
    right: initial;
    top: 50%;
    margin-top: -22px;
    cursor: pointer;
    height: 44px;
    width: 44px;
  }
  .modal__close svg {
    fill: #fff;
    pointer-events: none;
    width: 26px;
    height: 26px;
    display: inline-block;
    margin-top: 7px;
  }
  .modal__close svg g,
  .modal__close svg path {
    fill: #fff;
  }
  .remember-me {
    padding: 16px 15px;
    border-radius: 7px;
    border: 1px solid rgba(255,255,255,.15);
  }
  .remember-me label {
    display: block;
  }
  .remember-me svg {
    display: none;
  }
  .remember-me .slider {
    display: inline-block;
    float: right;
  }
  .reset-password {
    text-align: right;
    position: relative !important;
  }
  .reset-password a {
    color: #fff;
    text-decoration: none;
    margin: 0 auto;
    text-align: center;
  }
  .login-modal .tabs {
    margin: 0 0 10px;
    background: #2B2B2B;
  }
  .login-modal .tabs ul li {
    color: #ABABAB;
  }
  .login-modal .tabs ul li.active {
    background: #444444;
    color: #FAFAFA;
  }
  .login-modal .resendCode,
  .login-modal .resendCode a {
    color: #a0a0a0;
  }
}
