body {
  font-family: 'Roboto',sans-serif;
  margin: 0;
}

.full-container {
  width: 100%;
  height: 100vh;
  background-image: url("img/background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.full-container .card {
  background-color: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  width: 90%;
  padding: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.full-container .card .destino {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 30px;
}

.full-container .card .destino .tresletras p:first-child {
  font-family: 'Prompt',sans-serif;
  font-weight: 900;
  font-size: 2.5em;
  color: #3b8acf;
}

.full-container .card .destino .tresletras p:nth-child(2) {
  color: #b7adaa;
}

.full-container .card .destino .linea {
  width: 30px;
  height: 6px;
  background-color: #d3e6f4;
}

.full-container .card .info .flight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
  width: 100%;
}

.full-container .card .info .flight .text .title {
  color: #b7adaa;
  margin-bottom: 6px;
  font-size: 0.8em;
}

.full-container .card .info .passenger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.full-container .card .info .passenger .row-izq, .full-container .card .info .passenger .passenger .row-der {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.full-container .card .info .passenger .row-izq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.full-container .card .info .passenger .row-der .qr {
  text-align: right;
}

.full-container .card .info .passenger .row-der .qr img {
  width: 150px;
}

@media screen and (min-width: 576px) {
  .full-container .card {
    width: 80%;
    padding: 60px 40px 40px 40px;
  }
}

@media (min-width: 768px) {
  .full-container .card {
    width: 40%;
    padding: 60px 40px 40px 40px;
  }
  .full-container .destino .tresletras p:first-child {
    font-size: 3.5em;
  }
}

@media (min-width: 992px) {
  .full-container .card {
    width: 40%;
    padding: 60px 40px 40px 40px;
  }
  .full-container .destino {
    padding-bottom: 60px;
  }
  .full-container .flight {
    width: 70%;
  }
}

@media (min-width: 1200px) {
  .full-container .card {
    width: 25%;
    padding: 60px 40px 40px 40px;
  }
}
/*# sourceMappingURL=styles.css.map */