    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
  p{
    margin: 0;
    font-size: 1.5rem;
  }
  .site-header{
    position: absolute;
    z-index: 10;
    width: 100%;
    padding-right: 1.6rem;
  }
  h3{
    font-size: 2rem;
  }
    .grid-container{
        display: flex;
    }
    .content{
        position: relative;
        width: 100%;
        overflow-y: auto;
        height:100vh;
        padding-top: 9.5rem !important;
    }
    html,body {
  height: 100%;
  margin: 0;
  overflow-y: hidden;
}
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

body {
    font-family:sans-serif;
}
h1{
    font-weight: 600;
}
.wrapper {
    display: flex;
}

.main {
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    transition: all 0.35s ease-in-out;
    background-color: #fafbfe;
}

#sidebar {
    width: 0px;
    min-width: 0px;
    z-index: 9;
    transition: all .25s ease-in-out;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    display: flex;
    flex-direction: column;
    background-color: #fff;
    height: 87vh;
    min-height: 87vh;
    margin-top: 9.5rem;
}
#sidebar span{
    font-size: 14px;
}
#sidebar i{
    font-size: 18px;
}

#sidebar.expand {
    width: 260px;
    min-width: 260px;
}

.toggle-btn {
    background-color: transparent;
    cursor: pointer;
    border: 0;
    padding: 0rem 1.5rem;
    margin-right:1rem ;
    color: black;
}

.toggle-btn i {
    font-size: 20px;
}

.sidebar-logo {
    margin: auto 0;
}

.sidebar-logo a {

    font-size: 1.15rem;
    font-weight: 600;
}

#sidebar:not(.expand) .sidebar-logo,
#sidebar:not(.expand) a.sidebar-link span {
    display: none;
}

.sidebar-nav {
    padding: 1.5rem 0;
    flex: 1 1 auto;
    margin-bottom: 0;
    overflow: hidden;
}

a.sidebar-link {
    padding: 0.625rem 0rem;
    display: block;
    font-size: 1.3rem;
    white-space: nowrap;
    border-left: 3px solid transparent;
    text-align: center;
}
a.active-side-link{
    background-color: #E7E9EB;
border-left: 3px solid #3b7ddd;
}
.expand a.sidebar-link{
    text-align: initial;
    padding: 0.625rem 1rem;
    color: black;

}
.sidebar-link i {
    font-size: 1.1rem;
    margin-right: .75rem;
}

a.sidebar-link:hover {
    background-color: #E7E9EB;
    border-left: 3px solid #3b7ddd;
}

.sidebar-item {
    position: relative;
}
#sidebar:not(.expand) .sidebar-item .sidebar-dropdown {
    position: absolute;
    top: 0;
    left: 70px;
    padding: 0;
    min-width: 15rem;
    display: none;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#sidebar:not(.expand) .sidebar-item:hover .has-dropdown+.sidebar-dropdown {
    display: block;
    max-height: 15em;
    width: 100%;
    opacity: 1;
}

#sidebar.expand .sidebar-link[data-bs-toggle="collapse"]::after {
    border: solid;
    border-width: 0 .075rem .075rem 0;
    content: "";
    display: inline-block;
    padding: 2px;
    position: absolute;
    right: 1.5rem;
    top: 1.4rem;
    transform: rotate(-135deg);
    transition: all .2s ease-out;
}

#sidebar.expand .sidebar-link[data-bs-toggle="collapse"].collapsed::after {
    transform: rotate(45deg);
    transition: all .2s ease-out;
}
.content{
    padding: 20px 16px;
    padding-bottom: 0px;
}
.content .title{
    margin-bottom: 2rem;
    margin-top: 3.4rem;
}
.title h1{
    font-size: 3.2rem;
    padding-top: 2.7rem;
    padding-left: 0;
    padding-bottom: 0.5rem;
}
@media screen and (min-width:1025px) {
    .disapera{
        display: none;
    }
}
@media screen and (max-width:1024px) {
    #sidebar{
        margin-top:11.6rem;
    }
    .content{
        padding-top: 13rem !important;
    }
    .site-header{
        padding-right: 0rem;
    }
}
@media screen and (max-width:820px){
    #sidebar{
        position: absolute;
        z-index: 9;
    }
    #sidebar.expand {
        width: 400px;
        min-width: 400px;
    }
    #sidebar{
        margin-top:13rem;
    }
    .content{
        padding-top: 13.5rem !important;
    }
    .site-header{
        padding-right: 0rem;
    }
}
@media screen and (max-width:512px) {
    #sidebar.expand {
        width: 260px;
        min-width: 260px;
    }
    #sidebar{
        margin-top:13rem;
    }
    .content{
        padding-top: 13.5rem !important;
    }
    .site-header{
        padding-right: 0rem;
    }
}

