@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";


:root {
    --primary-color: #0e2442;
    --primary-color-light: #2A3F61;
    --primary-color-dark: #0B1C33;
    --danger-color: #a94442;
    --secondary-color: #f1e5bf;
    --pending-status-color:#f0ad4e;
    --cancelled-status-color: #6b7280;
}

body {
    font-family: "Poppins", sans-serif;
    background: #f0f0f0;
    font-size: 0.8em !important;
}

.pagination li button, .pagination li span, .form-select {
    font-size: 1em !important;
}

.highlight-dropdown {
    background-color: #b4dbff; /* Light blue background */
    color: #000; /* Black text */
}

.icon-badge {
    background-color: rgba(18, 53, 36, 0.1);
    color: #123524;
    border-radius: 50%;
    padding: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-badge:hover {
    background-color: rgba(18, 53, 36, 0.2); /* slightly darker on hover */
    transform: scale(1.05); /* grow slightly */
}

.text-deep-green {
    color: #123524;
}

.badge-lg {
    font-size: 0.75rem;       /* Larger text */
    padding: 0.5rem 0.75rem; /* More space */
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.navbar {
    padding: 15px 10px;
    background: #fff;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.custom-payment-box {
    border-radius: 1rem;
    background: #72DC3559;
    color: #319e0a;
    font-size: 85%;
}

.light-success-bg {
    background: #72DC3559;
}

.light-warning-bg {
    background: #FFF4B5;
}

.light-danger-bg {
    background: #FFCAD4;
}

.highlighted-file-box {
    background: #faf5f5;
    color: #036a9e;
    border: .5px solid #036a9e24;
    padding: 2px;
    margin-bottom: 3px;
    display: flex;
    border-radius: 4px;
    align-items: center;
}

/* ---------------------------------------------------
    SELECT OPTIONS STYLE
----------------------------------------------------- */

.select-disabled {
    background-color: #f8f9fa !important;
    color: #6c757d !important;
    cursor: not-allowed;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
    position: fixed;
}

#sidebar {
    min-width: 250px;
    max-width: 250px;
    background: var(--primary-color);
    color: #fff;
    transition: all 0.3s;
    overflow-y: scroll;
    height: 100vh;
}

.main-color {
    background: #4a614a;
    color: #fff;
}

/* Hide scrollbar for Chrome, Safari and Opera */
#sidebar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
#sidebar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

#sidebar.active {
    margin-left: -250px;
}

#sidebar .sidebar-header {
    padding: 10px;
    background: #EFE3C2;
}

#sidebar ul.components {
    padding: 0 0 39px 0;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 0.9em;
    display: block;
}

#sidebar ul li a:hover {
    color: var(--secondary-color);
    background: var(--primary-color-dark);
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: var(--primary-color-dark);
    background: var(--secondary-color);
}

a[data-toggle="collapse"] {
    position: relative;
}

a.sidebar-link, #sidebar-menu li a {
    padding: .625rem 1.625rem;
    color: #e9ecef;
    position: relative;
    display: block;
    font-size: 1rem;
}

.sidebar-link[data-bs-toggle="collapse"]:not(.collapsed),
.sidebar-dropdown .active > a {
    color: var(--primary-color-dark);
}

.sidebar-link[data-bs-toggle="collapse"]::after, #sidebar-menu li a[data-bs-toggle="collapse"]::after {
    border: solid;
    border-width: 0 .075rem .075rem 0;
    content: "";
    display: inline-block;
    padding: 2px;
    position: absolute;
    right: 1.5rem;
    top: 1.1rem;
    transform: rotate(-135deg);
    transition: all .2s ease-out;
}

.sidebar-link[data-bs-toggle="collapse"].collapsed::after, #sidebar-menu li a[data-bs-toggle="collapse"].collapsed::after {
    transform: rotate(45deg);
    transition: all .2s ease-out;
}

.content {
    flex: 1;
    max-width: 100vw;
    width: 100vw;
}

#sidebar ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    /*background: #7a927a;*/
    background: var(--primary-color-light);
}

#sidebar .user_profile_details {
    position: fixed;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary-color-dark);
    width: 250px;
    transition: all 0.5s ease;
}

.user-profile-content {
    height: 38px;
    width: 38px;
    color: var(--primary-color-light);
    text-transform: uppercase;
    margin: 0 12px 0 2px;
    background: var(--primary-color-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    border-radius: 50%;
    transition: all 0.5s ease;
    font-weight: bold;
}

#sidebar .logo-details {
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
}

#sidebar .logo-details .logo {
    height: 35px;
    width: 35px;
    margin: 0 14px 0 12px;
    object-fit: cover;
}


#sidebar .logo-details .logo_name {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s ease;
    transition-delay: 0.1s;
}

#sidebar.active .logo-details .logo_name {
    transition-delay: 0s;
    opacity: 0;
    pointer-events: none;
}

.logo-image-content {
    height: 55px;
    width: 55px;
    color: var(--primary-color-light);
    text-transform: uppercase;
    margin: 0 12px 0 2px;
    background: var(--primary-color-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    border-radius: 50%;
    transition: all 0.5s ease;
    font-weight: bold;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: 100%;
    min-height: 100vh;
    transition: all 0.3s;
    overflow-y: scroll;
    height: 100vh;
    /*position: fixed;*/
}

#content .top-navbar {
    margin-bottom: 8px !important;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 .325rem .15rem rgba(0, 0, 0, .075) !important;
}

.form-control {
    font-size: .99em;
    border-radius: 0;
    transition: 0.3s ease-in-out;
}

.form-control:focus {
    box-shadow: unset;
    border-color: #996567;
}

.nav-tabs {
    border-bottom: unset;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link {
    color: var(--primary-color-light);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: var(--primary-color);
    background-color: #fff;
    border-top: 2px solid var(--primary-color-light);
}

.nav-pills .nav-link {
    color: #fff;
    margin-bottom: 4px;
    padding: 7px 9px 7px 9px;
    border-radius: 3px;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    font-weight: bold;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background-color: var(--secondary-color);
}

.disp-Info {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: #996567;
    color: #fff;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
    }

    #sidebar.active {
        margin-left: 0;
    }

    #sidebarCollapse span {
        display: none;
    }
}

/* Fix columns selection button */
#columnSelect-table {
    min-width: 150px;
    background: #f2f2f2;
}

/* ---------------------------------------------------
    CARD TOOLD
----------------------------------------------------- */

.card-tools {
    display: block;
    float: none;
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0;
    text-align: right;
    margin-top: -7px !important;
}

.card-tools .custom-dropdown-menu>li>a {
    padding: 4px 10px;
    font-size: 12px;
    color: #676a6c !important;
}

.card .card-tools.open>.custom-dropdown-menu {
    left: auto;
    right: 0;
}

.card-tools .dropdown-toggle::after {
    display: none;
}

/* ---------------------------------------------------
    LIVEWIRE WIZARD
----------------------------------------------------- */

/*.steps {*/
/*    border: 1px solid #e7e7e7*/
/*}*/

/*.steps-header {*/
/*    padding: .375rem;*/
/*    border-bottom: 1px solid #e7e7e7*/
/*}*/

/*.steps-header .progress {*/
/*    height: .25rem*/
/*}*/

/*.steps-body {*/
/*    display: table;*/
/*    table-layout: fixed;*/
/*    width: 100%*/
/*}*/

/*.step {*/
/*    display: table-cell;*/
/*    position: relative;*/
/*    padding: 1rem .75rem;*/
/*    -webkit-transition: all 0.25s ease-in-out;*/
/*    transition: all 0.25s ease-in-out;*/
/*    border-right: 1px dashed #dfdfdf;*/
/*    color: rgba(0, 0, 0, 0.65);*/
/*    font-weight: 600;*/
/*    text-align: center;*/
/*    text-decoration: none*/
/*}*/

/*.step:last-child {*/
/*    border-right: 0*/
/*}*/

/*.step-indicator {*/
/*    display: block;*/
/*    position: absolute;*/
/*    top: .75rem;*/
/*    left: .75rem;*/
/*    width: 1.5rem;*/
/*    height: 1.5rem;*/
/*    border: 1px solid #e7e7e7;*/
/*    border-radius: 50%;*/
/*    background-color: #fff;*/
/*    font-size: .875rem;*/
/*    line-height: 1.375rem*/
/*}*/

/*.has-indicator {*/
/*    padding-right: 1.5rem;*/
/*    padding-left: 2.375rem*/
/*}*/

/*.has-indicator .step-indicator {*/
/*    top: 50%;*/
/*    margin-top: -.75rem*/
/*}*/

/*.step-icon {*/
/*    display: block;*/
/*    width: 1.5rem;*/
/*    font-size: 1.5em;*/
/*    height: 1.5rem;*/
/*    margin: 0 auto;*/
/*    margin-bottom: .75rem;*/
/*    -webkit-transition: all 0.25s ease-in-out;*/
/*    transition: all 0.25s ease-in-out;*/
/*    color: #888*/
/*}*/

/*.step:hover {*/
/*    color: rgba(0, 0, 0, 0.9);*/
/*    text-decoration: none*/
/*}*/

/*.step:hover .step-indicator {*/
/*    -webkit-transition: all 0.25s ease-in-out;*/
/*    transition: all 0.25s ease-in-out;*/
/*    border-color: transparent;*/
/*    background-color: #f4f4f4*/
/*}*/

/*.step:hover .step-icon {*/
/*    color: rgba(0, 0, 0, 0.9)*/
/*}*/

/*.step-active,*/
/*.step-active:hover {*/
/*    color: rgba(0, 0, 0, 0.9);*/
/*    pointer-events: none;*/
/*    cursor: default;*/
/*    background: #085b8612;*/
/*}*/

/*.progress-bar {*/
/*    background: #0080c1 !important;*/
/*}*/

/*.step-active .step-indicator,*/
/*.step-active:hover .step-indicator {*/
/*    border-color: transparent;*/
/*    background-color: #5c77fc;*/
/*    color: #fff*/
/*}*/

/*.step-active .step-icon,*/
/*.step-active:hover .step-icon {*/
/*    color: #0080c1*/
/*}*/

/*.step-completed .step-indicator,*/
/*.step-completed:hover .step-indicator {*/
/*    border-color: transparent;*/
/*    background-color: rgba(51, 203, 129, 0.12);*/
/*    color: #33cb81;*/
/*    line-height: 1.25rem*/
/*}*/

/*.step-completed .step-indicator .feather,*/
/*.step-completed:hover .step-indicator .feather {*/
/*    width: .875rem;*/
/*    height: .875rem*/
/*}*/

/*@media (max-width: 575.98px) {*/
/*    .steps-header {*/
/*        display: none*/
/*    }*/

/*    .steps-body,*/
/*    .step {*/
/*        display: block*/
/*    }*/

/*    .step {*/
/*        border-right: 0;*/
/*        border-bottom: 1px dashed #e7e7e7*/
/*    }*/

/*    .step:last-child {*/
/*        border-bottom: 0*/
/*    }*/

/*    .has-indicator {*/
/*        padding: 1rem .75rem*/
/*    }*/

/*    .has-indicator .step-indicator {*/
/*        display: inline-block;*/
/*        position: static;*/
/*        margin: 0;*/
/*        margin-right: 0.75rem*/
/*    }*/
/*}*/

/* ---------------------------------------------------
LIVEWIRE TABS
----------------------------------------------------- */
.tabs .tab-item {
    border: none;
    background: none;
    padding-bottom: 5px;
    padding-right: 0;
    padding-left: 0;
    margin-right: 22px;
}

.tabs .tab-item:hover {
    color: var(--primary-color);
}

.tabs .tab-item:focus,
.tabs .tab-item:focus-visible {
    outline: none;
}

.tabs .tab-item.active {
    border-bottom: 3px solid var(--primary-color);
    font-weight: bold;
}

/* ---------------------------------------------------
    NOTIFICATIONS STYLES
----------------------------------------------------- */
.notification {
    margin-right: 20px;
    text-decoration: none;
    position: relative;
    display: inline-block;
    border-radius: 2px;
}

.notification .badge {
    position: absolute;
    top: -5px;
    right: -8px;
    padding: 5px 10px;
    border-radius: 50%;
    background: #0080c1;
    color: white;
}

/* ---------------------------------------------------
    DASHBOARD CARDS STYLES
----------------------------------------------------- */

.order-card {
    color: #fff;
}

.bg-c-blue {
    background: linear-gradient(45deg, #03405f, #0080c1);
}

.bg-c-green {
    background: linear-gradient(45deg, #03405f, #0080c1);
}

.bg-c-yellow {
    background: linear-gradient(45deg, #03405f, #0080c1);
}

.bg-c-pink {
    background: linear-gradient(45deg, #03405f, #0080c1);
}

.card {
    border-radius: 0 !important;
    -webkit-box-shadow: 0 1px 2.94px 0.06px rgba(4, 26, 55, 0.16);
    box-shadow: 0 1px 2.94px 0.06px rgba(4, 26, 55, 0.16);
    margin-bottom: 15px;
}

.card.tab-content {
    margin-bottom: 0 !important;
}

.card .card-header {
    background-color: #fff !important;
    font-weight: bold !important;
    padding-top: 12px;
    padding-bottom: 12px;
}

.card .custom-header {
    background-color: var(--primary-color) !important;
    padding: 9px 12px 7px 12px;
    color: #fff;
}

.card .card-block {
    padding: 25px;
}

.order-card i {
    font-size: 26px;
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

.form-control {
    font-size: .99em;
    border-radius: 0;
    transition: 0.3s ease-in-out;
}

.form-control:focus {
    box-shadow: unset;
    border-color: #996567;
}

.swal2-textarea {
    height: 3.75em !important;
    padding: .75em !important;
    box-shadow: unset !important;
    border-color: #996567 !important;
}

.swal2-title {
    font-size: 18px !important;
}

button.swal2-styled {
    border-radius: 3px !important;
    font-size: .9em !important;
}

button.swal2-styled.swal2-confirm {
    background-color: #0d6efd !important;
}

.bg-secondary {
    background-color: #e9e9e9 !important;
}

.bg-alt {
    background-color: #00b32036 !important;
}

.btn,
input,
select {
    border-radius: 0 !important;
}

.btn {
    font-size: .9em
}


/* ---------------------------------------------------
    NAVBAR CUSTOMIZATION
----------------------------------------------------- */
.nav-tabs .nav-link {
    border-radius: 0 !important;
}

/* ---------------------------------------------------
    FILE ITEMS
----------------------------------------------------- */
.file-item {
    background: #faf5f5;
    color: #036a9e;
    border: .5px solid #036a9e24;
    display: flex;
    align-items: center;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border-radius: 0.2rem;
}

.file-item:hover {
    background: #036a9e24;
}

.file-icon {
    font-size: x-large;
}

/* ---------------------------------------------------
    LOGIN PAGE
----------------------------------------------------- */
#logo {
    /*display: block;*/
    /*position: absolute;*/
    top: -60px;
    width: 100px;
    height: 100px;
    /*padding: 10px;*/
    left: 35%;
    /*border: 1px solid #7c7c7c;*/
    /*border-radius: 5%;*/
    object-fit: contain;
    background: #fff;
}

.swal2-container {
    z-index: 20000 !important;
}

[x-cloak] {
    display: none !important;
}

.spinner-border-xs {
    width: 0.8rem;
    height: 0.8rem;
    border-width: 0.15em;
}

.swal2-icon.swal2-error {
    border: none;
}

.swal2-popup.swal2-toast .swal2-title {
    margin: 0.5em 0.5em;
}

div.table-bordered {
    border: none;
}

.modal-header {
    border-bottom: 1px solid #0080c1;
    padding: 12px 22px !important;
}

.modal-title {
    font-weight: bold;
}

/* ---------------------------------------------------
    TOP NAV LOADING INDICATOR
----------------------------------------------------- */
/*.loading-container {*/
/*    width: 100%;*/
/*    margin: auto;*/
/*  }*/

/*  .progress-bar {*/
/*    height: 4px;*/
/*    background-color: rgba(5, 114, 206, 0.2);*/
/*    width: 100%;*/
/*    overflow: hidden;*/
/*  }*/

/*  .progress-bar-value {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-color: rgb(5, 114, 206);*/
/*    animation: animate 1s infinite linear;*/
/*    transform-origin: 0% 50%;*/
/*  }*/


  @keyframes animate {
    0% {
      transform:  translateX(0) scaleX(0);
    }
    40% {
      transform:  translateX(0) scaleX(0.4);
    }
    100% {
      transform:  translateX(100%) scaleX(0.5);
    }
  }

/*Ball Spinner*/
.ball-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #303234;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 99999;
    width: 100%;
    height: 100%;
    opacity: .75;
    animation: move 4s linear infinite
}
.la-ball-clip-rotate-multiple,
.la-ball-clip-rotate-multiple > div {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.la-ball-clip-rotate-multiple {
    display: block;
    font-size: 0;
    color: #fff;
}
.la-ball-clip-rotate-multiple.la-dark {
    color: #333;
}
.la-ball-clip-rotate-multiple > div {
    display: inline-block;
    float: none;
    background-color: currentColor;
    border: 0 solid currentColor;
}
.la-ball-clip-rotate-multiple {
    width: 32px;
    height: 32px;
}
.la-ball-clip-rotate-multiple > div {
    position: absolute;
    top: 50%;
    left: 50%;
    background: transparent;
    border-style: solid;
    border-width: 2px;
    border-radius: 100%;
    -webkit-animation: ball-clip-rotate-multiple-rotate 1s ease-in-out infinite;
    -moz-animation: ball-clip-rotate-multiple-rotate 1s ease-in-out infinite;
    -o-animation: ball-clip-rotate-multiple-rotate 1s ease-in-out infinite;
    animation: ball-clip-rotate-multiple-rotate 1s ease-in-out infinite;
}
.la-ball-clip-rotate-multiple > div:first-child {
    position: absolute;
    width: 32px;
    height: 32px;
    border-right-color: transparent;
    border-left-color: transparent;
}
.la-ball-clip-rotate-multiple > div:last-child {
    width: 16px;
    height: 16px;
    border-top-color: transparent;
    border-bottom-color: transparent;
    -webkit-animation-duration: .5s;
    -moz-animation-duration: .5s;
    -o-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-direction: reverse;
    -moz-animation-direction: reverse;
    -o-animation-direction: reverse;
    animation-direction: reverse;
}
.la-ball-clip-rotate-multiple.la-sm {
    width: 16px;
    height: 16px;
}
.la-ball-clip-rotate-multiple.la-sm > div {
    border-width: 1px;
}
.la-ball-clip-rotate-multiple.la-sm > div:first-child {
    width: 16px;
    height: 16px;
}
.la-ball-clip-rotate-multiple.la-sm > div:last-child {
    width: 8px;
    height: 8px;
}
.la-ball-clip-rotate-multiple.la-2x {
    width: 64px;
    height: 64px;
}
.la-ball-clip-rotate-multiple.la-2x > div {
    border-width: 4px;
}
.la-ball-clip-rotate-multiple.la-2x > div:first-child {
    width: 64px;
    height: 64px;
}
.la-ball-clip-rotate-multiple.la-2x > div:last-child {
    width: 32px;
    height: 32px;
}
.la-ball-clip-rotate-multiple.la-3x {
    width: 96px;
    height: 96px;
}
.la-ball-clip-rotate-multiple.la-3x > div {
    border-width: 6px;
}
.la-ball-clip-rotate-multiple.la-3x > div:first-child {
    width: 96px;
    height: 96px;
}
.la-ball-clip-rotate-multiple.la-3x > div:last-child {
    width: 48px;
    height: 48px;
}
/*
 * Animation
 */
@-webkit-keyframes ball-clip-rotate-multiple-rotate {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
        -webkit-transform: translate(-50%, -50%) rotate(180deg);
        transform: translate(-50%, -50%) rotate(180deg);
    }
    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@-moz-keyframes ball-clip-rotate-multiple-rotate {
    0% {
        -moz-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
        -moz-transform: translate(-50%, -50%) rotate(180deg);
        transform: translate(-50%, -50%) rotate(180deg);
    }
    100% {
        -moz-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@-o-keyframes ball-clip-rotate-multiple-rotate {
    0% {
        -o-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
        -o-transform: translate(-50%, -50%) rotate(180deg);
        transform: translate(-50%, -50%) rotate(180deg);
    }
    100% {
        -o-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes ball-clip-rotate-multiple-rotate {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -moz-transform: translate(-50%, -50%) rotate(0deg);
        -o-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
        -webkit-transform: translate(-50%, -50%) rotate(180deg);
        -moz-transform: translate(-50%, -50%) rotate(180deg);
        -o-transform: translate(-50%, -50%) rotate(180deg);
        transform: translate(-50%, -50%) rotate(180deg);
    }
    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        -moz-transform: translate(-50%, -50%) rotate(360deg);
        -o-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/*Custom Dropdown*/

.customized-dropdown-menu {
    width: 280px;
    padding: 0;
    margin: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    max-height: 40vh;
    overflow-y: scroll;
}

.customized-dropdown-menu li {
    line-height: 1.5;
    letter-spacing: 0.7px;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    padding: 7.5px 15px;
    border: solid 1px #d7dbdb;
    background-color: #FFFFFF;
}

.customized-dropdown-menu li:hover {
    background-color: #007bff;
    color: #FFFFFF;
}

.font-x-large {
    font-size: x-large;
}

.font-large {
font-size: large;
}

.file-blue-border {
    background: #faf5f5;
    color: #036a9e;
    border: .5px solid #036a9e24;
}

.green-status {
    border-radius: 1rem;
    background: #72DC3559;
    color: #319e0a;
    font-size: 85%
}

.pending-status {
    border-radius: 1rem;
    background: rgba(138, 43, 226, 0.35); /* Violet background */
    color: #8a2be2; /* Violet text */
    font-size: 85%;
}

.draft-status {
    border-radius: 1rem;
    background: rgba(220,181,53,0.35);
    color: #66560d; font-size: 85%
}

.danger-status {
    border-radius: 1rem;
    background: rgba(220,53,53,0.35);
    color: #cf1c1c;
    font-size: 85%;
}

.correction-status {
    border-radius: 1rem;
    background: rgba(255, 165, 0, 0.35);
    color: #ff8c00;
    font-size: 85%;
}

.status-inprogress {
    border-radius: 1rem;
    background: rgba(59, 130, 246, 0.35);
    color: #3b82f6;
    font-size: 85%;
}

.status-cancelled {
    border-radius: 1rem;
    background: rgba(156, 163, 175, 0.35);
    color: #6b7280;
    font-size: 85%;
}

.sub-vat-items {
    overflow: hidden;
    z-index: 1;
}

.z-index-1 {
    z-index: 1;
}

.font-size-50 {
    font-size: 50px
}

.w-160 {
    width: 160px;
}

.min-height-50 {
    min-height: 50px;
}

.min-height-250 {
    min-height: 250px;
}

.flex-1 {
    flex: 1;
}

.min-width-100 {
    min-width: 100%;
}

.old-change-bg {
    background: #ffe9e9;
}

.state-change-bg {
    background: #e9ffe9;
}

.width-px-250 {
    width: 250px;
}

.width-percent-100 {
    width: 100%;
}

.dl-passport {
    width: 120px;
    height: 120px;
    border-radius: 100%;
    border: 1px solid #d1d6d8;
}

.z-9999 {
    z-index: 9999;
}


#table-bulkActionsDropdown {
    width: 150px !important;
    background: #f2f2f2;
}

a.dropdown-item {
    font-size: .9rem !important;
}

table.align-middle td, table.align-middle th {
    vertical-align: middle !important;
}

.dl-photo-2 img {
    width: 250px;
    max-height: 250px;
    overflow: hidden;
    border: 1px solid silver;
    object-fit: contain;
}

.font-x-large {
    font-size: x-large;
}

.btn-cm {
    margin-top: 30px;
}

.logout-link:hover {
    background: var(--primary-color) !important;
    color: #f0f0f0 !important;
}

.w-20 {
    width: 20%;
}

.max-height-50vh {
    max-height: 40vh;
}

.searchable-item:hover {
    cursor: pointer;
    background-color: #e1e1e1 !important;
}

/* Rounded sliders */
/*-------------------------------------------------------------------*/
/* === Email === */
.base-email {
    min-height: 90vh;

}

.email-wrapper {
    max-width: 100%;
    background: #eee;
}

/* Mail Sidebar */
@media (max-width: 769px) {
    .email-wrapper .mail-sidebar {
        position: relative;
    }
}

@media (max-width: 767.98px) {
    .email-wrapper .mail-sidebar {
        position: fixed;
        z-index: 99;
        background: #ffffff;
        width: 45%;
        min-width: 300px;
        left: -100%;
        display: block;
        transition: 0.4s ease;
        -webkit-transition: 0.4s ease;
        -moz-transition: 0.4s ease;
    }
}

.email-wrapper .mail-sidebar .menu-bar {
    width: 100%;
    float: right;
    height: 100%;
    min-height: 100%;
}

@media (max-width: 767.98px) {
    .email-wrapper .mail-sidebar .menu-bar {
        min-height: 100vh;
        max-height: 100%;
        height: auto;
        overflow-y: auto;
        overflow-x: hidden;
    }
}

.email-wrapper .mail-sidebar .menu-bar .menu-items {
    padding: 0;
    margin-bottom: 0;
    height: auto;
    list-style-type: none;
}

.email-wrapper .mail-sidebar .menu-bar .menu-items li {
    padding: 10px 15px;
    transition: 0.4s;
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.email-wrapper .mail-sidebar .menu-bar .menu-items li:hover {
    background: rgba(240, 244, 249, 0.8);
}

.email-wrapper .mail-sidebar .menu-bar .menu-items li a {
    color: #303a40;
    font-size: 0.75rem;
    text-decoration: none;
}

.email-wrapper .mail-sidebar .menu-bar .menu-items li a i {
    margin-right: 8px;
    font-size: 0.75rem;
    line-height: 1.5;
}

.email-wrapper .mail-sidebar .menu-bar .menu-items li.active {
    background: #e6e9ed;
    border-radius: 4px;
}

.email-wrapper .mail-sidebar .menu-bar .menu-items li.active a {
    color: #464dee;
}

.email-wrapper .mail-sidebar .menu-bar .menu-items li.compose:hover {
    background: transparent;
}

.email-wrapper .mail-sidebar .menu-bar .online-status {
    margin-top: 1rem;
}

.email-wrapper .mail-sidebar .menu-bar .online-status .chat {
    font-size: 0.75rem;
    color: #464dee;
    margin-bottom: 0;
    font-weight: 600;
}

.email-wrapper .mail-sidebar .menu-bar .online-status .status {
    height: 10px;
    width: 10px;
    border-radius: 100%;
    display: inline-flex;
    justify-content: flex-start;
    transform: translateX(-43px) translateY(2px);
}

.email-wrapper .mail-sidebar .menu-bar .online-status .status:after {
    font-size: 12px;
    color: #2e383e;
    margin: -5px 0 0 18px;
}

.email-wrapper .mail-sidebar .menu-bar .online-status .status.offline {
    background: #ef5958;
}

.email-wrapper .mail-sidebar .menu-bar .online-status .status.offline:after {
    content: "Offline";
}

.email-wrapper .mail-sidebar .menu-bar .online-status .status.online {
    background: #0ddbb9;
}

.email-wrapper .mail-sidebar .menu-bar .online-status .status.online:after {
    content: "Online";
}

.email-wrapper .mail-sidebar .menu-bar .profile-list {
    padding: 10px 0;
}

.email-wrapper .mail-sidebar .menu-bar .profile-list-item {
    border-bottom: 1px solid #e9e9e9;
    padding: 6px 0;
    display: block;
}

.email-wrapper .mail-sidebar .menu-bar .profile-list-item:last-child {
    border-bottom: 0;
}

.email-wrapper .mail-sidebar .menu-bar .profile-list-item a {
    text-decoration: none;
}

.email-wrapper .mail-sidebar .menu-bar .profile-list-item a .pro-pic {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    padding: 0;
    width: 20%;
    max-width: 40px;
}

.email-wrapper .mail-sidebar .menu-bar .profile-list-item a .pro-pic img {
    max-width: 100%;
    width: 100%;
    border-radius: 100%;
}

.email-wrapper .mail-sidebar .menu-bar .profile-list-item a .user {
    width: 100%;
    padding: 5px 10px 0 15px;
}

.email-wrapper .mail-sidebar .menu-bar .profile-list-item a .user .u-name {
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1;
    color: #000000;
}

.email-wrapper .mail-sidebar .menu-bar .profile-list-item a .user .u-designation {
    font-size: calc(0.75rem - 0.1rem);
    margin-bottom: 0;
}

.email-wrapper .sidebar.open {
    left: 0;
}

/* Mail List Container */
.email-wrapper .mail-list-container {
    border-left: 1px solid #e9e9e9;
    padding-left: 0;
    padding-right: 0;
}

.email-wrapper .mail-list-container a {
    text-decoration: none;
}

.email-wrapper .mail-list-container .mail-list {
    border-bottom: 1px solid #e9e9e9;
    display: flex;
    flex-direction: row;
    padding: 10px 15px;
    width: 100%;
}

.email-wrapper .mail-list-container .mail-list:last-child {
    border-bottom: none;
}

.email-wrapper .mail-list-container .mail-list .form-check {
    margin-top: 12px;
    width: 11%;
    min-width: 20px;
}

.email-wrapper .mail-list-container .mail-list .content {
    width: 83%;
    padding-left: 0;
    padding-right: 0;
}

.email-wrapper .mail-list-container .mail-list .content .sender-name {
    font-size: 0.85rem;
    font-weight: 500;
    max-width: 95%;
}

.email-wrapper .mail-list-container .mail-list .content .message_text {
    margin: 0;
    max-width: 50%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.email-wrapper .mail-list-container .mail-list .details {
    width: 5.5%;
}

.email-wrapper .mail-list-container .mail-list .details .date {
    text-align: right;
    margin: auto 15px auto 0;
}

.email-wrapper .mail-list-container .mail-list .details i {
    margin: auto 0;
    color: #ddd;
}

.email-wrapper .mail-list-container .mail-list .details i.favorite {
    color: #fcd539;
}

.email-wrapper .mail-list-container .mail-list.new_mail {
    background: #e6e9ed;
}

.email-wrapper .mail-list-container .mail-list.new_mail .details .date {
    color: #000000;
}

/* Message Content */
.email-wrapper .message-body .sender-details {
    padding: 20px 15px 0;
    border-bottom: 1px solid #e9e9e9;
}

.email-wrapper .message-body .sender-details .details {
    padding-bottom: 0;
}

.email-wrapper .message-body .sender-details .details .msg-subject {
    font-weight: 600;
}

.email-wrapper .message-body .sender-details .details .sender-email {
    margin-bottom: 20px;
    font-weight: bold;
}

.email-wrapper .message-body .message-content {
    padding: 50px 15px;
}

.email-wrapper .message-body .attachments-sections ul {
    list-style: none;
    border-top: 1px solid #e9e9e9;
    padding: 30px 15px 20px;
}

.email-wrapper .message-body .attachments-sections ul li {
    padding: 10px;
    margin-right: 20px;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
}

.email-wrapper .message-body .attachments-sections ul li .thumb {
    display: inline-block;
    margin-right: 10px;
}

.email-wrapper .message-body .attachments-sections ul li .thumb i {
    font-size: 30px;
    margin: 0;
    color: #2e383e;
}

.email-wrapper .message-body .attachments-sections ul li .details p.file-name {
    display: block;
    margin-bottom: 0;
    color: #2e383e;
}

.email-wrapper .message-body .attachments-sections ul li .details .buttons .file-size {
    margin-right: 10px;
    margin-bottom: 0;
    font-size: 13px;
}

.email-wrapper .message-body .attachments-sections ul li .details .buttons a {
    font-size: 13px;
    margin-right: 10px;
}

.email-wrapper .message-body .attachments-sections ul li .details .buttons a:last-child {
    margin-right: 0;
}

/* End of Emails CSS */

.selectable:hover {
    cursor: pointer;
}

.mx-2-5 {
    margin-left: 12px;
    margin-right: 12px;
}

.w-1 {
    width: 1%;
}

.w-5 {
    width: 5%;
}

.custom-table-primary {
    --bs-table-bg: var(--primary-color-light);
    --bs-table-striped-bg: #c5d7f2;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #bacbe6;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #bfd1ec;
    --bs-table-hover-color: #000;
    color: #f0f0f0;
    border-color: var(--primary-color);
}

.search-container {
    background: rgba(14,36,66, 0.3);
    cursor: pointer;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.menu-card {
    border: 1px solid #c0c0c0;
    border-radius: 8px;
}

.menu-icon-container {
    color: var(--primary-color);
    background: rgba(74, 97, 74, 0.1);
}

.tab-content, .tab-pane {
    width: 100%;
    height: 100%;
}

.tab-pane::-webkit-scrollbar {
    width: 6px;
}

.tab-pane::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
}

.tab-pane::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.tab-pane::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.circle-span {
    width: 40px;
    height: 40px;
    display: flex;
    padding: 8px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
    background: rgba(20, 70, 20, 0.2);
}

.cursor-pointer {
    cursor: pointer;
}

.hide-scrollbar {
    overflow: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;  /* Safari and Chrome */
}

.cursor-pointer:hover {
    background: #145236;
}

.pagination .page-item.active .page-link {
    background-color: rgba(14, 36, 66, 0.9);
    border-color: var(--primary-color);
    color: white;
}

.pagination .page-item .page-link {
    color: rgba(74, 97, 74, 0.9);
    box-shadow: none;
}

.min-width-lg {
    min-width: 992px;
}

.text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
}

.text-link:hover {
    text-decoration: underline;
    cursor: pointer;
    color: var(--primary-color-light);
}

.error-container {
    background: rgb(251,218,218) !important;
    border: 2px solid #bb4a4a !important;
    color: #0c63e4 !important;
}

.error-message-box {
    background: rgb(255,240,240);
    border-left: 4px solid #af2c2c;
}

.info-message-box {
    background: rgb(245,251,255);
    border-left: 4px solid #0059b2;
    border-top: 2px solid #dcf0ff;
    border-bottom: 2px solid #dcf0ff;
    border-right: 2px solid #dcf0ff;
}

.accordion-button {
    font-size: 0.8rem !important;
    background: #dddddd !important;
    padding: 0.8rem 1.25rem !important;
}

.accordion-button::after {
    width: 1.05rem !important;
    height: 1.05rem !important;
    background-size: 1.05rem !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color-light) !important;
    background-color: #b9c4d1 !important;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125) !important;
}

.accordion-button:focus {
    border-color: #6e7c6e !important;
    box-shadow: 0 0 0 0.05rem rgba(14,36,66, 1) !important;
    outline: 0 !important;
}

.bg-primary-custom {
    background: var(--primary-color) !important;
    color: white !important;
}

.vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-align: center;
}

.reg-number-box {
    border: 2px solid var(--primary-color);
    background: #eeeeee;
    color: var(--primary-color);
    border-radius: 9px;
    padding: 20px 15px;
    font-size: 1.2rem;
    font-weight: 700;
}
