/* 
*
* default element
*/
hr {
    margin: 1rem 0;
    color: inherit;
    background-color: currentColor;
    border: 0;
    opacity: .2;
}
hr:not([size]) {
    height: 1px;
}

abbr[data-bs-original-title], abbr[title], abbr {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}

/* 
*
* Ajax loading page
*/
#loading_ajax {
    position: fixed;
    z-index: 2021;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    filter: alpha(opacity= 80);
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    overflow: hidden;
    text-align: center;
    display:none;
}

[data-bs-theme="light"] #loading_ajax{
    background: rgba(255, 255, 255, 0.90);

}
[data-bs-theme="dark"] #loading_ajax{
    background: rgba(14, 14, 14, 0.9);
}

#loading_ajax .loaderpageajax {
    position: relative;
    top: 40%;
}  
#loading_ajax img {
    margin-bottom: 12px;
}  
#loading_ajax i.fa, #loading_ajax h4 {
    opacity: 1.0;
    filter: alpha(opacity= 100);
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
[data-bs-theme="dark"] #loading_ajax i.fa, 
[data-bs-theme="dark"] #loading_ajax h4{
    color: #cacaca;
}

#result_ajax{
    border:0;
    padding:10px;
    position:fixed;
    width:100%;
    display:none;
    box-shadow: #ccc 1px 2px 4px;
    z-index:99999;
    top: 0px;
    display:none;
    /* overflow: auto;  */
}

/* 
*
* Change theme style
*/
[data-layout-mode="light"] #result_ajax{
    background: #FFFFFF;

}
[data-layout-mode="dark"] #result_ajax{
    background: #212529;
}

/* 
*
* Form Custom
*/

.req:after {
    content: ' *';
    color: #c0392b;
    font-size: 17px;
    line-height: 15px;
}

.row .col-form-label {
    text-align: right;
}

@media only screen and (max-width: 767px) {
    .row .col-form-label {
        text-align: left;
    }
}

/* 
*
* Pwstrength
*/

.pwstrength_viewport_progress {
    margin-top: 8px;
    margin-bottom: 20px;
}

.pwstrength_viewport_progress .progress {
    border-radius: .20rem;
}

/* 
*
* FileInput
*/
.file-drop-zone {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 
*
* tag inputs
*/
.bootstrap-tagsinput {
    box-shadow: none;
    line-height: 27px;
}
.bootstrap-tagsinput .badge {
    margin-right: 2px;
}

/* 
*
* Nestable button custom
*/

.nestable-ctn {
    top: 3px;
    position: absolute;
    right: 10px;
    left: auto;
}

/*----------------------------------------------------------------
Table with sorting data
*/
a.tableHeaderLink {
    color: unset;
}

a.tableHeaderLink:hover,
a.tableHeaderLink:active, 
a.tableHeaderLink:focus,
a.tableHeaderLink.sort-active  {
    color: #4458b8;
    text-decoration: none;
}

a.tableHeaderLink i {
    font-size: 18px;
    vertical-align: middle;
    white-space: nowrap;
    text-transform: none;
    line-height: 1;
}

a.tableHeaderLink i.choose-sort-table {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    opacity: 0;
    filter: alpha(opacity= 0);
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

a.tableHeaderLink:not([data-sort-is-current="true"]):hover i.choose-sort-table {
    opacity: 1.0;
    filter: alpha(opacity= 100);
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/*----------------------------------------------------------------
Select 2
*/
.select2-container {
    display: block;
}

/* 
*
* hide show password
*/
.hideShowPassword-toggle {
    background: transparent;
    border: 0;
    border-radius: 0.25em;
    color: #888;
    cursor: pointer;
    font-size: 0.75em;
    font-weight: bold;
    margin-right: 0.5em;
    padding: 0.5em;
    text-transform: uppercase;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.hideShowPassword-toggle:hover,
.hideShowPassword-toggle:focus {
    background-color: #eee;
    color: #555;
    outline: transparent;
}

/* parsley validator style */
.parsley-error {
    border-color: #f46a6a;
}
  
.parsley-errors-list {
    display: none;
    margin: 0;
    padding: 0;
}
.parsley-errors-list.filled {
    display: block;
}
.parsley-errors-list > li {
    font-size: 12px;
    list-style: none;
    color: #f46a6a;
    margin-top: 5px;
}