div.basic-popUp {
    position: fixed;
    top: 0px;
    background-color: #00000052;
    width: 100%;
    height: 100%;
    display: grid;
    transition: 0.3s linear 0s;
    opacity: 0;
    visibility: hidden;
    place-content: center;
    z-index: 30;
    backdrop-filter: blur(2px);
}

div.basic-popUp.show {
    opacity: 1;
    visibility: visible;
    z-index: 30;
}

.basic-popUp.studioGalleryPopUp .popup-box {
    max-width: calc(350px * 3 + 100px);
}

.basic-popUp.paymentPopUp.show {
    z-index: 55;
}





.error-btn-area
{
    display:flex;
    justify-content: center;
    gap: 20px;
}
.booking-message-row > div {
    margin: auto;
}


div.basic-popUp .popup-header {
    position: relative;
    height: 60px;
    text-align: center;
    display: grid;
    align-items: center;
    background: var(--main-white-color);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    grid-template-columns: auto 60px;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--main-sub-color);
    max-width: 100dvw;
    z-index: 1;
}

div.basic-popUp.max .popup-header {
    border-radius: 0px;
}

div.basic-popUp .popup-header .popup-title {
    margin-left: 25px;
    color: var(--main-neutral-grey-color);
    font-weight:var(--fw-semibold);
    font-size: 24px;
}

div.basic-popUp.min .popup-content {
    height: 350px;
}

div.basic-popUp.min {
    place-content: center;
}

div.basic-popUp[class~='max'] .popup-box {
    width: 100dvw;
    height: 100dvh;
    /* border-radius: 15px; */
    overflow: hidden;
    border-radius: 0px;
}

div.basic-popUp.close-hide .popup-box .closed {
    opacity: 0.2;
}

div.basic-popUp .popup-box .closed {
    transition: 0.3s linear 0s;
}

div.basic-popUp .popup-box .popup-close-icon {
    /* height: 45px; */
    /* width: 45px; */
    display: grid;
    place-content: center;
    cursor: pointer;
    /* right: 15px; */
    position: relative;
    font-size: 18px;
    justify-self: center;
}

div.basic-popUp.hide-close .popup-box .closed {
    visibility: hidden;
}

div.basic-popUp .popup-box {
    display: grid;
    grid-template-rows: auto 1fr auto;
    /* Header, Content, Footer */
    min-height: 500px;
    /* Ελάχιστο ύψος του popup */
    /* Για να το κεντράρεις */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Καλύτερη εμφάνιση */
    position: relative;
    z-index: 30;
    opacity: 0;
    transition: 0.3s linear 0s;
    background: var(--main-white-pure-color);
    border-radius: 25px;
    min-height: 500px;
    min-width: 600px;
    overflow: hidden;
    /* gap: 10px; */
    /* max-width: calc(100dvw - 20px); */
}

div.basic-popUp .popUp_Background-mask {
    position: absolute;
    /* background-color: rgb(0 0 0 / 27%); */
    width: 100%;
    top: 0;
    bottom: 0;
    z-index: 29;
    transition: 0.3s linear 0s;
    height: 100vh;
}

div.basic-popUp .popup-main {
    padding: 20px;
    overflow-y: auto;
    /* Ενεργοποίηση scroll αν το περιεχόμενο μεγαλώσει */
    background: #fff;
    /* Χρώμα για αντίθεση */
}

div.basic-popUp .popup-content {
    /* padding: 0 25px; */
    /* width: 100%; */
    /* overflow-x: hidden; */
    overflow-y: auto;
    position: relative;
}

.studio-booking .popup-content {
    /* max-height: 800px; */
    /* transition: 0.3s ease; */
}

div.basic-popUp.loginPopUp .popup-content {
    padding: 0;
    height: 100dvh;
}

div.basic-popUp.loginPopUp .popup-content .sub-page-area .sub-page-box {
    padding: 0;
}

div.basic-popUp .popup-footer {
    /* Χρώμα footer */
    padding: 10px 25px;
    /* Διαχωριστική γραμμή */
    background: var(--main-white-color);
    min-height: 70px;
    align-items: center;
    height: 100%;
}

div.basic-popUp .popup-footer > div {
    height: 100%;
    align-items: center;
}

div.basic-popUp .popup-footer .btn-area {
    display: flex;
    gap: 20px;
}

div.basic-popUp.show .popup-box {
    opacity: 1;
}

.insiderPopUp .popup-box {
    max-width: 1360px;
}

div.basic-popUp .popup-content[class~='popup-center'] {
    height: 600px;
    min-height: inherit;
}

div.basic-popUp.loginPopUp .popup-header {
    padding: 20px;
    position: absolute;
    /* width: 100%; */
    display: grid;
    height: auto;
    grid-template-columns: auto;
    /* justify-content: end; */
    right: 0;
    gap: 0;
    background: none;
    border: none;
}

.confirm-area .btn-area {
    display: flex;
    justify-content: end;
    padding: 20px;
    gap: 20px;
    z-index: 1;
    position: relative;
}

.confirm-area {
    align-self: end;
    position: relative;
    overflow: hidden;
    min-height: 100px;
    /* display: grid; */
    transition: 0.2s ease;
}

.confirm-area :is(.load-wrap,.success-wrap,.error-wrap) {
    position: absolute;
    left: 0;
    right: 0;
    transform: translateY(300px);
    transition: 0.3s ease;
    opacity: 0;
}
.confirm-area :is(.load-wrap,.success-wrap,.error-wrap).show
{
    transform:translateY(0px);
    opacity: 1;
}

.confirm-area :is(.load-wrap,.success-wrap,.error-wrap).exit {
    transform: translateY(-300px);
    opacity: 0;
}
.confirm-area  .modal-body {
    font-size: 16px;
    line-height: 1.5;
    color: #6b7280;
    margin-top: 4px;
    padding: 20px 20px 10px 20px;
    transition: 0.2s ease;
    opacity: 1;
}

.confirm-area .modal-body .confirm-message {
    margin-top: 15px;
}

.confirm-area  .modal-body strong {
    color: #111827;
    font-weight: 600;
}
.fv-match-row
{
    background: var(--main-white-color);
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0px;
}
.modal-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--danger);
}

.basic-popUp.ConfirmationPopUp .popup-box {
    height: auto;
    min-height: unset;
}

.basic-popUp.ConfirmationPopUp .popup-box .popup-title > span {
    display: flex;
    align-items: center;
    gap: 20px;
}


.search-popup .main .close-btn, div.basic-popUp .popup-box .popup-close-icon {
    background: var(--main-white-pure-color);
    width: 40px;
    height: 40px;
    border-radius: 40px;
    display: flex ;
    place-content: center;
    align-items: center;
    font-size: 20px;
    border: 1px solid #D5D9E7;
    z-index: 1;
    position: relative;
    box-shadow: 0px 0px 7px 0px #0000001a;
    justify-content: center;
}

.login-grid-area {
    display: flex;
    grid-template-columns: minmax(0,880px) minmax(400px,auto);
    height: 100%;
}

.login-grid-area .image-side {
    /* object-fit: cover; */
    /* width: 100%; */
    max-height: 100dvh;
    overflow: hidden;
}

.login-grid-area .main-side {
    flex: 1;
}

.image-side img {
    /* object-fit: contain; */
    /* width: 100%; */
    height: 100%;
}

div.provider-list {
    display: grid;
    gap: 30px;
    /* justify-content: center; */
    align-self: start;
}

div.provider-box {
}

#g_id_onload {
    display: none;
}

div.provider-box svg {
    width: 30px;
    margin: 0 auto;
}

div.provider-box.google #google-signin-button {
    /* transform: scale(1.3); */
    display: none;
}

div.provider-box:hover {
    background: var(--main-white-color);
    cursor: pointer;
}

.default-google {
    position: absolute;
    z-index: 3;
    top: 0;
    width: 100%;
    overflow: hidden;
    height: 50px;
}

#google-signin-button {
    /* width: 158px !important; */
    /* Προσαρμογή πλάτους */
    /* height: 34px !important; */
    /* Προσαρμογή ύψους */
    /* transform: scaleX(2.4) scaleY(1.5); */
    /* Μεγέθυνση μέσω scale */
    /* transform: scale(1.6); */
    /* transform-origin: center; */
    /* Κρατάει το κέντρο για scaling */
    /* top: 0px; */
    /* left: 102px; */
    position: relative;
    /* opacity: 0; */
    /* overlay: revert-layer; */
    display: grid;
    justify-content: center;
}

.main-side .padding-box {
    /* padding: 40px; */
    height: calc(100dvh - 0px);
    /* display: grid; */
    /* align-content: start; */
    max-width: 480px;
    margin: 0 auto;
    margin-top: 0px;
    /* padding: 0 20px; */
    overflow: hidden;
}

.main-side .padding-box .top-row {
    margin-top: 120px;
}

.login-message img {
    width: 61px;
    margin: 0 auto;
}

.login-message {
    text-align: center;
    margin-bottom: 30px;
    display: grid;
    justify-content: center;
    gap: 10px;
    align-self: start;
}

.login-message p {
    color: var(--secondary-metallic-blue);
    font-size: var(--fs-xsm);
}

.login-message h2 {
    font-size: var(--fs-md);
}

.btn-login-provider {
    display: grid;
    grid-template-columns: 50px auto;
    height: 55px;
    width: auto;
    border-radius: 50px;
    border: 1px solid var(--sub-border-white-color);
    background: var(--main-white-pure-color);
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    font-family: Manrope;
    font-size: 16px;
    font-weight:var(--fw-semibold);
    line-height: 19.2px;
    text-align: center;
}

#facebook-login i {
    font-size: 30px;
    color: #4267b2;
}

.line-or {
    text-align: center;
    margin: 40px 0;
    position: relative;
    align-self: start;
}

.line-or::before {
    background: #e1e8fe;
    content: ' ';
    width: 100%;
    height: 1px;
    position: absolute;
    display: block;
    left: 0;
    top: 50%;
    z-index: 0;
}

.line-or .or {
    width: 30px;
    height: 30px;
    gap: 0px;
    border: 1px solid #E1E8FE;
    margin: 0 auto;
    border-radius: 50px;
    display: grid;
    place-content: center;
    font-family: Manrope;
    font-size: var(--fs-xsm);
    font-weight:var(--fw-regular);
    text-align: center;
    color: #5F6E95;
    z-index: 1;
    position: relative;
    background: var(--main-white-pure-color);
}
.partner-portal {
    font-size: var(--fs-xsm);
    text-align: center;
}

.partner-portal strong {
    font-weight:var(--fw-medium);
}

.partner-portal a {
    color: var(--main-primary-color);
}

.bottom-row {
    display: grid;
    place-content: center;
    color: var(--main-primary-color);
    align-self: end;
    min-height: 100px;
}
.bottom-row i.fa-regular.fa-globe
{
     color: var(--main-primary-color);
}

.sub-page-area {
    display: flex;
    height: 100%;
    transition: 0.3s linear 0s;
}

.sub-page-area .sub-page-box {
    /* display: grid; */
    flex: 0 0 100%;
    padding: 0 20px;
    overflow-y: auto;
}

.fv-auth-shell {
    width: 100%;
    overflow: hidden;
}

@media screen and (max-width: 720px) {
    div.basic-popUp .popup-box {
        width: calc(100vw - 0px);
        min-width: unset;
        min-height: 100dvh;
        border-radius: 0px;
    }

    div.basic-popUp .popup-header {
        padding: 10px;
        height: auto;
        /* position: sticky; */
        /* top: 0; */
        /* right: 0; */
        /* z-index: 3; */
        /* background: #f2f2f2; */
        padding: 20px 0px;
        margin-bottom: 10px;
        padding-right: 10px;
        width: 100%;
    }

    div.basic-popUp.loginPopUp .popup-header {
        background: var(--main-white-pure-color);
        /* width: 50px; */
        /* height: 50px; */
        /* border-radius: 40px; */
        /* display: flex; */
        /* place-content: center; */
        /* align-items: center; */
        /* font-size: 28px; */
        /* border: 1px solid #D5D9E7; */
        /* z-index: 1; */
        /* position: relative; */
        /* box-shadow: 0px 0px 7px 0px #0000001a; */
        /* justify-content: center; */
        right: 0;
        left: unset;
        justify-content: end;
    }

    .login-grid-area {
        grid-template-columns: auto;
    }

    .main-side .padding-box {
        width: auto;
    }

    .image-side {
        display: none;
    }
    div.basic-popUp .popup-box
    {
        max-width:unset;
    }

div.basic-popUp .popup-box .fitvibe-packets-modal {
    margin: 0;
    width: 100dvw;
}
}


@media (max-width:720px){
   div.basic-popUp .popup-box
  {
    height:100dvh;
  }
}


/* =========================
   LOGIN POPUP — STEPS (scoped)
   ========================= */
.loginPopUp .sub-page-area{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  width: 100%;
  transition: 200ms ease;
  will-change: transform;
}

.loginPopUp .sub-page-box{
  width: 100%;
}

/* Back button inside step headers */
.loginPopUp .fv-auth-back{
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-content: center;
  border: 1px solid #D5D9E7;
  background: #FFFFFF;
  cursor: pointer;
  margin-bottom: 14px;
}

/* Small subtitle line */
.loginPopUp .fv-auth-subtitle{
  margin: 6px 0 0;
  color: #828282;
}

/* Inline error */
.loginPopUp .input-field-box .error-message{
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #D62424;
}

.loginPopUp .fv-auth-recovery-link{
  margin-top: 10px;
  margin-bottom: 12px;
  padding-top: 8px;
  border-top: 1px dashed #E2E8F0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #64748B;
}

.loginPopUp .fv-auth-recovery-link > span{
  font-weight: 500;
}

.loginPopUp .fv-auth-recovery-link .js-open-recovery{
  border: 0;
  background: transparent;
  color: #325DE6;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  border-bottom: 1px solid #325DE699;
  line-height: 1.2;
}

.loginPopUp .fv-auth-recovery-link .js-open-recovery:hover{
  color: #1D4ED8;
  border-bottom-color: #1D4ED8;
}

.loginPopUp .fv-auth-recovery-link .js-open-recovery:focus-visible{
  outline: 2px solid #325DE633;
  outline-offset: 3px;
  border-radius: 4px;
}

.loginPopUp .sub-page-box[data-step="recovery"] .login-message{
  text-align: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}

.loginPopUp .sub-page-box[data-step="recovery"] .fv-auth-back{
  margin-bottom: 6px;
  justify-self: start;
  align-self: start;
}

.loginPopUp .sub-page-box[data-step="recovery"] .fv-auth-subtitle{
  margin: 2px 0 0;
  line-height: 1.45;
}

.loginPopUp .sub-page-box[data-step="recovery"] .fv-auth-step-label{
  margin: 2px 0 0;
}

.loginPopUp .sub-page-box[data-step="recovery"] .js-recovery-step{
  max-width: 100%;
  margin: 0 auto;
}

.loginPopUp .sub-page-box[data-step="recovery"] .js-recovery-step .input-field-box label{
  font-weight: 600;
  color: #334155;
}

.loginPopUp .fv-auth-step-label{
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: #325DE6;
}

.loginPopUp .fv-auth-help{
  margin: 8px 0 12px;
  color: #475569;
  font-size: 12px;
  line-height: 1.45;
  padding: 10px 12px;
  border-radius: 10px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
}

.fv-otp .fv-otp-boxes{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.fv-otp .fv-otp-input{
  height: 52px;
  width: 100%;
  text-align: center;
  font-size: 18px;
  border-radius: 14px;
  border: 1px solid var(--fv-border, #E6E8EF);
  background: var(--fv-surface, #FFFFFF);
  outline: none;
  transition: box-shadow .15s ease, border-color .15s ease;
}

.fv-otp .fv-otp-input:focus{
  border-color: var(--fv-primary, #325DE6);
  box-shadow: 0 0 0 4px #325DE633;
}

.loginPopUp .fv-otp-resend{
  margin-top: 8px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.loginPopUp .fv-otp-resend .js-otp-resend{
  border: 1px solid #325DE6;
  background: #fff;
  color: #325DE6;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: all .15s ease;
}

.loginPopUp .fv-otp-resend .js-otp-resend:hover{
  background: #325DE610;
}

.loginPopUp .fv-otp-resend .js-otp-resend:disabled,
.loginPopUp .fv-otp-resend .js-otp-resend.is-disabled{
  border-color: #CBD5E1;
  color: #94A3B8;
  background: #F8FAFC;
  cursor: not-allowed;
}

.loginPopUp .fv-otp-resend .fv-otp-resend-timer{
  display: none;
  font-size: 12px;
  color: #64748B;
}

@media (max-width: 720px){
  .loginPopUp .fv-auth-recovery-link{
    justify-content: center;
    text-align: center;
  }

  .loginPopUp .sub-page-box[data-step="recovery"] .login-message{
    text-align: center;
  }

  .loginPopUp .fv-otp-resend{
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* =========================
   FitVibe Auth - Select + Date same style as inputs
   ========================= */
.loginPopUp .input-field-box select,
.loginPopUp .input-field-box input[type="date"]{
  width: 100%;
  height: 60px;
  padding: 12px 42px 12px 14px; /* χώρο για icon δεξιά */
  border: 1px solid #0B12201A;
  border-radius: 12px;
  background-color: #FFFFFF;
  color: #888888;
  font-size: 14px;
  line-height: 1;
  font-size: 16px;
  outline: none;
  /* box-shadow: 0 6px 18px #0B12200D; */
  /* transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease; */
  border: 1px solid var(--sub-border-white-color);
}

.loginPopUp .input-field-box select{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23888888' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center; /* ⬅️ ΕΔΩ το φέρνεις πιο μέσα */
  background-size: 18px;
}

/* calendar icon color */
.loginPopUp .input-field-box input[type="date"]::-webkit-calendar-picker-indicator{
  filter: invert(60%) sepia(0%) saturate(0%) hue-rotate(0deg);
  opacity: 0.8;
  cursor: pointer;
}

/* checkbox row */
.loginPopUp .fv-auth-check__row{
  display: flex;
  align-items: flex-start; /* σωστό align αν το text σπάσει */
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4;
  color: #0B1220CC;
}

/* checkbox ίδιο ύψος / look */
.loginPopUp .fv-auth-check__row input[type="checkbox"]{
  width: 18px;
  height: 18px;
  margin-top: 2px; /* οπτικό centering */
  cursor: pointer;
}

/* text */
.loginPopUp .fv-auth-check__row span{
  display: inline-block;
  color: #0B1220CC;
}

/* error κάτω από όλα */
.loginPopUp .fv-auth-check .error-message{
  display: block;
  margin-top: 6px;
}



/* =========================
   Auth popup validation UI
========================= */
.loginPopUp .fv-auth-notice{
  display:none;
  padding:10px 12px;
  border-radius:12px;
  font-size:13px;
  line-height:1.35;
  margin:0 0 12px 0;
  border:1px solid #EAF0FF;
  background:#EAF0FF33;
  color:#0B1220;
}

.loginPopUp .fv-auth-notice.is-error{
  border-color:#E5484D55;
  background:#E5484D12;
  color:#0B1220;
}

.loginPopUp .input-field-box.has-error input,
.loginPopUp .input-field-box.has-error select{
  border-color:#E5484D99 !important;
  box-shadow:0 0 0 3px #E5484D1A;
}

.loginPopUp .input-field-box .error-message{
  display:block;
  min-height:16px;
  margin-top:6px;
  font-size:12px;
  color:#E5484D;
}


