
.btn-mr {
    margin-right: 5px !important;
}

.item-type-list {
    margin-left: 0px;
    padding-left: 15px;
}

tr.item-row {
    position: relative;
}

tr.item-row .item-action {
    display: none;
    position: absolute;
    top: 5px;
    left: 20px;
    padding: 0px 5px 2px 6px;
}

tr.item-row:hover .item-action {
    display: inline;
}

.select2 .select2-selection__arrow b {
    padding: 0px !important;
}

.existing-items-wrapper h5 {
    padding: 10px 0 0 10px;
    margin: 0px;
    color: red;
}

.existing-items-wrapper ul.existing-items-list {
    list-style: none;
    margin: 0;
    padding: 10px;
}

.sticky-card .card-header {
    position: sticky;
    top: 0; /* Sticks the header at the top of the card */
    z-index: 10; /* Ensures it stays above other elements */
}

.sticky-card .card-body {
    max-height: 500px; /* Set a fixed height for the card body */
    overflow-y: auto; /* Enable vertical scrolling */
}

/* Container for the switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}

/* Hide the default checkbox */
.switch input {
    display: none;
}

/* Slider styling */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 25px;
}

/* Slider circle */
.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 2.5px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

/* When checkbox is checked */
input:checked + .slider {
    background-color: #7367f0 !important;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.ip-mb-5 {
    margin-bottom: 5px !important;
}

.date-range-wrapper {
    display: flex;
    width: 100%;
}

.date-range-wrapper .from-date, 
.date-range-wrapper .end-date {
    width: 98%;
}

.date-range-wrapper .from-date {
    margin-right: 2px;
}

.date-range-wrapper .end-date {
    margin-left: 2px;
}

.main-menu.menu-light .navigation > li ul li ul a {
    padding: 10px 15px 10px 30px;
}


ul.grn-po-details {
    width: 60%;
    list-style: none;
    padding: 15px 10px;
    margin-bottom: 15px;
}

ul.grn-po-details li {
    padding: 10px;
    border-bottom: none !important;
    display: flex;
    width: 100%;
    border: 1px solid #333;
}

ul.grn-po-details li:last-child {
    border-bottom: 1px solid #333 !important;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

ul.grn-po-details li:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

ul.grn-po-details li b, ul.grn-po-details li span {
    box-sizing: border-box;
}

ul.grn-po-details li b {
    width: 40%;
}

/* Datatable Styles for input and select */
.dataTables_wrapper .dataTables_filter label,
.dataTables_wrapper .dataTables_length label {
    font-size: 16px;
}

.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_filter input {
    display: block;
    width: 100%;
    height: 40px;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    box-sizing: border-box;
}

.dataTables_wrapper .dataTables_length select:focus,
.dataTables_wrapper .dataTables_filter input:focus {
    color: #212529;
    background-color: #fff;
    border-color: #7367f0;
    outline: 0;
    box-shadow: 0 3px 10px 0 rgba(34, 41, 47, 0.1);
}

/* Remove default styling for select elements */
.dataTables_wrapper .dataTables_length select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Add caret for select dropdowns */
.dataTables_wrapper .dataTables_length select {
    background: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3E%3Cpath fill='%23adb5bd' d='M2 5l2-2H0z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
    background-size: 8px 10px;
    padding-right: 2.5rem;
}

/* Disabled State */
.dataTables_wrapper .dataTables_length select:disabled,
.dataTables_wrapper .dataTables_length select[readonly],
.dataTables_wrapper .dataTables_filter input:disabled,
.dataTables_wrapper .dataTables_filter input[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0.486rem 1rem !important;
    font-size: 0.9rem !important;
    line-height: 1 !important;
    border-radius: 0.358rem !important;
    vertical-align: middle !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    background-color: transparent !important;
    border: 1px solid transparent !important;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, 
        border-color 0.15s ease-in-out, 
        box-shadow 0.15s ease-in-out, 
        background 0s, 
        border 0s !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    border-color: #7367f0 !important;
    background-color: #7367f0 !important;
    color: #fff !important;
}

.bg-label-primary, .bg-label-hover-primary {
    background-color: #e9e7fd !important;
    color: #7367f0 !important;
}
.bg-label-success {
    background-color: #ddf6e8 !important;
    color: #28c76f !important;
}
.bg-label-danger {
    background-color: #ffe2e3 !important;
    color: #ff4c51 !important;
}
.bg-label-warning {
    background-color: #fff0e1 !important;
    color: #ff9f43 !important;
}
.bg-label-info {
    background-color: #d6f4f8 !important;
    color: #00bad1 !important;
}
.bg-label-secondary {
    background-color: #ebebed !important;
    color: #808390 !important;
}

.py-half {
    padding-top: 10px;
    padding-bottom: 10px;
}

.card[class*=card-border-shadow-]:after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 100%;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-radius: .375rem;
    transition: all .2s ease-in-out;
    z-index: -1;
}
.card.card-border-shadow-primary:after {
    border-bottom-color: #a59dff;
}
.card.card-border-shadow-success:after {
    border-bottom-color: #9dffc8;
}
.card.card-border-shadow-danger:after {
    border-bottom-color: #ffa3a6;
}
.card.card-border-shadow-warning:after {
    border-bottom-color: #ffcd9b;
}
.card[class*=card-border-shadow-]:hover:after {
    border-bottom-width: 3px;
}
.card.card-border-shadow-primary:hover:after {
    border-bottom-color: #7367f0;
}
.card.card-border-shadow-success:hover:after {
    border-bottom-color: #28c76f;
}
.card.card-border-shadow-danger:hover:after {
    border-bottom-color: #ff4c51;
}
.card.card-border-shadow-warning:hover:after {
    border-bottom-color: #ff9f43;
}

table.table_main {
    margin: 1px 0 100px 0 !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    font-size: 20px;
    color: #f30202;
}

.btn-xs, 
.btn-group-xs > .btn {
    padding: 4px;
    font-size: 12px;
    line-height: 1;
    border-radius: 0.358rem;
}

.btn-xs.dropdown-toggle::after {
    top: 1px !important;
}

/* Notification UI Design */

.timeline {
    position: relative;
    height: 100%;
    width: 100%;
    padding: 0;
    list-style: none
}

.timeline .timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row
}

.timeline .timeline-header>*:first-child {
    margin-right: .5rem
}

.timeline .timeline-end-indicator {
    position: absolute;
    bottom: -1.35rem;
    left: -.65rem
}

.timeline .timeline-end-indicator i {
    font-size: 1.5rem;
    color: #e6e6e8
}

.timeline .timeline-item {
    position: relative;
    padding-left: 1.4rem
}

.timeline .timeline-item .timeline-event {
    position: relative;
    width: 100%;
    min-height: 4rem;
    background-color: #fff;
    border-radius: .375rem;
    padding: .5rem 0 .3375rem
}

.timeline .timeline-item .timeline-event .timeline-event-time {
    position: absolute;
    top: 1.2rem;
    font-size: .85rem;
    color: #acaab1
}

.timeline .timeline-item .timeline-indicator,.timeline .timeline-item .timeline-indicator-advanced {
    position: absolute;
    left: -1rem;
    top: .64rem;
    z-index: 2;
    height: 2rem;
    width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%
}

.timeline .timeline-item .timeline-indicator {
    box-shadow: 0 0 0 10px #f8f7fa
}

.timeline .timeline-item .timeline-indicator-advanced {
    background-color: #fff;
    top: 0
}

.timeline .timeline-item .timeline-point {
    position: absolute;
    left: -.38rem;
    top: 0;
    z-index: 2;
    display: block;
    height: .75rem;
    width: .75rem;
    border-radius: 50%;
    background-color: #7367f0;
    box-shadow: 0 0 0 10px #fff
}

.timeline .timeline-item.timeline-item-transparent .timeline-event {
    top: -.9rem;
    background-color: transparent
}

html:not([dir=rtl]) .timeline .timeline-item.timeline-item-transparent .timeline-event {
    padding-left: 0
}

.timeline .timeline-item.timeline-item-transparent .timeline-event.timeline-event-shadow {
    padding-left: 2rem
}

.timeline.timeline-outline .timeline-item .timeline-point {
    outline: unset;
    background-color: #fff!important;
    border: 2px solid #7367f0
}

.timeline.timeline-center .timeline-end-indicator {
    bottom: -1.4rem;
    left: 50%;
    margin-left: .55rem
}

.timeline.timeline-center .timeline-item {
    width: 50%;
    clear: both
}

.timeline.timeline-center .timeline-item.timeline-item-left,.timeline.timeline-center .timeline-item:nth-of-type(odd):not(.timeline-item-left):not(.timeline-item-right) {
    float: left;
    padding-left: 0;
    padding-right: 2.25rem;
    padding-bottom: 2.5rem;
    border-left: 0;
    border-right: 1px solid #e6e6e8
}

.timeline.timeline-center .timeline-item.timeline-item-left .timeline-event .timeline-event-time,.timeline.timeline-center .timeline-item:nth-of-type(odd):not(.timeline-item-left):not(.timeline-item-right) .timeline-event .timeline-event-time {
    right: -10.2rem
}

.timeline.timeline-center .timeline-item.timeline-item-left .timeline-point,.timeline.timeline-center .timeline-item:nth-of-type(odd):not(.timeline-item-left):not(.timeline-item-right) .timeline-point {
    left: 100%
}

.timeline.timeline-center .timeline-item.timeline-item-right,.timeline.timeline-center .timeline-item:nth-of-type(2n):not(.timeline-item-left):not(.timeline-item-right) {
    float: right;
    right: 1px;
    padding-left: 2.25rem;
    padding-bottom: 2.5rem;
    border-left: 1px solid #e6e6e8
}

.timeline.timeline-center .timeline-item.timeline-item-right .timeline-event .timeline-event-time,.timeline.timeline-center .timeline-item:nth-of-type(2n):not(.timeline-item-left):not(.timeline-item-right) .timeline-event .timeline-event-time {
    left: -10.2rem
}

.timeline.timeline-center .timeline-item.timeline-item-right .timeline-event .timeline-point,.timeline.timeline-center .timeline-item:nth-of-type(2n):not(.timeline-item-left):not(.timeline-item-right) .timeline-event .timeline-point {
    left: 0
}

.timeline.timeline-center .timeline-item .timeline-point {
    left: 50%;
    margin-left: -.6875rem
}

.timeline.timeline-center .timeline-item .timeline-point-indicator {
    left: 50%;
    margin-left: -.3125rem
}

.timeline.timeline-advance .timeline-item .timeline-event:before,.timeline.timeline-advance .timeline-item .timeline-event:after {
    border: transparent
}

html:not([dir=rtl]) .timeline:not(.timeline-center) {
    padding-left: .5rem;
    padding-right: 2.5rem
}

html:not([dir=rtl]) .timeline-item {
    border-left: 1px solid #e6e6e8
}

[dir=rtl] .timeline:not(.timeline-center) {
    padding-right: .5rem
}

[dir=rtl] .timeline:not(.timeline-center) .timeline-item {
    border-right: 1px solid #e6e6e8
}

[dir=rtl] .timeline:not(.timeline-center) .timeline-end-indicator {
    left: auto;
    right: -.75rem
}

[dir=rtl] .timeline:not(.timeline-center) .timeline-item {
    padding-left: 0;
    padding-right: 2rem;
    border-right: 1px solid #e6e6e8
}

[dir=rtl] .timeline:not(.timeline-center) .timeline-item.timeline-item-transparent .timeline-event {
    padding-right: 0
}

[dir=rtl] .timeline:not(.timeline-center) .timeline-item .timeline-point {
    right: -.38rem;
    left: auto
}

[dir=rtl] .timeline:not(.timeline-center) .timeline-item .timeline-indicator {
    right: -.75rem;
    left: auto
}

[dir=rtl] .timeline:not(.timeline-center) .timeline-item .timeline-indicator-advanced {
    right: -1rem;
    left: auto
}

@media (min-width: 768px) {
    .timeline.timeline-center .timeline-item.timeline-item-left .timeline-indicator,.timeline.timeline-center .timeline-item:nth-of-type(odd):not(.timeline-item-left):not(.timeline-item-right) .timeline-indicator {
        left:calc(100% - 1rem)
    }
}

@media (max-width: 767.98px) {
    .timeline.timeline-center .timeline-end-indicator {
        left:-2px
    }

    .timeline.timeline-center .timeline-item {
        border-right: 0!important;
        left: 1rem;
        float: left!important;
        width: 100%;
        padding-left: 3rem!important;
        padding-right: 1.5rem!important
    }

    .timeline.timeline-center .timeline-item:not(:last-child) {
        border-left: 1px solid #e6e6e8!important
    }

    .timeline.timeline-center .timeline-item .timeline-event .timeline-event-time {
        top: -1.7rem;
        left: 0!important;
        right: auto!important
    }

    .timeline.timeline-center .timeline-item .timeline-point {
        left: -.7rem!important;
        margin-left: 0!important
    }

    .timeline.timeline-center .timeline-item .timeline-point-indicator {
        left: 0!important;
        margin-left: -.3125rem!important
    }

    [dir=rtl] .timeline.timeline-center .timeline-item {
        border-left: 0!important;
        right: 1rem!important
    }

    [dir=rtl] .timeline.timeline-center .timeline-item:not(:last-child) {
        border-right: 1px solid #e6e6e8!important
    }

    [dir=rtl] .timeline.timeline-center .timeline-item {
        float: right!important;
        width: 100%;
        padding-right: 3.5rem!important;
        padding-left: 1.5rem!important
    }

    [dir=rtl] .timeline.timeline-center .timeline-item .timeline-event .timeline-event-time {
        top: -1.2rem;
        right: 0!important;
        left: auto!important
    }

    [dir=rtl] .timeline.timeline-center .timeline-item .timeline-point {
        right: -.7rem!important;
        margin-right: 0!important
    }
}

@media (max-width: 767.98px) {
    [dir=rtl] .timeline .timeline-item .timeline-indicator,[dir=rtl] .timeline .timeline-item .timeline-indicator-advanced {
        left:auto;
        right: -.6875rem
    }

    [dir=rtl] .timeline-center .timeline-item {
        padding-left: 0;
        padding-right: 3rem
    }
}

@media (max-width: 575.98px) {
    .timeline .timeline-header {
        flex-direction:column;
        align-items: flex-start
    }
}

.timeline .timeline-point-secondary {
    background-color: #808390!important;
    outline: 3px solid rgba(128,131,144,.12)
}

.timeline.timeline-outline .timeline-point-secondary {
    border: 2px solid #808390!important
}

.timeline .timeline-indicator-secondary {
    background-color: #ebebed
}

.timeline .timeline-indicator-secondary i {
    color: #808390!important
}

.timeline .timeline-point-success {
    background-color: #28c76f!important;
    outline: 3px solid rgba(40,199,111,.12)
}

.timeline.timeline-outline .timeline-point-success {
    border: 2px solid #28c76f!important
}

.timeline .timeline-indicator-success {
    background-color: #ddf6e8
}

.timeline .timeline-indicator-success i {
    color: #28c76f!important
}

.timeline .timeline-point-info {
    background-color: #00bad1!important;
    outline: 3px solid rgba(0,186,209,.12)
}

.timeline.timeline-outline .timeline-point-info {
    border: 2px solid #00bad1!important
}

.timeline .timeline-indicator-info {
    background-color: #d6f4f8
}

.timeline .timeline-indicator-info i {
    color: #00bad1!important
}

.timeline .timeline-point-warning {
    background-color: #ff9f43!important;
    outline: 3px solid rgba(255,159,67,.12)
}

.timeline.timeline-outline .timeline-point-warning {
    border: 2px solid #ff9f43!important
}

.timeline .timeline-indicator-warning {
    background-color: #fff0e1
}

.timeline .timeline-indicator-warning i {
    color: #ff9f43!important
}

.timeline .timeline-point-danger {
    background-color: #ff4c51!important;
    outline: 3px solid rgba(255,76,81,.12)
}

.timeline.timeline-outline .timeline-point-danger {
    border: 2px solid #ff4c51!important
}

.timeline .timeline-indicator-danger {
    background-color: #ffe2e3
}

.timeline .timeline-indicator-danger i {
    color: #ff4c51!important
}

.timeline .timeline-point-dark {
    background-color: #4b4b4b!important;
    outline: 3px solid rgba(75,75,75,.12)
}

.timeline.timeline-outline .timeline-point-dark {
    border: 2px solid #4b4b4b!important
}

.timeline .timeline-indicator-dark {
    background-color: #e2e2e2
}

.timeline .timeline-indicator-dark i {
    color: #4b4b4b!important
}

.timeline .timeline-point-gray {
    background-color: #2f2b3d80!important;
    outline: 3px solid rgba(47,43,61,.12)
}

.timeline.timeline-outline .timeline-point-gray {
    border: 2px solid rgba(47,43,61,.5)!important
}

.timeline .timeline-indicator-gray {
    background-color: #dedde0
}

.timeline .timeline-indicator-gray i {
    color: #2f2b3d80!important
}

.text-body {
    --bs-text-opacity: 1;
    color: #6d6b77 !important;
}

.bg-lighter {
    --bs-bg-opacity: 1;
    background-color: #f3f2f3 !important;
}

.timeline .timeline-item:not(:last-child) {
    padding-bottom: 0px;
}


/* Navbar CSS Styling */


.vertical-layout .navbar .dropdown-menu {
    top: 147%;
}

.badge.badge-notifications {
    position: absolute;
    top: auto;
    display: inline-block;
    margin: 0;
    transform: translate(-50%, -45%);
}

.btn .badge {
    transition: all .2sease-in-out;
}

.btn .badge {
    position: relative;
    top: -1px;
}
.badge:empty {
    display: none;
}
.rounded-pill {
    border-radius: 50rem !important;
}
.badge.badge-dot {
    display: inline-block;
    margin: 0;
    padding: 0;
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    vertical-align: middle;
}

.navbar .navbar-dropdown .dropdown-menu {
    min-width: 22rem;
    overflow: hidden;
}

@media (min-width: 1200px) {
    .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute;
    }
}

.navbar-nav .dropdown-menu {
    position: static;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu-end.show {
    right: 0;
    left: auto;
}

.dropdown-menu {
    top: 100%;
    left: 0;
    margin-top: var(--bs-dropdown-spacer);
}

.dropdown-menu {
    box-shadow: 0 .25rem 1.125rem #2f2b3d29;
}
.dropdown-menu-end {
    --bs-position: end;
}

.avatar {
    width: 2.5rem;
    height: 2.5rem;
}

.avatar.avatar-sm img {
    width: 2.5rem !important;
    height: 2.5rem !important;
}

.avatar .avatar-initial {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #eeedf0;
    font-size: .9375rem;
}
.navbar .navbar-dropdown .badge-notifications {
    top: -15px;
    left: -5px;
    inset-inline-end: -2px
}

.navbar .navbar-dropdown .dropdown-menu {
    min-width: 26rem;
    overflow: hidden
}

.navbar .navbar-dropdown .dropdown-menu .dropdown-item {
    padding-block:.5rem;
    min-height: 2.375rem
}

.navbar .navbar-dropdown .dropdown-menu .last-login {
    white-space: normal
}

.navbar .navbar-dropdown.dropdown-notifications .dropdown-notifications-list {
    max-height: 24.08rem
}

.navbar .navbar-dropdown.dropdown-notifications .dropdown-notifications-list .dropdown-notifications-item {
    padding: .75rem 1rem;
    cursor: pointer
}

.navbar .navbar-dropdown.dropdown-notifications .dropdown-notifications-list .dropdown-notifications-item:not(.mark-as-read) .dropdown-notifications-read span {
    background-color: #7367f0
}

.navbar .navbar-dropdown.dropdown-notifications .dropdown-notifications-list .dropdown-notifications-item .dropdown-notifications-actions {
    text-align: center
}

.navbar .navbar-dropdown.dropdown-notifications .dropdown-notifications-list .dropdown-notifications-item .dropdown-notifications-actions>a {
    display: block
}

.navbar .navbar-dropdown.dropdown-notifications .dropdown-notifications-list .dropdown-notifications-item .dropdown-notifications-archive i,.navbar .navbar-dropdown.dropdown-notifications .dropdown-notifications-list .dropdown-notifications-item .dropdown-notifications-archive span {
    color: #444050
}

.navbar .navbar-dropdown.dropdown-notifications .dropdown-notifications-list .dropdown-notifications-item.marked-as-read .dropdown-notifications-read,.navbar .navbar-dropdown.dropdown-notifications .dropdown-notifications-list .dropdown-notifications-item.marked-as-read .dropdown-notifications-archive {
    visibility: hidden
}

.navbar .navbar-dropdown.dropdown-notifications .dropdown-notifications-list .dropdown-notifications-item.marked-as-read .dropdown-notifications-read span {
    background-color: #808390
}

.navbar .navbar-dropdown.dropdown-notifications .dropdown-notifications-list .dropdown-notifications-item:not(.marked-as-read) .dropdown-notifications-archive {
    visibility: hidden
}

.navbar .navbar-dropdown.dropdown-notifications .dropdown-notifications-list .dropdown-notifications-item:hover.marked-as-read .dropdown-notifications-read,.navbar .navbar-dropdown.dropdown-notifications .dropdown-notifications-list .dropdown-notifications-item:hover.marked-as-read .dropdown-notifications-archive {
    visibility: visible
}

.navbar .navbar-dropdown.dropdown-notifications .dropdown-notifications-list .dropdown-notifications-item:hover:not(.marked-as-read) .dropdown-notifications-archive {
    visibility: visible
}

.navbar .navbar-dropdown.dropdown-shortcuts .dropdown-shortcuts-list {
    max-height: 24.08rem
}

.navbar .navbar-dropdown.dropdown-shortcuts .dropdown-shortcuts-item {
    text-align: center;
    padding: 1.5rem
}

.navbar .navbar-dropdown.dropdown-shortcuts .dropdown-shortcuts-item:hover {
    background-color: #f3f2f3
}

.navbar .navbar-dropdown.dropdown-shortcuts .dropdown-shortcuts-item .dropdown-shortcuts-icon {
    height: 3.125rem;
    width: 3.125rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eeeeef
}

.navbar .navbar-dropdown.dropdown-shortcuts .dropdown-shortcuts-item a,.navbar .navbar-dropdown.dropdown-shortcuts .dropdown-shortcuts-item a:hover {
    display: block;
    margin-bottom: 0;
    color: #444050!important;
    font-weight: 500
}

.navbar .navbar-dropdown.dropdown-user .dropdown-menu {
    min-width: 14rem
}

.navbar[class*=bg-]:not(.bg-navbar-theme) .nav-item .input-group-text,.navbar[class*=bg-]:not(.bg-navbar-theme) .nav-item .dropdown-toggle {
    color: #fff
}

@media (max-width: 1199.98px) {
    .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
        position:absolute
    }

    .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .last-login {
        white-space: nowrap
    }
}

@media (max-width: 767.98px) {
    .navbar .navbar-nav .nav-item.dropdown {
        position:static;
        float: left
    }

    .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
        position: absolute;
        left: .9rem;
        min-width: auto;
        width: 92%
    }
}


.custom-control-label::before {
    border: 1px solid #acaab1 !important;
}

.permission-card .permission-card-content {
    height: 140px;
    overflow: auto;
    margin-bottom: 20px;
}

.scrollable-section .scrollable-section-content {
    height: 70vh;
    overflow: auto;
}

.permission-lists {
    padding-left: 0px;
    padding-right: 0px;
}

.expenses-row {
    border: 1px solid #333;
    border-radius: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 20px;
    position: relative;
}

.expenses-row:first-child {
    margin-top: 0px;
}

.expenses-row .expense-remove-btn {
    padding: 0.2rem 0.62rem;
    box-shadow: 0 5px 20px 0 rgba(34, 41, 47, 0.1);
    border-radius: 0.357rem;
    background: #ff0b0b;
    color: #fff;
    opacity: 1;
    cursor: pointer;
    transition: all 0.23s ease 0.1s;
    position: absolute;
    top: -5px;
    right: 4px;
    transform: translate(8px, -2px);
}

.expenses-row .expense-remove-btn:hover {
    opacity: 1;
    outline: none;
    transform: translate(5px, 3px);
    box-shadow: none;
}