* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

body {
	margin: 0px;
	padding: 0px;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
}

body, html {
	height: 100%;
}

a {
	text-decoration: none;
}

.contenedor {
	text-align: center;
	min-height: 100%;
	max-width: 100%;
	margin: 0px auto;
	box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.3);
	background: #F5F5F5;
}

.difuminado-abajo {
	display: none;
	position: fixed;
	bottom: 0px;
	left: calc((100% - 1200px) / 2);
	height: 25px;
	width: 1200px;
	max-width: 100%;
	z-index: 1;

	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0.25+0,1+100 */
	background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 1) 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 1) 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 1) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#40ffffff', endColorstr='#ffffff', GradientType=0);
	/* IE6-9 */
}

/*.contehead {
	margin: 0px;
	padding: 10px 16px 0px 16px;
	position: sticky;
	top: 0px;
	left: 0px;
	width: 1200px;
	max-width: 100%;
	background: #FFFFFFDD;
	box-sizing: border-box;
}

.micartit {
	text-align: center;
	font-weight: bold;
	margin: 10px 0px 20px 0px;
	padding-bottom: 16px;
}

.micartit span {
	margin-left: -25px;
}

.iratras {
	float: left;
}

.iratras img {
	width: 20px;
}*/

.texhola {
	font-weight: bold;
	font-size: 40px;
	padding: 30px 0px;
}

.imgquedar {
	width: 70%;
	margin: 0px auto;
}

.imgquedar img {
	width: 100%;
	max-width: 300px;
}

.quedarte {
	font-weight: bold;
	font-size: 20px;
	padding: 10px 0px;
}

.yacasi {
	font-size: 12px;
	padding: 5px 0px;
	margin: 0px 10px;
}

#formu1 {
	width: 1200px;
	max-width: 100%;
	margin: 0px 10px;
}

.contform {
	padding: 10px 0px;
	width: 1080px;
	max-width: 90%;
	margin: 0px auto;
}

.input-css {
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	padding: 10px 15px;
	color: var(--fondo-boton);
	background: #FFFFFF;
	border: 1px solid #E4E4E4;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	outline: none;
	width: 90%;
	margin-bottom: 20px;
	box-sizing: border-box;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus {
	-webkit-text-fill-color: var(--fondo-boton);
}

.input-css2 {
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	padding: 15px;
	overflow: hidden;
	color: var(--fondo-boton);
	font-weight: bold;
	background: #FAFAFA;
	border: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	outline: none;
	width: 90%;
	min-width: 90%;
	max-width: 90%;
	margin-bottom: 20px;
	box-sizing: border-box;
}

.input-css:not(:last-child) {
	margin-bottom: 20px;
}

.input-css2 {
	max-width: 100%;
	width: 100%;
}

.contform .etiqueta_rodante {
	width: 90%;
}

::placeholder {
	color: #C4C4C4;
	font-weight: normal;
	opacity: 1;
	/* Firefox */
}

:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #C4C4C4;
	font-weight: normal;
}

::-ms-input-placeholder {
	/* Microsoft Edge */
	color: #C4C4C4;
	font-weight: normal;
}

.elvalor {
	width: 90%;
	margin: 0px auto;
	color: #989898;
	padding: 0px 0px 20px 15px;
	text-align: left;
	font-size: 12px;
	font-weight: bold;
	box-sizing: border-box;
}

/*checkbox*/
.container {
	display: block;
	position: relative;
	padding-left: 15px;
	margin-bottom: 20px;
	cursor: pointer;
	font-size: 12px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.container input {
	position: absolute;
	opacity: 0;
	display: none;
	cursor: pointer;
}

.checkmark {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	top: 0;
	left: 0;
	height: 20px;
	width: 20px;
	background-color: #ffffff;
	border: 1px solid #E2E2E2;
	border-radius: 50%;
}

.container:hover input~.checkmark {
	background-color: #ffffff;
}

.container input:checked~.checkmark {
	background-color: #ffffff;
	border: 1px solid var(--fondo-boton);
}

.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.container input:checked~.checkmark:after {
	display: block;
}

.container .checkmark:after {
	top: 5px;
	left: 5px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--fondo-boton);
}

.container div {
	display: inline-block;
	margin-left: 5px;
}

.container div span {
	color: #696969;
	font-weight: bold;
}

/*checkbox-fin*/
.botped {
	background-color: var(--fondo-boton);
	padding: 10px;
	border-radius: 40px;
	-moz-border-radius: 40px;
	-webkit-border-radius: 40px;
	/* margin-top: 30px; */
	font-weight: bold;
	color: #ffffff;
	margin-bottom: 20px;
	width: 250px;
	max-width: 90%;
	cursor: pointer;
	margin: 0px auto;
	margin-bottom: 20px;
	box-shadow: 0px 0px 8px 2px #999;
	transition: 0.25s transform ease-in-out, 0.25s opacity ease-in-out;
}

.botped div {
	font-weight: normal;
	margin-top: 10px;
}

.botped:hover {
	transform: scale(1.05);
	opacity: 0.8;
}

.scroll_To_Top {
	display: block;
	height: 100px;
	color: black;
	text-decoration: none;
	position: relative;
	text-align: right;
	background: var(--fondo-boton);
	font-weight: bold;
	right: 20px;
	bottom: 80px;
	/*opacity: 0.89;*/
	z-index: 1;
	outline: none;
}

/*.fil0 {
	fill: #008FDE;
}

.fil1 {
	fill: #ffffff;
}*/

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

@media only screen and (max-width: 700px) {
	.difuminado-abajo {
		display: block;
		width: 100%;
		left: 0px;
	}
}