body {
    background: #fff;
}

#side_nav {
    background: #325f8f;
    min-width: 250px;
    max-width: 250px;
    transition: all 0.3s;
}

.content {
    min-height: 100vh;
    width: 100%;
}

hr.h-color {
    background: #eee;
}

.sidebar li.active {
    background: #eee;
    border-radius: 8px;
}

.sidebar li.active a,
.sidebar li.active a:hover {
    color: #000;
}

.sidebar li a {
    color: #fff;
}

.ppl-logo {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.ppl-logo img {
    max-width: 400px;
}


/* Tooltip */
.tooltip-inner {
    background-color: #00487f !important;
    color: white !important;
}
.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #00487f !important;
}
.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #00487f !important;
}
.tooltip.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: #00487f !important;
}
.tooltip.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: #00487f !important;
}

@media (max-width: 767px) {
    #side_nav {
        margin-left: -250px;
        position: absolute;
        min-height: 100vh;
        z-index: 1;
    }

    #side_nav.active {
        margin-left: 0;
    }
}