.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;
    bottom: -4px;
}
.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-color: #0596d4;
    color: #fff!important;
    border: none;
    cursor: pointer;
    height: 36px;
    display: inline-flex;
    align-items: center;
    width: auto;
}
.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;
}
.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);
    font-size: .84em;
    top:0;
}
.xcx_form_label{margin-bottom: 0;}
.xcx_form_row p{
    margin-bottom: 10px !important;
}
.xcx_form_horizontal_radio_buttons{
    display: flex;
    align-items: center;
    gap: 14px;
}
.xcx_form_radio_buttons .form-control {
    font-size: 1em;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 0.5em;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}
.xcx_form_radio_buttons:not(.xcx_form_horizontal_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;
    height: 100%;
}
.xcx_form_select_input.disabled{
    opacity: 0.2;
    cursor: auto;
}
ul.xcx_form_select_options{
    list-style-type: none;
    position: absolute;
    top: 46px;
    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;
    max-height: 200px;
}
.xcx_form_select_input.xcx_form_select_input_no_label ul.xcx_form_select_options{
    top: 23px;
}
ul.xcx_form_select_options li.xcx_form_select_options_title{
    color:#ababab;
    margin: 6px 0;
}
ul.xcx_form_select_options li.xcx_form_select_options_have_title{
    padding-left: 18px;
}
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_btn{
    border: 1px solid rgb(0 0 0 / 20%);
    background-color: #0596d4;
    min-width: 64px;
    line-height: 32px;
    cursor:pointer;
    color: white;
    font-size: 15px;
}
.xcx_wizard .xcx_wizard_btn:disabled, .xcx_wizard .xcx_wizard_btn[disabled]{
    opacity: 0.5;
} 
.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%;gap:2%}
.xcx_form_columns .xcx_form_column_two{width:48%;margin-right:0;min-width:300px;flex: 1;/*overflow: hidden;*/}
.xcx_form_columns .xcx_form_column_three{width:33%;margin-right:0;min-width:200px;flex: 1;height:100%}
@media (max-width:450px){
    .xcx_form_columns .xcx_form_column_two{width:100%;}
    .xcx_form_columns .xcx_form_column_three{width:100%;}
    
}

.xcx_form_input input:-webkit-autofill{
    -webkit-box-shadow: 0 0 0 30px #fffffff5 inset !important;
}


/* Loader */
.xcx-spin-loader-wrapper{top:0;}
.xcx-spin-loader,.xcx-spin-loader::after,.xcx-spin-loader::before{box-sizing:border-box;box-sizing:border-box;box-sizing:border-box}.xcx-spin-loader{width:9.6em;height:9.6em;border-radius:50%;display:inline-block;position:relative;border:3px solid;border-color:#0596d4 #0596d4 transparent transparent;animation:1.5s linear infinite rotation}.xcx-spin-loader::after,.xcx-spin-loader::before{content:'';position:absolute;left:0;right:0;top:0;bottom:0;margin:auto;border:3px solid;border-color:transparent transparent #363636 #363636;width:8em;height:8em;border-radius:50%;animation:1s linear infinite rotationBack;transform-origin:center center}.xcx-spin-loader::before{width:6.4em;height:6.4em;border-color:#ccc #ccc transparent transparent;animation:2s linear infinite rotation}@keyframes rotation{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@keyframes rotationBack{0%{transform:rotate(0)}100%{transform:rotate(-360deg)}}
/* End Loader */


/* FLASH MESSAGES */
.xcx_flash_message{
    position: absolute;
    color: #d00303;
    font-size: 0.9em;
    bottom: 20px;
    line-height: 1em;
    right: 0;
    z-index: 100;
    background: white;
    padding: 4px;
    display: none;
}
.xcx_flash_message_static{
    position: relative;
    color: #d00303;
    font-size: 0.9em;
    line-height: 1em;
    z-index: 1;
    background: white;
    padding: 6px 0;
    display: none;
}
/* END FLASH MESSAGES */


.xcx_wizard_form_errors_wrapper{
    display:none;
}
.xcx_wizard_form_errors{
    position:absolute;
    border:1px solid #cccccc70;
    font-size:.85em;
    z-index:1232;
    left:0;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: 0;
    background: #333;
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    min-width: auto;
    height: 100%;

}

.xcx_form_input, .xcx_form_select, .xcx_form_textarea{margin-right: 0!important;}
.xcx_show_password{
    position: absolute;
    right: 0;
    bottom:6px;
    width: 1.5em;
    height: auto;
    cursor:pointer;
}
.xcx_form_50{
    width:48%;
    min-width: 300px;
}
.xcx_form_sup_description{
    color: rgba(0,0,0,.6);
    font-size: .8em;
    margin:0;
}
.xcx_form_select_options_long{
    max-height: 200px;
    overflow-y: scroll;
}
.xcx_span_label{
    font-size: 1em !important;
}

.xcx_form_input .xcx_span_label, .xcx_form_select .xcx_span_label{
    position:relative !important;
}
.xcx_form_input input, .xcx_form_select select{
    margin-top: 0 !important;
}
.xcx_form_select_input:after{
    bottom:16px;
    top:unset !important;
    z-index:1;
}
.xcx_form_columns .xcx_form_column_two{
    min-width:max(48%,428px) !important;
}

.xcx_form_errors_wrapper{
    display:none;
}
.xcx_form_errors{
    position:absolute;
    border:1px solid #cccccc70;
    font-size:.85em;
    z-index:1232;
    left:0;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: 0;
    background: #333;
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    min-width: auto;
    height: 36px;
    right: 0;
}

/* Search Select Customization */
.xcx_form_search_select_input{
    padding-top: 16px !important;
    padding-bottom: 14px !important;
}
.ss-content.ss-open{
    background-color: #fff;
}
.ss-main{
    border-bottom: 1px solid #d2d2d2;
    height: 34px;
    z-index: 2;
}
.ss-main .ss-single-selected{
    height: 34px;
}
.ss-arrow{
    opacity: 0;
}
.ss-content .ss-list .ss-option{
    padding: 0 0 0 14px !important;
}
.ss-main .ss-single-selected.ss-disabled{
    background-color: transparent !important;
}
/* End Search Select Customization */

.xcx_loading_icon{
    width: 24px;
    height: 24px;
    margin-left: 10px;
    margin-right: 10px;
    content: '&nbsp';
    display: inline-block;
    background-size: 1em;
    background-repeat: no-repeat;
    background-position-y: 50%;
    vertical-align: middle;
    display: none;
}
.xcx_loading_icon.show{
    display: inline-block;
    background-image: url(loader.gif); 
}
/* .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{overflow-y: scroll;max-height:70vh;position:relative;background-color:#fefefe;margin:auto;padding:30px;border:1px solid #888;width:60%}.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{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_loader {
    width: 20px;
    height: 20px;
    border: 5px solid #0596D4;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: xcx_rotation 1s linear infinite;
    position: absolute;
    top: 35px;
    margin-left: 5px;
    opacity: 0;
    transition: all .35s linear;
    right: -30px;
}

@keyframes xcx_rotation {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}

.iti.iti--allow-dropdown.iti--show-flags.iti--inline-dropdown {
    display: block;
    width: 100%;
    z-index: 25;
}
input#xcx_phone{
    width: 100%;
    border-bottom: 1px solid #d2d2d2;
}


.iti__selected-country-primary:hover {
    background-color: transparent !important;
}

input.iti__search-input {
    margin: 10px !important;
    padding-left: 10px !important;
    width: 50% !important;
}