@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('../00_Recursos/fontawesome/css/all.css');

/*-----------------Estilos responsive (más)----------------------*/

/* Small devices (landscape phones 576px o más)*/
@media (min-width: 576px) {
}

/* Medium devices (tablets 768px o más)*/
@media (min-width: 768px) {

}

/* Large devices (992px o más)*/
@media (min-width: 992px) {
}

/* Extra large devices (1200px o más)*/
@media (min-width: 1200px) {
}


/*-----------------Fin de estilos responsive (más)----------------------*/


#catalogoVivienda .dropdown:hover>.dropdown-menu {
	display: block;
}

#catalogoVivienda .dropdown>.dropdown-toggle:active {
	pointer-events: none;
}

#catalogoVivienda .dropdown-toggle::after {
	display: none;
}

#catalogoVivienda .dropdown-menu{
	border: 1px solid #e9e9e9 !important;
	border-top: 2px solid #e1241c !important;
	border-radius: 2.5px !important;
	width: 100%;
}

#catalogoVivienda .dropdown-menu>.active {
	background-color:white !important;
	font-weight: 400 !important;
	color: #333333 !important;
	font-style: italic !important;
}

#catalogoVivienda .dropdown-item{
	font-family: Poppins, sans-serif;
	font-weight: 200 !important;
	font-size: 11pt !important;
}

#catalogoVivienda .dropdown-item:hover{
	background-color:white !important;
	font-weight: 400 !important;
	color: #b52121 !important;
}
#catalogoVivienda .dropdown-item:active, .dropdown-item:focus {
	box-shadow: none !important;
	background-color:white !important;
}

/*-----------------Formularios----------------------*/


#catalogoVivienda form label{
	margin-bottom: 10px;
	margin-top: 20px;
}

#catalogoVivienda form input{
	font-family: Poppins, sans-serif;
	font-weight: 300 !important;
	font-size: 12pt;
	color:#333 !important;
	border: 1px solid #999 !important;
	box-shadow: none!important;
	outline: none !important;
}

#catalogoVivienda form input:focus{
	box-shadow: none!important;
	outline: none !important;
	border: 1px solid #333 !important;
}

#catalogoVivienda form textarea{
	font-family: Poppins, sans-serif;
	font-weight: 300 !important;
	font-size: 12pt;
	color:#333 !important;
	border: 1px solid #999 !important;
	box-shadow: none !important;
	outline: none !important;
}

#catalogoVivienda form textarea:focus{
	box-shadow: none!important;
	outline: none !important;
	color: none;
	border: 1px solid #333 !important;
}

#catalogoVivienda ::placeholder{
	font-family: Poppins, sans-serif;
	font-weight: 300 !important;
	color: #ccc !important;
	opacity:1;
}


#catalogoVivienda form select{
	font-family: Poppins, sans-serif;
	font-weight: 300 !important;
	font-size: 12pt;
	color:#666 !important;
	border: 2px solid #ccc !important;
	box-shadow: none !important;
	outline: none !important;
	background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23aaaaaa'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
	background-repeat: no-repeat;
	background-size: 25px !important;
	background-position: center right 1.5% !important;
	cursor: pointer;
	padding-top: 10px !important;
	padding-bottom: 10px !important;
	border-radius: 2px !important;
}
#catalogoVivienda form select:hover{
	box-shadow: none!important;
	outline: none !important;
	color: none;
	border: 2px solid #999 !important;
}

#catalogoVivienda form select:visited{
	box-shadow: none!important;
	outline: none !important;
	color: none;
	border: 2px solid #999 !important;
}

#catalogoVivienda form select:focus{
	box-shadow: none!important;
	outline: none !important;
	color: none;
	border: 2px solid #999 !important;
}
#catalogoVivienda form select:disabled{
	cursor: default;
	color:#bbb !important;
}


/*-----------------Checkbox----------------------*/
#catalogoVivienda .form-check input[type=checkbox] {
	display: none;
}

#catalogoVivienda .form-check input[type=checkbox]{
	position: relative;
	background: white;
	height: 25px;
	width: 25px;
	display: block;
	border-radius: 10%;
	transition: box-shadow 0.4s, border 0.4s;
	border: solid 1px #999;
	box-shadow: none;
	cursor: pointer;
	margin-top: 0px;

}

#catalogoVivienda .form-check input[type=checkbox]:hover{
	border: solid 1px #bbb;
	box-shadow: none;
}
#catalogoVivienda .form-check input[type=checkbox]:checked  {
	border: solid 1px #333;
	box-shadow: none;
}

#catalogoVivienda .form-check input[type=checkbox]:checked:after {
	font-family: "Font Awesome 5 Free";
	content: "\f00d";
	font-weight: 900;
	height: 1em;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 1.5px;
	right: 0;
	margin: auto;
	color: #666;
	line-height: 1.1;
	font-size: 23px;
	text-align: center;
	vertical-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;

}

#catalogoVivienda .form-check input[type=radio] {
	display: none;
}

#catalogoVivienda .form-check input[type=radio]{
	position: relative;
	background: white;
	height: 25px;
	width: 25px;
	display: block;
	border-radius: 50%;
	transition: box-shadow 0.4s, border 0.4s;
	border: solid 1px #999;
	box-shadow: none;
	cursor: pointer;
	margin-top: 0px;

}


#catalogoVivienda .form-check input[type=radio]:hover{
	border: solid 1px #bbb;
	box-shadow: none;
}
#catalogoVivienda .form-check input[type=radio]:checked  {
	border: solid 1px #333;
	box-shadow: none;
}

#catalogoVivienda .form-check input[type=radio]:checked:after {
	font-family: "Font Awesome 5 Free";
	content: "\f111";
	font-weight: 900;
	height: 1em;
	position: absolute;
	top: 1pt;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	color: #666;
	line-height: 1;
	font-size: 15px;
	text-align: center;
	vertical-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

#catalogoVivienda .form-check label{
	font-family: Poppins, sans-serif;
	font-weight: 300 !important;
	font-size: 12pt;
	color:#616160 !important;
	margin-left: 10px;
	cursor: pointer;

}
#catalogoVivienda .altura_foto{
    height: 300px;
}

#catalogoVivienda div.reservada{
    height: 100%;
    position:relative;
    width:100%;
}
#catalogoVivienda div.watermark{
    position:absolute;
    bottom:0;
    background: #b52121;
    color: white;
    text-align: center;
    width: 100%;
    padding: 1rem;
    text-transform:uppercase;
}



/*-----------------Estilos responsive (menos)----------------------*/

/* Extra large devices (1200px o menos)*/
@media (max-width: 1200px) {

}

/* Large devices (992px o menos)*/
@media (max-width: 992px) {

}


/* Medium devices (tablets 768px o menos)*/
@media (max-width: 768px) {

}

/* Small devices (landscape phones 576px o menos)*/
@media (max-width: 576px) {

}

/*-----------------Fin de estilos responsive (menos)----------------------*/
