@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
	display: block;
}

html,
body,
form,
.step {
	height: 100%;
	width: 100%;
	/* font-family: 'Poppins', sans-serif; */
	font-family:'Inter';
}


[hidden] {
	display: none;
}

html {
	font-family: sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
    padding: 0;
    overflow-x: hidden; 
}


.step footer,
.upgrade footer,
.results footer {
	display: none !important;
}


.container-bg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    min-height: 95vh;
    height: 100%;
    width: 100vw;
    max-width: 440px;
    object-fit: cover;
	background-color: var(--main-grey-color);
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden; 
    z-index: 0;
}

.fondo-matches-error {
    background-image: url('../images/bg_matches.jpg');
  }
  

.step {
	position: absolute;
	margin: 0 auto;
	text-align: center;
	-webkit-transition: transform 0.2s ease;
	-moz-transition: transform 0.2s ease;
	-o-transition: transform 0.2s ease;
	transition: transform 0.2s ease;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
    z-index: 1;
} 


/*** Step effects ***/
.step[data-effect="zoom"] {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}

 .step[data-effect="left"] {
	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	-ms-transform: translateX(100%);
	-o-transform: translateX(100%);
	transform: translateX(100%);
} 
.step[data-effect="up"] {
	-webkit-transform: translateY(100%);
	-moz-transform: translateY(100%);
	-ms-transform: translateY(100%);
	-o-transform: translateY(100%);
	transform: translateY(100%);
}

.step[data-effect="turn"] {
	-webkit-transform: rotate3d(0, 1, 0, 90deg);
	-moz-transform: rotate3d(0, 1, 0, 90deg);
	-ms-transform: rotate3d(0, 1, 0, 90deg);
	-o-transform: rotate3d(0, 1, 0, 90deg);
	transform: rotate3d(0, 1, 0, 90deg);
}

.step[data-step="1"] {
	
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	-webkit-transform: none;
	transform: none;
	/* transform: translateX(0); */
} 



:root {
	--main-color: #FF5A00;
	--main-grey-color: #0d0d0d;
	--black-color: #000000;
	--second-color: #FF004D;
	--title-color: #ffffff;
}


footer {
  position: absolute;
  bottom: 0;
  display: flex; 
  justify-content: center; 
  align-items: center; 
  padding-top: 5px;

  background-color: var(--main-color);
  color: var(--title-color);
  width: 100%;
  z-index: 5;
}

footer ul {
  color: var(--title-color);
  list-style: none;
  padding: 0;
  margin: 5px 0;
  display: flex;
  gap: 15px;
}

footer li {
  margin-right: 0 !important; 
}

footer a {
  color: var(--title-color);
  text-decoration: none;
  font-size: 14px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 30px; 
  letter-spacing: -0.2px;
}


.notification {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;

  border-color: var(--main-color);
  border-style: solid;
  border-width: 2px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  padding: 8px 12px;
  display: flex;
  flex-direction: row;      
  align-items: center;        
  justify-content: center;   
  gap: 15px;
  opacity: 0;
  transition: all 0.8s ease;
  z-index: 15;
  width: 92%;
  /* max-width: 90vw; */
}

.notification.show {
  top: 70px;
  opacity: 1;
}

.profile-container {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.profile-pic {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.status-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background-color: #00c853;
  border: 2px solid white;
  border-radius: 50%;
}

.notification-text {
  text-align: left;
  font-size: 14px;
  color: #333;
  line-height: 1.2;
}

@media (min-width: 768px) {
  
  .notification {
    top: auto;
    bottom: -100px;
    left: 150px;
    transform: none;
    width: auto;
    max-width: 350px;
  }

  .notification.show {
    bottom: 50px;
    top: auto;
  }
}

/* CSS NEW */
/* STEP 1 */

.container-starting {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    min-height: 95vh;
    height: 100%;
    width: 100vw;
    max-width: 440px;
    object-fit: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative; 
    overflow: hidden; 
    z-index: 2;
}
.container-starting::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 1) 65%);
    z-index: 1; 
}




.section-starting {
    position: relative;
    margin-top: auto;
    margin-bottom: 25px;
    align-items: center;
    padding: 0px 40px;
    z-index: 2; 
}



 


.header{
	margin-top: 30px;
	margin-bottom: 20px;
	padding: 0 20px;
}
.logo {
    width: 100%; 
    max-width: 120px; 
    margin: auto;
	margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.logo img {
    width: 100%; 
    height: auto; 
}
.title {
	 font-size: 36px;
	font-weight: bold; 
	color: var(--title-color);
	margin-top: 10px; 
}
.highlight {
	color: var(--main-color)
}
.subtitle {
	font-size: 28px;
	margin-top: 10px;
	font-weight: 500; 
	color: var(--title-color)
}
.text{
	font-size: 18px;
	margin-top: 10px;
	font-weight: 200; 
	color: var(--title-color)
}

.next-button-big {
	width: 100%;
	padding: 12px;
	background: var(--main-color);
	color: white;
	font-size: 18px;
	border-radius: 10px;
	
	cursor: pointer;
	border: none;       
	outline: none;       
	box-shadow: none;   
    animation: pulse 1s ease-in-out infinite; 
	
	
}
.next-button-big:hover {
	background: #cc4a16;
}


.next-button-outline {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--main-color);
  font-size: 18px;
  border-radius: 10px;
  cursor: pointer;
  border: 1.5px solid var(--main-color);
  outline: none;
  margin-bottom: 10px;
  box-shadow: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.next-button-outline:hover {
  background: var(--main-color);
  color: white;
}

@keyframes pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05); }
    100% { transform: scale(1); }
  }




/* GIRLS PROFILES BG */
  
  .profile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 10px; 
  }

  .scroller-wrapper {
    overflow: hidden;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    display: flex;
    justify-content: center;
  }
  .scroller-wrapper::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4); 
    z-index: 1;
    pointer-events: none; 
  }

  .scroller {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    will-change: transform;
    height: 95%;
    margin: 25px;
  }
  
  @keyframes scrollUp {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-50%);
    }
  }
  
  .profile-card-new {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.3s ease, height 0.3s ease;
    height: auto;
    min-height: 200px;
  }
  

  .profile-card-new:hover {
    border-color: var(--main-color);
    box-shadow: 0 0 15px var(--main-color);
    transform: scale(1.05); 
}


.profile-header-new {
    position: relative;
    width: 100%;
    height: 160px; 
}

.profile-header-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.age-button {
  height: 30px;
  color: white;
  background-color: var(--main-color);
  padding: 10px 10px;
  border-color: var(--main-color);
  border-style: solid;
  border-width: 1px;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  font-size: 20px;
  transition: all .3s ease;
  animation: pulse 1s ease-in-out infinite; 
}






.status {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.8);
    color: black;
    font-weight: 200;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 10px;
}

.status.online {
    background: green;
    color: white;
}

.status.offline {
    background: gray;
    color: white;
}


.profile-info {
    background: white;
    padding: 5px;
    text-align: left;
}



.profile-info h2 {
    font-size: 14px;
    color: black;
	font-weight: 700;
    margin: 0;
}

.profile-name{
  /* font-weight:bold; */
}
.profile-distance{
  font-weight: 300;
}

.profile-info p {
    font-size: 12px;
    color: gray;
    margin: 4px 0 0;
    font-style: italic;
}
.container-matches .title {
	font-size: 30px;
   font-weight: bold; 
   color: var(--title-color);
   margin-top: 10px; 
   margin-bottom: 5px; 
}


/* POP UP */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0,0,0,0.4); */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
  }
  
  .top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  .header-right{
    margin-right: 20px;

  }
  .header-left{
    margin-left: 20px;

  }

  .header-logo {
    height: 28px;
    width: auto;
  }
  
  .login-button {
    background: var(--main-color);
    color: white;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    display: inline-block;
    user-select: none;
  }
  .login-button:hover {
    background: #e64311; 
  }

/*   .top-logo {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .top-logo img {
    height: 42px;
    width: auto;
  }
 */
.popup-content {
  background: white;
  /* padding: 0 30px 30px 30px; */
  padding: auto;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 30px 50px rgba(0,0,0,1);
  max-width: 400px;
  width: 100%;
  margin: 20px 10px; 
}

.popup-body {
    
    padding: 25px; 
    
    text-align: center;
    
  }
.popup-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
  }
  .popup-title .online-circle{
    font-size: 10px;
    font-weight: 400;
    margin-right: 5px;
  }

  .popup-title .highlight {
    /* color: #e74c3c; */
    color: var(--black-color);
    font-weight: 400;
  }

.popup-header {
    background-color: #EDEDED ;
    /* background: linear-gradient(to bottom, #f1a495, #f7f7f7); */
    padding: 6px 16px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom: 1px solid #ddd;
  }
  
  .popup-header .popup-title {
    margin-bottom: 0; 
    font-size: 16px;
    font-weight: 400;
    color: #222;
  }
.online-count{
  font-weight: 700;
}
 
  
 
  
  .popup-subtitle {
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
  }
  
  .popup-buttons {
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 5px;
  }
  
  .options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .option-box {
    background: #fff;
    border: 2px solid #fbe1c9;
    border-radius: 12px;
    padding: 16px 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .option-box.selected {
    border-color: var(--main-color); 
    background: #ffe2c9; 
  }
  
  .option-emoji {
    font-size: 24px;
    margin-bottom: 8px;
  }
  
  .option-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--black-color);
  }
  


  .age-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 12px; 
    margin-top: 20px;
  }

  .input-wrapper {
    position: relative;
    width: 100%;
    /* max-width: 300px; */
    margin: 15px auto;
  }
  
  .input-wrapper input {
    width: 100%;
    padding: 12px 40px 12px 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 12px;
    outline: none;
    box-sizing: border-box;
  }
  
  .step__field__input_error {
    border-color: red !important;
  }

  .clear-icon {
    background-image: url('../images/Clear.svg'); 
    position: absolute;
    right: 10px;
    margin-right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    user-select: none;
  }

  
  .toggle-password {
    position: absolute;
    right: 10px;
    margin-right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    user-select: none;
  }
  
  /* Ojo abierto */
  .eye-open {
    background-image: url('../images/EyeOpen.svg');
  }
  
  /* Ojo cerrado */
  .eye-closed {
    background-image: url('../images/EyeClosed.svg');
  }
  
@media (max-width: 480px) {
  .popup-body {
    
    padding: 15px; 
    padding-bottom: 40px;
    
    text-align: center;
    
  }
  .profile-card-new {
    min-height: 200px;
  }
  .profile-info {
    background: white;
    padding: 3px;
    text-align: left;
}


.profile-info h2 {
    font-size: 10px;
    color: black;
	font-weight: 700;
    margin: 0;
}

.profile-name{
  /* font-weight:bold; */
}
.profile-distance{
  font-weight: 300;
}

.profile-info p {
    font-size: 9px;
    color: gray;
    margin: 4px 0 0;
    font-style: italic;
}

  .age-button {
    height: 25px;
    color: white;
    background-color: var(--main-color);
    padding: 5px 5x;
    border-color: var(--main-color);
    border-style: solid;
    border-width: 1px;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    font-size: 18px;
    transition: all .3s ease;
    animation: pulse 1s ease-in-out infinite; 
  }
  .popup-buttons {
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 8px;
}
 
}
@media (min-width: 768px) {
  .scroller {
      grid-template-columns: repeat(4, 1fr);
    }
  .profile-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 0 20px; 
  }
  .profile-card-new {
      min-height: 300px; 
    }
    .profile-header-new {
      position: relative;
      width: 100%;
      height: 240px; 
  }
}
@media (max-width: 480px) {
  
  .popup-overlay {
      /* align-items: flex-end; */
      /* padding-bottom: 40px;  */
      align-items: flex-end; 
      padding-bottom: 0;  
    }
    .popup-content {
      width: 100%;
      margin: 0px 0px; 
      max-width: 450px;
      
    }
    .popup-subtitle{
      font-size: 16px;
      margin-bottom: 15px;
    }
}




.buttons {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
	margin-bottom: 70px;
	padding: 0 40px;
	
	z-index: 3;
}
.section-age .buttons {

	padding: 0 10px !important;
	
}

.next-button {
	width: 70%;
	background: var(--main-color);
	color: white;
	border: none;
	border-radius: 10px;
	padding: 15px;
	font-size: 18px;
	cursor: pointer;
    border: none;       
	outline: none;       
	box-shadow: none;   
}





@keyframes rotateClockwise {
	from {
	  transform: rotate(0)
	}
	to {
	  transform: rotate(360deg)
	}
  }
  .loader {
	width: 70px;
	margin-top: 50px;
	margin-bottom: 70px;
	height: auto;
	animation: rotateClockwise 2s linear infinite
  }


  google-sign-in-button {
    width: 100%;
    
}
.line-container {
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.line {
  flex: 1;
  height: 1px;
  background-color: #ababab; 
  margin: 0 0; 
}
.line-text {
  font-size: 16px;
  color: #ababab; 
  margin: 0 10px;
}
.step__field {
    position: relative;
    width: 95%;
    margin: .3rem .5rem;
    text-align: left;
    margin-top: 20px;
  }

  .step__field__input {
    padding: .625rem 2.3rem .6875rem 1.2rem;
    width: 100%;
    font-size: 1rem;
    line-height: 1.5rem;
    background-color: #ffffff;
    /* border: 1px solid #ccc; */
    border:none;
    border-radius: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #7d7d7d;
    text-align: center;
    font-weight: 400
  }
  .step__field__input:focus {
    outline: 0
  }
  .step__field__valid {
    position: absolute;
    right: .4375rem;
    top: 48%;
    width: 1.25rem;
    height: 1rem;
    background: url("//cdn.tours-78-94.wellhello.com/snapcheat/img/svg/check.svg") no-repeat scroll;
    background-size: 1.1rem 1.1rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
  }
  .step__field__show {
    position: absolute;
    top: .7rem;
    left: 101%;
    font-size: .642rem;
    background: 0 0;
    border: 0
  }
  .step__field__show.is--active .step__field__show__eyeon {
    display: inline-block
  }
  .step__field__show.is--active .step__field__show__eyeoff {
    display: none
  }
  .step__field__show__eyeon {
    display: none
  }
  .step__field__placeholder {
    position: absolute;
    left: .214rem;
    top: 0;
    font-size: 1.125rem;
    line-height: 2.0625rem;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    z-index: -1;
    color: #fff
  }
  .step__field__placeholder_active {
    top: -.5rem;
    font-size: .625rem;
    line-height: .625rem;
    color: #fff
  }
  #lastStepBtn {
    font-size: 18px
  }


  .step__field__error {
    padding-left: 40px;
    /* margin: 0.625rem 0;
    padding: 0 0.9375rem; */
    font-weight: 500;
    width: calc(100% - 2.21875rem);
    font-size: 0.9rem;
    line-height: 1.5625rem;
    color: #DE4926;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  /* 
  .step__field__error {
    position: absolute;
    z-index: 10;
    margin: 0;
    padding: 1rem;
    background-color: #000;
    border-radius: .4375rem;
    line-height: 1.6;
    color: #fff;
    margin-top: 5px;
    font-weight: 300;
    font-size: .75rem;
    width: 100%;
    max-width: 255px
  }
  .step__field__error:before {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: 100%;
    left: .875rem;
    display: block;
    width: 1.125rem;
    height: 1.875rem;
    background-color: #000;
    -webkit-transform: translateY(73%) rotate(45deg);
    transform: translateY(73%) rotate(45deg)
  } */