/*--side bar--*/

.sidebar {
    position:fixed;
    z-index: 999;
    height: 100vh;
    right: 0;
    display: none;
    flex-direction: column;
    background-color: hsla(0, 100%, 11%, 0.555);
    font-size: 30px;
}

.sidebar ul {
    list-style: none;
    
}

.sidebar ul li {
    width:300px;
    height: 84px;
    padding-right: 30px;
}

.sidebar ul li i {
    display: flex;
    height: 100%;
    text-decoration: none;
    align-items: center;
    justify-content: right;
}

.sidebar ul li a {
    display: flex;
    height: 100%;
    text-decoration: none;
    align-items: center;
    justify-content: right;
}

.sidebar ul li:hover, .sidebar ul li:active {
    background-color: #FCF7EC;
}

.sidebar ul li:hover a, .sidebar ul li:hover i {
    color: #390000;
}