@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f6f9ff;
    color: #313a43;
}

a {
    color: #001f47;
    text-decoration: none;
}

a:hover {
    color: #011735;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

/*-- Font Weights --*/

.fw_4 {
    font-weight: 400 !important;
}

.fw_5 {
    font-weight: 500 !important;
}

.fw_6 {
    font-weight: 600 !important;
}

.fw_7 {
    font-weight: 700 !important;
}

/*-- Font Sizes --*/

.fs_9 {
    font-size: 9px !important;
}

.fs_10 {
    font-size: 10px !important;
}

.fs_11 {
    font-size: 11px !important;
}

.fs_12 {
    font-size: 12px !important;
}

.fs_13 {
    font-size: 13px !important;
}

.fs_14 {
    font-size: 14px !important;
}

.fs_15 {
    font-size: 15px !important;
}

.fs_16 {
    font-size: 16px !important;
}

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

.fs_20 {
    font-size: 20px !important;
}


img {
    max-width: 100%;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
    margin-top: 74px;
    padding: 20px 30px;
    transition: all 0.3s;
}

/*
@media (max-width: 1199px) {
  #main {
    padding: 20px;
  }
} */

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
    margin-bottom: 10px;
}

.pagetitle h1 {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 600;
    color: #012970;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #012970;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #012970;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# buttons CSS
--------------------------------------------------------------*/

.btn {
    transition: 0.3s ease-in-out;
    min-height: 20px;
    /* min-width: 65px; */
    font-size: 13px;
    line-height: 31px;
    border-radius: 4px;
}

.btn_h {
    min-height: 36px;
    line-height: 26px;
    padding-inline: 25px;
}

.btn:not(.dropdown-toggle):hover {
    transform: translateY(-5px);
}

.btn.btn-secondary {
    background: #001f47;
    border-color: #001f47;
}

.btn.btn-primary {
    background: #ef1e24;
    border-color: #ef1e24;
}

.btn.btn-primary:hover,
.btn:focus,
.btn:focus-visible {
    background: #001f47;
    border-color: #001f47;
}

.form-check-input:checked {
    background-color: #ef1e24;
    border-color: #ef1e24;
}

.form-check-input:focus {
    box-shadow: 0 0 0 .25rem rgb(239 30 36 / 20%);
}

.cursor-pointer {
    cursor: pointer;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
    border-radius: 4px;
    padding: 10px 0;
    animation-name: dropdown-animate;
    animation-duration: 0.2s;
    animation-fill-mode: both;
    border: 0;
    box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
    text-align: center;
    font-size: 15px;
    padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
    color: #444444;
    text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
    text-decoration: none;
}

.dropdown-menu .dropdown-divider {
    color: #a5c5fe;
    margin: 0;
}

.dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 10px 15px;
    transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
    margin-right: 10px;
    font-size: 18px;
    line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f6f9ff;
}

/* @media (min-width: 768px) {
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }
} */

@keyframes dropdown-animate {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

    0% {
        opacity: 0;
    }
}

/* Light Backgrounds */
.bg-primary-light {
    background-color: #cfe2ff;
    border-color: #cfe2ff;
}

.bg-secondary-light {
    background-color: #e2e3e5;
    border-color: #e2e3e5;
}

.bg-success-light {
    background-color: #d1e7dd;
    border-color: #d1e7dd;
}

.bg-danger-light {
    background-color: #f8d7da;
    border-color: #f8d7da;
}

.bg-warning-light {
    background-color: #fff3cd;
    border-color: #fff3cd;
}

.bg-info-light {
    background-color: #cff4fc;
    border-color: #cff4fc;
}

.bg-info-dark {
    background-color: #001f47;
    border-color: #001f47;
}

.bg-dark-light {
    background-color: #d3d3d4;
    border-color: #d3d3d4;
}

.bg-in-progress {
    background-color: #35a6dc;
}

.bg-reschedule {
    background-color: #4835dc;
}

.bg-ra {
    background-color: #5470c6;
}

.badge {
    padding-top: 5px;
    border-radius: 3px;
}

/* Card */
.card {
    margin-bottom: 30px;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.card.h-100 {
    margin-bottom: 0;
}

.card-header,
.card-footer {
    border-color: #ebeef4;
    background-color: #fff;
    color: #798eb3;
    padding: 15px;
}

.card-header {
    color: #0b2447;
    background: #f1f5fb;
    padding: 10px 16px;
    border-radius: 12px;
/*    margin-bottom: 14px;*/
}

.register .card-header {
    border-color: #ebeef4;
    background-color: #fff;
    color: #798eb3;
    padding: 15px;
}


.card-title {
    padding: 20px 0 15px 0;
    font-size: 18px;
    font-weight: 500;
    color: #012970;
    font-family: 'Montserrat', sans-serif;
}

.card-title span {
    color: #899bbd;
    font-size: 14px;
    font-weight: 400;
}

.card-body {
    padding: 0 20px 20px 20px;
}

.card-img-overlay {
    background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
}

/* Close Button */
.btn-close {
    background-size: 25%;
}

.btn-close:focus {
    outline: 0;
    box-shadow: none;
}

/* Accordion */
.accordion-item {
    border: 1px solid #ebeef4;
}

.accordion-button:focus {
    outline: 0;
    box-shadow: none;
}

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

.accordion-flush .accordion-button {
    padding: 15px 0;
    background: none;
    border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
    box-shadow: none;
    color: #4154f1;
}

.accordion-flush .accordion-body {
    padding: 0 0 15px 0;
    color: #3e4f6f;
    font-size: 15px;
}

/* Breadcrumbs */
.breadcrumb {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #899bbd;
    font-weight: 600;
}

.breadcrumb a {
    color: #899bbd;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: #51678f;
}

.breadcrumb .breadcrumb-item::before {
    color: #899bbd;
}

.breadcrumb .active {
    color: #ed1c24;
    font-weight: 600;
}

/* Bordered Tabs */
.nav-tabs-bordered {
    border-bottom: 2px solid #ebeef4;
}

.nav-tabs-bordered .nav-link {
    margin-bottom: -2px;
    border: none;
    color: #2c384e;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
    color: #4154f1;
}

.nav-tabs-bordered .nav-link.active {
    background-color: #fff;
    color: #4154f1;
    border-bottom: 2px solid #4154f1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
    line-height: 1;
    width: 100%;
    max-width: 200px;
}

.logo svg {
    width: 100%;
}

.logo_container {
    width: 100%;
    max-width: 296px;
}

.header .logo svg {
    display: inline-block;
    max-width: 185px;
}

/* @media (min-width: 1200px) {
  .logo {
    width: 280px;
  }
} */

.logo img {
    max-height: 26px;
    margin-right: 6px;
}

.logo span {
    font-size: 26px;
    font-weight: 700;
    color: #012970;
    font-family: 'Poppins', sans-serif;
}

.header {
    transition: all 0.5s;
    z-index: 997;
    height: 74px;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
    background-color: #fff;
    padding-left: 20px;
    /* Toggle Sidebar Button */
    /* Search Bar */
}

.header .toggle-sidebar-btn {
    font-size: 32px;
    padding-left: 0px;
    margin-right: 15px;
    cursor: pointer;
    color: #012970;
    order: -1;
}

.header .toggle-sidebar-btn {
    background: #001f47;
    color: #fff;
    padding: 0px;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-bar {
    min-width: 360px;
    padding: 0 20px;
}

/* @media (max-width: 1199px) {
  .header .search-bar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
    background: white;
    z-index: 9999;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
  }

  .header .search-bar-show {
    top: 60px;
    visibility: visible;
    opacity: 1;
  }
} */

.search-form {
    width: 100%;
}

.search-form input {
    border: 0;
    font-size: 14px;
    color: #012970;
    border: 1px solid rgba(1, 41, 112, 0.2);
    padding: 7px 38px 7px 8px;
    border-radius: 3px;
    transition: 0.3s;
    width: 100%;
}

.header .search-form input:focus,
.header .search-form input:hover {
    outline: none;
    box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
    border: 1px solid rgba(1, 41, 112, 0.3);
}

.search-form button {
    border: 0;
    padding: 0;
    margin-left: -30px;
    background: none;
}

.search-form button i {
    color: #012970;
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
    list-style: none;
}

.header-nav>ul {
    margin: 0;
    padding: 0;
}

.header-nav .nav-icon {
    font-size: 22px;
    color: #012970;
    margin-right: 25px;
    position: relative;
}

.header-nav .nav-profile {
    color: #012970;
}

.header-nav .nav-profile img {
    max-height: 50px;
}

.header-nav .nav-profile span {
    font-size: 14px;
    font-weight: 600;
}

.header-nav .badge-number {
    position: absolute;
    inset: -2px -5px auto auto;
    font-weight: normal;
    font-size: 12px;
    padding: 3px 6px;
}

.header-nav .notifications {
    inset: 8px -15px auto auto !important;
}

.header-nav .notifications .notification-item {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    transition: 0.3s;
}

.header-nav .notifications .notification-item i {
    margin: 0 20px 0 10px;
    font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
    font-size: 13px;
    margin-bottom: 3px;
    color: #919191;
}

.header-nav .notifications .notification-item:hover {
    background-color: #f6f9ff;
}

.header-nav .messages {
    inset: 8px -15px auto auto !important;
}

.header-nav .messages .message-item {
    padding: 15px 10px;
    transition: 0.3s;
}

.header-nav .messages .message-item a {
    display: flex;
}

.header-nav .messages .message-item img {
    margin: 0 20px 0 10px;
    max-height: 40px;
}

.header-nav .messages .message-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #444444;
}

.header-nav .messages .message-item p {
    font-size: 13px;
    margin-bottom: 3px;
    color: #919191;
}

.header-nav .messages .message-item:hover {
    background-color: #f6f9ff;
}

.header-nav .profile {
    min-width: 240px;
    padding-bottom: 0;
    top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 600;
    color: #444444;
}

.header-nav .profile .dropdown-header span {
    font-size: 14px;
}

.header-nav .profile .dropdown-item {
    font-size: 14px;
    padding: 10px 15px;
    transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
    margin-right: 10px;
    font-size: 18px;
    line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
    background-color: #f6f9ff;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
    position: fixed;
    top: 74px;
    left: 0;
    bottom: 0;
    width: 270px;
    z-index: 996;
    transition: all 0.3s;
    padding: 20px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #aab7cf transparent;
    box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
    background-color: #fff;
}

/* @media (max-width: 1199px) {
  .sidebar {
    left: -300px;
  }
} */

.sidebar::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: #aab7cf;
}

/* @media (min-width: 1200px) {

  #main,
  #footer {
    margin-left: 300px;
  }
}

@media (max-width: 1199px) {
  .toggle-sidebar .sidebar {
    left: 0;
  }
}

@media (min-width: 1200px) {

  .toggle-sidebar #main,
  .toggle-sidebar #footer {
    margin-left: 0;
  }

  .toggle-sidebar .sidebar {
    left: -300px;
  }
} */

.sidebar-nav {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sidebar-nav li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sidebar-nav .nav-item {
    margin-bottom: 5px;
}

.sidebar-nav .nav-heading {
    font-size: 11px;
    text-transform: uppercase;
    color: #899bbd;
    font-weight: 600;
    margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #899bbd;
    transition: 0.3;
    padding: 10px 15px;
    border-radius: 4px;
}

.sidebar-nav .nav-link i {
    font-size: 16px;
    margin-right: 10px;
    color: #899bbd;
}

.sidebar-nav .nav-link.collapsed {
    color: #899bbd;
    background: #fff;
    /* background: transparent; */
}

.sidebar-nav .nav-link.collapsed i {
    color: #899bbd;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
    /* color: #4154f1; */
    color: #001f47;
    background: #f6f9ff;
}

.sidebar-nav .nav-link:hover i,
.sidebar-nav .nav-link.active i {
    /* color: #4154f1; */
    color: #001f47;
}

.sidebar-nav .nav-link .bi-chevron-down {
    margin-right: 0;
    transition: transform 0.2s ease-in-out;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
    transform: rotate(180deg);
}

.sidebar-nav .nav-content {
    padding: 5px 0 0 0;
    margin: 0;
    list-style: none;
}

.sidebar-nav .nav-content a {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #899bbd;
    transition: 0.3;
    padding: 10px 0 10px 40px;
    transition: 0.3s;
}

.sidebar-nav .nav-content a i {
    font-size: 6px;
    margin-right: 8px;
    line-height: 0;
    border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
    color: #001f47;
}

.sidebar-nav .nav-content a.active i {
    background-color: #001f47;
}

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
.dashboard .filter {
    position: absolute;
    right: 0px;
    top: 15px;
}

.dashboard .filter .icon {
    color: #aab7cf;
    padding-right: 20px;
    padding-bottom: 5px;
    transition: 0.3s;
    font-size: 16px;
}

.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
    color: #4154f1;
}

.dashboard .filter .dropdown-header {
    padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #aab7cf;
    margin-bottom: 0;
    padding: 0;
}

.dashboard .filter .dropdown-item {
    padding: 8px 15px;
}

#reportrange {
    border-radius: 4px;
}

#reportrange span {
    font-size: 14px;
}

.daterangepicker.opensright .ranges li.active,
.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: #012970;
}

/* Info Cards */
.dashboard .info-card {
    padding-bottom: 10px;
}

.dashboard .info-card h6 {
    font-size: 28px;
    color: #012970;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.dashboard .card-icon {
    font-size: 32px;
    line-height: 0;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    flex-grow: 0;
}

.dashboard .sales-card .card-icon {
    color: #4154f1;
    background: #f6f6fe;
}

.dashboard .revenue-card .card-icon {
    color: #2eca6a;
    background: #e0f8e9;
}

.dashboard .customers-card .card-icon {
    color: #ff771d;
    background: #ffecdf;
}

/* Activity */
.dashboard .activity {
    font-size: 14px;
}

.dashboard .activity .activity-item .activite-label {
    color: #888;
    position: relative;
    flex-shrink: 0;
    flex-grow: 0;
    min-width: 64px;
}

.dashboard .activity .activity-item .activite-label::before {
    content: "";
    position: absolute;
    right: -11px;
    width: 4px;
    top: 0;
    bottom: 0;
    background-color: #eceefe;
}

.dashboard .activity .activity-item .activity-badge {
    margin-top: 3px;
    z-index: 1;
    font-size: 11px;
    line-height: 0;
    border-radius: 50%;
    flex-shrink: 0;
    border: 3px solid #fff;
    flex-grow: 0;
}

.dashboard .activity .activity-item .activity-content {
    padding-left: 10px;
    padding-bottom: 20px;
}

.dashboard .activity .activity-item:first-child .activite-label::before {
    top: 5px;
}

.dashboard .activity .activity-item:last-child .activity-content {
    padding-bottom: 0;
}

/* Recent Sales */
.dashboard .recent-sales {
    font-size: 14px;
}

.dashboard .recent-sales .table thead {
    background: #f6f6fe;
}

/* .dashboard .recent-sales .table thead th {
  border: 0;
} */

.dashboard .recent-sales .dataTable-top {
    padding: 0 0 10px 0;
}

.dashboard .recent-sales .dataTable-bottom {
    padding: 10px 0 0 0;
}

/* Top Selling */
.dashboard .top-selling {
    font-size: 14px;
}

.dashboard .top-selling .table thead {
    background: #f6f6fe;
}

.dashboard .top-selling .table thead th {
    border: 0;
}

.dashboard .top-selling .table tbody td {
    vertical-align: middle;
}

.dashboard .top-selling img {
    border-radius: 5px;
    max-width: 60px;
}

/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/
.iconslist {
    display: grid;
    max-width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    padding-top: 15px;
}

.iconslist .icon {
    background-color: #fff;
    border-radius: 0.25rem;
    text-align: center;
    color: #012970;
    padding: 15px 0;
}

.iconslist i {
    margin: 0.25rem;
    font-size: 2.5rem;
}

.iconslist .label {
    font-family: var(--bs-font-monospace);
    display: inline-block;
    width: 100%;
    overflow: hidden;
    padding: 0.25rem;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #666;
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
    padding: 30px;
}

.error-404 h1 {
    font-size: 180px;
    font-weight: 700;
    color: #4154f1;
    margin-bottom: 0;
    line-height: 150px;
}

.error-404 h2 {
    font-size: 24px;
    font-weight: 700;
    color: #012970;
    margin-bottom: 30px;
}

.error-404 .btn {
    background: #51678f;
    color: #fff;
    padding: 8px 30px;
}

.error-404 .btn:hover {
    background: #3e4f6f;
}

/* @media (min-width: 992px) {
  .error-404 img {
    max-width: 50%;
  }
} */

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    padding: 20px 0;
    font-size: 14px;
    transition: all 0.3s;
    border-top: 1px solid #cddfff;
}

.footer .copyright {
    text-align: center;
    color: #012970;
}

.footer .credits {
    padding-top: 5px;
    text-align: center;
    font-size: 13px;
    color: #012970;
}

/*--------------------------------------------------------------
# Input
--------------------------------------------------------------*/
.form-control,
.form_input_d .input-group>.form-control,
.datatable-input,
.datatable-input:focus-visible,
.form_input_d .input-group>.form-floating,
.form_input_d .input-group>.form-select,
.form_input_d .form-control,
.form_input_d .form-select {
    width: 100% !important;
    border: 0 !important;
    border-radius: 0;
    font-size: 14px;
    outline: none;
    box-shadow: none !important;
    background: #fff;
    padding: 12px 15px !important;
    min-height: 46px;
}

.form-control,
.form-control:focus,
.form-control:focus-visible,
.datatable-input,
.datatable-input:focus-visible,
.form_input_d .input-group>.form-control,
.form_input_d .input-group>.form-floating,
.form_input_d .input-group>.form-select,
.form_input_d .form-control,
.form_input_d .form-select {
    background: #ecf4ff;
}

.eye_icon {
    position: absolute;
    right: 12px;
    transform: translate(0, -50%);
    top: 50%;
}

.password_box {
    position: relative;
}

.btn_group {
    column-gap: 10px;
    row-gap: 10px;
}

.heading_clr {
    color: #001f47;
}

.entry_select {
    min-height: 36px;
    min-width: 46px;
    font-size: 14px;
    border-color: #ccd4e2;
    border-radius: 4px;
}

/*-- Pagination CSS --*/

.pagination .page-item .page-link {
    font-size: 14px;
}

.pagination .page-item.active .page-link {
    background: #012970;
}



/*------------ Stepper Form CSS -----------*/

.step {
    display: none;
}

.step.active {
    display: block;
}

.stepper {
    display: flex;
    /* justify-content: space-around; */
    column-gap: 20px;
    row-gap: 20px;
    margin-bottom: 20px;
}

.form-label {
    font-size: 14px;
}

.stepper .stepper_count {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    color: #cacaca;
    width: 100%;
    max-width: 20%;
    font-size: 16px;
    /* justify-content: center; */
    column-gap: 10px;
    border-bottom: 1px solid #cacaca;
    padding-bottom: 8px;
}

.stepper .stepper_count.active {
    color: #001f47;
    font-weight: bold;
    border-color: var(--secondary-color);
}

.steper_header img {
    width: 120px;
    margin-right: 24px;
}

.stepper .stepper_count .spep-number {
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    border: 3px solid #ececec;
    border-radius: 50%;
}

.stepper .stepper_count.active .spep-number {
    background-color: var(--secondary-color);
    /* color: #001f47; */
    color: #ed1c24;
    border-color: var(--secondary-color);
}

.stepper_body .form_label {
    display: flex;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
}

.bootstrap-select .dropdown-toggle,
.bootstrap-select .dropdown-toggle:hover,
.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select .dropdown-toggle:focus-visible,
.bootstrap-select .dropdown-toggle:active {
    background: #ecf4ff;
    border-radius: 0;
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    color: #212529;
    border: 0;
    outline: none !important;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%;
}

.dropdown-item.active,
.dropdown-menu .dropdown-item.active:hover {
    background: #012970;
}


.line_behind {
    /* background: #fff; */
    position: relative;
    overflow: hidden;
}

.line_behind::after {
    content: "";
    width: 100%;
    height: 1px;
    margin-left: 9px;
    background: #ededed;
    display: inline-block;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}


/*-- Pagination CSS --*/
.bottom_pagination {
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bottom_pagination .datatable-pagination li.datatable-hidden {
    visibility: hidden;
}

.datatable-pagination .datatable-disabled button {
    pointer-events: none;
    cursor: default;
}

.datatable-pagination .datatable-active a,
.datatable-pagination .datatable-active a:focus,
.datatable-pagination .datatable-active a:hover,
.datatable-pagination .datatable-active button,
.datatable-pagination .datatable-active button:focus,
.datatable-pagination .datatable-active button:hover {
    background-color: #d9d9d9;
    cursor: default;
}

.datatable-pagination .datatable-disabled a,
.datatable-pagination .datatable-disabled a:focus,
.datatable-pagination .datatable-disabled a:hover,
.datatable-pagination .datatable-disabled button,
.datatable-pagination .datatable-disabled button:focus,
.datatable-pagination .datatable-disabled button:hover {
    cursor: not-allowed;
    opacity: 0.4;
}

.datatable-table th button,
.datatable-pagination-list button {
    color: inherit;
    border: 0;
    background-color: inherit;
    cursor: pointer;
    text-align: inherit;
    font-weight: inherit;
    font-size: inherit;
}

.datatable-pagination a,
.datatable-pagination button {
    border: 1px solid transparent;
    float: left;
    margin-left: 2px;
    padding: 6px 12px;
    position: relative;
    text-decoration: none;
    color: #333;
    cursor: pointer;
}

.datatable-pagination li {
    list-style: none;
    float: left;
}

.datatable-pagination a:hover,
.datatable-pagination button:hover {
    background-color: #d9d9d9;
}

.datatable-dropdown {
    display: none;
}

/*---- Job Information page CSS ----*/

.jd_title {
    padding-right: 10px;
}

.jd_title:first-child {
    max-width: 180px;
}

.jd_column {
    margin-bottom: 1rem;
}

.card-header.bg-info-dark {
    background-color: #001f47;
    border-color: #001f47;
}

.datatable-table>thead>tr>th,
.datatable-table>tbody>tr>td a,
.datatable-table>tbody>tr>td {
    font-size: 14px;
}

.datatable-table>thead>tr>th {
    border: 1px solid #d9d9d9;
    background: #001f47;
    color: #fff;
}

.datatable-table>thead>tr>th button {
    padding: 0;
}

.jd_column:nth-child(odd):last-child,
.jd_column:nth-child(even):last-child {
    margin-bottom: 0;
}

/*.jd_column input.form-control,
.jd_column .bootstrap-select .dropdown-toggle {
    min-height: 30px;
    padding: 0 10px !important;
    height: 30px;
}
*/
/* .edit_select .btn.dropdown-toggle.btn-light {
  background: #dc3545;
  height: 32px;
  color: #fff;
  min-height: 32px;
  border-radius: 4px;
}

.edit_select .btn.dropdown-toggle.btn-light .filter-option-inner {
  line-height: normal;
} */

.bootstrap-select .dropdown-toggle {
    min-width: 100%;
}

.image_attachment img {
    object-fit: cover;
}

.image_attachment {
    max-width: 50px;
    border-radius: 5px;
    overflow: hidden;
}

.fw_6 {
    font-weight: 600;
}

.fw_4 {
    font-weight: 400;
}

.bg-info-dark {
    background-color: #17a2b8;
}

.line_behind {
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 5px;
}

.remove-button {
    border: none;
    background-color: transparent;
    color: #dc3545;
    font-size: 1.5rem;
    margin-top: 12px;
    cursor: pointer;
    transition: color 0.2s;
}


.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.input-group span {
    flex: 0 0 120px;
}

.input-group input {
    flex: 1;
    padding: 5px 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.input-group .remove-button {
    flex: 0 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.add-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

.add-link:hover {
    text-decoration: underline;
}

.line_behind {
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 5px;
}

.summary-section {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

.summary-item span {
    flex: 1;
}

.total {
    border-top: 1px solid #dee2e6;
    padding-top: 5px;
    font-weight: bold;
}

.center-button {
    display: flex;
    justify-content: center;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 14px;
    font-weight: 600;
}

.form-control {
    padding: 0.375rem 0.75rem;
    font-size: 14px;
}

.input-group.mb-3 {
    flex-wrap: nowrap;
}

#labour-section .labour-item .form-label {
    margin-right: 10px;
}

#parts-section .parts-item .row>.col-lg-6 {
    padding-right: 10px;
}

.btn-submitted {
    margin-right: 10px;
}

.rja-details table {
    width: 100%;
    border-collapse: collapse;
}

.rja-details th,
td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.rja-details th {
    background-color: #f2f2f2;
}

.rja-details tr:nth-child(even) {
    background-color: #f9f9f9;
}

.rja-details tr:hover {
    background-color: #ddd;
}

.rja-details .center-button {
    text-align: center;
    margin-top: 20px;
}

#success-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 80px;
}

.modal-content {
    background-color: #fefefe;
    padding: 20px 40px 7px 71px;
    border: 1px solid #888;
    width: 100%;
    color: #198754;
    font-weight: bold;
    animation: dingdong 0.5s ease;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

@keyframes dingdong {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }

}

.currencyinput {
    position: relative;
}

.currencyinput .doller {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 10px;
    font-weight: 400;
    font-size: 14px;
}

.email-input-group {
    display: flex !important;
    align-items: center !important;
}

.email-input {
    flex: 1 !important;
}

.email-action-button {
    margin-left: 10px !important;
}

#error {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: serif;
}

.error-container {
    margin-top: -30%;
    text-align: center;
}

.error-logo {
    margin-left: 18%;
    text-align: center;
    width: 58%;
    margin-bottom: 20px;
}

.error-message {
    font-size: 1.2em;
    color: #333;
}

.error-message p {
    margin: 0;
}

.file-upload {
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
}

.file-upload-label {
    cursor: pointer;
    color: black;
    display: flex;
    align-items: center;
}

.file-upload-label img {
    margin-right: 5px;
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload-label span {
    text-decoration: underline;
    color: blue;
    font-size: 14px;
}

.file-upload.cstm_fileUpload {
    width: 100%;
    height: 100%;
    min-height: 124px;
    padding: 0px;
    justify-content: center;
    border: 2px dashed #bdd7ff;
    border-radius: 32px;
    min-width: 124px;
    max-width: 124px;
    max-height: 124px;
}

.file-upload.cstm_fileUpload .file-upload-label {
    justify-content: center;
    align-items: center;
    padding-top: 10%;
}

.cstm_fileUpload .file-upload-label span {
    color: #606060;
    text-decoration: none;
    font-size: 12px;
    position: relative;

}

.cstm_fileUpload .file-upload-label span::before {
    content: "";
    width: 40px;
    height: 7px;
    position: absolute;
    background: #bdd7ff;
    top: -20px;
    transform: translate(-50%, -50%);
    left: 50%;
    border-radius: 3px;
}

.cstm_fileUpload .file-upload-label span::after {
    content: "";
    width: 40px;
    height: 7px;
    position: absolute;
    background: #bdd7ff;
    top: -20px;
    transform: translate(-50%, -50%) rotate(90deg);
    left: 50%;
    border-radius: 3px;
}

.attachmets_wrraper {
    display: flex;
    align-items: flex-start;
}

.attachments_add {
    max-width: 130px;
    width: 100%;
    margin-right: 20px;
}

.previwe_items {
    display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
}

.previwe_items .previwe_box {
    max-width: 145px;
    max-height: 125px;
    min-width: 140px;
    position: relative;
    overflow: hidden;
    min-height: 125px;
}

.zoomed-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.zoomed-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.previwe_items .previwe_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 33px;
    cursor: pointer;
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 10px;
    width: 24px;
    display: inline-block;
    height: 24px;
    color: black;
    border-radius: 50%;
}

.previwe_items .previwe_box .close_btn,.trash-btn {
    position: absolute;
    right: 20px;
    top: 10px;
    width: 24px;
    display: inline-block;
    height: 24px;
    background: #cdcdcd;
    border-radius: 50%;
}

.previwe_items .previwe_box .close_btn::before {
    content: "";
    width: 15px;
    height: 2px;
    background: #818181;
    position: absolute;
    left: 5px;
    top: 11px;
    display: inline-block;
    transform: rotate(45deg);
}

.previwe_items .previwe_box .close_btn::after {
    content: "";
    width: 15px;
    height: 2px;
    background: #818181;
    position: absolute;
    left: 5px;
    top: 11px;
    display: inline-block;
    transform: rotate(-49deg);
}

.zoomed-overlay .close_btn {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 24px;
    display: inline-block;
    height: 24px;
    background: #cdcdcd;
    border-radius: 50%;
}

.zoomed-overlay .close_btn::before {
    content: "";
    width: 15px;
    height: 2px;
    background: #818181;
    position: absolute;
    left: 5px;
    top: 11px;
    display: inline-block;
    transform: rotate(45deg);
}

.zoomed-overlay .close_btn::after {
    content: "";
    width: 15px;
    height: 2px;
    background: #818181;
    position: absolute;
    left: 5px;
    top: 11px;
    display: inline-block;
    transform: rotate(-49deg);
}

.upload-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.upload-progress {
    width: 100%;
    padding: 10px 0;
}

.progress-bar-container {
    width: 100%;
    height: 25px;  /* Increased height */
    background-color: #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: #4CAF50;
    border-radius: 12px;
    transition: width 0.3s ease;
    color: white;
    text-align: center;
    font-size: 14px;  /* Increased font size */
    line-height: 25px; /* Matched to container height */
}

.uploading-container {
    position: absolute;
    display: block;
    margin-top: 50px;

}

@media screen and (min-width: 1200px) {
    .uploading-container {
        width: 6%;
        max-width: 8%;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .uploading-container {
        width: 11%;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .uploading-container {
        width: 8%;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .uploading-container {
        width: 8%;
    }
}

.empty-for-mobile {
    display: none;
}

@media screen and (max-width: 575px) {
    .previwe_items {
         gap: 10px;
         display: grid;
         grid-template-columns: 1fr 1fr;
         grid-template-rows: auto auto;
    }

/*    .empty-for-mobile {
        display: block;
    }*/

    .attachments_add {
        position: relative;
        max-width: 145px;
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
        align-self: flex-start;
    }

    .uploading-container {
        width: 100%;
        padding: 0 10px;

    }

    .file-upload.cstm_fileUpload {
        min-height: 125px;
        min-width: 125px;
        max-width: 125px;
        max-height: 125px;
    }

    .previwe_items .previwe_box {
        max-height: 125px;
        min-height: 125px;
        width: 100%;
        max-width: 100%;
        margin-top: 0;
    }

    .previwe_items .previwe_box img {
         max-width: unset;
    }

    .previwe_items .previwe_box .close_btn, .trash-btn {
        right: 23px;
    }

    .attachmets_wrraper {
        flex-direction: column;
        align-items: stretch;
    }
}

.confirmation-dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.confirmation-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.confirmation-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.btn-confirm {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-cancel {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-confirm:hover {
    background-color: #c82333;
}

.btn-cancel:hover {
    background-color: #5a6268;
}

#applianceModalCenter .previwe_box {
    max-height: 100px;
    min-height: 100px;
    max-width: 120px;
    min-width: 120px;
}

[data-trix-button-group="file-tools"],
[data-trix-action="link"],
[data-trix-attribute="code"]
{
    display: none !important;
}


.sidebar {
    position: fixed;
    top: 74px; /* Adjust according to your header */
    left: 0;
    bottom: 0;
    width: 270px;
    z-index: 996;
    
    overflow-y: auto; /* vertical scroll ON */
    overflow-x: hidden; /* no horizontal scroll */
  
    background-color: #fff;
    padding: 20px 0;
    
    box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
    transition: all 0.3s;
  
    /* Scrollbar custom */
    scrollbar-width: thin; 
    scrollbar-color: #aab7cf transparent;
  }
  
  .sidebar::-webkit-scrollbar {
    width: 6px;
  }
  
  .sidebar::-webkit-scrollbar-thumb {
    background-color: #aab7cf;
    border-radius: 3px;
  }
  
  .sidebar::-webkit-scrollbar-track {
    background: transparent;
  }
  
  
  
  
  /* .toggle-sidebar.no-scroll .main {
    transform: translateX(209px) !important;
    max-width: calc(100% - 262px);
  }
  
  body .main {
    transform: translateX(9px) !important;
    max-width: calc(100% - 82px);
  } */
  
  /* Style for the sidebar menu item */
  .nav-item {
    position: relative;
    padding: 10px 15px;
    cursor: pointer;
  }
  
  /* Tooltip styling */
  .tooltipbar_right {
    position: absolute;
    left: 100%;
    right: 0 !important;
    top: 0;
/*    transform: translateY(-50%);*/
    background-color: #fff;
    color: #001f47;
    padding: 8px 15px;
    border-radius: 5px;
    display: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2147483647 !important;
    width: 230px;
  }
  /* Show tooltip on hover */
  .nav-item:hover .tooltipbar_right {
    display: block; /* Show tooltip when hovering */
  }
   /* .sidebar .btn:not(.dropdown-toggle):hover {
    transform: none !important;
  } */
  /* Optional: Add a little arrow to the tooltip */
  .tooltipbar_right::after {
    /* content: ''; */
    position: absolute;
    top: 0;
    right: -8px; /* Arrow will be outside the tooltip */
/*    transform: translateY(-50%);*/
    border-left: 8px solid #001f47; /* Arrow color matches tooltip background */
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }
  
  
  /* Tooltip styling */
  .tooltipbar_right2 {
/*    right: -231px !important;*/
    /* top: 277% !important; */
  }
  .tooltipbar_right3 {
    right: -231px !important;
    /* top: 170% !important; */
  }
  
  
  .sidebar,
  .sidebar-nav,
  .nav {
    overflow: visible !important;
  }
  .setting_ul_div {
    margin-left: 0px;
    padding-left: 0px;
  }
  .setting_ul_div li > a  {
    /* color: #001f47 !important; */
  }
  .setting_ul_div li > a span  {
    /* color: #001f47 !important; */
    display: block !important;
  
    padding: 6px 6px;
  }
  .setting_ul_div .bi-circle::before {
  display: none;
  }
  
  .bi-chevron-right::before {
    content: "\f285";
    margin-left: 5px;
  }
  
  /* .sidebar a:hover {
    color: #011735;
    text-decoration: none;
  }
  .sidebar a:active {
    color: #dc3545 !important;
    text-decoration: none;
  }
  .setting_ul_div li > a:hover {
    color: #dc3545 !important;
  }
  .setting_ul_div li > a:active {
    color: #dc3545 !important;
  } */
  
  
/*  .sidebar-nav .nav-link:hover, .sidebar-nav a.active {
    color: #dc3545 !important;
  }*/
  
  
  /*--------------------------------------------------------------
  # Sidebar
  --------------------------------------------------------------*/
  /* Sidebar width when open */
  /* Default layout */
  
  
  
  
  
  
  
  
  .sidebar {
    position: fixed;
    top: 74px;
    left: 0;
    left: -300px;
    bottom: 0;
    width: 270px;
    z-index: 996;
    transition: all 0.3s;
    padding: 20px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #aab7cf transparent;
    box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
    background-color: #fff;
  }
  
  .toggle-sidebar .sidebar-overlay {
      opacity: 1;
      visibility: visible;
  }
  
  .sidebar-overlay {
      position: fixed;
      top: 74px;
      left: 0;
      width: 100%;
      height: 100%; 
       background: rgba(0, 0, 0, 0.8); 
      z-index: 99;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  
   .no-scroll {
      overflow: hidden;
      height: 100vh;
  } 
  
  
  .hamburger_bar {
      display: inline-block;
      height: 2px;
      background: #fff;
      width: 25px;
      position: relative;
      transition: 0.3s ease-in-out;
  }
  
  .hamburger_bar::before {
      content: "";
      display: inline-block;
      width: 100%;
      height: 2px;
      background: #fff;
      position: absolute;
      top: -8px;
      transition: 0.3s ease-in-out;
  }
  
  .hamburger_bar::after {
      content: "";
      display: inline-block;
      width: 100%;
      height: 2px;
      background: #fff;
      position: absolute;
      bottom: -8px;
      transition: 0.3s ease-in-out;
  }
  
  
  .active .hamburger_bar {background: transparent;}
  
  .active .hamburger_bar::before {
      transform: rotate(45deg) translate(6px, 6px );
  }
  
  .active .hamburger_bar::after {
      transform: rotate(-45deg) translate(5px, -6px );
  }
  
  
  /* @media (max-width: 1199px) {
    .sidebar {
      left: -300px;
    }
  } */
  
  .sidebar::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #fff;
  }
  
  .sidebar::-webkit-scrollbar-thumb {
    background-color: #aab7cf;
  }
  
  .sidebar-nav {
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .sidebar-nav li {
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .sidebar-nav .nav-item {
    margin-bottom: 5px;
  }
  
  .sidebar-nav .nav-heading {
    font-size: 11px;
    text-transform: uppercase;
    color: #899bbd;
    font-weight: 600;
    margin: 10px 0 5px 15px;
  }
  
  .sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #899bbd;
    transition: 0.3;
    padding: 10px 15px;
    border-radius: 4px;
  }
  
  .sidebar-nav .nav-link i {
    font-size: 16px;
    margin-right: 10px;
    color: #899bbd;
  }
  
  .sidebar-nav .nav-link.collapsed {
    color: #899bbd;
    background: #fff;
    /* background: transparent; */
  }
  
  .sidebar-nav .nav-link.collapsed i {
    color: #899bbd;
  }
  
  .sidebar-nav .nav-link:hover,
  .sidebar-nav .nav-link.active {
    /* color: #4154f1; f6f9ff*/
    color: #001f47;
    background: #e8eefb; 
  }
  
  .sidebar-nav .nav-link:hover i,
  .sidebar-nav .nav-link.active i {
    /* color: #4154f1; */
    color: #001f47;
  }
  
  .sidebar-nav .nav-link .bi-chevron-down {
    margin-right: 0;
    transition: transform 0.2s ease-in-out;
  }
  
  .sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
    transform: rotate(180deg);
    position: unset;
  }
  
  .sidebar-nav .nav-content {
    padding: 5px 0 0 0;
    margin: 0;
    list-style: none;
  }
  
  .sidebar-nav .nav-content a {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #899bbd;
    transition: 0.3;
    padding: 10px 0 10px 40px;
    transition: 0.3s;
  }
  
  .sidebar-nav .nav-content a i {
    font-size: 6px;
    margin-right: 8px;
    line-height: 0;
    border-radius: 50%;
  }
  
  .sidebar-nav .nav-content a:hover,
  .sidebar-nav .nav-content a.active {
    color: #001f47;
  }
  
  .sidebar-nav .nav-content a.active i {
    background-color: #001f47;
  }
  
  .toltip_wrap {
    position: relative;
  }
  
  .tooltip {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    margin-left: 10px;
    background-color: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 10;
  }
  
  .toltip_wrap:hover .tooltip {
    opacity: 1;
    visibility: visible;
  }


  /*-- New design Migration CSS --*/
.dashboard .card-body select, .dashboard .card-body input.form-control, .dashboard .card-body textarea, .form-control-plaintext  {
    width: 100%;
    padding: 14px 16px !important;
    font-size: 15px;
    border-radius: 12px;
    border: 1px solid rgb(213, 216, 220) !important;
    color: rgb(17, 17, 17);
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 2px !important;
    transition: border-color 0.2s, outline 0.2s;
    outline: none;
}

.dashboard .card-body input.form-control, .dashboard .card-body textarea, .form-control-plaintext {
    background: #fff;
}

.dashboard select:focus, .dashboard input:focus.form-control, .dashboard textarea:focus {
    outline: 2px solid red;
}

/* Smooth transition for icon */
.nav-link.dropdown_box .bi-chevron-right {
  transition: transform 0.3s ease;
}

/* Rotate when expanded (aria-expanded=true) */
.nav-link[aria-expanded="true"] .bi-chevron-right {
  transform: rotate(90deg); /* or 180deg if preferred */
}

.collapseble_box .setting_ul_div {
    padding: 10px 10px 10px 5px;
}

.toggle-sidebar .collapseble_box .setting_ul_div {
    padding: 10px 20px 10px 30px;
}

.collapseble_box ul > li > a:hover {
    background: #e8eefb;
    /* width: 100%; */
    /* height: 30px; */
    display: block;
    color: #000 !important;
    padding: 0px 10px !important;
}

.collapseble_box ul > li > a {
    padding: 0px 10px !important;
    display: block;
}
.collapseble_box .setting_ul_div li a.active, .collapseble_box .setting_ul_div li a:hover {
    color: #001f47;
}
.collapseble_box .setting_ul_div li a {
/*    color:#001f47;*/
    color: #899bbd;
}

/*.toggle-sidebar .collapseble_box .setting_ul_div li a {
    color: #899bbd;
}*/

.toggle-sidebar .tooltipbar_right {
    position: unset;
    box-shadow: none;
    padding: 0;
    width: 100%;
    transform: none;
}

.toggle-sidebar .tooltipbar_right.show {
    display: block;
}

.has_dropdown:hover .collapseble_box.collapse {
    display: block;
}

.toggle-sidebar .collapseble_box.collapse.collapse:not(.show) {
    display: none;
}

.has_dropdown i.bi.bi-chevron-right {
    position: absolute;
    right: 0;
}

.sidebar-nav .nav-link {
    position: relative;
    min-width: 52px;
}

.primary_title, .dashboard .card-title {
    position: sticky;
    top: 0;
    z-index: 9;
    border-radius: 12px;
    box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.06);
    font-size: 20px;
    font-weight: 700;
    padding: 12px 32px;
    margin: 20px auto 0px auto;
    max-width: 100%;
    text-align: center;
    background-image: Linear-gradient(to right, #cfe2ff, #e8f1ff);
    transition: all 0.4s ease;
    margin-bottom: 15px;
}

.secondary_title {
    font-weight: 600;
    font-size: 16px;
    color: #0b2447;
    background: #f1f5fb;
    padding: 10px 16px;
    border-radius: 12px;
    margin-bottom: 14px;
}

.nowrap {
    white-space: nowrap;
}

.table th {
    font-weight: 600 !important;
}

table tbody tr:nth-child(2n):hover td, table tbody tr:nth-child(2n):hover th {
    background-color: rgb(240, 240, 240);
}

table.table tbody tr td {
    padding: 8px 10px;
}

.pagination li.page-item {
    border: none !important;
}

.pagination li.page-item .page-link {
    border: none;
    margin-left: 2px;
    padding: 6px 12px;
    position: relative;
    color: #000;
    font-size: 16px;
    border-radius: 3px;
    background: transparent;
}

.pagination li.page-item .page-link:hover {
    background: #e2eeff;
}

.pagination .page-item.active .page-link {
    background: #e2eeff;
    font-weight: 500;
}

.pagination li.page-item.disabled .page-link {
    opacity: 0.5;
    background: transparent;
}

.recent-sales .table-responsive {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
    padding: 10px 20px 20px;
    max-width: 100%;
    margin: 10px auto 0px auto;
}

ul.pagination {
    margin-top: 15px;
}

.button_small {
    min-width: 50px;
}

.dashboard .btn {
    line-height: 38px;
    border-radius: 10px;
}


@media (max-width: 767px) {
    .primary_title, .dashboard .card-title {
        font-size: 16px;
    }

    .with_button {
        flex-wrap: wrap;
    }


}