* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
ol,
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: #fff;
}
.forgot_password:hover {
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
  color: #fff;
}
a:active {
  text-decoration: none;
  color: #fff;
}
button,
input:focus,
select:focus,
textarea:focus {
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #ffffff;
}
html,
body {
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
}
html {
  font-size: 0.6944444vw;
  font-family: Source Sans Pro;
}

.content {
  overflow: auto;
  height: 100%;
}
.header__logo {
  width: 21.3rem;
  /*height: 5rem;*/
}
.header {
  background: #151515;
  height: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.main__header {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 3rem;
  color: #1D1D1D;
  height: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main__header span {
  color: #EE4CA3;
}
.main {
  width: 123rem;
  margin: 0 auto;
}
.profile__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.profile__item,.profile__item_clear {
  width: 30rem;
  margin-bottom: 2rem;
  display: block;
}
.profile__photo {
  width: 100%;
  height: 25rem;
  position: relative;
  overflow: hidden;
  border-radius: 0.4rem;
  cursor: pointer;
}
.profile__photo::before {
  position: absolute;
  content: "";
  height: 37.6%;
  left: 0;
  bottom: 0;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(24.63%, rgba(0, 0, 0, 0)), to(#000000));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 24.63%, #000000 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 24.63%, #000000 100%);
  opacity: 0.6;
  z-index: 1;
}
.profile__img {
  width: 100%;
}
.profile__img-m {
  display: none;
}
.profile__location {
  display: none;
}
.profile__name {
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 2rem;
  color: #FFFFFF;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.65);
  position: absolute;
  z-index: 2;
  bottom: 2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 90%;
  text-align: center;
}
.profile__online {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: #26FF02;
  border-radius: 50px;
  margin-left: 0.5rem;
}
.profile__buttons {
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}
.profile__message {
  width: 2.5rem;
  height: 2rem;
  background: url(../img/message.svg) no-repeat center center;
  background-size: 100%;
  cursor: pointer;
}
.profile__like {
  width: 2.25rem;
  height: 2rem;
  background: url(../img/like.svg) no-repeat center center;
  background-size: 100%;
  cursor: pointer;
}
.profile__like-liked {
  background: url(../img/like1.svg) no-repeat center center;
  background-size: 100%;
}
.location {
  text-transform: uppercase;
  display: inline-block;
  margin-left: 0.8rem;
}

.profile__item_clear .profile__name,
.profile__item_clear .profile__photo::before,
.profile__item_clear .profile__buttons {
  display: none;
}
.modal__backdrop {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
.modal {
  max-height: 100vh;
  overflow: auto;
  position: absolute;
  z-index: 11;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  width: 98rem;
  display: none;
}
.modal__header {
  height: 8rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#FEB159), to(#EE4CA3));
  background: -o-linear-gradient(top, #FEB159 0%, #EE4CA3 100%);
  background: linear-gradient(180deg, #FEB159 0%, #EE4CA3 100%);
  border-radius: .5rem .5rem 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}
.modal__prev, .modal__next {
  width: 2.2rem;
  height: 3rem;
  background: url(../img/angle.svg) no-repeat center center;
  background-size: contain;
  cursor: pointer;
}
.modal__prev:active, .modal__next:active,.modal__home:active {
  top: 2px;
  position: relative;

}
.modal__prev.disabled, .modal__next.disabled {
  opacity: 0.5;
}
.modal__prev.disabled:active, .modal__next.disabled:active {
  top: 0;
}
.modal__next {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.modal__home {
  width: 3.2rem;
  height: 3rem;
  background: url(../img/home.svg) no-repeat center center;
  background-size: contain;
  cursor: pointer;
}
.modal__addon {
  width: 16rem;
  height: 60rem;
  overflow: hidden;
  display: block;
}
.modal__addon-m {
  display: none;
}
.modal__addon-img {
  width: 100%;
  height: 100%;
  border-radius: .5rem;
}
.modal__content {
  padding: 3rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #fff;
}
.modal__img_current {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  margin: 0 auto;
  z-index: 2;
  -o-object-fit: contain;
  object-fit: contain;
}
.modal__img_current_blur {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-filter: blur(35px);
  filter: blur(35px);
  z-index: 1;
  min-width: 100%;
  min-height: 100%;
}
.modal__img_current-cont {
  position: relative;
  text-align: center;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: .5rem;
  width: 100%;
  height: 39.5rem;
}
.modal__profile {
  width: 50rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.modal__img-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 23rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.modal__img-item {
  margin-bottom: 1rem;
  border-radius: .5rem;
  overflow: hidden;
  cursor: pointer;
  width: 10.9rem;
  height: 9.265rem;
}
.modal__img-item-img {
  width: 100%;
  height: 100%;
  -webkit-filter: blur(3px);
  filter: blur(3px);
  -o-object-fit: cover;
  object-fit: cover;
}
.modal__info {
  position: relative;
}

.modal__info-wrong {
  font-size: 1rem;
  color: #FF0000;
  position: absolute;
  right: 0;
  top: -6px;
  display: none;
}

.modal__info-list {
  width: 24.5rem;
  font-size: 1.6rem;
  color: #000000;
  line-height: 2rem;
}
.modal__info-item {
  margin-bottom: 1rem;
}
.modal__info-item.flex {
  display: flex;
}
.modal__info-item:nth-child(2) {
  position: relative;
}
.modal__info-item:nth-child(2):before, .modal__info-item:nth-child(2):after {
  position: absolute;
  content: '';
  left: 0;
  top: -0.5rem;
  height: 1px;
  width: 100%;
  background: #F0F0F0;
}
.modal__info-item:nth-child(2):after {
  top: auto;
  bottom: -0.5rem;
}
.modal__info-name {
  color: #787878;
  font-weight: bold;
  margin-right: 0.5rem;
}
.modal__info-input {
  width: 100%;
  height: 4.5rem;
  background: #FFFFFF;
  border: 1px solid #9C9C9C;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: 0.6rem;
  font-size: 1.6rem;
}
.modal__info-input_error {
  color: #FF0000;
  border: 1px solid #FF0000;
}
.modal__info-input_error::placeholder {
  color: #FF0000;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}
.modal__info-input:focus,
.modal__info-input:active {
  border: 1px solid #9C9C9C;
}
.modal__button {
  background: #1F93E7;
  border-radius: 0.5rem;
  width: 24.5rem;
  height: 5.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #FFFFFF;
  font-weight: 700;
  border: none;
}
.lckr .modal__button{
  width: 100%;
}
.modal__button:hover {
  background: #1786d7;
}
.modal__button_shake {
  animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}
.modal__close {
  position: absolute;
  right: 10rem;
  top: 10rem;
  width: 3rem;
  height: 3rem;
  background: url(../img/close.svg) no-repeat center center;
  background-size: contain;
  cursor: pointer;
}
.modal__close:active {
  -webkit-transform: translateY(2px);
  -ms-transform: translateY(2px);
  transform: translateY(2px);
}
#emailForm{
  display: grid;
  position: relative;
}

@keyframes spinner-border {
  to { transform: rotate(360deg); }
}
.spinner-border.hidden {
  display: none;
}
.spinner-border {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  color: #fff;
  vertical-align: text-bottom;
  border: 0.15em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border .75s linear infinite;
  animation: spinner-border .75s linear infinite;
}
.info{
  width: 80%;
  margin: 0 10%;
}
.info h1{
  text-align: center;
  font-size: 10rem;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 3.125vw;
  }
  .profile__img-m {
    display: block;
  }
  .profile__img-d {
    display: none;
  }
  .modal__addon-d {
    display: none;
  }
  .modal__addon-m {
    display: block;
  }
  .modal__addon {
    width: 100%;
    height: auto;
  }
  .header__logo {
    width: 17rem;
    /*height: 4rem;*/
  }
  .modal__header {
    border-radius: 0;
  }
  .main {
    width: 100%;
    padding: 0 1rem 2rem 1rem;
  }
  .main__header {
    font-size: 1.6rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 5rem;
    flex-wrap: wrap;
    height: auto;
  }
  .profile__online {
    width: 0.8rem;
    height: 0.8rem;
  }
  .profile__item {
    width: 14.5rem;
  }
  .profile__item_clear {
    width: 100%;
    margin-bottom: 2rem;
  }
  .profile__item_clear .profile__photo {
    height: auto;
  }
  .profile__photo {
    height: 12rem;
    border-radius: 0.5rem;
  }
  .profile__name {
    font-size: 1.1rem;
    line-height: 1.4rem;
    bottom: 1rem;
  }
  .profile__message {
    width: 2rem;
    height: 1.6rem;
  }
  .profile__like {
    width: 1.8rem;
    height: 1.6rem;
  }
  .profile__buttons {
    height: 3.6rem;
  }
  .modal__backdrop {
    display: none;
  }
  .modal__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 2rem 1rem;
  }
  .modal {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .modal__profile,.modal__img-list,.modal__info {
    width: 100%;
  }
  .modal__img-item {
    width: 7rem;
    height: 5.8rem;
  }
  .modal__img_current-cont {
    height: 25rem;
  }
  .modal__info-list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .modal__button {
    width: 100%;
    margin-top: 0.6rem;
    margin-bottom: 2rem;
  }
  .modal__info-item:nth-child(2):before, .modal__info-item:nth-child(2):after {
    width: 1px;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
  }
  .modal__info-item:nth-child(3) {
    padding-right: 2rem;
  }
  .modal__info-item:nth-child(2) {
    padding: 0 1rem;
  }
  .modal__info-item:nth-child(2):after {
    left: auto;
    right: 0;
  }
  .modal__info-item {
    display: block !important;
  }
  .modal__info-wrong {
    bottom: 13rem;
  }
}

@media screen and (min-width: 1440px) {
  html {
    font-size: 10px;
  }
}

.none {
  display: none !important;
}

#notify-prompt {
  border-radius: 3px;
  box-shadow: 0 0 3px 1px rgba(34, 28, 5, 0.3);
  position: fixed;
  top: 10px;
  left: 5%;
  width: 90%;
  margin: 0;
  font-size: 100%;
  padding: 5px 10px 10px 10px;
  height: auto;
  background-color: #dfe3ee;
  cursor: auto;
  z-index: 99999999999;
  letter-spacing: normal;
  text-transform: none;
  line-height: 1;
}

@media only screen and (min-width: 480px) {
  #notify-prompt {
    top: 20px;
    left: 30px;
    width: 420px;
  }
}

.notify-header {
  text-align: center;
  color: #212121;
  font: 700 14px/20px Arial;
}

.notify-content {
  display: flex;
}

.notify-content-ava img {
  width: 100px;
  height: 100px;
  border-radius: 5px;
}

.notify-content-wrap {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
}

.notify-content-msg {
  color: #212121;
  font-size: 15px;
}

.notify-content-msg div {
  color: #212121;
  font: 400 12px/16px Arial;
}

.notify-content-btn {
  display: flex;
  margin-top: auto;
  padding-top: 10px;
  justify-content: space-evenly;
}

.notify-close, .notify-reply {
  font: 400 12px/24px Arial;
  border-radius: 3px;
  padding: 0 15px;
  cursor: pointer;
}

.notify-close:hover, .notify-reply:hover {
  text-decoration: none;
  background-color: #fdd95b;
  border-color: rgba(34, 28, 5, 0.4);
  color: #212121;
}

.notify-close {
  border: 1px solid #ccc;
  background-color: #fff;
  color: #212121;
}

.notify-reply {
  background-color: #4596fb;
  border: 1px solid #50a1f8;
  color: #fff;
}

.t-c {
  text-align: center;
}


/* push banner start */
div.wrap-left-bottom-pushbox{
  position: fixed;
  z-index: 999;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  transition: ease-in-out 0.2s;
  width: 100%;
}
.template-banner-push {
  min-width: 250px;
  max-width: 100%;
  position: relative;
  font-size: 1rem;
  padding: 10px;
  margin: 0 10px 10px 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  background-color: #f8f9fa;
  transition: ease-in-out 0.2s;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
  "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
  "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.template-banner-push .close1 {
  position: absolute;
  top: 3px;
  right: 7px;
  z-index: 2;
  line-height: 1em;
  font-size: 2em;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
.template-banner-push-content img {
  height: 45px;
  margin-right: 10px;
}
.template-banner-push-content {
  display: flex;
}

@media (min-width: 576px) {
  .wrap-left-bottom-pushbox {
    width: auto;
  }
  .template-banner-push {
    margin-right: auto;
    max-width: 350px;
  }
}
.__stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}
.template-banner-push-content-text {
  margin-right: 20px;
  color: black;
  display: flex;
  flex-direction: column;
}
.template-banner-push-content-text *{
  line-height: 2em;
}
/* push banner end */

/**/
.tos_pp{
  position: fixed;
  bottom: 0;
  text-align: center;
  width: 100%;
  background: black;
  color: #fff;
  z-index: 2;
}
.tos_pp a{
  cursor: pointer;
}
/**/
.info > .content > .box{
  font-size: 2rem;
  padding-bottom: 10rem;
}
.info > .content > .box h1{
  font-size: 4rem;
}

/* new push preprompt start */
.notify-container {
  position: fixed;
  top: 10px;
  left: 5%;
  width: 90%;
  margin: 0;
  height: auto;
  cursor: auto;
  z-index: 99999999999;
}

@media only screen and (min-width: 480px) {
  .notify-container {
    top: 20px;
    left: 30px;
    width: 420px;
  }
}
/* new push preprompt end */
