/*Estilos para el slider de fotografias del listado de busqueda de inmuebles*/


.slides {
    padding: 0;
    width: 192px;
    height: 180px;
    display: block;
    margin: 0 auto;
    position: relative;
}

.slides * {
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.slides input { display: none; }

.slide-container { display: block; }

/*.slide {
    top: 0;
    opacity: 0;
    width: 192px;
    height: 180px;
    display: block;
    position: absolute;
    transition: all .7s ease-in-out;
}*/

.slide img {
		min-height: 180px;
    /*width: 100%;
    height: 100%;*/
}

.th {overflow: hidden;}

.nav label {
    width: 40px;
    height: 100%;
    display: none;
    position: absolute;

	  opacity: 0;
    z-index: 9;
    cursor: pointer;

    transition: opacity .2s;

    color: #FFF;
    font-size: 6em;
    text-align: center;
    line-height: 1.7em;
    font-family: "Varela Round", sans-serif;
    /*background-color: rgba(255, 255, 255, .3);*/
    text-shadow: 0px 0px 15px rgb(119, 119, 119);
}

.slide:hover + .nav label { opacity: 0.5; }

.nav label:hover { opacity: 1; }

.nav .next { right: 0; }

input:checked + .slide-container  .slide {
    opacity: 1;

    transform: scale(1);

    transition: opacity 1s;
}

input:checked + .slide-container .nav label { display: block; }

.nav-dots {
	width: 100%;
	bottom: 9px;
	height: 11px;
	display: block;
	position: absolute;
	text-align: center;
}

.nav-dots .nav-dot {
	background: transparent none repeat scroll 0 0;
  border-radius: 100%;
  color: #fff;
  display: inline-block;
  font-family: sans-serif;
  font-size: 1.5em;
  height: 0;
  margin: 0 4px;
  position: relative;
  text-align: center;
  text-shadow: 0 2px 1px rgba(51, 51, 51, 0.7);
  top: -18px;
  width: 183px;
}

.nav-dots .nav-dot:hover {
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.8);
}
