html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

/*body {
  margin-bottom: 60px;
}*/



#aria-call-form {
    font-family: "Segoe UI", system-ui, sans-serif;
    background: #ffffff;
    padding: 14px;
    border-radius: 16px;
 
}

    /* rows */
    #aria-call-form .acf-row {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 8px;
    }

    #aria-call-form .acf-column {
        flex-direction: column;
        align-items: flex-start;
    }

    /* labels */
    #aria-call-form .acf-label {
        width: 35%;
        font-size: 13px;
        font-weight: 500;
        color: #1f2937;
    }

    /* inputs */
    #aria-call-form input[type="text"],
    #aria-call-form input[type="tel"],
    #aria-call-form select,
    #aria-call-form textarea {
        width: 100%;
        padding: 7px 10px;
        font-size: 13px;
        border-radius: 8px;
        border: 1px solid #d1d5db;
        background: #f9fafb;
        outline: none;
    }

    #aria-call-form textarea {
        width: 100%;
        resize: none;
	height: 65px;
    }

        #aria-call-form input:focus,
        #aria-call-form select:focus,
        #aria-call-form textarea:focus {
            border-color: #2563eb;
            background: #ffffff;
        }

    /* radio */
    #aria-call-form .acf-radio {
        display: flex;
        gap: 14px;
        width: 100%;
    }

        #aria-call-form .acf-radio label {
            font-size: 13px;
            cursor: pointer;
        }

    /* buttons */
    #aria-call-form .acf-buttons {
        display: flex;
        gap: 10px;
        margin-bottom: 10px;
    }

    #aria-call-form button {
        flex: 1;
        padding: 11px 0;
        font-size: 16px;
        border-radius: 6px;
        border: none;
        cursor: pointer;
    }

    /* call */
    #aria-call-form #call-button {
        background: linear-gradient(135deg, #16a34a, #22c55e);
        color: #ffffff;
    }

    /* hangup */
    #aria-call-form #btnHangupImg {
        background: linear-gradient(135deg, #dc2626, #ef4444);
        color: #ffffff;
    }

    /* cancel */
    #aria-call-form .acf-cancel {
        width: 100%;
        background: #f3f4f6;
        border: 1px solid #d1d5db;
        color: #374151;
        margin-bottom: 8px;
    }

    /* status */
    #aria-call-form .acf-status {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        color: #374151;
        border-top: 1px dashed #e5e7eb;
        padding-top: 6px;
    }


.aria-call-card {
    background: #ffffff;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}





.aria-call-card {
    background: #ffffff;
    width: 30%;
    max-width: 420px;
    max-height: 100%;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#aria-call-modal {
    z-index: 99999 !important;
}

/* Tablets */
@media (max-width: 1024px) {
    .aria-call-card {
        width: 45%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .aria-call-card {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        margin:10px;
    }
}


.bg-success {
    background-color: #1a9e4b!important;
    padding: 1px 11px 3px 11px!important;
    color: white!important;
    border-radius: 50px!important;
}




.captcha-container {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100%;
}

#captchaImage {
    transition: all 0.2s ease !important;
    width: 100px;
    height: 48px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    cursor: pointer;
}

    #captchaImage:hover {
        transform: scale(1.02) !important;
        box-shadow: 0 4px 12px rgba(0,120,255,0.3) !important;
    }

#btnRefreshCaptcha:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(0,120,255,0.4) !important;
}

#captchaAnswer:focus {
    outline: none !important;
    border-color: #0078ff !important;
    box-shadow: 0 0 0 3px rgba(0,120,255,0.1) !important;
}

#btnRefreshCaptcha {
   
    padding: 0!important;
    
}
