/* 
font-family: 'Abril Fatface', cursive;
font-family: 'Raleway', sans-serif;
*/

.display-maximo {
	display: none;
}

.display-grande {
	display: none;
}

.display-mediano {
	display: none;
}

.display-chico {
	display: none;
}

body, html{
	width:100%;
	height:100%;
	scroll-behavior: smooth;
}

input:focus {
    outline:none;
}

/* PRE LOADER */

*,*:after, *:before{
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#contenedor_carga{
	background-color: #df758b;
	height: 100%;
	width: 100%;
	position: fixed;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	z-index: 10000;
}

#carga{
	border: 6px solid #fff;
	border-top-color: #df758b;
	border-top-style: #df758b;
	height: 40px;
	width: 40px;
	border-radius: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	-webkit-animation: girar 1.5s linear infinite;
	-o-animation: girar 1.5s linear infinite;
	animation: girar 1.5s linear infinite;
}

@keyframes girar {
	from{ transform: rotate(0deg); }
	to { transform: rotate(360deg); }


