
#anp-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#anp-popup {
    background: white;
    padding: 0;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

#anp-popup-close {
    background: none;
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
    border: 1px solid #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}




.anp-popup-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
}

.cn-btn {
    justify-content: center;
    margin: auto;
    display: flex;
}

.anp-popup-content p {
}

.anp-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.anp-form-row input:focus,
.anp-form-row select:focus {
    outline: none;
    border-color: #114895 !important;
}

#anp-subscription-form button {
    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;
    margin-top: 15px;
    margin-bottom: 10px;
    transition: .2s;
}

#anp-subscription-form button:hover {
    background-color: #022E69;
    color: #FFF;
}

#anp-success-message {
    text-align: center;
    color: #082450;
    font-weight: bold;
    margin-bottom: 1.5rem;
    font-size: larger;
}

.anp-dashboard-stats {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.anp-stat-box {
    background: #fff;
    padding: 20px;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    min-width: 200px;
}

.anp-stat-box h3 {
    margin: 0 0 10px 0;
    color: #23282d;
}

.anp-stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #082450;
    margin: 0;
}

@media (max-width: 600px) {
    .anp-form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    #anp-popup {
        margin: 20px;
        padding: 20px;
    }
}


.anp-popup-header {
    background: #082450;
    position: relative;
    padding: 30px;
    color: white;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    border-radius: 10px 10px 0px 0px;
}

.anp-popup-header h2 {
    font-size: larger;
}

div#anp-popup .intro {
    color: #032450;
    font-size: 14px;
    text-align: justify;
    width: 100%;
    display: block;
    padding: 20px 30px;
}

.anp-popup-content hr {
    margin-bottom: 25px;
}

form#anp-subscription-form input::placeholder {
    color: #9da3af;
}

form#anp-subscription-form .anp-form-row > input, 
form#anp-subscription-form #phone-newsletter,
form#anp-subscription-form .anp-form-row > select {
    background: none !important;
    outline: none !important;
    box-shadow: none !important;
    transition: none !important;
    width: 100%;
    color: #022E69;
    padding: 12px 12px 11px 0px;
    line-height: normal;
    height: 45px;
    font-size: 14px;
}

form#anp-subscription-form .custom-select #selected-text {
    color: #022E69 !important;
}

form#anp-subscription-form .iti {
    width: 100%;
}

form#anp-subscription-form .iti__selected-dial-code {
    color: #022E69;
}

form#anp-subscription-form .anp-form-row > input,
form#anp-subscription-form .anp-form-row > select,
form#anp-subscription-form #phone-newsletter {
  background: none !important;   /* Remove background */
  outline: none !important;      /* Remove focus outline */
  box-shadow: none !important;   /* Remove focus shadow */
  transition: none !important;   /* Remove hover/focus transitions */
}

/* Also remove hover and focus styles explicitly */
form#anp-subscription-form .anp-form-row > input:hover,
form#anp-subscription-form #phone-newsletter:hover,
form#anp-subscription-form .anp-form-row > select:hover,
form#anp-subscription-form .anp-form-row > input:focus,
form#anp-subscription-form #phone-newsletter:focus,
form#anp-subscription-form .anp-form-row > select:focus {
  background: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-color: #114895 !important;
}


form#anp-subscription-form input[]

form#anp-subscription-form {
    padding: 0px 30px;
}

.app_frm_country {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.app_frm_country > span {
    font-weight: 500;
    color: #969696;
    font-size: x-small;
    margin-bottom: -6px !important;
    line-height: normal;
    z-index: 1;
}

p.anp_privacy_policy {
    color: #022E69;
    font-size: 11px;
    font-weight: 400;
    text-align: justify;
    width: 100%;
    display: block;
    padding-top: 15px;
    padding-bottom: 25px;
}

p.anp_privacy_policy a {
    text-decoration: underline;
}

/* Form inline messages */
#anp-form-message {
    padding: 10px 15px;
    border-radius: 0px;
    font-size: 13px;
    text-align: center;
    margin-bottom: 10px;
}
#anp-form-message.anp-msg-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
#anp-form-message.anp-msg-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Toast notification styles */
.anp-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    max-width: 300px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 10px;
}

.anp-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.anp-toast.hide {
    transform: translateX(100%);
    opacity: 0;
}

.anp-toast::before {
    content: "✓";
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.anp-toast.error {
    background: #f44336;
}

.anp-toast.error::before {
    content: "✕";
}

/* Mobile responsive styles for toast */
@media (max-width: 480px) {
    .anp-toast {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
        opacity: 0;
    }
    
    .anp-toast.show {
        transform: translateY(0);
        opacity: 1;
    }
    
    .anp-toast.hide {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* ===================================== */
/* MC4WP Newsletter Footer Styles       */
/* ===================================== */

/* mailchimp footer newsletter */
.mc4wp-newsletter-wrapper .mc4wp-form-container form {
  background: #e8ecf9;
  display: grid !important;
  grid-template-columns: 1fr 151px;
  border-radius: 0px;
  line-height: 0;
  margin: 0;
  align-items: center;
}

.mc4wp-newsletter-wrapper .mc4wp-form-container input::placeholder {
  padding: 10px;
  display: flex;
  color: #9da3af !important;
  font-size: 13px;
}

.mc4wp-newsletter-wrapper .mc4wp-form-container input {
    color: #022E69;
    padding: 10px;  
    display: flex;
    color: #022E69 !important;
    font-size: 13px;
}

.mc4wp-newsletter-wrapper .mc4wp-form-container button {
  padding: 5px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1c2f65;
  border: 1px solid #1c2f65;
  border-radius: 0 4px 4px 0px;
  height: 35px;
  line-height: 0;
  margin: 0;
  /* right: -1px;
  position: relative;
  top: 0.2px; */
}

.mc4wp-newsletter-wrapper .mc4wp-form-container button:hover {
  background: #1c2f65;
  color: white;
}

.mc4wp-newsletter-wrapper .mc4wp-form-container > {
  width: fit-content !important;
}

.mc4wp-newsletter-wrapper .mc4wp-form-container{
  padding: 0;
}

.iti--fullscreen-popup.iti--container {
    z-index: 9999;
}

@media (max-width: 1024px) {

    #anp-subscription-form #phone-newsletter::placeholder {
        font-size: 14px !important;
    }

}

@media screen and (max-width:590px){
  /* mailchimp footer newsletter */
  .mc4wp-newsletter-wrapper .mc4wp-form-container {
    display: flex !important;
    background:transparent;
    gap:10px;
  }

  .mc4wp-newsletter-wrapper .mc4wp-form-container input{
    background:white;
  }

  .mc4wp-newsletter-wrapper .mc4wp-form-container button {
    color:white!important;
    border-color:white!important;
    padding:10px 20px!important;
    border-radius:10px!important;
  }
}

/* ===================================== */
/* Success Modal                         */
/* ===================================== */
.anp-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10001;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    animation: anpFadeIn 0.3s ease;
}

@keyframes anpFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.anp-success-popup {
    background: white;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    text-align: center;
}

.anp-success-header {
    background: #022450;
    color: white;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.anp-success-header h3 {
    margin: 0;
    font-size: larger;
    color: white;
}

.anp-success-close-btn {
    background: none;
    border: 1px solid #ffffffa6;
    color: white;
    font-size: 22px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.anp-success-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.anp-success-content {
    padding: 32px 30px 30px;
}

.anp-success-icon {
    color: white;
    background: #022450;
    width: fit-content;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 1rem;
    display: flex;
    justify-content: center;
}

.anp-success-icon svg {
    width: 35px;
    height: 35px;
}

.anp-success-msg {
    font-size: 18px;
    font-weight: 400;
    color: #022e69;
    margin: 0 0 10px;
}

.anp-success-submsg {
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .anp-success-popup {
        width: 95%;
        margin: 20px;
    }
}

@media (max-width: 767px) {

    .anp-success-header {
        padding: 16px 20px;
    }

    .anp-success-header h3 {
        font-size: 16px;
    }

    .anp-success-content {
        padding: 20px;
    }


}

