/* Loader */
.loader-container {
  position: fixed;
  top: 100%;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1000;
  opacity: 0;
  /*transition: all 300ms ease;*/
  overflow: hidden;
  pointer-events: none;
}

.loader-container.active {
  top: 0;
  opacity: 1;
  pointer-events: all;
}

.loader-wrapper {
  width: 50px;
  height: 50px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loader {
  border: 7px solid #f3f3f3;
  border-top: 7px solid #293042;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}
/* Loader */

a {
  color: inherit;
  text-decoration: underline;
}

.list {
  position: fixed;
  top: 160px;
  left: 0;
  z-index: 210;
  filter: drop-shadow(0 0 5px rgb(53, 49, 49));
  transition: all 300ms ease;
}

.list button {
  border: none;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 0 5px rgb(184, 97, 97);
  padding: 0;
  width: 30px;
  transition: all 300ms ease;
}

.list .pages {
  background: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 0;
  overflow: hidden;
  transition: all 300ms ease;
  border-radius: 0 10px 10px 0;
  max-height: calc(100vh - 200px);
  overflow: auto;
}

.list button:hover {
  width: 40px;
}

.list.active button {
  width: 40px;
  border-radius: 0 10px 0 0;
}

.list.active .pages {
  width: auto;
  min-width: 140px;
  padding: 5px;
}

.list .pages a {
  display: block;
  font-size: 14px;
  color: #777;
  padding: 5px 10px;
  text-decoration: none;
}

.list .pages a:hover {
  color: #0d004c;
}
.list .pages a.active {
  color: red;
}

html,
body {
  color: #0d004c;
  font-family: "Poppins", sans-serif;
}

body {
  transition: padding 300ms ease;
}

html body *:focus {
  box-shadow: none !important;
}

body.modal-open {
  padding: 0 !important;
  overflow: hidden !important;
}

.text-primary {
  color: #cb0017 !important;
}

.link-text {
  color: #cb0017;
  transition: all 300ms ease;
}
.link-text:hover {
  color: #5667cb;
}

.link-text-dark {
  color: #0a023d;
  transition: all 300ms ease;
}
.link-text-dark:hover {
  color: #cb0017;
}

.text-decoration-none {
  text-decoration: none;
}

.btn-link {
  color: #0a023d;
  text-decoration: none;
}
.btn-link:hover {
  color: #cb0017;
}

.page-content {
}

.page-content ul {
  list-style: none;
  padding: 0;
}

.page-content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 5px;
}

.page-content ul li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  background: url("../img/front/svg/icon-list-style.svg") no-repeat center center;
}
.page-content ul.has-icons li:after {
  display: none;
}
.page-content ul.has-icons li {
  position: relative;
  padding-left: 54px;
  margin: 10px 0;
  min-height: 48px;
  display: flex;
  align-items: center;
}
.page-content ul.has-icons li .image {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  max-height: 100%;
}
.page-content ul.has-icons li img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  max-height: 80%;
  object-fit: contain;
}

.page-content ul.has-icons li ul li {
  padding-left: 20px;
}

.page-content .layout-red h2 {
  color: #cb0017;
}

.container {
  width: 1160px;
  max-width: 100%;
}

.btn-primary {
  background: #cb0017;
  border-color: #cb0017;
  font-weight: bold;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #0d004c;
  border-color: #0d004c;
}

.btn-secondary {
  background: #5667cb;
  border-color: #5667cb;
  font-weight: bold;
  color: #0d004c;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: #cb0017;
  border-color: #cb0017;
  color: #fff;
}

.form-check-input:checked {
  background-color: #0d004c;
  border-color: #0d004c;
}

.dropdown-menu {
  border-radius: 0;
  border: 2px solid #0d004c;
  min-width: 100%;
}

.dropdown-menu.show {
  margin-top: -4px !important;
}

.header-displacer {
  transition: all 150ms ease;
  min-height: 65px;
  /* 65px header height */
}

.header {
  background: #fff;
  transition: all 300ms ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.25));
}
.header .header-wrapper {
  padding: 10px 0;
  border-top: 10px solid #cb0017;
  transition: all 300ms ease;
}
body.mobile-app .header .mobile-app-banner {
  position: static;
  transition: all 300ms ease;
}

.alerts-wrapper {
  padding: 10px 0;
  font-size: 14px;
  transition: all 300ms ease;
}
.alerts-wrapper .alert-container + .alert-container {
  border-top: 1px solid #cb0017;
  margin-top: 5px;
  padding-top: 5px;
}
.alerts-wrapper .text {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.alerts-wrapper .title {
  color: #cb0017;
  margin-right: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.alerts-wrapper .description p:last-of-type {
  margin-bottom: 0;
}
.alerts-wrapper .alert-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.alerts-wrapper .alert-wrapper .icon {
  margin-right: 10px;
}

@media (max-width: 768px) {
  .alerts-wrapper .text {
    flex-direction: column;
    width: 100%;
    align-items: start;
  }
  .alerts-wrapper .title {
    margin-right: 0;
  }
}

.scrolled .header .alerts-wrapper,
.openMenu .header .alerts-wrapper,
.scrolled .header .mobile-app-banner {
  padding: 0;
  height: 0;
  overflow: hidden;
}

.header .logo.is-beta {
  position: relative;
}
.header .logo.is-beta:after {
  display: block;
  content: "Beta version";
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(60%);
  background: #0d004c;
  color: #fff;
  font-size: 7px;
  border-radius: 10px;
  padding: 1px 7px;
}
@media (min-width: 992px) {
  .header .logo.is-beta:after {
    font-size: 9px;
    transform: translateY(40%);
  }
  .scrolled .header .logo.is-beta:after {
    transform: translateY(40%);
    font-size: 6px;
  }
}

.header .logo,
.header .logo img {
  display: block;
  transition: all 300ms ease;
  width: 100%;
}

@media (min-width: 992px) {
  .header-displacer {
    min-height: 120px;
    /* 120px header height */
  }

  .header .header-wrapper {
    border-top: 34px solid #cb0017;
  }
  .scrolled .header .header-wrapper {
    border-top-width: 10px;
    padding: 5px 0;
  }
  .scrolled .header {
    filter: drop-shadow(0 2px 0 #cb0017);
  }

  .scrolled .header .logo {
    width: 160px;
  }
}

.header .menu-wrapper {
  display: flex;
  flex-direction: row;
}

.header .menu-wrapper .separator {
  display: inline-block;
  width: 2px;
  height: 30px;
  background: #707070;
  margin: auto 15px;
}

.header .menu-wrapper a {
  display: inline-block;
  margin: auto 0;
}

.header .menu-wrapper .user-actions {
  margin: auto 0;
}

.header .menu-wrapper .user-actions a {
  margin: auto 3px;
}

.header .user-actions a.cta-user {
  padding: 5px 15px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  background: rgba(0, 0, 0, 0);
  transition: all 300ms ease;
  color: #0d004c;
}

.header .user-actions a.cta-user:hover {
  background: #0d004c;
  color: #fff;
}

.header .user-actions a.cta-login {
  background: #cb0017;
  color: #fff;
}

.header .menu-wrapper a.cta-menu {
  padding: 5px 10px;
  padding: 0;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  color: #0d004c;
  display: flex;
}

.header .menu-wrapper a.cta-menu > span {
  margin: auto;
}

.header .menu-wrapper a.cta-menu .toggleMenu {
  margin-left: 10px;
}

.header .menu-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 0;
  height: 0;
  overflow: hidden;
  background: #e5e5e5;
  transition: all 300ms ease;
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}

.menuOverlay {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 100%;
  z-index: 99;
  background: rgba(0, 0, 0, 0.5);
  transition: all 300ms ease;
}

.openMenu .menuOverlay {
  bottom: 0;
}

.openMenu .header {
  z-index: 100;
}

.openMenu .header .menu-container {
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.5));
  z-index: 10;
}

.header .menu-container .menu-links {
  border-bottom: 2px solid #cb0017;
  padding: 20px 0 0;
  margin-bottom: 20px;
  display: flex;
  overflow: auto;
}

.header .menu-container .menu-links ul {
  list-style: none;
  width: 100%;
  margin: 0 0 10px 0;
  padding: 0 5px;
  min-width: 190px;
}

@media (max-width: 992px) {
  .header .menu-container .menu-links {
    display: block;
  }
}

@media (min-width: 768px) {
  .header .menu-container .menu-links ul {
    min-width: 150px;
  }
}

.header .menu-container .menu-links ul:first-of-type {
  padding-left: 0;
}

.header .menu-container .menu-links ul:last-of-type {
  padding-right: 0;
}

.header .menu-container .menu-links ul li {
  margin: 0;
}

.header .menu-container .menu-links ul li a {
  display: block;
  padding: 7px 0;
  text-decoration: none;
  color: inherit;
  transition: all 300ms ease;
}

.header .menu-container .menu-links ul li a:hover,
.header .menu-container .menu-links ul li a.active {
  color: #cb0017;
  text-decoration: underline;
}

.header .menu-container .menu-links ul li.title {
  border-bottom: 2px solid #cb0017;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 10px;
}

.header .menu-container .menu-links-help {
  display: flex;
}
@media (max-width: 992px) {
  .header .menu-container .menu-links-help {
    flex-direction: column;
    padding-bottom: 20px;
  }
}
.header .menu-container .menu-links-help ul {
  display: flex;
  list-style: none;
  padding: 0;
}

@media (min-width: 992px) {
  .header .menu-container .menu-links-help ul.sal {
    margin-left: auto;
    margin-right: 110px;
  }
}
@media (min-width: 1140px) {
  .header .menu-container .menu-links-help ul.sal {
    margin-left: auto;
    margin-right: 40px;
  }
}

.header .menu-container .menu-links-help ul li {
  padding: 0 10px;
  margin: auto 0;
}

.header .menu-container .menu-links-help ul.languages li {
  padding: 0 3px;
}

.header .menu-container .menu-links-help ul li:first-of-type {
  padding-left: 0;
}

.header .menu-container .menu-links-help ul li:last-of-type {
  padding-right: 0;
}

.header .menu-container .menu-links-help ul li a {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 300ms ease;
}

.header .menu-container .menu-links-help ul li a.current-language {
  font-weight: bold;
}

.header .menu-container .menu-links-help ul li a:hover,
.header .menu-container .menu-links-help ul li a.active {
  color: #cb0017;
  text-decoration: underline;
}

.header .menu-container .wrapper {
  padding: 0 0;
  transition: all 300ms ease;
}

.openMenu .header .menu-container .wrapper {
  padding: 15px 0;
  max-height: calc(100vh - 76px);
  max-height: calc(100vh - 66px);
  /* 76px header height */
  overflow: auto;
}

@media (min-width: 992px) {
  .openMenu .header .menu-container .wrapper {
    /* padding: 15px 0 50px; */
    padding: 15px 0;
  }
}
@media (min-width: 992px) {
  .openMenu .header .menu-container .wrapper {
    max-height: calc(100vh - 120px);
    /* 120px header height */
  }
}

.header .menu-container .col-indicator {
  position: relative;
}

.header .menu-container .indicator {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 10px;
  height: 10px;
  border: 10px solid transparent;
  border-bottom-color: #e5e5e5;
  transition: all 300ms ease;
  opacity: 0;
}

.header .menu-container .closeMenu {
  position: absolute;
  top: 20px;
  right: 30px;
  border: none;
  background: none;
  transition: all 300ms ease;
  display: flex;
  padding: 5px 0;
}

.header .menu-container .closeMenu img {
  margin-left: 5px;
}

@media (max-width: 992px) {
  .header .menu-container .closeMenu {
    display: none;
  }

  .form-search {
    width: 100% !important;
    max-width: 300px;
  }
}

.form-search {
  width: calc(100% - 100px);
  max-width: 400px;
}

@media (max-width: 575px) {
  .form-search {
    width: 100%;
    max-width: 578px;
  }
}
.form-search .actions {
  display: flex;
  border-bottom: 2px solid #0d004c;
}

.form-search .actions .form-group {
  width: 100%;
}

.form-search input {
  border-radius: 0;
  background: none !important;
  border: none;
  color: #0d004c;
  padding-left: 0;
}

.form-search .submit button {
  padding: 5px 7px;
  border: none;
  background: none;
  min-width: 50px;
  text-align: center;
}

.openMenu .header .menu-container .indicator {
  top: -20px;
  opacity: 1;
}

.footer {
  padding: 15px 0;
  background: #0d004c;
  color: #fff;
}

.footer h2 {
  font-size: 14px;
  margin-bottom: 20px;
}

.social-media {
  margin-bottom: 10px;
}

.social-media ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-media ul li {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
}
.social-media ul li:last-of-type {
  margin-right: 0;
}

.social-media ul li a img {
  width: 34px;
}

.form-newsletter .actions {
  display: flex;
  border-bottom: 2px solid #fff;
}

.form-newsletter .actions .form-group {
  width: 100%;
}

.form-newsletter input {
  border-radius: 0;
  color: #fff !important;
  background: none !important;
  border: none;
  padding-left: 0;
  font-size: 14px;
}

.form-newsletter .submit input {
  padding: 5px 7px;
}

.footer a:not(.btn) {
  color: inherit;
  text-decoration: none;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer .links {
    display: flex;
    text-align: left;
    justify-content: start;
  }
}
.footer .links > span {
  display: inline-block;
  margin: auto 10px auto 0;
}
.footer .links a {
  transition: all 300ms ease;
  display: block;
  text-align: center;
  width: fit-content;
  padding: 0 10px 0 0;
  font-size: 14px;
}

.footer .links a:first-of-type {
}
.footer .links a:last-of-type {
  padding: 0;
}

@media (max-width: 992px) {
  .footer .links a,
  .footer .links a:first-of-type,
  .footer .links a:last-of-type {
  }
}

.footer .links-main {
  margin-bottom: 20px;
}
.footer h2,
.footer .h2,
.footer .links a {
  font-size: 14px;
  line-height: 1.3;
}
.footer .links a:hover,
.footer .links a.active {
  color: #cb0017;
  text-decoration: underline;
}

.footer .links-main a {
  text-transform: uppercase;
}

.footer .links-secondary {
  margin-top: 0;
  margin-bottom: 20px;
}

.footer .links-secondary a {
  font-size: 12px;
  margin: 10px 0;
}

.footer .copy {
  text-align: center;
  font-size: 14px;
}

.footer .call-center {
  font-size: 14px;
}
.footer .btn-newsletter {
  color: #d71921 !important;
}

@media (max-width: 1200px) {
  .footer {
    padding-top: 20px;
  }
  .footer .col-social-media ul {
    margin-bottom: 30px;
  }
  .footer .form-newsletter {
    max-width: 400px;
    margin: 0 auto;
  }
  .footer h2 {
    margin-top: 20px;
  }
  .footer .col-newsletter .col-newsletter-wrapper {
    margin: 0 auto 20px;
    max-width: 400px;
  }
}
.call-center-wrapper {
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer .col-social-media h2,
  .footer .col-social-media .h2,
  .footer .col-social-media ul,
  .footer .col-newsletter h2,
  .footer .payment-wrapper,
  .footer .call-center-wrapper {
    text-align: center;
    margin-bottom: 10px;
  }
  .footer .links-main a,
  .footer .links-main a:last-of-type {
    padding: 10px 10px;
  }
}
@media (min-width: 992px) {
  .footer .copy {
    text-align: left;
  }
}

.footer .payment-wrapper img {
  width: 100%;
  margin-top: 10px;
  /* max-width: 135px; */
}

/* @media (min-width: 1200px) {
  .footer .col-social-media {
    width: 280px;
  }
  .footer .col-newsletter {
    width: 280px;
  }
  .footer .col-menu {
    width: 600px;
  }
} */

/* menu button begin */
.toggleMenu {
  display: inline-block;
  width: 36px;
  height: 36px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  border: 1px solid transparent;
  vertical-align: middle;
}

.toggleMenu span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #0d004c;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.toggleMenu span:nth-child(1) {
  top: 6px;
}

.toggleMenu span:nth-child(2),
.toggleMenu span:nth-child(3) {
  top: 50%;
  margin-top: -1px;
}

.toggleMenu span:nth-child(4) {
  bottom: 6px;
}

.openMenu .toggleMenu {
  /*border-color: #fff;*/
}

.openMenu .toggleMenu span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.openMenu .toggleMenu span:nth-child(2) {
  transform: rotate(45deg);
}

.openMenu .toggleMenu span:nth-child(3) {
  transform: rotate(-45deg);
}

.openMenu .toggleMenu span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

/* menu button end */

.hero {
  max-width: 100%;
  width: 1260px;
  min-height: 200px;
  padding: 50px 0;
  margin: 0 auto 20px;
  background-color: #707070;
  background: url("../img/front/img-header-plane.png") no-repeat center center;
  background-size: cover;
  display: flex;
  justify-items: center;
  align-items: center;
}

@media (min-width: 578px) {
  .hero {
    min-height: 250px;
  }
}
@media (min-width: 768px) {
  .hero {
    min-height: 300px;
  }
}
@media (min-width: 992px) {
  .hero {
    min-height: 350px;
  }
}
.hero.hero-home {
  background: url("../img/front/img-header-homepage.png") no-repeat center center;
  background-size: cover;
}

.hero.hero-content {
  padding: 30px 0;
  min-height: 200px;
  background: url("../img/front/bg-clouds.png") no-repeat center center;
  background-size: cover;
  margin-bottom: 20px;
}
.hero.no-background {
  padding: 10px 0;
  min-height: 200px;
  background: #fff;
}

.hero.hero-travel {
  padding: 30px 0;
  background: url("../img/front/bg-engine.png") no-repeat center center;
  background-size: cover;
  margin-bottom: 20px;
}

.hero.hero-press {
  padding: 30px 0;
  background: url("../img/front/bg-press.png") no-repeat center center;
  background-size: cover;
  margin-bottom: 20px;
}

.hero-content h2 {
  color: #cb0017;
  font-size: 20px;
}

.search-form-wrapper {
  position: relative;
  z-index: 11;
  padding: 20px;
  background: rgba(255, 255, 255, 0.85);
}

.search-form-wrapper label {
  display: block;
  margin-bottom: 0;
}

.search-form-wrapper .closeDetailsRow {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: #fff;
  border: none;
  display: none;
}

@media (min-width: 578px) {
  .search-form-wrapper .closeDetailsRow {
    position: absolute;
    bottom: auto;
    top: 10px;
    right: 10px;
    background: none;
  }
}

.search-form-wrapper.active .closeDetailsRow {
  display: block;
}

.search-form-wrapper .choose-type {
  display: flex;
  margin-bottom: 10px;
}

.search-form-wrapper .choose-type .form-check {
  margin-left: 20px;
  padding-left: 0;
  position: relative;
  overflow: hidden;
  display: flex;
}

.search-form-wrapper .choose-type div.form-check {
  margin-left: 0;
}

.search-form-wrapper .choose-type .form-check input {
  position: absolute;
  left: -10px;
  top: -10px;
  width: 1px;
  height: 1px;
}

.search-form-wrapper .choose-type a.form-check,
.search-form-wrapper .choose-type .form-check label {
  font-size: 18px;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 300ms ease;
  padding-bottom: 5px;
  display: flex;
  text-decoration: none;
}

.search-form-wrapper .choose-type a.form-check span,
.search-form-wrapper .choose-type .form-check label span {
  display: inline-block;
}

.search-form-wrapper .choose-type a.form-check img,
.search-form-wrapper .choose-type .form-check label img {
  margin-right: 10px;
}

.search-form-wrapper .choose-type a.form-check:hover,
.search-form-wrapper .choose-type .form-check label:hover {
  border-color: #0d004c;
  color: #0d004c;
}

.search-form-wrapper .choose-type .form-check input + label,
.search-form-wrapper .choose-type .form-check input + label:hover,
.search-form-wrapper .choose-type .form-check input:checked + label {
  border-color: #cb0017;
}

.search-form-wrapper .from-to {
  display: flex;
  flex-direction: column;
}

@media (min-width: 578px) {
  .search-form-wrapper .from-to {
    flex-direction: row;
  }
}

.search-form-wrapper .from-to > div {
  margin-top: auto;
}

.search-form-wrapper .from-to > div.reverse-wrapper {
  margin: 20px auto;
  width: 60px;
  text-align: center;
}

@media (min-width: 578px) {
  .search-form-wrapper .from-to > div.reverse-wrapper {
    margin: auto 0 0;
    width: 60px;
    text-align: center;
    transform: translateY(50%);
  }
}

.search-form-wrapper .from-to > div.reverse-wrapper a,
.search-form-wrapper .from-to > div.reverse-wrapper a img {
  margin: 0 auto;
  display: block;
}

.search-form-wrapper .actions {
  padding: 0;
}

.search-form-wrapper .actions div {
  margin-top: auto;
}

@media (min-width: 992px) {
  .search-form-wrapper .actions .col-dates {
    max-width: calc(50% - 17px);
    margin-right: auto;
  }

  .search-form-wrapper .actions .col-travellers {
    max-width: calc(50% - 17px);
    margin-left: auto;
  }
}

@media (min-width: 578px) {
  .search-form-wrapper .actions div.from-to .text {
    width: calc(50% - 30px);
  }
}

.search-form-wrapper .actions div.from-to {
  width: 100%;
}

.search-form-wrapper .actions div.submit {
  margin-left: 20px;
  width: 25%;
}

.search-form-wrapper .actions div.submit .btn {
  width: 100%;
}

.search-form-wrapper .actions .text input {
  padding: 10px 0;
  border-radius: 0;
  background: none;
  border: none;
  border-bottom: 2px solid #0d004c;
  box-shadow: none;
}

.search-form-wrapper .actions .text input.inputDate {
  padding-right: 34px;
  background: url("../img/front/svg/icon-calendar.svg") no-repeat center right;
  background-size: 30px auto;
}

.search-form-wrapper .radios > div {
  display: flex;
}

.search-form-wrapper .radios .form-check {
  margin-right: 20px;
}

.search-form-wrapper .radios .form-check label {
  margin: 0;
}

.search-form-wrapper form {
}

.search-form-wrapper-overlay {
  position: fixed;
  top: 50%;
  bottom: 50%;
  right: 50%;
  left: 50%;
  background: rgba(0, 0, 0, 0.5);
  transition: all 300ms ease;
  z-index: 10;
}

.search-form-wrapper-overlay.active {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.search-form-wrapper.active {
  background: #fff;
}

.search-form-wrapper.active .showDetailsRow {
  opacity: 0;
  pointer-events: none;
  display: none;
}

.detailsRow {
  opacity: 0;
  height: 0;
  overflow: auto;
  padding: 0 20px 0;
  transition: all 300ms ease;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}

.active .detailsRow {
  opacity: 1;
  height: auto;
  overflow: auto;
  padding: 10px 20px 0;
}

.detailsRow > .row {
  /* margin: 0; */
}

.data-details {
  margin: 0 -20px;
  background: #efefef;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: all 300ms ease;
}

.data-details.active {
  margin-top: 20px;
  opacity: 1;
  height: auto;
}

.data-details-wrapper {
  padding: 20px;
}

.data-details .link-with-icon {
  color: inherit;
  display: flex;
  text-decoration: none;
}

.data-details .link-with-icon img {
  margin-right: 10px;
}

.data-details .carousell {
  padding: 10px 40px;
}

@media (min-width: 768px) {
  .data-details .carousell {
    padding: 20px 50px;
  }
}

.data-details .carousell .slick-arrow {
  background: #0d004c;
  padding: 3px;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
}

.data-details .carousell .slick-arrow img {
  width: 10px;
  margin: auto;
}

.data-details .carousell .slick-arrow:before {
  display: none;
  font-family: "Arial", sans-serif;
}

.data-details .carousell .slick-prev {
  left: 0;
}

.data-details .carousell .slick-next {
  right: 0;
}

@media (min-width: 768px) {
  .data-details .carousell .slick-prev {
    left: 0;
  }

  .data-details .carousell .slick-next {
    right: 0;
  }

  .data-details .carousell .slick-arrow {
    width: 40px;
    height: 40px;
  }

  .data-details .carousell .slick-arrow img {
    width: 12px;
    margin: auto;
  }
}

.data-details .carousell .slick-slide {
  padding: 5px;
}

.data-details .carousell .item {
  text-align: center;
  background: #fff;
  color: #0d004c;
  border-radius: 10px;
  padding: 5px 0;
  display: block;
  text-decoration: none;
  transition: all 300ms ease;
  border: 2px solid #fff;
}

.data-details .carousell .item:hover {
  border-color: #0d004c;
}

.data-details .carousell .from {
  color: #707070;
  font-size: 14px;
}

.data-details .carousell .price {
  font-weight: bold;
  color: #cb0017;
  font-size: 24px;
}

@media (min-width: 768px) {
  .data-details .carousell .price {
    font-size: 34px;
  }
}

.data-details .carousell .best-price {
  background: #0d004c;
  color: #fff;
  font-size: 14px;
  margin: 0 -2px 5px;
  opacity: 0;
}

.data-details .carousell .isBestPrice .best-price {
  opacity: 1;
}

.data-details .carousell .month {
  color: inherit;
  font-size: 14px;
}

.site-actions {
  padding: 20px 0;
}

.site-actions .dropdown-toggle {
  display: flex;
  background: none;
  width: 100%;
  border: none;
  border-bottom: 2px solid #0d004c;
  padding: 7px 0;
  color: #0d004c;
}

.site-actions .dropdown-toggle span {
  margin: auto 0;
}

.site-actions .dropdown-toggle span.icon {
  display: block;
  width: 24px;
  height: 24px;
  position: relative;
  margin-right: 10px;
}

.site-actions .dropdown-toggle span.icon img {
  width: 90%;
  height: 90%;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  object-fit: contain;
}

.site-actions .dropdown-toggle:after {
  margin-left: auto;
  margin-top: auto;
  border: none;
  height: 18px;
  width: 18px;
  background: url("../img/front/svg/icon-plus-circle.svg") no-repeat center center;
  background-size: contain;
}

.site-actions .dropdown-toggle img {
  margin-right: 10px;
}

@media (min-width: 575px) and (max-width: 758px) {
  .header .user-actions a {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .header .logo {
    max-width: 120px;
  }

  .header .menu-wrapper .user-actions,
  .header .menu-wrapper .separator {
    display: none;
  }

  .search-form-wrapper {
    padding: 10px;
  }

  .detailsRow {
    padding: 0 10px;
  }

  .active .detailsRow {
    padding: 0 10px 10px;
  }

  .detailsRow > .row {
    margin: 0 -10px;
  }

  .data-details {
    margin: 0 -10px -10px;
  }

  .data-details-wrapper {
    padding: 10px;
  }

  .search-form-wrapper .choose-type {
    justify-content: center;
  }

  .search-form-wrapper .choose-type .form-check {
    margin: 0 !important;
    width: 33.33%;
    padding: 0 5px;
    justify-content: center;
  }

  .search-form-wrapper .choose-type a.form-check .image,
  .search-form-wrapper .choose-type .form-check label .image {
    margin: 0 auto 5px;
    width: 40px;
    height: 40px;
    position: relative;
  }

  .search-form-wrapper .choose-type a.form-check img,
  .search-form-wrapper .choose-type .form-check label img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .search-form-wrapper .choose-type a.form-check,
  .search-form-wrapper .choose-type .form-check label {
    flex-direction: column;
    font-size: 14px;
    padding-bottom: 5px;
  }

  .search-form-wrapper .choose-type a.form-check span,
  .search-form-wrapper .choose-type .form-check label span {
    display: block;
    width: 100%;
    text-align: center;
  }

  .search-form-wrapper .actions {
    flex-direction: column;
  }

  .search-form-wrapper .actions > div.from-to,
  .search-form-wrapper .actions > div.submit {
    width: 100%;
    min-width: 100%;
    margin: 10px 0;
  }
}

.big-boxes {
}

.big-boxes .box {
  display: block;
  position: relative;
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px;
  border-radius: 10px;
}

.big-boxes .box img {
  display: block;
  width: 100%;
  border-radius: 10px;
}

.big-boxes .box .details {
  position: absolute;
  top: 0;
  right: 30px;
  min-width: 33%;
  background: #cb0017;
  text-align: center;
  padding: 10px 20px;
  border-radius: 20px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  transition: all 300ms ease;
}

.big-boxes .box:hover .details {
  background: #0d004c;
}

.big-boxes .box .details > span {
  display: block;
}

.big-boxes .box .details small {
  font-weight: 300;
}

.cta-choose {
  display: flex;
  margin-bottom: 20px;
}

.cta-choose h2 {
  font-size: 20px;
}

.cta-choose h2,
.cta-choose .dropdown {
  margin: 0;
}

.cta-choose .dropdown {
  margin-left: 20px;
}

.cta-choose h2,
.cta-choose .dropdown-toggle {
  font-size: 18px;
  line-height: 1.3;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 7px 0;
}

.cta-choose .dropdown-toggle {
  display: flex;
  background: none;
  width: 100%;
  border-color: #0d004c !important;
  padding: 7px 0;
}

.cta-choose .dropdown-toggle span {
  margin: auto 0;
}

.cta-choose .dropdown-toggle:after {
  margin: auto 0 auto 20px;
  border: none;
  height: 18px;
  width: 18px;
  background: url("../img/front/svg/icon-chevron-down-circle.svg") no-repeat center center;
  background-size: contain;
}

.small-boxes {
  margin-bottom: 20px;
}

.small-boxes .col-box {
  margin-bottom: 20px;
}

.small-boxes .box {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.small-boxes .box img {
  display: block;
  max-width: 100%;
}

.small-boxes .box .img {
  display: flex;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.small-boxes .box .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.small-boxes .box .details {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.small-boxes .box .details > span {
  display: block;
}

.small-boxes .box .details > span.city {
  font-weight: bold;
  word-break: break-all;
}

.small-boxes .box .details > span.price {
  margin-top: auto;
}

.small-boxes .box .details > span.price span {
  color: #cb0017;
  font-weight: bold;
  font-size: 24px;
}

.small-boxes .box .details > span.price small {
  color: #707070;
}

@media (max-width: 578px) {
  .small-boxes .box .img {
    margin-bottom: 10px;
  }
  .small-boxes .box .details > span {
    text-align: center;
  }
}
@media (min-width: 578px) {
  .small-boxes .box {
    flex-direction: row;
  }
  .small-boxes .box .img {
    display: flex;
    width: calc(50% - 5px);
    overflow: hidden;
    border-radius: 10px;
  }
  .small-boxes .box .details {
    display: flex;
    flex-direction: column;
    width: calc(50% + 5px);
    padding-left: 10px;
  }
}

.tab-content {
  border: 2px solid #cb0017;
  padding: 20px 10px 0;
}
.tab-content p {
  margin: 10px 0;
}
@media (min-width: 578px) {
  .tab-content {
    padding: 20px 20px 0;
  }
}

.nav-tabs {
  flex-wrap: nowrap;
  overflow: auto;
  border: none;
}

.nav-tabs .nav-link {
  border-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transition: all 300ms ease;
  color: inherit;
  border-color: transparent;
  height: 100%;
}

.nav-tabs .nav-item {
  padding-left: 0;
  margin: 0;
  border-right: 2px solid #fff;
}

.nav-tabs .nav-item:last-child {
  border-right: 0px solid #fff;
}

.nav-tabs .nav-item:after {
  display: none;
}

.tabs-grey.nav-tabs .nav-link {
  background: #dbdbdb;
}

@media (max-width: 430px) {
  .nav-tabs {
    /*    justify-content: space-between;*/
  }
}

@media (max-width: 578px) {
  .nav-tabs .nav-link {
    padding: 10px 5px;
  }
}

.nav-tabs .nav-link:hover {
  border-color: transparent;
}

.nav-tabs .nav-link.active {
  color: #fff;
  background: #cb0017;
  border-color: #cb0017;
}

.inspired {
  margin-bottom: 20px;
  border: 2px solid #cb0017;
  /* background: url("../img/front/image-map.png") no-repeat center right 10%; */
  background-size: cover;
  background-position: right center;
  position: relative;
}
.inspired:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}
@media (min-width: 992px) {
  .inspired {
    /* background: url("../img/front/image-map.png") no-repeat center center; */
    background-size: cover;
  }
}

.inspired .text {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #fff;
  position: relative;
  z-index: 2;
}

.inspired .text h3,
.inspired .text p {
  text-shadow: 0 0 3px #000;
  font-weight: bold;
}
.inspired .text h3 {
  font-size: 24px;
}

.inspired .actions {
  margin-top: auto;
  padding-top: 20px;
  margin-top: 60px;
}

.inspired .img img {
  display: block;
  width: 100%;
}

.page-title {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
}

.page-title a,
.page-title .separator {
  display: block;
  margin-right: 10px;
}

.page-title img {
}

.page-title a,
.page-title .separator,
.page-title h1 {
  display: flex;
  font-size: 24px;
  color: inherit;
  margin-top: auto;
  margin-bottom: auto;
  text-decoration: none;
}
.page-title a:hover {
  color: #cb0017;
  transition: all 300ms ease;
}
.page-title .separator {
  font-size: 20px;
  line-height: 1;
}

.box-icon-and-text {
  text-align: center;
  margin: 20px 0;
}

.box-icon-and-text .icon {
  position: relative;
  margin: 0 auto 10px;
  width: 100px;
  height: 70px;
}

.box-icon-and-text .icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.separator-line {
  height: 1px;
  background: #cb0017;
}

.image-and-text {
  display: flex;
  flex-direction: row;
}

.image-and-text .image {
  background: #c4c4c4;
  /* width: 33%; */
  min-height: 100px;
  overflow: hidden;
  border-radius: 10px;
  margin: auto 0;
  display: flex;
}

.image-and-text .image img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.image-and-text .text {
  margin: auto 0 auto 10px;
}

.image-and-text .text p {
  margin: 0;
}

.help-tabs .nav-tabs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0;
}

.help-tabs .nav-tabs .nav-item {
  width: 33.33%;
  margin: 10px 0;
  padding: 0 10px;
}

.help-tabs .nav-tabs .nav-item:after {
  display: none;
}

@media (min-width: 578px) {
  .help-tabs .nav-tabs .nav-item {
    width: 25%;
  }
}

.help-tabs .nav-tabs .nav-item .nav-link {
  display: block;
  border-radius: 0;
  background: none;
  border: none;
  width: 100%;
  padding: 0;
  color: #0d004c;
  text-align: center;
}

.help-tabs .nav-tabs .nav-item .nav-link:hover {
}

.help-tabs .nav-tabs .nav-item .nav-link.active {
  /* color: #cb0017; */
  mix-blend-mode: hard-light;
}

.help-tabs .nav-tabs .nav-item .nav-link .icon {
  display: block;
  margin: 0 auto 10px;
  max-width: 100%;
  width: 40px;
  height: 50px;
  position: relative;
}

@media (min-width: 578px) {
  .help-tabs .nav-tabs .nav-item .nav-link .icon {
    width: 60px;
    height: 70px;
  }
}

.help-tabs .nav-tabs .nav-item .nav-link .icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.help-tabs .nav-tabs .nav-item .nav-link .text {
  display: block;
  width: 100%;
  text-align: center;
}

.help-tabs .bg-gray {
  background: #ebebeb;
  padding-bottom: 20px;
}

.help-tabs .bg-gray .tab-content {
  border: none;
}

.help-tabs h3 {
  color: #cb0017;
  margin-bottom: 20px;
  font-size: 20px;
}

.help-tabs h4 {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: bold;
}

.help-tabs p {
  font-size: 16px;
}

.help-tabs .tab-content a {
  color: inherit;
  text-decoration: underline;
}

.form-inputs-travellers .form-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 20px 0;
}

.form-inputs-travellers .form-group label {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-self: center;
  min-width: fit-content;
}

.form-inputs-travellers .form-group label small {
  display: block;
}

.form-inputs-travellers .form-group .input {
  display: flex;
  flex-direction: row;
  position: relative;
  max-width: 140px;
}
.form-inputs-travellers .form-group .input.select {
  min-width: 140px;
  text-align: center;
}

.form-inputs-travellers .form-group .input,
.form-inputs-travellers .form-group .input input {
  font-size: 20px;
}
.form-inputs-travellers .form-group .input input,
.form-inputs-travellers .form-group .input select {
  border-radius: 0;
  background: #fff !important;
}
.form-inputs-travellers .form-group .input input {
  padding: 5px 44px;
  text-align: center;
}

/* Chrome, Safari, Edge, Opera */
.form-inputs-travellers .form-group .input input[type="number"]::-webkit-outer-spin-button,
.form-inputs-travellers .form-group .input input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.form-inputs-travellers .form-group .input input[type="number"][type="number"] {
  -moz-appearance: textfield;
}

.form-inputs-travellers .form-group .input .btn-counter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  /* background: #eee; */
  cursor: pointer;
  font-size: 160%;
}

.form-inputs-travellers .form-group .input .btn-counter.decrease {
  left: 0;
}

.form-inputs-travellers .form-group .input .btn-counter.increase {
  right: 0;
}

.disabled[disabled] {
  opacity: 0.55;
  filter: grayscale(100);
}

.modal .modal-header .btn-close {
  display: flex;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: none;
  width: auto;
  height: auto;
  color: #19124a;
  opacity: 1;
  text-transform: capitalize;
  align-items: center;
}

.modal .modal-header .btn-close:after {
  margin-left: 10px;
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../img/front/svg/icon-times-circle.svg") no-repeat right center;
  background-size: contain;
}

@media (max-width: 578px) {
  .modal .modal-header .btn-close {
    font-size: 12px;
  }
  .modal .modal-header .btn-close:after {
    margin-left: 5px;
  }
}

.modal .modal-header .modal-title {
  font-weight: bold;
}

.modal .modal-header {
  align-items: start;
}

.modal .modal-header,
.modal .modal-footer {
  border: none;
}

.modal.modal-dates .modal-header {
  border-bottom: 1px solid #0d004c;
}

.modal .modal-footer {
  padding-top: 0;
}

.modal .modal-content {
  border-radius: 0;
  box-shadow: 0 0 30px #000;
}

.with-reset {
  position: relative;
}

.with-reset input:invalid {
  padding-right: 44px;
}

.with-reset .btn-reset {
  cursor: pointer;
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 40px;
  height: 40px;
  /* background: #eee; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}

.with-reset input:valid + .btn-reset {
  opacity: 1;
  pointer-events: all;
}

.datesWrapper {
  width: 400px;
  width: calc(100% - 100px);
  min-width: 50%;
  max-width: calc(100% - 100px);
}

.datesWrapper h2,
.datesWrapper .h2 {
  font-size: 14px;
  font-weight: bold;
}

.datesWrapper h3,
.datesWrapper .h3 {
  font-size: 14px;
  font-weight: bold;
}

.datesWrapper p {
  font-size: 14px;
  margin-bottom: 10px;
}

@media (min-width: 576px) {
  .datesWrapper h2,
  .datesWrapper .h2 {
    font-size: 24px;
    font-weight: bold;
  }

  .datesWrapper h3,
  .datesWrapper .h3 {
    font-size: 18px;
    font-weight: bold;
  }

  .datesWrapper p {
    font-size: 16px;
  }
}

@media (max-width: 620px) {
  .modal.modal-dates .modal-dialog {
    min-width: 100%;
    margin: 0;
  }

  .lightpick__month {
    width: calc(50vw - 22px) !important;
  }
}

@media (min-width: 620px) {
  .modal.modal-dates .modal-dialog {
    min-width: 620px;
  }
}
.modal-xs {
  max-width: 400px;
}
.modal-md {
  max-width: 600px;
}

@media (min-width: 575px) and (max-width: 1200px) {
  .modal-xl {
    width: 1140px;
    max-width: calc(100% - 30px);
  }
}
@media (min-width: 575px) and (max-width: 1200px) {
  .modal-lg {
    width: 800px;
    max-width: calc(100% - 30px);
  }
}

@media (max-width: 576px) {
  .modal-xs,
  .modal-md {
    margin: 15px auto;
  }
}

@media (max-width: 479px) {
  html .lightpick__months {
    display: block;
  }

  .lightpick__month {
    display: block;
    max-width: 100%;
    width: 360px !important;
    margin: 0 auto;
  }
}

html .lightpick__months {
  background: #fff;
}

html .lightpick {
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  width: 100%;
  background: #fff;
}

.accordion-button,
.accordion-button:not(.collapsed) {
  background-color: #cb0017;

  color: #fff;
}

.accordion-button:after,
.accordion-button:not(.collapsed):after {
  background-image: url("../img/front/svg/icon-accordion-arrow.svg");
}

.accordion-body {
  padding: 0;
}

.accordion-content {
  padding: 20px;
}
.accordion-content a {
  text-decoration: underline;
  color: #cb0017;
}

.accordion-actions {
  background: #c4c4c4;
  text-align: right;
  padding: 10px;
}

.accordion-actions a {
  color: #0d004c;
  display: inline-block;
  text-decoration: none;
}

.accordion-actions a img {
  margin-left: 10px;
}

.form-group-travel sup {
  color: #cb0017;
}

.form-group-travel .col-12 {
  margin-top: auto !important;
}

.link-download {
  display: block;
  height: 100%;
  border: 1px solid #bcbcbc;
  padding: 10px;
  border-radius: 10px;
  color: inherit;
  transition: all 300ms ease;
  text-decoration: none;
}

.link-download:hover {
  border-color: #cb0017;
  color: #cb0017;
}

.link-download > span {
  display: block;
}

.link-download > span.icon {
  position: relative;
  padding-top: 50%;
}

.link-download > span.icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.link-download > span.text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.link-download > span.text img {
  margin-left: 10px;
}

.link-box {
  display: block;
  height: 100%;
  border: 1px solid #bcbcbc;
  padding: 10px;
  border-radius: 10px;
  color: inherit;
  transition: all 300ms ease;
  text-decoration: none;
}

.link-box:hover {
  border-color: #cb0017;
  color: #cb0017;
}

.link-box > span {
  display: block;
}

.link-box > span.icon {
  position: relative;
  padding-top: 50%;
}

.link-box > span.icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.link-box > span.text {
  display: flex;
  justify-content: center;
  align-items: center;
}

.article h3,
.article .h3 {
  font-size: 18px;
  font-weight: bold;
}

.article p.date {
  color: #707070;
  font-size: 14px;
}

.article p.date a {
  color: #0a023d;
}

.article p.date strong {
  color: #cb0017;
}

.article h3 a,
.article .h3 a {
  text-decoration: none;
  color: #0d004c;
}
.article p {
  font-size: 14px;
}

.article .read-more {
  font-weight: bold;
  color: #cb0017;
  transition: all 300ms ease;
  text-decoration: none;
}

.article .read-more:hover {
  color: #0d004c;
  text-decoration: underline;
}
.article img {
  max-width: 100%;
}

.article .contents {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 2px solid #0d004c;
}

.article .contents ul {
  margin: 0;
  padding: 0;
}
.article .contents ul li:after {
  display: none;
}
.article .contents ul li {
  padding-left: 0;
}
.article .contents ul li a {
  transition: all 300ms ease;
}
.article .contents p a:hover,
.article .contents ul li a:hover {
  color: #cb0017;
}

.article-content h1 {
  font-size: 2rem;
  font-weight: bold;
}
.article-content h2 {
  font-size: 1.6rem;
  font-weight: bold;
}
.article-content h3 {
  font-size: 1.2rem;
  font-weight: bold;
}
.article-content h4 {
  font-size: 1rem;
  font-weight: bold;
}

.meals .meal {
  border: 1px solid #bcbcbc;
  border-radius: 10px;
  padding: 10px;
}

@media (max-width: 767px) {
  .article .sidebar {
    border-bottom: 2px solid #0d004c;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .article .sidebar {
    border-left: 2px solid #0d004c;
    padding-left: 10px;
  }
}

.article .sidebar h2 {
  font-size: 24px;
  font-weight: bold;
}
.article .sidebar ul {
  /* margin-left: 10px; */
  margin: 0;
}
.article .sidebar ul li {
  padding-left: 0;
  margin: 0;
}
.article .sidebar ul li:after {
  display: none;
}
.article .sidebar ul li a {
  font-size: 14px;
  display: block;
  padding: 5px 0;
  text-decoration: none;
  transition: all 300ms ease;
}
.article .sidebar ul li a .arrow {
  display: inline-block;
  padding: 0 10px 0 0;
  transition: all 300ms ease;
}
.article .sidebar ul li a:hover {
  color: #cb0017;
}
.article .sidebar ul li a:hover .arrow {
  padding: 0 5px;
}
.meals .meal .image {
  position: relative;
  padding-top: 50%;
}

.meals .meal .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 96%;
  width: 96%;
  object-fit: contain;
}

.meals .meal .text,
.meals .meal .actions {
  margin: 10px 0;
}

.meals .meal .text h4 {
  text-align: center;
}

.meals .meal .text p {
  color: #707070;
}

.meals .meal .actions {
  margin-bottom: 0;
}

.meals .meal .actions .inputs {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.meals .meal .actions .inputs .input {
  display: flex;
  align-items: center;
  margin: 0;
}

.meals .meal .actions .inputs .input input {
  width: 60px;
  height: 40px;
  padding: 3px;
  margin: 0 10px;
  text-align: center;
}

.meals .meal .actions .inputs .input .btn-counter {
  background: #0d004c;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  transition: all 300ms ease;
}

.meals .meal .actions .inputs .input .btn-counter:hover {
  background: #cb0017;
}

.ui-autocomplete .ui-menu-item-wrapper {
  color: #707070;
  transition: all 300ms ease;
  border: none;
  margin: 0;
}

.ui-autocomplete .ui-menu-item-wrapper.ui-state-active {
  border: none;
  background: #cb0017;
  border-color: #cb0017;
  color: #fff;
}

.ui-autocomplete .ui-menu-item-wrapper .list-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.ui-autocomplete .ui-menu-item-wrapper .list-item span {
  min-width: 33%;
}

.ui-autocomplete .ui-menu-item-wrapper .list-item span.airport {
  text-align: center;
}

.ui-autocomplete .ui-menu-item-wrapper .list-item span.country {
  text-align: right;
}

html .lightpick__day.is-start-date {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle fill='%23cb0017' cx='16' cy='16' r='16'/%3E%3C/svg%3E");
}

html .lightpick__day.is-start-date,
html .lightpick__day.is-end-date,
html .lightpick__day.is-start-date:hover,
html .lightpick__day.is-end-date:hover {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle fill='%23cb0017' cx='16' cy='16' r='16'/%3E%3C/svg%3E");
}

html .lightpick__day.is-start-date.is-in-range,
html .lightpick__day.is-end-date.is-in-range {
  background: #cb0017 !important;
}

html .lightpick__day.is-end-date.is-in-range,
html .lightpick__day.is-start-date.is-in-range.is-flipped {
  background: #cb0017;
}

html .lightpick__day.is-in-range {
  background: rgba(203, 0, 23, 0.25);
}

html .lightpick__reset-action,
html .lightpick__apply-action {
  font-weight: bold;
  padding: 7px 10px;
  font-size: 14px;
  font-family: "Lato", sans-serif;
}

html .lightpick__apply-action {
  background: #cb0017;
}
html .lightpick__apply-action.disabled {
  background: #aaa;
  cursor: help;
  pointer-events: none;
}

html .lightpick__month-title-bar {
  text-align: center;
}

@media (max-width: 480px) {
  html .lightpick__month-title-bar {
    flex-direction: column-reverse;
  }
  html .lightpick__month-title-bar button {
    margin: 5px;
  }
}
html .lightpick__month-title {
  min-width: 100%;
}

html .lightpick__month-title > .lightpick__select-months,
html .lightpick__day-of-the-week {
  text-transform: capitalize;
}

.slider-wrapper {
  margin: 30px auto;
}

.slider-wrapper h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

.slider-wrapper img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.slider-wrapper .slick-arrow {
  z-index: 100;
}

.slider-wrapper .slick-prev {
  left: 10px;
}

.slider-wrapper .slick-next {
  right: 10px;
}
@media (max-width: 768px) {
  html .big-slider .slick-arrow {
    display: none !important;
  }
}
html .big-slider .slick-arrow {
  background: #0d004c;
  padding: 3px;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
}

.big-slider .slick-arrow img {
  width: 10px;
  margin: auto;
}

.big-slider .slick-arrow:before {
  content: "";
  display: none;
  font-family: "Arial", sans-serif;
}

.big-slider .slick-prev {
  left: 10px;
}

.big-slider .slick-next {
  right: 10px;
}
.big-slider .slick-dots {
  margin-top: 20px;
  position: static;
}
@media (min-width: 768px) {
  .big-slider .slick-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
  }
}

.big-slider .slick-dots li {
  border: 2px solid #fff;
  background: #0d004c;
  border-radius: 20px;
  transition: all 300ms ease;
}

.big-slider .slick-dots li button {
  display: none;
}

.big-slider .slick-dots li.slick-active {
  background: #cb0017;
  width: 60px;
}

.big-slider .slick-dots li:before {
  content: "";
  display: none;
  font-family: "Arial", sans-serif;
}

@media (min-width: 768px) {
  .big-slider .slick-prev {
    left: 10px;
  }

  .big-slider .slick-next {
    right: 10px;
  }

  .big-slider .slick-arrow {
    width: 40px;
    height: 40px;
  }

  .big-slider .slick-arrow img {
    width: 12px;
    margin: auto;
  }
}

.destinations .box {
  display: block;
  position: relative;
  margin-bottom: 2rem;
  border-radius: 5px;
  overflow: hidden;
}
.destinations .box .image {
  display: block;
  width: 100%;
  position: relative;
  padding-top: 100%;
  height: 0;
  border-radius: 5px;
  overflow: hidden;
}
.destinations .box img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  border-radius: 5px;
  transition: all 300ms ease;
}
.destinations .box:hover img {
  width: 105%;
}
.destinations .box .details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 5px;
  text-align: center;
  background: #cb0017;
  color: #fff;
  text-transform: uppercase;
  transition: all 300ms ease;
}
.destinations .box:hover .details {
  background: #0d004c;
}

.sort-container h2 {
  font-size: 24px;
}

.offer-wrapper .offer {
  border: 1px solid #bcbcbc;
  border-radius: 10px;
  padding: 10px 20px;
}

.offer-wrapper .offer .trip-type,
.offer-wrapper .offer .date,
.offer-wrapper .offer .from-price,
.offer-wrapper .offer .price {
  margin-bottom: 10px;
}
.offer-wrapper .offer .trip-type,
.offer-wrapper .offer .date {
  color: #707070;
}
.offer-wrapper .offer h3 {
  font-weight: bold;
}
.offer-wrapper .offer .from-price {
  font-size: 14px;
}
.offer-wrapper .offer .price {
  font-size: 5vh;
  font-weight: bold;
  color: #cb0017;
}

.map-wrapper {
  width: 100%;
  height: 300px;
  height: 30vh;
  min-height: 600px;
  background: #eee;
}

.breadcrumb {
  margin: 20px auto;
}
.breadcrumb li {
  padding: 0 7px;
  display: flex;
}
.breadcrumb li:after {
  display: none;
}

.breadcrumb li.breadcrumb-item {
  padding: 0;
}
.breadcrumb li.breadcrumb-item a {
  text-decoration: none;
  color: inherit;
  display: flex;
  font-size: 18px;
}
.breadcrumb li.breadcrumb-item a span {
  display: flex;
}
.breadcrumb li.breadcrumb-item a img {
  margin-right: 10px;
  width: 18px;
}

div.alert {
  display: none;
}

.form-checkin .col-reverse .reverse {
  display: block;
  padding: 5px;
}

@media (min-width: 768px) {
  .form-checkin .col-reverse {
    width: 40px;
    padding: 0;
    margin-top: auto;
    text-align: center;
  }
  .form-checkin .col-input {
    width: calc(50% - 20px);
  }
  .form-checkin .col-reverse .reverse {
    transform: translateY(50%);
  }
}
@media (max-width: 767px) {
  .form-checkin .parent-col-input {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .form-checkin .parent-col-input .col-input {
    width: 50%;
  }
}

.form-checkin .col-reverse .reverse img {
  display: block;
  margin: auto;
}
.form-checkin label {
  display: block;
  margin-bottom: 0px;
}
.site-actions .form-checkin label {
  margin-bottom: 5px;
}

.form-checkin .radios .form-check {
  margin-left: 20px;
}
.form-checkin .radios .form-check:first-of-type {
  margin-left: 0;
}
.form-checkin input.inputDate {
  padding-right: 34px;
  background: url("../img/front/svg/icon-calendar.svg") no-repeat center right;
  background-size: auto;
  background-size: 30px auto;
}

.inputs-border-bottom input {
  border: none;
  border-radius: 0;
  padding: 5px 0;
  border-bottom: 2px solid #0d004c;
}

.form-checkin a {
  color: #cb0017;
}

.ml-embedded {
  margin-bottom: 50px;
}

.accordion .collapsing {
  transition: none;
}

#chartdiv {
  position: relative;
  z-index: 10;
}

.swal2-popup {
  border-radius: 0 !important;
}
.swal2-icon {
  display: none !important;
}
.swal2-confirm {
  background: #cb0017 !important;
  font-weight: bold !important;
}
.swal2-confirm:hover {
  background: #0d004c !important;
}

.table {
  color: #0d004c;
}

.table th,
.table td {
  border: 1px solid #0d004c !important;
}

.block-site-actions + .my-4,
.block-big-boxes + .my-4 {
  margin-top: 2rem !important;
  margin-bottom: 1rem !important;
}

.block-free-text h1,
.block-free-text .h1,
.tab-content .h1 {
  font-weight: bold;
  font-size: 2rem;
}
.tab-content .h1 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.modal-bg {
  background: rgba(0, 0, 0, 0.55);
}

.geoLocationModal .hasBorder {
  border-bottom: 1px solid #c4c4c4;
}

@media (min-width: 576px) {
  .geoLocationModal .hasBorder {
    border-bottom: none;
    border-right: 1px solid #c4c4c4;
  }
}

/* chat hd begin */
.ct-gui .ct-header {
  display: none !important;
}

.ct-gui {
  --chatbubble-image: none !important;
  --chatbubble-background-color: none !important;
  box-shadow: none !important;
  filter: drop-shadow(0px 0px 5px #fff);
  filter: drop-shadow(0px 0px 3px #cb0017);
  /* right: 10px !important;
  bottom: 40px !important; */
  transition: all 300ms ease;
}

#conversejs.theme-default-round.converse-overlayed #minimized-chats .minimized-chats-flyout {
  background-color: none !important;
}
#conversejs.theme-default-round.converse-overlayed #minimized-chats .minimized-chats-flyout,
.ct-gui .ct-body {
  background-image: url("../img/front/chat/KonY-inactive.svg") !important;
  background-position: center !important;
  background-size: 70% !important;
  background-repeat: no-repeat !important;
  background-color: rgba(0, 0, 0, 0) !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  transition: all 300ms ease !important;
}
.ct-gui .ct-body:hover {
  background-image: url("../img/front/chat/KonY-active.svg") !important;
}
.ct-gui:hover,
#conversejs.theme-default-round.converse-overlayed #minimized-chats .minimized-chats-flyout:hover {
  filter: drop-shadow(0px 0px 7px #0d004c);
}
@media (max-width: 420px) {
  .footer .copy {
    padding-bottom: 70px;
  }
}

#conversejs.theme-default-round.converse-overlayed .chatbox .chat-head.talkToBot .chatbox-title::after {
  background-image: url("../img/front/chat/KonY-active.svg") !important;
  background-position: center !important;
  background-size: 70% !important;
  background-repeat: no-repeat !important;
}
/* chat hd end */

/* mobile-app-banner begin */
.mobile-app-banner {
  display: none;
}
@media (max-width: 992px) {
  body.mobile-app .mobile-app-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: #cb0017;
    padding: 10px 0;
    display: block;
  }

  body.mobile-app .header {
    top: 70px;
  }
  .scrolled body.mobile-app .header,
  .openMenu body.mobile-app .header {
    top: 0;
    z-index: 102;
  }

  .mobile-app-banner-content {
    display: flex;
    flex-direction: row;
    height: 50px;
  }
  .mobile-app-banner-content > div {
    min-width: 40px;
    margin: auto 0;
  }
  .mobile-app-banner-content .wrapper-actions {
    margin-left: auto;
    display: none;
  }
  .mobile-app-banner-content .wrapper-actions a {
    display: block;
    text-align: right;
    color: #fff;
    font-size: 24px;
  }
  .mobile-app-banner-content .wrapper-link {
    width: 100%;
  }
  .mobile-app-banner-content .wrapper-link a {
    display: flex;
    text-decoration: none;
  }
  .mobile-app-banner-content .wrapper-link a span {
    margin: auto 0;
    display: block;
  }
  .mobile-app-banner-content .wrapper-link a span.img {
    min-width: 60%;
  }
  .mobile-app-banner-content .wrapper-link a span img {
    display: block;
    width: 140px;
    max-width: 100%;
  }
  .mobile-app-banner-content .wrapper-link a span.mobile-app-banner-btn {
    padding-left: 10px;
    margin-left: auto;
  }
  .mobile-app-banner-content .wrapper-link a span.mobile-app-banner-btn span {
    background: #fff;
    font-size: 12px;
    border-radius: 10px;
    text-align: center;
    line-height: 1.3;
    padding: 5px 3px;
    color: #0d034c;
    width: 110px;
  }
  .static-page {
  }
}
/* mobile-app-banner end */

@media (max-width: 992px) {
  .sort-container h2 {
    font-size: 18px;
  }
  .offer-wrapper .offer h3 {
    font-size: 20px;
  }
  .breadcrumb {
    margin: 10px 0;
  }
  .breadcrumb img {
    display: block;
  }
  .breadcrumb li.breadcrumb-item a {
    font-size: 14px;
  }
  .breadcrumb li.breadcrumb-item a img {
    margin-right: 5px;
  }
  .breadcrumb li {
    margin: auto 0;
  }
  .breadcrumb li .text {
    display: flex;
  }
  .breadcrumb li .text span {
    margin: auto 0;
  }
}
.lightpick__day.is-available {
  font-weight: bold;
}
.lightpick__day.is-available.is-start-date.is-in-range.is-end-date {
  border-radius: 100% !important;
  background: #0a023d !important;
}
.grey-website .header,
.grey-website .header-wrapper,
.grey-website .tab-content {
  border-color: #4c2428;
}
.grey-website.scrolled .header {
  filter: drop-shadow(0 2px 0 #4c2428);
}
.grey-website .footer {
  background-color: #0d062e;
}

.grey-website .mobile-app-banner,
.grey-website .header .container,
.grey-website .footer .container,
.grey-website .block:not(.block-hero-flight-search) > .container,
.grey-website .block .hero .search-form-wrapper,
.grey-website .block .big-boxes a,
.grey-website .block .big-boxes img,
.grey-website .block .box,
.grey-website .block .nav button,
.grey-website .block .offer-wrapper,
.grey-website .block.block-hero-banner,
.grey-website .modal .modal-content,
.grey-website .ui-menu .list-item,
.grey-website .ct-gui {
  filter: grayscale(0.8);
}

.weather-destination {
  border: 1px solid #4e3c55;
  border-radius: 5px;
  padding: 15px 15px;
}
@media (min-width: 768px) {
  .weather-destination {
    padding: 30px 30px;
  }
}
.weather-destination h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #4e3c55;
}
.weather-destination h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: #4e3c55;
  text-transform: capitalize;
}
.weather-destination .weather-boxes {
  display: flex;
  overflow: auto;
}
@media (min-width: 768px) {
  .weather-destination .weather-boxes {
    flex-wrap: wrap;
  }
}
.weather-destination .weather-boxes .box {
  flex: 0 0 14%;
  max-width: 14%;
  text-align: center;
  margin: 10px 0;
  padding: 5px 5px;

  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .weather-destination .weather-boxes .box {
    min-width: 100px;
  }
}
.weather-destination .weather-boxes .box:first-child {
  display: none;
}
.weather-destination .weather-boxes .box .icon {
  font-size: 60px;
}
.weather-destination .weather-boxes .box .icon i {
  color: #4e3c55;
}
.weather-destination .weather-boxes .box p {
  color: #4e3c55;
}
.weather-destination .weather-boxes .box p.description {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 15px;
}
.weather-destination .weather-boxes .box p.description::first-letter {
  text-transform: uppercase;
}
.weather-destination .weather-boxes .box p.temperature {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.0200003px;
  margin-bottom: 0;
  margin-top: auto;
}
