@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    font-family: 'Poppins', sans-serif;
}

li{
    list-style: none;
}

a{
    text-decoration: none;
}

.main{
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

#sidebar{
    max-width: 264px;
    min-width: 264px;
    transition: all 0.35s ease-in-out;
    background-color: #ec7b34;
    display: flex;
    flex-direction: column;
}

#sidebar.collapsed{
    margin-left: -264px;
}

.toggler-btn{
    background-color: transparent;
    cursor: pointer;
    border: 0;
}

.toggler-btn i {
    font-size: 1.5rem;
    color: #000;
    font-weight: bold;
}

.navbar{
    padding: 1.15rem 1.5rem;
}

.sidebar-nav{
    flex: 1 1 auto;
}

.sidebar-logo{
    padding: 1.15rem 1.5rem;
    text-align: center;
}

.sidebar-logo a{
    color: #000;
    font-weight: 800;
    font-size: 2rem;
}

a.sidebar-link{
    padding: 1rem 1.625rem;
    font-weight: 400;
    color: #fff;
    text-align: left;
    display: block;
}

a.sidebar-link:hover{
    color: #000;
    background-color: #e56d1f;
    font-weight: 600;
}

/* Screen size less than 768px */
@media (max-width:768px){
    .sidebar-toggle{
        margin-left: -264px;
    }

    #sidebar.collapsed{
        margin-left: 0;
    }
}

.card{
    border: none;
}

.col-7-custom {
  flex: 0 0 14.28%;  
  max-width: 14.28%;
}

.table.blue-table thead tr th {
  background-color: rgb(209, 227, 254);
  color: #333 !important;
}

.table-responsive thead th {
    position: sticky;
    top: 0;
    z-index: 2;
}

