﻿.sidebar {
    z-index: 1031;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

.sidebarContent {
    z-index: 1031;
    position: fixed;
    background-color: #7547a3;
    width: 320px;
    height: 600px;
    min-height: 100%;
    border-radius: 0 24px 24px 0;
    padding: 16px 8px 16px 8px;
}

.sidebarContentStart {
    animation-name: sidebarContentStart;
    animation-duration: 0.5s;
}

.sidebarContentEnd {
    animation-name: sidebarContentEnd;
    animation-duration: 0.3s;
}

.sidebar > div ul {
    list-style-type: none;
    padding: 0;
}

.sidebar > div a {
    color: white;
    padding-top: 6px;
    padding-bottom: 6px;
    border-radius: 8px;
    background-color: #7547a3;
}

    .sidebar > div a:hover {
        color: white;
        background-color: #563d7c;
    }

.sidebar li {
}

.sidebar .nav-link span {
    color: white;
    text-transform: uppercase;
    font-size: 16px;
}

.sidebar img {
    opacity: 0.8;
}

.sidebar .dropdown-menu {
    background-color: #7547a3;
    border: 1px solid white;
    width: 100%;
    padding-left: 8px;
    margin: 0;    
}

    .sidebar .dropdown-menu .dropdown-item {
        text-transform: uppercase;
        font-size: 12px;
    }

        .sidebar .dropdown-menu .dropdown-item span {
        }

@keyframes sidebarContentStart {
    from {
        left: -320px;
    }

    to {
        left: 0px;
    }
}

@keyframes sidebarContentEnd {
    from {
        left: 0px;
    }

    to {
        left: -320px;
    }
}