#modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 300px;
  padding: 30px;
  border-radius: 7px;
  background-color: #fff;
  z-index: 9999;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  background-repeat: no-repeat;
  background-position: bottom right
}

#modal img {
  object-fit: contain;
  width: 100%;
  height: calc(100% - 60px);
  max-height: 100%
}

@media all and (max-width:1024px) {
  #modal {
    width: 200px;
    height: 200px
  }

  #modal img {
    height: initial;
    max-height: initial
  }
}

#modal.restaurantFavorito {
  height: auto
}

#modal.restaurantFavorito h5 {
  background-image: url(../images/home/encuesta/ico_encuesta.gif);
  padding-left: 70px;
  background-repeat: no-repeat;
  background-position: 0 0
}

#modal.restaurantFavorito .pregunta>p {
  font-family: 'travel-regular', sans-serif;
  font-size: 32px;
  color: #3f4a56;
  margin: 20px 0
}

#modal.restaurantFavorito .respuesta {
  display: none
}

#modal.restaurantFavorito .respuesta p {
  font-size: 20px;
  font-weight: 400;
  font-family: 'travel-bold', sans-serif;
  text-align: center
}

#modal.encuesta {
  background-image: url(../images/home/encuesta/bg_encuesta.gif)
}

#modal h5 {
  font-family: 'travel-bold', sans-serif;
  font-size: 18px;
  color: #3f4a56;
  line-height: initial
}

#modal.encuesta h5 {
  background-image: url(../images/home/encuesta/ico_encuesta.gif);
  padding-left: 70px;
  background-repeat: no-repeat;
  background-position: 0 0
}

#modal.encuesta .respuesta {
  display: none
}

#modal.encuesta .respuesta p {
  font-size: 20px;
  font-weight: 400;
  font-family: 'travel-bold', sans-serif;
  text-align: center
}

#modal p {
  font-family: 'travel-regular', sans-serif;
  font-size: 16px;
  color: #3f4a56;
  margin: 10px 0
}

#modal.encuesta .pregunta>p {
  font-family: 'travel-regular', sans-serif;
  font-size: 32px;
  color: #3f4a56;
  margin: 20px 0
}

#modal div.radio {
  font-family: 'travel-regular', sans-serif;
  font-size: 15px;
  display: block;
  margin: 15px 0
}

#modal div.radio div {
  margin-right: 10px;
  float: left
}

#modal button.btn.morado {
  border: none;
  background-color: #29295c;
  background-image: url(../images/home/encuesta/btn_flecha_morado.gif);
  color: #fff;
  text-align: left;
  padding-left: 20px;
  width: 200px;
  line-height: 20px
}

#modal span.btn-cerrar {
  position: absolute;
  top: -10px;
  right: -10px;
  display: block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-image: url(../images/home/encuesta/btn_cerrar_encuesta.gif);
  background-repeat: no-repeat;
  background-position: center;
  background-color: #29295c;
  background-size: 20px;
  cursor: pointer
}

#modal+#overlay {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #2cb2e4;
  z-index: 9998 !important;
  width: 100vw;
  height: 100vh;
  opacity: .5
}