.rc-header__toggle {
    width: 44px;
    height: 44px;
    overflow: hidden;
}

.rc-header__toggle-bar {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    margin: 0;
    transform-origin: center;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.rc-header__toggle-bar + .rc-header__toggle-bar {
    margin-top: 0;
}

.rc-header__toggle-bar:nth-child(1) {
    transform: translate(-50%, -7px);
}

.rc-header__toggle-bar:nth-child(2) {
    transform: translate(-50%, -1px);
}

.rc-header__toggle-bar:nth-child(3) {
    transform: translate(-50%, 5px);
}

.rc-header__toggle.is-open .rc-header__toggle-bar:nth-child(1) {
    transform: translate(-50%, -1px) rotate(45deg);
}

.rc-header__toggle.is-open .rc-header__toggle-bar:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, -1px) scaleX(0.4);
}

.rc-header__toggle.is-open .rc-header__toggle-bar:nth-child(3) {
    transform: translate(-50%, -1px) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
    .rc-header__toggle-bar {
        transition: none;
    }
}
