@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{   
    width: 100%;
    overflow-x: hidden;
}

.side-nav{
    width: 100%;
    height: 88vh;
    overflow-y: auto;               
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.small-b{
    font-weight: 900;
    color: #787878;
}

.title1{
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #040E26;
}

.title2{
    margin: 0;
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #00aeef;
}



/*login Page Start*/

.login-background{
    height: 100vh;
    width: 100%;
    background-image: url(https://polymertubing.in/Shubham_Codes/admin-panel/assets/images/login-banner.png);
    background-size: cover;
}

.login-card{
    width: 70%;
    min-height: 30rem;     
    display: flex;
    justify-content: center;
    align-item: center;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

/*login Page End*/

.section-header p{
    margin: 0;
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #079A48;
}

.section-header h1{
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #040E26;
}

.viewmore-box{
    display: flex;
    justify-content: right;
    align-items: center;
}

.view-btn{
    background-color: #079A48;
    color: #ffffff;
    font-weight: 700;
}


/*Dashboard Start*/
.main-container{
    height: 88vh;
    overflow-x: auto;
}

.overviwe-card {
    min-height: 5rem;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.overviwe-icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to bottom right, #d550fb, #9603bf);
    border-radius: 10px;
    font-size: 30px;
    color: #ffffff
}

.icon-box {
    width: 160px;
    height: 160px;
    background-image: linear-gradient(to bottom right, #d550fb, #9603bf);
    border-radius: 10px;
}

.pending {
    width: 20px;
    height: 20px;
    /* background-image: linear-gradient(to bottom right, #f7fb50, #bfb903); */
    border-radius: 50%;
    background-color: #ffc500;
}

.approved {
    width: 20px;
    height: 20px;
    /* background-image: linear-gradient(to bottom right, #f7fb50, #bfb903); */
    border-radius: 50%;
    background-color: #679c00;
}

/*Dashboard End*/


/*Profile Start*/
.hero-section{
    width: 100%;
    height: 20rem;
    overflow: hidden;
}

.profile-banner{
    width: 100%;
    height: 16rem;
    overflow: hidden;
    border-radius: 15px;
}

.profile-info{
    width: 100%;
    display: flex;
    justify-content: center;        
}
.profile-info .card{
    width: 90%;
    height: 8rem;
    border-radius: 15px;
    position: relative;
    top: -4rem;
}

.profile-info .card .card-body{
    display: flex;
    /*justify-content: space-between;*/
    align-items: center;
}

.profile-logo{
    width: 5rem;
    height: 5rem;      
    /*border: 1px solid black;*/
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

/*Profile Ends*/

