.sidebar-text,
.sidebar-text:hover,
.sidebar-text:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

#wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    background: #343a40;
    color: #fff;
    transition: all 0.3s;
    overflow-y: scroll;
}

#sidebar {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}
#sidebar::-webkit-scrollbar {
    display: none;  /* Safari and Chrome */
}

#sidebar hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.sidebar.active {
    margin-left: -250px;
}

.sidebar-header {
    padding: 20px;
    background: #1d1d1d;
}

.sidebar-header .navbar-brand img {
    width: 200px;
}

.sidebar-header .navbar-brand {
    margin: 0 !important;
}

.sidebar-header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidebar-components {
    padding: 20px 0;
    /*border-bottom: 1px solid #607d8b;*/
}

.sidebar-paragraph {
    color: #fff;
    padding: 10px;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

a.right-arrow[data-toggle="collapse"] {
    position: relative;
}

.sidebar-button {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}

.sidebar-button:hover {
    color: #607d8b;
    background: #fff;
}

.sidebar-subitem {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #3c515a;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

a.nav-button {
    background: #fff;
    color: #607d8b;
}

.bottomleft {
    bottom: 0;
    position: absolute;
    min-width: 250px;
    max-width: 250px;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: calc(100vw - 250px);
    margin-left: 250px;
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #content {
        width: 100vw;
        margin-left: 0;
    }

    #sidebar {
        margin-left: -250px;
    }

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

    #sidebarCollapse span {
        display: none;
    }
}

.sidebar-text {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.sidebar-button {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.sidebar-button i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    margin-right: 5px;
    margin-left: 10px;
}