.support .wpforms-container .wpforms-field input,
input{
    height: 40px;
    border: 1px solid #ECECEC;
    line-height: 40px;
    padding: 0 10px;
    font-size: 16px;
    letter-spacing: 0;
    border-radius:14px;
    display: flex;
    gap: 10px;
    font-weight: 400;
}

input{
    height: 40px;
    border: 1px solid #ECECEC;
    line-height: 40px;
    padding: 0 10px;
    font-size: 16px;
    letter-spacing: 0;
    border-radius:14px;
    display: flex;
    gap: 10px;
    font-weight: 400;
}

input:read-only {
    cursor: not-allowed;
    background: #F8F8F8;
    border-color: #F8F8F8;
    color:#767676;
}

.woocommerce-invalid-required-field input{
    border: 1px solid var(--primary);
}

.support .wpforms-container .wpforms-field textarea,
textarea{
    height: 240px;
    border: 1px solid #ECECEC;
    line-height: 40px;
    padding: 0 10px;
    font-size: 16px;
    letter-spacing: 0;
    border-radius:14px;
    display: flex;
    gap: 10px;
    font-weight: 400;
}

.field--checkbox label {
    cursor: pointer;
    display: flex;
    gap: 10px;
    align-items: center;
}

.field--checkbox label span{
    display: flex; 
    justify-content: space-between; 
    width: -webkit-fill-available;
}
.field--checkbox label span i{
    color: var(--graygray-300);
    font-size: 14px;
}
.field--checkbox input {
    display: none;
}
.field--checkbox label::before{
    content:"";
    display: block;
    content: "";
    width: 15px;
    height: 16px;
    box-sizing: border-box;
    transition: 0.3s all;
    background-image: url(/wp-content/themes/biohacking-redesign/img/icons/checkbox-default.svg);
    background-size: 100%;
    background-repeat: no-repeat;
}

.field--checkbox input:checked + label::before{
    background-image: url(/wp-content/themes/biohacking-redesign/img/icons/checkbox-checked.svg) ;
}

/* select{
    -webkit-appearance: none;   
    -moz-appearance: none;  
    appearance: none; 
    background: url(/wp-content/themes/biohacking-redesign/img/icons/select-drop.png) calc( 100% - 10px) center  / 16px no-repeat;  
    border: 1px solid #ECECEC; 
    padding: 0px 30px 0px 10px; 
    border-radius: 14px; 
    height: 36px; 
    min-width: 168px; 
    line-height: 36px;
}

select option{
    border: none;
    outline: none;
}


select option:checked,
select option:hover{
    background: #fde6e6;
}

 */

.popup .select2-container {
}

.popup .select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #ECECEC;
    border-radius: 14px;
    height: 40px;
}

.popup .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 22px;
    font-size: 16px;
    color:#232526;
}

.popup .select2-container--default .select2-selection--single .select2-selection__arrow b{
    display: none;
}

.popup .select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 16px;
    position: absolute;
    top: 12px;
    right: 5px;
    width: 20px;
    background-image: url(/wp-content/themes/biohacking-redesign/img/icons/hdr-drop-primary.svg);
    background-size: 100%;
    background-repeat: no-repeat;
}

.popup .select2-container--default .select2-results__option--highlighted[aria-selected], 
.popup .select2-container--default .select2-results__option--highlighted[data-selected] {
    background-color: #fde6e6;
}

.popup .select2-dropdown{
    border-color: #ECECEC;
}