        /* Add arrow to Select2 dropdown */
.select2-selection--multiple {
    position: relative; /* Ensure positioning for the icon */
    padding-right: 30px; /* Make space for the arrow */
}

.select2-selection--multiple::after {
    content: '\25BC'; /* Unicode for a down arrow */
    position: absolute;
    right: 10px; /* Adjust the position to your preference */
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Prevent the icon from interfering with clicks */
    font-size: 12px; /* Adjust icon size */
    color: #888; /* Adjust icon color */
}

.custom-radio {
        display: inline-block;
        width: 16px;
        height: 16px;
        border: 2px solid #FF5900;
        border-radius: 50%;
        margin-left: 10px;
        position: relative;
        cursor: pointer;
        transition: border-color 0.3s;
    }

    .custom-radio::after {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        background-color: transparent;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: background-color 0.3s;
    }

    .custom-radio.selected {
        border-color: #FF5900; /* Selected border color */
    }

    .custom-radio.selected::after {
        background-color: gray; /* Inner color for selected state */
    }

    .select2-results__option[aria-selected="true"] .custom-radio {
        border-color: #FF5900; /* Change border color to orange */
        background-color: #FF5900; /* Change background color to orange */
    }




.select2-results__option[aria-selected="true"] .custom-radio::after {
    background-color: #FF5900; /* Inner circle becomes orange */
}

/* On hover, the background color should turn gray */
.select2-container--default .select2-results__option:hover {
    background-color: #ccc !important; /* Light gray on hover */
}

/* When selected, the background color should remain white */
.select2-container--default .select2-results__option[aria-selected="true"] {
    color: rgba(0, 0, 0, 0.80);
}

/* On hover of a selected option, keep the white background */
.select2-container--default .select2-results__option[aria-selected="true"]:hover {
    background-color: transparent !important; 
    color: rgba(0, 0, 0, 0.80) !important ;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: transparent !important;
    color: rgba(0, 0, 0, 0.80) !important;
    font-feature-settings: 'ss11' on !important;
    font-family: "Forma DJR Deck" !important;
    font-size: 15px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 24px !important;
    letter-spacing: -0.195px !important;

}

.select2-dropdown {
    border-radius: 8px !important;
    background: #f7f7f7 !important;
    border: none !important;
}

.select2-container--default .select2-results>.select2-results__options {
        height: 320px !important;
        max-height: 320px !important;
}


.select2-results__option {
    padding: 14px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03) !important;
    background-color: transparent !important;
    color: rgba(0, 0, 0, 0.80) !important;
    font-feature-settings: 'ss11' on !important;
    font-family: "Forma DJR Deck" !important;
    font-size: 15px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 24px !important;
    letter-spacing: -0.195px !important;
}


[data-name="nda-checkbox"] .wpcf7-not-valid-tip {
    display: none !important;
}
[data-name="InstallerType"] .wpcf7-not-valid-tip {
    display: none !important;
}
[data-name="nda-checkbox"] .wpcf7-list-item-label
 {
    display: none !important;
}

[data-name="nda-checkbox"] .wpcf7-checkbox input[type="checkbox"] {
    height: 24px !important;
    width: 24px !important;
    border-radius: 4px !important;
    border: 2px solid #FF5900 !important; /* Example: orange border */
    background-color: #fff !important;  /* Example: white background */
}

/* Style the checkbox when it is checked */
[data-name="nda-checkbox"] .wpcf7-checkbox input[type="checkbox"]:checked {
    background-color: #FF5900 !important;  /* Change to orange when checked */
    border-color: #FF5900 !important;      /* Change border color when checked */
    accent-color: #ff6600;
}

[data-name="nda-checkbox"] .wpcf7-checkbox input[type="checkbox"]:checked::before {
    color: #fff !important; /* Set the checkmark color to white */
}

form#companyForm span.wpcf7-not-valid-tip {
font-size: 10px;
}

#nda-checkbox input[type="checkbox"] {
    appearance: none; / For modern browsers /
    -webkit-appearance: none; / For Safari /
    width: 24px;
    height: 24px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    background-color: #fff;
}




#nda-checkbox input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 8px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

[data-name="nda-checkbox"] .wpcf7-checkbox input[type="checkbox"]:disabled {
    height: 24px !important;
    width: 24px !important;
    border-radius: 4px !important;
    border: none !important; /* Remove border */
    background-color: #d3d3d3 !important; /* Set to gray */
    cursor: not-allowed !important; /* Indicate disabled state */
}


.wpcf7-not-valid-tip {
    display: none !important;
}

.wpcf7-not-valid {
    border: 2px solid red !important; 
    background-color: #ffe6e6;
}

.wpcf7-not-valid {
    transition: border-color 0.3s, background-color 0.3s;
}


.wpcf7-response-output {
    align-items: center;
    background-color: #FF1A0026 !important;
    border-color: #FF1A0026 !important;
    border-radius: 8px;
    display: flex;
    / gap: 10px; /
    height: 56px;
    padding: 16px !important;
    position: relative;
    / width: 100%; /
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    color: #ff1a00;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.013em;
    text-align: center;
    font-family: "Forma DJR Deck" !important;
}

.success-msg{
        color: #FF5900 !important;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0 !important;
}

