﻿.sidebar {
    position: fixed;
    top: 0;
    left: -155px;
    width: 150px;
    height: 100%;
    background-color: #ebebeb;
    box-shadow: 2px 0 10px 3px rgba(0,0,0,0.3);
    transition: left 0.3s ease-in-out;
    overflow-y: auto;
    z-index: 997;
}

    .sidebar.show {
        left: 0;
    }

.h-50px {
    height: 50px;
    max-height: 50px;
}

.sidebar-top {
}

.sidebar-menu {
}

    .sidebar-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .sidebar-menu li {
        margin: 0;
        text-align: right;
    }

    .sidebar-menu a {
        display: block;
        padding: 15px 20px;
        color: #4D4D4D;
        text-decoration: none;
        transition: background-color 0.3s ease-in-out;
    }

        .sidebar-menu a:hover {
            background-color: #415A77;
            color: #ebebeb;
        }

    .sidebar-menu button {
        border: none;
        background-color: transparent;
        color: #4D4D4D;
        text-transform: uppercase;
        font-size: 14px;
        display: block;
        padding: 15px 20px;
        text-decoration: none;
        transition: background-color 0.3s ease-in-out;
        margin: 0;
        width: 100%;
        text-align: right;
    }

        .sidebar-menu button:hover {
            background-color: #415A77;
            color: #ebebeb;
        }

    .sidebar-menu form {
        margin: 0;
        padding: 0;
    }

.sidebar-item {
    text-transform: uppercase;
    font-size: 14px;
}

.title-span {
    position: relative;
    left: -25px;
}

.topbar {
    position: relative;
    width: 100%;
    background-color: #415A77;
    color: #ebebeb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 13px;
    padding-inline: 0 20px;
    text-transform: uppercase;
    font-size: 13px;
    z-index: 998;
    height: 100%;
}

.toogle-size {
    width: 35px;
    height: 35px;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .sidebar-header span {
        margin-left: 40px;
        font-weight: bold;
        font-size: 14px;
    }

.sidebar-toggle {
    padding: 0;
    margin: 0;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    background-color: transparent;
    box-shadow: none;
    transition: box-shadow 0.2s ease-in;
}

    .sidebar-toggle:focus {
        outline: none;
    }

    .sidebar-toggle:hover {
        /*box-shadow: 0 0 4px 2px #242424;*/
        background-color: #537297;
    }

.username {
    color: #ebebeb;
    font-weight: bold;
    text-align: right;
}

.sidebar-anchor {
    font-weight: bold;
}
