/* ===============================
   SIDE MENU
================================= */

.side-menu {
    position: fixed;
    top: 0;
    right: -260px;
    width: 250px;
    height: 100vh;
    box-sizing: border-box;
    overflow-y: auto;

    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.35)),
        url("/assets/img/side-menu.jpg");
    background-size: cover;
    background-position: center;

    padding: 80px 25px;
    transition: right 0.55s cubic-bezier(0.77,0,0.175,1);
    z-index: 1050;
}

.side-menu.active {
    right: 0;
}


/* ===============================
   SIDE MENU LOGO
================================= */

.side-logo {
    text-align: center;
    margin-bottom: 40px;
}

.side-logo img {
    height: 45px;
    max-width: 100%;
    filter: brightness(0) invert(1);
}


/* ===============================
   MENU LIST
================================= */

.side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu ul li {
    opacity: 0;
    transform: translateX(20px);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.side-menu.active ul li {
    opacity: 1;
    transform: translateX(0);
}

.side-menu ul li a {
    display: block;
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0;
}


/* ===============================
   OVERLAY
================================= */

#overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1040;
}

#overlay.active {
    opacity: 1;
    visibility: visible;
}