@import url('https://fonts.googleapis.com/css2? family=Poppins:wght@300;400;500;G00&display=swap');

:root{
    --main-color: #0781ec;
    --color-dark: #1D2231;
    --text-grey: #186ee6;

}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
    font-family: 'poppins', sans-serif;
}

.sidebar{
    width: 345px;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--main-color);
}
.d1{
    height: 40px;
    width: 40px;
    
}

.sidebar-brand{
    height: 90px;
    padding-left: 1rem 0rem 1rem 2rem;
    color: #fff;
}

.sidebar-brand span{
    display: inline-block;
    padding-right: 1rem;
    /* margin-left: 0; */
}
.sidebar-menu{
    margin-top: 1rem;
}

.sidebar-menu ul li a:hover {
    background: #575757;
    /* border-radius:20% ; */
    border-radius: 30px 0px 0px 30px
  }
.sidebar-brand h2 img{
    margin-left: 20px;
}

.aidebar-menu li{
    width: 100%;
    margin-bottom: 1.3rem;
    padding-left: 1rem;
    
}

.sidebar-menu a{
    padding-left: 1rem;
    display: block;
    color: #fff;
    font-size: 1.2rem;
    /* margin-left: 10px; */
    justify-content: space-around;
    padding: 10px;
}

.sidebar-menu a.active{
    background: #fff;
    padding-top: 1rem;
    padding-bottom: 1rem;
    color: var(--main-color);
    border-radius: 30px 0px 0px 30px;



}

.sidebar-menu a span:first-child{
    font-size: 1.5rem;
    padding-right: 1rem;
}


.main-content{
    margin-left: 345px;
}

header{
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    /* font-size: 2px; */
}

header h2{
    color: #222;
}

header label span{
    font-size: 1.7rem;
    padding-right:1rem ;
}

.search-wrapper{
    border: 1px solid #ccc;
    border-radius: 30%;
    height: 30px;
    display: flex;
    align-items: center;
    overflow-x: hidden;
}

.search-wrapper span{
    display: inline-block;
    padding: 0rem 1rem;
    font-size: 1rem;
}
.search-wrapper input{
    height: 100%;
    padding: .5rem;
    border: none;
    outline: none;
}
.user-wrapper{
    display: flex;
    align-items: center;
    font-size: 15px;
}
.user-wrapper img{
    border-radius: 100%;
    height: 50px;
    width: 50px;
    margin-right: 1rem;
}

/* .user-wrapper h7{
    margin-bottom: 0rem !important;
} */

.user-wrapper small{
    display: inline-block;
    color: var(--text-grey);
    /* margin-top: -10px !important; */
}

.main{
    margin-top: 200px;
    padding: 2rem 1.5rem;
    background: #f1f5f9;
    /* min-height: calc(100vh-90px); */
}
.cards{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 2rem;
    padding: 20px;
    margin-top: 1rem;
}
.card-single{
    display: flex;
    justify-content: space-between;
    background: #e5dddd;
    padding: 2rem;
    border-radius: 2px;
}
.card-single div:last-child span{
    font-size: 3rem;
    color: var(--main-color);

    
 
}
.card-single div:first-child span{
    /* font-size: 4rem; */
    color: var(--text-grey);
}
.card-single:last-child{
    background: var(--main-color);
}
.card-single:last-child h1,
.card-single:last-child div:last-child span
.card-single:last-child div:first-child span{
    color: #fff;
}