/*
 *		MOBILE SLIDER MENU STYLESHEET
 *
 *		@link			https://zopixa.com
 *		@author		zopixa
 *		@package	WordPress
 *
 *		WARNING -- PLEASE DO NOT EDIT THIS FILE UNLESS YOU KNOW WHAT YOU'RE DOING
*/


/* DEFAULT */

#Zopixa-Menu {
	display: grid;
	row-gap: 2.5%;
	background: var(--color-secondary);
	padding: 10vw;
	text-align: right;
	position: fixed;
	right: 0;
	top: 0;
	transform: translate3d(100vw, 0, 0);
	transition: transform .3s cubic-bezier(0, .52, 0, 1);
	z-index: 99999999999999;
	width: 100vw;
	height: 100vh; }

	#Zopixa-Menu.show { transform: translate3d(0vw, 0, 0); }

	#Zopixa-Menu a:link,
	#Zopixa-Menu a:visited,
	#Zopixa-Menu a:active,
	#Zopixa-Menu a:hover {
		color: #fff;
		font-size: 3.5rem;
		font-weight: 600;
		line-height: 1.5;
		text-decoration: none; }


/** MOBILE RESPONSIVE **/

@media screen and (max-width: 767px) {

	.menu-slider-button { display: inline-block; }

}
