/*
* demo.css
* File include item demo only specific css only
******************************************************************************/

.light-style .menu .app-brand.demo {
    height: 64px;
}

.dark-style .menu .app-brand.demo {
    height: 64px;
}

.app-brand-logo.demo {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -ms-flexbox;
    display: flex;
    width: 34px;
    height: 24px;
}

    .app-brand-logo.demo svg {
        width: 35px;
        height: 24px;
    }

.app-brand-text.demo {
    font-size: 1.375rem;
}

/* ! For .layout-navbar-fixed added fix padding top tpo .layout-page */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
    padding-top: 64px !important;
}

.layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
    padding-top: 78px !important;
}
/* Navbar page z-index issue solution */
.content-wrapper .navbar {
    z-index: auto;
}

/*
* Content
******************************************************************************/

.demo-blocks > * {
    display: block !important;
}

.demo-inline-spacing > * {
    margin: 1rem 0.375rem 0 0 !important;
}

/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.demo-vertical-spacing > * {
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
}

.demo-vertical-spacing.demo-only-element > :first-child {
    margin-top: 0 !important;
}

.demo-vertical-spacing-lg > * {
    margin-top: 1.875rem !important;
    margin-bottom: 0 !important;
}

.demo-vertical-spacing-lg.demo-only-element > :first-child {
    margin-top: 0 !important;
}

.demo-vertical-spacing-xl > * {
    margin-top: 5rem !important;
    margin-bottom: 0 !important;
}

.demo-vertical-spacing-xl.demo-only-element > :first-child {
    margin-top: 0 !important;
}

.rtl-only {
    display: none !important;
    text-align: left !important;
    direction: ltr !important;
}

[dir='rtl'] .rtl-only {
    display: block !important;
}

/*
* Layout demo
******************************************************************************/

.layout-demo-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 1rem;
}

.layout-demo-placeholder img {
    width: 900px;
}

.layout-demo-info {
    text-align: center;
    margin-top: 1rem;
}

.bg-color-grey {
    background-color: #f8f7fa;
}

div.dataTables_wrapper div.dataTables_length, div.dataTables_wrapper div.dataTables_filter {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
}

td {
    font-size: 14px;
}

.table > :not(caption) > * > * {
    padding: 0.5rem .50rem;
}

.table th {
    padding: 1rem 0.5rem !important;
}

.table .ti {
    line-height: 0;
}

.bg-new-accordiance-primary {
    background-color: #fae6e6;
}

.accordion-button:not(.collapsed) {
    background-color: #fae6e6;
}

.select2-container--default .select2-results__option--highlighted:not([aria-selected=true]) {
    background-color: rgb(250 230 230) !important;
    color: #000000 !important;
}

.wd-50 {
    width: 50px;
}

.wd-100 {
    width: 100px;
}

.wd-200 {
    width: 200px;
}

.wd-300 {
    width: 300px;
}

.fileW {
    margin-top: 29px;
}

element.style {
    color: #005ca9;
    border-color: #005ca9;
    background: transparent;
}

.daterangepicker .drp-buttons .btn {
    margin-left: 0.6rem;
}

.btn:not([class*=btn-label-]):not([class*=btn-outline-]) {
    box-shadow: 0px 2px 4px rgb(165 163 174 / 40%);
}

button:not(:disabled), [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled) {
    cursor: pointer;
}

element.style {
}

.daterangepicker .drp-buttons .btn {
    margin-left: 0.6rem;
}

.btn:not([class*=btn-label-]):not([class*=btn-outline-]) {
    box-shadow: 0px 2px 4px rgb(165 163 174 / 40%);
}

.daterangepicker .drp-buttons .btn {
    margin-left: 0.6rem;
}

.btn:not([class*=btn-label-]):not([class*=btn-outline-]) {
    box-shadow: 0px 2px 4px rgb(165 163 174 / 40%);
}

input[type="file"] {
    line-height: 1;
}

textarea {
    line-height: 1.5 !important;
}

.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .btn-primary.show.dropdown-toggle, .show > .btn-primary.dropdown-toggle {
    background-color: red !important;
    border-color: red !important;
}

.btn-check:focus + .btn-primary, .btn-primary:focus, .btn-primary.focus {
    background-color: red;
    border-color: red;
}

.tooltips {
    white-space: nowrap;
    width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.detailsTotal {
    font-size: 0.9375rem;
}

/* Automatic Serial Number Row */
.css-serial {
    counter-reset: serial-number; /* Set the serial number counter to 0 */
}

    .css-serial td:first-child:not(.detailsTotal, .dataTables_empty):before {
        counter-increment: serial-number; /* Increment the serial number counter */
        content: counter(serial-number); /* Display the counter */
    }

.css-serial2 {
    counter-reset: serial-number; /* Set the serial number counter to 0 */
}

    .css-serial2 td:nth-child(2):not(.detailsTotal, .dataTables_empty):before {
        counter-increment: serial-number; /* Increment the serial number counter */
        content: counter(serial-number); /* Display the counter */
    }


/*.main-registration-class.authentication-wrapper.authentication-cover .authentication-inner .auth-cover-bg{
  height: 85vh;
}*/
/*.login-form{
  position: absolute;
  
        z-index: 1;
}*/


.table > :not(caption)  > {
    padding: 0.2rem 0.5rem;
}