/* =========================================================================
   Variables
 =========================================================================== */
/* =========================================================================
   General styles
 =========================================================================== */
* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  min-width: 300px;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  color: #333;
  font-size: 16px;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
  line-height: 1.375;
  background-color: white;
  -webkit-text-size-adjust: 100%;
  position: relative;
}

h1 {
  margin: 0;
  font-size: 25px;
  font-weight: 700;
}

.action {
  display: inline-block;
  box-sizing: border-box;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: inherit;
  font: inherit;
  text-align: inherit;
  text-transform: none;
  text-decoration: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  -webkit-appearance: none;
  user-select: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.button-link {
  font-size: 14px;
  text-decoration: underline;
}
.button-link.blue {
  color: #00AFF0;
}

.button-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 64px;
  line-height: 64px;
  padding: 0 12px;
  font-size: 20px;
  font-weight: 800;
  border-radius: 8px;
  color: #fff;
  background-color: #00AFF0;
}
.button-primary.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.field-wrp {
  display: block;
}

.field-label {
  display: block;
  font-size: 17px;
  line-height: 18px;
  margin-bottom: 6px;
}

.field {
  display: block;
  box-sizing: border-box;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  background-color: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
}

.field-error,
.field-error2 {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 500;
  color: #fd5068;
}

.field-success {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 500;
}
.field-success span {
  cursor: pointer;
  text-decoration: underline;
}

.select {
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 13 8'%3E%3Cpath fill='%23404040' d='M2.03.97A.75.75 0 0 0 .97 2.03L2.03.97ZM6.5 6.5l-.53.53.53.53.53-.53-.53-.53Zm5.53-4.47A.75.75 0 0 0 10.97.97l1.06 1.06Zm-11.06 0 5 5 1.06-1.06-5-5L.97 2.03Zm6.06 5 5-5L10.97.97l-5 5 1.06 1.06Z'/%3E%3C/svg%3E") calc(100% - 16px) center no-repeat;
  background-size: 14px auto;
}

.input {
  width: 100%;
  height: 48px;
  padding: 11px;
  font-size: 17px;
  color: #2c2c2c;
  border: solid 1px #dedede;
  border-radius: 6px;
  caret-color: #00AFF0;
  background-color: #fff;
}

.input:focus {
  border-color: #00AFF0;
}

/*.input:invalid, .input-error {
	border-color: $color-red;
}*/
.terms {
  margin: 0;
  font-size: 10px;
  opacity: 0.54;
}

.terms a {
  text-decoration: underline;
}

.checkbox-wrp {
  font-size: 12px;
  line-height: 2;
}
.checkbox-wrp .checkbox {
  vertical-align: -32%;
}

.checkbox {
  width: 24px;
  height: 24px;
  border: solid 2px #00AFF0;
  border-radius: 4px;
}

.checkbox:checked {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 9 8'%3E%3Cpath fill='%23fff' d='M6.97.97a.75.75 0 0 1 1.07 1.05L4.05 7.01a.75.75 0 0 1-1.08.02L.32 4.38a.75.75 0 1 1 1.06-1.06l2.1 2.1L6.95.99l.02-.02Z'/%3E%3C/svg%3E") center no-repeat, #00AFF0;
  background-size: 9px auto;
}

/* =========================================================================
   Backgrounds
 =========================================================================== */
.backgrounds {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.heart {
  position: absolute;
  top: 10vh;
  left: 0;
  right: 0;
}

/* =========================================================================
   Regions
 =========================================================================== */
.region {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  max-width: 600px;
  max-height: 800px;
  padding: 30px 16px 20px;
  margin: 0 auto;
  position: relative;
}
.region.active {
  display: flex;
}

/* =========================================================================
   Registration
 =========================================================================== */
.step {
  display: none;
  flex-grow: 1;
  flex-direction: column;
  justify-content: space-between;
}
.step.active {
  display: flex;
}

.step-controls {
  text-align: center;
  margin-top: 20px;
}
.step-controls .button-primary {
  margin-bottom: 16px;
  text-transform: uppercase;
}
.step-controls .terms {
  margin-top: 20px;
  padding: 0 7vw;
}

.step-bullets {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.step-bullets span {
  display: block;
  width: 6px;
  height: 6px;
  background: rgba(218, 218, 218, 0.42);
  border-radius: 50%;
  margin: 0 3px;
}

.active-step-1 .step-bullets span:nth-child(1) {
  background: #00AFF0;
}
.active-step-1 .step-controls .button-primary {
  display: none;
}

.active-step-2 .step-bullets span:nth-child(2) {
  background: #00AFF0;
}
.active-step-2 .step-controls .terms {
  display: none;
}

.active-step-3 .step-bullets span:nth-child(3) {
  background: #00AFF0;
}
.active-step-3 .step-controls .terms {
  display: none;
}

.active-step-4 .step-bullets span:nth-child(4) {
  background: #00AFF0;
}
.active-step-4 .step-controls .terms {
  display: none;
}

.step-title {
  font-weight: 400;
  font-size: 25px;
  line-height: 145.5%;
  text-align: center;
  letter-spacing: -0.202759px;
  margin-bottom: 20px;
}

.logo {
  margin-bottom: 8vh;
  text-align: center;
}
.logo img {
  display: block;
  margin: 0 auto;
}

.gender-box {
  height: 80px;
  line-height: 76px;
  background: #FFFFFF;
  border: 2px solid #00AFF0;
  color: #00AFF0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.gender-box:hover, .gender-box:active, .gender-box.active {
  background: #00AFF0;
  color: #fff;
}
.gender-box.pink {
  border-color: #FF5981;
  color: #FF5981;
}
.gender-box.pink:hover, .gender-box.pink:active, .gender-box.pink.active {
  background: #FF5981;
  color: #fff;
}

.field-wrp .field-error,
.field-wrp .field-error2 {
  display: none;
}
.field-wrp.has-error .field {
  border-color: #fd5068;
}
.field-wrp.has-error .field-error {
  display: block;
}
.field-wrp.has-error2 .field {
  border-color: #fd5068;
}
.field-wrp.has-error2 .field-error2 {
  display: block;
}

/* =========================================================================
   Login
 =========================================================================== */
.region-login .field-wrp {
  margin-bottom: 16px;
}
.region-login .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.region-login .bottom .button-link {
  font-size: 12px;
}

/* =========================================================================
   Terms, Privacy
 =========================================================================== */
.back {
  display: block;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
  color: #202020;
  text-transform: lowercase;
}
.back span {
  display: inline-block;
  vertical-align: middle;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  background-color: #F2F2F2;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s;
}
.back span:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 5px 0;
  border-color: transparent #333 transparent transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: border-color 0.3s;
}
.back span:hover, .back span:active {
  background-color: #00AFF0;
}
.back span:hover:before, .back span:active:before {
  border-color: transparent #fff transparent transparent;
}

.region-terms,
.region-privacy,
.region-cookies,
.region-moderation {
  position: relative;
  z-index: 1;
}
.region-terms .step,
.region-privacy .step,
.region-cookies .step,
.region-moderation .step {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  justify-content: start;
}

@media (max-width: 767px) {
  .rules h1 {
    display: block;
  }
}
/* =========================================================================
   Region authorize
 =========================================================================== */
.region-authorize .step-title {
  font-size: 32px;
  line-height: 38px;
  color: #000;
  max-width: 300px;
  margin: 0 auto;
}
.region-authorize .btn-google,
.region-authorize .btn-reg {
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: 10px;
  height: 64px;
  line-height: 62px;
  font-weight: 500;
  font-size: 18px;
  text-transform: none;
  color: rgba(0, 0, 0, 0.54);
  position: relative;
}
.region-authorize .btn-google svg,
.region-authorize .btn-reg svg {
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -12px;
}
.region-authorize .btn-reg {
  border-color: #00AFF0;
}

/* =========================================================================
   Cookies banner
 =========================================================================== */
.cc-banner {
  position: fixed;
  z-index: 1000;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
}
.cc-banner .cc-banner-inner {
  padding: 10px;
  display: flex;
  background: #fff;
  font-size: 16px;
  border-radius: 0;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}
.cc-banner .cc-message {
  align-self: center;
  line-height: 1.3em;
  font-weight: 400;
  color: #2F2F2F;
}
.cc-banner .cc-btn-wrap {
  margin: 0 0 0 15px;
  align-self: center;
}
.cc-banner .cc-btn-wrap .btn {
  font-size: 16px;
  background-color: #00AFF0;
  color: #fff;
  height: 40px;
  padding: 7px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cc-banner .cc-btn-wrap .btn:hover {
  background-color: #00AFF0;
}
.cc-banner .cc-btn-wrap a {
  color: #00AFF0;
}
@media (min-width: 576px) {
  .cc-banner {
    bottom: 10px;
    right: 15px;
    left: 15px;
  }
  .cc-banner .cc-banner-inner {
    border-radius: 5px;
  }
}
.cc-banner.hide {
  display: none !important;
}

/* =========================================================================
   Footer
 =========================================================================== */
.footer {
  padding: 30px 15px;
}
@media (max-width: 767px) {
  .footer {
    padding: 15px;
  }
}
.footer .footer-content {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: #2F2F2F;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .footer .footer-content {
    font-size: 12px;
  }
}
.footer a {
  color: #2F2F2F;
  position: relative;
  text-decoration: none;
}
.footer a:first-child, .footer a:nth-child(2), .footer a:nth-child(3) {
  margin-right: 40px;
}
.footer a:first-child:before, .footer a:nth-child(2):before, .footer a:nth-child(3):before {
  content: "";
  position: absolute;
  width: 1px;
  height: 75%;
  background-color: #2F2F2F;
  right: -20px;
  top: 3px;
}
@media (max-width: 479px) {
  .footer a:first-child, .footer a:nth-child(2), .footer a:nth-child(3) {
    margin-bottom: 5px;
    display: block;
  }
  .footer a:first-child:before, .footer a:nth-child(2):before, .footer a:nth-child(3):before {
    display: none;
  }
}

.fictional {
  font-size: 14px;
  font-weight: 400;
  margin: 20px 0 0;
  text-align: center;
  color: #333;
  opacity: 0.7;
}

/*# sourceMappingURL=style.css.map */
