﻿HTML CSS JSResult Skip Results Iframe
EDIT ON
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

* {
    list-style: none;
    text-decoration: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    background: #f5f6fa;
}

.wrapper .sidebar {
    background: rgb(5, 68, 104);
    position: fixed;
    top: 0;
    left: 0;
    width: 225px;
    height: 100%;
    padding: 20px 0;
    transition: all 0.5s ease;
}

    .wrapper .sidebar .profile {
        margin-bottom: 30px;
        text-align: center;
    }

        .wrapper .sidebar .profile img {
            display: block;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto;
        }

        .wrapper .sidebar .profile h3 {
            color: #ffffff;
            margin: 10px 0 5px;
        }

        .wrapper .sidebar .profile p {
            color: rgb(206, 240, 253);
            font-size: 14px;
        }

    .wrapper .sidebar ul li a {
        display: block;
        padding: 13px 30px;
        border-bottom: 1px solid #10558d;
        color: rgb(241, 237, 237);
        font-size: 16px;
        position: relative;
    }

        .wrapper .sidebar ul li a .icon {
            color: #dee4ec;
            width: 30px;
            display: inline-block;
        }



        .wrapper .sidebar ul li a:hover,
        .wrapper .sidebar ul li a.active {
            color: #0c7db1;
            background: white;
            border-right: 2px solid rgb(5, 68, 104);
        }

            .wrapper .sidebar ul li a:hover .icon,
            .wrapper .sidebar ul li a.active .icon {
                color: #0c7db1;
            }

            .wrapper .sidebar ul li a:hover:before,
            .wrapper .sidebar ul li a.active:before {
                display: block;
            }

.wrapper .section {
    width: calc(100% - 225px);
    margin-left: 225px;
    transition: all 0.5s ease;
}

    .wrapper .section .top_navbar {
        background: rgb(7, 105, 185);
        height: 50px;
        display: flex;
        align-items: center;
        padding: 0 30px;
    }

        .wrapper .section .top_navbar .hamburger a {
            font-size: 28px;
            color: #f4fbff;
        }

            .wrapper .section .top_navbar .hamburger a:hover {
                color: #a2ecff;
            }

    .wrapper .section .container {
        margin: 30px;
        background: #fff;
        padding: 50px;
        line-height: 28px;
    }

body.active .wrapper .sidebar {
    left: -225px;
}

body.active .wrapper .section {
    margin-left: 0;
    width: 100%;
}

/*New Implimentation*/
/*.card-body {
    padding: 0.75rem 0.5rem;
}*/

/*.page-content {
    padding: calc(50px + 24px) calc(2px / 2) 60px calc(2px / 2);
}
.page-title-box {
    padding: 10px;
}*/
/*.page-title-box h4 {
        font-size: 20px !important;
}*/

/*Model Popup*/
.rv-model-footer {
    padding-bottom: 20px;
    padding-top: 5px;
    margin-bottom: -20px;
    margin-top: 16px;
}

/*menu style*/
.menu-icon {
    display: inline-block;
    min-width: 1.75rem;
    padding-bottom: 0.125em;
    font-size: 14px;
    line-height: 1.40625rem;
    vertical-align: middle;
    transition: all .4s;
}

#sidebar-menu ul li a i{
    font-size: 14px;
}

.mat-accordion .mat-expansion-panel__summary .after {
    font-size: 16px;
}
.dashboard {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
}
