@import url('https://fonts.googleapis.com/css?family=Open+Sans');

.custom_menu {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 100%;
	display: none;
	background-color: #555;
	padding: 15px 0;
}

.custom_menu .fechar_menu {
	border-radius: 50%;
	border: 1px solid #ccc;
	padding: 10px 20px;
	font-weight: 300;
	font-size: 2em;
	color: #fff;
	margin-bottom: 20px;
	float: right;
	clear: both;
	cursor: pointer;
}

.custom_menu.active {
	left: 0 !important;
	display: block;
}

.custom_menu ul li {
	list-style: none;
	width: 100%;
	margin: 0;
	padding: 0;
}

.custom_menu ul li a {
	color: #fff;
	font-family: 'Open Sans', sans-serif;
	font-size: 2em;
	font-weight: 400;
	float: left;
	display: block;
	width: 100%;
	padding: 10px 0 !important;
	text-align: center;
}

.custom_menu ul li a:hover {
	background-color: #fdb813;
	color: #fff;
}