﻿p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
}

.navbar {
    padding: 15px 10px;
    background: #253237;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed white;
    margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

#sidebar {
    min-width: 250px;
    max-width: 250px;
    background: #253237;
    transition: all 0.3s;
}

.active {
    background-color: #ff1616 !important;
}

.side-nav-invisible {
    margin-left: -250px;
}

.nav-link:hover {
    filter: invert(38%) sepia(100%) saturate(7173%) hue-rotate(353deg) brightness(108%) contrast(104%);
}

.active .nav-link:hover {
    filter: invert(0%) sepia(100%) saturate(0%) hue-rotate(360deg) brightness(108%) contrast(104%);
}

.active a:hover {
    color: white !important;
}


    #sidebar .sidebar-header {
        padding: 20px;
        background: #253237;
        border-bottom: 1px solid white;
    }

    #sidebar ul.components {
        padding: 20px 0;
        border-bottom: 1px solid white;
    }

    #sidebar ul p {
        padding: 10px;
    }

    #sidebar ul li a {
        padding: 0.5rem 1rem 0.5rem 1rem;
        font-size: 1rem;
        display: block;
    }

.sidebar li .submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    text-indent: 1rem;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul.CTAs {
    padding: 20px;
}

    ul.CTAs a {
        text-align: center;
        font-size: 0.9em !important;
        display: block;
        border-radius: 0.5rem;
    }

a.log-out {
    background: #ff1616;
    color: white;
}

    a.log-out:hover {
        background: white;
        color: #ff1616;
    }

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: calc(100% - 250px);
    min-height: 100vh;
    transition: all 0.3s;
}

.full-content {
    width: inherit !important;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
    @media (max-width: 768px) {
        #sidebar {
        margin-left: -250px;
    }

    #sidebarCollapse span {
        display: none;
    }
}
