@import url(root.css);

#hamburger-menu {
    aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
    position: relative;
}

#hamburger-menu div {
    width: 100%;
    height: 4px;
    background-color: var(--color-base-white);
    border: none;
    border-radius: 2px;
    opacity: 1;
    position: absolute;
    rotate: 0deg;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    transition: all .3s ease-in-out;
}

#hamburger-menu div:nth-child(1) {
    rotate: 0deg;
    top: 25%;
}
#hamburger-menu div:nth-child(2) {
    rotate: 0deg;
    top: 50%;
}
#hamburger-menu div:nth-child(3) {
    rotate: 0deg;
    top: 75%;
}

:root {
    --hambIcon_line_deg: 45deg;
    --hambIcon_line_degNeg: calc(-1 * var(--hambIcon_line_deg));    
}

#btn-sidebar-toggle[aria-active="true"] #hamburger-menu div:nth-child(1) {
    rotate: var(--hambIcon_line_deg);
    top: 50%;
}
#btn-sidebar-toggle[aria-active="true"] #hamburger-menu div:nth-child(2) {
    width: 0%;
}
#btn-sidebar-toggle[aria-active="true"] #hamburger-menu div:nth-child(3) {
    rotate: var(--hambIcon_line_degNeg);
    top: 50%;
}