.contacto
{
	width: 100%;
	height: 100vh;
}
.relleno
{
	padding: 50px 100px;
}
.textocontacto
{
	font-weight: 10px;
	margin: 0 0 20px;
	padding: 0;
	font-size: 30px;
	text-align: center;
}
.relleno p
{
	font-size: 18px;
}
.barralateral-contacto
{
	position: fixed;
	top: 50%;
	left: -350px;
	transform: translateY(-50%);
	width: 350px;
	height: auto;
	padding: 40px;
	background: #fff;
	box-shadow: 0 20px 50px rgba(0,0,0,.5);
	box-sizing: border-box;
	transition: 0.5s;

}
.barralateral-contacto.active
{
	left: 0px;
}
.barralateral-contacto input,
.barralateral-contacto textarea
{
	width: 100%;
	height: 36px;
	padding: 5px;
	margin-bottom: 10px;
	box-sizing: border-box;
	border: 1px solid rgba(0,0,0,.5);
	outline: none;
}
.barralateral-contacto textarea
{
	height: 60px;
	resize: none;
}
.barralateral-contacto input[type="submit"]
{
	background: #ff5100;
	color: #fff;
	cursor: pointer;
	border: none;
	font-style: 18px;
}
.barralateral-contacto .textocontacto
{
	margin: 0 0 20px;
	padding: 0;
	font-weight: 50px;

}
.toggle
{
	position: absolute;
	top: 0;
	right: -36px;
	width: 38px;
	height: 38px;
	text-align: center;
	padding-top: 15px;
	cursor: pointer;
	background: #f00;
}
.toggle:before
{
	content: '\f003';
	font-family: fontAwesome;
	color: #fff;
	font-size: 30px;
}
.toggle.active:before
{
	content: '\f00d';
}
@media (max-width: 768px) {
	.barralateral-contacto
	{
		width: 100%;
		height: 100%;
		left: -100%;
	}
	.barralateral-contacto .toggle
	{
		top: 50%;
		transform: translateY(-50%);
		transition: 0.5s;
	}
		.barralateral-contacto.active .toggle
		{
			top: 0;
			right: 0;
			transform: translateY(0);
		}
		.scroll
		{
			width: 100%;
			height: 100%;
			overflow-y: auto;
		}

}