#woootp-coupon-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

#woootp-coupon-popup-container {
    background-color: #fff;
    max-width: 400px;
    width: 100%;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: fadeInScale 0.3s ease;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.woootp-coupon-popup-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.woootp-coupon-popup-description,
.woootp-coupon-popup-description-two {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    font-weight: 400;
}

.woootp-coupon-code {
    font-size: 24px;
    font-weight: bold;
    color: #27ae60;
    background-color: #ecf9f1;
    padding: 10px 15px;
    margin-bottom: 20px;
    display: inline-block;
    border-radius: 8px;
    letter-spacing: 1px;
}

.woootp-coupon-popup-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.woootp-coupon-popup-buttons button {
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

#woootp-copy-coupon-code-btn {
    background-color: #27ae60;
    color: #fff;
}

#woootp-copy-coupon-code-btn:hover {
    background-color: #219150;
}

#woootp-copy-coupon-close-btn {
    background-color: #bdc3c7;
    color: #2c3e50;
}

#woootp-copy-coupon-close-btn:hover {
    background-color: #95a5a6;
}

#woootp-checkout-verification-otp-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center; 
    justify-content: center; 
}

#woootp-checkout-verification-otp-popup-container {
    background-color: #fff;
    width: 45%;
    max-width: 350px;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
}

.woootp-checkout-verification-otp-popup-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.woootp-checkout-verification-otp-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    font-size: 1rem;
}

.woootp-checkout-verification-otp-input:focus {
    border-color: #0073aa;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#woootp-checkout-verify-otp-btn {
    background-color: #00192F;
    color: #fff;
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.3s;
}

.woootp-coupon-box {
    border: 2px dashed #4CAF50;
    padding: 20px;
    margin: 20px 0;
    background: #e8fbe7;
    color: #333;
    border-radius: 8px;
    font-family: sans-serif;
    position: relative;
    transition: 0.3s ease;
}

.woootp-coupon-box .coupon-code {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.woootp-coupon-box .coupon-status.expired-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #999;
    color: #fff;
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 4px;
}

.woootp-coupon-box.expired {
    background: #f5f5f5;
    color: #aaa;
    border-color: #ccc;
}

#woootp-whatsapp-login-button {
    border: 1px solid #25d366;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    border-radius: 5px;
    background-color: #fff;
    width: 100%;
    text-transform: capitalize;
}

.woootp-whatsapp-login-btn-container .fa-whatsapp {
    font-size: 23px;
    color: #25d366;
}

.woootp-login-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 15px 0;
    font-size: 14px;
    color: #888;
    max-width: 80%; /* Limit the width of the divider */
    margin-left: auto; /* Center align */
    margin-right: auto; /* Center align */
}

.woootp-login-divider span {
    padding: 0 10px;
    background: #fff; /* Make sure the background matches the popup background */
}

.woootp-login-divider::before,
.woootp-login-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
}

.woootp-other-login-options button {
    margin-bottom: 12px;
}

.woootp-my-account-page #woootp-login-popup {
    background-color: #fff;
}

#woootp-login-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
#woootp-login-popup-content {
    text-align: center;
    position: relative;
}
#woootp-login-popup-close-btn {
    position: absolute;
    top: -20px;
    right: -27px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.woootp-dial-code-input-field-update {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.woootp-dial-code-input-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 5px;
}

.woootp-my-account-details-phone-number-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}

#woootp-my-account-details-dial-code {
    max-width: 75px;
    text-align: center;
    cursor: pointer;
}

#woootp-selected-dial-code-login {
    cursor: pointer;
}

.woootp-forgot-password-selected-dial-code {
    cursor: pointer;
}

/* Styles for the country code popup */
#wooot-country-code-popup, #country-code-popup-login, #update-details-country-code-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.country-code-list {
    background: #fff;
    border-radius: 5px;
    width: 80%;
    max-width: 400px;
    max-height: 80%;
    overflow-y: scroll;
    overflow-x: hidden;
}
.woootp-country-search-wraper {
    box-shadow: 0 1px 8px rgba(0,0,0,0.1);
    padding: 10px;
}
#country-code-search {
    width: 100%;
    padding: 10px;
}
#country-code-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
#country-code-list li {
    padding: 10px;
    cursor: pointer;
}
#country-code-list li:hover {
    background-color: #f0f0f0;
}
/* Styles for OTP inputs */
#woootp-verify-otp-form #woootp-inputs-fields {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    gap: 10px;
}
#woootp-inputs-fields .woootp-input-field {
    width: 42px;
    height: 45px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #00192f;
    border: 1px solid #e2e2e2;
    padding: 0;
    transition: border-color 0.3s ease;
}
#woootp-inputs-fields .woootp-input-field:focus {
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
}
.woootp-resend-otp {
    margin-bottom: 10px;
}
.woootp-resend-otp #resend-otp-link {
    color: #344054;
}
/* Styles for the update details popup container */
.woootp-update-details-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Styles for the update details popup content */
.update-details-popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    position: relative;
    width: 80%;
    max-width: 400px;
    max-height: 80%;
    overflow-y: auto;
}

/* Close button for the update details popup */
#update-details-popup-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    background: transparent;
    border: none;
    font-size: 1.5rem;
}

/* Styles for the update details form */
#woootp-update-details-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Labels for the update details form */
#woootp-update-details-form label {
    width: 100%;
    text-align: left;
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 500;
}

/* Input fields for the update details form */
#woootp-update-details-form input[type="text"],
#woootp-update-details-form input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    font-size: 1rem;
}
#dial-code-wrapper-update {
    padding: 8px 10px;
    margin-bottom: 15px;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    font-size: 1rem;
}
#woootp-update-details-form input[type="text"]:focus,
#woootp-update-details-form input[type="email"]:focus {
    border-color: #0073aa;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#woootp-update-details-form input[type="submit"] {
    text-transform: capitalize;
    background-color: #00192F;
    color: #fff;
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.3s;
}

.woootp-update-details-btn:hover {
    background-color: #005a87;
}
.woootp-error-message {
    color: red;
    width: 100%;
    font-size: 13px;
    padding: 5px 10px;
    background-color: #fef3f2;
    border-radius: 20px;
    margin-bottom: 15px;
}

.woootp-biometric-login-error-message {
    color: red;
    width: 100%;
    font-size: 13px;
    padding: 5px 10px;
    background-color: #fef3f2;
    border-radius: 20px;
    margin: 15px 0 10px;
}

.loading-spinner {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #3498db;
    width: 16px;
    height: 16px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    display: inline-block;
    position: absolute;
}

.woootp-sent-to-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.woootp-sent-to-content #otp-sent-to {
    font-weight: 600;
    color: #667085;
    font-size: 17px;
}
.woootp-sent-to-content #woootp-edit-mobile {
    color: #079455;
    border: 1px solid #079455;
    border-radius: 2rem;
    font-size: 12px;
    font-weight: 600;
    padding: 0px 8px;
}
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.woootp-login-shortcode {
    display: flex;
    align-items: center;
    font-weight: 600;
    gap: 5px;
    cursor: pointer;
}

.woootp-shortcode-login-text {
    text-transform: uppercase;
}

.woootp-shortcode-logout-text {
    text-transform: uppercase;
    font-size: 12px;
}

.woootp-login-popup-title, .update-details-title {
    font-size: 23px;
    font-weight: 600;
    line-height: 1.4;
    color: #00192F;
    margin-bottom: 15px;
}
.woootp-login-popup-description {
    color: #667085;
    font-size: 15px;
    margin-bottom: 15px;
}
.woootp-verification-title {
    font-size: 23px;
    font-weight: 600;
    line-height: 1.4;
    color: #00192F;
    margin-bottom: 10px;
}
.woootp-verification-description {
    color: #667085;
    font-size: 15px;
    margin-bottom: 3px;
}

#woootp-login-with-password-form input {
    margin-bottom: 15px;
}

#woootp-mobile-email,
#woootp-email-username-input,
#woootp-password-input,
#woootp-forgot-mobile-email-input {
    border: 1px solid #e2e2e2;
    color: #00192F;
    border-radius: 5px;
}

#woootp-mobile-email::placeholder,
#woootp-email-username-input::placeholder,
#woootp-password-input::placeholder,
#woootp-forgot-mobile-email-input::placeholder {
    color: #98A2B3;
}

#woootp-mobile-email:focus,
#woootp-email-username-input:focus,
#woootp-password-input:focus,
#woootp-forgot-mobile-email-input:focus {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    outline: none;
}

#woootp-dial-code-wrapper,
#woootp-forgot-password-dial-code-wrapper {
    border: 1px solid #e2e2e2;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 9px 10px;
    border-radius: 5px;
}

#woootp-dial-code-wrapper-update {
    border: 1px solid #e2e2e2;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 9px 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.woootp-login-forgot-password-container {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}

.woootp-login-with-password-toggle {
    font-size: 13px;
    text-align: center;
    cursor: pointer;
    color: #0073aa;
}

.woootp-forgot-password-toggle {
    font-size: 13px;
    text-align: center;
    cursor: pointer;
    color: #0073aa;
}

.woootp-login-with-otp-toggle {
    margin-top: 12px;
    font-size: 13px;
    text-align: center;
    cursor: pointer;
    color: #0073aa;
}

#woootp-request-otp-button,
#woootp-login-with-password-button,
#woootp-forgot-password-button {
    width: 100%;
    border-radius: 5px;
    text-transform: capitalize;
    background-color: #00192F;
    color: #fff;
    font-size: 15px;
    position: relative;
}

#woootp-biometric-login-btn {
    padding: 5px;
    border: 1px solid #00192F;
    background-color: #fff;
    border-radius: 5px;
    text-transform: capitalize;
    width: 100%;
}

.woootp-fingerprint-icon {
    fill: #888;
    width: 30px;
    height: 30px;
}

.verify-otp-button-wraper .woootp-verify-otp-button {
    width: 100%;
    border-radius: 5px;
    text-transform: capitalize;
    background-color: #00192F;
    color: #fff;
    font-size: 15px;
    position: relative;
}
.country-code-popup-content {
    background-color: #fff;
    position: relative;
    width: 320px;
}

.woootp-country-list-container {
    max-height: 450px;
    overflow-y: auto;
    overflow-x: hidden;
}

.woootp-country-list-container::-webkit-scrollbar {
  width: 5px;
}

.woootp-country-list-container::-webkit-scrollbar-track {
  background: #f1f1f1; 
}

.woootp-country-list-container::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 20px;
}

.woootp-country-list-container::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

#woootp-country-code-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woootp-biometric-popup-image-container {
    background-color: #F8F8F8;
    height: 130px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.country-name-code-Dialling-code {
    display: flex;
    justify-content: space-between;
    padding: 6px 15px;
    font-size: 13px;
    color: #00192F;
}

.woootp-country-name-country-code {
    display: flex;
    gap: 5px;
}

.woootp-biometric-popup-fingerprint-icon {
    fill: #bbbbbb;
    width: 90px;
    height: 90px;
}

#country-code-popup-close-btn, #country-code-popup-close-btn-login, #country-code-popup-close-btn-update {
    height: 38px;
    color: #fff;
    background-color: #00192F;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.woootp-country-list {
    border-bottom: 1px solid #ddd;
    margin: 0;
    cursor: pointer;
}

.woootp-country-list:last-child {
    border-bottom: 0;
}

.country-popup-close-btn-wraper {
    background-color: #fff;
    box-shadow: 0 0 9px rgba(0,0,0,0.12);
    padding: 10px;
}

.woootp-login-popup-terms-link {
    font-size: 13px;
    margin-top: 10px;
}

.woootp-image-login-container {
    background-color: #fff;
}

.woootp-biometric-container-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.woootp-biometric-device {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f9f9f9;
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.biometric-device-name {
    flex: 1;
    padding: 5px 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 15px;
    box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.woootp-biometric-device-status-delete-button {
    display: flex;
    align-items: center;
    gap: 10px;
}

.biometric-device-status-toggle-switch {
    position: relative;
    display: inline-block;
    width: 65px; /* Updated width */
    height: 30px;
    margin: 0;
}

.biometric-device-status-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.biometric-device-status-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 18px;
}

.biometric-device-status-toggle-slider::before {
    position: absolute;
    content: "";
    height: 25px;
    width: 25px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.biometric-device-status-toggle-switch input:checked + .biometric-device-status-toggle-slider {
    background-color: #4caf50;
}

.biometric-device-status-toggle-switch input:checked + .biometric-device-status-toggle-slider::before {
    transform: translateX(35px);
}

.biometric-device-status-toggle-slider:hover {
    background-color: #bfbfbf;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.biometric-device-status-toggle-slider:after {
    content: "OFF";
    color: white;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    font-family: Arial, sans-serif;
    transition: 0.4s;
    line-height: normal;
}

input:checked + .biometric-device-status-toggle-slider:after {
    content: "ON";
    left: 10px;
    right: auto;
    transform: translateY(-50%);
}

#woootp-register-biometric-button {
    background-color: #1C2434;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#woootp-register-biometric-button:hover {
    background-color: #1C2434;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

#woootp-delete-biometric-device-btn {
    background: none;
    color: #1C2434;
    cursor: pointer;
    font-size: 23px;
    padding: 5px;
    transition: color 0.3s ease;
    min-height: unset;
    border: 1px solid #1C2434;
    border-radius: 5px;
}

#woootp-delete-biometric-device-btn:hover {
    color: #ff1a1f;
}

.woootp-biometric-register-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.woootp-biometric-register-popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

#woootp-biometric-popup-close-btn {
    background-color: transparent;
    color: #1C2434;
    padding: 0;
    min-height: unset;
    font-size: 25px;
    position: absolute;
    right: 15px;
    top: 10px;
}

.woootp-biometric-popup-continue-btn-container .button {
    background-color: #1C2434;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.woootp-biometric-popup-continue-btn-container .button:hover {
    background-color: #1C2434;
    transform: translateY(-2px);
}

.woootp-biometric-popup-title {
    font-size: 21px;
    color: #1C2434;
    font-weight: bold;
}

.woootp-biometric-popup-description {
    color: #707070;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    
    .woootp-mobile-image-container {
        display: none;
    }
    
    .woootp-image-login-container {
        display: flex;
        border-radius: 5px;
        overflow: hidden;
    }
    
    .woootp-pc-image-container {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .woootp-login-container {
        flex: 1;
        padding: 20px;
    }
    
    .woocommerce-MyAccount-navigation-link--secure-login, .secure-login-link {
        display: none;
    }
}

@media (max-width: 768px) {
    
    #woootp-checkout-verification-otp-popup {
        align-items: flex-end; 
        justify-content: center;
    }
    
    #woootp-checkout-verification-otp-popup-container {
        width: 100%;
        max-width: none;
        border-radius: 15px 15px 0 0;
        position: relative;
        transform: translateY(100%);
        transition: transform 0.3s ease-in-out;
    }

    #woootp-checkout-verification-otp-popup-container.active {
        transform: translateY(0);
    }
    
    .woootp-image-login-container {
        height: 100%;
    }
    
    .woootp-pc-image-container {
        display: none;
    }
    
    .woootp-mobile-image-container {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .country-code-popup-content {
        height: 100%;
        width: 100%;
    }
    .woootp-country-list-container {
        max-height: calc(100% - 17%);
    }
    
    .woootp-login-container {
        padding: 15px;
    }
    #woootp-login-popup-content {
        height: 100%;
        width: 100% !important;
    }
    #woootp-login-popup-close-btn {
        top: 5px;
        right: 15px;
        color: #00192F;
    }
    .woootp-country-list-container::-webkit-scrollbar {
        width: 0;
    }
    .woootp-update-details-popup {
        align-items: flex-end; 
        justify-content: center;
    }
    .update-details-popup-content {
        width: 100%;
        max-width: none;
        border-radius: 15px 15px 0 0;
        position: relative;
        transform: translateY(100%);
        transition: transform 0.3s ease-in-out;
    }
    .update-details-popup-content.active {
        transform: translateY(0);
    }
}