


a, a:hover, a:focus {
    transition: all 0.3s;
}

.navbar {
    padding: 15px 10px;
    background: rgba(129,0,128,0.2) url("https://www.transparenttextures.com/patterns/subtle-grey.png");
    border: none;
    border-radius: 0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
}

.navbar .navbar-btn {
    color: #fff;
    background-color: rgba(129,0,128,0.6);
    border-color: rgba(129,0,128,0.6);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
}

.navbar .navbar-btn:hover,
.navbar .navbar-btn:focus {
    background-color: rgba(129,0,128,0.8);
    border-color: rgba(129,0,128,1);
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    height: calc(100vh + 1px);
    z-index: 9990;
    background: #7386D5;
    color: #fff;
    transition: all 0.3s;
    overflow-y: visible;
    overflow-x: hidden;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}




#sidebar.active {
    left: 0;
}

#dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border: 1px solid #fff;
    border-radius: 3px;
}
#dismiss:hover {
    background: #fff;
    color: #810080;
}

.overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9980;
    display: none;
    top: 0;
}

#sidebar .sidebar-header {
    padding: 10px;
    background: #810080;
    background: #810080 url("https://www.transparenttextures.com/patterns/ravenna.png");
    background-size: contain;
    background-size: 125%;
    border-radius: 4px 4px 0px 0px;
    text-shadow: 0 1px 3px #333;
}

#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #47748b;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}


#sidebar ul li.active > a, a[aria-expanded="true"] {
    color: #fff;
    background: #6d7fcc;
}


a[data-bs-toggle="collapse"] {
    position: relative;
}

a[aria-expanded="false"]::before, a[aria-expanded="true"]::before {
    content: '\e259';
    display: block;
    position: absolute;
    right: 20px;
    font-family: 'Glyphicons Halflings';
    font-size: 0.6em;
}
a[aria-expanded="true"]::before {
    content: '\e260';
}




/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
#content {
    width: 100%;
    transition: all 0.3s;
    position: relative;
 /*   min-height: 100vh;
    top: 0;
    right: 0; */
}


/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .navbar {
        display: none;
    }
    #sidebar {
        width: 250px;
        position: relative;
        top: 0;
        left: 0;
        height: auto;
        z-index: 9;
        background: unset;
        color: #fff;
        transition: all 0.3s;
        overflow-y: hidden;
        box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.5);
        margin-bottom: 25px;
        float: left;
        border-radius: 4px;
    }

    .wrapper {
        width: 250px;
        float: left;
        margin-bottom: 25px;
        margin-top: 25px;
    }

    #dismiss {
        display: none;;
    }
}