/** buttons **/
body {
    padding: 0;
    margin: 0;
    background-color: white;
}

/*Common Sidebar Design */

.sidebar-section {
    position: fixed;
    width: 250px;
    height: 100vh;
    background: whitesmoke;
    padding-top: 30px;
    padding-left: 30px;
    top: 0;
    left: 0;
    padding-left: 10px;
    padding-right: 10px;
    width: 200px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile {
    display: none;
}

.mobile-top {
    display: none;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    margin-top: 20px;
    margin-left: 10px;

}

.logo img {
    width: 100px;
    height: 30px;
}

.logo .logo-img {
    margin-right: 1rem;
    font-size: 30px;
}

.menu-section {

    margin-top: 10px;
    margin-left: 10px;

}

.menu-section a {
    width: 100%;
    font-size: 1.1rem;
    color: black;
    display: flex;
    align-items: center;
    line-height: 55px;
    text-decoration: none;
}

.menu-section .option:hover {
    font-size: 1.2rem;
    font-weight: bold;
    transition: 0.3s;
}

.menu-section .icon {
    margin-right: 1rem;
    font-size: 25px;

}

.menu-section .profile_image {
    height: 30px;
    width: 30px;
    margin-right: 1rem;
    border-radius: 50%;
    padding-top: 10px;
}

/* profile css*/
.common-margin {
    margin-left: 90px;
    display: inline-flex;
    position: absolute;
    height: 300px;
    width: 900px;
    top: 100px;

}

/*Media Query*/

@media screen and (min-width:700px) and (max-width:1300px) {
    .sidebar-section {
        padding-left: 10px;
        padding-right: 10px;
        width: 70px;
        height: 100vh;

    }

    .logo .logo-png {
        display: none;
    }

    .logo .logo-img {
        margin-right: 1rem;
        font-size: 30px;
    }

    .menu-section .option {
        display: none;
    }

}

@media screen and (max-width:700px) {
    .sidebar-section {
        display: none;
    }

    .mobile {
        position: fixed;
        bottom: 0;
        background-color: white;
        width: 100%;
        display: flex;
        justify-content: space-around;
        padding-top: 15px;
        padding-bottom: 5px;
        border-top: 1px solid #e2e1e1;
    }

    .mobile-view img {
        height: 35px;
        width: 35px;
        margin-right: 1rem;
        border-radius: 50%;
    }

    .mobile-view {
        font-size: 25px;

    }

    .mobile-view a {
        color: black;
    }

    .mobile-view:hover {
        font-size: 33px;
        transition: 0.2s;
    }

    .mobile-top {
        position: fixed;
        top: 0;
        background-color: white;
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding-top: 15px;
        padding-bottom: 5px;
        border-top: 1px solid #e2e1e1;
        border-bottom: 1px solid #e2e1e1;
    }

    .mobile-top img {
        width: 150px;
        height: 40px;
        border-radius: 0;
    }

    .mobile-top .mobile-view {
        padding-left: 10px;
        padding-right: 10px;
    }

}