body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}


/**
 * The geosuggest module
 * NOTE: duplicated font-sizes' are for browsers which don't support rem (only IE 8)
 */
.geosuggest {
  font-size: 1rem;
  position: relative;
  margin-left: 1em auto;
  margin-right: 1em auto;
  margin-bottom: 1em auto;
  text-align: left;
}

.geosuggest__input {
  width: 100%;
  border: 1px solid transparent;
  box-shadow: 0 0 1px #a1adb6;
  padding: 0.5em 1em;
  transition: border 0.2s, box-shadow 0.2s;
}

.geosuggest__input:focus {
  border-color: #ca4c7c;
  box-shadow: 0 0 0 transparent;
}

.geosuggest__suggests {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 25em;
  padding: 0;
  margin-top: -1px;
  background: #fff;
  border: 1px solid #267dc0;
  border-top-width: 0;
  overflow-x: hidden;
  overflow-y: auto;
  list-style: none;
  z-index: 5;
  transition: max-height 0.2s, border 0.2s;
}

.geosuggest__suggests--hidden {
  max-height: 0;
  overflow: hidden;
  border-width: 0;
}

/**
 * A geosuggest item
 */
.geosuggest__item {
  /* font-size: 18px; */
  font-size: 1rem;
  padding: 0.5em 0.65em;
  cursor: pointer;
}

.geosuggest__item:hover,
.geosuggest__item:focus {
  background: #124592;
}

.geosuggest__item--active {
  background: #737475;
  color: #fff;
}

.geosuggest__item--active:hover,
.geosuggest__item--active:focus {
  background: rgb(172, 150, 223);
}

.geosuggest__item__matched-text {
  font-weight: bold;
}

.u-line-spacing {
  line-height: 33px;
}

.react-datepicker-wrapper {
  display: block !important;
}

[class*="col-"] {
  padding-right: unset;
}

.row {
  margin-right: unset;
}

.row > * {
  padding-right: unset;
}

.timeline-title {
  font-size: 1rem;
}

.heading-text {
  color: #325ca8;
  font-weight: bold;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
}


/* Newely added css */


/* Custom button style for primary-custom */
.btn.btn-primary-custom,
.btn-primary-custom {
	color: #212529;
	background-color: #f8f9fa;
	border-color: #f8f9fa;
}

/* Optional: keep hover/active consistent with light appearance */
.btn.btn-primary-custom:hover,
.btn-primary-custom:hover,
.btn.btn-primary-custom:focus,
.btn-primary-custom:focus {
	color: #212529;
	background-color: #e9ecef;
	border-color: #e9ecef;
}

/* Called MSISDN styling */
.same-msisdn-note {
  font-weight: 700;
  margin-top: 8px;
}

.input-group .dropdown-toggle {
  border-right: 0;
}
.input-group .form-control {
  border-left: 0;
}

select.form-control,
.form-select {
  padding-right: 2.25rem;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27%3e%3cpath fill=%27none%27 stroke=%27%236c757d%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27m2 5 6 6 6-6%27/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}

select.form-control:focus,
.form-select:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27%3e%3cpath fill=%27none%27 stroke=%27%236c757d%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27m2 5 6 6 6-6%27/%3e%3c/svg%3e");
}

input.form-control[readonly],
input.form-control:read-only,
textarea.form-control[readonly],
textarea.form-control:read-only {
  background-color: #e9ecef !important;
  border-color: #ced4da;
  color: #6c757d;
  opacity: 1;
  cursor: not-allowed;
}

.form-check-input[type="radio"] {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  border: 2px solid #7f97c6;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.form-check-input[type="radio"]:focus {
  border-color: #325ca8;
  box-shadow: 0 0 0 0.2rem rgba(50, 92, 168, 0.2);
}

.form-check-input[type="radio"]:checked {
  background-color: #325ca8;
  border-color: #325ca8;
  box-shadow: 0 0 0 0.2rem rgba(50, 92, 168, 0.16);
  transform: scale(1.05);
}

.form-check-input[type="radio"]:checked + .form-check-label {
  color: #325ca8;
  font-weight: 600;
}

.form-check-input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  border: 2px solid #7f97c6;
  border-radius: 0.3rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.form-check-input[type="checkbox"]:focus {
  border-color: #325ca8;
  box-shadow: 0 0 0 0.2rem rgba(50, 92, 168, 0.2);
}

.form-check-input[type="checkbox"]:checked {
  background-color: #325ca8;
  border-color: #325ca8;
  box-shadow: 0 0 0 0.2rem rgba(50, 92, 168, 0.16);
  transform: scale(1.05);
}

.form-check-input[type="checkbox"]:checked + .form-check-label {
  color: #325ca8;
  font-weight: 600;
}

.App {
  text-align: center;
  margin-left: 18%;
}

tbody + thead {
  display: none;
}

body {
  /* font-family: Arial, Helvetica, Helvetica Neue, serif; */
  /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
  /* font-family: "Roboto", sans-serif; */
  /* font-family: "Open Sans", sans-serif; */
  font-family: "PT Sans", sans-serif;
  font-size: 16px;
}

.left-text {
  text-align: left;
}

.otp-input {
  width: 32px;
  height: 32px;
  text-align: center;
  margin-right: 20px;
  border-color: lightgray;
  /* border-bottom: 2px solid blue; */
}

.lo-body {
  font-size: 16px;
}

.padding {
  padding-left: 10px;
  padding-right: 10px;
}

.sizing {
  font-size: 18px;
}

.apply-margin {
  margin: 20%;
}

.no-bottom-margin {
  margin-bottom: 0px;
}

#login {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  width: 615px;
  height: 576px;
  /* padding: 50px 0; */
  border-radius: 20px;
  /* box-shadow: 0 0 40px #e3e3e3; */
  box-shadow: 2px 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
  /* background-color: #0747A6; */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: fixed;
  background: #fff;
  /* border: 4px solid rgba(255, 255, 255, 0.3); */
}

.loginlabel {
  color: white;
}

.navbar {
  box-shadow: 0 4px 4px -2px rgba(9, 30, 66, 0.25);
}
.navbar-margin {
  height: 2%;
  width: 100%;
  background-color: #325ca8;
  font-size: 6px;
}

.logo-center {
  margin-right: 45%;
}

.paymentButton {
  color: #325ca8;
  border: none;
  background-color: white;
  padding: 0;
}

.existingCustomer {
  color: #325ca8;
  background-color: white;
  margin-left: 8px;
  font-size: 16px;
  text-decoration: underline;
}

#background {
  /* background-image: linear-gradient(to bottom right, #0747A6,aqua); */
  height: 100vh;
}

.label {
  color: #999;
}

.label-customer {
  color: #325ca8;
}

.lo-label {
  margin-bottom: 0px;
  color: #565353c4;
}

.sidebar {
  background-color: #325ca8;
  height: calc(100vh);
  position: -webkit-sticky;
  position: sticky;
  flex: 1 1;
  flex-basis: 20%;
  flex-grow: 0;
  flex-shrink: 0;
  color: white;
}

.bg-navBar {
  background-color: #325ca8;
}

#dashboard {
  /* flex:1; */
  margin: 0;
  /* margin-left: 0.25rem;
  margin-right: 0.25rem; */
  /* border: 2px solid #0747A6; */
  height: calc(100% - 24px);
  background-color: white;
  overflow-y: auto;
  overflow-x: auto;
}

.register-customer {
  margin-left: 5%;
  margin-right: 5%;
  font-size: 12px;
}

.tab-content {
  width: 100%;
  padding: 16px;
}

.listCustomerContainer {
  width: 100%;
  padding: 16px 0;
  margin-left: -15px;
  margin-right: -15px;
}

.tabs {
  padding: 8px 0;
  /* padding: 0;
  padding-top: 8px; */
}
/* .nav-tabs {
  border: none;
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.83;
  letter-spacing: normal;
} */
.nav-tabs .nav-link {
  /* border: none;
  border-radius: 0; */
  padding: 0.5rem;
}
/* .nav-link.active {
  border-bottom: 4px solid #1bb792;
  color: #000;
}  */

.card {
  width: 100%;
  margin-top: 16px;
  margin-bottom: 16px;
  box-shadow: 0 4px 8px -2px rgba(9, 30, 66, 0.25),
    0 0 1px rgba(9, 30, 66, 0.31);
}

.nextBtn {
  float: right;
}

.buy-btn-health {
  color: white;
  width: 50%;
  background-color: #38be94;
  border-color: #38be94;
  /* #FFAF2E */
  /* #38BE94 */
}

.buy-btn-life {
  color: white;
  width: 50%;
  background-color: #ffaf2e;
  border-color: #ffaf2e;
  /* #FFAF2E */
  /* #38BE94 */
}

.coverage-details {
  width: 48%;
}

.align-image {
  margin-right: 4px;
}

.customizeLink {
  color: white;
}

.customizeLink:hover {
  color: white;
}

.android-app-home {
  background-color: #e2136e;
  border-color: #e2136e;
  align-content: center;
  width: 96%;
}

.milvik-home {
  align-content: center;
  width: 96%;
  background-color: #80808029;
  color: black;
}

.max-width {
  width: 100%;
}

h6 {
  font-weight: 600;
}

.link_padding {
  padding: 16px;
}

.bgColor {
  color: #325ca8;
}
#con {
  height: calc(100vh - 70px);
}
@media (max-width: 480px) {
  #con {
    background-color: white;
  }
  #dashboard {
    margin-left: 0;
    margin-right: 0;
    border: 2px solid white;
    height: auto;
    background-color: white;
  }
  .logo-center {
    margin-left: 30%;
  }
  .align-image {
    margin: 1.25rem;
  }
}
/* Changing inner classes of bootstrap */

.btn-primary {
  color: #fff;
  background-color: #325ca8;
  border-color: rgb(5, 61, 145);
}

.btn-primary:hover {
  color: #fff;
  background-color: rgba(27, 91, 189, 0.863);
  border-color: rgb(7, 69, 161);
}

.card-header {
  background-color: #325ca8;
  color: white;
  /* font-size: 1.25rem; */
}

/* a:hover {
  color: white;
} */

.nav-link {
  color: #325ca8;
  background-color: white;
  font-size: 18px;
  padding: 0.5rem 0;
  margin: 0 1rem;
}

.nav-link:hover {
  color: #325ca8;
}
.nav-link:active {
  color: white;
  background-color: #325ca8;
}
nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: white;
  background-color: #325ca8;
}

.card-text {
  margin: 8px;
}

.nestedCardHeader {
  background-color: lightgrey;
  color: black;
  /* font-size: 1.25rem; */
}

.set-margin {
  margin-top: 1%;
}

.error-msg {
  color: red;
  text-align: center;
}

.error-message {
  color: red;
}

/*  */

.stretch {
  width: 100%;
}

.applyMargin {
  margin: 8px;
}

.heading {
  background-color: #e9e9e9;
  text-align: center;
  font-weight: 700;
  padding: 4px;
}

.jumbo {
  text-align: center;
}

.buyNow {
  float: right;
}

.paymentBox {
  border: 1px solid #325ca8;
  padding: 12px;
  margin: 8px;
  border-radius: 7px;
  margin-bottom: 20px;
}

.top-margin {
  margin-top: 8px;
}

.msisdn-margin {
  margin: 5%;
}

/* react bootstrap changes here */

/* .card{
  margin:4px;
  margin-top:12px;
} */

/* bootstrap changes over */

.normal_anchor {
  color: blue;
  text-align: center;
}
.normal_anchor:hover {
  color: blue;
  text-decoration: underline;
}
/* .coverage-btn{
  color:#6c757d;

}

.coverage-btn:hover{
  color:white;
} */

.coverage-btn-life {
  color: white;
  background-color: #ffaf2e;
  border-color: #ffaf2e;
  /* #FFAF2E; */
  /* #38BE94 */
}
.coverage-btn-health {
  color: white;
  background-color: #38be94;
  border-color: #38be94;
  /* #FFAF2E; */
  /* #38BE94 */
}
.leftMargin {
  margin-left: 15px;
}
.login-form {
  font-size: 18px;
  width: 330px;
}
.dashboard-home-user-card {
  width: 100%;
  min-width: 250px;
}
.dashboard-home-stats-card {
  width: 100%;
}
.md_container {
  padding: 0;
  height: calc(100% - 5px);
  margin-top: 5px;
  margin: 0;
  overflow-y: hidden;
  flex: 1 1;
  position: relative;
}
.login-container-header {
  text-align: center;
  margin: 3rem 0;
}
.preview-padding {
  padding: 0 45px;
}
.preview-card {
  box-shadow: none;
  border: none;
  padding: 30px 50px;
  margin: 0px;
}
.preview-right-padding {
  padding-right: 50px;
}
.preview-cust-details {
  width: 100%;
  background-color: rgba(91, 177, 255, 0.1);
  margin: 0px;
  padding: 40px 45px;
}
@media screen and (max-width: 992px) {
  #dashboard {
    height: calc(100vh - 100px);
  }
  .preview-padding {
    padding: 0 4px;
  }
  .preview-cust-details {
    width: 100%;
    background-color: rgba(91, 177, 255, 0.1);
    margin: 0px;
    padding: 20px 4px;
  }
  .preview-padding-zero {
    /* padding: 0; */
  }
  .preview-card {
    box-shadow: none;
    border: none;
    padding: 30px 4px;
    margin: 0px;
  }
  .preview-center {
    justify-content: center;
  }
  .preview-right-padding {
    padding: 0 4px;
  }
  .nav-link {
    font-size: 16px;
  }
  .login-container-header {
    text-align: center;
    margin: 1rem 0;
  }
  .sidenavContainer {
    width: 0;
    display: none;
  }
  /* .md_container {
    margin: auto;
  } */
  .text-align-center {
    text-align: center;
  }
  #login {
    width: 95%;
    height: 480px;
  }
  .login-form {
    width: 100%;
  }
  .dashboard-home-user-card {
    width: 100%;
  }
  .dashboard-home-stats-card {
    width: 100%;
  }
  .navbar {
    background-color: #325ca8;
  }
  .navbar-collapse {
    background-image: radial-gradient(circle at 50% 43%, #325ca8, #264680 126%);
  }
  .last-login {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  #milvik-navbar {
    display: none !important;
  }
}
.last-login {
  font-size: 12px;
  float: right;
  color: #325ca8;
  border: 1px solid #325ca8;
  padding: 0.25rem;
  border-radius: 8px;
  margin-right: 1.25rem;
}

.bima-blue-background {
  background-color: #325ca8;
  border-color: #325ca8;
}
.bima-blue-background:disabled {
  background-color: #325ca8;
  border-color: #325ca8;
}
.bima-blue-color {
  color: #325ca8;
}
.dropdown-border-radius button {
  background-color: #325ca8;
  border-radius: 5px 0 0 5px;
  border-color: #325ca8;
}

.nextBtnSubs {
  margin-bottom: 2rem;
  background-color: #325ca8 !important;
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  padding: 0.3rem 1rem;
}
.nextBtnSubs:hover {
  text-decoration: none;
}
select > option > p:hover {
  background: white !important;
  color: black !important;
}

.mdb-table {
  width: 100%;
}

.login-input {
  border: none;
  outline: none;
  outline-style: none;
  box-shadow: none;
  border-bottom: 2px solid #dfdfdf;
  font-size: 18px;
}
.login-input:-webkit-autofill,
.login-input:-webkit-autofill:hover,
.login-input:-webkit-autofill:focus,
.login-input:-webkit-autofill:active {
  box-shadow: 0 0 0 30px white inset !important;
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
react-datepicker-component .react-datepicker-input {
  border: none;
  border-radius: 0;
}
.react-datepicker-component .react-datepicker-input input {
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  background: unset !important;
  background-color: #fff !important;
}
select:first-child {
  /* color: #eee !important; */
  font-size: 14px !important;
  /* font-weight: normal !important; */
}
select,
input {
  font-size: 16px;
  background-color: #fff;
  font-weight: normal !important;
}
select,
input::placeholder {
  color: #eee;
  font-size: 14px;
  font-weight: normal !important;
}
.login-input::placeholder {
  color: #325ca8;
  font-style: italic;
}

.login-input-focus {
  outline: none;
  outline-style: none;
  border: none;
  border-bottom: 2px solid #325ca8 !important;
  box-shadow: none !important;
}

.login-icon {
  color: #325ca8;
  background-color: transparent;
}
.login-append {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #dfdfdf;
}
.login-append-focus {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #325ca8;
}
.login-input-margin {
  margin-bottom: 3.3rem;
}
.login-input:focus::placeholder {
  color: transparent;
  font-style: italic;
}
.sidenavContainer {
  background-image: radial-gradient(circle at 50% 43%, #325ca8, #264680 126%);
  padding: 0;
  margin: 0;
}
.table td,
.table th {
  vertical-align: middle;
  height: 45px;
  font-size: 14px;
  padding: 0 0.75rem;
  color: #325ca8;
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(50, 92, 168, 0.1);
}
.table thead th {
  vertical-align: middle;
  height: 30px;
  /* font-family: Roboto; */
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.94;
  letter-spacing: normal;
  color: #9b9b9b;
  border: none;
}
.sub-hover:hover {
  background-color: rgba(155, 155, 155, 0.2);
}

.invalid-input {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}
.accordionHeader {
  cursor: pointer;
}

.bs-select select {
  margin-left: 0 !important;
}
.page-item.active .page-link {
  z-index: 0;
}
#add-beneficiary-modal > .modal-content {
  margin-top: 100px;
}

.cron_builder{
	max-width: 100% !important;
}

.cron_builder_bordering select {
  color: #000000 !important
}

.alert-danger{
  color: #bb3945 !important;
}

.badge-danger{
  background-color: #bb3945;
}

.subscription-details-card{
  border: 1px solid #cccccc; 
  margin-bottom: 15px;
  padding: 15px;
  transition: opacity 0.6s ease;
}

.subscription-details-card:hover > :not(:hover){
/*  opacity: 0.4;*/
}

.cover-usage-table tr td{
  font-size: 14px !important;
}
.stacked-modal .modal-dialog {
  height: 100vh;
  display: flex;
  align-items: center; /* vertically centers the modal box */
  justify-content: center;
}

.stacked-modal .modal-content {
  height: 100%;
  background: #ffffff;
  opacity: 0.97;
  z-index: 1050;
  overflow-y: auto; /* adds scroll if content overflows */
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.position-adjust {
  position: absolute;
  top: 16px;
  left: 16%;        /* default for large screens */
}

@media (max-width: 1200px) {
  .position-adjust {
    left: 25%;
  }
}

@media (max-width: 992px) {
  .position-adjust {
    left: 35%; /* tablets */
  }
}

@media (max-width: 768px) {
  .position-adjust {
    left: 45%; /* mobiles */
  }
}
.close {
  font-size: 2.5rem !important;
}

.accordion-toggle-custom {
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 100%;
  color: #ffffff;
}

.accordion-toggle-custom:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.iconRotate {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.sidenavAccordionHighlight {
  background-color: #18408b;
}

/* Custom classes for accordion for partner request modal */
.custom-accordion {
  border: 0;
}

.custom-accordion .accordion-item {
  border: 0;
}

.custom-accordion .accordion-button::after {
  display: none;
}

.custom-accordion .accordion-header {
  width: -webkit-fit-content;
  width: fit-content;
}

.custom-accordion .accordion-button {
  color: #fff;
  background-color: #325ca8;  
}

.custom-accordion .accordion-button:focus {
  box-shadow: unset;
  background-color: #18408b;
}
.sidenav {
  left: 0;
  overflow-x: hidden;
  width: 100%;
  /* transition: 0.5s; 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
  text-decoration: none;
  color: #fff;
  display: block;
  /* transition: 0.3s; */
}
.sidenav-active a {
  text-decoration: none;
  /* color: cyan; */
  display: block;
  /* transition: 0.3s; */
}
.sidenav a:active {
  text-decoration: none;
  color: #325ca8 !important;
  background-color: #eee !important;
  
}

/* When you mouse over the navigation links, change their color */
/* .sidenav a:hover {
  background-color: #fff;
  color: #325ca8;
} */

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
/* #main {
  transition: margin-left .5s;
  padding: 20px;
} */
.iconRotate {
  transform: rotateZ(90deg);
}

.accordionHeader {
  border-bottom: none;
  border-radius: 0 !important;
  /* color: #325ca8; */
  background-color: transparent !important;
  padding: 0.5rem 1.25rem;
}

.accordionHeader:hover {
  background-color: #eeeeee !important;
  color: #325ca8;
}
.accordionHeader:active {
  color: white;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
/* @media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
} */

.sidenav_md {
  left: 0;
  overflow-x: hidden;
  /* transition: 0.5s; */
}

/* The navigation menu links */
/* .sidenav_md a button {
  text-decoration: none;
  color: whitesmoke;
  display: block;
  transition: 0.3s;
} */

/* .sidenav_md a:active {
  text-decoration: none;
  color: cyan;
} */

/* When you mouse over the navigation links, change their color */
/* .sidenav_md a button:hover {
  color: white;
} */

/* Position and style the close button (top right corner) */
.sidenav_md .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.sidenav_md_link a {
  color: #fff;
  background-color: transparent;
  text-decoration: none !important;
}

/* NavLink itself is the <a>, so style the class too */
.sidenav_md_link {
  color: #fff;
  background-color: transparent;
  text-decoration: none !important;
  display: block;
}

.sidenav_md_link:hover {
  color: #325ca8;
  background-color: #eee;
  text-decoration: none !important;
}
.sidenav_md_link_active {
  color: #325ca8 !important;
  background-color: #eee !important;
  text-decoration: none !important;
  border-left: 4px solid #325ca8 !important;
  padding-left: calc(3rem - 4px) !important;
  font-weight: 600 !important;
  display: block !important;
}

/* --- Bootstrap 5 Accordion overrides inside sidenav ---
   Prevent the default white accordion panel/background. */
.sidenav .accordion,
.sidenav_md .accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: transparent;
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-btn-color: #fff;
  --bs-accordion-active-color: #fff;
  --bs-accordion-btn-focus-box-shadow: none;
}

.sidenav .accordion-item,
.sidenav_md .accordion-item {
  background-color: transparent;
  border: 0;
}

.sidenav .accordion-button,
.sidenav_md .accordion-button {
  background-color: transparent;
  color: #fff;
  padding: 0.5rem 1.25rem;
}

.sidenav .accordion-button:not(.collapsed),
.sidenav_md .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #fff;
  box-shadow: none;
}

.sidenav .accordion-body,
.sidenav_md .accordion-body {
  background-color: transparent;
  padding: 0;
}

/* Custom accordion header used in linkGroup.js */
.accordion-toggle-custom {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.5rem 1.25rem;
  color: #fff;
  -webkit-user-select: none;
          user-select: none;
}

.accordion-toggle-custom:hover {
  background-color: #eeeeee;
  color: #325ca8;
}

.accordion-toggle-custom:active {
  background-color: #eeeeee;
  color: #325ca8;
}
/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media not screen and (max-width: 992px) {
  /* .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;} */
  .sidenav_md {
    width: 0;
  }
}
@media screen and (max-width: 992px) {
  /* .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;} */
  .sidenav {
    width: 0;
  }
  .accordionHeader {
    color: white;
    background-color: transparent !important;
  }

  .accordionHeader:hover {
    background-color: #eeeeee;
    color: #325ca8 !important;
  }
  .accordionHeader:active {
    color: #325ca8;
    background-color: white;
  }
  .md_hidden {
    display: none;
  }
}

.hover:hover {
  background-color: #eeeeee;
  color: #325ca8;
}
.hover:active {
  background-color: #eeeeee;
  color: #325ca8;
}
.hover_active {
  background-color: #fff !important;
  color: #325ca8 !important;
}
.hover_active a {
  /* background-color: #eeeeee !important; */
  color: #325ca8 !important;
}

.logout-btn {
  color: #fff;
  font-weight: 400;
  padding: 0.5rem 1.25rem;
  margin-left: 1rem;
  width: 100%;
}

/* Mobile sidebar submenu fix */
@media (max-width: 768px) {
  .sidenav_md_row,
  .sidenav_md_row.row {
    display: block !important;   /* kill flex */
    width: 100%;
  }

  .sidenav_md_row > * {
    display: block;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .sidenav_md_link {
    display: block;
    width: 100%;
  }
}


