#IDVentana
{
	z-index: 60;
	width: 100%;
	height: 100%;
	border: 0px;
	position: fixed;
	top: 0px;
	left: 0px;
	display: none;
}
	.VentanaContenedor
	{
		width: 100%;
		height: 100%;
		border: 0px;
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: rgba(0,0,0,0.7);
	}
		.Ventana
		{
			width: 90%;
			padding: 10px 3%;
			background-color: #FFF;
			border: 2px solid #000;
			border-radius: 5px;
			-webkit-border-radius: 5px 5px 5px 5px;
			-webkit-box-shadow: 1.5px 1.5px 3px 0px rgba(0,0,0,0.70);
			box-shadow: 1.5px 1.5px 3px 0px rgba(0,0,0,0.70);
		}
			.CierraVentana
			{
				width: 100%;
				height: 35px;
				border: 0px;
				margin-bottom: 10px;
				text-align: right;
			}
				.CierraVentanaX
				{
					width: 31px;
					height: 31px;
					border: 2px solid #000;
					padding: 0px;
					border-radius: 100%;
					-webkit-border-radius: 35px 35px 35px 35px;
					cursor: pointer;
					font-family: "QuicksandBold";
					font-size: 20px;
					color: #000;
					-webkit-box-shadow: 1.5px 1.5px 3px 0px rgba(0,0,0,0.70);
					box-shadow: 1.5px 1.5px 3px 0px rgba(0,0,0,0.70);
					transition-duration: 0.5s;
					text-transform: uppercase;
				}
				.CierraVentanaX:hover
				{
					background-color: #000;
					color: #FFF;
				}
			.VentanaTexto
			{
				font-family: "QuicksandBook";
				font-size: 24px;
				color: #000;
				text-align: left;
			}
				.VentanaTexto input[type="button"]
				{
					padding: 10px 15px;
					font-size: 18px;
					margin-bottom: 0px;
				}
				.VentanaTexto input[type="text"], .Ventana select
				{
					height: 40px !important;
					font-size: 18px !important;
				}
			
@media screen and (max-width:700px)
{
	.VentanaTexto
	{
		font-size: 20px;
	}
}