/* 2021/06/29  Add CoreUI css by Rainy  */

.w_15 {
    width: 15%
}

.w_25 {
    width: 25%
}

.w_33 {
    width: 33%
}

.w_70 {
    width: 70%
}

.w_100 {
    width: 100%
}

.ac_form_group_V {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}

.ac_form_group_H {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}

.ac_btn_style {
    width: 100px;
    min-width: 100px;
    margin: 3px 0 3px 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.error_text {
    color: #fd2c25;
    font-size: 14px;
    padding: 5px;
    width: 100%;
    display: block;
    display: none;
}

.prompt_text {
    font-size: 14px;
    color: rgb(175 175 175);
    padding: 5px;
    width: 100%;
    display: block;
}

.ac_form_group_V .input_title {
    padding: 0;
    width: 100%;
    margin: 0 0 3px 0;
    transition: 0.2s;
    font-size: 18px;
}

.ac_form_group_H .H_input_structure {
    -ms-flex-preferred-size: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.ac_form_group_H .H_input_structure:focus-within+.input_title {
    color: #1a73e8
}

.ac_form_group_H .input_title {
    margin: 0 0 3px 0;
    transition: 0.2s;
    width: 150px;
    padding: 10px 0 0 0;
    font-size: 18px;
}

@media (max-width: 767.98px) {
    .ac_form_group_V .input_title {
        width: 100%;
    }

    .ac_form_group_H {
        flex-direction: column-reverse;
    }

    .ac_form_group_H .input_title {
        width: 100%;
    }
}

/* ========================================================================================*/
/*                                                                                         */
/*                                   FORM STRUCTURE START                                  */
/*                                                                                         */
/* ========================================================================================*/

/* ========================================================================*/
/*                 From Structure Global Style Start                       */
/* ========================================================================*/
.ac_form_group_V .info_enter_div {
    -ms-flex-preferred-size: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    display: flex;
}

.ac_form_group_V .info_enter_div:focus-within+.input_title {
    color: #1a73e8
}

.ac_form_group_V .info_enter_div.col_nowrap {
    flex-wrap: nowrap;
}

.ac_form_group_V .info_enter_div.col_wrap {
    flex-wrap: wrap;
}

.ac_form_group_H .info_enter_div {
    -ms-flex-preferred-size: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    display: flex;
}

.ac_form_group_H .info_enter_div.col_nowrap {
    flex-wrap: nowrap;
}

.ac_form_group_H .info_enter_div.col_wrap {
    flex-wrap: wrap
}

.ac_form_group_H .info_enter_div.colwidth_same {
    width: 100%;
}

@media (max-width: 767.98px) {
    .ac_form_group_V .info_enter_div.col_nowrap {
        flex-wrap: wrap;
    }

    .ac_form_group_H .info_enter_div.col_nowrap {
        flex-wrap: wrap;
    }
}

/* ========================================================================*/
/*                 From Structure Global Style End                       */
/* ========================================================================*/



/* ========================================================================*/
/*                          Input Style Start                              */
/* ========================================================================*/
/* -----------Input Global Setting Start----------- */
.ac_input_global {
    height: 50px;
    font-size: 16px;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s;
    /* margin: 3px 2px; */
    padding: 14px 10px;
    border: solid 1px transparent;
}

.ac_input_global.disabled {
    background: #dadce0;
    color: #a8b0b8;
    border: 0;
    height: auto;
    word-wrap: break-word;
}

.ac_input_global.disabled:focus,
.ac_input_global.disabled:hover {
    border: 0;
}

.ac_form_group_V .info_enter_div.colwidth_same .ac_input_global {
    width: 100%;
}

.ac_form_group_H .info_enter_div.colwidth_same .ac_input_global {
    width: 100%;
}

.ac_form_group_V .info_enter_div.colwidth_same .ac_SelectItem.ac_SelectBlock {
    width: 100%;
}

.ac_input_global.ac_input_error {
    border: 2px solid #fd2c25 !important;
}

/* see password btn */
input[type='password']+#eye_btn {
    color: #828282;
    margin-left: -45px;
    padding: 18px 9px;
    position: relative;
    cursor: pointer;
    font-size: 20px;
}

input[type='password']+#eye_btn:after {
    content: "/";
    position: absolute;
    right: 16px;
    font-size: 26px;
    top: 15px;
    text-shadow: 2px 0px 0px #e8f0fe;
}

input[type='text']+#eye_btn {
    color: #1a73e8;
    margin-left: -45px;
    padding: 18px 9px;
    position: relative;
    cursor: pointer;
    font-size: 20px;
}

/* a11y focus */
.ac_input_global:focus,
.ac_input_global:hover {
    border-bottom-width: 2px;
    border-bottom-color: #1a73e8;
    outline: 0;
}

@media (max-width: 767.98px) {
    .ac_form_group_V .info_enter_div.colwidth_percent .ac_input_global {
        width: 100%;
    }

    .ac_form_group_H .info_enter_div.colwidth_percent .ac_input_global {
        width: 100%;
    }
}



/* --input type="number" arrow hidden start--*/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/* --input type="number" arrow hidden end --*/


/* -----------Input Global Setting End----------- */

/* -----------Input Autocomplete Setting Start----------- */
.ui-menu .ui-menu-item {
    color: #737373;
    padding: 0px 10px 5px;
}

.ui-menu .ui-menu-item:first-child {
    color: #737373;
    padding: 5px 10px;
}

.ui-menu .ui-menu-item-wrapper {
    padding: 10px;
    color: #4e6eab;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    border: 1px solid #003eff;
    background: #e1f1ff;
    font-weight: normal;
    border-radius: 5px;
    border: 0;
    transition: 0.2s;
    margin: 0;
}

/* -----------Input Autocomplete Setting End----------- */

/* -----------Input Style Setting Start----------- */
/*======= Style01 Start =======*/
.input_style01 {
    border: 1px solid #cacaca;
    border-bottom: 1px solid #cacaca;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    color: #206396;
}

.input_style01:focus {
    border: solid 1px #1a73e8;
    outline: 0;
}

/*======= Style01 End =======*/

/*======= Style02 Start =======*/
.input_style02 {
    color: #3c4043;
    border-width: 2px;
    border-color: transparent;
    border-bottom-width: 2px;
    border-bottom-color: #dadce0;
    background-color: #ffffff;
}

.input_style02:focus {
    border-bottom: solid 2px #1a73e8;
    outline: 0;
}

/*======= Style02 End =======*/

/*======= Style03 Start =======*/
.input_style03 {
    border: solid 1px #dadce0;
    -webkit-border-radius: 27px;
    -moz-border-radius: 27px;
    border-radius: 27px;
}

.input_style03:focus {
    border: solid 1px #1a73e8;
    outline: 0;
}

/*======= Style03 End =======*/
/* -----------Input Style Setting End----------- */
/* ========================================================================*/
/*                           Input Style End                               */
/* ========================================================================*/



/* ========================================================================*/
/*                         Textarea Style Start                            */
/* ========================================================================*/
/* -----------Textarea Global Setting Start----------- */
.ac_textarea_global {
    font-size: 16px;
    -webkit-transition: all .3s;
    -moz-transition: all .2s;
    transition: all .2s;
    padding: 10px;
    border: solid 1px transparent;
    border-bottom: solid 2px transparent;
    vertical-align: middle;
}

.ac_textarea_global.disabled {
    background: #dadce0;
    color: #a8b0b8;
    border: 0;
}

.ac_textarea_global.disabled:focus,
.ac_textarea_global.disabled:hover {
    border: 0;
}

.ac_form_group_V .info_enter_div.colwidth_same .ac_textarea_global {
    width: 100%;
}

.ac_form_group_H .info_enter_div.colwidth_same .ac_textarea_global {
    width: 100%;
}

@media (max-width: 767.98px) {
    .ac_form_group_V .info_enter_div.colwidth_percent .ac_textarea_global {
        width: 100%;
    }

    .ac_form_group_H .info_enter_div.colwidth_percent .ac_textarea_global {
        width: 100%;
    }
}

/* a11y focus */
.ac_textarea_global:focus,
.ac_textarea_global:hover {
    border-bottom: solid 2px #1a73e8;
    outline: 0;
}

/* -----------Textarea Global Setting End----------- */

/* -----------Textarea Style Setting Start----------- */
/*======= Style01 Start =======*/
.textarea_style01 {
    padding: 20px 10px;
    color: #3c4043;
    border: solid 1px #cacaca;
    border-bottom: solid 2px #cacaca;
    background-color: #ffffff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.textarea_style01:focus {
    border-bottom: solid 2px #1a73e8;
    outline: 0;
}

/*======= Style01 End =======*/
/* -----------Textarea Style Setting End----------- */
/* ========================================================================*/
/*                          Textarea Style END                             */
/* ========================================================================*/



/* ========================================================================*/
/*                          Select Style Start                             */
/* ========================================================================*/


/* -----------Select Global Setting Start----------- */
.ac_select_global {
    margin: 3px 2px;
}

.ac_select_global.disabled {
    background-color: #dadce0;
    color: #a8b0b8;
    padding: 11px 60px 11px 15px;
    border-radius: 5px;
}

.ac_select_global .select2-container--default {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    min-height: 50px;
    border: solid 0 transparent;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
    /* margin: 0 -14px 0 0; */
    transition: 0.2s;
}

.ac_select_global .select2-container--default .select2-selection--single {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    height: 50px;
    border: solid 0 transparent;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
}

.ac_select_global .select2-container--default .select2-selection--single:focus {
    outline: 0
}

.ac_select_global .select2-container--default .select2-selection--single .select2-selection__rendered {
    width: 100%;
    color: #1e3a8c;
    font-size: 15px;
    padding: 11px 60px 11px 15px;
    border-radius: 5px;
}

.ac_select_global .select2-container--default .select2-selection--single .select2-selection__rendered:before {
    content: "";
    background: url(../images/icon-search.svg) no-repeat center center;
    background-size: cover;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 42px;
    top: calc(100% / 2 - 10px);
}

.ac_select_global .select2-container--default .select2-selection--single .select2-selection__rendered i {
    padding: 0 3px 0 0;
}

.ac_select_global .select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}

.ac_select_global .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-width: 8px 7px 0 7px;
    border-color: #7c74f5 transparent transparent transparent;
    left: unset;
    top: 100%;
    right: 100%;
}

.ac_select_global .select2-container--default .select2-selection--single .select2-selection__clear {
    font-size: 28px;
    color: #888888;
    font-weight: 300;
    right: -55px;
    padding: 0px 10px;
}

.ac_select_global .select2-container--default .select2-selection--multiple {
    border: 1px solid #e2e2e2;
}

.ac_select_global .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    width: 100%;
    color: #1e3a8c;
    font-size: 15px;
    padding: 4px 60px 4px 15px;
    position: relative;
    display: block;
}

.ac_select_global .select2-container--default .select2-selection--multiple .select2-selection__rendered:focus {
    outline: 0;
}

.ac_select_global .select2-container--default .select2-selection--multiple .select2-selection__rendered:before {
    content: "";
    background: url(../images/icon-search.svg) no-repeat center center;
    background-size: cover;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 42px;
    top: calc(100% / 2 - 10px);
}

.ac_select_global .select2-container--default .select2-selection--multiple .select2-selection__rendered i {
    padding: 0 3px;
    color: #ffffff;
}

.ac_select_global .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    /* border: 0; */
    padding: 5px 5px;
    margin-bottom: 5px;
}

.ac_select_global .select2-container--default .select2-selection--multiple .select2-selection__rendered li span {
    color: #ffffff;
    padding: 0px 4px;
}

.ac_select_global .select2-container--default .select2-selection--multiple .select2-selection__clear {
    font-size: 20px;
    color: #888888;
    font-weight: 300;
    margin: 0;
    position: absolute;
    top: calc(100% / 2 - 15px);
    right: 0;
    padding: 0px 10px;
}

.ac_select_global .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #8484ff;
}

.ac_select_global .select2-container--default .select2-results__option[aria-selected] {
    font-size: 15px;
    background-color: #ffffff;
    color: #3c4043;
    padding: 10px 25px;
}

.ac_select_global .select2-container--default .select2-results__option[aria-selected=true] {
    background-color: aqua;
}

.ac_select_global .select2-container--default .select2-results__option[aria-disabled=true] {
    font-size: 15px;
    background-color: #e8e8e8;
    color: #b9b9b9;
    padding: 10px 25px;
}

.ac_select_global .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #e8f0fd;
    color: #1a73e8;
}

.ac_select_global .select2-container--default .select2-results__option[aria-selected] i,
.ac_select_global .select2-container--default .select2-results__option--highlighted[aria-selected] i,
.ac_select_global .select2-container--default .select2-results__option[aria-disabled=true] i {
    padding: 0 3px 0 0;
}

.ac_select_global .select2-container--default .select2-results__group {
    color: #7d7d7d;
    font-weight: 300;
    border-top: 1px solid #d8d8d8;
}

.ac_select_global .select2-container--default .select2-results {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.ac_select_global .select2-container--default .select2-results>.select2-results__options {
    max-height: 300px;
}

.ac_select_global .select2-container--default .select2-dropdown {
    border: 0 solid transparent;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15)
}

.ac_select_global .select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #c0d8ff;
}

.ac_select_global .select2-container--default .select2-search--dropdown .select2-search__field:focus {
    outline: 0;
}

.ac_select_global .select2-container--default .select2-search--inline .select2-search__field {
    margin: 0;
}

.ac_select_global .select2-container--default.select2-container--open {
    min-height: unset;
}

.ac_select_global .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__rendered {
    color: #a8b0b8;
    background-color: #dadce0;
}

.ac_select_global .select2-container--default.select2-container--disabled:focus-within,
.ac_select_global .select2-container--default.select2-container--disabled:hover {
    border: 0;
}

.ac_select_global .ac_input_error~.select2-container>span.selection>span.select2-selection {
    border: 2px solid #fd2c25 !important;
}

.ac_form_group_V .info_enter_div.colwidth_same .ac_select_global {
    width: 100%;
}

.ac_form_group_H .info_enter_div.colwidth_same .ac_select_global {
    width: 100%;
}

@media (max-width: 767.98px) {
    .ac_form_group_V .info_enter_div.colwidth_percent .ac_select_global {
        width: 100%;
    }

    .ac_form_group_H .info_enter_div.colwidth_percent .ac_select_global {
        width: 100%;
    }
}

/* a11y focus */
.ac_select_global .select2-container--default:focus-within,
.ac_select_global .select2-container--default:hover {
    outline: 0;
    border-bottom: 2px solid #4c7aff;
}

/* resolve the problem about when the option can be searched,
click on select2 the page will scroll to top */
.select2-container,
.select2-dropdown,
.select2-search,
.select2-results {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

/* -----------Select Global Setting End----------- */

/* -----------Select Style Setting Start----------- */
/*======= Style01 Start =======*/
.select_style01 {}

/*======= Style01 End =======*/

/*======= Style02 Start =======*/
.select_style02 {}

/*======= Style02 End =======*/

/*======= Style03 Start =======*/
.select_style03 {}

/*======= Style03 End =======*/
/* -----------Select Style Setting End----------- */
/* ========================================================================*/
/*                          Select Style End                               */
/* ========================================================================*/

/* ========================================================================*/
/*                         CoreUI Admin Style Start                        */
/* ========================================================================*/

/* ac_flatpickr_global */
.ac_flatpickr_global input.form-control-sm.flatpickr-input {
    height: calc(1.5em + 0.5rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: 0.765625rem;
    line-height: 1.5;
}

.ac_flatpickr_global input.form-control.flatpickr-input {
    background-color: #fff;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    background-clip: padding-box;
    color: #768192;
    background-color: #fff;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
}

.ac_flatpickr_global input.form-control-lg.flatpickr-input {
    height: calc(1.5em + 1rem + 2px);
    padding: 0.5rem 1rem;
    font-size: 1.09375rem;
    line-height: 1.5;
}

.ac_flatpickr_global .input-button {
    background-color: #fff;
    float: initial;
    height: auto;
    padding: 3px 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ac_flatpickr_global .input-button:last-child {
    border-radius: 0 4px 4px 0;
}

.ac_flatpickr_global.disabled span {
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    background-clip: padding-box;
}

/* ac_input_global */
.ac_input_global.form-control-sm {
    height: calc(1.5em + 0.5rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: 0.765625rem;
    line-height: 1.5;
}

.ac_input_global.form-control {
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
}

.ac_input_global.form-control-lg {
    height: calc(1.5em + 1rem + 2px);
    padding: 0.5rem 1rem;
    font-size: 1.09375rem;
    line-height: 1.5;
}

/* .ac_select_global */
.ac_select_global .ac_js_select2.form-control {}

.ac_select_global .select2-container--default {
    min-height: auto;
}

.ac_select_global .ac_js_select2.form-control+.select2.select2-container.select2-container--default {
    height: calc(1.5em + 0.75rem + 2px);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    min-height: auto;
    height: auto;
}

.ac_select_global .ac_js_select2.form-control+.select2.select2-container .select2-selection--single {
    height: calc(1.5em + 0.75rem + 2px);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
}

.ac_select_global .ac_js_select2.form-control+.select2.select2-container .select2-selection--single .select2-selection__rendered {
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
}

.ac_select_global .ac_js_select2.form-control-sm+.select2.select2-container.select2-container--default {
    height: calc(1.5em + 0.5rem + 2px);
    font-size: 0.765625rem;
    line-height: 1.5;
    min-height: auto;
    height: auto;
}

.ac_select_global .ac_js_select2.form-control-sm+.select2.select2-container .select2-selection--single {
    height: calc(1.5em + 0.5rem + 2px);
    font-size: 0.765625rem;
    line-height: 1.5;
}

.ac_select_global .ac_js_select2.form-control-sm+.select2.select2-container .select2-selection--single .select2-selection__rendered {
    height: calc(1.5em + 0.5rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: 0.765625rem;
    line-height: 1.5;
}

.ac_select_global .ac_js_select2.form-control-lg+.select2.select2-container.select2-container--default {
    height: calc(1.5em + 1rem + 2px);
    font-size: 1.09375rem;
    line-height: 1.5;
    min-height: auto;
    height: auto;

}

.ac_select_global .ac_js_select2.form-control-lg+.select2.select2-container .select2-selection--single {
    height: calc(1.5em + 1rem + 2px);
    font-size: 1.09375rem;
    line-height: 1.5;
}

.ac_select_global .ac_js_select2.form-control-lg+.select2.select2-container .select2-selection--single .select2-selection__rendered {
    height: calc(1.5em + 1rem + 2px);
    padding: 0.5rem 1rem;
    font-size: 1.09375rem;
    line-height: 1.5;
}

.ac_select_global .ac_js_select2.form-control+.select2.select2-container.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
}

.ac_select_global .ac_js_select2.form-control-sm+.select2.select2-container.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    font-size: 0.765625rem;
    padding: 0.25rem 0.5rem;
    line-height: 1.5;
}

.ac_select_global .ac_js_select2.form-control-lg+.select2.select2-container.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    font-size: 1.09375rem;
    padding: 0.5rem 1rem;
    line-height: 1.5;
}

.ac_select_global .ac_js_select2.form-control+.select2.select2-container.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    padding: 0;
    margin-bottom: 0;


    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
}

.ac_select_global .ac_js_select2.form-control-sm+.select2.select2-container.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    padding: 0;
    margin-bottom: 0;


    font-size: 0.765625rem;
    line-height: 1.5;
}

.ac_select_global .ac_js_select2.form-control-lg+.select2.select2-container.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    padding: 0;
    margin-bottom: 0;


    font-size: 1.09375rem;
    line-height: 1.5;
}

/* ac_textarea_global */
.ac_textarea_global.form-control {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
}

.ac_textarea_global.form-control-sm {
    font-size: 0.765625rem;
}

.ac_textarea_global.form-control-lg {
    font-size: 1.05em;
}

.ac_textarea_global.textarea_style01.form-control {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
}

.ac_textarea_global.form-control,
.ac_textarea_global.form-control-sm,
.ac_textarea_global.form-control-lg,
.ac_textarea_global.textarea_style01.form-control,
.ac_textarea_global.textarea_style01.form-control-sm,
.ac_textarea_global.textarea_style01.form-control-lg {
    height: auto;
    color: #768192;
}

.ac_textarea_global.textarea_style01.form-control-sm {
    font-size: 0.765625rem;
}

.ac_textarea_global.textarea_style01.form-control-lg {
    font-size: 1.05em;
}



/* ========================================================================*/
/*                         CoreUI Admin Style End                          */
/* ========================================================================*/


/* ========================================================================================*/
/*                                                                                         */
/*                                   FORM STRUCTURE END                                  */
/*                                                                                         */
/* ========================================================================================*/

/* ========================================================================================*/
/*                                                                                         */
/*                           CHECKBOX / RADIOBTN STRUCTURE START                           */
/*                                                                                         */
/* ========================================================================================*/

/* ========================================================================*/
/*                 Checkbox / Radiobtn Global Style Start                  */
/* ========================================================================*/
.ac_form_group_V .ac_checkbox_global {
    -ms-flex-preferred-size: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.ac_form_group_V .ac_checkbox_global:focus-within+.input_title {
    color: #1a73e8
}

.ac_form_group_V .ac_checkbox_global.col_nowrap {
    flex-wrap: nowrap;
}

.ac_form_group_V .ac_checkbox_global.col_wrap {
    flex-wrap: wrap;
}

.ac_form_group_H .ac_checkbox_global {
    -ms-flex-preferred-size: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.ac_form_group_H .ac_checkbox_global.col_nowrap {
    flex-wrap: nowrap;
}

.ac_form_group_H .ac_checkbox_global.col_wrap {
    flex-wrap: wrap
}

.ac_form_group_H .ac_checkbox_global.colwidth_same {
    width: 100%;
}

@media (max-width: 767.98px) {
    .ac_form_group_V .ac_checkbox_global.col_nowrap {
        flex-wrap: wrap;
    }

    .ac_form_group_H .ac_checkbox_global.col_nowrap {
        flex-wrap: wrap;
    }
}

.ac_form_group_V .ac_radiobtn_global {
    -ms-flex-preferred-size: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.ac_form_group_V .ac_radiobtn_global:focus-within+.input_title {
    color: #1a73e8
}

.ac_form_group_V .ac_radiobtn_global.col_nowrap {
    flex-wrap: nowrap;
}

.ac_form_group_V .ac_radiobtn_global.col_wrap {
    flex-wrap: wrap;
}

.ac_form_group_H .ac_radiobtn_global {
    -ms-flex-preferred-size: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.ac_form_group_H .ac_radiobtn_global.col_nowrap {
    flex-wrap: nowrap;
}

.ac_form_group_H .ac_radiobtn_global.col_wrap {
    flex-wrap: wrap
}

.ac_form_group_H .ac_radiobtn_global.colwidth_same {
    width: 100%;
}

@media (max-width: 767.98px) {
    .ac_form_group_V .ac_radiobtn_global.col_nowrap {
        flex-wrap: wrap;
    }

    .ac_form_group_H .ac_radiobtn_global.col_nowrap {
        flex-wrap: wrap;
    }
}

/* ========================================================================*/
/*                 Checkbox / Radiobtn Global Style End                    */
/* ========================================================================*/



/* ========================================================================*/
/*                            Checkbox Style Start                         */
/* ========================================================================*/
/* -----------Checkbox Global Setting Start----------- */
.ac_checkbox_global .option_element {
    position: relative;
    color: #544f9a;
    cursor: pointer;
    min-width: 80px;
    min-height: 25px;
    padding-left: 30px;
    padding-right: 20px;
}

.ac_checkbox_global .option_element input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    width: 25px;
    height: 25px;
}

.ac_checkbox_global .option_element .forms_indicator {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border-radius: 5px;
    transition: 0.2s;
}

.ac_checkbox_global .option_element.disabled {
    cursor: default
}

.ac_checkbox_global .option_element.disabled:hover .forms_indicator::after {
    display: none;
}

.ac_checkbox_global .checkbox_textinput {
    display: flex;
    margin: 20px 40px 10px 0;

}

.ac_checkbox_global .checkbox_textinput .option_element {
    margin: 0;
    padding: 0 0 0 30px;
}

.ac_checkbox_global .checkbox_textinput .text_input input {
    border: 1px solid #cacaca;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 5px 10px;
    color: #206396;
    font-size: 16px;
}

.ac_checkbox_global.option_wrap {
    flex-wrap: wrap;
}

.ac_checkbox_global.option_wrap .option_element {
    width: 100%;
}

.ac_checkbox_global.option_wrap .checkbox_textinput .option_element {
    width: auto;
}

.ac_form_group_V .info_enter_div.colwidth_same .ac_checkbox_global {
    width: 100%;
}

.ac_form_group_H .info_enter_div.colwidth_same .ac_checkbox_global {
    width: 100%;
}

@media (max-width: 767.98px) {
    .ac_form_group_V .info_enter_div.colwidth_percent .ac_checkbox_global {
        width: 100%;
    }

    .ac_form_group_H .info_enter_div.colwidth_percent .ac_checkbox_global {
        width: 100%;
    }

    .ac_checkbox_global .checkbox_textinput {
        flex-wrap: wrap;
    }

    .ac_checkbox_global .checkbox_textinput .option_element {
        margin: 10px 0px 0px 0;
    }
}

/*a11y focus*/
.ac_checkbox_global .option_element:focus-within .forms_indicator::after,
.ac_checkbox_global .option_element:hover .forms_indicator::after {
    content: "";
    width: 23px;
    height: 2px;
    background-color: transparent;
    position: absolute;
    bottom: -8px;
}

.ac_checkbox_global .option_element.option_element_only,
.ac_radiobtn_global .option_element.option_element_only {
    min-width: 25px;
    height: 25px;
    padding-left: 0;
    margin-bottom: 0;
}

/* -----------Checkbox Global Setting End----------- */

/* -----------Checkbox Style Setting Start----------- */
/*======= Style01 Start =======*/
.checkbox_style01 .option_element .forms_indicator {
    background: #97acff;
}

.checkbox_style01 .option_element input:checked~.forms_indicator {
    background: #536fde
}

.checkbox_style01 .option_element input:checked~.forms_indicator:before {
    content: "\f00c";
    font-family: FontAwesome;
    color: #ffffff;
    font-size: 13px;
    padding: 6px;
    position: absolute;
    top: -3px;
}

.checkbox_style01 .option_element input:disabled~.forms_indicator {
    background: #888888;
    opacity: 0.6;
    pointer-events: none;
}

.checkbox_style01 .option_element input:disabled~.forms_indicator:before {
    color: #d8d8d8;
}

.checkbox_style01 .option_element:hover .forms_indicator {
    background-color: #20399c;
}

/*======= Style01 End =======*/

/*======= Style02 Start =======*/
.checkbox_style02 .option_element .forms_indicator {
    background: #ffffff;
    border: 1px solid #d8d8d8;
}

.checkbox_style02 .option_element .forms_indicator::before {
    content: "";
    position: absolute;
    background: url(../images/checkbox-normal.svg) no-repeat center center;
    top: -2px;
    left: -2px;
    width: 28px;
    height: 28px;
}

/*default to hover*/
.checkbox_style02 .option_element:hover .forms_indicator {
    background-color: #e0e0e0;
}

.checkbox_style02 .option_element:hover .forms_indicator:before {
    background: url(../images/checkbox-active.svg) no-repeat center center;
}

/*checked*/
.checkbox_style02 .option_element input:checked~.forms_indicator {
    background: #1a73e8;
    border-color: #1b00ff;
}

.checkbox_style02 .option_element input:checked~.forms_indicator:before {
    background: url(../images/checkbox-active.svg) no-repeat center center;
}

.checkbox_style02 .option_element:hover input:not([disabled]):checked~.forms_indicator,
.checkbox_style02 .option_element input:checked:focus~.forms_indicator {
    background: #1a73e8
}

/*disabled*/
.checkbox_style02 .option_element input:disabled~.forms_indicator {
    background-color: #e9eaed
}

.checkbox_style02 .option_element input:disabled~.forms_indicator:before {
    background: url(../images/checkbox-disabled.svg) no-repeat center center;
}

/*disabled & checked*/
.checkbox_style02 .option_element input:disabled:checked~.forms_indicator {
    background-color: rgb(26 115 232 / 0.5);
    border-color: rgb(27 0 255 / 0.5);
}

/*======= Style02 End =======*/



/* -----------Checkbox Style Setting End----------- */
/* ========================================================================*/
/*                            Checkbox Style End                           */
/* ========================================================================*/

/* ========================================================================*/
/*                            Radiobtn Style Start                         */
/* ========================================================================*/
/* -----------Radio Global Setting Start----------- */
.ac_radiobtn_global .option_element {
    position: relative;
    color: #544f9a;
    cursor: pointer;
    min-width: 80px;
    min-height: 25px;
    padding-left: 30px;
    padding-right: 20px;
}

.ac_radiobtn_global .option_element input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    width: 25px;
    height: 25px;
}

.ac_radiobtn_global .option_element .forms_indicator {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    transition: 0.2s;
}

.ac_radiobtn_global .option_element.disabled {
    cursor: default
}

.ac_radiobtn_global .option_element.disabled:hover .forms_indicator::after {
    display: none;
}

.ac_radiobtn_global .radiobtn_textinput {
    display: flex;
    margin: 20px 40px 10px 0;
}

.ac_radiobtn_global .radiobtn_textinput .option_element {
    margin: 0;
    padding: 0 0px 0 30px;
}

.ac_radiobtn_global .radiobtn_textinput .text_input input {
    border: 1px solid #cacaca;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 5px 10px;
    color: #206396;
    font-size: 16px;
}

.ac_radiobtn_global.option_wrap {
    flex-wrap: wrap;
}

.ac_radiobtn_global.option_wrap .option_element {
    width: 100%;
}

.ac_radiobtn_global.option_wrap .radiobtn_textinput .option_element {
    width: auto;
}

.ac_form_group_V .info_enter_div.colwidth_same .ac_radiobtn_global {
    width: 100%;
}

.ac_form_group_H .info_enter_div.colwidth_same .ac_radiobtn_global {
    width: 100%;
}

@media (max-width: 767.98px) {
    .ac_form_group_V .info_enter_div.colwidth_percent .ac_radiobtn_global {
        width: 100%;
    }

    .ac_form_group_H .info_enter_div.colwidth_percent .ac_radiobtn_global {
        width: 100%;
    }

    .ac_radiobtn_global .radiobtn_textinput {
        flex-wrap: wrap;
    }

    .ac_radiobtn_global .checkbox_textinput .option_element {
        margin: 10px 0px 0px 0;
    }
}

/*a11y focus*/
.ac_radiobtn_global .option_element:focus-within .forms_indicator::after,
.ac_radiobtn_global .option_element:hover .forms_indicator::after {
    content: "";
    width: 23px;
    height: 2px;
    background-color: transparent;
    position: absolute;
    bottom: -8px;
}

/* -----------Radio Global Setting End----------- */

/* -----------Radio Style Setting Start----------- */
/*======= Style01 Start =======*/
.radiobtn_style01 .option_element .forms_indicator {
    background: #97acff;
}

.radiobtn_style01 .option_element input:checked~.forms_indicator {
    background: #536fde
}

.radiobtn_style01 .option_element input:checked~.forms_indicator:before {
    content: "\f00c";
    font-family: FontAwesome;
    color: #ffffff;
    font-size: 13px;
    position: absolute;
    height: 25px;
    width: 25px;
    text-align: center;
    line-height: 25px;
}

.radiobtn_style01 .option_element input:disabled~.forms_indicator {
    background: #888888;
    opacity: 0.6;
    pointer-events: none;
}

.radiobtn_style01 .option_element input:disabled~.forms_indicator:before {
    color: #d8d8d8;
}

.radiobtn_style01 .option_element:hover .forms_indicator {
    background-color: #20399c;
}

/*======= Style01 End =======*/

/*======= Style02 Start =======*/
.radiobtn_style02 .option_element .forms_indicator {
    background: #ffffff;
    border: 1px solid #d8d8d8;
}

.radiobtn_style02 .option_element .forms_indicator::before {
    content: "";
    position: absolute;
    background: url(../images/checkbox-normal.svg) no-repeat center center;
    top: -2px;
    left: -2px;
    width: 28px;
    height: 28px;
}

/*default to hover*/
.radiobtn_style02 .option_element:hover .forms_indicator {
    background-color: #e0e0e0;
}

.radiobtn_style02 .option_element:hover .forms_indicator:before {
    background: url(../images/checkbox-active.svg) no-repeat center center;
}

/*checked*/
.radiobtn_style02 .option_element input:checked~.forms_indicator {
    background: #1a73e8;
    border-color: #1b00ff;
}

.radiobtn_style02 .option_element input:checked~.forms_indicator:before {
    background: url(../images/checkbox-active.svg) no-repeat center center;
}

.radiobtn_style02 .option_element:hover input:not([disabled]):checked~.forms_indicator,
.radiobtn_style02 .option_element input:checked:focus~.forms_indicator {
    background: #1a73e8
}

/*disabled*/
.radiobtn_style02 .option_element input:disabled~.forms_indicator {
    background-color: #e9eaed
}

.radiobtn_style02 .option_element input:disabled~.forms_indicator:before {
    background: url(../images/checkbox-disabled.svg) no-repeat center center;
}

/*disabled & checked*/
.radiobtn_style02 .option_element input:disabled:checked~.forms_indicator {
    background-color: rgb(26 115 232 / 0.5);
    border-color: rgb(27 0 255 / 0.5);
}

/*======= Style02 End =======*/
/* ========================================================================*/
/*                            Radiobtn Style End                           */
/* ========================================================================*/


/*======= default Start =======*/


.ac_FakeBtn_global {}

.ac_FakeBtn_global label.option_element input[type="checkbox"],
.ac_FakeBtn_global label.option_element input[type="radio"] {
    display: none;
}


.ac_FakeBtn_global label.option_element input[type="checkbox"]+span.forms_indicator,
.ac_FakeBtn_global label.option_element input[type="radio"]+span.forms_indicator {
    background: var(--transparent);
    color: var(--neon-blue);
    border: solid 1px var(--neon-blue);
    padding: 5px 10px;
    display: inline-block;
    cursor: pointer;
}

.ac_FakeBtn_global label.option_element:hover input[type="checkbox"]+span.forms_indicator,
.ac_FakeBtn_global label.option_element:hover input[type="radio"]+span.forms_indicator {
    opacity: .9;
}

.ac_FakeBtn_global label.option_element input[type="checkbox"]:checked+span.forms_indicator,
.ac_FakeBtn_global label.option_element input[type="radio"]:checked+span.forms_indicator {
    background-color: var(--neon-blue);
    color: var(--white);
}

/* size */
label.option_element.ac_BtnSize_Small input[type="checkbox"]+span.forms_indicator,
label.option_element.ac_BtnSize_Small input[type="radio"]+span.forms_indicator {
    padding: 1px 18px;
}

label.option_element.ac_BtnSize_Medium input[type="checkbox"]+span.forms_indicator,
label.option_element.ac_BtnSize_Medium input[type="radio"]+span.forms_indicator {
    padding: 6px 18px;
}

label.option_element.ac_BtnSize_Big input[type="checkbox"]+span.forms_indicator,
label.option_element.ac_BtnSize_Big input[type="radio"]+span.forms_indicator {
    padding: 10px 18px;
}

/*======= default End =======*/



/* ========================================================================*/
/*                          Flatpickr Style Start                          */
/* ========================================================================*/
/* -----------Flatpickr Global Setting Start----------- */
.ac_flatpickr_global {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.ac_flatpickr_global>.flatpickr-wrapper {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.ac_flatpickr_global>.flatpickr-wrapper>input {
    border: 1px solid #cacaca;
    padding: 10px;
    color: #206396;
    font-size: 16px;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s;
    -ms-flex-preferred-size: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    /* margin: 3px -2px 3px 2px; */
    height: 50px;
}

.ac_flatpickr_global .input-button {
    border: 1px solid #bbb;
    display: block;
    padding: 0px;
    border-left: 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    width: 40px;
    float: left;
    text-align: center;
    font-size: 18px;
    color: #46619e;
}

.ac_flatpickr_global:focus-within+.input_title {
    color: #1a73e8
}

.ac_flatpickr_global.disabled span {
    width: calc(100% - 80px);
    font-size: 16px;
    padding: 14px 10px;
    background: #dadce0;
    color: #a8b0b8;
    border-radius: 4px 0 0 4px;
    height: 50px;
    margin: 3px 0;
    border-right: 1px solid;
}

.ac_flatpickr_global.disabled .input-button {
    background: #dadce0;
    color: #a8b0b8;
    cursor: auto;
}

.ac_flatpickr_global .ac_input_error {
    border: 2px solid #fd2c25 !important;
}

.ac_form_group_V .info_enter_div.colwidth_same .ac_flatpickr_global {
    width: 100%;
}

.ac_form_group_H .info_enter_div.colwidth_same .ac_flatpickr_global {
    width: 100%;
}

/* a11y focus */
.ac_flatpickr_global input:focus,
.ac_flatpickr_global input:hover {
    border-bottom: solid 2px #1a73e8;
    outline: 0;
}

@media (max-width: 767.98px) {
    .ac_form_group_V .info_enter_div.colwidth_percent .ac_flatpickr_global {
        width: 100%;
    }

    .ac_form_group_H .info_enter_div.colwidth_percent .ac_flatpickr_global {
        width: 100%;
    }
}

/* -----------Flatpickr Global Setting End----------- */

/* -----------Flatpickr Style Setting Start----------- */
/*======= Style01 Start =======*/
.flatpickr_style01 {}

/*======= Style01 End =======*/
/* -----------Flatpickr Style Setting End----------- */
/* ========================================================================*/
/*                          Flatpickr Style End                            */
/* ========================================================================*/


/* ========================================================================================*/
/*                                                                                         */
/*                           CHECKBOX / RADIOBTN STRUCTURE END                             */
/*                                                                                         */
/* ========================================================================================*/