@import "https://fonts.googleapis.com/css2?family=Rubik:wght@;200;400;500;600;800;&display=swap";

/* basics */
:root {
  --text: #171b25; /* var(--text); */
  --primary: #00a89b; /* var(--primary); */
  --secondary: #00b4e4; /* var(--secondary); */
  --bg-theme: #f0f7f5; /* #F5F6FA var(--bg-theme); */
  --heading: #505050; /* var(--heading); */
  --text-light: #c4c5c6; /* var(--text-light); */
  --info: #00b4e4; /* var(--info); */
  --success: #00A74F; /* var(--success); */
  --warning: #ffb059; /* var(--warning); */
  --danger: #ea2316; /* var(--danger); */
}

* {
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--text);
  overflow-x: hidden;
  font-size: 15px;
  position: relative;
}

p {
  margin: 0;
  padding: 0
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}

.extrasmall{
  font-size: .775em;
}

small{
  opacity: 0.5;
}

section {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

.bg-theme{
  background-color: var(--bg-theme);
}

.container-main{
  width: 100%; max-width: 1400px; margin: auto;
}
/* END basics */

/* Customised */
.text-primary{
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.btn-outline-theme{
  color: var(--text);
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.btn-outline-theme:hover{
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.btn-primary {
  display: inline-block;
  white-space: nowrap;
  vertical-align: middle;
  z-index: 5;
  transition: all .5s ease-in-out;
  position: relative;
  overflow: hidden;
  background-color:var(--primary) !important;
  color: #fff;
  border: none;
}

.btn-primary::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 0%;
  border-radius: 50%;
  /* background: rgba(0, 0, 0, .1); */
  background-color:var(--text) !important;
  top: 50%;
  left: 50%;
  padding: 50%;
  z-index: -1;
  transition: all .3s ease-out 0s;
  transform: translate3d(-50%, -50%, 0) scale(0);
}

.btn-primary:hover::after {
  transform: translate3d(-50%, -50%, 0) scale(1.3);
}

a {
  color: var(--primary);
}

a:hover, a:focus {
  color:var(--text);
}

.dropdown-item.active, .dropdown-item:active {
  background-color:var(--primary);
}

a.list-group-item:hover{
  background-color: var(--bg-theme);
  color: var(--primary);
}
/* Customised nav bar */

.navbar{
  padding-left: 16px;
  padding-right: 16px;
}

.navbar ul li ul {
  line-height: 40px;
}

@media (max-width: 576px) {
  .navbar .navbar-collapse{
    line-height: 40px;
    background-color: #fff;
    margin-left: -28px;
    margin-right: -28px;
    padding-left: 28px;
    padding-right: 28px;
    padding-bottom: 24px;
  }
  .navbar .navbar-collapse {
    line-height: 40px;
    background-color: #fff;
    margin: 0px;
    padding: 0px;
    padding-bottom: 16px;
  } 
  .navbar .nav-link {
    color: var(--text);
  }
  .navbar ul li {
    width: 100%;
    border-top: 1px solid rgb(238, 238, 238);
  }
  .navbar ul li:last-child {
    width: 100%;
    border-top: 0px;
  }
  .navbar ul li ul li {
    width: 100%;
    border-top: 0px;
  }
  .navbar ul li ul {
    margin-bottom: 16px;
  }
  .navbar ul li .btn{
    width: 100%;
  }
  
  footer .navbar ul li {
    border-top: 0px;
  }
  
}

.nav-link {
  color: var(--text);
}

.navbar.sticky .nav-link, footer .navbar .nav-link {
  color: var(--text);
}

.nav-link:focus, .nav-link:hover, .nav-link.active {
  color: var(--primary)!important;
}

/* Customised nav bar brand */
.navbar-brand img{
  max-width: 200px;
}

.navbar.sticky .navbar-brand, footer .navbar .navbar-brand{
  color: var(--text);
}

.current-page {
  color: var(--primary);
  margin-left: 1em;
}

.navbar.sticky .navbar-brand i, .navbar.sticky .navbar-brand svg, footer .navbar .navbar-brand i, footer .navbar .navbar-brand svg {
  color: var(--primary);
}


/* Customised nav bar toggler*/
.navbar-toggler {
  padding: 0;
  border: 0px;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none
}

.navbar .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  color: var(--primary);
  display: block;
  margin: 5px 0;
  position: relative;
  transition: all .3s ease-out 0s
}

.navbar.sticky .navbar-toggler .toggler-icon {
  background-color:var(--text);
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  transform: rotate(45deg);
  top: 7px
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  transform: rotate(135deg);
  top: -7px
}

/* card */

.card {
  -webkit-box-shadow: 0 0px 10px rgba(62,85,120,.09);
  -moz-box-shadow: 0 0px 10px rgba(62,85,120,.09);
  box-shadow: 0 0px 10px rgba(62,85,120,.09);
}

.card .card-header{
  background-color: #fff;
  color: var(--text);
  display: flex !important;
  justify-content: space-between !important;
  /* padding-left: 1.5rem !important;
  padding-right: 0.75rem !important; */
}

.card .card-header.bg-theme {
  background-color:  var(--bg-theme);
}

.card .card-header.fixed-h{
  height: 58px;
}

.card .card-header.fixed-h > *{
  align-self: center !important;
  margin: 0px  !important;
}

.card .card-header h2{
  font-size: 18px;
  margin: 4px 0px 0px 0px;
  line-height: 38px;
}

.card .card-footer{
  background-color: var(--bg-theme);
}

/*card hover */
.card.card-hover{
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.card.card-hover:hover {
  box-shadow: 0 10px 50px -5px rgba(51,71,91,0.12);
  transform: translateY(-5px);
}

/* table in card or modal */
/* .card .card-body */ table.table-card {
  color: var(--text);
  font-size: 14px;
  margin-bottom: 0px;
}

table.table-card th {
  font-size: 12px;
  opacity:0.7;
}
/* .card .card-body */ table.table-card thead tr th:last-child {
  border-right: 0px;
}

/* .card .card-body */ table.table-card{
  vertical-align: middle;
  border-top-style: hidden;
}

/* .card .card-body */ table.table-card td:first-child, 
/* .card .card-body */ table.table-card th:first-child
{
  padding-left: 1.5rem;
}

/* .card .card-body */ table.table-card > tbody > tr:hover
{
  background-color: rgba(0,167,79, 0.06);
}

/* .card .card-body */ table.table-card > :not(:last-child) > :last-child > * {
  border-bottom-color: #D7DBE0;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-right-width: 1px;
  background-color: var(--bg-theme);
}

.card .nav-card{
  background: var(--bg-theme);
}

.card .nav-card.nav-tabs .nav-link{
  background: var(--bg-theme);
  padding: 18px 26px;
  border: 0px;
  border-bottom: #dee2e6 !important;
}

.card .nav-card.nav-tabs .nav-link.active {
  background:#fff;
  border-bottom: 1px solid #fff !important;
}

.nav-tabs .nav-item .nav-link .badge{
  --bs-badge-font-size: 0.60em;
  padding-bottom: 1px;
  top: -2px;
  position: relative;
}

.flex-even {
  flex: 33%;
}

/* Form validation */
form .error, form .form-control.error:focus{
  background: #f8dbda;
  border:1px solid #e67a74;
}

/* ############################################### */

/* To the TOP btn */
.scroll-top {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: linear-gradient(45deg, var(--primary), var(--primary));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  color: #fff !important;
  border-radius: 0;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  border-radius: 5px;
  text-decoration: none;
}

.scroll-top:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, .15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, .15) !important;
  -webkit-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
  background-color: #081828
}
/* END To the TOP btn */

/* TABS */
.nav-tabs{
  margin-bottom: -1px;
  z-index: 999 !important;
  position: relative;
}

.nav-tabs .nav-link{
  background: #e9ecef;
  border-top-left-radius: .45rem;
  border-top-right-radius: .45rem;
}
/* Table */
table{
  line-height: 1.8rem;
}

.table-footer{
  bottom: 0px;
  position: sticky;
  margin-top: -1px;
}

/* pagnation */
.page-link {
  color:var(--text);
}

.page-link:hover, .page-link:focus {
  color: var(--primary);
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: var(--primary);
  border-color:var(--primary);
}

.page-link:hover {
  color: #ffffff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.page-link:focus,
.page-link.active {
  color: #ffffff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.label_box {
  position: relative;
  margin-right: 10px;
  padding: 2px 8px;
  color: #fff;
}

.label_box:after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(0,0,0,0);
  border-width: 10px;
  margin-top: -10px;
}

.label-axxxx.label_box{
  background: #008036;
}

.label-axxxx.label_box:after{
  border-left-color: #008036;
}

.label-axxx.label_box{
  background: #288C3B;
}

.label-axxx.label_box:after{
  border-left-color: #288C3B;
}

.label-axx.label_box{
  background: #42983E;
}

.label-axx.label_box:after{
  border-left-color: #42983E;
}

.label-ax.label_box{
  background: #53A242;
}

.label-ax.label_box:after{
  border-left-color: #53A242;
}

.label-a.label_box{
  background: #64AF47;
}

.label-a.label_box:after{
  border-left-color: #64AF47;
}

.label-b.label_box{
  background: #94C247;
}

.label-b.label_box:after{
  border-left-color: #94C247;
}

.label-c.label_box{
  background: #BFDA1D;
}

.label-c.label_box:after{
  border-left-color: #BFDA1D;
}

.label-d.label_box{
  background: #FEDA00;
}

.label-d.label_box:after{
  border-left-color: #FEDA00;
}

.label-e.label_box{
  background: #FFBB00;
}

.label-e.label_box:after{
  border-left-color: #FFBB00;
}

.label-f.label_box{
  background: #F7740C;
}

.label-f.label_box:after{
  border-left-color: #F7740C;
}

.label-g.label_box{
  background: #F2231B;
}

.label-g.label_box:after{
  border-left-color: #F2231B;
}

.label-o.label_box{
  background: #9E005D;
}

.label-o.label_box:after{
  border-left-color: #9E005D;
}

.label_box.label_nodata{
  opacity: 0.15 !important;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.nav-link.active {
  font-weight: bold;
  color: #007bff;
}

.menu-bar {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 0.5rem;
}

.menu-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.menu-link.active {
  color: #fff;
  background: #0078d4;
}

.menu-link:hover:not(.active) {
  background: #f0f0f0;
}

.sla-badge {
  display: inline-block;
  min-width: 2.5em;
  padding: 0.2em 0.6em;
  font-size: 0.95em;
  font-weight: 600;
  color: #fff;
  border-radius: 0.7em;
  text-align: center;
}

.sla-positive {
  background-color: #28a745; /* Bootstrap green */
}

.sla-negative {
  background-color: #dc3545; /* Bootstrap red */
}

.accordion-indicator .triangle {
  display: inline-block;
  transition: transform 0.2s;
  font-size: 1rem;
  user-select: none;
}

.accordion-toggle[aria-expanded="true"] .triangle,
.accordion-toggle.open .triangle {
  transform: rotate(90deg);
}

.dashboard-widget {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  margin-bottom: 2rem;
}

.dashboard-widget-title {
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1rem 1.25rem 0.5rem 1.25rem;
  border-bottom: 1px solid #dee2e6;
  background: #f8f9fa;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.dashboard-widget-body {
}

.dashboard-widget-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.dashboard-widget-col {
  flex: 1 1 0;
  min-width: 0;
}

.assignment-progress-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  background: none;
}

.assignment-progress-table th,
.assignment-progress-table td {
  border: none;
  margin: 0;
  padding: 0;
}

.assignment-progress-table tr {
  padding: 0.5rem 0.25rem;
}

.assignment-progress-table td {
  padding: 0.5rem 0.25rem;
  vertical-align: middle;
}

.assignment-progress-title {
  width: 100%;
  font-weight: 500;
}

.assignment-progress-value {
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  min-width: 2.5rem;
}

a {
    color: var(--primary);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

    .btn-outline-primary:hover {
        background-color: var(--primary);
        border-color: var(--primary);
    }

.btn-info {
    background-color: var(--info);
    border-color: var(--info);
}

.text-info {
    color: var(--info) !important;
}

.text {
    color: var(--text) !important;
}

.text-licht {
    color: var(--text-light);
}

.btn-outline-info, a.btn-outline-info {
    color: var(--info);
    border-color: var(--info);
}

    .btn-outline-info:hover, a.btn-outline-info:hover {
        background-color: var(--info);
        border-color: var(--info);
        color: #fff;
    }

.btn-warning {
    background-color: var(--warning);
    border-color: var(--warning);
}

.btn-outline-warning {
    color: var(--warning);
    border-color: var(--warning);
}

    .btn-outline-warning:hover {
        background-color: var(--warning);
        border-color: var(--warning);
        color: #fff;
    }

.btn-warning {
    background-color: var(--warning);
    border-color: var(--warning);
}

.btn-outline-warning {
    color: var(--warning);
    border-color: var(--warning);
}

    .btn-outline-warning:hover {
        background-color: var(--warning);
        border-color: var(--warning);
    }

.btn.disabled, .btn:disabled, .btn:disabled:hover {
    cursor: no-drop;
    pointer-events: unset !important;
}

.shadow-small {
    -webkit-box-shadow: 0 0px 10px rgba(62,85,120,.09);
    -moz-box-shadow: 0 0px 10px rgba(62,85,120,.09);
    box-shadow: 0 0px 10px rgba(62,85,120,.09);
}

.bg-primary-subtle {
    background-color: #f0f7f5 !important;
}

.border-primary-subtle {
    border-color: #b0d7d2 !important;
}

.navbar {
    /* position: fixed; */
    padding: 17px 38px 17px 38px;
    z-index: 1039;
}

    .navbar h2 {
        font-size: 24px;
        font-weight: 700;
        margin: 0px;
        color: var(--heading);
        letter-spacing: 0.6px;
    }

#overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1001;
    background-color: rgba(0,0,0,0.0);
    cursor: pointer;
    visibility: hidden;
}

    #overlay.collapse.show, #overlay.collapsing {
        background-color: rgba(0,0,0,0.5);
        visibility: visible;
        display: block;
    }

#sidebar {
    min-width: 250px;
    max-width: 250px;
    width: 100%;
    min-height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    display: inline-block;
    transition: 0.3s;
    background-color: rgba(0, 168, 155);
    line-height: 24px;
    z-index: 1002;
    position: fixed;
    left: 0px;
    -webkit-box-shadow: 0 3px 10px rgba(62,85,120,.9);
    -moz-box-shadow: 0 3px 10px rgba(62,85,120,.9);
    box-shadow: 0 3px 10px rgba(62,85,120,.9);
}

    #sidebar.active:not(:hover) {
        -webkit-box-shadow: 0 3px 10px rgba(62,85,120,.09);
        -moz-box-shadow: 0 3px 10px rgba(62,85,120,.09);
        box-shadow: 0 3px 10px rgba(62,85,120,.09);
    }

.sidebar-brand {
    position: fixed;
    width: inherit;
    max-width: inherit;
    height: 87.8px;
    /* background-color: var(--primary); */
    /* background-color: rgba(5, 86, 5, 0.95); */
    background-color: rgba(0, 168, 155, 0.95);
    overflow: hidden;
    text-align: center;
    padding: 16px;
}

.brand-logo {
    display: inline-block;
    width: 50px;
    height: 56px;
    float: left;
    margin: 0px;
    transition: 0.3s;
}

#sidebar.active:not(:hover) .brand-logo {
    margin-right: 0px;
    margin-left: 0px;
}

.brand-text {
    font-size: 22px;
    font-weight: bold;
    color: var(--heading);
    display: inline-block;
    padding: 4px;
    float: left;
    transition: 0.3s;
}

#sidebar.active:not(:hover) .brand-text {
    font-size: 0px;
    visibility: hidden;
    line-height: 22px;
    color: #fff;
}

/* New logo ELm*/
#sidebar.active:hover .navbar-brand .brand-text-after img {
    opacity: 1.0;
}

#sidebar.active:not(:hover) .navbar-brand .brand-text-after img {
    opacity: 0.0;
    transition: 0.3s;
}

.brand-text-before, .brand-text-after {
    /*
    font-size: 26px;
    font-weight: bold;
    color: var(--heading);
    display: inline-block;
    padding-right:2px;
    margin-top: -1px;
    */
    /* float: left; */
    transition: 3.3s;
}

#sidebar.active:not(:hover) .brand-text-before, #sidebar.active:not(:hover) .brand-text-after {
    font-size: 0px;
    visibility: hidden;
    line-height: 22px;
    color: #fff;
}

.brand-text-after {
    padding-right: 0px;
    padding-left: 1px;
}

/* / New logo Elm*/

.sidebar-minimizer {
    position: fixed;
    width: inherit;
    max-width: inherit;
    top: 72px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    z-index: 999;
}

#sidebar ul.sidebar-logout {
    position: fixed;
    width: inherit;
    max-width: inherit;
    bottom: 0px;
    cursor: pointer;
    z-index: 999;
    margin-bottom: 0px;
    background-color: rgba(0, 168, 155, 0.75);
    transition: 0.3s;
}

    #sidebar ul.sidebar-logout li {
        margin-right: 16px;
    }

#sidebar ul {
    margin-top: 116px;
    margin-bottom: 80px;
    min-width: 250px;
    max-width: 250px;
    color: #fff;
}

#sidebar.active:not(:hover), #sidebar.active:not(:hover) ul {
    min-width: 80px;
    max-width: 80px;
    transition: 0.3s;
}

#sidebar ul li, #sidebar ul li ul li {
    list-style: none !important;
}

    #sidebar ul li a {
        display: block;
        padding: 10px 20px 10px 20px;
        text-decoration: none;
        color: #fff;
        transition: all 0.3s;
        margin: 0px 15px 10px 15px;
        border-radius: 4px;
        cursor: pointer;
    }

#sidebar.active:not(:hover) ul li a {
    padding: 10px 0px 10px 0px;
    text-align: center;
}

#sidebar ul li a:hover {
    color: #95cfc9;
    padding: 10px 15px 10px 25px;
}

#sidebar ul li a[aria-expanded="true"]:hover {
    color: #fff;
}

#sidebar ul li a p {
    display: inline-block;
    margin: 0px;
    margin-left: 16px;
}

#sidebar.active:not(:hover) ul li a p {
    display: none;
}

#sidebar ul li.active > a {
    background-color: #95cfc9;
    color: white;
}

#sidebar.active:not(:hover) ul li.active > a {
    background-color: #95cfc9;
    color: #fff;
}

#sidebar ul li a[aria-expanded="true"] {
    background-color: #95cfc9;
    /* Border left : Kleur 1 */
}

#sidebar ul li ul {
    margin: 0px 0px 10px 0px;
    background: #95cfc9;
    overflow: hidden;
    line-height: 40px;
    box-shadow: inset 0px 11px 8px -10px #188067,inset 0px -11px 8px -10px #188067;
}

    #sidebar ul li ul li:first-child {
        padding: 20px 10px 0px 0px;
    }

    #sidebar ul li ul li:last-child {
        padding: 0px 0px 20px 0px;
    }

    #sidebar ul li ul li a {
        padding: 0px;
        margin: 0px;
        padding-left: 50px;
        transition: all 0.5s;
    }

#sidebar.active:not(:hover) ul li ul {
    padding: 0px;
    line-height: 0px;
    height: 0px;
    margin: 0px;
}

#sidebar li ul li a:hover {
    padding: 0px;
    padding-left: 58px;
    color: #fff;
}

#sidebar li ul li.active a {
    background: none;
    color: #95cfc9;
}

#sidebar ul li a[aria-expanded="true"]::before, #sidebar ul li a[aria-expanded="false"]::before {
    font-family: "Font Awesome 5 free" !important;
    font-weight: 800;
    content: '\f054';
    float: right;
    font-size: 9px;
    line-height: 30px;
    color: var(--text-light);
    transition: all 0.5s;
}

#sidebar ul li a[aria-expanded="true"]::before {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
}

#sidebar.active:not(:hover) a[aria-expanded="false"]::before, #sidebar.active:not(:hover) a[aria-expanded="true"]::before {
    display: none;
}

#sidebar ul span {
    padding: 20px 0px 0px 35px;
    text-transform: uppercase;
    font-size: small;
    font-weight: bold;
    transition: all 0.5s;
}

#sidebar.active:not(:hover) ul span {
    padding: 0px 0px 0px 20px;
    height: 0px;
    overflow: hidden;
}

#sidebar .sidebar-minimizer {
    /* background-color: rgba(18, 38, 86, 0.95); */
}

    #sidebar .sidebar-minimizer::before {
        /* content:'\f359'; */
        font-family: "Font Awesome 5 free" !important;
        font-weight: 800;
        content: "\f054";
        float: right;
        font-size: 14px;
        line-height: 30px;
        color: var(--text);
        transition: all 0.6s;
        width: 30px;
        margin-right: -15px;
        background-color: #fff;
        border-radius: 100%;
        -webkit-box-shadow: 0 3px 10px rgba(62,85,120,.09);
        -moz-box-shadow: 0 3px 10px rgba(62,85,120,.09);
        box-shadow: 0 3px 10px rgba(62,85,120,.09);
    }

#sidebar.active .sidebar-minimizer::before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}

#sidebar .sidebar-minimizer:hover::before {
    color: #95cfc9;
}

/* ---------------------------------------------------
CONTENT STYLE
----------------------------------------------------- */
.content {
    /* make titlebar sticky */
    align-items: flex-start;
}

nav[aria-label="breadcrumb"] {
    line-height: 22px !important;
}

.breadcrumb {
    margin: 0px;
    padding: 0px;
    margin-top: 3px;
    background: none;
}

ol.breadcrumb {
    font-size: 14px;
}

    ol.breadcrumb li.breadcrumb-item a {
        color: var(--text);
        text-decoration: none;
    }

        ol.breadcrumb li.breadcrumb-item a:hover {
            text-decoration: underline;
        }

    ol.breadcrumb li.breadcrumb-item:not(:first-child)::before {
        font-family: "Font Awesome 5 free" !important;
        font-weight: 800;
        content: var(--bs-breadcrumb-divider, "\f054");
        font-size: 10px;
        line-height: 22px;
        padding: 0px 12px 0px 5px;
    }

    ol.breadcrumb li.breadcrumb-item.active {
        color: var(--primary);
    }

#content {
    padding-left: 250px;
    transition: all 0.3s;
}

    #content .navbar {
        /* width: calc(100% - 250px); */
        /* border-bottom: 1px solid rgba(80,80,80,.15); */
        /* border-bottom: var(--border); */
        border-left: var(--border);
        z-index: 1000;
        background-color: #fff;
        -webkit-box-shadow: 0 3px 10px rgba(62,85,120,.09);
        -moz-box-shadow: 0 3px 10px rgba(62,85,120,.09);
        box-shadow: 0 3px 10px rgba(62,85,120,.09);
    }

.sidebar-toggler-md {
    background-color: var(--bg);
}

    .sidebar-toggler-md:hover {
        color: #95cfc9;
    }

    .sidebar-toggler-md.hidden {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        transform: rotate(180deg);
    }

#content.active {
    padding-left: 80px;
}

    #content.active .navbar {
        /* width: calc(100% - 80px); */
        width: calc(100% - 0px);
    }

#content.hidden {
    padding-left: 0px;
}

    #content.hidden .navbar {
        width: calc(100% - 0px);
    }

#sidebar.hidden {
    left: -250px;
}

.content-body {
    padding: 20px 38px;
}

@media (max-width: 991.98px) {
    .content-body {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    #content, #content.active {
        padding-left: 0px;
    }

    #sidebar.collapse {
        left: -250px;
    }

        #sidebar.collapse.show {
            left: 0px;
        }

    #content .navbar, #content.hidden .navbar, #content.active .navbar {
        width: 100%;
    }
}

.grow {
    transition: all .2s ease-in-out;
}

    .grow:hover {
        transform: scale(1.02);
        -webkit-box-shadow: 0 3px 10px rgba(62,85,120,.09);
        -moz-box-shadow: 0 3px 10px rgba(62,85,120,.09);
        box-shadow: 0 3px 10px rgba(62,85,120,.09);
        z-index: 999;
    }

/* Modal */
.modal-dialog-slideout {
    min-height: 100%;
    margin: 0 0 0 auto;
    background: #fff;
}

.modal.fade .modal-dialog.modal-dialog-slideout {
    -webkit-transform: translate(100%,0)scale(1);
    transform: translate(100%,0)scale(1);
}

.modal.fade.show .modal-dialog.modal-dialog-slideout {
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
    display: flex;
    align-items: stretch;
    -webkit-box-align: stretch;
    height: 100%;
}

    .modal.fade.show .modal-dialog.modal-dialog-slideout .modal-body {
        overflow-y: auto;
        overflow-x: hidden;
    }

.modal-dialog-slideout .modal-content {
    border: 0;
}

.modal-dialog-slideout .modal-header, .modal-dialog-slideout .modal-footer {
    height: 69px;
}

    .modal-dialog-slideout .modal-header h5 {
        float: left;
    }

/* Offcanvas */
.offcanvas {
    --bs-offcanvas-width: 600px !important;
}

.offcanvas-end {
    width: 600px !important;
}