	.button {	
	cursor: pointer;
	}
		
	.contenedor-principal {
		height: 100%;
		width: 100%;
		z-index: 20;
		display: none;
		content: " ";
		position: fixed;
		left: 0;
		top: 0;
		background: -moz-radial-gradient(center, ellipse cover,  rgba(127,127,127,0) 0%, rgba(127,127,127,0.9) 100%);
		background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(127,127,127,0)), color-stop(100%,rgba(127,127,127,0.9)));
		background: -webkit-radial-gradient(center, ellipse cover,  rgba(127,127,127,0) 0%,rgba(127,127,127,0.9) 100%);
		background: -o-radial-gradient(center, ellipse cover,  rgba(127,127,127,0) 0%,rgba(127,127,127,0.9) 100%);
		background: -ms-radial-gradient(center, ellipse cover,  rgba(127,127,127,0) 0%,rgba(127,127,127,0.9) 100%);
		background: radial-gradient(center, ellipse cover,  rgba(127,127,127,0) 0%,rgba(127,127,127,0.9) 100%);
	}
	
	.contenedor-interno {
		display: block;
		background: #fcfcfc;
		margin: 170px auto;
		width: 430px;
		padding: 8px 18px 1px;
		/* padding: 10px 20px 20px; */
		text-align: left;
		z-index: 5;
		border-radius: 4px;
		box-shadow: 0px 0px 30px rgba(0,0,0,0.2);
		-webkit-transition: 0.4s ease-out;
		-moz-transition: 0.4s ease-out;
		-ms-transition: 0.4s ease-out;
		-o-transition: 0.4s ease-out;
		transition: 0.4s ease-out;
		opacity: 0;
	}

	.zoomout {
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	-ms-transform: scale(0.7);
	transform: scale(0.7);
	text-align: center;
	font-size: 23px;
	}
	
	.contenedor-interno-visible {
	-webkit-transform:  scale(1);
	-moz-transform:  scale(1);
	-ms-transform:  scale(1);
	transform:  scale(1);
	opacity: 1;
	}

/* POPUP FORM */
	.contactenos_textbox{
		font-family: "Calibri Light";
		background-color: #E8F0FE;
		color:#585858;
		font-size: 15px;
		font-weight: 600;
		width: 367px;
		height: 32px;
		text-align: left;
		border-width: 0px;
		border-radius: 4px;
		border-style: solid;
		margin-top: 10px;
		padding-left: 15px;
		z-index: 1;
	}
	.contactenos_textbox_area{
		font-family:"Calibri Light";
		background-color: #E8F0FE;
		color:#585858;
		font-size: 15px;
		font-weight: 600;
		width: 365px;
		height: 110px;
		text-align: left;
		border-width: 0px;
		border-radius: 4px;
		border-style: solid;
		margin-top: 10px;
		padding-left: 15px;
	}
	.texto_descripcion2 {
		color: #656565;
		font-family: "Calibri Light";
		font-size: 30px;
		text-align: center;
		margin-left: 21%;
		margin-right: 21%;
		margin-top: 10px;
		margin-bottom: 20px;
	}

	.btn_enviar_formulario{
		width: 295px;
		height: 59px;
		margin-top: 10px;
		margin-bottom: 0px;
		border: 0;
	}

/* PLACEHOLDER DE LAS CAJAS DE TEXTO */
::-webkit-input-placeholder {
    color:    rgb(117, 115, 115);
	font-size: 12pt;
	font-weight: normal;
}
:-moz-placeholder {
    color:    rgb(117, 115, 115);
	font-size: 12pt;
	font-weight: normal;
}
::-moz-placeholder {
    color:    rgb(117, 115, 115);
	font-size: 12pt;
	font-weight: normal;
}
:-ms-input-placeholder {
    color:    rgb(117, 115, 115);
	font-size: 12pt;
	font-weight: normal;
}

/* CERRAR  */
.close {
			color: #9A9A9A;
			font-family: "Calibri Light";
			font-size: 20px;
			font-weight:bold;
			cursor: pointer;
			text-align:center;
			margin-left:97%;
		}
	
.close:hover {
			text-align:center;
			color: #585858;
			}
	
