.bottom-menu {
  position: fixed;
  bottom: 30px;
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.container-fluid {
  display: flex;
  flex-direction: row;
  height: 100dvh;
}

.menu-fms {
  display: flex;
  padding-left: 24px;
  color: var(--course-primary-color);
  align-items: center;
}

.sidebar {
  display: block;
  height: 100dvh;
  width: 250px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  background-color: var(--black);
  padding-top: 1rem;
  transition: all 0.3s;
}

.sidebar-header {
  height: 50px;
  justify-content: left;
  align-items: center;
  margin-top: 4px;
  padding-left: 22px;
}

.sidebar-menu-container {
  margin-top: 1.5rem;
  text-align: left;
  max-height: calc(100dvh - 200px);
  overflow-y: auto;
}

.sidebar-menu {
  color: var(--dark);
  display: flex;
  align-items: center;
  padding: 16px 24px;
  text-decoration: none;
  border-left: 8px solid transparent;
  transition: all 0.3s;
}

.sidebar-menu.active {
  font-weight: 600;
  color: var(--course-primary-color);
  border-left: 8px solid var(--course-primary-color);
  padding-left: 24px;
}

.sidebar-menu:hover {
  font-weight: 600;
  color: var(--course-primary-color);
}

.sidebar.open .sidebar-menu,
.sidebar.open .menu-fms,
.sidebar.open .sidebar-header {
  display: flex;
}

.sidebar-menu-icon {
    margin-right: 15px;
    width: 24px;
    text-align: center;
}

.sidebar-menu-text {
  display: block;
  margin-left: 14px;
  transition: display 0.2s;
  font-size: 1rem;
}

.circle-btn {
    min-width: 48px;
    min-height: 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--course-light-color) !important;
    color: var(--course-primary-color) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.25rem;
}

/* Adjust main content when sidebar is present */
.main-content {
  /* Width of sidebar */
  /* padding: 20px; */
  width: 100%;
}

.venue-name {
  display: none;
  font-size: 16px;
  color: var(--course-primary-color);
  padding: 4px 16px;
  white-space: nowrap;
}

@media (min-width: 501px) {
  .sidebar {
    max-width: 500px;
    left: auto;
  }

  .sidebar.open {
    width: 250px;
    max-width: 50%;
  }
}

.modal-header {
    border-bottom: none !important;
    padding: 1rem;
}

.modal-left .modal-content {
    height: 100vh;
    z-index: 1050 !important;
    max-width: calc(100% - 6.5rem);
}

/* .modal-backdrop.show {
    z-index: 800 !important;
} */

.sticky-top-navbar {
    z-index: 750 !important;
    position: sticky !important;
    align-items: center !important;
    width: 100%;
}

@media (max-width: 390px) {
  .venue-name {
    font-size: 1rem !important;
  }
  .navbar .navbar-brand {
    font-size: 1rem !important;
  }
}

.navbar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 56px; 
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

nav.navbar {
    z-index: 751 !important;
}

.fixed-top-navbar {
    z-index: 750 !important;
    position: fixed;
    align-items: center !important;
    width: 100%;
    top: 0;
}