/* MENÚ HAMBURGUESA */

@media (max-width: 899px) {
	.menu-principal-container {
		clear: both;
	}

	.main-navigation {
		display: block;
	}

	.main-navigation ul {
		display: none;
		list-style: none;
		margin: 0 auto;
		padding-left: 0;
		position: relative;
	}

	.menu-toggle,
	.main-navigation.toggled ul {
		display: block;
	}

	button.menu-toggle {
		position: absolute;
		top: 43px;
		right: 0;
		overflow: hidden;
		width: 30px;
		height: 30px;
		cursor: pointer;
		border: none;
		text-indent: -999em;
		background: url("img/ico_menu.svg") no-repeat center top;
		background-size: 30px auto;
	}

	.main-navigation.toggled .menu-toggle {
		background-position: center bottom;
	}

	button.menu-toggle:hover {
		opacity: 0.9;
		cursor: pointer;
	}

	#menu-principal {
		margin-bottom: 30px;
		min-height: 100vh;
	}

	#menu-principal a {
		text-decoration: none;
		font-size: 1.875rem;
		padding: 15px 5px 15px 0;
		display: block;
		color: var(--bodytext);
		border-bottom: 1px solid var(--bodytext);
	}

	#menu-principal a:hover {
		background-color: var(--bgpage);
	}

	.open {
		position: absolute;
		right: 10px;
		top: 11px;
		color: #fff;
		font-weight: 500;
		text-align: center;
		width: 24px;
		height: 24px;
		line-height: 24px;
	}
}

/* VERSIONS GRANS */

@media (min-width: 900px) {
	.menu-toggle {
		display: none;
	}
}
