html,body {
	margin: 0;
	padding: 0;
}
body{
	background-color: rgba(135,180,255,0.05);
	padding-bottom: 500px;
	font-family: 'Quicksand', sans-serif;
	font-size: 16px;
	overflow-x: hidden;
}

::selection {
	background: rgba(135,180,255,0.4);
}

input, textarea, select{
	border-radius: 3px;
	border:1px solid #aaa;
	padding: 4px;
	color: #555;
}

input:focus, textarea:focus, select:focus{
	outline: 0;
	border-width: 2px;
}

.quitar{
	border:2px solid black;
	text-shadow: 0px 1px, 1px 0px, 1px 1px;
	font-weight: bold;
	border-radius: 100%;
	padding-top: 1px;
	padding-right: 5.1px;
    padding-left: 4.4px;
    padding-bottom: 1.8px;
	cursor: pointer;
	color: black;
	transition: all 0.2s linear;
	background-color: white;
}

.boton{
	padding: 5px;
	background-color: white;
	border:1px solid #aaa;
	border-radius: 3px;
	color: #555;
	cursor: pointer;
}

.boton:focus{
	outline: 0;
}

.boton:active{
   -moz-box-shadow:    inset 0 0 3px #555;
   -webkit-box-shadow: inset 0 0 3px #555;
   box-shadow:         inset 0 0 3px #555;
}
.error{
	color: red;
	background-color: rgba(255,0,0,0.1);
	padding: 5px;
	border-radius: 6px;
	border: 2px solid red;
	font-weight: 600;
}


#fondoOscuro{
	width: 100%;
	height: 1500px;
	float: left;
	background-color: rgba(0,0,0,0.2);
	position: fixed;
	top:0;
	left: 0;
	z-index: 4;
    display: none;
}