@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;600&display=swap');

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif !important;
  color: #0e167b !important;
}

header {
  border-top: 10px solid #0e167b;
  position: relative;
}

header:after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  width: 20%;
  background: #0e167b;
  height: 50px;
  top: 0;
  z-index: -1;
}

.container {
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  height: 150px;
  position: relative;
}

.header .brand {
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.header .brand a.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 250px;
  width: 250px;
}

.header .brand .logo img {
  width: 100%;
}

.header .navbar {
  align-self: flex-end;
  padding: 0;
  position: absolute;
  width: 100%;
  bottom: 20px;
  z-index: 0;
}

.header ul.nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.header .navbar .item {
  margin-right: 20px;
}

.header .navbar .item a {
  align-items: center;
  min-width: 130px;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  color: #919191;
}

.header .navbar .item a span {
  position: relative;
}

.header .navbar .item a span:after {
  content: '';
  display: block;
  width: 100%;
  position: absolute;
  border-bottom: 5px solid transparent;
  bottom: -10px;
  right: 0;
  transition: all ease .3s;
}

.header .navbar .item a:hover span:after {
  border-color: #0e167b;
}

.header .navbar .icon {
  width: 47px;
  height: 47px;
  display: block;
  margin-right: 5px;
  border-radius: 30px;
}

.sessions {
  background: #0e167b;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 0 0 0 10px;
}

.sessions .icon {
  width: 40px;
  height: 40px;
  display: block;
  margin-right: 5px;
}

.sessions .item {
  margin-left: 10px;
}

.sessions .item a {
  align-items: center;
  min-width: 130px;
  cursor: pointer;
  display: flex;
  color: #fff !important;
  font-style: italic;
}

.sessions .item a span {
  font-size: 14px;
}


/* icons */

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
}

.icon.tickets {
  background-image: url('../images//_0005_aviao.png');
}

.icon.hotel {
  background-image: url('../images/_0004_hoteis.png');
}

.icon.package {
  background-image: url('../images/_0003_pacote.png');
}

.icon.transfer {
  background-image: url('../images/_0002_transfer.png');
}

.icon.iniciar-sessao {
  background-image: url('../images/_0000_iniciar-sessao.png');
}

.icon.minhas-viagens {
  background-image: url('../images/_0001_minhas-viagens.png');
}


/* footer */

.footer .icon.tickets {
  background-image: url('../images/_0003_aviao-branco.png');
}

.footer .icon.hotel {
  background-image: url('../images/_0002_hoteis-branco.png');
}

.footer .icon.package {
  background-image: url('../images/_0001_pacote-branco.png');
}

.footer .icon.transfer {
  background-image: url('../images/_0000_transfer-branco.png');
}

.footer-brand a {
  max-width: 170px;
  margin: 0 20px;
}

.footer-brand a img {
  width: 100%;
}

/* whitelabel */

.whiteLabel {
  width: 100%;
  background: url('../images/bg-whitelabel.jpg') center -380px;
  position: relative;
  padding: 150px 0px 100px;
}

.banner {
  height: 290px;
  background: #333;
  width: 100%;
  position: absolute;
  top: 0;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box {
  width: 100%;
  background: yellow;
  border-radius: 20px;
  padding: 35px 0 0;
}

.container-sm {
  width: 70%;
  margin: 0 auto;
  position: relative;
}

.box .title {
  display: flex;
  align-items: flex-end;
}


/* form */

.radio {
  margin: 15px 25px 15px 0;
}

input[type=radio] ,
input[type=checkbox]{
  position: absolute;
  opacity: 0;
}

.radio input[type="radio"] + .radio-label:before, 
.form-check input[type="checkbox"] + .form-check-label:before {
  content: '';
  background: transparent;
  border-radius: 100%;
  border: 2px solid #454545;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  top: 2px;
  margin-right: 10px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

.radio input[type="radio"]:checked + .radio-label:before, 
.form-check input[type="checkbox"]:checked + .form-check-label:before {
  background-color: #4c5156;
  box-shadow: inset 0 0 0 4px #feff00;
}

.radio input[type="radio"]:focus + .radio-label:before {
  outline: none;
  border-color: #4c5156;
}

.radio input[type="radio"]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 4px #f4f4f4;
  border-color: #b4b4b4;
  background: #b4b4b4;
}

.radio input[type="radio"] + .radio-label:empty:before {
  margin-right: 0;
}

label.radio-label {
  cursor: pointer;
}

.whiteLabel .radios {
  display: flex;
}

.whiteLabel .title {
  padding: 0 35px;
}

.whiteLabel .title h2, .whiteLabel .title h5 {
  margin: 0;
  font-weight: 600;
}

.whiteLabel .title h5 {
  margin-left: 10px;
  font-weight: 300;
} 

.whiteLabel .subtitle {
  padding: 0 35px;
  margin-top: 5px;
}

.whiteLabel .form {
  padding: 0 35px;
}

.whiteLabel .two-items {
  display: flex;
  flex-flow: nowrap;
}

.fields {
  display: flex;
  padding: 10px 0;
}

.field input {
  border: 0;
  border-radius: 8px;
  height: 40px;
  width: 100%;
  outline: none;
  padding: 0 5px 0 35px;
  font-style: italic;
  font-size: 14px;
  color: #6c757d;
}

.field input:disabled {
  background: #cacaca;
}

.field .label, .label.action {
  text-transform: uppercase;
  font-size: 13px;
  height: 18px;
}

.field .icon {
  position: absolute;
  top: 17px;
  height: 40px;
  width: 25px;
  left: 20px;
}

.field .icon.icon-origem {
  background-image: url('../images/_0010_origem.png');
}
.field .icon.icon-destino {
  background-image: url('../images/_0011_local.png');
}
.field .icon.icon-data {
  background-image: url('../images/_0009_agenda.png');
}
.field .icon.icon-pessoas {
  background-image: url('../images/_0008_pessoas.png');
}

.whiteLabel .col-md-3.row.end {
  display: flex;
  align-items: flex-end;
}


.whiteLabel .col-md-3.row.end .field {
  height: 55px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.btn.btn-blue {
  border: 0;
  outline: none;
  background: #0e167b;
  border-radius: 40px;
  height: 40px;
  margin-top: 17px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.btn.btn-blue:hover {
  color: #fff;
}

.whiteLabel .icon-search {
  background-image: url('../images/_0007_lupa.png');
  position: initial;
  height: 27px;
}

.whiteLabel .form .center {
  text-align: center;
}

.whiteLabel .form .left {
  text-align: left;
}

.form .title-stretch{
  display: flex;
}


.form .title-stretch p  {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
}

.form .title-stretch p:last-child {
  padding: 4px 5px;
}

.form .title-voo p {
  font-size: 15px;
  font-weight: bold;
}

/* newsletter */

.newsletter {
  background: #eee;
  height: 250px;
}

.newsletter .title {
  text-align: center;
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
}

.newsletter .icon {
  width: 80px;
  height: 80px;
  background-image: url('../images/icon_newsletter.png');
}

.newsletter .form {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}

.newsletter .form-group {
  width: 300px;
  margin: 0 25px !important;
}

.container input {
  border-radius: 30px;
  border: 2px solid #ccc;
  height: 45px;
  padding: 0 20px;
  font-style: italic;
  background: #eee;
}

.newsletter .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.newsletter .btn.btn-blue {
  margin: 0 !important;
  width: 120px;
  color: #fff;
}


/* footer */

.footer {
  background: #333;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer ul.navbar {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.footer .navbar .item {
  margin-right: 20px;
}

.footer .navbar .item a {
  align-items: center;
  min-width: 130px;
  cursor: pointer;
  display: flex;
  color: #fff;
}

.footer .navbar .item a:hover {
  color: #fff;
}

.footer .navbar .item a span {
  position: relative;
}

.footer .navbar .item a span:after {
  content: '';
  display: block;
  width: 100%;
  position: absolute;
  border-bottom: 5px solid transparent;
  bottom: -10px;
  right: 0;
  transition: all ease .3s;
}

.footer .navbar .item a:hover span:after {
  border-color: #fff;
}

.footer .navbar .icon {
  width: 50px;
  height: 50px;
  display: block;
  margin-right: 10px;
  border-radius: 30px;
}

.footer-brand {
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* packages */

.packages {
  background: #eee;
  padding: 40px 0;
  position: relative;
}

.packages.blue {
  background: #10197c;
}

.packages.blue:after {
  content: '';
  display: block;
  width: 100%;
  height: 30%;
  background: #eee;
  z-index: 0;
  position: absolute;
  bottom: 0;
}

.packages .h3 {
  margin: 20px 20px 60px;
  font-style: italic;
  font-weight: 300;
}

.packages .h3 b {
  font-weight: 600;
}

.packages.blue .h3 {
  color: #fff;
}

.bg-blue {
  position: absolute;
  width: 100%;
  background: #10197c;
  height: 70%;
  bottom: 0;
}


.packages .items {
  position: relative;
  z-index: 1;
}

.package-item {
  height: 460px;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  display: flex !important;
  flex-direction: column;
  margin: 0 20px;
  outline: none;
}

.package-item .image {
  width: 100%;
  height: 200px;
}

.package-item .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.package-item .type {
  padding: 0 25px;
  text-transform: uppercase;
  font-size: 15px;
}

.package-item .info {
  padding: 25px 0;
}

.package-item .title {
  padding: 0 25px;
  font-size: 30px;
  font-weight: 600;
}

.package-item .subtitle {
  height: 30px;
}

.package-item .tag {
  margin: 0 25px;
  padding: 2px 20px;
  background: #10197c;
  display: inline;
  color: #fff;
  border-radius: 20px;
  font-weight: 200;
  font-size: 13px;
}

.package-item .line {
  width: 100%;
  height: 1px;
  background: #c9c9c9;
  margin-top: 20px;
}

.package-item .subprice {
  padding: 0 25px;
  margin-top: 10px;
  font-size: 14px;
  color: #5f5f5f;
  font-weight: 300;
}

.package-item .price {
  margin: 0 25px;
  font-size: 22px;
  align-items: center;
}

.package-item .price sub {
  font-weight: 300;
}


/* slick */

button.slick-arrow {
  border: 0;
  background: #fff;
  font-size: 0;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  position: absolute;
  z-index: 6;
  top: 45%;
  outline: none !important;
  background: #fff url('../images/prev.png') center center no-repeat;
}

button.slick-prev {
  left: -20px;
}

button.slick-next {
  right: -20px;
  background: #fff url('../images/next.png') center center no-repeat;
}

button.slick-arrow:hover {
  box-shadow: 0 0 3px -1px rgba(0, 0, 0, 0.5) !important;
}

button.slick-arrow:active {
  box-shadow: 0 0 6px -1px rgba(0, 0, 0, 0.5) !important;
}


/* filters */


.ac-wrapper {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  font-weight: 300;
  -webkit-transition: -webkit-transform .1s;
  transition: -webkit-transform .1s;
  transition: transform .1s;
  transition: transform .1s,-webkit-transform .1s;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  overflow: hidden;
  overflow-y: auto;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  border: 0
}

.ac-wrapper.-show {
  will-change: transform,opacity;
  -webkit-transition: opacity .1s .1s;
  transition: opacity .1s .1s;
  opacity: 1;
  visibility: visible;
  z-index: 1500
}

.ac-wrapper .ac-close-modal-txt {
  display: none
}

.ac-wrapper .ac-close-container {
  height: 55px
}

.ac-wrapper .ac-close-container,.ac-wrapper .ac-close-container .ac-close-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.ac-wrapper .ac-close-container .ac-close-modal {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #666;
  cursor: pointer;
  font-size: 24px;
  height: 100%;
  width: 55px
}

.ac-wrapper .ac-header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 1
}

.ac-wrapper .ac-header:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  height: 1px;
  background-color: #ccc
}

.ac-wrapper .ac-input-mobile-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #444
}

.ac-wrapper .ac-input-mobile-container .ac-input-mobile {
  text-transform: capitalize;
  color: #444;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 24px;
  outline: 0;
  border: 0;
  padding: 0 10px 20px;
  min-width: 0;
  font-weight: 700
}

.ac-wrapper .ac-input-mobile-container .ac-input-mobile::-webkit-input-placeholder {
  font-style: italic;
  color: #888;
  font-weight: 400;
  text-transform: none
}

.ac-wrapper .ac-input-mobile-container .ac-input-mobile::-moz-placeholder {
  font-style: italic;
  color: #888;
  font-weight: 400;
  text-transform: none
}

.ac-wrapper .ac-input-mobile-container .ac-input-mobile:-ms-input-placeholder {
  font-style: italic;
  color: #888;
  font-weight: 400;
  text-transform: none
}

.ac-wrapper .ac-input-mobile-container .ac-input-mobile::-ms-input-placeholder {
  font-style: italic;
  color: #888;
  font-weight: 400;
  text-transform: none
}

.ac-wrapper .ac-input-mobile-container .ac-input-mobile::placeholder {
  font-style: italic;
  color: #888;
  font-weight: 400;
  text-transform: none
}

.ac-wrapper .ac-borrar {
  padding: 0 15px 8px;
  cursor: pointer;
  color: #666
}

.ac-wrapper .ac-borrar:before {
  display: none
}

.ac-wrapper .ac-container {
  position: fixed;
  top: 103px;
  /* bottom: 0; */
  overflow-y: scroll;
  -webkit-box-shadow: none;
  box-shadow: none;
  width: 100%;
}

.ac-wrapper .ac-group-container .ac-group-items:after {
  content: "";
  position: absolute;
  left: 15px;
  height: 1px;
  right: 0;
  bottom: 0;
  background-color: #eee
}

.ac-wrapper .ac-group-container:last-of-type .ac-group-items {
  margin-bottom: 0
}

.ac-wrapper .ac-group-container:last-of-type .ac-group-items:after {
  content: none
}

.ac-wrapper .ac-group-container.-no-results .ac-group-title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  background-color: transparent;
  border-bottom: 1px solid #f5f5f5
}

.ac-wrapper .ac-group-container.-no-results .ac-group-title-container .ac-group-title,.ac-wrapper .ac-group-container.-no-results .ac-group-title-container .ac-group-title-icon {
  color: #888
}

.ac-wrapper .ac-group-title-container {
  background-color: #eee;
  min-height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 15px
}

.ac-wrapper .ac-group-title-container .ac-group-title-icon {
  padding-right: 10px;
  color: #444
}

.ac-wrapper .ac-group-title-container .ac-group-hint-error {
  font-weight: 700
}

.ac-wrapper .ac-group-title-container.-error {
  display: none;
  color: #aaa
}

.ac-wrapper .ac-group-items {
  position: relative;
  padding: 5px 0 15px;
  color: #666
}

.ac-wrapper .ac-group-items .ac-item-icon {
  line-height: 1;
  top: 14px;
  position: absolute;
  left: 15px;
  color: #444
}

.ac-wrapper .ac-group-items .ac-item-icon+.item-text {
  padding-left: 25px
}

.ac-wrapper .ac-group-items .item {
  line-height: 45px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 0 15px;
  cursor: pointer
}

.ac-wrapper .ac-group-items .item.-refinement {
  padding-left: 70px
}

.ac-wrapper .ac-group-items .item:active {
  color: #4300d2;
  background-color: rgba(92,143,224,.1)
}

.ac-wrapper .ac-group-items .item .ac-item-refinement-icon {
  padding: 0 5px;
  color: #ccc;
  display: inline-block
}

.ac-wrapper .ac-group-items .item .item-text em {
  color: #4300d2;
  padding: 5px 0
}

.ac-wrapper.-desktop {
  overflow: initial;
  position: absolute;
  height: auto;
  bottom: auto;
  width: auto;
  border: 0;
  top: 70px;
}

.ac-wrapper.-desktop:after {
  content: "";
  position: absolute;
  left: 16px;
  top: -20px;
  border: 10px solid transparent;
  border-bottom-color: #f5f5f5
}

.ac-wrapper.-desktop:before {
  content: "";
  height: 14px;
  top: -7px;
  width: 14px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 19px;
  background-color: #f5f5f5;
  -webkit-box-shadow: 0 0 4px rgba(0,0,0,.25);
  box-shadow: 0 0 4px rgba(0,0,0,.25)
}

.ac-wrapper.-desktop.-facet:after {
  border-color: transparent transparent #fff
}

.ac-wrapper.-desktop.-facet:before {
  background-color: #fff
}

.ac-wrapper.-desktop.-arrow-right:after {
  left: auto;
  right: 16px
}

.ac-wrapper.-desktop.-arrow-right:before {
  left: auto;
  right: 19px
}

.ac-wrapper.-desktop .ac-group-container {
  position: relative
}

.ac-wrapper.-desktop .ac-group-title-container.-error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.ac-wrapper.-desktop .ac-group-title-container.-error .ac-group-title {
  padding: 15px 0
}

.ac-wrapper.-desktop .ac-container {
  top: 0;
  overflow-y: hidden;
  position: static;
  text-align: left;
  font-size: 16px;
  background-color: #fff;
  width: 500px;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0,0,0,.25);
  box-shadow: 0 1px 4px 0 rgba(0,0,0,.25);
}

.ac-wrapper.-desktop .ac-container .ac-group-items .ac-item-icon {
  top: 11px
}

.ac-wrapper.-desktop .ac-container .ac-group-items .item {
  line-height: 40px
}

.ac-wrapper.-desktop .ac-container .ac-group-items .item:hover {
  background-color: #eee
}

.ac-wrapper.-desktop .ac-container .ac-group-items .item.-active {
  background-color: #eee
}

.packages-list {
  width: 100%;
  height: 27px;
  display: flex;
  margin: 35px 0 20px;
}

.packages-list .item {
  width: 170px;
  height: 25px;
  margin-right: 25px;
  cursor: pointer;
}

.item.voo_hospedagem {
  background: url(../images/voo_hospedagem.png) no-repeat;
}

.item.voo_2_hospedagem {
  background: url(../images/voo_2_hospedagem.png) no-repeat;
  width: 170px;
}

.item.voo_carro {
  background: url(../images/voo_carro.png) no-repeat;
  width: 128px;
}

.item.voo_hospedagem.active {
  background: url(../images/voo_hospedagem_branco.png) no-repeat;
}

.item.voo_2_hospedagem.active {
  background: url(../images/voo_2_hospedagem_branco.png) no-repeat;
}

.item.voo_carro.active {
  background: url(../images/voo_carro_branco.png) no-repeat;
}

.fields .field.row {
  display: flex;
  align-items: flex-end;
}


.two-fields .field {
  display: flex;
}

.two-fields .field input {
  border-radius: 0;
  text-align: center;
}

.two-fields .label {
  text-transform: uppercase;
  font-size: 13px;
  height: 18px;
}

span.icon.icon-quarto {
  background-image: url('../images/_0006_hotel.png');
  top: 18px;
  left: 25px;
}

span.icon.icon-person-white {
  background-image: url('../images/_0008_pessoas.png');
  top: 18px;
  left: 100px;
}

.whiteLabel .center,
.whiteLabel .left{
  padding: 20px 0;
}

.center.two-options {
  display: flex;
  padding: 20px 0;
}

.more_options {
  width: 40%;
  text-align: left;
}

.button_text {
  cursor: pointer;
}

.card-accommodation.card-body {
  background: #ffd400;
  border-radius: 20px;
  padding: 10px 0 30px;
}

.mt30 {
  margin-top: 30px;
}

.no-icon input {
  padding: 0 5px 0;
  text-align: center;
}

.action-stretch{
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  display: block;
}

.action-stretch:hover{
  font-weight: bold;
  color: #333;
}

a.nounderline:link{
  text-decoration:none
}

.package-item .tag-red {
  padding: 2px 20px;
  background: #ec5f5f;
  display: inline;
  color: #fff;
  border-radius: 20px;
  font-weight: 200;
  font-size: 13px;
}

.has-error input{
  border: 1px solid #a94442 !important;
  border-color: #dc3545;
  padding-right: calc(1.5em + .75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(.375em + .1875rem) center;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}
