/*
 * Farrows Formidable CSS
 * Custom styles for Avani Solutions theme
 * Version: 1.0.0
 */

/* Add your custom CSS here */

.frm_style_formidable-style{
    margin-top: 2rem;
}

.frm_style_formidable-style.with_frm_style .frm_submit button.frm_button_submit{
    margin: auto !important;
    background: none;
    border: 1px solid #0aa4a6;
    color: #0aa4a6;
    padding: 0.75rem 1.75rem;
    border-radius: 25px;
    box-shadow: none;
    transition: all 0.3s ease;
}
.frm_style_formidable-style.with_frm_style .frm_submit button.frm_button_submit[disabled],
.frm_style_formidable-style.with_frm_style .frm_submit button.frm_button_submit:disabled {
    background: #0aa4a6 !important;
    color: #fff !important;
    cursor: not-allowed;
}
.frm_style_formidable-style.with_frm_style .frm_submit button.frm_button_submit:hover,
.frm_style_formidable-style.with_frm_style .frm_submit button.frm_button_submit:active {
    background: #0aa4a6 !important;
    color: #fff !important;
    transform: scale(1.1);
}
.calculator-wrapper-new .frm_style_formidable-style.with_frm_style .frm_submit button.frm_button_submit,
.from-brand-light .frm_style_formidable-style.with_frm_style .frm_submit button.frm_button_submit{
    color: #fff !important;
    border: 1px solid #fff !important;
}
.from-brand-light .frm_style_formidable-style.with_frm_style .frm_primary_label,
.from-brand-light .frm_style_formidable-style.with_frm_style .frm_description,
.from-brand-light .frm_style_formidable-style.with_frm_style .frm_checkbox label{
    color: #fff !important;
}

/* Custom Formidable Forms Checkbox Styles for input inside label */
.frm_style_formidable-style.with_frm_style .frm_checkbox label {
    position: relative;
    padding-left: 2em;
    cursor: pointer;
    user-select: none;
    display: inline-block;
}

.frm_style_formidable-style.with_frm_style .frm_checkbox label input[type="checkbox"] {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5em;
    height: 1.5em;
    border: 1px solid #0073aa;
    border-radius: 4px;
    background: none;
    transition: border-color 0.2s;
    z-index: 1;
}
.frm_forms.with_frm_style .frm_fields_container .frm_checkbox input[type=checkbox]:not([disabled]):checked{
    background-color: rgb(1 79 93) !important;
    border-color: rgb(1 79 93) !important;
}
.from-brand-light .frm_forms.with_frm_style .frm_fields_container .frm_checkbox input[type=checkbox]:not([disabled]):checked{
    background-color: #fff !important;
    border-color: #fff !important;
}
.frm_forms.with_frm_style .frm_fields_container .frm_checkbox input[type=checkbox]:not([disabled]):focus{
    box-shadow: none !important;
}
/* Updated checkmark SVG to use #0aa4a6 as the stroke color */
.frm_forms.with_frm_style .frm_fields_container .frm_checkbox input[type=checkbox]:before{
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.6667 1.5L4.25001 7.91667L1.33334 5' stroke='%230aa4a6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}
.frm_style_formidable-style.with_frm_style .frm_checkbox label input[type="checkbox"]:focus {
    outline: none;
    background: none !important;
}

.frm_style_formidable-style.with_frm_style .frm_checkbox label input[type="checkbox"]:checked {
    background-color: none !important;
}
.from-brand-light .frm_style_formidable-style.with_frm_style .frm_checkbox label input[type="checkbox"] {
    border-color: #fff !important;
}

.frm_forms input[type=text].frm_verify{ display:none !important; }