.xcx_form_row{margin-bottom:20px;display:flex;flex-wrap: wrap;align-content: stretch;}
.xcx_form_error_{
    color:red;
    font-size: 0.8em;
    position: absolute;
    line-height: 12px;
}
.xcx_form_submit{
    position:relative;
    margin-top:14px;
    margin-bottom:14px;
}
.xcx_form_submit .xcx_form_errors{
    position: absolute;
    bottom: 35px;
    padding: 2%;
    border: 1px solid #ccc;
    background-color: white;
    font-size: 0.85em;
    z-index: 798374983479237849;
    color: red;
    display: none;
    left: 0px;
}
.xcx_form_submit_input{
    padding: 8px 20px;
    background-image: linear-gradient(-180deg,#37aee2 0,#0596d4 30%);
    background-color: #0596d4;
    color: #fff!important;
    border: none;
    cursor: pointer;
    font-size: 16px;
}
.xcx_form_submit_input:disabled{opacity: 0.4;}
.xcx_form_textarea{
    overflow-y: scroll;
    height: 100px;
    resize: none;
    color:black;
}
.xcx_form_input, .xcx_form_select, .xcx_form_textarea{    
    position: relative;
    margin-right: 2%;
    padding-top: 4px;
    padding-bottom: 14px;
    margin-bottom: 6px;
}
.xcx_form_input_textarea{
    position: relative;
    margin-bottom: 6px;
    padding-bottom: 8px;
	text-align: left;
}
.xcx_form_select option:hover, .xcx_form_select option:focus{
    background-color: #0596d4;
}

.xcx_form_input input, .xcx_form_select select{
    border-top:none;
    border-left:none;
    border-right:none;
    margin-top: 12px;
    height: 34px;
    color: #000;
    font-size: 14px;
    padding-right: 20px;
    display: inline-block;
    padding-left: 0;
}
.xcx_form_checkbox_input input{
    margin-top:0;
    height: unset;
}
.xcx_checkbox_element{
    display: flex;
    align-items: center;
}
.xcx_form_input .xcx_span_label,.xcx_form_select .xcx_span_label{
    position: absolute;
    box-sizing: content-box;

    overflow: hidden;
    pointer-events: none;
    color: rgba(0,0,0,.60);
    font-size: .84em;
    top:0;
}
.xcx_form_label{margin-bottom: 0;}
.xcx_form_row p{
    margin-bottom: 10px !important;
}
.xcx_form_radio_buttons .form-control {
    font-size: 1em;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 0.5em;
}
.xcx_form_radio_buttons .form-control + .form-control {
    margin-top: 10px;
}
.xcx_form_radio_buttons .form-control:focus-within {
    color: #0596d4;
}
.xcx_form_radio_buttons input[type="radio"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    /* Remove most all native input styles */
    appearance: none;
    margin: 0;
    width: 1.3em;
    height: 1.3em;
    border: 0.15em solid #0596d4;
    border-radius: 50%;
    transform: translateY(-0.075em);

    display: grid;
    place-content: center;
}
.xcx_form_radio_buttons input[type="radio"]::before {
    content: "";
    width: 0.5em;
    height: 0.5em;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #0596d4;
}
.xcx_form_radio_buttons input[type="radio"]:checked{
    border-color: #0596d4;
}
.xcx_form_radio_buttons input[type="radio"]:checked::before {
    transform: scale(1);
    background: #0596d4;
}
.xcx_form_select_input{
    position: relative;
    margin-right: 20px;
    padding-top: 16px;
    padding-bottom: 14px;
    cursor: pointer;
}
ul.xcx_form_select_options{
    list-style-type: none;
    position: absolute;
    top: 35px;
    width: 100%;
    z-index: 1000;
    background-color: white;
    border: 1px solid rgb(204 204 204 / 34%);
    display: none;
    padding: 4px 0;
    box-shadow: rgb(204 204 204 / 37%) 0px 4px 10px 0px;
}
ul.xcx_form_select_options li{
    padding-left: 8px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none; 
    user-select: none; 
}
ul.xcx_form_select_options li:hover{
    background-color: #0596d4;
    color:white;
}
.xcx_form_select_options.toggleShow{
    display: initial;
}
.xcx_form_select_input:after{
    content: '\f107';
    right: 0;
    position: absolute;
    top: 28px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
.xcx_form_select_field{
    border-top:none;
    border-left:none;
    border-right:none;
    border-bottom: 1px solid #d2d2d2;
    height: 34px;
    color: #000;
    font-size: 14px;
    padding-right: 20px;
    display: inline-block;
    padding-left: 0;
    width: 100%;
    display: flex;
    align-items: center;
}
/* Wizard */
.xcx_wizard .xcx_wizard_steps .xcx_wizard_step, .xcx_wizard .xcx_wizard_step_content{
    display:none;
}
.xcx_wizard .xcx_wizard_steps .xcx_wizard_step.active , .xcx_wizard .xcx_wizard_step_content.active{
    display:initial;
}
.xcx_wizard .xcx_wizard_btns .xcx_wizard_prev{
    float:left;
}
.xcx_wizard .xcx_wizard_btns .xcx_wizard_next{
    float:right;
}
.xcx_wizard .xcx_wizard_btns .xcx_wizard_btn{
    border: 1px solid rgb(0 0 0 / 20%);
    background-color: white;
    min-width: 64px;
    line-height: 32px;
    padding: 0 16px;
    cursor:pointer;
}
.xcx_wizard_title{
   margin-bottom:10px;
   margin-top:0;
   border-bottom: 2px solid #0596d4;
}
.xcx_wizard_btn.hide{
    display: none;
}

.xcx_form_columns{display:flex;flex-wrap:wrap;width:100%}
.xcx_form_columns .xcx_form_column_two{width:48%;margin-right:2%;min-width:300px;flex: 1;overflow: hidden;}
@media (max-width:450px){
    .xcx_form_columns .xcx_form_column_two{width:100%}
}

.xcx_form_input input:-webkit-autofill{
    -webkit-box-shadow: 0 0 0 30px #fffffff5 inset !important;
}

.xcx_modal{display:none;position:fixed;z-index:111111111;padding-top:100px;left:0;top:0;width:100%;height:100%;overflow:auto;background-color:rgba(0,0,0,.4)}
.xcx_modal_content_scroll{    
    overflow-y: scroll;
    position: relative;
    max-height: 99%;
    padding-right: 2%;
}.xcx_modal_close{color:#aaa;position:absolute;right:20px;top: 0px;font-size:28px;font-weight:700}.xcx_modal_close:focus,.xcx_modal_close:hover{color:#000;text-decoration:none;cursor:pointer}.xcx_modal_content ol li{white-space:inherit!important;}
.xcx_modal_content{
    max-height: 70vh;
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 40px 20px 40px 30px;
    border: 1px solid #888;
    width: 60%;
    z-index: 273424;
    display: flex;
}
@media (max-width:450px){
    .xcx_modal_content{
        width: 92%;
    }
}
.xcx_form_contact_name{
    display:flex;
}