/* Base styles */
.myfoch-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9998;
}

.myfoch-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 0px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.myfoch-popup div#myfoch-popup-content {
    padding: 25px 0px;
}

.myfoch-close {
    sbackground: none;
    border: none;
    color: white;
    font-size: 23px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
    font-weight: 400;
    border: 1px solid #FFF;
    padding-bottom: 2px;
}

button#myfoch-open-btn {
    cursor: pointer;
    /* text-transform: uppercase; */
}

/* Form styles */
.myfoch-login-form,
.myfoch-register-form,
.myfoch-reset-form,
.myfoch-account-form {
    font-family: Arial, sans-serif;
    padding: 0 30px;
    width: 100% !important;
}

.myfoch-login-form h2,
.myfoch-register-form h2,
.myfoch-reset-form h2,
.myfoch-account-form h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 18px;
    text-align: left;
    font-weight: 500;
}

.myfoch-form-group {
    margin-bottom: 25px;
}

.myfoch-form-group label {
    display: block;
    margin-bottom: -4px;
    font-weight: 500;
    color: #969696;
    font-size: small;
    background: #ffffff;
    width: fit-content;
    padding-right: 5px;
    line-height: normal;
    position: relative;
    z-index: 1;
}

.myfoch-form-group input {
    width: 100%;
    padding: 12px 10px 10px 0px;
    border: 1px solid #ddd;
    border-radius: 0px;
    font-size: 14px;
    color: #022E69;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    padding-top: 10px;
    height: 45px;
}

.myfoch-form-group select {
    color: #022E69;
}

.myfoch-form-group input:hover,
.myfoch-form-group input:focus {
    border-color: #114895 !important;
}

.myfoch-form-group input::placeholder {
    font-size: 14px !important;
    color: #9da3af !important;
    opacity: 1 !important;
}

.myfoch-form-row {
    display: flex;
    gap: 15px;
}

.myfoch-form-row .myfoch-form-group {
    flex: 1;
}

.myfoch-submit-btn {
    width: auto;
    padding: 12px 35px;
    background: transparent;
    color: #022E69;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    border: 1px solid #114995;
    text-transform: uppercase;
    transition: .2s;
    margin: auto;
    display: flex;
    margin-top: 12px;
}

.myfoch-submit-btn:hover {
    background-color: #022E69;
    color: #FFF;
}

.myfoch-google-login,
.myfoch-google-register {
    width: 100%;
    padding: 12px;
    background-color: #4285F4;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.myfoch-google-login:hover,
.myfoch-google-register:hover {
    background-color: #3367D6;
}

.myfoch-or-separator {
    text-align: center;
    margin: 15px 0;
    position: relative;
    color: #0b2450;
}

.myfoch-or-separator:before,
.myfoch-or-separator:after {
    content: "";
    display: inline-block;
    width: 46%;
    height: 1px;
    background-color: #ddd;
    position: absolute;
    top: 50%;
}

.myfoch-or-separator:before {
    left: 0;
}

.myfoch-or-separator:after {
    right: 0;
}

.myfoch-form-links {
    margin-top: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.myfoch-form-links a {
    color: #2c3e50;
    text-decoration: none;
    margin: 0 5px;
    font-size: 14px;
}

.myfoch-form-links a:hover {
    text-decoration: underline;
}

.myfoch-reset-form p {
    color: #3a577c;
    margin-bottom: 3rem;
    font-size: 13px;
}

.myfoch-login-form .g_id_signin {
    display: block;
}

.myfoch-popup-header {
    background: #032450;
    display: flex;
    justify-content: space-between;
    padding: 20px 21px;
    font-size: 24px;
    align-items: center;
}

.myfoch-popup input::placeholder {
    color: #2d3e51;
    opacity: 0.4;
    font-size: 12px;
}

.myfoch-popup input:focus-visible {
    outline: 0px;
}

.myfoch-form-connect {
    display: none;
}

button.myfoch-choose-by-email {
    width: 100%;
    padding: 12px 35px;
    background: transparent;
    color: #022E69;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    border: 1px solid #114995;
    transition: .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

button.myfoch-choose-by-email:hover {
    background-color: #022E69;
    color: #FFF;
}

button.myfoch-choose-by-email svg {
    width: 20px;
}

span.myfoch-no-account {
    color: #032450;
    font-size: 13px;
    text-align: center;
    width: 100%;
    display: block;
    margin-top: 25px;
}

span.myfoch-no-account a {
    color: #02306c;
    text-decoration-line: underline;
}


.myfoch-popup div#myfoch-popup-content h2 {
    color: #2c3e50;
    font-size: larger;
    text-align: center;
    padding-left: 0px;
    padding-bottom: 30px;
    width: 100%;
}

.myfoch-popup div#myfoch-popup-content .myfoch-account-header-title h2 {
    text-align: left;
}

.myfoch-popup div#myfoch-popup-content hr {
    margin-bottom: 35px;
    height: 1px;
    width: 100%;
}

.start-account svg, .end-account svg {
    width: 22px;
    color: #032450;
    height: 22px;
}

.start-account .myfoch-account-header, .end-account .myfoch-account-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.start-account .myfoch-account-header-text, .end-account .myfoch-account-header-text {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    justify-content: space-between;
}
.end-account .myfoch-account-header {
    display: flex;
    flex-direction: column;
}
.end-account .myfoch-account-header-text {
    justify-content: center;
}

.myfoch-popup .start-account .myfoch-account-header-text .myfoch-account-header-title>* ,
.myfoch-popup .end-account .myfoch-account-header-text .myfoch-account-header-title>*, .mes-manager .myfoch-account-header-title>* {
    padding: 0 !important;
    margin: 0;
    margin-bottom: 0px !important;
    color: #2c3e50;
    cursor: pointer;
}

.myfoch-popup .start-account .myfoch-account-header-text .myfoch-account-header-title p:hover {
    font-weight: 600;
}

.logout-check svg {
    width: 35px;
    height: 35px;
}

.myfoch-notification {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 350px;
  background: #fef2f2; /* light red background */
  padding: 14px 18px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.4;
  z-index: 9999;
  animation: slideUp 0.3s ease-out;
  color: #1d1a1a;
  text-align: left;
}

.myfoch-notification .close {
  cursor: pointer;
  position: absolute;
  right: 1px;
  top: 1px;
}

.myfoch-notification .close svg {
  width: 15px;
  height: 15px;
  color: #b91c1c;
}

.myfoch-notification .message {
  flex: 1;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


.logout-check p {
    margin-top: 12px;
}
.logout-check>* {
    color: #2c3e50;
    text-align: center;
    margin: auto;
}

.start-account .px-20, .end-account .px-20 {
    padding: 0px 20px;
}

.start-account svg.user-icon, .end-account svg.user-icon {
    width: 50px;
    height: 50px;
}

.myfoch-account-form-container .start-account hr, .myfoch-account-form-container .end-account hr  {
    margin-top: 25px;
}

.myfoch-account-header-title.list-svg {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
}

.myfoch-account-header-title.list-svg svg {
    width: 15px;
    height: 15px;
}

.myfoch-account-header-title.list-svg i {
    width: 25px;
    height: 25px;
    text-align: left;
    display: flex;
    justify-content: center;
}

.start-account svg.icon-arrrow {
    width: 15px;
}

a.myfoch-account-header-text.link-account {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    justify-content: space-between;
}

.informations-personnelles,
.mes-preferences, .mes-manager, .remove-account {
    display: none;
}

.myfoch-account-header {
    cursor: pointer;
}

button#myfoch-return-start-account svg {
    color: #2c3e50;
    width: 15px;
    height: 15px;
}

button#myfoch-return-start-account {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2c3e50;
    text-transform: uppercase;
    font-size: 12px;
    line-height: normal;
    gap: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.myfoch-header-secend {
    display: flex;
    align-items: center;
    line-height: normal;
    margin-bottom: 25px;
    margin-left: 10px;
    margin-right: 10px;
    justify-content: space-between;
    flex-direction: column;
}

.myfoch-header-secend h2 {
    margin: 0;
    padding: 0;
    line-height: normal;
    order: 1;
}

.myfoch-header-secend button {
    order: 2;
}

button#myfoch-return-start-account:hover {
    font-weight: 600;
}


.mes-preferences {
    font-family: Arial, sans-serif;
    padding: 0;
    background: #fff;
}

.form-group-myfoch {
    margin-bottom: 20px;
}

label.myfoch {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.btn-group-myfoch {
    display: flex;
    gap: 10px;
}

.btn-myfoch {
    border: 1px solid #114995;
    background-color: #fff;
    color: #012e6a;
    padding: 5px 12px;
    cursor: pointer;
    border-radius: 4px !important;
    font-size: 13px;
    font-weight: 600;
}

.btn-myfoch.active {
    background-color: #022E69;
    color: #fff;
}

.save-btn-myfoch {
    width: auto;
    padding: 12px 35px;
    background: transparent;
    color: #022E69;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    border: 1px solid #114995;
    text-transform: uppercase;
    transition: .2s;
    margin: 2rem auto 0;
    display: block;
}

.save-btn-myfoch:hover {
    background-color: #022E69;
    color: #FFF;
}

.form-group-myfoch {
    display: flex;
    justify-content: space-between;
    color: #092450;
}

button.btn.myfoch.active:hover {
    color: #010D1C;
}

.myfoch-login-form-container h2,
.myfoch-register-form-container h2,
.myfoch-reset-password-form h2 {
    padding-left: 30px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mes-preferences form.preferences-form {
    padding: 0px 20px;
}

.end-account {
    display: none;
}

.iti--inline-dropdown .iti__dropdown-content {
    color: #032450;
}

input.iti__search-input {
    padding-left: 8px;
}

.iti.iti--allow-dropdown.iti--show-flags.iti--inline-dropdown {
    width: 100%;
}

.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country-primary:hover,
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country:has(+ .iti__dropdown-content:hover) .iti__selected-country-primary {
    background-color: transparent;
}

ul#iti-0__country-listbox li {
    font-size: 12px;
    font-weight: 500;
}

.wishlist-parent {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.wishlist-parent span.woosw-btn-icon {
    font-size: 20px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .myfoch-popup {
        width: 95%;
        padding: 0;
    }

    .myfoch-form-row {
        flex-direction: column;
        gap: 0;
    }
}

.g-login {
    overflow: hidden;
    display: flex;
    justify-content: center;
    width: 100%;
}

.myfoch-login-form-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.myfoch-login-form-container h2 {
    padding-bottom: 35px;
    padding-top: 10px;
    width: 80%;
}

button.open-eye svg {
    width: 16px;
    height: 16px;
    color: #082450b0;
    position: relative;
    top: 19px;
}

.myfoch-form-group {
    position: relative;
}

button.open-eye {
    position: absolute;
    right: 0;
}

.iti.iti--allow-dropdown.iti--show-flags.iti--inline-dropdown button.iti__selected-country {
    padding-top: 10px;
}

.iti.iti--allow-dropdown.iti--show-flags.iti--inline-dropdown button.iti__selected-country {
    padding-top: 10px;
}

.myfoch-register-form-container {
    display: none;
    flex-direction: column;
    align-items: center;
}
.myfoch-reset-password-form {
    display: none;
}
.myfoch-register-form-container button.myfoch-submit-btn {
    padding: 12px 35px;
    background: transparent;
    color: #022E69;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    border: 1px solid #114995;
    transition: .2s;
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    display: flex;
    justify-content: center;
    text-transform: math-auto;
}

.myfoch-register-form-container button.myfoch-submit-btn:hover {
    background: #022E69;
    color: #FFF;
}

.g_id_signin iframe {
    margin: auto !important;
}
.myfoch-register-form-container .g_id_signin,
.myfoch-register-form-container .L5Fo6c-bF1uUb {
    display: flex;
    justify-content: center;
    max-width: 100%;
    overflow: hidden;
}

.myfoch-register-form-container button.myfoch-submit-btn svg{
   width: 20px;
}

.information_user-email {
    text-align: center;
    margin: auto;
    width: 100%;
    padding-bottom: 0rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}

.information_user-email svg {
    color: #082450;
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.myfoch-account-form {
    margin-top: 2rem;
}

.myfoch-form-group.select-genre select#gender {
    width: 100%;
    padding: 10px 0px 0px;
    border: 1px solid #ddd;
    border-radius: 0px;
    font-size: 14px;
    color: #6b7281;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    padding-top: 10px;
    margin-top: 5px;
    padding-bottom: 5px;
}

select:focus-visible {
    outline: 0px;
}

.myfoch-form-group.calander-birthdate svg {
    width: 20px;
    height: 20px;
    color: #3a577c;
    position: absolute;
    right: 0;
    bottom: 5px;
}

.myfoch-form-group.calander-birthdate {
    position: relative;
}

span.icon-waths svg {
    width: 12px;
    height: auto;
    fill: #8d9bad;
}

span.icon-waths {
    display: flex;
}

.whatsapp label {
    display: flex;
    align-items: end;
    gap: 2px;
}

.myfoch-form-group.whatsapp {
    margin-top: -2px;
}
a.myfoch-account-header-text.link-account svg {
    width: 15px;
    height: 15px;
    display: inline;
    padding: 0 !important;
    margin: 0;
    margin-bottom: 0px !important;
    color: #2c3e50;
    cursor: pointer;
}


.choose-if-y-n button {
    color: #082450;
    border: 1px solid #082450;
}

.choose-if-y-n {
    display: flex;
    justify-content: flex-start;
    margin-top: 1rem;
    gap: 5rem;
    pointer-events: none;
}

.hide.after-reemove-it, .remove-done {
    display: none;
}

.choose-if-y-n button.yes-remove-it {
    color: white;
    background: #082450;
    padding: 6px 15px;
    border-radius: 5px;
}

.choose-if-y-n button.no-remove-it {
    border: none;
    font-weight: 600;
    width: 100px;
}

a#myfoch-back-to-home-from-rm {
    margin-top: 20px;
    border: 1px solid #2c3e50 !important;
    background-color: #fff;
    color: #2c3e50 !important;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
}

.remove-done {
    text-align: center;
}

a#myfoch-back-to-home {
    margin-top: 20px;
    border: 1px solid #2c3e50;
    background-color: #fff;
    color: #2c3e50 !important;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
}

a#myfoch-back-to-home-from-rm {
    margin-top: 20px;
    border: 1px solid #0059b3;
    background-color: #fff;
    color: #0059b3;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
}

.remove-done {
    text-align: center;
}

a#myfoch-back-to-home {
    margin-top: 20px;
    border: 1px solid #2c3e50 !important;
    background-color: #fff;
    color: #2c3e50 !important;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
}

.logout-check {
    text-align: center;
}

.logout-check p {
    margin-bottom: 2rem;
}

button.yes-remove-it {
    width: auto;
    padding: 12px 35px;
    background: transparent;
    color: #022E69;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    border: 1px solid #114995;
    text-transform: uppercase;
    transition: .2s;
}

button.yes-remove-it:hover {
    background-color: #022E69;
    color: #FFF;
}

.remove-done p {
    color: #082450;
    margin-bottom: 2rem;
}

.remove-done svg {
    width: 35px;
    height: 35px;
    fill: #082450;
    margin: auto;
    margin-bottom: 5px;
}

.informations-personnelles-password-update {
    display:none;
}

.myfoch-popup .myfoch-header-secend h2 {
    padding-bottom: 0 !important;
}

.remove-account .myfoch-header-secend h2 {
    text-transform: uppercase;
}

.remove-account .myfoch-account-header,
.remove-account .myfoch-account-header h2 {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#mes-informations-personneles h2 {
    font-size: 1rem !important;
}

.information_user-email h2 {
    font-size: 1rem !important;
    text-align: center !important;
}

.myfoch-form-row .custom-search-input {
    height: auto !important;
}
