/* General styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
  padding: 0;
  margin: 0;
}
p {
  margin-bottom: 0;
}
body {
  background: #EDF2F4;
}
h1, h2, h3, h4, h5 {
  margin-bottom: 0;
}

.mt-36{
  margin-top: 36px;
}

input[type="text"]{
  background-color: #F7F7F7 !important;
  border: none !important;
  height: 44px;
    box-shadow: 0px 2px 14px 0px rgba(0, 0, 0, 0.1);

}
input[type="password"]{
  background-color: #F7F7F7 !important;
  border: none !important;
  height: 44px;
    box-shadow: 0px 2px 14px 0px rgba(0, 0, 0, 0.1);

}
input[type="email"],input[type="time"], input[type="date"], input[type="tel"] {
  background-color: #F7F7F7 !important;
  border: none !important;
  height: 44px;
    box-shadow: 0px 2px 14px 0px rgba(0, 0, 0, 0.1);

}
.btn-primary{
  background-color: #27AAE1 !important;
  border: none !important;
  height: 44px;
}
.btn-light{
  background-color: white !important;

}
.form-select{
  height: 44px;
  background-color: #F7F7F7 !important;
  border: none !important;


}
textarea{
  background-color: #F7F7F7 !important;
  border: none !important;
}

.page-heading{
  font-size: 28px;
  padding-bottom: 24px;
  font-weight: 700;
}

/* Sidebar styles */
#side_nav {
  background: #FFFFFF;
  min-width: 313px;
  max-width: 313px;
  height: 100vh; /* Full viewport height */
  transition: all 0.3s;
  position: fixed; /* Fixed sidebar */
  top: 0;
  left: 0;
  overflow-y: auto; /* Scrollable sidebar */
  display: flex;
  flex-direction: column; /* Allow flex layout for content positioning */
}

.content {
  margin-left: 313px; /* Ensure content doesn't overlap the sidebar */
  width: calc(100% - 313px); /* Adjust width based on sidebar */
  min-height: 100vh;
  /*padding: 20px 24px; !* Add some padding *!*/
  overflow-y: auto; /* Make content scrollable */
    background: #F5F7FA;}
.content-area{
    padding: 10px 24px; /* Add some padding */

}
hr.h-color {
  background: #eee;
}

.sidebar li.active {
  color:  #018CDB;
  /*border-radius: 8px;*/
  /*  border-left: 4px solid;*/
}

.sidebar li.active a,
.sidebar li.active a:hover {
  color: #018CDB;
}

.sidebar li svg{
    margin-right: 26px;
}
.sidebar li a {
  color: #B1B1B1;
  margin: 14px 0px;
    color: #B1B1B1;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    padding-left: 20px;
    line-height: normal;
}
.sidebar li a:hover {
    /*background: #27AAE1;*/
    color: #018CDB;
}
.sidebar li:active {
    /*background: #27AAE1;*/
    border-left: 4px solid !important;
    color: #018CDB;

}
.sidebar .list-unstyled li:hover{
    /*border-left: 4px solid #018CDB  !important;*/

}

/*......*/

.nav-side-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #018CDB; /* Default text color */
    text-decoration: none; /* Remove underline */
    font-size: 16px;
    font-family: Montserrat, sans-serif;
    transition: all 0.3s ease; /* Smooth hover transition */
}
/* Create the curved left border */
.nav-side-link:hover::before,.list-unstyled .active .nav-side-link::before {

    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 6px; /* Adjust width as needed */
    background-color: #018CDB; /* Border color */
    border-top-right-radius: 8px; /* Adjust curve */
    border-bottom-right-radius: 8px; /* Adjust curve */
    z-index: -1; /* Send behind the link */
    transition: all 0.3s ease; /* Smooth transition on hover/active */
    transform: scaleY(0); /* Hidden initially */
    transform-origin: center; /* Scale from center */
}
.sidebar li.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 6px; /* Adjust width as needed */
    background-color: #018CDB; /* Border color */
    border-top-right-radius: 8px; /* Adjust curve */
    border-bottom-right-radius: 8px; /* Adjust curve */
    z-index: -1; /* Send behind the link */
    transition: all 0.3s ease; /* Smooth transition on hover/active */
    transform: scaleY(0); /* Hidden initially */
    transform-origin: center; /* Scale from center */
}
/* On hover or active */
.nav-side-link:hover::before,
.list-unstyled .active .nav-side-link::before {
    transform: scaleY(1); /* Fully visible */
}


/*...........*/


.sidebar li.active svg path {
    stroke: #018CDB !important; /* Change stroke color to white on hover */
    fill: #018CDB !important ;
}


.sidebar li a:hover svg path {
  stroke: #018CDB !important; /* Change stroke color to white on hover */
    fill: #018CDB !important ;
}





.nav-side-link {
  padding: 10px 0;
  text-decoration: none;
  display: block;
}

.header-box  {
  padding-left: 24px;
  padding-right: 20px;
}
.list-unstyled {
    /*padding-left: 24px;*/
    padding-right: 20px;
}


.sidebar-model-button {
  border: none;
  padding-left: 34px;
  background: none;
}

.profil-stle {
  padding-left: 10px;
}

.list-unstyled-bootom {
  padding-left: 12px;
  padding-right: 12px;
  align-items: center;
  display: flex;
  margin-top: auto; /* Pushes the profile section to the bottom */
  padding-bottom: 15px; /* Optional: Add padding to bottom */
  border-top:  1px dashed  #E5EFFB;
  padding-top: 45px;
  margin-left: 20px;
  margin-right: 20px;
}

.list-unstyled-bootom p {
  font-size: 13px;
  color: #8AA4AF;
}

.list-unstyled-bootom i {
  color: #8AA4AF;
}

.profileModal form label{
  font-size: 14px;
  color: #8AA4AF;
  padding-bottom: 6px;
}
.profileModal .model-image{
  height: 129px;
  width: 120px;
  border-radius: 90%;
}
.profileModal input{
  margin-bottom: 12px;
}
.modal-footer, .modal-header{
  border: none !important;
}
.profileModal .modal-content{
  /* max-width: 664px !important; */
  min-width: 664px;
}

.profile-name{
  color: #8AA4AF;
  font-size: 20px;
}
/* ......................profile page.................. */
.profile-section{
  background-color: white;
  border-radius: 15px;
  padding: 56px 73px;
}
.profile-detiles .card{
  background:none;
  border: none;
}
.profile-detiles .card-text{
font-size: 18px;
font-weight: 500;
}
.profile-detiles .card-title{
  font-size: 32px;
  font-weight: 600;
  }
  .profile-detiles .profile-save{
width: 190px;
height: 42px;
font-size: 16px;

  }


.profile-detiles .Contect-detiles label{
  font-size: 16px;
  color: #8AA4AF;
}
.profile-detiles .Contect-detiles input{
  margin-bottom: 15px;
}

.sign-up{
  background-color: white;
  border-radius: 15px;
  padding-top: 48px;
  padding-bottom: 48px;
  margin-bottom: 36px;
}
.sign-up-form{
  padding: 48px 64px;
}
.socail-logi-button button{
  width: 100%;
  height: 44px;

}
.socail-logi-button {
  margin-top: 36px;

}


.sign-up-form label{
  font-size: 14px;
  color: #2D393E;
  padding-bottom: 9px;
  font-weight: 500;
}
.sign-up-form input{
  margin-bottom: 15px;
}
/* ................tabel-desing................... */

.tabel-desing thead tr th{
background-color:#F7F7F7 ;
font-size: 13px;
font-weight: 500;
  height: 44px;
}
.table-left-top-conner{
  border-top-left-radius: 10px;

}
.table-right-top-conner{
  border-top-right-radius: 10px;

}
.tabel-desing td{
  font-size: 14px;
  font-weight: 500;
  height: 69px;


}
.tabel-desing .btn{
  height: 29px;
  font-size: 14px;
  padding: 0;
  width: 87px;
}


.tabel-desing .btn-outline-info{
border-color: #00A79D;
color: #00A79D;;
}
.tabel-desing .btn-outline-info:hover{
  color: white;;
  background: #00A79D;
}
.tabel-desing{
  background-color: white;
  border-radius: 10px;
}
.pagination .page-link{
border: none;

color:#8AA4AF ;
}
.page-link{
  color:#8AA4AF ;

}
.pagination .active{
  color: #2D393E;
  background: none !important;
}
.pagination-style{
height: 44px;
}
.page-heading-top-button button{
  margin-left: 20px;
  font-size: 14px;
  height: 42px;
}

/*.btn-group-vertical>.btn, .btn-group>.btn{*/
/*  width: 200px;*/
/*}*/

.btn-toolbar{
  padding: 5px;
  background-color: #F7F7F7;
  border-radius: 10px;
margin-bottom: 25px;
}

.btn-modeal:hover{
  background-color: #27AAE1;
  color: white;
  border: none;
}
.btn-modeal:active{
  background-color: #27AAE1 !important;
  color: white !important;


}
.btn-modeal{
  color: #8AA4AF;

}


.Shipment-style-model .modal-footer{
  display: block;
}
.Shipment-style-model h3{
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 15px;
}

/* ......................model stlyes */

.Subscription-card .card{
  border: none;
  padding: 24px;
  border-radius: 15px;
}

.Subscription-card .card .card-title{
font-size: 24px;
font-weight: 600;
margin-bottom: 16px;
}
.Subscription-card .card .card-body{
  padding: 0;
}
.card-title-price{
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 16px;


}
.card-title-price span{
  font-size: 20px;
  font-weight: 500;
  color: #8AA4AF;
}

.Subscription-card .card-text{
  color: #8AA4AF;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;

}

.form-check-input {
  /* background-color: #0d6efd !important; */
  border-radius: 50px; /* Rounded shape */
}
.form-switch .form-check-input{
  /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); */
}
.form-check-input:checked {
}

.Subscription .save-price {
  color: #27AAE1;
  margin-top: 12px;
  font-weight: 500;
}

.Subscription{
  margin-top: 26px;
  margin-bottom: 50px;
}
.Subscription .year-plan{
margin-bottom: 40px;
font-size: 20px;
font-weight: 500;
}
.Subscription .year-plan .Monthly{
padding-right: 12px;

}
.Subscription .year-plan .Yearly{
  color: #8AA4AF;
  padding-left: 5px;
}

.Subscription-card .list-items{
  font-size: 16px;
  font-weight: 500;
  list-style: none;
  padding-bottom: 5px;

}
.Subscription-card ul{
  padding-left: 0;
  margin-bottom: 50px;
}
.Subscription-card .list-items i{
color: #27AAE1;


}
.btn-get-start{
  background-color: #F7F7F7;
  color: #27AAE1;
  width: 100%;
  border-radius: 45px;
  margin-bottom: 12px;
  font-weight: 600;
  height: 42px;
}

.btn-get-start:hover{
  background-color:#27AAE1;
  color: white;
}

.trail-day{
  text-align: center;
  font-size: 12px;
  color: #8AA4AF;

}

/* ........................check out page.............. */
.payment {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.payment-card{
  height: 42px;
  margin-bottom: 8px;
  /* background-color: #F7F7F7; */
  /* padding: 12px; */
  border-radius: 8px;
}
.payment-card span{
  font-size: 16px;
  font-weight: 500;
}
.payment-card{
  font-weight: 500;

}
.payment-method .form-check-label i {
  margin-right: 8px;
}

.payment-method .form-check-input {
  margin-right: 10px;
}

.billing-info .form-label {
  font-weight: 500;
  color: #8AA4AF;
  font-size: 14px;
}
.billing-info h5{
  margin-top: 28px;
  margin-bottom: 25px;
}
.form-control {
  border-radius: 8px;
  /* border: 1px solid #d1d1d1; */
}



.payment-card input[type="checkbox"]:checked + label {
  /* color: #007bff; */
}


.payment-card.checked {
  background-color: #F7F7F7; /* Background when checked */
}
.math-padding{
  padding: 12px;

}
.bg-plus-none{
  background: none !important;
}
.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3), .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control, .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select, .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
  border-top-right-radius: 8px;
  border-bottom-right-radius:8px;
}
.toggle-buttons .btn {
  width: 100%;
  padding: 10px;
  margin-right: 5px;
}

.toggle-buttons .btn-outline-primary {
  /* background-color: white; */
  color: #27AAE1 ;
  border-color: #27AAE1 !important;
}
.toggle-buttons .btn-outline-primary:hover{
  color: white;
  background-color: #27AAE1 !important;

}

.toggle-buttons .btn-primary.active {
  background-color: #007bff;
  color: white;
}

.plan-details {
  padding: 10px 0;
  border-bottom: 1px solid white;
}
.plan-details span{
  font-size: 16px;
  font-weight: 500;
}
.plan-details .text-muted{
  font-size: 12px;
  color: #8AA4AF !important;
  font-weight: 400;
}

.total {
  padding: 10px 0;
}
.terms-text{
  color: #8AA4AF;
}
.terms-text strong{
  color: black;

}
.need-help {
  background-color: white;
}

.need-help i {
  color: #007bff;
  background-color: #F7F7F7;
  margin-right: 10px;
  padding: 9px;
  /* height: 36px; */
  /* width: 36px; */
  border-radius: 5px;  margin-right: 10px;
}

.need-help p {
  margin-bottom: 0;
}

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

.btn-outline-primary {
  border-color: #007bff;
}

.btn-block {
  width: 100%;
  padding: 12px;
}

.overview-card .icon-imag {
  background-color: #F7F7F7;
  padding: 7px 11px;
  height: 34px;
    width: 34px;
  border-radius: 25px;
}
  .overview-card span img{
  padding-bottom: 9px;
}
.overview-card .title{
font-size: 16px;
font-weight: 500;
color: #8AA4AF;
}
.overview-card h4{
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 35px;
}
.overview-card .sale-month span{
  font-size: 10px;
  font-weight: 400;
  color: #8AA4AF;
}
  .overview-card .sale-month{
  font-size: 16px;
  font-weight: 500;
  color: black;
}
.btn-outline-profilte{
  color: #00A79D;
  border: 1px solid #00A79D;
  border-radius: 25px;
  height: 28px;
  padding: 0;
  font-size: 12px ;
  width: 56px;
}
.btn-outline-profilte:hover{
  background-color: #00A79D;
  color: white;
}
.btn-outline-loss{
  color: #FF6F61;
  border: 1px solid #FF6F61;
  border-radius: 25px;
  height: 28px;
  padding: 0;
  font-size: 12px ;
  width: 56px;
}
.btn-outline-loss:hover{
  background-color: #FF6F61;
  color: white;
}
.btn-outline-Delayed{
  color: #FF6F61;
  border: 1px solid #FF6F61;
  border-radius: 25px;
  height: 28px;
  padding: 0;
  font-size: 12px ;
  width: 87px;
}
.btn-outline-Delayed:hover{
  background-color: #FF6F61;
  color: white;}
.overview-card {
  border: none;
}
.overview-card .card-body{
  padding: 12px;
}
.Delayed-heading{
  color: #FF6F61;
}


  .form-group:focus-within .input-group-text {
    color: #007BFF; /* Color change on focus */
    font-weight: 500;
    /* box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25); */
  }


  .sign-up-logo{
    height: 52px;
    width: 176px;
  }
  .sign-up-head{
    font-size: 32px;
    font-weight: 600;
    margin-top: 32px;
  }
.sign-up-login{
  font-size: 14px;
  color: #8AA4AF;
}
.sign-up-login a{
  color: #007bff;
  text-decoration: none;
}

.or-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.or-divider p {
  margin: 0 1rem; /* Adjust space between lines and text */
  position: relative;
  display: inline-block;
  color: #8AA4AF;
}

.or-divider p::before,
.or-divider p::after {
  content: "";
  display: inline-block;
  width: 100px; /* Adjust the length of the line */
  height: 1px;
  margin-bottom: 4px;
  background-color: #EDF2F4; /* Color of the line */
}

.or-divider p::before {
  margin-right: 10px; /* Space before the text */
}

.or-divider p::after {
  margin-left: 10px; /* Space after the text */
}




  .ShipmentLegs{
    font-size: 20px;
    font-weight: 600;
  }
  .ShipmentLegs-button{
    font-size: 14px;
    height: 42px;
  }
.search-bar input[type="text"]{
  background-color: white !important;
  border-radius: 35px  ;
padding-left: 0;
}

  .input-fil-seacrch:focus{
    box-shadow:none

  }
.icon-input-search{
  background-color: white !important;
  border-radius: 35px  ;
}
.input-search{
  background-color: #F7F7F7;
  border-radius: 35px  ;

}
.input-fil-seacrch{

  border-radius: 35px;
  padding-left: 0;
}
.Shipments-List-tabel{
  background-color: white;
padding: 12px;
border-radius: 15px;
margin-top: 25px;
}
.Departure-etiles span{
  font-size: 13px;
  color: #8AA4AF;
  font-weight: 500;
}


.Departure-etiles p{
  font-size: 12px;
  font-weight: 500;
}
.info-color{
  font-size: 16px;
  font-weight: 600;
  color: #27AAE1;
}

.Delayed-card .overview-card{
margin-top: 12px;
}
.card-ship-detils{
  border: none;
}
.card-ship-detils h2{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
.card-ship-detils{
  padding: 12px;
}
  .card-ship-detils .nav-pills{
margin-bottom: 18px;
}

.card-ship-detils .Departure-etiles p{
  font-size: 16px;
  font-weight: 600;
}

.nav-pills .nav-link{
  color: #2D393E;
  font-weight: 600;
  padding: 10px 7px;
  font-size: 14px;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
  background:none;
  color: #27AAE1;
  text-decoration: underline;
  margin-bottom: 2px;
}
.Ground-trans .Departure-etiles p {
  font-size: 12px;
  font-weight: 600;
}
.Ground-trans .Departure-etiles span{
  font-size: 12px;
  font-weight: 600;
}
.card-ship-detils .Departure-etiles{
padding-bottom: 12px;
}
.nav-side-link svg path {
  stroke: #8AA4AF !important; /* Default color for icons */
}

.sidebar li.active .nav-side-link svg path {
  stroke: white !important; /* Change to white for active icon */
}


@media (max-width: 800px) {
  .profileModal .modal-content{
    /* max-width: 664px !important; */
    /* m-width: 589px; */
  }
}

/* Mobile view adjustments */
@media (max-width: 1000px) {


  .profileModal .modal-content{
    /* max-width: 664px !important; */
    min-width: auto;
  }
  .dashboard-content {
    padding: 20px;
  }
  .btn-group-vertical>.btn, .btn-group>.btn {
    width: 145px;
}
.mt-24{
  margin-top: 24px;
}
.page-heading-top-button button {
  margin-left: 4px;
}
  #side_nav {
    margin-left: -313px;
    /* position: absolute; */
    min-height: 100vh;
    z-index: 1;
  }
  #side_nav.active {
    margin-left: 0;
  }
  .content {
    margin-left: 0;
    width: 100%;
    padding: 0;
  }

  .navbar{
    background-color: white !important;
  }
  .logo-img{
    height: 38px;
    width: 129px;
  }
}

@media (max-width: 600px) {
  .Shipments-List-tabel{
    background: none;
  }
  .header-box, .list-unstyled{
    padding-left: 12px;
    padding-right: 12px;
  }
  .sign-up-form {
    padding: 48px 20px;
}
.profile-section{
  padding: 16px;
}
.profile-detiles .card-text{
  font-size: 12px;
}
.profile-detiles .card-title {
  font-size: 24px;}
  .btn-group-vertical>.btn, .btn-group>.btn {
    width: 112px;
}
.page-heading-top-button button {
  /* width: auto; */
  font-size: 10px;
}
.nav-pills .nav-link {

  font-size: 11px;}

}
.payment-card{
  height: auto;
}



/*.............admin side.............*/
.btn--primary {
    background-color: #27AAE1 !important;
}
table.table--light thead th {
    border: none;
    color: #ffffff;
    background-color: #27AAE1;
}
table.table--light.style--two thead th {
    border-top: none;
    padding-left: 25px;
    padding-right: 25px;
}
.btn-outline--primary {
    color: #27AAE1;
    border-color: #27AAE1;
}
.btn-outline--danger {
    color: #ea5455;
    border-color: #ea5455;
}
.page-title {
    font-size: 1.125rem;
    display: inline-block;
    font-weight: bolder;
}
label {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 5px;
}
.form-group {
    margin-bottom: 15px;
}
.mb-30 {
    margin-bottom: 30px;
}
.table {
    margin-bottom: 0;
}
.card {
    border: none;
    box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.btn--primary, .btn--secondary, .btn--success, .btn--danger, .btn--warning, .btn--info, .btn--dark {
    color: #ffffff;
}
.h-45 {
    height: 45px;
}
table.table--light.style--two tbody td {
    padding: 15px 25px;
}
.table td, .table th {
    border-top: 1px solid #e8e8e8;
}
table td:first-child {
    text-align: left;
}
table.table--light.style--two tbody td {
    padding: 15px 25px;
}
.table td {
    font-size: 0.8125rem;
    color: #5b6e88;
    text-align: center;
    font-weight: 500;
    padding: 15px 25px;
    vertical-align: middle;
    white-space: nowrap;
}
table.table--light.style--two thead th {
    border-top: none;
    padding-left: 25px;
    padding-right: 25px;
}table.table--light.style--two thead th {
     border-top: none;
     padding-left: 25px;
     padding-right: 25px;
 }
.navbar-toggler:focus{
    box-shadow: none;
}



.bg-light-top{
    border-radius: 5px;
    background: #F5F7FA;
    padding: 12px 14px ;
    margin-right: 4px;
    height: 50px;
}
.search-icon{
    position: absolute;
    top: 15px;
    left: 25px;
}
.main-top-bar input{
    height: 50px;
    padding-left: 57px ;
    color: #8BA3CB;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    box-shadow: none !important;
    margin-right: 5px;
}
.Overview{
    color: var(--Primary-2, #343C6A);

    /* Heading one Semibold 28p */
    font-family: Inter;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}


.Expand-stle h3{
    color: #343C6A;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.Expand-stle p{
    color: #343C6A;
    text-align: right;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

#chartActiveLoans .apexcharts-legend-marker, #chartloan .apexcharts-legend-marker{
    top: -13px !important;

}

#chartActiveLoans .apexcharts-legend-marker[rel="3"], #chartActiveLoans .apexcharts-legend-marker[rel="4"] {
    visibility: hidden !important;
}
.sidebar li.active svg path{
    color: #0a53be;
}
