/* GLOBAL
  ========================================================================= */
*{
  margin: 0;
  padding: 0;
  text-decoration: none;
}
body {
  max-width: 100%;
  max-height: 100%;
  background: #020113;
}
/* HEADER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.header{
  width: 100%;
  height: 40vh;
  background-image: url(/img/mapamundi.jpg);
}
.header-content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0px 15px;
  padding: 20px 0px 0px 0px;
}
#tittle{ color: white; }
.profile{
  border-radius: 100%;
  border: 1px solid white;
  width: 30px;
  height: 30px;
  background: white;
}
/* HEADER end –––––––––––––––––––––––––––––––––––––––––––––––––– */
/* index.HTML
  ========================================================================= */
/* SEARCH
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
.box-search-index{
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 90%;
  height: 200px;
  top: -80px;
  margin: 0% 5% 5% 5%;
  margin-top: -2vw;
  background: white;
  border: 1px solid black;
  border-radius: 0.75rem;
}
#titleSearchIndex{ margin: 20px 0px 20px 0px ;}
/* Formulario Search City */
#myForm{
  display: flex;
  flex-direction: column;
  align-items: center;
}
#destino{
  /* width: 220px; */
  line-height: 28px;
  padding: 0 1rem;
  padding-left: 2.5rem;
  border: 2px solid transparent;
  border-radius: 8px;
  outline: none;
  background-color: #f3f3f4;
  color: #0d0c22;
  transition: .3s ease;
}
#destino::placeholder{color: #9e9ea7;}
#btnSearch{
  width: 200px;
  height: 40px;
  margin: 20px;
  color: #fff;
  background-color: #0062e3;
  border: 2px solid transparent;
  border-radius: 0.75rem;
}
/* SEARCH end –––––––––––––––––––––––––––––––––––––––––––––––––– */
/* RECOMMENDATIONS
  –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
.recommendations-index{
  width: 90%;
  margin: -5% 5% 5% 5%;;
}
#titleRecommendations{ color: white; }
.recommendations-cards{
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  grid-gap: 2rem 0rem;
}
.recommendations-card{
  width: 30%;
  height: 150px;
  padding: 10px;
  display: flex;
  background: white;
  box-shadow: 0 1px 3px 0 rgba(37,32,31,.3);
  border-radius: 0.75rem;
}
.card-img{
  width: 40%;
}
.recommendations-card-img{
  width: 130px;
  height: 100%;
  /* height: auto; */
}
.card-content{
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* RECOMMENDATIONS end ––––––––––––––––––––––––––––––––––––––––– */
/* city.HTML
  ========================================================================= */
/* SEARCH
  –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
.box-search-offers{
  position: relative;
  display: flex;
  justify-content: center;
  top: -6rem;
  margin: 0 5%;
}
.search-offers{
  max-width: 900px;
  width: 100%;
  height: auto;
  background: white;
  border: 1px solid black;
  border-radius: 0.75rem;
}
#titleSearchOffers{
  margin: 1rem 0px 1rem 0px;
  text-align: center;
}
.search-offers-place, .search-offers-date{ padding: 0 0 2rem 2rem; }
.search-offers-place span, .search-offers-date span{
  margin-right: 0.5rem;
    padding-right: 0.5rem;
}
/* SEARCH end –––––––––––––––––––––––––––––––––––––––––––––––––– */
/* OFFERS
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Header offers city */
.box-offers{
  display: flex;
  justify-content: center;
  position: relative;
  top: -5rem;
  margin: 0 5%;
}
.table-offers{
  max-width: 700px;
  width: 100%;
  height: 50px;
  background: white;
  border: 1px solid black;
  border-radius: 0.75rem;
  padding: 3%;
  border-spacing: 0 10px;
}
.table-offers thead{
  background-color: lightblue;
}
.table-offers th{
  border: 1px solid lightblue;
  padding: 10px;
}
.table-offers td.ciudad-origen, .table-offers td.precio {
  text-align: center;
}
.btn-back-index{
  text-align: center;
}
#btnBackToIndex{
  width: 150px;
  height: 40px;
  color: black;
  background: white;
  border: 1px solid black;
  border-radius: 0.75rem;
}
/* OFFERS end –––––––––––––––––––––––––––––––––––––––––––––––––– */

/* RESPONSIVE
========================================================================= /
/* Escritorios muy anchos */
@media (min-width: 1200px) {
/* index.HTML
  ========================================================================= */
  /* RECOMMENDATIONS
    –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
  .box-search-index{
    width: 80%;
    margin: 0% 10% 5% 10%;
    margin-top: -2vw;
  }
}

/* Tablets en horizonal y escritorios normales */
@media (min-width: 1024px) {
/* index.HTML
  ========================================================================= */
  /* RECOMMENDATIONS
    –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
  .box-search-index{
    width: 80%;
    margin: 0% 10% 5% 10%;
    margin-top: -2vw;
  }
}

/* Móviles en horizontal o tablets en vertical */
@media (max-width: 768px) {
/* GLOBAL
  ========================================================================= */
  /* HEADER
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
    .header{
      background-size:contain;
    }

  /* HEADER end –––––––––––––––––––––––––––––––––––––––––––––––––– */
/* index.HTML
  ========================================================================= */
  /* RECOMMENDATIONS
  –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
    .recommendations-index{
      width: 90%;
      margin: -10% 5% 10% 5%;
    }
    .recommendations-card{
      width: 100%;
    }
  /* RECOMMENDATIONS end ––––––––––––––––––––––––––––––––––––––––– */
}