/*!
EFECTO IMAGENES CARITAS
 */
 
.div-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.div-img.hidden {
  overflow: hidden;
}
.div-img .img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  transform: scale(1);
  -ms-transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
}
.div-img:hover .img {

  transform: scale(1.2);
  -ms-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
}
figure {
  display: inline-block;
  text-align: center;

}
figure img {
  vertical-align: top;
}

/*!
CHECK BOX Y OPTIONS MEJORADOS
 */
.selec-input {
  width: 250px;
  border: 0;
  outline: 0;
  background: transparent;
  border-bottom: 1px solid black;
}

.demo input[type="checkbox"] {
  display: none;
}
.demo input[type="checkbox"] + label span{
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: -1px 4px 0 0;
  vertical-align: middle;
  background: url("checkbox-uncheck.png");
  background-size: cover;
  cursor: pointer;
}
.demo input[type="checkbox"]:checked + label span{
  background: url("checkbox-check.png");
  background-size: cover;
}

.demo input[type="radio"] {
  display: none;
}
.demo input[type="radio"] + label span {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: -1px 4px 0 0;
  vertical-align: middle;
  background: url(radio-uncheck.png);
  background-size: cover;
  cursor: pointer;
}
.demo input[type="radio"]:checked + label span {
  background: url(radio-check.png);
  background-size: cover;
}

/*!
TOGGLE SWITCH
 */

.switch {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 17px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 17px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Elementos Obligatorios */
.form-group.has-error .box-title:before {
  content:"* ";
  color:red;
}


@media (min-width: 1200px) {
  .col-lg-2ths {
    width: 20%;
    float: left;
    }
}

@media (min-width: 768px) {
  .col-sm-2ths {
    width: 20%;
    float: left;
    }
  }
@media (min-width: 992px) {
  .col-md-2ths {
    width: 20%;
    float: left;
    }
  }

@media (min-width: 320px) {
  .col-xs-2ths {
    width: 20%;
    float: left;
    }
  }


@media (min-width: 1200px) {
  .col-lg-1ths {
    width: 9.8%;
    float: left;
    }
}

@media (min-width: 768px) {
  .col-sm-1ths {
    width: 9.8%;
    float: left;
    }
  }
@media (min-width: 992px) {
  .col-md-1ths {
    width: 9.8%;
    float: left;
    }
  }

@media (min-width: 320px) {
  .col-xs-1ths {
    width: 9.8%;
    float: left;
    }
  }


.label-encuesta
{
    font-size: 1.3em;
    font-family: Vegur, 'PT Sans', Verdana, sans-serif;
    color: #7B817E;
}

.img-saludo {
  max-width: 75%;
  height: auto;
}

.input-small {
  width:50px;
}
