/* ==========================================================================
   MENU MOBILE BAR - Toggle button animations
   ========================================================================== */

/* Base transitions */
.menu-toggle-button .fade-on-open {
	transition: opacity 0.2s ease-out;
}

.menu-toggle-button .transform-on-open {
	transition: transform 0.2s ease-out;
}

/* Active state (menu open) */
body.show-menu .menu-toggle-button .fade-on-open {
	opacity: 0;
}

body.show-menu .menu-toggle-button .transform-on-open {
	transform: translateY(-5px);
}

@media screen and (min-width: 1026px) {
	.menu-toggle-button {
		display: none !important;
	}
}
