/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Jul 9, 2022, 11:46:16 AM
    Author     : jamal
*/
html,body{
    overflow-x: hidden;
}
.errors{
    color: red;
    font-size: 13px;
    margin-top: 4px;
}
#loading-wrapper{
    width: 100vw;
    height: 100vh;
    background: rgb(255 255 255 / 51%);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
}
.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 5px solid;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.app-content-header {
    padding: 15px 15px 0 15px;
    position: relative;
}
#ftco-page-heading h1 {
    color: #536e92 !important;
}
#ftco-page-heading h1 {
    font-size: 1.2rem;
    text-transform: uppercase;
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 1rem;
    list-style: none;
    background: none;
}
.breadcrumb a, .breadcrumb li {
    color: #466e82;
}
.breadcrumb li {
    padding: 0 10px;
    position: relative;
}
.breadcrumb a, .breadcrumb li {
    font-size: 0.9rem;
    text-transform: capitalize;
}
.breadcrumb li:last-child, .breadcrumb li a:hover {
    color: #00b9f5;
}
.node-individual-actions {
    float: right;
}
.node-individual-actions li {
    display: inline-block;
    margin-left: 5px;
}
.breadcrumb li:after {
    content: "/";
    position: absolute;
    top: 0;
    right: -2px;
}
.breadcrumb li:last-child:after{
    display: none;
}
.breadcrumb li:first-child{
    padding-left: 0;
}
.app-content-inner {
    padding: 15px;
    margin-right: auto;
    margin-left: auto;
    display: block;
}
.white-bg {
    background: #fff;
}
.table-rpp-warp>select{
    padding: 0 10px;
    width: 100px;
}
.table-rpp-warp>select,.table-rpp-warp>select:focus,.table-rpp-warp>select:active,.table-rpp-warp>select:blur,.table-rpp-warp>select:visited{
    outline: none !important;
    box-shadow: none !important;
}
#node-table-reload img{
    vertical-align: middle;
}
#node-table-reload{
    padding: 5px 10px;
    cursor: pointer;
    border: 1px solid #ccc;
}
#node-table-reload{
    border-left: 0px;
}
#table-search-warp{
    float: right;
}
#table-search-warp input{
    width:100px;
}
.table-rpp-warp>select,#table-search-warp input,#table-search-warp .input-group-addon,.table-multiaction-warp button{
    height: 38px;
    border: 1px solid #ccc !important;
}
.table-rpp-warp>select,#table-search-warp input{
    line-height: 38px;
}
#table-search-warp .input-group-addon{
    padding: 5px 10px;
}
#table-search-warp input{
    font-size: 0.8rem;
    padding: 0 10px;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
}
#table-search-warp input:focus{
    width: 250px;
    outline: none;
}
.app_grid_box {
    padding: 15px;
    background: #fff;
}
.dataTables_scrollHeadInner table.dataTable thead th {
    border-bottom: 0px !important;
    font-size: 0.75rem;
    letter-spacing: 0.8px;
}
.dataTables_scrollHeadInner table.dataTable thead th {
    color: #4e75ad !important;
    background: #f6f8fa !important;
    border-bottom: 1px solid #ebf5ff !important;
    border-left: 1px solid #ebf5ff !important;
}
.dataTables_scrollHeadInner table.dataTable thead th, .dataTables_scrollBody table.dataTable tbody td {
    border-color: #ebf5ff!important;
}
.dataTables_scrollBody table.dataTable tbody td {
    font-size: 0.8rem;
    letter-spacing: 0.6px;
    border-bottom: 1px solid #ebf5ff!important;
}
.dataTables_scrollBody table.dataTable tbody td, table.dataTable thead th, table.dataTable thead td {
    border-right: 0px !important;
    border-left: 0px !important;
}

/*App Modal*/
.open-app-modal #app_modal_mask {
    position: absolute;
    left: 0;
    right: 0;
    top: 0px;
    background: rgba(255, 255, 255, 0.6);
    bottom: 0;
    z-index: 9998;
}
#app-modal-warp {
    background: #fff;
    position: fixed;
    top: 0px;
    bottom: 0;
    z-index: 9999;
    border-left: 1px solid #e0e0e0;
    -webkit-box-shadow: 2px 5px 15px rgb(0 0 0 / 21%);
    -moz-box-shadow: 2px 5px 15px rgba(0,0,0,0.21);
    -ms-box-shadow: 2px 5px 15px rgba(0,0,0,0.21);
    -o-box-shadow: 2px 5px 15px rgba(0,0,0,0.21);
    box-shadow: 2px 5px 15px rgb(0 0 0 / 21%);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
}
#app-modal-warp {
    right: -900px;
}
#app_modal{
    width: 100vw;
    height: 100vh;
}
.app_lg_form>#app-modal-warp, .app_lg_form .app-modal-footer {
    width: 850px;
}
.app_md_form>#app-modal-warp, .app_md_form .app-modal-footer {
    width: 650px;
}
.app_sm_form>#app-modal-warp, .app_sm_form .app-modal-footer {
    width: 450px;
}
.app_xsm_form>#app-modal-warp, .app_xsm_form .app-modal-footer {
    width: 500px;
}
html[dir=ltr] .open-app-modal #app-modal-warp {
    right: 0;
}
body.open-app-modal{
    overflow: hidden !important;
}
.app-modal-header, .app-modal-body, .app-modal-footer {
    padding: 8px 15px;
}
.app-modal-header {
    border-bottom: 1px solid #ccc;
}
#app-modal-titleName{
    font-size: 1.2rem;
    padding: 8px 0;
}
.app-modal-close {
    position: absolute;

    z-index: 999;
    top: 16px;
}
html[dir=ltr] .app-modal-close {
    right: 25px;
}
.app-modal-body {
    height: 100%;
}
.app_md_form .app-modal-body {
    padding: 15px 0;
}
.app-modal-footer {
    border-top: 1px solid #ccc;
    position: fixed;
    width: 100%;
    bottom: 0;
    background: #fff;
    padding: 0;
}
.app_md_form .app-modal-footer {
    padding: 0;
    border-top-color: #4e6571;
    z-index: 19999;
}
.app-modal-body{
    height: calc(100vh - 65px);
    padding-bottom: 65px !important;
    overflow-x: hidden;
    overflow-y: auto;
}
.app-modal-footer.amf-sm-btn{
    padding: 6px 25px;
}
.amb-warper-title {
    background-color: #f6f8fc;
    height: 36px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
    display: block;
    padding: 9px 40px;
    color: #536e92;
    margin: 15px 0;
    position: relative;
}
/*Inline Form*/
.inline-form label {
    color: #475f7b;
    font-size: .8rem;
    font-weight: 500;
}
.label__uppercase label{
    text-transform: uppercase;
}
.label__uppercase label.label__text_default{
    text-transform: initial;
}
.inline-form select,.inline-form .form-control,.inline-form .select2-container--default .select2-selection--single{
    display: block;
    width: 100%;
    padding: .47rem .8rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    color: #475f7b;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #dfe3e7;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    border-radius: 0;
}

.inline-form select,.inline-form input.form-control,.inline-form .select2-container--default .select2-selection--single,.inline-form .select2-selection__arrow{
    height: calc(1.4em + .94rem + 3.7px) !important;
}
.inline-form select:hover,.inline-form .form-control:hover,
.inline-form select:focus,.inline-form .form-control:focus,
.inline-form select:active,.inline-form .form-control:active{
    outline: none !important;
}
.btn_submit{
    background-image: linear-gradient(to right, #4c217e, #512387, #572590, #5c289a, #622aa3);
    color: #fff;
    text-transform: uppercase;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 3px;
    font-size: 0.8rem;
}
html[dir=ltr] .btn_submit svg{
    margin-left: 5px;
}
.inline-form textarea{
    resize:none;
}
.password_warp{
    position: relative;
}
html[dir=ltr] .password_warp input{
    padding-right: 1.8rem;
}
.password-group-append{
    position: absolute;
    top: 9px;
    cursor: pointer;
}
html[dir=ltr] .password-group-append{
    right: 7px;
}
#auth-inner-form-warp h3{
    font-size: 1.1rem;
}
#auth-inner-form-warp h1{
    font-size: 1.5rem;
}
.auth-inner-text p{
    font-size: 0.7rem;
}
.formsubmited:disabled,
.formsubmited[disabled]{
    cursor: not-allowed;
    opacity: 0.6;
}
.inline-form .form-group.invalid input{
    border-color: red;
} 
.inline-form .input-required{
    font-size: 7px;
    color: red;
    position: relative;
    margin-left: 5px;
    top: -3px;
}
.errors{
    font-size: 11px;
    color: red;
    width: 100% !important;
    display: block;
}
.select2-container{
    z-index: 9999;
}
.select2-container--default .select2-selection--single .select2-selection__rendered,.select2-results{
    font-size: 0.9rem;
    color: #475f7b;
}
.__boxwarp_shadow {
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
}
._sv_form_warp_header {
    padding: 0.5rem 1rem;
    box-shadow: rgb(0 0 0 / 10%) 0px 0px 2px 0px, rgb(0 0 0 / 6%) 0px 0px 2px 0px;
}
._btn_form_submit {
    display: block;
    padding: 8px 1rem;
    text-transform: uppercase;
    width: 100%;
    background: #ccc;
    border-radius: 3px;
    font-size: 0.8rem;
}
.inline_group_ {
    position: relative;
    margin-bottom: 15px;
}
.form-box-warp {
    border: 1px solid #f1f1f1;
    display: inline-block;
}
.np-form-title {
    padding: 0 0px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #536e92;
    margin-bottom: 15px;
    display: block;
    letter-spacing: .9px;
    margin-top: 25px;
}
.np-form-title-border{
    border-top: 1px solid #eff0f2;
    padding-top: 25px;
}
.inline-inputform .form-control{
    font-size: 1rem;
    height: 56px;
    width: 100%;
    border: 1px solid #cfdcf2;
    border-radius: 2px;
    padding: 25px 16px 10px;
    color: #182233;
}
.inline-inputform textarea.form-control{
    resize: none;
    max-height: 135px;
}
.inline-inputform label{
    pointer-events: none;
    position: absolute;
    left: 16px;
    top: 12px;
    -moz-transition: .2s ease all;
    -webkit-transition: all .2s ease;
    color: #86a0c2;
    font-size: 1rem;
    font-weight: 100;
    display: inline-block;
    letter-spacing: 0.02rem;
    z-index: 9999;
}
label:not(.form-check-label):not(.custom-file-label) {
    font-weight: 400 !important;
}
.inline-inputform .form-control:focus ~ label, .inline-inputform .label-valid,.inline-inputform select.form-control ~ label{
    top: 2px;
    left: 15px;
    font-size: 12px;
}
.inline-inputform .form-group{
    margin-right: initial;
    margin-left: initial;
}
._label_text{
    margin-left: -20px;
    color: #8a8a8a;
}
.inline-inputform .files input{
    padding: 60px 0px 65px 35% !important;
}
.inline-inputform .files label{
    left: 36%;
    top: 17%;
    font-weight: 100;
}
.select2 {
    width: 100% !important;
}
.select2-container--default .select2-selection--single {
    border-radius: 0;
    height: 35px;
    border: 1px solid #cfdcf2;
    line-height: 35px;
}
.inline_group_ .select2-container--default .select2-selection--single {
    font-size: 1.4rem;
    height: 56px;
}
.inline_group_ .select2-container--default .select2-selection--single .select2-selection__rendered {
    margin-top: 16px;
}
.select2-container--default .select2-selection--single, .select2-selection .select2-selection--single {
    padding: 6px 12px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 35px;
    top: 16px;
    right: 1px;
}
._label_text {
    margin-left: -20px;
    color: #8a8a8a;
}
body.open-app-modal {
    overflow: hidden !important;
}
.open-app-modal #app-modal-warp {
    right: 0;
}
.app-modal-close {
    right: 25px;
}
.app-modal-footer button, .app-modal-footer button:hover {
    background: #380957;
    color: #fff;
    cursor: pointer;
    width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none!important;
}
#global-message-area {
    position: fixed;
    z-index: 9999;
    background: #fff;
    left: 0;
    right: 0;
    width: 30%;
    margin: 0 auto;
    top: 5%;
}
.node-single-actions ul {
    padding: 0;
}
.node-single-actions ul li {
    display: inline-block;
    margin-right: 3px;
}
.node-single-actions button {
    background: none;
    border: none;
    outline: none;
    padding: 0;
}
.member-info img {
    width: 32px;
    height: 32px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 20%);
    position: relative;
}
.badge-pill {
    padding: 4px 15px;
    border-radius: 15px;
    font-size: 12px;
}
.badge-light-danger {
    background-color: #FFDEDE;
    color: #FF5B5C!important;
}
.badge-light-success {
    background-color: #D2FFE8;
    color: #39DA8A !important;
}
.dropdown-menu-md {
    max-width: 250px;
    min-width: 200px;
    padding: 0;
}
#top-header-userinfo{
    padding: 5px;
}
#top-header-userinfo img{
    height: 25px;
    width: 25px;
    border-radius: 50%;
}
.selected_menu_item td{
    background: #ccc !important;
}
._btn_form_submit {
    background: #613594;
    color: #fff;
}

#confirm-modal.modal {
    text-align: center;
    padding: 0!important;
}

#confirm-modal.modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px;
}

#confirm-modal .modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}
.node-single-actions ul{
    margin: 0 !important;
}
.product_list_item_delete {
    position: absolute;
    right: 5px;
    top: 13px;
    font-size: 20px;
    cursor: pointer;
    color: #86a0c2;
    z-index: 9999;
}
.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.form-error-icon{
    margin-right:8px;
}
.form_btn_new_item button,.form_btn_new_item button:hover,.form_btn_new_item button:focus,
button.form_btn_submit,button.form_btn_submit:hover,button.form_btn_submit:focus,
button.form_btn_back,button.form_btn_back:hover,button.form_btn_back:focus{
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
}
.form_btn_new_item button,.form_btn_new_item button:hover,.form_btn_new_item button:focus,
button.form_btn_submit,button.form_btn_submit:hover,button.form_btn_submit:focus{
    background: #007bff;
}
button.form_btn_back,button.form_btn_back:hover,button.form_btn_back:focus{
    background: #eb1600;
}
.product_list_item_delete .spinner-border-sm{
    border-width: 0.1em;
}
.header-user-warper button,.header-user-warper button:hover,.header-user-warper button:focus{
    padding: 0;
    background: none;
    border: none;
    color: #4c4c4c;
}
.header-user-warper button img{
    height: 35px;
    width: 35px;
    border-radius: 100%;
}
.header-user-warper button:after{
    display: none
}
.node-individual-actions button{
    float: left;
    margin-top:0;
    margin-left: 5px;
}
.node-individual-actions button:first-child{
    margin-left: 0;
}
.ck-editor__editable[role="textbox"] {
    min-height: 200px;
}
.ck-content .image {
    max-width: 80%;
    margin: 20px auto;
}
.form-sticky--footer{
    height:60px;
    background: #fff;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 250px;
    border-top: 1px solid #e9e9e9;
    box-shadow: 0 -5px 5px -5px #cfe6f1;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0 25px;
}
body.sidebar-collapse .form-sticky--footer{
    left: 73px;
}
.form-sticky--footer button{
    margin-left: 10px;
    padding: 6px 15px;
    font-size: 14px;
}
.form-note{
       font-size: 0.9rem;
    color: #607d8b;
    margin-top: 5px;
    line-height: 1.2rem;
}