@import "../variables";

@if index($hamburger-animations, default) {
    .#{$hamburger-class-name}--default {
        &.#{$hamburger-active-class-name} {
            span.bar {
                top: 0;

                &:nth-child(1) {
                    transform: rotate(45deg);
                }

                &:nth-child(2) {
                    display: none;
                }

                &:nth-child(3) {
                    transform: rotate(-45deg);
                }
            }
        }
    }
}
