@use "../base" as *; @use "../abstracts" as *; .mobile-menu-overlay { position: fixed; left: 0; top: 66px; width: 100%; height: 100%; z-index: 99; transition: all 0.2s; background: rgba(0, 0, 0, 0.2); backdrop-filter: blur(2px); pointer-events: none; opacity: 0; &.active { opacity: 1; } } .block-mobile-menu-toggler { @include breakpoint(large) { display: none; } button { cursor: pointer; display: flex; flex-direction: column; justify-content: center; gap: 3px; width: 25px; height: 32px; .line { display: block; width: 14px; height: 2px; background: $black; border-radius: 30px; transition: all 0.3s; } &.active { .line { &--middle { transform: translateX(-100%); opacity: 0; } &--top { transform: rotate(45deg) translate(10%, 7px); } &--bottom { transform: rotate(-45deg) translateY(-6px); } } } } }