@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Outfit', sans-serif;
}

body {
	height: 700px;
}

nav.menu-lateral{
	width: 45px;
	height: 700px;
	background-color: steelblue;
	padding: 30px 0 0 1%;
		
	position: fixed;
	top: 30;
	left: 0;
	overflow: hidden;
	transition: .2s;
}

nav.menu-lateral:hover{
	width: 310px;
}


.btn-expandir{
	width: 100%;
	padding-left: 2px;
}

.btn-expandir > i{
	color: white;
	font-size: 24px;
	cursor: pointer;
} 

ul{
	height: 100%;
	list-style-type: none;
}

ul li.item-menu:hover{
	background: LightSteelBlue;
}

ul li.item-menu a{
	color: white;
	text-decoration: none;
	font-size: 17px;
	padding: 5px 4%;
	display: flex;
	margin-bottom: 30px;
	margin-left: 5px;
}

ul li.item-menu a .txt-link{
	margin-left: 35px;
}

ul li.item-menu2:hover{
	background: SteelBlue;

}

ul li.item-menu2 a{
	color: navy;
	text-decoration: none;
	font-size: 17px;
	padding: 5px 4%;
	display: flex;
	margin-bottom: 10px;
	margin-left: 5px;
}

ul li.item-menu2 a .txt-link{
	margin-left: 15px;
}


label{
	font-size: 10px;
	color: grey;
}


input{
	
		border-radius:5px;
		text-align:left;
		font-size:11px;
		font-family: arial;
		outline:none;
		margin-bottom: 10px;
		height: 25px;
		border: 0;
}

select{
	
		border-radius:5px;
		text-align:left;
		font-size:11px;
		font-family: arial;
		outline:none;
		margin-bottom: 10px;
		height: 25px;
		border: 0;
}

button{
	
		border-radius:30px;
		text-align:center;
		font-size:10px;
		font-family: arial;
		outline:none;
		margin-left: 10px;
		margin-top: 10px;		
		height: 25px;
		border: 0;
		width: 70px;
		background-color: steelblue;
		color: white;
		cursor: pointer;

}

button:hover {
    background-color: navy;
}

button:disabled {
    background-color : DarkGray;
}



label{
	
		text-align:left;
		font-size:10px;
		font-family: arial;
		color: navy;
		width: 50px;
}