.popup{
	display:none;
	background:rgba(100,100,100,0.3);
	position:fixed;
	top:0px;
	left:0px;
	bottom:0px;
	right:0px;
	
	z-index:100000;
}


.popup .contenidoPopUp{
	background-color:white;
	border-radius:15px;
	
	padding:50px;
	
	position:relative;
	top:5%;
	height:90%;
	max-height:700px;
	
	overflow-y:scroll;
	
}

.popup h1{
	font-weight:bolder;
	font-size:25px;
}

.popup hr{
	border-color:var(--color-secundario-web);
	border-width:2px;
}

.popup .fila.inputs .columna{
	grid-template-rows:25px;
	padding:15px;
}

.popup .contenedorInput{
	border-style:solid;
	border-width:1px;
	border-color:blue;
	border-radius: 25px;
	border-color:var(--color-secundario-web);
	
	color: var(--color-secundario-web);
	text-align:left;
	font-size:12px;
	
	padding:15px;
	
	display:flex;
	
	max-height: 56px;
	width:100%;
}

.popup .contenedorInput select{
	width:100%;
	background-color:transparent;
	border:none;
}

.popup .botonSubmit{
	border-style:solid;
	border-width:1px;
	border-color:red;
	border-radius: 25px;
	border-color:var(--color-principal-web);
	
	color: white;
	background-color:var(--color-principal-web);
	text-align:center;
	font-size:14px;
	font-weight:bolder;
	
	padding:18px;
	max-height: 56px;
}

@media screen and (min-width: 0px)  and (max-width: 350px)  { /* XS */
	.popup .contenidoPopUp{
		padding:15px;
		height:400px;
	}
	
	.popup h1{
		font-size:20px;
	}

}

@media screen and (min-width: 350px)  and (max-width: 640px)  { /* S */
	.popup .contenidoPopUp{
		padding:15px;
		height:400px;
	}
	
	.popup h1{
		font-size:20px;
	}
}

@media screen and (min-width: 640px)  and (max-width: 1024px)  {/* M */
	.popup .contenidoPopUp{
		padding:15px;
		height:300px!important;
	}
	
	.popup h1{
		font-size:20px;
	}
	
	#cargarEstimacionMudanza #botonVerificar, #cargarEstimacionMudanza #botonCancelar{
		margin-left:5px;
	}
	
}

@media screen and (min-width: 1024px)  { /* L */
	#cargarEstimacionMudanza #botonVerificar, #cargarEstimacionMudanza #botonCancelar{
		margin-left:5px;
	}
	
	.popup .contenidoPopUp{
		height:300px!important;
	}
	
}





#cargarEstimacionMudanza .contenidoPopUp{
	height:50%;
}

#cargarEstimacionMudanza input[type=text]{
	padding: 15px;
	border-style: solid;
	border-color: var(--color-principal-web);
	border-width: 2px;
	border-radius: 10px;
	flex:1;
}



#cargarEstimacionMudanza #botonCancelar{
	border-color:var(--color-principal-web);
	border-width: 2px;
	background-color: white;
	color:var(--color-principal-web);
}












