*,
::after,
::before {
    box-sizing: border-box;
}

:root {
    --sidebar-size: 290px;
}

body {
    opacity: 1;
    overflow-y: scroll;
    margin: 0;
}

a {
    cursor: pointer;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

li {
    list-style: none;
}

h4 {
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 1.275rem;
    color: var(--bs-emphasis-color);
}

/* Layout for admin dashboard skeleton */
.wrapper {
    align-items: stretch;
    display: flex;
    width: 100%;
}

#sidebar {
    max-width: var(--sidebar-size);
    min-width: var(--sidebar-size);
    transition: all 0.35s ease-in-out;
    border-right: none;
    background-color: #1a1f29;
   
}

.main {
    flex: 1;
    flex-direction: column;
    min-height: 100vh;
    min-width: 0;
    overflow: hidden;
    transition: all 0.35s ease-in-out;
    width: 100%;
    background-color: var(--bs-secondary-bg);
}

/* Sidebar Elements Style */
.sidebar-logo {
    padding: 1.15rem;
}

.sidebar-logo a {
    font-size: 1.15rem;
    font-weight: 600;
}

.sidebar-nav {
    flex-grow: 1;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
   /* margin-left: 20px;
    margin-right: 40px;*/
}

.sidebar-header {
    font-size: .75rem;
    padding: 1.5rem 1.5rem .375rem;
}

a.sidebar-link {
    color: #fefefe;
    font-size: 1rem;
    
}

.avatar {
    height: 38px;
    width: 38px;
}
.card {
    border: none;

}
.col-12 {
    flex: 0 0 auto;
    width: 100%;
    
  }
.modal-content {
    border: none;
}
.navbar {
    background-color: #1a1f29;
}
.navbar-toggler-icon {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");

}

.navbar-expand .navbar-nav {
    margin-left: auto;
}

/* Sidebar toggle */
#sidebar.collapsed {
    margin-left: calc(-1 * var(--sidebar-size));
}
.nav-pills .nav-link {
    --bs-nav-pills-border-radius: none;
    --bs-nav-pills-link-active-bg: rgba(126, 130, 135, 0.25);
    
}
.nav-pills .nav-link.active {
    color: #040404
    
}
.nav-pills .nav-link.active, .nav-pills  .show>.nav-link{
    background-color:gold;
    color: #040404;
}

/* Active nav-link icon color */


/* content style */
.content {
    flex: 1;
    max-width: 100vw;
    height: calc(100vh - 98px);
    overflow: auto;
}



/* Footer and Nav */
.footer {
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
    height: 20px;
}

@media (max-width:767.98px) {
    .content {
        max-width: auto;
        width: 100vw;
    }

    .navbar, footer {
        width: 100vw;
    }
}
