/*----------------------------------------*/
/*  HAMBURGER BUTTON
/*----------------------------------------*/

#mobile-menu-toggle {
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
}

#mobile-menu-toggle .bar {
    position: absolute;
    width: 24px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#mobile-menu-toggle .bar:nth-child(1) {
    transform: translateY(-8px);
}
#mobile-menu-toggle .bar:nth-child(2) {
    transform: translateY(0);
}
#mobile-menu-toggle .bar:nth-child(3) {
    transform: translateY(8px);
}

#mobile-menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg);
}
#mobile-menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}
#mobile-menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg);
}

/*----------------------------------------*/
/*  MENU
/*----------------------------------------*/

#mobile-menu {
    display: none;
    background: #141414;
    padding: 15px 0;
    margin-top: 1px;
    position: relative;
    z-index: 999;
    border-bottom: 1px solid #33353C;
    box-shadow: 0 4px 8px rgb(0, 0, 0);
}

#mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0 20px;
}

#mobile-menu-list li {
    border-bottom: 1px solid #33353c60;
}

#mobile-menu-list li:last-child {
    border-bottom: none;
}

#mobile-menu-list li a {
    padding: 15px 20px;
    text-decoration: none;
    color: #fff;
    display: block;
}

#mobile-menu-list li a:hover {
    background-color: #33353c3d;
}