#checkout-page-orders-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; 
}

#checkout-otp-popup-container {
    background-color: #fff;
    width: 45%;
    max-width: 350px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}

.checkout-otp-popup-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.checkout-order-enter-otp-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    font-size: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.checkout-order-enter-otp-input:focus {
    border-color: #0073aa;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#checkout-order-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;
}

.loadint-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Styles for the update details popup container */
.smsquicker-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;
}

#smsquicker-dial-code-selector {
    text-align: center;
    width: 20%;
}

/* Styles for the update details form */
#update-details-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Labels for the update details form */
#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 */
#update-details-form input[type="text"],
#update-details-form input[type="email"],
#smsquicker-my-account-details-phone-number input[type="text"] {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    font-size: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.smsquicker-dial-code-wrapper-update {
    padding: 8px 10px;
    margin-bottom: 15px;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    font-size: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
#update-details-form input[type="text"]:focus,
#update-details-form input[type="email"]:focus {
    border-color: #0073aa;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#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;
}

.smsquicker-update-details-btn:hover {
    background-color: #005a87;
}
.smsquicker-error-message {
    color: red;
    width: 100%;
    font-size: 13px;
    padding: 5px;
    background-color: #fef3f2;
    border-radius: 20px;
    margin-bottom: 15px;
}
.smsquicker-dial-code-input-field-update, .smsquicker-my-account-details-phone-field-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
}
#smsquicker-country-code-selection-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;
}
.smsquicker-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;
}

.country-code-popup-content {
    background-color: #fff;
    position: relative;
    width: 320px;
}

.smsquicker-country-list-container {
    max-height: 450px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Scrollbar styling */
.smsquicker-country-list-container::-webkit-scrollbar {
  width: 5px;
}

.smsquicker-country-list-container::-webkit-scrollbar-track {
  background: #f1f1f1; 
}

.smsquicker-country-list-container::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 20px;
}

.smsquicker-country-list-container::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

#smsquicker-country-code-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.country-name-code-Dialling-code {
    display: flex;
    justify-content: space-between;
    padding: 6px 15px;
    font-size: 13px;
    color: #00192F;
}

.smsquicker-country-name-country-code {
    display: flex;
    gap: 5px;
}

#country-code-popup-close-btn-update {
    height: 38px;
    color: #fff;
    background-color: #00192F;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.smsquicker-country-list {
    border-bottom: 1px solid #ddd;
    margin: 0;
    cursor: pointer;
}

.smsquicker-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;
    cursor: pointer;
}

.update-details-title {
    font-size: 23px;
    font-weight: 600;
    line-height: 1.4;
    color: #00192F;
    margin-bottom: 15px;
}

#smsquicker-my-account-details-dial-code {
    width: 10%;
    text-align: center;
}

.smsquicker-price-drop-alert-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;
}

.smsquicker-price-drop-alert-popup-content {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.smsquicker-price-drop-alert-popup-close-button, .smsquicker-price-history-popup-close-button {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 23px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    line-height: normal;
    background-color: #333;
    border: 2px solid #fff;
    border-radius: 20px;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.smsquicker-price-drop-alert-popup-title {
    font-size: 18px;
    color: #111;
    font-weight: 600;
    margin-bottom: 10px;
}

.smsquicker-price-drop-alert-popup-description {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.smsquicker-price-drop-alert-dial-code-mobile-number {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

#mobile-number-dial-code-selector {
    width: 15%;
    padding: 8px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer; 
}

#smsquicker-price-drop-alert-mobile-number {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.smsquicker-price-drop-alert-new-updates-checkbox {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

/* Checkbox label */
.smsquicker-price-drop-alert-new-updates-checkbox label {
    margin-bottom: 0;
    font-size: 14px;
    color: #333;
}

.smsquicker-price-drop-alert-submit-button-container {
    margin-top: 15px;
}

.smsquicker-price-drop-alert-submit-button-container .button {
    width: 100%;
    padding: 10px 15px;
    background-color: #0071a1;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.smsquicker-price-drop-alert-submit-button-container .button:hover {
    background-color: #005a80;
    color: #fff;
}

.smsquicker-get-price-alert-link-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 6px;
}

.smsquicker-price-history-tooltip-icon {
    color: #007bff;
    cursor: pointer;
    font-size: 18px;
}

.smsquicker-price-history-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;
}

.smsquicker-price-history-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.smsquicker-price-history-popup-title {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    #checkout-page-orders-otp-popup {
        align-items: flex-end; 
        justify-content: center;
    }
    
    #checkout-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;
    }

    #checkout-otp-popup-container.active {
        transform: translateY(0);
    }
    
    .smsquicker-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);
    }
    
    .country-code-popup-content {
        height: 100%;
        width: 100%;
    }
    .smsquicker-country-list-container {
        max-height: calc(100% - 17%);
    }
    .smsquicker-country-list-container::-webkit-scrollbar {
        width: 0;
    }

    .smsquicker-price-drop-alert-popup {
        align-items: flex-end; 
        justify-content: center;
    }
    
    .smsquicker-price-drop-alert-popup-content {
        width: 100%;
        max-width: none;
        border-radius: 15px 15px 0 0;
        transform: translateY(100%);
        transition: transform 0.3s ease-in-out;
    }
    
    .smsquicker-price-drop-alert-popup-content.active {
        transform: translateY(0);
    }
    
    .smsquicker-price-drop-alert-popup-close-button, .smsquicker-price-history-popup-close-button {
        top: -40px;
        right: 10px;
    }
    
    .smsquicker-price-history-popup {
        align-items: flex-end; 
    }
    
    .smsquicker-price-history-content {
        width: 100%;
        padding: 12px 15px;
        max-width: none;
        border-radius: 15px 15px 0 0;
        transform: translateY(100%);
        transition: transform 0.3s ease-in-out;
    }
    
    .smsquicker-price-history-content.active {
        transform: translateY(0);
    }
    
    .smsquicker-price-history-popup-title {
        font-size: 16px;
    }
}