/* Utilidades generales */
section#contacto h2.perc-100 {
  width: 100%;
}

.left {
  float: left !important;
}

.right {
  float: right !important;
}

.desktop {
  display: block !important;
}

@media (max-width: 767px) {
  .desktop {
    display: none !important;
  }
}

.mobile {
  display: none !important;
}

@media (max-width: 767px) {
  section#aerolineas ul li {
    /* width: 50% !important; */
  }

  .mobile {
    display: block !important;
  }
}

/* Estilos base */
body {
  /*font-family: 'khandregular' !important;*/
  font-family: "manrope", sans-serif !important;
  font-size: 16px !important;
}

* {
  box-sizing: border-box;
}

/* Tipografía */
h1 {
  font-size: 100px;
}

@media (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 80px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 50px;
  }
}

h2 {
  font-size: 40px;
  padding-bottom: 30px;
  color: #333;
}

h3 {
  font-size: 22px;
}

p {
  font-family: "robotoregular";
  font-size: 14px;
}

/* Wrappers */
.wrapper-1200 {
  width: 1200px;
  margin: 0 auto;
}

@media (max-width: 767px),
  (min-width: 992px) and (max-width: 1199px),
  (min-width: 768px) and (max-width: 991px) {
  .wrapper-1200 {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    float: left;
    overflow: hidden;
  }
}

.wrapper-100 {
  width: 100%;
  float: left;
  margin-top: 50px;
  text-align: center;
}

.wrapper-100 img {
  max-width: 1400px;
  height: auto;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .wrapper-100 img {
    max-width: 320px;
  }
}

.wrapper-100 img.size-768 {
  max-width: 768px;
}

/* Utilidades */
.no-padding-b {
  padding-bottom: 0;
}

.bg-blue {
  background-color: #097ea9;
}

/* Columnas */
.col-33 {
  width: 33.33%;
  padding-left: 40px;
}

.col-33:nth-child(2) {
  padding-left: 0;
}

.col-25 {
  width: 25%;
  padding-left: 40px;
}

.col-25:nth-child(2) {
  /* padding-left: 0; */
}

@media (max-width: 767px) {
  .col-25 {
    padding-left: 0;
    /* width: 100%; */
  }
}

.col {
  float: left;
}

/* Header superior */
.top {
  border-top: 8px solid #007ea7;
  width: 100%;
  float: left;
  background: rgba(63, 38, 95, 0.9);
}

.top .btn-nav {
  background-color: #007ead;
  padding: 10px 8px 8px;
  display: block;
  width: 37px;
  height: 37px;
  margin-top: 24px;
  border-radius: 3px;
  float: right;
}

.top .btn-nav span {
  width: 100%;
  height: 3px;
  margin-top: 4px;
  background: #fff;
  float: left;
}

.top .btn-nav span:first-child {
  margin-top: 0;
}

.top .logo-color {
    float: left;
    margin-top: 8px;
}

@media (max-width: 767px) {
  .top .logo-color {
    padding-bottom: 20px;
  }
}

.top nav {
  float: right;
  overflow: visible !important;
}

@media (max-width: 767px) {
  .top nav {
    display: none;
    width: 100%;
  }
}

.top nav a {
  color: #fff;
  font-size: 24px;
  padding: 30px 22px;
  float: left;
}

@media (max-width: 767px) {
  .top nav a {
    width: 100%;
    float: left;
    border-bottom: 2px solid #dddddd;
    text-align: center;
    width: calc(100% + 40px);
    margin-left: -20px;
  }
}

.top nav a.active,
.top nav a:hover {
  color: #fff;
  background-color: #007ea7;
}

.top nav a:nth-child(5) {
  border: 0;
}

/* Headers de sección */
section header {
  position: relative;
  overflow: hidden;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  float: left;
  width: 100%;
  color: #fff;
  padding-top: 174px;
  padding-bottom: 174px;
}

@media (min-width: 768px) and (max-width: 991px) {
  section header {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 767px) {
  section header {
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

section header h1 {
  border-bottom: 1px solid #fff;
  padding-left: 125px;
  padding-right: 125px;
  display: inline-block;
  padding: 10px;
}

@media (max-width: 767px), (min-width: 768px) and (max-width: 991px) {
  section header h1 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

section header h1 + span {
  display: block;
  font-size: 50px;
  padding-top: 9px;
}

@media (min-width: 768px) and (max-width: 991px) {
  section header h1 + span {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  section header h1 + span {
    font-size: 30px;
  }
}

section header h1 + span em {
  color: #ff9300;
  font-family: "robotobold";
  font-size: 58px;
}

section article {
  float: left;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

/* Sección Infografía */
@media (max-width: 767px), (min-width: 768px) and (max-width: 991px) {
  section#infografia .col-33 {
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 767px), (min-width: 768px) and (max-width: 991px) {
  section#infografia .graficos .flex-direction-nav a {
    top: 20%;
  }

  section#infografia .graficos .flex-direction-nav a.flex-prev {
    left: -24px;
  }

  section#infografia .graficos .flex-direction-nav a.flex-next {
    right: -24px;
  }
}

@media (max-width: 767px) {
  section#infografia .graficos .flex-direction-nav a {
    display: none;
  }
}

section#infografia .graficos ul li {
  text-align: center;
}

section#infografia .graficos ul li .left {
  float: left;
  width: 40%;
  padding-left: 90px;
}

@media (max-width: 767px), (min-width: 768px) and (max-width: 991px) {
  section#infografia .graficos ul li .left {
    width: 100%;
    padding-left: 0;
    text-align: center;
    margin-bottom: 50px;
  }
}

section#infografia .graficos ul li .left .table {
  background-color: #e3edee;
  max-width: 400px;
  width: 100%;
  float: left;
  padding-bottom: 20px;
}

@media (max-width: 767px), (min-width: 768px) and (max-width: 991px) {
  section#infografia .graficos ul li .left .table {
    display: inline-block;
    float: none;
  }
}

section#infografia .graficos ul li .left .table .th {
  background-color: #009999;
  padding: 13px;
  color: #fff;
  font-size: 25px;
  text-align: left;
  margin-bottom: 15px;
}

section#infografia .graficos ul li .left .table .tr {
  width: 100%;
  float: left;
  padding-left: 30px;
  padding-right: 58px;
  padding-bottom: 5px;
}

@media (max-width: 767px) {
  section#infografia .graficos ul li .left .table .tr {
    padding-left: 12px;
    padding-right: 20px;
  }
}

section#infografia .graficos ul li .left .table .tr .td {
  float: left;
  font-family: "robotoregular";
  font-size: 14px;
}

section#infografia .graficos ul li .left .table .tr .td:first-child + .td {
  float: right;
}

section#infografia .graficos ul li .left .table .tr .td.sub {
  padding-left: 70px;
}

section#infografia .graficos ul li .right {
  float: right;
  width: 55%;
  padding-right: 75px;
}

@media (max-width: 767px), (min-width: 768px) and (max-width: 991px) {
  section#infografia .graficos ul li .right {
    width: 90%;
    padding-right: 0;
    display: inline-block;
    float: none;
    overflow: hidden;
    max-width: 600px;
  }
}

@media (max-width: 767px) {
  section#infografia .graficos ul li .right {
    width: 100%;
  }
}

section#infografia .graficos ul li .right .ct-chart {
  width: 100%;
  float: left;
  height: 300px;
}

@media (max-width: 767px) {
  section#infografia .graficos ul li .right .ct-chart .ct-label {
    font-size: 10px;
  }
}

@media (max-width: 767px) {
  section#infografia .graficos ul li .right .ct-chart .ct-bar {
    stroke-width: 11px;
  }
}

section#infografia .graficos ul li .right .tips {
  width: 100%;
  float: left;
  margin-top: 30px;
  padding-left: 12px;
}

section#infografia .graficos ul li .right .tips ul {
  border-top: 1px solid #999999;
  padding-top: 5px;
  display: inline-block;
}

section#infografia .graficos ul li .right .tips ul li {
  margin-right: 20px;
  margin-bottom: 13px;
  float: left;
  font-size: 13px;
  font-family: "robotoregular";
  line-height: 19px;
}

@media (max-width: 767px), (min-width: 768px) and (max-width: 991px) {
  section#infografia .graficos ul li .right .tips ul li {
    line-height: 9px;
    font-size: 11px;
    margin-right: 11px;
  }
}

section#infografia .graficos ul li .right .tips ul li:last-child {
  margin-right: 0;
}

section#infografia .graficos ul li .right .tips ul li .square {
  width: 20px;
  height: 20px;
  float: left;
  margin-right: 8px;
}

@media (max-width: 767px), (min-width: 768px) and (max-width: 991px) {
  section#infografia .graficos ul li .right .tips ul li .square {
    width: 10px;
    height: 10px;
    margin-right: 6px;
  }
}

section#infografia .graficos ul li .right .tips ul li .square.green {
  background-color: #009999;
}

section#infografia .graficos ul li .right .tips ul li .square.yellow {
  background-color: #f4c63d;
}

section#infografia .graficos ul li .right .tips ul li .square.grey {
  background-color: #bbbbbb;
}

section#infografia .graficos ul li .right .tips ul li .square.orange {
  background-color: #d17905;
}

section#infografia .graficos ul li .right .tips ul li .square.brown {
  background-color: #453d3f;
}

section#infografia .graficos ul li .right .tips ul li .square.dark-green {
  background-color: #59922b;
}

section#infografia .graficos ul li .right .tips p {
  font-size: 10px;
  font-family: "robotoregular";
  float: right;
  text-align: left;
  width: 100%;
}

@media (max-width: 767px) {
  section#infografia .graficos ul li .right .tips p {
    width: 100%;
    margin-top: 20px;
  }
}

section#infografia .graficos h3 {
  margin-bottom: 25px;
}

section#infografia .datos h3 {
  border-bottom: 2px solid #fff;
  float: left;
  width: 100%;
  margin-bottom: 32px;
  padding-bottom: 6px;
  font-size: 20px;
}

section#infografia h2 {
  color: #fff;
}

section#infografia header {
  background-image: url(../img/header-3.png);
}

section#infografia article {
  background-color: #007ea7;
  color: #fff;
}

section#infografia article + article {
  background-color: white;
  color: #333;
}

section#infografia article + article h2 {
  color: #333;
}

@media (max-width: 767px), (min-width: 768px) and (max-width: 991px) {
  section#infografia .datos ul {
    text-align: center;
  }
}

section#infografia .datos ul li {
  width: 100%;
  float: left;
  margin-bottom: 55px;
}

@media (min-width: 768px) and (max-width: 991px) {
  section#infografia .datos ul li {
    width: 53%;
  }
}

@media (max-width: 767px) {
  section#infografia .datos ul li {
    max-width: 370px;
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  section#infografia .datos ul li {
    display: inline-block;
    margin: 0px auto 55px;
    float: none;
  }
}

section#infografia .datos ul li .icon {
  float: left;
  text-align: center;
  max-width: 68px;
}

section#infografia .datos ul li .icon span,
section#infografia .datos ul li .icon small {
  display: block;
  text-align: center;
  font-size: 15px;
  font-family: "khandmedium";
  padding-top: 15px;
}

section#infografia .datos ul li .icon small {
  padding-top: 4px;
  font-size: 13px;
}

section#infografia .datos ul li .icon-pasajeros:before {
  font-size: 44px;
}

section#infografia .datos ul li .icon-llegadas:before {
  font-size: 37px;
}

section#infografia .datos ul li .icon-salidas:before {
  font-size: 28px;
}

section#infografia .datos ul li .icon-conexion:before {
  font-size: 38px;
}

section#infografia .datos ul li .icon-total:before {
  font-size: 35px;
}

section#infografia .datos ul li .info {
  float: right;
  text-align: right;
  width: 70%;
}

section#infografia .datos ul li .info span {
  font-family: "robotoregular";
  font-size: 14px;
  width: 100%;
}

@media (max-width: 767px) {
  section#infografia .datos ul li .info span {
    font-size: 12px;
  }
}

section#infografia .datos ul li .info span:before {
  font-family: "icomoon";
  padding-right: 25px;
}

@media (max-width: 767px) {
  section#infografia .datos ul li .info span:before {
    font-size: 10px;
    padding-right: 5px;
  }
}

section#infografia .datos ul li .info em {
  float: left;
  width: 100%;
  font-size: 32px;
  font-family: "khandregular";
}

/* Sección Contacto */
section#contacto header {
  background-image: url(../img/header-1.png);
}

section#contacto h3 {
  color: #007ea7;
  border-bottom: 2px solid #007ea7;
  float: left;
  width: 100%;
  margin-bottom: 59px;
  padding-bottom: 6px;
  text-align: left;
}

section#contacto h3 a {
  color: #007ea7;
  font-size: 18px;
}

section#contacto h3 a:hover {
  text-decoration: underline;
}

@media (max-width: 767px), (min-width: 768px) and (max-width: 991px) {
  section#contacto h3 {
    margin-bottom: 25px;
  }
}

section#contacto h2 {
  width: 33%;
  display: block;
}

@media (max-width: 767px) {
  section#contacto h2 {
    width: 100%;
    float: left;
  }
}

section#contacto .col {
  text-align: center;
  margin-top: -70px;
}

@media (max-width: 767px) {
  section#contacto .col {
    width: 100%;
    float: left;
    margin-top: 30px;
    padding-left: 0;
  }
}

section#contacto .col:nth-child(2) {
  text-align: left;
  margin-top: 0;
}

@media (max-width: 767px), (min-width: 768px) and (max-width: 991px) {
  section#contacto img {
    width: 150px;
    height: auto;
  }
}

section#contacto ul li {
  margin-bottom: 25px;
  font-family: "robotoregular";
  color: #333;
}

@media (max-width: 767px) {
  section#contacto ul li {
    font-size: 13px;
  }
}

section#contacto ul li:before {
  color: #007ca6;
  font-size: 28px;
  margin-right: 15px;
  font-family: "icomoon";
}

section#contacto ul li a {
  color: #333;
}

/* Sección Proyectos */
section#proyectos {
  margin-top: 100px;
}

section#proyectos p {
  text-align: justify;
  padding-bottom: 25px;
}

section#proyectos h3 {
  color: #007ea7;
  border-bottom: 2px solid #007ea7;
  width: 35%;
  margin-bottom: 24px;
  padding-bottom: 6px;
}

@media (max-width: 767px), (min-width: 768px) and (max-width: 991px) {
  section#proyectos h3 {
    width: 100%;
  }
}

@media (max-width: 767px) {
  section#proyectos .flex-caption {
    font-size: 10px;
    line-height: 15px;
  }
}

section#proyectos header {
  background-image: url(../img/header-2.png);
}

@media (min-width: 768px) and (max-width: 991px) {
  section#proyectos header {
    padding-left: 43px;
    padding-right: 43px;
  }
}

@media (max-width: 767px) {
  section#proyectos header {
    padding-left: 20px;
    padding-right: 20px;
  }
}

section#proyectos .left {
  width: 35%;
  float: left;
  padding-right: 45px;
}

@media (max-width: 767px), (min-width: 768px) and (max-width: 991px) {
  section#proyectos .left {
    width: 100%;
    padding: 0;
  }
}

section#proyectos .left p {
  padding-bottom: 15px;
}

section#proyectos .right {
  width: 65%;
  float: right;
  padding-left: 30px;
}

@media (max-width: 767px), (min-width: 768px) and (max-width: 991px) {
  section#proyectos .right {
    width: 100%;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  section#proyectos .right .flex-direction-nav a:before {
    font-size: 41px;
  }
}

/* Sección Aerolíneas y Destinos */
section#aerolineas header,
section#destinations header {
  background-image: url(../img/header-4.png);
}

section#aerolineas h3,
section#destinations h3 {
  color: #007ea7;
  border-bottom: 2px solid #007ea7;
  float: left;
  width: 100%;
  margin-bottom: 32px;
  padding-bottom: 6px;
}

section#aerolineas ul li,
section#destinations ul li {
  /* width: 100%; */
  float: left;
  font-size: 16px;
  font-family: "robotoregular";
  color: #333;
}

section#destinations h2 {
  padding-bottom: 0;
}

section#destinations header {
  background-image: url(../img/header-5.png);
}

header {
  text-align: center;
}

/* Footer */
.footer {
  /*background-color: #009999;*/
  background: rgba(63, 38, 95, 0.9);
  float: left;
  width: 100%;
  color: #fff;
  padding-top: 30px;
  padding-bottom: 40px;
}

.footer a {
  color: #ffffff;
}

.footer .icon-logo {
  float: left;
}

.footer .icon-logo:before {
  font-size: 42px;
}

.footer .social {
  float: right;
  margin-top: 15px;
}

@media (max-width: 767px) {
  .footer .social {
    float: left;
    margin-top: 28px;
    display: block;
    width: 100%;
  }
}

.footer .social li {
  float: left;
  margin-left: 23px;
}

.footer .social li a:before {
  font-size: 26px;
}

.footer .logo {
  float: left;
}

section {
  float: left;
}

/* Botón volver arriba */
.icon-top {
  font-size: 36px;
  color: #b2b2b2;
  position: fixed;
  bottom: 22px;
  right: 29px;
}

.bt_blue {
  background: #237792;
  padding: 10px;
  border-radius: 3px;
  color: #fff;
  float: left;
  margin-bottom: 20px;
}

/* Gráfico 5 */
.grafico-5 {
  overflow: hidden;
}

.grafico-5 .ct-label.ct-vertical.ct-start {
  display: none;
}

.grafico-5 .ct-chart-bar {
  position: relative;
  left: -36px;
}

.grafico-5 + .tips p {
  width: 100% !important;
}

.grafico-5 {
  padding-left: 0;
  padding-right: 0 !important;
  left: -41px;
}

@media (max-width: 767px) {
  .grafico-5 {
    margin-left: 0 !important;
  }
}

@media (max-width: 767px) {
  .grafico-5 .ct-chart-bar {
    left: -8px !important;
  }
}

/* Utilidades de ancho */
.w-100 {
  width: 100% !important;
  padding-right: 0 !important;
  float: none !important;
  display: inline-block;
}

.w-90 {
  width: 90% !important;
  padding-right: 0 !important;
  float: none !important;
  display: inline-block;
}

@media (max-width: 767px) {
  .w-90 {
    width: 100% !important;
  }
}

.table-3 .td {
  width: 33.3% !important;
}

/* Gráficos Chartist */
.ct-chart-pie .ct-label {
  font-size: 19px;
}

.grafico-4 {
  height: 400px !important;
}

.grafico-4 .ct-bar {
  stroke-width: 10px !important;
  position: relative;
}

.grafico-4 .ct-bar:after {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  background: red;
  content: "fg";
}

.bar-normal .ct-label.ct-start {
  width: 28px !important;
}

@media (max-width: 767px) {
  .bar-normal .ct-label.ct-start {
    width: 28px !important;
  }
}

@media (max-width: 767px) {
  .bar-normal .ct-bar {
    stroke-width: 10px !important;
  }
}

.ver-chart .ct-bar {
  stroke-width: 10px !important;
}

.ver-chart .ct-label.ct-start {
  width: 88px !important;
}

@media (max-width: 767px) {
  .ver-chart .ct-label.ct-start {
    width: 75px !important;
  }
}

@media (max-width: 767px), (min-width: 768px) and (max-width: 991px) {
  .ver-chart .ct-label.ct-end {
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    left: -4px;
    position: relative;
  }
}

.stacked-chart-ver .ct-bar {
  stroke-width: 25px !important;
}

@media (max-width: 767px) {
  .stacked-chart-ver .ct-bar {
    stroke-width: 5px !important;
  }
}

@media (max-width: 767px) {
  .stacked-chart-ver .ct-label {
    font-size: 10px !important;
  }
}

@media (max-width: 767px), (min-width: 768px) and (max-width: 991px) {
  .stacked-chart-ver .ct-label.ct-end {
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    left: -4px;
    position: relative;
    top: 5px;
  }
}

@media (max-width: 767px) {
  .bar-normal-ver .ct-label.ct-end {
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    left: -26px;
    position: relative;
    justify-content: flex-start !important;
    text-align: left !important;
    width: 70px !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .bar-normal-ver .ct-label.ct-end {
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    left: -18px;
    position: relative;
    justify-content: flex-start !important;
    text-align: left !important;
    width: 88px !important;
    top: 15px;
  }
}

.bar-normal-ver .ct-label.ct-start {
  width: 76px !important;
}

@media (max-width: 767px) {
  .bar-normal-ver .ct-label.ct-start {
    width: 76px !important;
  }
}

.grafico-4 .ct-vertical.ct-grid:last-child {
  visibility: hidden;
}

/* Porcentajes */
.percents {
  float: right;
  width: 100% !important;
  position: relative;
  right: -50px;
  margin-bottom: -10px;
}

@media (max-width: 767px) {
  .percents {
    /* margin-bottom: -18px; */
  }
}

.percents li {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  float: left;
  width: 4.9%;
  left: 0%;
  position: relative;
}

.percents li span:first-child {
  font-size: 15px;
  position: relative;
  top: -5px;
}

@media (max-width: 767px) {
  .percents li span:first-child {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .percents li span:first-child:before {
    display: block;
  }
}

.percents li span:first-child.positive {
  color: green;
}

.percents li span:first-child.positive:before {
  content: "\f062";
  font-family: "FontAwesome";
  font-size: 10px;
  margin-right: 3px;
  position: relative;
  top: -1px;
}

.percents li span:first-child.negative {
  color: red;
}

.percents li span:first-child.negative:before {
  content: "\f063";
  font-family: "FontAwesome";
  font-size: 10px;
  margin-right: 3px;
  position: relative;
  top: -1px;
}

.percents li span:first-child.neutral {
  color: #333;
}

.percents li span:first-child.neutral:before {
  content: "\f063";
  font-family: "FontAwesome";
  font-size: 10px;
  margin-right: 3px;
  position: relative;
  top: -1px;
  color: #fff;
}

.percents li span:first-child + span {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  display: block;
  height: 16px;
  position: relative;
}

.percents li span:first-child + span:before {
  content: "";
  height: 5px;
  width: 1px;
  background: #ccc;
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  margin: auto;
}

@media (max-width: 767px) {
  .percents li span:first-child + span {
    height: 10px;
  }
}

.percents li:last-child {
  visibility: hidden;
}

/* Mapas */
.map.map_chile img {
  max-width: 816px;
}

.map img {
  max-width: 100%;
  height: auto;
}

.map a {
  float: left;
  width: 100%;
}

.map .tips {
  display: inline-block;
  padding-bottom: 20px;
}

.map .tips li {
  list-style: none !important;
  font-size: 11px !important;
  color: #fff !important;
}

.map .tips li.dotted {
  border-top: 1px dashed #fff;
  padding-top: 6px;
  font-size: 11px;
}

/* Ajustes adicionales */
section#contacto .col {
  margin-top: 0;
  text-align: left;
}

@media (max-width: 767px) {
  .margin-top-30-mobile {
    margin-top: 30px !important;
  }

  .margin-top-min-70-mobile {
    margin-top: -70px !important;
  }
}

section#aerolineas ul li img {
  display: initial;
  max-width: 120px;
  margin: 10px 0;
  padding: 2px;
  border: solid 1px #ccc;
}

/* Media Queries para porcentajes */
@media (min-width: 992px) {
  .percents {
    right: -5%;
  }

  .percents li {
    border-left: 0px solid #ffffff;
    width: 23.25%;
    margin-bottom: -15px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .percents {
    right: -12%;
  }

  .percents li {
    width: 4.1%;
  }

  .percents li span:first-child {
    font-size: 10px;
  }

  .percents li span:first-child.negative:before {
    font-size: 8px;
  }

  .percents li span:first-child.positive:before {
    font-size: 8px;
  }
}

@media (min-width: 600px) and (max-width: 767px) {
  .percents {
    right: -9.8%;
  }

  .percents li {
    border-left: 0px solid #fff;
    width: 19.7%;
  }
}

@media (min-width: 500px) and (max-width: 599px) {
  .percents {
    right: -9%;
  }

  .percents li {
    border-left: 0px solid #fff;
    width: 22%;
  }

  .percents li span:first-child.negative:before {
    font-size: 8px;
  }

  .percents li span:first-child.positive:before {
    font-size: 8px;
  }

  .span-neutral {
    top: -3px;
  }

  .percents {
    margin-bottom: -10px;
  }
}

@media (min-width: 421px) and (max-width: 499px) {
  .percents {
    right: -12.5%;
    margin-bottom: -25px;
  }

  .percents li {
    width: 20.85%;
    border-left: 0px solid #fff;
    border-right: 0px solid #fff;
  }
}

@media (min-width: 350px) and (max-width: 420px) {
  .percents {
    right: -15%;
  }

  .percents li {
    width: 17.7%;
    border-left: 0px solid #fff;
    border-right: 0px solid #fff;
  }
}

@media (max-width: 349px) {
  .percents {
    right: -21.5%;
  }

  .percents li {
    width: 3.45%;
    border-right: 0px solid #fff;
  }
}

/*# sourceMappingURL=main.css.map */
