.sidebar {
    height: 100vh;
    width: 0;
    position: fixed;
    top: 50px;
    right: 0;
    background-color: #FFF;
    overflow-x: hidden;
    overflow-y: auto;
    transition: width 0.5s ease, opacity 0.5s ease;
    padding: 60px 0;
    opacity: 0;
    box-shadow: 5px 10px #000;
    z-index: 99;
}

li::marker {
    content: none !important;
}

.sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 16px;
    color: #000;
    display: block;
    transition: 0.3s;
}

.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    color: #000;
}

.sidebar.open {
    width: 250px;
    opacity: 1;
}

.sidebar .menu-item .sub-menu {
    border-radius: 5px;
    background-color: #F1F1F1;
    position: relative;
}

.sidebar .menu-item .sub-menu a:hover {
    color: #F4B351;
}

.sidebar .menu-link {
    font-weight: 400;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: none;
}

.overlay.show {
    display: block;
    opacity: 1;
}