html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
html {
  scroll-behavior: smooth;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
  background-color: #fff;
  color: #000;
  font-family: 'Open Sans';
  font-size: 16px;
  line-height: 24px;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*, :after, :before {
  box-sizing: border-box;
}
a {
  color: #000c7e;
}
.page-content {
  transition: box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 1px 3px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 24%);
  position: relative;
  /* padding: 20px; */
  border-radius: 3px;
  background: #fff;
  overflow: hidden;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.girl-photo-wrap-container {
  position: relative;
  text-align: center;
  z-index: 2;
  width: 100%;
  max-height: 420px;
  height: 100%;
}

.girl-photo-wrap-container:hover .title {
  display: none;
  background-color: rgba(0, 0, 0, 0);
}

.girl-photo-wrap-container:hover .girl-photo-wrap .shadow-all {
  opacity: 1;
}

.girl-photo-wrap-container:hover .girl-photo-wrap .chat-page-list-hover-button {
  opacity: 1;
  display: inline-block;
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}

.girl-photo-wrap-container .title {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px !important;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-family: 'Montserrat';
  font-size: 16px !important;
  line-height: 20px !important;
  font-weight: 500 !important;
  text-transform: capitalize;
  transition: all 0.3s;
  z-index: 2;
}

.girl-photo-wrap {
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.girl-photo-wrap img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.girl-photo-wrap .shadow-all {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  float: left;
  width: 100%;
  font-size: 14px;
  font-family: 'Montserrat';
  color: #fff;
  text-align: center;
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
  bottom: 0;
  font-weight: 400;
  min-height: 40px;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  z-index: 1;
  opacity: 0;
  width: 100%;
  height: 100%;
}

.girl-photo-wrap .chat-page-list-hover-button {
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  white-space: nowrap;
  font-family: 'Montserrat';
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.girl-photo-wrap .link-view-profile {
  font-family: 'Montserrat';
  font-size: 14px;
  line-height: 24px;
  text-decoration: none;
  cursor: pointer;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

.tooltip-block {
  cursor: pointer;
}

.tooltip-block:hover .tooltip-content {
  display: block;
}

.tooltip-content {
  display: none;
  position: absolute;
  top: 50px;
  right: 20px;
  width: 100%;
  max-width: 420px;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #c2c8ce;
  z-index: 2;
}

.tooltip-content:before,
.tooltip-content:after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100%;
  border: 10px solid transparent;
  border-bottom-color: #a9abad;
}

.tooltip-content::after {
  border-bottom-color: #ffffff;
  bottom: calc(100% - 1px);
}

.tooltip-content p {
  padding-bottom: 0;
  font-size: 14px;
  line-height: 21px;
}

.tooltip-content p:first-child {
  padding-bottom: 5px;
  font-size: 16px;
  line-height: 24px;
}

p {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans';
  font-size: 16px;
  line-height: 24px;
}

.button {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 15px 16px;
  border: 0;
  border-radius: 2px;
  color: #000;
  font-family: 'Montserrat';
  font-size: 16px;
  font-weight: 500;
  line-height: 14px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
}

.button-success {
  background-color: #45b61d;
  color: #fff;
  border-radius: 2px;
  font-size: 16px;
  line-height: 14px;
}

.button.loading{
  cursor: progress;
}
.button.loading:after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.5);
}

.button.button-bordered-light {
  border: 1px solid #f1f3f5;
  background-color: transparent;
  color: #f1f3f5;
}

.hide-mobile {
  display: block;
}

.hide-desktop {
  display: none;
}

.ladies-carousel .static-horizontal-girls-wrap {
  margin-top: 4px !important;
}

.defult-arrow-owl {
  position: relative;
  padding: 0 !important;
}

.ladies-carousel .static-horizontal-girls-wrap .static-horizontal-girls {
  margin: 0;
}

.defult-arrow-owl .owl-carousel {
  display: flex;
  flex-direction: column-reverse;
}

.static-horizontal-girls-wrap .static-horizontal-girls {
  margin-bottom: 30px;
}

.defult-arrow-owl .owl-carousel .owl-nav {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.defult-arrow-owl .owl-carousel .owl-nav img {
  width: 36px;
}

.owl-prev {
  transform: rotate(90deg);
}

.unlogin-landing .btn-large {
  height: 60px;
}

.unlogin-landing h2 {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  line-height: 59px;
  margin: 0;
}

.unlogin-landing .breadcrumbs-and-time-wrapper {
  display: none;
}

.unlogin-landing .page-content {
  background: none;
  box-shadow: none;
}

.unlogin-landing .container {
  max-width: 100%;
}

.unlogin-landing .grid-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.unlogin-landing .grid-container .page-content {
  width: 100%;
}

.unlogin-landing .grid-container .page-content:after {
  content: none;
}

.owl-dots {
  margin-top: 33px;
  width: 100%;
  text-align: center;
}

.owl-dots .owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px 0px;
  border-radius: 50%;
}

.owl-dots .owl-dot:last-child {
  margin-right: 0px;
}

.owl-dots .owl-dot.active {
  position: relative;
  top: 2px;
  width: 16px;
  height: 16px;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

:root {
  --gutter-width: 24px;
  --gutter-compensation: calc((var(--gutter-width) * 0.5) * -1);
  --half-gutter-width: calc((var(--gutter-width) * 0.5));
  --xs-min: 30;
  --sm-min: 48;
  --md-min: 64;
  --lg-min: 75;
  --screen-xs-min: var(--xs-min) em;
  --screen-sm-min: var(--sm-min) em;
  --screen-md-min: var(--md-min) em;
  --screen-lg-min: var(--lg-min) em;
  --container-sm: calc(var(--sm-min) + var(--gutter-width));
  --container-md: calc(var(--md-min) + var(--gutter-width));
  --container-lg: calc(var(--lg-min) + var(--gutter-width));
}

@custom-media --sm-viewport only screen and (min-width: 48em);
@custom-media --md-viewport only screen and (min-width: 64em);
@custom-media --lg-viewport only screen and (min-width: 75em);

.row {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: var(--gutter-compensation, -0.5rem);
  margin-left: var(--gutter-compensation, -0.5rem);
}

.container {
  width: var(--container-lg, 71rem);
}

.col-lg,
.col-lg-3,
.col-lg-6,
.col-lg-12 {
  box-sizing: border-box;
  flex: 0 0 auto;
  padding-right: var(--half-gutter-width, 0.5rem);
  padding-left: var(--half-gutter-width, 0.5rem);
}

.col-lg {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}

.col-lg-3 {
  flex-basis: 25%;
  max-width: 25%;
}

.col-lg-6 {
  flex-basis: 50%;
  max-width: 50%;
}

.col-lg-12 {
  flex-basis: 100%;
  max-width: 100%;
}

.main {
  background: url('../images/main-bg.jpg') no-repeat center right;
  background-size: cover;
  color: #fff;
  height: 100vh;
  position: relative;
}

.main .communications {
  margin-top: 20px;
}

.main .communications span {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
}

.main .communications .number {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  line-height: 59px;
}

.main h1 {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  line-height: 59px;
  margin: 0;
  color: #fff;
}

.main .match {
  margin-top: 167px;
}

.main .match p {
  margin-top: 20px;
}

.main .match .button {
  margin-top: 40px;
  width: 300px;
}

.main .advantages {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px 0;
  margin-top: 0;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.main .scroll-down-btn {
  width: calc(100% - 32px);
  margin: 0;
  position: absolute;
  bottom: 20px;
  left: 16px;
}

.main .scroll-down-btn img {
  margin-left: 10px;
  width: 16px;
}

.adv-item {
  text-align: center;
}

.adv-item img {
  margin: 0 auto;
  width: 100%;
}

.adv-item span {
  display: block;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  font-feature-settings: 'liga'off;
  color: #333333;
}

.adv-item span.strong {
  font-weight: 700;
}

.advantages-mobile {
  padding: 32px 0;
  background: #FFFFFF;
  display: none;
}

.advantages-mobile .advantages-carousel {
  border: 1px solid rgba(51, 51, 51, 0.3);
  border-radius: 10px;
  height: auto;
  width: 100%;
  padding: 24px 36px;
  position: relative;
}

.advantages-mobile .adv-item {
  text-align: center;
}

.advantages-mobile .adv-item img {
  width: auto !important;
}

.advantages-mobile .owl-nav .owl-prev,
.advantages-mobile .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: .7;
  width: 16px;
  height: 16px;
}

.advantages-mobile .owl-nav .owl-prev img,
.advantages-mobile .owl-nav .owl-next img {
  width: 16px;
}

.advantages-mobile .owl-nav .owl-prev {
  left: 14px;
}

.advantages-mobile .owl-nav .owl-prev img {
  transform: rotate(180deg);
}

.advantages-mobile .owl-nav .owl-next {
  right: 14px;
}

.ladies-carousel {
  padding: 96px 0;
  background-color: #fff;
}

.ladies-carousel h2 {
  text-align: center;
}

.ladies-carousel h2 .red {
  color: #933;
}

.ladies-carousel .links-block {
  text-align: center;
  margin-top: 30px;
}

.ladies-carousel .links-block a {
  color: #333333;
  font-size: 16px;
  line-height: 24px;
}

.ladies-carousel .links-block a:first-child {
  margin-right: 24px;
}

.ladies-carousel p {
  max-width: 684px;
  width: 100%;
  margin: 30px auto 0;
}

.ladies-carousel .button {
  max-width: 173px;
  margin: 30px auto 0;
}

.ladies-carousel .static-horizontal-girls-wrap {
  margin-top: 4px !important;
}

.ladies-carousel .static-horizontal-girls-wrap.defult-arrow-owl .owl-carousel .owl-nav .owl-next,
.ladies-carousel .static-horizontal-girls-wrap.defult-arrow-owl .owl-carousel .owl-nav .owl-prev {
  border-radius: 0;
  border: none;
}

.ladies-carousel .static-horizontal-girls-wrap.defult-arrow-owl .owl-carousel .owl-nav .owl-next svg,
.ladies-carousel .static-horizontal-girls-wrap.defult-arrow-owl .owl-carousel .owl-nav .owl-prev svg {
  font-size: 30px;
}

.ladies-carousel .static-horizontal-girls-wrap .static-horizontal-girls {
  margin: 0;
}

.ladies-carousel .static-horizontal-girls-wrap .static-horizontal-girls .item {
  width: 221px;
}

.about,
.why {
  background: url('../images/about-bg-2.png') no-repeat center center;
  background-size: cover;
  color: #fff;
  height: 100vh;
}

.about .grid-container,
.why .grid-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  flex-direction: column;
  height: 100%;
}

.about .about-image,
.why .about-image {
  width: calc(100% + 32px);
  position: relative;
  left: -16px;
}

.about .about-info,
.why .about-info {
  max-width: 586px;
}

.about p,
.why p,
.about ul,
.why ul {
  margin-top: 30px;
}

.about li,
.why li {
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  margin-top: 24px;
  padding-left: 20px;
  position: relative;
}

.about li:first-child,
.why li:first-child {
  margin-top: 0;
}

.about li::before,
.why li::before {
  content: '';
  background-color: #45B61D;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 100%;
}

.about .button,
.why .button {
  width: 136px;
  margin-top: 30px;
}

.about {
  position: relative;
}

.about .lady {
  position: absolute;
  top: 0;
  right: 0;
  width: 948px;
  height: 100vh;
  background-image: url('../images/about-lady.png');
  background-repeat: no-repeat;
  background-size: 100%;
}

.why {
  background: url('../images/about-2-bg.png') no-repeat center right;
  background-size: cover;
  color: #000;
}

.why p {
  margin-top: 8px;
}

.why ul {
  margin-top: 24px;
  margin-bottom: 0;
}

.steps {
  background-color: #1E1E1E;
  padding: 96px 0;
  color: #fff;
}

.steps h2 {
  text-align: center;
}

.steps .steps-block {
  margin-top: 30px;
}

.steps .steps-block .step-item {
  text-align: center;
}

.steps .steps-block .step-item img {
  max-width: 200px;
  margin: 0 auto;
}

.steps .steps-block .step-item .title {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  margin-top: 16px;
}

.steps .steps-block .step-item span {
  margin-top: 8px;
  display: block;
}

.steps .steps-block .owl-dot {
  background-color: #fff;
}

.steps .button {
  margin-top: 30px;
  width: 187px;
}

.reviews {
  color: #000;
  padding: 96px 0;
  background-color: #fff;
}

.reviews h2 {
  text-align: center;
}

.reviews .grid-container {
  background: url('../images/reviews-bg.png') no-repeat;
  background-size: 176px;
  background-position: 100% 0;
}

.reviews .reviews-block {
  margin-top: 30px;
}

.reviews .reviews-item .review-text {
  background: #FFFFFF;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.05);
  padding: 20px;
}

.reviews .reviews-item .review-text h4 {
  margin: 0;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
}

.reviews .reviews-item .review-text p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 21px;
}

.reviews .reviews-item .details {
  margin-top: 20px;
  text-align: center;
}

.reviews .reviews-item .details img {
  display: block;
  width: 60px;
  margin: 0 auto;
}

.reviews .reviews-item .details .name {
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
  margin-top: 8px;
}

.reviews .reviews-item .details .date {
  font-size: 14px;
  line-height: 21px;
  margin: 0;
}

.reviews .button {
  width: 226px;
  margin-top: 50px;
}

.reviews .owl-dot {
  background-color: #858585 !important;
}

.stories {
  background-color: #fff;
  padding-bottom: 96px;
}

.stories h2 {
  margin-bottom: 30px;
}

.stories .button {
  margin-top: 15px;
}

.massonry-desctop {
  display: block;
}

.massonry-mobile {
  display: none;
}

.massonry-box-profile {
  transition: 0.3s;
  max-width: calc((100%/3) - 16px);
  overflow: hidden;
}

.massonry-box-profile.wide {
  max-width: calc((100% - (100%/3)) - 10px);
}

.massonry-box-profile.wide .text {
  max-height: 48px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.massonry-box-profile.center .text {
  max-height: 144px;
  -webkit-line-clamp: 6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.massonry-photo-container {
  /* height: 100%; */
}

.massonry-photo-container.p_h {
  width: 100%;
}

.massonry-photo-container:nth-child(2) {
  float: right;
}

.massonry-photo-container img {
  margin-bottom: 24px;
  width: 100%;
  /* height: 100%; */
}

.massonry-photo-container span {
  display: block;
  color: #fff;
}

.massonry-photo-container .name {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 8px;
}

.massonry-photo-container .date {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
}

.massonry-photo-container .text {
  margin-bottom: 8px;
  max-height: 312px;
  overflow: hidden;
  -webkit-line-clamp: 13;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.massonry-photo-container a {
  text-decoration: none;
}

.massonry-photo-container .title {
  opacity: 1;
  position: absolute;
  top: 20px;
  left: 20px;
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

.massonry-photo-container .info {
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 24px);
  z-index: 3;
  padding: 20px;
}

.massonry-photo-container:hover .title {
  opacity: 0;
}

.massonry-photo-container:hover .info {
  opacity: 1;
}

.massonry-photo-container.massonry-mobile {
  width: 100%;
  position: relative;
  height: auto;
}

.massonry-photo-container.massonry-mobile img {
  margin: 0;
  height: auto;
}

.dating-tips {
  background-color: #fff;
  padding-bottom: 150px;
}

.dating-tips h2+p {
  margin-top: 16px;
}

.dating-tips-block .dating-tips-item {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #000;
}

.dating-tips-block .dating-tips-item:active {
  color: #000;
}

.dating-tips-block .dating-tips-item .image {
  position: relative;
  width: 100%;
  border-radius: 4px;
  max-width: 330px;
  height: 170px;
  overflow: hidden;
}

.dating-tips-block .dating-tips-item .image span {
  position: absolute;
  top: 0%;
  left: 0%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 3;
  opacity: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  text-transform: uppercase;
}

.dating-tips-block .dating-tips-item .image::before {
  content: '';
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.dating-tips-block .dating-tips-item .image img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.dating-tips-block .dating-tips-item:hover .image span {
  opacity: 1;
}

.dating-tips-block .dating-tips-item:hover .image::before {
  opacity: 1;
}

.dating-tips-block .dating-tips-item .title {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  margin-top: 16px;
  flex-grow: 1;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dating-tips-block .dating-tips-item .text {
  margin-top: 8px;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dating-tips-block .dating-tips-item .author {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  margin-top: 24px;
  cursor: default;
}

.dating-tips-block .dating-tips-item .author img {
  margin-right: 16px;
  max-width: 60px;
}

.dating-tips-block .dating-tips-item .author .name,
.dating-tips-block .dating-tips-item .author .date {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  display: block;
}

.dating-tips-block .dating-tips-item .author .date {
  margin-top: 4px;
}

.dating-tips-block .dating-tips-item .author .author-info {
  position: absolute;
  top: 75px;
  left: 0;
  width: 100%;
  border: 1px solid #C2C8CE;
  border-radius: 2px;
  padding: 20px;
}

.dating-tips-block .dating-tips-item .author .author-info::before,
.dating-tips-block .dating-tips-item .author .author-info::after {
  left: 20px;
  transform: none;
}

.dating-tips-block .owl-dot {
  background-color: #858585 !important;
}

.dating-chat {
  padding: 96px 0;
  background-color: #fff;
  min-height: 590px;
}

.dating-chat .grid-container {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  flex-direction: column;
  min-height: 590px;
}

.dating-chat .dating-chat-image {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 630px;
  height: 590px;
  background: url('../images/chat-image.png') no-repeat;
  background-position: 0 0;
  background-size: 100%;
}

.dating-chat p {
  margin-top: 16px;
  font-size: 18px;
  line-height: 32px;
}

.dating-chat .button {
  margin-top: 30px;
  width: 160px;
}

.register-bottom {
  background: url('../images/register-bg.jpg') no-repeat 0 0;
  height: 100vh;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
}

.landing-auth-bock .popup-wrapper-auth {
  display: block;
  width: 720px;
  height: 580px;
  position: relative;
}

.landing-auth-bock .popup-wrapper-auth .switcher-btn {
  font-family: 'Montserrat';
  border: 2px solid #FFFFFF;
  border-radius: 2px;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 11px 16px;
  background: none;
  cursor: pointer;
}

.landing-auth-bock .popup-wrapper-auth .frontbox {
  top: 0;
}

.landing-auth-bock .popup-wrapper-auth.youtube-bg .backbox {
  background: url('../images/auth-youtube-bg.jpg') no-repeat center;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@keyframes fadeInDown20 {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInDown20 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown20 {
  -webkit-animation-name: fadeInDown20;
  animation-name: fadeInDown20;
}

@keyframes fadeInDown40 {
  from {
    opacity: 0;
    transform: translate3d(0, -40px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInDown40 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -40px, 0);
    transform: translate3d(0, -40px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown40 {
  -webkit-animation-name: fadeInDown40;
  animation-name: fadeInDown40;
}

@keyframes fadeInDown180 {
  from {
    opacity: 0;
    transform: translate3d(0, -180px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInDown180 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -180px, 0);
    transform: translate3d(0, -180px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown180 {
  -webkit-animation-name: fadeInDown180;
  animation-name: fadeInDown180;
}

.animatable {
  visibility: hidden;
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -ms-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}

.animated {
  visibility: visible;
  animation-fill-mode: both;
  animation-duration: .8s;
  animation-play-state: running;
}

.delay-1s {
  animation-delay: 0.1s;
}

.delay-2s {
  animation-delay: 0.2s;
}

.delay-3s {
  animation-delay: 0.3s;
}

.delay-4s {
  animation-delay: 0.4s;
}

.delay-8s {
  animation-delay: 0.8s;
}

.delay-12s {
  animation-delay: 1.2s;
}

.delay-16s {
  animation-delay: 1.6s;
}

.delay-20s {
  animation-delay: 2s;
}
.delay-5s {
  animation-delay: 0.5s;
}
.delay-10s {
  animation-delay: 1.0s;
}
.delay-15s {
  animation-delay: 1.5s;
}
.delay-25s {
  animation-delay: 2.5s;
}
.popup-wrapper-auth {
  height: 100%;
}

.popup-wrapper-auth.active {
  display: inline-flex;
}

.popup-wrapper-auth .backbox {
  background: url('../images/login-back.jpg') no-repeat center;
  width: 100%;
  height: 100%;
  display: inline-flex;
}

.popup-wrapper-auth .frontbox {
  width: 50%;
  z-index: 10;
  position: absolute;
  right: 0;
  transition: right 0.2s ease-in-out;
}

.popup-wrapper-auth .frontbox .form-auth {
  height: 580px;
}

.form-auth[data-currentform=signup] .form-auth-tab-content.signup, 
.form-auth[data-currentform=signin] .form-auth-tab-content.signin,
.form-auth[data-currentform=forgotpassword] .form-auth-tab-content.forgotpassword {
  width: 100%;
  height: calc(100% - 65px - 16px);
  opacity: 1;
  z-index: 2;
}

.popup-wrapper-auth .moving {
  right: 50%;
}

.popup-wrapper-auth .visibility {
  opacity: 0;
}

.form-auth {
  height: 580px;
}

.form-auth .form-auth-tab-content {
  display: flex;
  opacity: 0;
  /* transition: opacity 0.8s ease-in-out; */
  position: absolute;
  top: 81px;
  left: 0;
  z-index: 0;
  height: 580px;
}

.form-auth .form-auth-tab-content .header-login {
  text-align: center;
  padding: 30px 0;
}

.form-auth .form-auth-tab-content .header-login p {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
  color: #45B61D;
  padding-bottom: 0;
}

input[type='number']:not([class]),
input[type='text']:not([class]),
input[type='email']:not([class]),
input[type='phone']:not([class]),
input[type='password']:not([class]) {
  display: block;
  width: 100%;
  padding: 0 10px;
  transition: all 0.3s;
  border: 1px solid #858585;
  border-radius: 2px;
  background-color: #fdfdfd;
  color: #333;
  font-family: 'Open Sans';
  font-size: 1rem;
  filter: none;
}

input[type='number']:not([class]):not(textarea):not(.prettytextfield):not(select),
input[type='text']:not([class]):not(textarea):not(.prettytextfield):not(select),
input[type='email']:not([class]):not(textarea):not(.prettytextfield):not(select),
input[type='phone']:not([class]):not(textarea):not(.prettytextfield):not(select),
input[type='password']:not([class]):not(textarea):not(.prettytextfield):not(select) {
  height: 44px;
  line-height: 44px;
}

input[type='number']:not([class]):focus,
input[type='text']:not([class]):focus,
input[type='email']:not([class]):focus,
input[type='phone']:not([class]):focus,
input[type='password']:not([class]):focus,
input[type='number']:not([class]):focus-within,
input[type='text']:not([class]):focus-within,
input[type='email']:not([class]):focus-within,
input[type='phone']:not([class]):focus-within,
input[type='password']:not([class]):focus-within {
  outline: none;
  background-color: #fff;
}

/* input[type='number']:not([class]):focus+label,
input[type='text']:not([class]):focus+label,
input[type='email']:not([class]):focus+label,
input[type='phone']:not([class]):focus+label,
input[type='password']:not([class]):focus+label,
input[type='number']:not([class]):focus-within+label,
input[type='text']:not([class]):focus-within+label,
input[type='email']:not([class]):focus-within+label,
input[type='phone']:not([class]):focus-within+label,
input[type='password']:not([class]):focus-within+label {
  top: -7px;
  background-color: #fdfdfd;
  color: #000;
  font-size: 12px;
} */

input[type='number']:not([class]):disabled,
input[type='text']:not([class]):disabled,
input[type='email']:not([class]):disabled,
input[type='phone']:not([class]):disabled,
input[type='password']:not([class]):disabled {
  background-color: #ebebeb;
  cursor: not-allowed;
}

input[type='number']:not([class])+label,
input[type='text']:not([class])+label,
input[type='email']:not([class])+label,
input[type='phone']:not([class])+label,
input[type='password']:not([class])+label {
  position: absolute;
  top: 46px;
  left: 0px;
  transition: all 0.1s linear;
  color: #858585;
  font-family: 'Open Sans';
  font-size: 1em;
  line-height: 1em;
  cursor: text;
  pointer-events: none;
}

input[type='number']:not([class])+label:after,
input[type='text']:not([class])+label:after,
input[type='email']:not([class])+label:after,
input[type='phone']:not([class])+label:after,
input[type='password']:not([class])+label:after {
  content: attr(data-placeholder);
}
input::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-animation-name: autofill;
  -webkit-animation-fill-mode: both;
  background-color: #fdfdfd !important;
  -webkit-box-shadow: 0 0 0 50px white inset;
}

input:-internal-autofill-selected {
  background-color: #fdfdfd;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

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

input[type=number]:hover,
input[type=number]:focus {
  -moz-appearance: number-input;
}
.form-auth {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 480px;
  max-height: 580px;
  background: #f1f3f5;
}

.form-auth .bottom-container .social-icon {
  font-size: 44px;
  line-height: 44px;
}

.form-auth .bottom-container .description {
  font-size: 14px;
  text-align: center;
  margin-bottom: 10px;
}

.form-auth[data-currentform="signup"] .form-auth-tab-content.signup,
.form-auth[data-currentform="loginerror"] .form-auth-tab-content.loginerror,
.form-auth[data-currentform="signin"] .form-auth-tab-content.signin,
.form-auth[data-currentform="forgotpassword"] .form-auth-tab-content.forgotpassword {
  display: flex;
}


.form-auth .form-auth-tab-content {
  display: none;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 20px 20px;
}

.form-auth .form-auth-tab-content .forgotpassword,
.form-auth .form-auth-tab-content .forgotpassword-no {
  color: #000;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
}

.form-auth .form-auth-tab-content .forgotpassword-no {
  margin-top: 15px;
  display: block;
  text-align: center;
}

.form-auth .form-auth-tab-content .input-container {
  display: block;
  margin-bottom: 20px;
  /* grid-row-gap: 20px; */
}

.form-auth .form-auth-tab-content .input-container p {
  font-family: 'Open Sans';
  font-size: 15px;
  margin-bottom: 15px;
}

.form-auth .form-auth-tab-content .input-container.with-error {
  grid-row-gap: 0px;
}

.form-auth .form-auth-tab-content .input-container.with-error .input-row {
  margin-bottom: 20px;
}

.form-auth .form-auth-tab-content .input-container.with-error .input-row.error {
  margin-bottom: 5px;
}

.form-auth .form-auth-tab-content .input-container.with-error .button {
  margin-top: 20px;
}

.form-auth .form-auth-tab-content .social-btn-login {
  display: flex;
  justify-content: center;
}

.form-auth .form-auth-tab-content .social-btn-login>a:not(:last-child) {
  margin-right: 20px;
}

.form-auth .form-auth-tab-content .social-btn-login .twitter svg {
  color: #1B95E0;
  fill: #1B95E0;
}

.form-auth .form-auth-tab-content .bottom-container {
  text-align: center;
}

.form-auth .form-auth-tab-content.signin {
  flex: inherit;
}

.form-auth .form-auth-tab-content.signin .bottom-container {
  margin-top: 60px;
}

.login-message {
  margin-bottom: 10px;
}

.input-row,
.checkbox-row {
  position: relative;
  margin-bottom: 20px;
}
.input-row.error,
.checkbox-row.error {
  margin-bottom: 30px;
}

.input-row img {
  position: absolute;
  top: -30px;
  right: 10px;
  fill: #858585;
}
.checkbox-row img {
  position: absolute;
  top: 5px;
  left: 10px;

}

.input-row .icon img,
.checkbox-row .icon img {
  height: 100%;
}

.input-row .error-label,
.checkbox-row .error-label{
  display: none;
  line-height: 1;
}

.input-row .error-label {
  position: absolute;
  width: calc(100% - 10px);
}

.checkbox-row.error input[type="checkbox"]+label:before {
  border-color: #f00;
}

.input-row.error input[type="number"],
.input-row.error input[type="text"],
.input-row.error input[type="email"],
.input-row.error input[type="phone"],
.input-row.error input[type="password"] {
  border-color: #f00;
}

.input-row.error .icon.error,
.checkbox-row.error .icon.error {
  display: inline-block;
  fill: #f00;
}

.input-row.error .error-label,
.checkbox-row.error .error-label {
  display: block;
  margin-right: 0;
  transition: height 0.2s ease-out;
  z-index: 1;
  line-height: 1;
}

.input-row.error .error-label:after,
.checkbox-row.error .error-label:after {
  padding: 0 11px;
  font-size: 12px;
  color: #FC0D1B;
  line-height: 15px;
  content: attr(data-error);
}

.checkbox-row.error .error-label:after {
  color: #fff;
  margin-left: 20px;
}

.input-row.error .error-label .uadicon-danger,
.checkbox-row.error .error-label .uadicon-danger {
  margin-right: 5px;
  vertical-align: middle;
}

.input-row.is-focused input:not([class]),
.checkbox-row.is-focused input:not([class]) {
  outline: none;
  background-color: #fff;
}

.input-row.is-focused input:not([class])+label,
.checkbox-row.is-focused input:not([class])+label {
  top: -7px;
  background-color: #fdfdfd;
  color: #000;
  font-size: 12px;
  opacity: 1;
}

.input-row .icon,
.checkbox-row .icon {
  position: absolute;
  top: 10px;
  right: 10px;
  fill: #858585;
}
.input-row .icon.error,
.checkbox-row .icon.error {
  height: 16px;
  width: 16px;
  top: 14px;
  right: 14px;
}

.nav-tabs {
  display: flex;
  align-items: flex-end;
  margin: 0px 20px 0px;
}

.nav-tabs .nav-item {
  border-bottom: 1px solid #c2c8ce;
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 20px 17px;
  color: #000;
  font-family: 'Montserrat';
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-tabs .nav-item.active,
.nav-tabs .nav-item:hover {
  color: #933;
}

.nav-tabs .nav-item.active:after,
.nav-tabs .nav-item:hover:after {
  display: block;
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  content: '';
}

.nav-tabs .nav-item:hover:after {
  border-bottom: 3px solid #933;
}

.nav-tabs .nav-item.active {
  color: #933;
  font-weight: 700;
}

.nav-tabs .nav-item.active:after {
  border-bottom: 3px solid #933;
}

.nav-tabs .nav-item.active .green {
  color: #933;
}

.nav-tabs .nav-item.next .uadicon {
  margin-left: 5px;
}

.nav-tabs .nav-item>span {
  margin: 0 5px;
}

.nav-tabs .nav-item .uadicon {
  margin-right: 5px;
}

.nav-tabs .content {
  width: 100%;
  position: relative;
}
.nav-tabs.expand-items .nav-item {
  flex-grow: 1;
}

.nav-tabs.color-green .nav-item.active,
.nav-tabs.color-green .nav-item:hover{
  color: #45B61D;
}

.nav-tabs.color-green .nav-item.active:after,
.nav-tabs.color-green .nav-item:hover:after {
  border-color: #45B61D;
}

.tab-content {
  padding: 0 20px;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.captcha-block {
  align-items: flex-start;
}

.captcha-block .error-label {
  width: 120px;
}

.captcha-img {
  height: 44px;
  flex-shrink: 0;
}

.button-reload {
  flex-shrink: 0;
  padding: 0;
}

.button-reload img {
  width: 44px;
}

.loginaction {
  width: 100%;
}

input[type='checkbox']:not([class]) {
  display: none;
}

input[type='checkbox']:not([class])+label {
  display: inline-block;
  position: relative;
  min-height: 23px;
  padding-left: 31px;
  font-size: 14px;
  line-height: 23px;
  font-family: 'Open Sans';
  cursor: pointer;
}

input[type='checkbox']:not([class])+label:before,
input[type='checkbox']:not([class])+label:after {
  display: block;
  position: absolute;
  content: '';
}

input[type='checkbox']:not([class])+label:before {
  left: 0;
  width: 21px;
  height: 21px;
  border: 1px solid #333;
  border-radius: 2px;
}

input[type='checkbox']:not([class])+label:after {
  display: none;
  top: 0;
  left: 0;
  background: url('../images/Check.svg') 50% 50% no-repeat;
  width: 21px;
  height: 21px;
  background-size: contain;
}

input[type='checkbox']:not([class]):checked+label:after {
  display: inline-block;
}
.checkbox-row.error .error-label {
  display: block;
  position: relative;
}

.checkbox-row .error-label {
  display: none;
  margin-top: 5px;
  padding: 5px;
  background-color: #f00;
  color: #fff;
  font-size: 12px;
}

.checkbox-row.checkbox-right input[type='checkbox']:not([class])+label {
  padding-left: 0;
  text-align: left;
}

.checkbox-row.checkbox-right input[type='checkbox']:not([class])+label::before {
  right: 0;
  left: auto;
}

.checkbox-row.checkbox-right input[type='checkbox']:not([class])+label::after {
  right: 3px;
  left: auto;
}

footer {
  margin-top: 100px;
  margin-bottom: 40px;
  width: 100%;
}

.links-footer {
  margin-top: 20px;
  margin-bottom: 10px;
}

.links-footer a {
  margin-right: 10px;
  font-family: 'Montserrat';
  font-size: 14px;
  line-height: 21px;
  color: #000;
  text-decoration: underline;
}

.links-footer a:last-child {
  margin-right: 0;
}

.links-footer_wrap {
  padding: 20px 80px;
}

.copyright-footer {
  width: 100%;
  text-align: center;
}

.copyright-footer p {
  font-family: 'Montserrat';
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 10px;
}

.policy-wrapper .visa {
  width: 66px;
}

.policy-wrapper img {
  margin-right: 15px;
}

.dmca-badge {
  display: flex;
  align-items: center;
}

.chat-preview {
  background: url('../images/chat-preview-bg.jpg') no-repeat;
  min-height: 636px;
  background-size: cover;
  background-position: center;
  padding: 45px 0 30px;
}
.chat-preview h2 {
  color: #fff;
  padding-bottom: 4px;
  text-align: center;
}
.chat-preview p {
  font-weight: bold;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 30px;
}
.chat-preview .main-container {
  max-width: 1000px;
  height: 540px;
  position: relative;
  margin: 0 auto;
}
.chat-preview .main-container .video-chat {
  position: absolute;
  left: 165px;
  top: 45px;
}
.chat-preview .main-container .chat-container {
  position: absolute;
  right: 160px;
  top: 119px;
  width: 340px;
  height: 413px;
}
.chat-preview .main-container .chat-container .message {
  border-radius: 15px 15px 15px 0;
  background: #FFFFFF;
  margin-bottom: 8px;
  padding: 4px 10px;
  display: block;
  max-width: 184px;
  width: fit-content;
}
.chat-preview .main-container .chat-container .message .strong {
  font-weight: bold;
}
.chat-preview .main-container .chat-container .message.wink {
  background: transparent;
}


@media screen and (max-width: 999px) {
  .unlogin-landing h2 {
    font-size: 32px;
    line-height: 39px;
    text-align: center;
    width: 100%;
  }

  .col-md,
  .col-md-6,
  .col-md-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: var(--half-gutter-width, 0.5rem);
    padding-left: var(--half-gutter-width, 0.5rem);
  }

  .col-md {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .main {
    /* margin-top: 43px; */
    background-position: -600px 0;
    /* height: calc(100vh - 43px); */
    position: relative;
  }

  .main .match {
    margin-top: 211px;
  }

  .main .match .button {
    display: none;
  }

  .main .advantages {
    margin-top: 0;
    padding: 24px 0;
    position: absolute;
    bottom: 0;
    width: 100%;
  }

  .adv-item {
    max-width: 220px;
    margin: 0 auto;
  }

  .adv-item img {
    height: 52px;
    width: auto !important;
  }

  .adv-item span {
    font-size: 13px;
    line-height: 18px;
  }

  .ladies-carousel .button {
    max-width: 100%;
    width: 100%;
  }

  .ladies-carousel .static-horizontal-girls-wrap.defult-arrow-owl .owl-carousel .owl-nav .owl-next,
  .ladies-carousel .static-horizontal-girls-wrap.defult-arrow-owl .owl-carousel .owl-nav .owl-prev {
    display: none;
  }

  .ladies-carousel .static-horizontal-girls-wrap .static-horizontal-girls .item {
    width: 220px;
  }

  .about .lady {
    background-image: url('../images/about-lady-tab.png');
    width: 488px;
  }

  .why {
    background-position: 70% 0;
  }

  .massonry-box-profile {
    max-width: calc((100%/3) - 12px);
  }

  .massonry-box-profile.wide {
    max-width: calc((100% - (100%/3)) - 8px);
  }

  .massonry-photo-container img {
    margin-bottom: 16px;
    height: auto;
  }

  .massonry-photo-container .name {
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 4px;
  }

  .massonry-photo-container .date {
    font-size: 14px;
    line-height: 21px;
  }

  .massonry-photo-container .title {
    top: 10px;
    left: 10px;
  }

  .massonry-photo-container .info {
    display: none;
  }

  .massonry-photo-container:hover .title {
    opacity: 1;
  }

  .dating-tips {
    padding-bottom: 0;
  }

  .dating-tips-block .dating-tips-item .image {
    max-width: 100%;
  }

  .dating-tips-block .dating-tips-item .author .author-info {
    display: none;
  }

  .dating-chat .dating-chat-image {
    right: -150px;
  }

  .landing-auth-bock .popup-wrapper-auth {
    width: 360px;
  }

  .landing-auth-bock .popup-wrapper-auth .frontbox {
    position: initial;
    width: 100%;
  }

  .landing-auth-bock .popup-wrapper-auth .backbox {
    display: none;
  }

  .no-aminamted-mob {
    animation: none;
    visibility: visible;
  }
}
@media screen and (max-height: 864px) {
  .main .match {
    margin-top: 100px;
  }
}
@media screen and (max-width: 850px) {
  .dating-chat .dating-chat-image {
    right: -225px;
  }
}
@media screen and (max-width: 768px) {
  .girl-photo-wrap .shadow-all {
    display: none;
  }

  .popup-wrapper-auth .backbox {
    display: none;
  }

  .popup-wrapper-auth .frontbox {
    width: 100%;
    height: 100%;
  }

  .popup-wrapper-auth .frontbox .form-auth {
    height: 100%;
  }

  .popup-wrapper-auth .frontbox .form-auth .form-auth-tab-content {
    height: 100%;
  }

  .popup-wrapper-auth .moving {
    right: 0;
  }

  .form-auth {
    height: 100%;
  }

  .form-auth .form-auth-tab-content {
    height: 100%;
  }

  .form-auth .form-auth-tab-content .forgotpassword .cross,
  .form-auth .form-auth-tab-content .forgotpassword-no .cross {
    position: absolute;
  }

  .nav-tabs {
    margin: 0;
    background-color: #f1f3f5;
    overflow-x: auto;
  }

  .nav-tabs::-webkit-scrollbar {
    width: 0px;
    height: 0;
    background: rgba(255, 255, 255, 0);
  }

  .nav-tabs .nav-item {
    padding: 15px 6px;
  }

  .main .match {
    margin-top: 80px;
  }
}
@media screen and (max-width: 600px) {

  .about,
  .why {
    padding: 33px 0;
  }

  .about .about-info,
  .why .about-info {
    max-width: 470px;
  }
  .top-auth{
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .hide-mobile {
    display: none;
  }

  .hide-desktop {
    display: block;
  }

  .unlogin-landing .grid-container {
    padding: 0 16px;
  }

  .col-sm,
  .col-sm-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: var(--half-gutter-width, 0.5rem);
    padding-left: var(--half-gutter-width, 0.5rem);
  }

  .col-sm {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .main {
    margin-top: 0;
    background-position: 65% 0;
    padding-bottom: 16px;
  }

  .main .communications {
    margin-top: 32px;
  }

  .main .communications .number {
    font-size: 32px;
    line-height: 39px;
  }

  .main h1 {
    font-size: 32px;
    line-height: 39px;
  }

  .main .match {
    margin-top: 120px;
  }

  .main .advantages {
    margin-top: 147px;
    display: none;
  }

  .advantages-mobile {
    display: block;
  }

  .ladies-carousel {
    padding: 48px 0;
  }

  .ladies-carousel .static-horizontal-girls-wrap .static-horizontal-girls .item {
    width: 271px;
  }

  .about,
  .why {
    color: #000;
    margin-top: 0;
    padding-bottom: 16px;
    background: #fff;
    background-image: none;
    padding-top: 0;
    height: auto;
  }

  .about .grid-container,
  .why .grid-container {
    display: block;
    height: auto;
  }

  .about h2,
  .why h2 {
    margin-top: 24px;
  }

  .about .about-info,
  .why .about-info {
    max-width: 100%;
  }

  .about .button,
  .why .button {
    width: 100%;
  }

  .why {
    color: #000;
    margin-top: 0;
    background: #fff;
    background-image: none;
    height: auto;
  }

  .reviews {
    padding: 48px 0;
  }

  .reviews .grid-container {
    background: none;
  }

  .reviews-block {
    display: block;
    width: 100%;
    margin: 30px auto 0;
  }

  .stories .button {
    width: 100%;
    margin-top: 30px;
  }

  .massonry-desctop {
    display: none;
  }

  .massonry-mobile {
    display: block;
    height: auto;
  }

  .massonry-photo-container:nth-child(2) {
    float: none;
  }

  .massonry-photo-container .name {
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
  }

  .massonry-photo-container .date {
    font-size: 18px;
    line-height: 28px;
  }

  .dating-tips {
    padding-bottom: 0;
  }

  .dating-tips-block {
    display: block;
    width: 100%;
    margin: 0 auto;
  }

  .dating-tips-block .dating-tips-item {
    padding: 0;
  }

  .dating-chat {
    padding: 48px 0;
  }

  .dating-chat .button {
    width: 100%;
    margin-top: 10px;
  }

  .dating-chat img {
    width: 100%;
    margin-top: 30px;
  }

  .register-bottom {
    background: none;
    height: auto;
  }

  .landing-auth-bock .popup-wrapper-auth {
    width: 100vw;
  }

  .links-footer {
    flex-wrap: wrap;
  }

  .links-footer_wrap {
    padding: 20px 16px;
  }

  .policy-wrapper {
    flex-direction: column;
  }
  .chat-preview {
    padding: 22px 0 63px;
    min-height: 100%;
    height: auto;
    background-image: none;
    background-color: #fff;
  }
  .chat-preview h2 {
    color: #000;
    padding-bottom: 0;
    padding-top: 22px;
  }
  .chat-preview .main-container img {
    margin: 0 auto;
  }
  .chat-preview .main-container {
    height: auto;
    margin: 46px 0 0;
  }
  .chat-preview .main-container .video-chat {
    width: 226px;
    max-height: 224px;
    overflow: hidden;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
  .chat-preview .main-container .video-chat video {
    width: 100%;
  }
  .chat-preview .main-container .chat-container {
    width: 224px;
    height: auto;
    z-index: 1;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: 65px;
    background: #F1F3F5;
  }
  .chat-preview .main-container .chat-container .text-chat {
    display: flex;
    flex-direction: column-reverse;
  }
  .chat-preview .main-container .mockup {
    position: relative;
    z-index: 3;
    display: block;
  }
}

.nav-tabs .nav-item {
  cursor: pointer;
}

.popup-wrapper-auth .backbox .login-msg, .popup-wrapper-auth .backbox .signup-msg {
  width: 50%;
  height: 100%;
  font-size: 15px;
  position: relative;
}

.popup-wrapper-auth .backbox .login-msg .text-content, .popup-wrapper-auth .backbox .signup-msg .text-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  text-align: center;
}

.popup-wrapper-auth .backbox .login-msg .text-content .title, .popup-wrapper-auth .backbox .signup-msg .text-content .title {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  color: #fff;
  margin-bottom: 30px;
}

.slide-login-form .switcher-btn {
  font-family: Montserrat;
  border: 2px solid #fff;
  border-radius: 2px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #fff;
  padding: 11px 16px;
  background: none;
  cursor: pointer;
}

.stay {
  margin-top: 15px;
}

.top-auth {
  width: 331px;
  height: 480px;
  background-color: #ECF0F1;
  position: absolute;
  top: 120px;
  right: 120px;
  color: #000;
}

.errors{
  color: #FC0D1B;
}

.recaptcha {
  margin-top: 0;
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  padding: 0 20px 0;
  text-align: center;
  font-size: 12px;
  line-height: 16px;
}

.grecaptcha-badge {
  display: none !important;
}

/* .hide {
  display: none !important;
} */