@charset "UTF-8";
body {
  background: #faf8ef;
}

p {
  font-family: "Poppins", sans-serif;
  font-size: 1.1em;
  font-weight: 300;
  line-height: 1.7em;
  color: #999;
}

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

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

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

.line {
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #ddd;
  margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
.wrapper {
  display: flex;
  width: 100%;
}

#sidebar {
  width: 250px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 999;
  background: #fff;
  color: #fff;
  transition: all 0.3s;
  border-right: 1px solid var(--bs-primary);
  margin-left: 0;
}

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

#sidebar .sidebar-header {
  padding: 11px 20px 10px 20px;
  background: white;
}

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

#sidebar ul li {
  padding: 3px;
}

#sidebar ul li ul li {
  padding: 3px 0;
}

#sidebar ul li a, #sidebar ul li button {
  padding: 10px;
  font-size: 0.9em;
  color: #333333;
  width: 100%;
  border: 0;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #fff;
  transition: all 0.3s;
}

#sidebar ul li a > img, #sidebar ul li button > img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

#sidebar ul li a:hover, #sidebar ul li button:hover {
  background: var(--bs-primary);
}

#sidebar ul li > a::before,
#sidebar ul li > button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
}

#sidebar ul li a[aria-expanded=true],
#sidebar ul li button[aria-expanded=true] {
  margin-bottom: 3px;
}

#sidebar ul li.active > a,
#sidebar ul li.active > button,
#sidebar ul li a[aria-expanded=true],
#sidebar ul li button[aria-expanded=true] {
  font-weight: 700;
  background-color: rgba(250, 199, 39, 0.3);
}

#sidebar ul li.active > a::before,
#sidebar ul li.active > button::before,
#sidebar ul li a[aria-expanded=true]::before,
#sidebar ul li button[aria-expanded=true]::before {
  background: var(--bs-primary);
}

button[data-bs-toggle=collapse] {
  position: relative;
}

.dropdown-toggle::after {
  content: " ";
  -webkit-mask-image: url("/assets/images/sidebar/icons/arrow.svg");
  mask-image: url("/assets/images/sidebar/icons/arrow.svg");
  width: 20px;
  background-color: #333;
  height: 20px;
  background-size: 20px 20px;
  display: block;
  position: absolute;
  border: 0;
  right: 10px;
  transition: all 0.3s;
}

.dropdown-toggle[aria-expanded=true]::after {
  transform: rotate(90deg);
}

ul ul button {
  font-size: 0.9em !important;
  padding-left: 30px !important;
  background: #00508B;
}

.menu-text {
  color: white;
  font-size: 24px;
  font-weight: bold;
  position: relative;
}

.menu-btn {
  background: #0092D1;
  color: white;
}

.menu-header {
  width: 100%;
  height: 64px;
  z-index: 100;
}

.toggle-sidebar {
  cursor: pointer;
}

#content > div {
  position: relative;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
#content {
  min-height: 100vh;
  transition: all 0.3s;
  position: absolute;
  top: 0;
  right: 0;
}

#content.active {
  width: 100%;
}

.mobile-sidebar {
  display: none;
  margin-bottom: 0;
}

.menu-logo {
  height: 64px;
}

.wallet-container {
  padding: 10px 15px;
  margin-top: 20px;
  background-color: var(--bs-primary);
}
.wallet-title {
  padding-left: 40px;
}
.wallet-image {
  width: 30px;
}
.wallet-image img {
  width: 100%;
}
.wallet-amount-container {
  margin-left: 10px;
}
.wallet-amount {
  font-size: 22px;
  font-weight: 700;
}
.wallet-topup {
  display: block;
  margin-left: 10px;
  width: 20px;
  height: 20px;
  border-radius: 11px;
  background-color: var(--bs-primary);
  text-align: center;
  font-size: 24px;
  line-height: 12px;
  color: #fff;
  border: 1px solid #fff;
}
.wallet-topup:hover {
  color: var(--bs-primary);
  background-color: #fff;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
@media (max-width: 768px) {
  #sidebar {
    width: 100%;
    margin-left: -100%;
  }
  #sidebar.active {
    margin-left: 0;
  }
  #content {
    width: 100%;
  }
  #content.active {
    width: calc(100% - 250px);
  }
  .mobile-sidebar {
    display: block;
  }
  .menu-header {
    height: 48px;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .menu-logo {
    height: 48px;
  }
}
.sidebar-item .collapse-item::before {
  content: "• ";
  padding-right: 5px;
}

.components {
  padding-top: 20px;
}

/*# sourceMappingURL=sidebar.css.map */
