html,
body,
.wrapper {
  height: 100%; }

html {
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 4vw; }

body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  font-weight: 400;
  color: #333333;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  overflow: hidden;
  overflow-y: auto; }

* {
  box-sizing: border-box; }

body,
input,
button {
  font-family: 'Montserrat', sans-serif; }

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

img {
  max-width: 100%; }

button {
  cursor: pointer;
  outline: none;
  background-color: rgba(0, 0, 0, 0); }

input:focus,
select:focus,
textarea:focus,
button {
  outline: none; }

button::-moz-focus-inner {
  border: 0; }

.pxl,
.hidden {
  display: none !important; }

a {
  color: #000000;
  text-decoration: none; }

a:hover {
  text-decoration: underline; }

.wrapper {
  display: flex;
  flex-direction: column;
  position: relative; }
  .wrapper .login-form {
    align-self: flex-end; }

@media only screen and (min-width: 420px) {
  html {
    font-size: 16.8px; }

  .wrapper {
    margin: auto;
    max-width: 25em; } }
@media (min-width: 1880px) and (min-height: 885px) {
  html {
    font-size: 1.89vh; }

  .lds-ripple span {
    width: 11.9em;
    height: 11.9em; }

  .lds-ripple span::before,
  .lds-ripple span::after {
    border-width: .67em; }

  @keyframes lds-ripple {
    0% {
      top: 4.89em;
      left: 4.89em;
      bottom: 4.89em;
      right: 4.89em;
      width: 0;
      height: 0;
      opacity: 1; }
    100% {
      top: .22em;
      left: .22em;
      bottom: .22em;
      right: .22em;
      width: 9.3em;
      height: 9.3em;
      opacity: 0; } } }
.mobile-screen {
  background-size: cover;
  /* height: 100vh; */
  flex: 1;
  position: relative; }

.mobile-header {
  height: 4em;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px #eee solid;
  background-color: #FFF; }

.mobile-header > a {
  flex: 1;
  text-align: center;
  /* font-size: 0; */ }

.mobile-header .logo img {
  height: 55px;
  vertical-align: middle; }

.mobile-header > img {
  height: 3em; }

.mobile-header > .btn {
  display: block;
  width: 4em;
  height: 4em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50%;
  flex-shrink: 0;
  font-size: 1.1em; }

.slider {
  position: relative;
  height: 30em;
  overflow: hidden; }

.slider > * {
  opacity: 0; }

.slider > .active {
  opacity: 1;
  z-index: 3;
  top: 0em;
  transform: scale(0.9); }

.slider > .active + .active {
  opacity: 1;
  z-index: 2;
  top: 1em;
  transform: scale(0.86); }

.slider > .active + .active + .active {
  opacity: 1;
  z-index: 1;
  top: 2.14em;
  transform: scale(0.81); }

.slider > .slider-item {
  transition: all 0.4s ease-out 0s; }

.slider.ani > .slider-item {
  transition: none; }

.slider > .slider-item.active {
  transition-delay: 0.3s; }

.slider > .slider-item.no-delay {
  transition-delay: 0s; }

.slider-item {
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
  background: #ffffff;
  border-radius: 0.4em;
  transform-origin: 50% 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transform: scale(0.8);
  opacity: 0; }

.slider-item:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.slider-item.dislike:after {
  background: url(/img/_btns/nope.svg) center no-repeat;
  background-size: 60%; }

.slider-item.like:after {
  background: url(/img/_btns/like-green-ti.svg) center no-repeat;
  background-size: 60%; }

.slider-item.like,
.slider-item.dislike {
  z-index: 99; }

.slider-item.like {
  left: 100%; }

.slider-item.dislike {
  left: -100%; }

.slider-item > img {
  width: 100%;
  display: block;
  border-radius: 0.4em 0.4em 0 0; }

.slider-item .content {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.5em;
  font-size: 1.4em; }

.slider-item h3 {
  display: inline-block;
  margin: 0;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: normal;
  font-size: 1em;
  flex: 10; }

.slider-item .icon {
  font-weight: bold;
  color: #ccc;
  padding-left: 1.5em;
  margin-left: .5em;
  width: 3em;
  background-position: center left;
  background-repeat: no-repeat;
  background-size: 1.2em;
  background-color: #FFF;
  flex: 1; }

.slider-item .icon.friends {
  background-image: url(/img/_btns/friends.svg); }

.slider-item .icon.book {
  background-image: url(/img/_btns/book.svg); }

.controls {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: top;
  padding: 1em; }

.controls .btn {
  display: block;
  width: 5em;
  height: 5em;
  border-radius: 50%;
  border: 0.8em solid #F1f1f1;
  margin: -0.4em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40%;
  font-size: 1em; }

@media (max-width: 420px) {
  .slider {
    margin: 0 auto;
    width: 90%;
    height: 25em; } }
@media (min-width: 1880px) and (min-height: 885px) {
  .mobile-header {
    border-bottom: .06em #eee solid; }

  .mobile-header .logo img {
    height: 3.27em; }

  .slider-item {
    box-shadow: rgba(0, 0, 0, 0.3) 0 0.06em 0.18em; } }
.btn {
  margin: 0;
  padding: 0;
  border: 0; }

.btn.btn-settings {
  background-image: url(/img/_btns/settings.svg); }

.btn.btn-openlist {
  background-image: url(/img/_btns/chat.svg); }

.btn.btn-back {
  background-image: url(/img/_btns/recall.svg); }

.btn.btn-location {
  background-image: url(/img/_btns/location.svg); }

.btn.btn-close,
.btn.btn-heart {
  width: 7em;
  height: 7em; }

.btn.btn-close {
  background-image: url(/img/_btns/close.svg); }

.btn.btn-heart {
  background-image: url(/img/_btns/heart.svg); }

.btn.btn-login {
  background-color: #009700;
  display: block;
  margin: .5em 1em 0;
  padding: 0.3em 1em;
  border-radius: 2em;
  text-decoration: none;
  color: #fff;
  font-weight: 600; }

/* .match-profile .btn-group .btn {
    display: block;
    margin: 1em auto;
    border-radius: .4em;
    width: 14em;
    border: 2px solid #ffffff;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-size: 1.5em;
    text-align: center;
    padding: 0.6em 0;
    line-height: 1;
} */
.btn-primary img {
  margin-right: 0.3em;
  width: 1.15em;
  vertical-align: bottom; }

.btn-primary {
  padding: 0.5em 0;
  width: 100%;
  border-radius: 0.4em;
  border: 2px solid #ffffff;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 1.5em;
  text-align: center;
  color: #ffffff; }

.btn-close-form {
  margin-top: 1.5em;
  font-size: 1em;
  text-align: center;
  color: #ffffff; }

.match-profile .btn-group {
  display: flex;
  flex-direction: column; }

.match-profile .btn-group .btn {
  margin: 0.5em auto;
  width: 14em; }

@media (min-width: 768px) {
  .btn.btn-login {
    margin: 0;
    position: fixed;
    top: 1.2em;
    right: 1em; } }
@media (min-width: 1880px) and (min-height: 885px) {
  .btn-primary {
    border: .08em solid #ffffff; } }
.register-form-builder-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 1em;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10;
  overflow: auto;
  text-align: center;
  color: #ffffff; }

.register-form-builder-wrapper .registration-form-builder-inner {
  margin: 0 auto;
  width: 100%;
  max-width: 22em; }

.register-form-builder-wrapper .form-header {
  margin-bottom: 2.5em; }

.register-form-builder-wrapper .form-header .logo img {
  display: block;
  width: 100%;
  max-width: 19em;
  margin: 2em auto .5em; }

.register-form-builder-wrapper .form-control {
  display: block;
  margin: 1.2em 0;
  padding: 0.3em 0.5em;
  width: 100%;
  border-radius: 2em;
  border: 2px solid #ffffff;
  background-color: #ffffff;
  font-size: 1.3em;
  text-align: left;
  color: #333333; }

.register-form-builder-wrapper .btn-group {
  margin-top: 4em; }

.register-form-builder-wrapper .legal-warning {
  display: block;
  margin: 3em 1em 0;
  text-align: center;
  font-size: 10px;
  color: #cccccc; }

.register-form-builder-wrapper .legal-warning a {
  text-decoration: underline;
  color: #cccccc; }

.register-form-builder-wrapper .required,
.register-form-builder-wrapper .unknown-error-msg {
  display: block;
  margin: -0.7em 0;
  padding: 0.3em;
  border-radius: 3px;
  background-color: #ff0000;
  text-align: center;
  font-size: 0.75em;
  color: #ffffff; }

.register-form-builder-wrapper .unknown-error-msg {
  margin-bottom: 1em; }

/* animation form */
.register-form-builder-wrapper .form-header .logo,
.register-form-builder-wrapper .form-header .logo + strong,
.register-form-builder-wrapper .form-group,
.register-form-builder-wrapper .btn-group,
.register-form-builder-wrapper .legal-warning,
.register-form-builder-wrapper .form-header #text_becom_member_random {
  position: relative;
  animation: slideup 0.4s 0.5s ease-out both; }

.register-form-builder-wrapper .form-header .logo + strong,
.register-form-builder-wrapper .form-header #text_becom_member_random {
  animation-delay: 0.6s; }

.register-form-builder-wrapper .form-group {
  animation-delay: 0.7s; }

.register-form-builder-wrapper .btn-group {
  animation-delay: 0.8s; }

.register-form-builder-wrapper .legal-warning {
  animation-delay: 0.9s; }

@keyframes slideup {
  from {
    top: 15em;
    opacity: 0; }
  to {
    top: 0em;
    opacity: 1; } }
@media (min-width: 1880px) and (min-height: 885px) {
  .register-form-builder-wrapper .form-control {
    border: .09em solid #ffffff; }

  .register-form-builder-wrapper .required,
  .register-form-builder-wrapper .unknown-error-msg {
    border-radius: .24em; }

  .register-form-builder-wrapper .legal-warning {
    font-size: .6em; } }
.match-profile {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10;
  overflow: auto;
  text-align: center;
  color: #ffffff; }

.match-profile-header img {
  margin: 2em auto .5em;
  width: 100%;
  max-width: 19em; }

.match-profile-header strong {
  display: block;
  font-size: 1em; }

.profile-avatar {
  display: block;
  margin: 2.5em auto;
  border-radius: 50%;
  width: 11em;
  height: 11em;
  border: 2px solid #fff; }

/* animation */
.match-profile-header img,
.match-profile-header strong,
.match-profile .profile-avatar,
.match-profile .btn-group .btn-chat,
.match-profile .btn-group .btn-play {
  position: relative;
  animation: slideup 0.4s 0.5s ease-out both; }

.match-profile-header strong {
  animation-delay: 0.6s; }

.match-profile .btn-group {
  animation: none; }

.match-profile .profile-avatar {
  animation-delay: 0.7s; }

.match-profile .btn-group .btn-chat {
  animation-delay: 0.8s; }

.match-profile .btn-group .btn-play {
  animation-delay: 0.9s; }

@media (min-width: 1880px) and (min-height: 885px) {
  .profile-avatar {
    border: .12em solid #fff; } }
.match-list {
  position: absolute;
  top: 4em;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  max-height: 1000px;
  background: #ffffff;
  transition: max-height 0.3s linear;
  overflow-x: hidden; }

.match-list.hidden {
  display: block !important;
  max-height: 0; }

.match-list .empty-list {
  color: #cecece;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-transform: uppercase;
  background: url(/img/_btns/chat.svg) no-repeat 50% calc(50% - 5em);
  background-size: 8em;
  opacity: .5; }

.match-list > li {
  display: flex;
  padding: 1em .2em 0;
  max-width: 420px;
  margin: auto;
  cursor: pointer; }

.match-list > li > img {
  width: 5em;
  height: 5em;
  border-radius: 50%;
  margin-right: 0.8em;
  flex-shrink: 0; }

.match-list > li > div {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-height: 1.15em;
  max-height: 5em;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; }

.match-list > li > div > h3,
.match-list > li > div > p {
  margin: 0; }

.match-list > li > div > h3 {
  display: block;
  font-size: 1.2em;
  line-height: 1.4em; }

/* @media (min-height: 520px) {
    .match-list {
        bottom: 3em;
    }
}

@media (min-width: 992px) and (max-height: 720px) {
    .match-list {
        bottom: 0;
    }
} */
@media (min-width: 1880px) and (min-height: 885px) {
  .match-list {
    max-height: 59.52em; }

  .match-list > li {
    max-width: 25em; } }
.chat-client {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  background: #FFF;
  z-index: 10;
  overflow: hidden; }

.chat-client .step-inner {
  position: relative; }

.chat-client .legal-warning {
  width: 100%;
  height: auto;
  text-align: justify;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  font-size: 10px;
  background: #FFF2D1;
  color: #9B6001;
  padding: 1em;
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 3px;
  z-index: 11;
  font-size: 10px; }

.chat-client .legal-warning .legal-warning-inner {
  display: block;
  max-width: 420px;
  margin: auto;
  text-align: justify; }

.chat-client .legal-warning p,
.chat-client .legal-warning .block-legal-warning,
.chat-client .legal-warning .block-legal-warning-inner {
  display: inline; }

.chat-client .legal-warning a {
  color: #9B6001;
  text-decoration: underline; }

.panel-messages {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 3em;
  padding: 0 1em;
  overflow: hidden;
  overflow-y: auto;
  width: 100%;
  max-width: 420px;
  margin: auto; }

.messages-wrapper {
  text-align: center; }

.messages-wrapper .messages li.me {
  display: flex;
  justify-content: flex-end; }

.messages-wrapper .messages {
  text-align: left;
  padding: 0 0 6em 3em;
  margin-top: 50vh; }

.messages-wrapper .messages li.me span {
  display: inline-block;
  text-align: right;
  background-color: #00C0FF;
  border-radius: 2em 2em 0.5em 2em;
  animation-delay: 0s;
  color: #ffffff;
  margin-right: 0; }

.panel-messages .messages-wrapper {
  display: block;
  height: 99%;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-overflow-style: none; }

.panel-messages .messages-wrapper::-webkit-scrollbar {
  display: none; }

.panel-messages .messages-wrapper .messages-logo {
  cursor: pointer;
  display: block;
  margin-top: 14vh; }

.messages-wrapper .messages li.has-avatar {
  position: relative;
  margin-top: 1em; }

.messages-wrapper .messages li.has-avatar img {
  height: 2.7em;
  width: 2.7em;
  border-radius: 50%;
  display: inline-block;
  vertical-align: top;
  position: absolute;
  top: -0.5em;
  left: -2.9em;
  animation: scalein .6s ease-in; }

.messages-wrapper .messages span {
  display: inline-block;
  padding: 0.5em 1em;
  background-color: #e5e5e5;
  font-size: 1em;
  margin: 0 5em 0.4em 0;
  transition: border-radius .5s ease-in;
  border-radius: 0.5em 2em 2em 0.5em;
  overflow: hidden; }

.messages-wrapper .messages .has-avatar span {
  display: block;
  border-radius: 2em 2em 2em 0.5em; }

@keyframes scalein {
  0% {
    transform-origin: center;
    transform: scale(0);
    opacity: 0; }
  70% {
    transform: scale(1.5);
    opacity: 1; }
  100% {
    transform: scale(1);
    opacity: 1; } }
@keyframes plop {
  0% {
    transform-origin: left;
    transform: scaleX(0);
    transform: scaleY(0);
    opacity: 0; }
  60% {
    transform: scaleX(0);
    opacity: 0; }
  80% {
    transform: scaleX(1.2);
    opacity: 1; }
  100% {
    transform: scaleX(1);
    transform: scaleY(1); } }
.chat-client .chatcontrols {
  display: block;
  width: 100%;
  height: auto;
  text-align: justify;
  position: fixed;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFF;
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 3px;
  padding: 1em;
  z-index: 11; }

.chat-client .chatcontrols form {
  position: relative;
  max-width: 420px;
  margin: auto; }

.chat-client .chatcontrols input {
  display: none;
  border-radius: 2em;
  border: 2px solid #f0f0f0;
  background: #f8f8f8;
  color: #333;
  font-size: 1.3em;
  text-align: left;
  padding: .3em 0.5em;
  width: 100%;
  padding-right: 2em; }

.chat-client .chatcontrols input::placeholder {
  color: #BBB; }

.chat-client .chatcontrols input:first-child {
  display: block; }

.btn.btn-send {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  display: block;
  width: 3em;
  height: 2.7em;
  background: url("/img/_btns/send.svg") center no-repeat;
  background-size: 50%;
  cursor: pointer;
  font-size: 1em; }

.chat-client .step.step-hidden .form-group > label {
  display: none; }

.chat-client .form-group > label {
  font-size: 0.7em;
  width: 24em;
  background-color: #000000;
  color: #ffffff;
  font-weight: bold;
  border-radius: 0.5em;
  padding: 1em;
  transform: translate(-50%, 0);
  position: absolute;
  top: auto;
  right: auto;
  bottom: 4.3em;
  left: calc(50% - 3em);
  box-shadow: rgba(0, 0, 0, 0.1) 4px 4px 5px;
  animation: slideupdown .8s 2s ease-out forwards;
  opacity: 0;
  cursor: pointer; }

.form-group > label:after {
  transform: translate(-50%, 0);
  position: absolute;
  top: auto;
  right: auto;
  bottom: -.9em;
  left: 50%;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1em 1em 0 1em;
  border-color: #000 transparent transparent transparent; }

.chat-client .form-group {
  position: relative; }

.chat-client .form-control.error {
  margin-bottom: 1.5em; }

.chat-client .required,
.chat-client .unknown-error-msg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3em;
  font-size: 0.7em;
  text-align: center;
  color: #ff0000; }

.chat-client .unknown-error-msg {
  position: static;
  display: block;
  margin-top: 0.5em;
  text-align: center; }

.chat-client .chatcontrols .legal__container {
  padding: 1rem 0 0;
  min-height: 2rem; }

@media (min-width: 568px) and (max-height: 600px) {
  .panel-messages .messages-wrapper .messages-logo {
    margin-top: 75px; }

  .messages-wrapper .messages {
    margin-top: 5vh; } }
@media (min-width: 768px) {
  .messages-wrapper .messages {
    margin-top: 63vh; } }
@media (min-width: 992px) {
  .messages-wrapper .messages {
    margin-top: 53vh; } }
@media (min-width: 1600px) {
  .messages-wrapper .messages {
    margin-top: 60vh; } }
@keyframes slideupdown {
  0% {
    transform: translate(-50%, -60%); }
  50% {
    transform: translate(-50%, 10%);
    opacity: 1; }
  100% {
    transform: translate(-50%, -15%);
    opacity: 1; } }
@media (min-width: 1880px) and (min-height: 885px) {
  .panel-messages {
    max-width: 25em; }

  .panel-messages .messages-wrapper .messages-logo img {
    height: 3em;
    max-width: 15em; }

  .chat-client .chatcontrols form {
    max-width: 25em; }

  .chat-client .chatcontrols input {
    border: .09em solid #f0f0f0; }

  .chat-client .legal-warning {
    box-shadow: rgba(0, 0, 0, 0.3) 0 0 0.3em;
    font-size: .6em; }

  .chat-client .legal-warning .legal-warning-inner {
    max-width: 42em; } }
.legal__container {
  display: flex;
  justify-content: center;
  padding: .5rem 0 1rem;
  min-height: 3rem; }

.legal__container > div {
  padding: 0 1rem; }

.legal__container > div:not(:last-child) {
  border-right: 1px solid #000; }

@media (min-width: 1880px) and (min-height: 885px) {
  .legal__container {
    align-items: center;
    padding: .5em 0;
    min-height: 3em; }

  .legal__container > div {
    padding: 0 1em; }

  .legal__container > div:not(:last-child) {
    border-right: .06em solid #000; } }

/*# sourceMappingURL=style.css.map */
