@charset "UTF-8";

@-webkit-keyframes news {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(-166%, 0, 0);
    transform: translate3d(-166%, 0, 0);
  }
}

@keyframes news {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(-166%, 0, 0);
    transform: translate3d(-166%, 0, 0);
  }
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.row-custom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: -15px;
  margin-left: -15px;
  max-width: 90rem;
}

.ita-blue {
  background-color: #0171CF;
  max-height: 80px;
}
.search-bar__input_new{
  box-sizing: border-box;
  height: 56px !important;
  width: 682px;
  border: 1px solid #72727F;
  opacity: 0.5;
  border-radius: 8px !important;
  margin:0;
  background-color: #72727F33;
}
.ita-search {
  height:104px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: absolute;
  background-color: #ffffff;
}
.search-wrapper{
  margin: 2px;
  padding: 5px;
  border-radius: 8px;
}
.ita-search.isHidden{
  display:none;
}
.searchIsOpen.search-wrapper{
  background-color: #2987D6;
}
#search-bar-container{
  display: flex;
  align-items: center;
  justify-content: center;
}
#search-bar-container-mobile{
  display: flex;
  align-items: center;
  justify-content: center;
}
#search-bar-container-header{
  display: flex;
  align-items: center;
  justify-content: center;
}
#search-bar-container-mobile-header{
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-wrap .button.buttons-solid-large-default {
  height: 56px;
  width: 160px;
  border-radius: 28px;
  padding-top: 16.5px;
  padding-bottom: 16.5px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: 24px;
  background-color: #0171CF;
}
.button-wrap .button.buttons-solid-large-default span{
  font-family: Lato;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.5px;
}
input[type="text"]#search-bar__input_new {
  background-image: url("../../../content/dam/itaspa/assets/icons/brand/ic-24-utility-search-black.svg");
  background-repeat: no-repeat;
  background-position: 18px;
  padding-left: 59px;
}
input[type="text"]#search-bar__input_new_mobile {
  background-image: url("../../../content/dam/itaspa/assets/icons/brand/ic-24-utility-search-black.svg");
  background-repeat: no-repeat;
  background-position: 18px;
  padding-left: 59px;
}
input#search-bar__input_new::placeholder {
  color:black
}
input#search-bar__input_new_mobile::placeholder {
  color:black
}
.inputError {
  color:red;
}
.suggestion-box-new__single_option_container:hover {
  background:#e9eff6;
}
.search-bar-new{
  /*
    display: flex;
    align-items: center;
    justify-content: center;
    */
}
.suggestion-box-new{
  position: absolute;
  width: 682px;
  border-radius: 8px;
  background: #ffffff;
  margin-top: 3px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  z-index: 9;
}
.suggestion-box-new__single_option_container{
  height: 48px;
  align-items: center;
  display: flex;
  padding-left: 19px;
  border-radius: 8px;
}
.suggestion-box-new__single_option{
  color: #2E2E38;
  font-family: Lato;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.4px;
  line-height: 20px;
}
/* search tablet and mobile start */
.searchBox-wrapper{
  padding-top: 20px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1240px) {
  #search-bar-container-mobile .button-wrap{
    display: none;
  }
  #search-bar-container-mobile{
    flex-direction: column;
  }
  .suggestion-box-new.suggestion-boxSearch-new{
    width: 100%;
    left: 0;
    top: 72px;
  }
  .search-bar__input_new_mobile{
    box-sizing: border-box;
    width: 100%;
    height: 40px !important;
    border: 1px solid #72727F !important;
    opacity: 0.37;
    border-radius: 8px !important;
  }
  .search-bar-new{
    width: 100%;
  }
}
/* search tablet and mobile end */


@media (min-width: 1024px) {
  .row.main-menu-mob{
    display:none;
  }
}

.ita-lightgrey {
  background-color: #C2D7EE;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 1009;
}

.headermenu-airways {
  align-items: center;
  flex-wrap: nowrap;
  height: 80px;
}

.newsbox-airways {
  position: relative;
  background-color: #C2D7EE;
  padding-top: 10px;
  padding-bottom: 10px;
}

.news-info {
  color: #0C2340;
  font-family: 'lato', sans-serif;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 24px;
}

.news-wrap {
  overflow: hidden;
}

.news-wrap .news {
  white-space: nowrap;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: news;
  animation-name: news;
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
}

.news-wrap .news__item {
  margin-right: 20px;
  color: #0C2340;
  font-family: 'lato', sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.news:hover {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}

.news-shadow {
  position: absolute;
  width: 100px;
  height: 100%;
  top: 0;
  right: 0;
  background-image: linear-gradient(to right, rgba(194, 215, 238, 0) , rgba(194, 215, 238, 1));
}

.news-view-all {
  color: #0C2340;
  font-family: 'lato', sans-serif;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 24px;
  position: absolute;
  right: 7%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.news-close {
  color: #0C2340;
  font-family: 'lato', sans-serif;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 24px;
  position: absolute;
  right: 30px;
  z-index: 3;
  cursor: pointer;
}

.logobox-airways {
  display: flex;
  padding-right: 20px;
  padding-left: 15px;
}

.logobox-airways .main-logo {
  padding-right: 10px;
}

.mainmenubox-airways-mob {
  display: none;
}

.mainmenubox-airways .main-menu {
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.mainmenubox-airways .main-menu li.menu-firstlev-element {
  height: 24px;
  padding-right: 25px;
  font-family: "lato", sans-serif;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 24px;
  position: relative;
  white-space: nowrap;
  text-transform: uppercase;
}

/* Underline style */
.mainmenubox-airways .main-menu li.menu-firstlev-element a {
  color: #ffffff;
  display: block;
  position: relative;
  padding: 0.2em 0;
  cursor: pointer;
}

.mainmenubox-airways .main-menu li.menu-firstlev-element a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1em;
  background-color: #ffffff;
  opacity: 0;
  transition: opacity 300ms, transform 300ms;
}

.mainmenubox-airways .main-menu li.menu-firstlev-element a:hover::after,
.mainmenubox-airways .main-menu li.menu-firstlev-element a:focus::after {
  opacity: 1;
  transform: translate3d(0, 0.2em, 0);
}

/* Scale from center */
.mainmenubox-airways .main-menu li.menu-firstlev-element a::after {
  opacity: 1;
  transform: scale(0);
  transform-origin: center;
}

.mainmenubox-airways .main-menu li.menu-firstlev-element a:hover::after,
.mainmenubox-airways .main-menu li.menu-firstlev-element a:focus::after{
  transform: scale(1);
}

.mainmenubox-airways .main-menu li.menu-firstlev-element .secondlev {
  display: flex;
  border: 1px solid #e8e8ea;
  border-radius: 16px;
  background-color: #FFFFFF;
  box-shadow: 0 20px 24px 0 rgb(0 0 0 / 6%);
  position: absolute;
  z-index: 2;
  top: 40px;
  left: -30px;
  padding: 25px;
  white-space: nowrap;
}

.mainmenubox-airways .main-menu li.menu-firstlev-element .secondlev .secondlev-wrapper:not(:last-of-type) {
  margin-right: 30px;
}

.mainmenubox-airways .main-menu li.menu-firstlev-element .secondlev .secondlev-title {
  opacity: 0.64;
  color: #2E2E38;
  font-family: 'lato', sans-serif;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.4px;
  line-height: 16px;
  text-transform: uppercase;
}

.mainmenubox-airways .main-menu li.menu-firstlev-element .secondlev .secondlev-separator {
  height: 1px;
  border-top: 1px solid #72727F;
  opacity: 0.16;
  margin-top: 5px;
}

.mainmenubox-airways .main-menu li.menu-firstlev-element .secondlev .menu-secondlev-element {
  padding-right: 60px;
}

.mainmenubox-airways .main-menu li.menu-firstlev-element .secondlev .secondlev-link {
  color: #2E2E38;
  font-family: 'lato', sans-serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.4px;
  line-height: 20px;
  margin-top: 10px;
  text-transform: uppercase;
}

.usermenubox-airways {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
  padding-right: 15px;
}

.usermenubox-airways .languagebox-wrapper {
  position: relative;
}

.usermenubox-airways .languagebox-wrapper .language-button:active,
.usermenubox-airways .languagebox-wrapper .language-button:focus {
  box-shadow: unset !important;
}

.usermenubox-airways .languagebox-wrapper .language-button {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-family: "lato", sans-serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.5px;
  line-height: 20px;
  text-align: right;
  margin-right: 5px;
  text-transform: uppercase;
  padding: 5px;
}

.usermenubox-airways .languagebox-wrapper .language-button.active {
  border-radius: 8px;
  background-color: #2987d6;
}

.usermenubox-airways .languagebox-wrapper .language-icon {
  margin-right: 10px;
}

.usermenubox-airways .language-dialog {
  width: 450px;
  border: 1px solid #e8e8ea;
  border-radius: 16px;
  background-color: #FFFFFF;
  box-shadow: 0 20px 24px 0 rgb(0 0 0 / 6%);
  position: absolute;
  z-index: 2;
  top: 40px;
  right: 0;
  padding: 25px;
}

.usermenubox-airways .language-dialog .language-dialog-header {
  margin-top: 10px;
}

.usermenubox-airways .language-dialog .language-dialog-title {
  color: #2E2E38;
  font-family: 'lato', sans-serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 28px;
}

.usermenubox-airways .language-dialog .flag-row {
  margin-top: 25px;
}

.usermenubox-airways .language-dialog .flag-select-container {
  justify-content: space-between;
}

.usermenubox-airways .language-dialog .flag-shortcut-wrap {
  height: 72px;
  width: 72px;
  background-color: #f4f4f5;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.usermenubox-airways .language-dialog .flag-shortcut-wrap.selected {
  background-color: #ebf4fc;
  border: 1px solid #0171CF;
}

.usermenubox-airways .language-dialog .flag-shortcut {
  height: 20px;
}

.usermenubox-airways .language-dialog .select-wrap {
  margin-top: 30px;
  position: relative;
}

.usermenubox-airways .language-dialog .languageMenu-label {
  position: absolute;
  opacity: 0.64;
  color: #0C2340;
  font-family: 'late', sans-serif;
  font-size: 12px;
  letter-spacing: 0.4px;
  line-height: 16px;
  top: 5px;
  left: 10px;
  margin: 0;
}

.usermenubox-airways .language-dialog .languageMenu-language,
.usermenubox-airways .language-dialog .languageMenu-country {
  background-image: url("../../../content/dam/itaspa/assets/icons/brand/ic_24_arrow_select_down_grey.svg");
  background-size: 24px 24px;
  background-position: right -25px center;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #b0b8c1;
  color: #2E2E38;
  font-family: 'lato', sans-serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 28px;
  padding: 15px 35px 0 10px;
  height: 55px;
}

.usermenubox-airways .language-dialog .language-dialog-footer {
  display: flex;
  justify-content: right;
  margin-top: 50px;
  margin-bottom: 5px;
}

.usermenubox-airways .language-dialog .language-dialog-confirm {
  display: inline-block;
  border-radius: 28px;
  background: #0171CF;
  padding: 20px 40px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.5px;
  line-height: 20px;
  text-align: center;
  font-family: "lato", sans-serif;
  text-transform: uppercase;
}

.usermenubox-airways .language-dialog .language-dialog-cancel {
  display: inline-block;
  border-radius: 28px;
  background: #ffffff;
  padding: 20px 40px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.5px;
  line-height: 20px;
  text-align: center;
  font-family: "lato", sans-serif;
  text-transform: uppercase;
}

.usermenubox-airways .language-dialog .language-dialog-button-text-blue {
  color: #0171CF;
}

.usermenubox-airways .language-dialog .language-dialog-button-text-white {
  color: #ffffff;
}

.usermenubox-airways .notificationbox-wrapper {
  position: relative;
  margin: 6px;
  padding: 5px;
}

.usermenubox-airways .notification-button:active,
.usermenubox-airways .notification-button:focus {
  box-shadow: unset !important;
}

.usermenubox-airways .notification-button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 32px;
  height: 32px;
}

.usermenubox-airways .notification-button.active {
  border-radius: 8px;
  background-color: #2987d6;
}

.usermenubox-airways .notification-new {
  position: absolute;
  right: 0;
  top: 0;
  height: 8px;
  width: 8px;
  border-radius: 8px;
  background-color: #D71B19;
}

.usermenubox-airways .notification-new.viewed {
  display: none;
}

.usermenubox-airways .notification-dialog {
  border: 1px solid #e8e8ea;
  border-radius: 16px;
  background-color: #FFFFFF;
  box-shadow: 0 20px 24px 0 rgb(0 0 0 / 6%);
  position: absolute;
  z-index: 2;
  top: 40px;
  right: 0;
  padding: 25px 0;
  width: 400px;
}

.usermenubox-airways .notification-dialog ul.notification-list {
  margin: 0;
}

.usermenubox-airways .notification-dialog li.notification-element {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #2E2E38;
  font-family: 'lato', sans-serif;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 24px;
  background-color: #f0f9fe;
  padding: 10px 25px;
}

.usermenubox-airways .notification-dialog li.notification-element.read {
  color: #a2a2a6;
  background-color: #fff;
}

.usermenubox-airways .notification-dialog li.notification-element a {
  color: inherit;
}

.usermenubox-airways .notification-dialog li.notification-element .notification-close {
  width: 100px;
  text-align: right;
}

.usermenubox-airways .notification-dialog li.notification-element .notification-close span {
  vertical-align: middle;
  cursor: pointer;
}

.usermenubox-airways .notification-dialog li.no-notifications {
  font-weight: 700;
  padding: 0 20px;
}

.usermenubox-airways .usermenubox-wrapper .usermenubox__link--signin {
  color: #ffffff;
  font-family: "lato", sans-serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.5px;
  line-height: 20px;
  text-align: right;
  text-transform: uppercase;
  display: block;
  border-radius: 24px;
  padding: 15px 25px;
}

.usermenubox-airways .usermenubox-wrapper .usermenubox__link--signin.modal-type {
  margin-right: 0;
}

.usermenubox-airways .usermenubox-wrapper .usermenubox__link--signup {
  border-radius: 24px;
  background: #ffffff;
  padding: 15px 25px;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.5px;
  line-height: 20px;
  text-align: center;
  font-family: "lato", sans-serif;
  text-transform: uppercase;
  display: block;
}

.usermenubox-airways .usermenubox-wrapper .usermenubox__link--signup .usermenubox__text {
  color: #0171CF;
}

.modal .modalContainer .modalCtaContainer {
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 16px;
}


.modal .modalContainer .usermenubox__link--signup,
.modal .modalContainer .usermenubox__link--signin {
  border-radius: 24px;
  background: #0171CF;
  padding: 15px 25px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.5px;
  line-height: 20px;
  text-align: center;
  font-family: "lato", sans-serif;
  text-transform: uppercase;
}

.modal .modalContainer .usermenubox__link--signin {
  margin-right: 20px;
}

.modal .modalContainer .usermenubox__link--signin .usermenubox__text,
.modal .modalContainer .usermenubox__link--signup .usermenubox__text {
  color: #FFFFFF;
}

.usermenubox-airways .usermenubox-wrapper .loggedUsername {
  align-items: center;
  margin-left: 10px;
}

.usermenubox-airways .usermenubox-wrapper .logged-user {
  display: flex;
  flex-direction: column;
}

.usermenubox-airways .usermenubox-wrapper .logged-user-namesurname {
  position: relative;
  color: #FFFFFF;
  font-family: 'lato', sans-serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.4px;
  line-height: 20px;
  text-align: right;
}

.usermenubox-airways .usermenubox-wrapper .loggedUsername.b2b .logged-user {
  cursor: pointer;
}

.usermenubox-airways .usermenubox-wrapper .logged-user-namesurname .user-dropdown-arrow {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #FFFFFF;
  position: absolute;
  right: 0;
  bottom: -15px;
}

.usermenubox-airways .usermenubox-wrapper .logged-user-namesurname .user-dropdown {
  border-radius: 16px;
  background-color: #FFFFFF;
  box-shadow: 0 20px 24px 0 rgb(0 0 0 / 6%);
  position: absolute;
  z-index: 2;
  top: 35px;
  right: -15px;
  padding: 15px;
  white-space: nowrap;
}

.usermenubox-airways .usermenubox-wrapper .logged-user-namesurname .logout-sfdc {
  color: #2E2E38;
  font-family: 'lato', sans-serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.4px;
  line-height: 20px;
}

.usermenubox-airways .usermenubox-wrapper .logged-user-puntiVolare {
  opacity: 0.64;
  color: #FFFFFF;
  font-family: 'lato', sans-serif;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.4px;
  line-height: 16px;
  text-align: right;
}

.usermenubox-airways .usermenubox-wrapper .logged-user-initials {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  margin-left: 15px;
  background-color: #C2D7EE;
  color: #0C2340;
  font-family: 'lato', sans-serif;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.46px;
  line-height: 20px;
  border-radius: 100%;
}

.notification-airways-mob {
  display: none;
}

.main-menu-mob {
  display: none;
}

.blue-arrow-chevron__right {
  margin-right: 5px;
  background: url("../../../content/dam/itaspa/assets/icons/brand/ic_24_arrow_chevron_right_blu.svg") no-repeat center center;
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.midnight-arrow__right {
  margin-left: 5px;
  background: url("../../../content/dam/itaspa/assets/icons/brand/ic_24_arrow_link_right_midnight.svg") no-repeat center center;
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.midnight-close {
  background: url("../../../content/dam/itaspa/assets/icons/brand/ic_24_utility_close_midnight.svg") no-repeat center center;
  display: inline-block;
  width: 24px;
  height: 24px;
}

.white-arrow-chevron__left {
  background: url("../../../content/dam/itaspa/assets/icons/brand/ic_24_arrow_chevron_left_white.svg") no-repeat center center;
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: 24px 24px;
  vertical-align: middle;
}

.white-close {
  background: url("../../../content/dam/itaspa/assets/icons/brand/ic_24_utility_close_white.svg") no-repeat center center;
  display: inline-block;
  width: 32px;
  height: 32px;
  background-size: 32px 32px;
  vertical-align: middle;
}

.white-close-sm {
  background: url("../../../content/dam/itaspa/assets/icons/brand/ic_24_utility_close_white.svg") no-repeat center center;
  display: inline-block;
  width: 32px;
  height: 32px;
  background-size: 24px 24px;
  vertical-align: middle;
}

.white-bell {
  background: url("../../../content/dam/itaspa/assets/icons/brand/ic_24_utility_bell_white.svg") no-repeat center center;
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.white-search {
  background: url("../../../content/dam/itaspa/assets/icons/brand/ic-24-utility-search-white.svg") no-repeat center center;
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.white-globe {
  background: url("../../../content/dam/itaspa/assets/icons/brand/ic_24_globe_white.svg") no-repeat center center;
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.white-hamburger-menu {
  background: url("../../../content/dam/itaspa/assets/icons/brand/ic_24_utility_menu_white.svg") no-repeat center center;
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
}

.blue-globe {
  background: url("../../../content/dam/itaspa/assets/icons/brand/ic_24_globe_blue.svg") no-repeat center center;
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.avatar-b2b {
  background: url("../../../content/dam/itaspa/assets/icons/brand/icon_avatar_b2b.svg") no-repeat center center;
  display: inline-block;
  width: 40px;
  height: 40px;
  vertical-align: middle;
  margin-left: 15px;
}

.usermenubox-wrapper{
  margin: 6px;
  padding: 5px;
}

@media (max-width: 1240px) {
  .main-header {
    position: unset;
    z-index: 1;
  }

  .headermenu-airways {
    align-items: center;
    height: 72px;
  }

  .news-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .news-info {
    display: none;
  }

  .news-view-all {
    margin-top: 5px;
    font-size: 14px;
    position: unset;
  }

  .news-close {
    right: 15px;
  }

  .logobox-airways {
    padding: 0;
  }

  .logobox-airways .main-logo {
    height: 32px;
    padding-right: 0;
    width: auto;
  }

  .logobox-airways .skyteam-logo {
    height: 32px;
    padding-left: 10px;
    width: auto;
  }

  .mainmenubox-airways-mob {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
  }

  .mainmenubox-airways-mob .loggedUsername {
    margin-right: 25px;
  }

  .mainmenubox-airways-mob .logged-user-initials {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    background-color: #C2D7EE;
    color: #0C2340;
    font-family: 'lato', sans-serif;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.46px;
    line-height: 20px;
    border-radius: 100%;
  }

  .mainmenubox-airways-mob .notificationbox-wrapper {
    margin-right: 30px;
    position: relative;
  }

  .mainmenubox-airways-mob .notification-button {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 32px;
    height: 32px;
  }

  .mainmenubox-airways-mob .notification-button.active {
    border-radius: 8px;
    background-color: #2987d6;
  }

  .mainmenubox-airways-mob .notification-new {
    position: absolute;
    right: 0;
    top: 0;
    height: 8px;
    width: 8px;
    border-radius: 8px;
    background-color: #D71B19;
  }

  .mainmenubox-airways-mob .notification-new.viewed {
    display: none;
  }

  .notification-airways-mob {
    display: block;
    position: absolute;
    z-index: 999;
    width: 100%;
    padding: 0;
  }

  .notification-airways-mob .notification-dialog {
    border: 1px solid #e8e8ea;
    background-color: #FFFFFF;
    box-shadow: 0 20px 24px 0 rgb(0 0 0 / 6%);
    padding: 15px 0;
  }

  .notification-airways-mob .notification-dialog ul.notification-list {
    margin: 0;
  }

  .notification-airways-mob .notification-dialog li.notification-element {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2E2E38;
    font-family: 'lato', sans-serif;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.4px;
    line-height: 20px;
    background-color: #fff;
    padding: 10px 15px;
  }

  .notification-airways-mob .notification-dialog li.notification-element.read {
    color: #a2a2a6;
    background-color: #fff;
  }

  .notification-airways-mob .notification-dialog li.notification-element a {
    color: inherit;
  }

  .notification-airways-mob.notification-dialog li.notification-element .notification-close {
    width: 100px;
    text-align: right;
  }

  .notification-airways-mob .notification-dialog li.notification-element .notification-close span {
    vertical-align: middle;
    cursor: pointer;
  }

  .notification-airways-mob .notification-dialog li.no-notifications {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    padding: 0 20px;
  }

  .notification-airways-mob .notification-hr {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .main-menu-mob {
    display: none;
    background-color: #fff;
    z-index: 9999;
    width: 100%;
    height: calc(100vh - 72px); /* calc news flash */
    position: absolute;
    overflow-y: auto;
  }

  .main-menu-mob.open {
    display: block;
  }

  .main-menu-mob .menu-firstlev-element {
    color: #000000;
    font-family: 'lato', sans-serif;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
    line-height: 20px;
    padding-top: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e9e9eb;
    text-transform: uppercase;
  }

  .main-menu-mob .menu-firstlev-element .firstlev {
    color: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .main-menu-mob .language-button {
    display: flex;
    align-items: center;
    color: #000000;
    font-family: "lato", sans-serif;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
    line-height: 20px;
    margin-left: 5px;
    text-transform: uppercase;
    padding-top: 10px;
  }

  .main-menu-mob .language-icon {
    margin-right: 10px;
  }

  .main-menu-mob .mainmenubox-wrapper {
    overflow: auto;
    height: 60%;
    margin-top: 10px;
  }

  .main-menu-mob .usermenubox-wrapper {
    padding-top: 25px;
    border-top: 1px solid #e9e9eb;
    position: absolute;
    width: 100%;
    bottom: 20px;
    left: 0;
    margin-left: 0;
    padding-left: 0;
  }

  .main-menu-mob .usermenubox-wrapper .usermenubox__link--signin {
    margin-right: 25px;
    margin-left: 25px;
    margin-bottom: 25px;
    color: #ffffff;
    font-family: "lato", sans-serif;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 32px;
    background-color: #0171CF;
    padding: 18px;
    display: block;
  }

  .main-menu-mob .usermenubox-wrapper .usermenubox__link--signup {
    margin: 0 25px;
    border: 2px solid #0171CF;
    border-radius: 38px;
    background: #ffffff;
    padding: 18px 25px;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
    line-height: 20px;
    text-align: center;
    font-family: "lato", sans-serif;
    text-transform: uppercase;
    display: block;
  }

  .main-menu-mob .usermenubox-wrapper .usermenubox__link--signup .usermenubox__text {
    color: #0171CF;
  }

  .menu-secondlev-mob {
    display: block;
    background-color: #fff;
    z-index: 10000;
    width: 100%;
    height: calc(100vh - 72px);
    position: absolute;
    top: 72px;
    left: 0;
  }

  .menu-secondlev-mob .menu-secondlev-header {
    height: 73px;
    background-color: #0072CE;
    justify-content: space-between;
    align-items: center;
  }

  .menu-secondlev-mob .menu-secondlev-header::after,
  .menu-secondlev-mob .menu-secondlev-header::before {
    display: none;
    content: '';
  }

  .menu-secondlev-mob .menu-secondlev-back {
    width: 30%;
    display: flex;
    justify-content: left;
    align-items: center;
  }

  .menu-secondlev-mob .menu-secondlev-back .menu-secondlev-back--text {
    color: #FFFFFF;
    font-family: 'lato', sans-serif;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.4px;
    line-height: 20px;
  }

  .menu-secondlev-mob .menu-secondlev-title {
    width: 40%;
    color: #FFFFFF;
    font-family: 'lato', sans-serif;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
    line-height: 20px;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
  }

  .menu-secondlev-mob .menu-secondlev-close {
    width: 30%;
    display: flex;
    justify-content: right;
    align-items: center;
  }

  .menu-secondlev-mob .secondlev-wrapper {
    margin-top: 25px;
  }

  .menu-secondlev-mob .secondlev-title {
    color: #666666;
    font-family: 'lato', sans-serif;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.4px;
    line-height: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e9e9eb;
    text-transform: uppercase;
  }

  .menu-secondlev-mob .menu-secondlev-element {
    padding-top: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e9e9eb;
  }

  .menu-secondlev-mob .secondlev-link {
    color: #000000;
    font-family: 'lato', sans-serif;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
    line-height: 20px;
    text-transform: uppercase;
  }

  .language-dialog-mob {
    display: block;
    background-color: #fff;
    z-index: 10000;
    width: 100%;
    height: calc(100vh - 73px);
    position: absolute;
    top: 0;
    left: 0;
  }

  .language-dialog-mob .language-dialog-header {
    margin-top: 10px;
  }

  .language-dialog-mob .language-close {
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid #b0b8c1;
    padding-bottom: 20px;
    padding-top: 10px;
    margin-bottom: 25px;
  }

  .language-dialog-mob .language-dialog-title {
    color: #2E2E38;
    font-family: 'lato', sans-serif;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 24px;
  }

  .language-dialog-mob .flag-row {
    margin-top: 35px;
  }

  .language-dialog-mob .flag-select-container {
    display: flex;
    justify-content: space-between;
  }

  .language-dialog-mob .flag-shortcut-wrap {
    height: 64px;
    width: 64px;
    background-color: #f4f4f5;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }

  .language-dialog-mob .flag-shortcut-wrap.selected {
    background-color: #ebf4fc;
    border: 1px solid #0171CF;
  }

  .language-dialog-mob .flag-shortcut {
    height: 20px;
  }

  .language-dialog-mob .select-wrap {
    margin-top: 30px;
    position: relative;
  }

  .language-dialog-mob .languageMenu-label {
    position: absolute;
    opacity: 0.64;
    color: #0C2340;
    font-family: 'late', sans-serif;
    font-size: 12px;
    letter-spacing: 0.4px;
    line-height: 16px;
    top: 5px;
    left: 0;
    margin: 0;
  }

  .language-dialog-mob .languageMenu-language,
  .language-dialog-mob .languageMenu-country {
    background-image: url("../../../content/dam/itaspa/assets/icons/brand/ic_24_arrow_select_down_grey.svg");
    background-size: 24px 24px;
    background-position: right -25px center;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #b0b8c1;
    color: #2E2E38;
    font-family: 'lato', sans-serif;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 24px;
    padding: 15px 35px 0 0;
    height: 55px;
  }

  .language-dialog-mob .language-dialog-footer {
    position: absolute;
    width: calc(100% - 30px);
    bottom: 80px;
  }

  .language-dialog-mob .language-dialog-confirm {
    display: block;
    border-radius: 28px;
    background: #0171CF;
    padding: 20px 40px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
    line-height: 20px;
    text-align: center;
    font-family: "lato", sans-serif;
    text-transform: uppercase;
  }

  .language-dialog-mob .language-dialog-button-text-blue {
    color: #0171CF;
  }

  .language-dialog-mob .language-dialog-button-text-white {
    color: #ffffff;
  }

  .mainmenubox-airways {
    display: none;
  }

  .usermenubox-airways {
    display: none;
  }
}

@media (max-width: 425px) {
  .modal .modalContainer .modal-dialog {
    width: calc(100vw - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }

  .modal .modalContainer .usermenubox__link--signin {
    display: block;
    margin-right: 0;
  }

  .modal .modalContainer .usermenubox__link--signup {
    display: block;
    margin-top: 15px;
  }
}
@media (max-width: 796px) {
  .ita-blue {
    background-color: #0171CF;
    min-height: auto;
  }
}

.search-close{
  color: #0C2340;
    font-family: 'lato', sans-serif;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 24px;
    z-index: 3;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.ita-search-all-results{
  height: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #ffffff;
}

.ita-search-all-results-mobile{
  display:none;
}

@media only screen and (max-width: 450px) and (min-width: 200px){
  .ita-search-all-results{
    display:none;
  }
  .ita-search-all-results-mobile{
      display: block;
      max-width: 450px;
      width: 100%;
      margin-bottom: 10%;
  }
}

@media only screen and (max-width: 450px) and (min-width: 280px){
  .modal .modalContainer .modalCtaContainer {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 16px;
    align-items: center;
  }
  .modalCta {
    cursor: pointer;
    border: none;
    height: 48px;
    border-radius: 24px;
    font-family: Lato;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 18px 43px 24px 52px;
    max-width: 279px;
    width: 88vw;
  }

}


@media only screen and (max-width: 450px) and (min-width: 280px){

  .main-menu-mob .usermenubox-wrapper {
      position:relative;
  }

  .main-menu-mob{
      background-color: #fff;
      z-index: 9999;
      width: 100%;
      /*height:490px;*/
      height: calc(89vh - 72px);
      position: absolute;
      overflow-y: auto;
  }

  .main-menu-mob .menu-firstlev-element {
      color: #000000;
      font-family: 'lato', sans-serif;
      font-size: 14px;
      font-weight: bold;
      letter-spacing: 0.5px;
      line-height: 20px;
      padding-top:7px;
      padding-bottom:7px;
      border-bottom:1px solid #e9e9eb;
      text-transform: uppercase;
    }

    .main-menu-mob .language-button {
        padding-top:0px;
    }

    .menu-secondlev-mob .menu-secondlev-element {
        padding-top: 7px;
        padding-bottom: 7px;
    }

    .menu-secondlev-mob {
        overflow-y: scroll;
        height: calc(100vh - 142px) !important;
    }
}



	/* ----------- iPhone 4 and 4S ----------- */

	/* Portrait and Landscape */
	@media only screen 
	  and (min-device-width: 320px) 
	  and (max-device-width: 480px)
	  and (-webkit-min-device-pixel-ratio: 2) {

	}

	/* Portrait */
	@media only screen 
	  and (min-device-width: 320px) 
	  and (max-device-width: 480px)
	  and (-webkit-min-device-pixel-ratio: 2)
	  and (orientation: portrait) {
	}

	/* Landscape */
	@media only screen 
	  and (min-device-width: 320px) 
	  and (max-device-width: 480px)
	  and (-webkit-min-device-pixel-ratio: 2)
	  and (orientation: landscape) {

		.main-menu-mob .usermenubox-wrapper {
		position: unset !important;
		height: 300px;
	}

	.main-menu-mob .mainmenubox-wrapper {
	  
	  height: unset !important;
		margin-top: 10px;
	}

	.menu-secondlev-mob {
			overflow-y: scroll;
		}
	}

	/* ----------- iPhone 5, 5S, 5C and 5SE ----------- */

	/* Portrait and Landscape */
	@media only screen 
	  and (min-device-width: 320px) 
	  and (max-device-width: 568px)
	  and (-webkit-min-device-pixel-ratio: 2) {

	}

	/* Portrait */
	@media only screen 
	  and (min-device-width: 320px) 
	  and (max-device-width: 568px)
	  and (-webkit-min-device-pixel-ratio: 2)
	  and (orientation: portrait) {
	}

	/* Landscape */
	@media only screen 
	  and (min-device-width: 320px) 
	  and (max-device-width: 568px)
	  and (-webkit-min-device-pixel-ratio: 2)
	  and (orientation: landscape) {
	.main-menu-mob .usermenubox-wrapper {
		position: unset !important;
		height: 300px;
	}

	.main-menu-mob .mainmenubox-wrapper {
	  
	  height: unset !important;
		margin-top: 10px;
	}

	.menu-secondlev-mob {
			overflow-y: scroll;
		}
	}

	/* ----------- iPhone 6, 6S, 7 and 8 ----------- */

	/* Portrait and Landscape */
	@media only screen 
	  and (min-device-width: 375px) 
	  and (max-device-width: 667px) 
	  and (-webkit-min-device-pixel-ratio: 2) { 

	}

	/* Portrait */
	@media only screen 
	  and (min-device-width: 375px) 
	  and (max-device-width: 667px) 
	  and (-webkit-min-device-pixel-ratio: 2)
	  and (orientation: portrait) { 

	}

	/* Landscape */
	@media only screen 
	  and (min-device-width: 375px) 
	  and (max-device-width: 667px) 
	  and (-webkit-min-device-pixel-ratio: 2)
	  and (orientation: landscape) { 
	.main-menu-mob .usermenubox-wrapper {
		position: unset !important;
		height: 300px;
	}

	.main-menu-mob .mainmenubox-wrapper {
	  
	  height: unset !important;
		margin-top: 10px;
	}

	.menu-secondlev-mob {
			overflow-y: scroll;
		}
	}

	/* ----------- iPhone 6+, 7+ and 8+ ----------- */

	/* Portrait and Landscape */
	@media only screen 
	  and (min-device-width: 414px) 
	  and (max-device-width: 736px) 
	  and (-webkit-min-device-pixel-ratio: 3) { 

	}

	/* Portrait */
	@media only screen 
	  and (min-device-width: 414px) 
	  and (max-device-width: 736px) 
	  and (-webkit-min-device-pixel-ratio: 3)
	  and (orientation: portrait) { 

	}

	/* Landscape */
	@media only screen 
	  and (min-device-width: 414px) 
	  and (max-device-width: 736px) 
	  and (-webkit-min-device-pixel-ratio: 3)
	  and (orientation: landscape) { 
	.main-menu-mob .usermenubox-wrapper {
		position: unset !important;
		height: 300px;
	}

	.main-menu-mob .mainmenubox-wrapper {
	  
	  height: unset !important;
		margin-top: 10px;
	}

	.menu-secondlev-mob {
			overflow-y: scroll;
		}
	}

	/* ----------- iPhone X ----------- */

	/* Portrait and Landscape */
	@media only screen 
	  and (min-device-width: 375px) 
	  and (max-device-width: 812px) 
	  and (-webkit-min-device-pixel-ratio: 3) { 

	}

	/* Portrait */
	@media only screen 
	  and (min-device-width: 375px) 
	  and (max-device-width: 812px) 
	  and (-webkit-min-device-pixel-ratio: 3)
	  and (orientation: portrait) { 

	}

	/* Landscape */
	@media only screen 
	  and (min-device-width: 375px) 
	  and (max-device-width: 812px) 
	  and (-webkit-min-device-pixel-ratio: 3)
	  and (orientation: landscape) { 
	.main-menu-mob .usermenubox-wrapper {
		position: unset !important;
		height: 300px;
	}

	.main-menu-mob .mainmenubox-wrapper {
	  
	  height: unset !important;
		margin-top: 10px;
	}

	.menu-secondlev-mob {
			overflow-y: scroll;
		}
	}

  @media (max-width: 1240px) {
  .usermenubox-wrapper>.notLogged{
    display: block !important;
  }
}
@charset "UTF-8";
.main-header {
  will-change: contents;
  background-color: #fff;
  margin-bottom: 0;
}
.main-header .mod-pre-header {
  background: #f2f1f1;
  position: relative;
  z-index: 99;
}
@media (max-width: 991.98px) {
  .main-header .mod-pre-header {
    background: #fff;
  }
}
.main-header .mod-pre-header .red-block {
  background: #AF231C;
  color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 15px;
  position: relative;
}
@media (max-width: 1199.98px) {
  .main-header .mod-pre-header .red-block {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (max-width: 991.98px) {
  .main-header .mod-pre-header .red-block {
    padding-left: 40px;
    padding-top: 20px;
    padding-bottom: 22px;
    margin-bottom: 22px;
  }
}
.main-header .mod-pre-header .red-block a {
  color: #fff !important;
  font-size: 1rem;
  line-height: 1.1875rem;
  letter-spacing: 0.05em;
  display: block;
  width: 100%;
  font-weight: 500;
  padding-right: 40px;
  position: relative;
  font-family: Lato;
  font-feature-settings: "kern" off;
  padding-left: 30px;
}
@media (max-width: 1199.98px) {
  .main-header .mod-pre-header .red-block a {
    font-size: 0.8750rem;
    line-height: 1.1250rem;
  }
}
.main-header .mod-pre-header .red-block a strong {
  font-weight: 800;
}
@media (max-width: 991.98px) {
  .main-header .mod-pre-header .red-block a strong {
    display: block;
  }
}
.main-header .mod-pre-header .red-block a:after {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url("../../../content/dam/itaspa/imgheader/images/ita_white_arrow.svg") no-repeat center right;
  right: 33px;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  bottom: auto;
  transition: right 0.3s ease-in-out;
}
.main-header .mod-pre-header .red-block a:hover:after {
  right: 26px;
}
@media (max-width: 991.98px) {
  .main-header .mod-pre-header .red-block a:hover:after {
    right: 33px;
  }
}
.main-header .mod-pre-header .red-block a .warning {
  width: 26px;
  height: 26px;
  background: url("../../../content/dam/itaspa/imgheader/images/warning-ico.svg") no-repeat top center;
  background-size: 100%;
  position: absolute;
  left: 0;
  top: -1px;
}
@media (max-width: 1199.98px) {
  .main-header .mod-pre-header .red-block a .warning {
    background: url("../../../content/dam/itaspa/imgheader/images/warning-ico.svg") no-repeat center;
  }
}
@media (max-width: 991.98px) {
  .main-header .mod-pre-header .red-block a .warning {
    background: url("../../../content/dam/itaspa/imgheader/images/warning-ico.svg") no-repeat left center;
    height: 40px;
    left: -20px;
  }
}
.main-header .mod-pre-header .red-block.black-block {
  background: #000;
}
.main-header .mod-pre-header .red-block.black-block a {
  background: #000;
}
.main-header .mod-pre-header .red-block.green-block {
  background: #0171CF;
}
.main-header .mod-pre-header .red-block.green-block a {
  background: #0171CF;
}
.main-header .mod-pre-header .servicemenubox {
  display: -ms-flexbox;
  display: flex;
  padding-top: 19px;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media (max-width: 1199.98px) {
  .main-header .mod-pre-header .servicemenubox {
    padding-right: 0;
    padding-top: 15px;
    padding-bottom: 10px;
  }
}
@media (max-width: 991.98px) {
  .main-header .mod-pre-header .servicemenubox {
    padding-top: 10px;
  }
}
.main-header .mod-pre-header .servicemenubox .alertsmenubox,
.main-header .mod-pre-header .servicemenubox .searchmenubox {
  margin-left: 30px;
}
.main-header .mod-pre-header .servicemenubox .alertsmenubox__link,
.main-header .mod-pre-header .servicemenubox .searchmenubox__link {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  color: #000;
  font-family: Lato;
  text-transform: uppercase;
  font-size: 0.8750rem;
  line-height: 0.8750rem;
}
.main-header .mod-pre-header .servicemenubox .alertsmenubox__link--signin::after,
.main-header .mod-pre-header .servicemenubox .searchmenubox__link--signin::after {
  content: " /";
  display: inline-block;
  margin-left: 4px;
  font-size: 0.8750rem;
  font-family: Lato;
  margin-top: -4px;
}
.main-header .mod-pre-header .servicemenubox .alertsmenubox__icon,
.main-header .mod-pre-header .servicemenubox .searchmenubox__icon {
  width: 18px;
  height: 18px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 5px;
  background: url("../../../content/dam/itaspa/imgheader/images/user-ico.svg") no-repeat center;
  background-size: 85%;
  cursor: pointer;
  position: relative;
  top: 2px;
}
.main-header .mod-pre-header .servicemenubox .alertsmenubox__icon {
  background: url("../../../content/dam/itaspa/imgheader/images/alerts-ico.svg") no-repeat center;
}
.main-header .mod-pre-header .servicemenubox .alertsmenubox__counter {
  background: #AF231C;
  color: #fff;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: block;
  text-align: center;
  font-size: 0.8750rem;
  line-height: 0.8750rem;
  padding-top: 1px;
  position: relative;
  top: -2px;
}
.main-header .mod-pre-header .servicemenubox .alertsmenubox .notification-wrap {
  display: none;
  position: absolute;
  width: 310px;
  border: 1px solid #e1e1e1;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 0;
  background-clip: padding-box;
  background: white;
  margin-top: 11px;
  left: -10px;
  box-shadow: 0px 0px 15px #cccccc;
  z-index: 102;
}
.main-header .mod-pre-header .servicemenubox .searchmenubox__icon {
  background: url("../../../content/dam/itaspa/imgheader/images/search-small-ico.svg") no-repeat center;
  background-size: 95%;
}
.main-header .mod-pre-header .servicemenubox .usermenubox {
  margin-right: 10px;
  margin-left: 15px;
}
.main-header .mod-pre-header .servicemenubox .usermenubox__link {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  color: #000;
  font-family: Lato;
  text-transform: uppercase;
  font-size: 0.8750rem;
  line-height: 0.8750rem;
}
.main-header .mod-pre-header .servicemenubox .usermenubox__link--signin::after {
  content: " /";
  display: inline-block;
  margin-left: 4px;
  font-size: 0.8750rem;
  font-family: Lato;
  margin-top: -4px;
}
.main-header .mod-pre-header .servicemenubox .usermenubox__text {
  cursor: pointer;
  height: 18px;
}
.main-header .mod-pre-header .servicemenubox .usermenubox__icon {
  width: 18px;
  height: 18px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 5px;
  background: url("../../../content/dam/itaspa/imgheader/images/user-ico.svg") no-repeat center;
  background-size: 90%;
  position: relative;
  top: 2px;
}
.main-header .mod-pre-header .servicemenubox .usermenubox__icon--logout {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 5px;
  background: url("../../../content/dam/itaspa/imgheader/images/logout-ico.svg") no-repeat center;
  vertical-align: text-bottom;
}
@media (max-width: 768.98px) {
  .main-header .mod-pre-header .servicemenubox .usermenubox {
    width: 100%;
  }
}
@media (max-width: 1199.98px) {
  .main-header .mod-pre-header .servicemenubox .servicelinks {
    padding-right: 0;
  }
}
.main-header .mod-pre-header .servicemenubox .servicelinks ul {
  padding-left: 0;
  margin-bottom: 0;
  min-width: 80px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: end;
}
@media (max-width: 991.98px) {
  .main-header .mod-pre-header .servicemenubox .servicelinks ul {
    min-width: auto;
  }
}
.main-header .mod-pre-header .servicemenubox .servicelinks ul li {
  display: inline-block;
}
.main-header .mod-pre-header .servicemenubox .servicelinks ul li a {
  font-size: 0.8750rem;
  line-height: 0.8750rem;
  letter-spacing: 0.05em;
  font-feature-settings: "kern" off;
  color: #000;
  text-transform: uppercase;
}
.main-header .mod-pre-header .servicemenubox .servicelinks ul li a.dropdown-toggle::after {
  display: inline-block;
  margin-left: 8px;
  vertical-align: 0.255em;
  content: "";
  border-top: 8px solid;
  border-right: 5px solid transparent;
  border-bottom: 0;
  border-left: 5px solid transparent;
  top: 2px;
  position: relative;
}
.main-header .mod-pre-header .servicemenubox .servicelinks ul li a .mobile {
  display: none;
}
@media (max-width: 991.98px) {
  .main-header .mod-pre-header .servicemenubox .servicelinks ul li a .mobile {
    display: inline-block;
    font-size: 0.7500rem;
    line-height: 1.0000rem;
  }
}
.main-header .mod-pre-header .servicemenubox .servicelinks ul li a .language {
  display: inline-block;
}
@media (max-width: 991.98px) {
  .main-header .mod-pre-header .servicemenubox .servicelinks ul li a .language {
    display: none;
  }
}
.main-header .mod-pre-header .servicemenubox .servicelinks ul li.show .dropdown-menu.show {
  max-width: 3.2em;
}
.main-header .mod-pre-header .servicemenubox .servicelinks ul li.show .dropdown-item {
  background: #E5E5E5 !important;
  max-width: 3.7em;
}
.main-header .mod-pre-header .servicemenubox .servicelinks .dropdown-menu {
  min-width: 4em;
  padding: 0;
  top: auto;
  border: none;
  padding: 0;
  background: none;
}
.main-header .mod-pre-header .servicemenubox .servicelinks .dropdown-menu .dropdown-item {
  border: 0;
  padding: 0;
  padding-top: 10px;
}
.main-header .mod-pre-header .servicemenubox .servicelinks .dropdown-menu .dropdown-item:hover {
  background-color: transparent;
  color: #0171CF;
}
.main-header .logobox {
  margin-top: 24px;
}
.main-header .logobox img {
  transition: all 0.1s ease-in;
}
@media (max-width: 991.98px) {
  .main-header .logobox img {
    height: 60px;
  }
}
@media (max-width: 991.98px) {
  .main-header .logobox {
    padding-left: 15px;
    -ms-flex-order: 1;
        order: 1;
    margin-top: 7px;
    display: inline-flex;
  }
  .main-header .logobox.logobox-right {
    transform: translateY(5px);
  }
}
.main-header .main-navigation {
  position: relative;
  height: 120px;
  border-bottom: 1px solid #F2F1F1;
}
@media (max-width: 1199.98px) {
  .main-header .main-navigation {
    height: auto;
  }
}
@media (max-width: 991.98px) {
  .main-header .main-navigation {
    border: none;
  }
}
.main-header .main-navigation .main-intro-menu {
  display: none;
}
@media (max-width: 991.98px) {
  .main-header .main-navigation .main-intro-menu {
    display: block;
    list-style: none;
    padding-left: 0;
    margin-left: 0;
  }
  .main-header .main-navigation .main-intro-menu a {
    color: #000;
  }
}
.main-header .main-navigation .main-menu {
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 991.98px) {
  .main-header .main-navigation .main-menu {
    display: none;
  }
}
.main-header .main-navigation .main-menu li {
  display: block;
  margin: 0;
  padding: 0;
  width: 180px;
  text-align: center;
}
@media (max-width: 1439.98px) {
  .main-header .main-navigation .main-menu li {
    width: auto;
  }
}
@media (max-width: 1199.98px) {
  .main-header .main-navigation .main-menu li {
    width: auto;
  }
}
@media (max-width: 991.98px) {
  .main-header .main-navigation .main-menu li.desktop-li {
    display: none;
  }
}
.main-header .main-navigation .main-menu li > a {
  font-size: 1.1250rem;
  line-height: 7.75rem;
  letter-spacing: 0.05em;
  font-feature-settings: "kern" off;
  color: #707070;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
  border-bottom: 4px solid transparent;
  font-weight: 400;
  height: 120px;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (max-width: 1199.98px) {
  .main-header .main-navigation .main-menu li > a {
    font-size: 1.1250rem;
  }
}
.main-header .main-navigation .main-menu li > a.firstlev {
  padding: 5px 10px;
}
@media (max-width: 991.98px) {
  .main-header .main-navigation .main-menu li > a.firstlev {
    padding: 10px 0;
  }
}
@media (max-width: 543.98px) {
  .main-header .main-navigation .main-menu li > a.firstlev {
    font-size: 0.8750rem;
    line-height: 0.8750rem;
    margin-right: -10px;
  }
}
.main-header .main-navigation .main-menu li > a.firstlev.active {
  color: #0171CF;
  border-bottom: 4px solid #0171CF;
  font-weight: 700;
}
.main-header .main-navigation .main-menu li .submenubox {
  display: none;
}
.main-header .main-navigation .main-menu li .submenubox .submenubox-wrap {
  display: -ms-flexbox;
  display: flex;
  max-width: 1600px;
  margin: 0 auto;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media (min-width: 992px) {
  .main-header .main-navigation .main-menu li:hover .firstlev {
    color: #0171CF;
    border-bottom: 4px solid transparent;
    font-weight: 700;
  }
  .main-header .main-navigation .main-menu li:hover .submenubox {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: auto;
    background-color: #fff;
    background-image: url("../../../content/dam/itaspa/imgheader/images/bg-fixed-menu.png");
    background-position: right top;
    background-repeat: repeat-y;
    padding: 36px 48px;
    margin-left: -16px;
    margin-right: -16px;
    min-height: 350px;
    z-index: 2;
    box-shadow: 0px 6px 3px -1px rgba(0, 0, 0, 0.23);
  }
  .main-header .main-navigation .main-menu li:hover .submenubox .side-submenu {
    width: 300px;
    min-height: 300px;
    float: right;
  }
  .main-header .main-navigation .main-menu li:hover .submenu {
    padding: 0;
    margin: 0;
    position: relative;
    width: 300px;
  }
  .main-header .main-navigation .main-menu li:hover .submenu li {
    display: block;
    padding: 0;
    margin: 0;
    margin-bottom: 16px;
  }
  .main-header .main-navigation .main-menu li:hover .submenu li > a {
    font-weight: bold;
  }
  .main-header .main-navigation .main-menu li:hover .submenu li .submenubox-2 {
    display: none;
  }
  .main-header .main-navigation .main-menu li:hover .submenu li .submenubox-2 li > a {
    font-weight: 400;
  }
  .main-header .main-navigation .main-menu li:hover .submenu li:hover > a {
    color: #0171CF;
  }
  .main-header .main-navigation .main-menu li:hover .submenu li:hover .submenubox-2 {
    display: block;
    position: absolute;
    left: 220px;
    top: 0;
    width: 220px;
    height: 250px;
  }
}
.main-header .main-navigation li.fixed-menu {
  display: none;
}
.main-header .servicelinks {
  transition: all 0.5s ease-in;
}
.main-header.affix {
  position: fixed;
  width: 100%;
  z-index: 2;
  top: 0;
  padding: 8px 16px;
}
.main-header.affix .logobox img {
  max-width: 50px;
}
.main-header.affix .logobox img.main-logo {
  max-width: 60px;
}
.main-header.affix .servicelinks {
  opacity: 0;
  top: -200px;
  position: absolute;
}
.main-header.affix .servicemenubox {
  margin-top: 16px;
  width: 256px;
}
.main-header.affix .mainmenubox {
  -ms-flex-align: end;
      align-items: flex-end;
}
.main-header .mainmenubox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: static;
  text-align: right;
  -ms-flex-pack: center;
      justify-content: center;
}
@media (max-width: 991.98px) {
  .main-header .mainmenubox {
    -ms-flex-order: 3;
        order: 3;
    padding-top: 0;
    padding-bottom: 0;
    -ms-flex-pack: end;
        justify-content: flex-end;
  }
}
.main-header .main-header.affix li.fixed-menu {
  top: 72px !important;
}
.main-header .right-fixed-menu {
  width: 300px;
  display: block;
}
.main-header .right-fixed-menu ul.main-intro-menu {
  padding-left: 0;
}
.main-header .right-fixed-menu ul.main-intro-menu .firstlev {
  font-weight: bold;
  display: inline-block;
  margin-bottom: 8px;
}
.main-header .right-fixed-menu ul.main-intro-menu li {
  margin-bottom: 8px !important;
  margin-top: 8px !important;
}
@media (min-width: 992px) {
  .main-header .right-fixed-menu ul.main-intro-menu li a {
    color: #4A4A4A !important;
  }
}
@media (min-width: 1440px) {
  .main-header .right-fixed-menu {
    position: absolute;
    right: 24px;
  }
  .main-header .right-fixed-menu ul.main-intro-menu {
    padding-left: 0;
    margin-right: 0;
  }
}
.main-header .servicelinks.mobileServiceMenu {
  display: none;
}
@media (max-width: 991.98px) {
  .main-header .top-notice {
    display: none;
  }
  .main-header .main-header {
    box-shadow: 0px 6px 3px -1px rgba(0, 0, 0, 0.23);
  }
  .main-header .main-header .main-navigation .mainmenubox {
    position: absolute;
    display: block;
    width: 100vw;
    height: calc(100vh - 60px);
    overflow-y: auto;
    background-color: #fff;
    max-width: 100vw;
    z-index: 3;
    top: 69px;
    left: -16px;
    transform: translateX(-150%);
    transition: all 0.3s ease-in-out;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 48px;
  }
  .main-header .main-header .main-navigation .mainmenubox.menuvisible {
    transform: translateX(0);
  }
  .main-header .main-header .main-navigation .mainmenubox .main-intro-menu {
    margin-bottom: 0;
    background: #0171CF;
    padding-right: 16px;
    padding-top: 8px;
    padding-bottom: 1px;
  }
  .main-header .main-header .main-navigation .mainmenubox .main-intro-menu a + span {
    float: right;
  }
  .main-header .main-header .main-navigation .mainmenubox .main-intro-menu li {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .main-header .main-header .main-navigation .mainmenubox .main-intro-menu > li {
    margin-top: 0;
  }
  .main-header .main-header .main-navigation .mainmenubox .main-intro-menu > li .firstlev {
    display: inline-block;
    font-size: 1rem;
    padding-left: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    color: #fff;
    font-weight: bold;
  }
  .main-header .main-header .main-navigation .mainmenubox .main-intro-menu > li > ul {
    margin-left: 24px;
    padding-left: 0px;
  }
  .main-header .main-header .main-navigation .mainmenubox .main-intro-menu > li > ul > li {
    list-style: none;
    padding-left: 24px;
  }
  .main-header .main-header .main-navigation .mainmenubox .main-intro-menu > li > ul > li a {
    color: #fff;
    padding-top: 8px;
    padding-bottom: 8px;
    display: inline-block;
  }
  .main-header .main-header .main-navigation .mainmenubox .main-intro-menu > li > ul > li ul {
    padding-left: 0;
    margin-left: 0;
  }
  .main-header .main-header .main-navigation .mainmenubox .main-intro-menu > li > ul > li ul li {
    list-style-type: none;
    padding-left: 24px;
  }
  .main-header .main-header .main-navigation .mainmenubox .main-intro-menu > li > ul > li ul li a {
    font-size: 0.8750rem;
  }
  .main-header .main-header .main-navigation .mainmenubox .main-menu {
    display: block;
    padding: 0px 0 8px 24px;
    padding-right: 16px;
  }
  .main-header .main-header .main-navigation .mainmenubox .main-menu a {
    display: inline-block;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .main-header .main-header .main-navigation .mainmenubox .main-menu a + span {
    float: right;
  }
  .main-header .main-header .main-navigation .mainmenubox .main-menu .collapse-control {
    background-image: url("../../../content/dam/itaspa/imgheader/images/down-chevron-grey.svg");
  }
  .main-header .main-header .main-navigation .mainmenubox .main-menu li {
    margin-bottom: 8px;
    margin-top: 8px;
  }
  .main-header .main-header .main-navigation .mainmenubox .main-menu > li a.firstlev {
    padding: 8px 0px 8px 0;
    color: #000;
    font-weight: bold;
  }
  .main-header .main-header .main-navigation .mainmenubox .main-menu > li .submenubox {
    display: block;
  }
  .main-header .main-header .main-navigation .mainmenubox .main-menu > li .submenubox .submenubox-wrap {
    display: block;
  }
  .main-header .main-header .main-navigation .mainmenubox .main-menu > li .submenubox .submenubox-wrap ul.submenu {
    padding-left: 24px;
  }
  .main-header .main-header .main-navigation .mainmenubox .main-menu > li .submenubox .submenubox-wrap ul.submenu li ul {
    padding-left: 24px;
  }
  .main-header .main-header .main-navigation .mainmenubox .main-menu > li .submenubox .submenubox-wrap ul.submenu li ul li a {
    font-size: 0.8750rem;
  }
  .main-header .main-header .main-navigation .mainmenubox .main-menu > li .submenubox .submenubox-wrap .right-fixed-menu {
    display: none;
  }
  .main-header .main-header .servicelinks.mobileServiceMenu {
    display: block;
    position: static;
    opacity: 1;
    padding-top: 16px;
  }
  .main-header .main-header .servicelinks.mobileServiceMenu ul {
    list-style: none;
    padding-left: 24px;
  }
  .main-header .main-header .servicelinks.mobileServiceMenu ul li {
    margin-bottom: 16px;
  }
  .main-header .main-header .servicelinks.mobileServiceMenu ul li a {
    color: #4A4A4A;
  }
}
@media (max-width: 991.98px) and (max-width: 991.98px) {
  .main-header .main-header .menurightbox {
    -ms-flex-order: 2;
        order: 2;
  }
}
@media (max-width: 991.98px) {
  .main-header .main-header .menurightbox .servicemenubox .search {
    display: block;
    transition: all 0.3s ease-in-out;
    position: fixed;
    top: 70px;
    width: 100vw;
    left: 0;
    transform: translateX(120vw);
    z-index: 3;
    padding: 16px 24px 8px 24px;
    background-color: #fff;
    box-shadow: 0px 6px 3px -1px rgba(0, 0, 0, 0.23);
    border-bottom: 2px solid #0171CF;
  }
  .main-header .main-header .menurightbox .servicemenubox .search.search-open {
    left: 0;
    transform: translateX(0);
  }
}
.main-header .sectit {
  font-size: 1.3750rem;
  margin-bottom: 16px;
}
.main-header .menurightbox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row;
      flex-flow: row;
  -ms-flex-pack: center;
      justify-content: center;
  height: 120px;
  -ms-flex-align: right;
      align-items: right;
  padding-left: 36px;
}
@media (max-width: 991.98px) {
  .main-header .menurightbox {
    -ms-flex-order: 2;
        order: 2;
    padding-left: 0;
    height: 70px;
    display: block;
  }
}
@media (max-width: 1199.98px) {
  .main-header .menurightbox {
    padding-right: 0;
  }
}
@media only screen and (max-width:767px) {
  .main-header {
    width: 100%;
    z-index: 2;
    top: 0;
    padding: 0;
  }
  .main-header .logobox img {
    max-width: 100%;
  }
  .main-header .logobox img.main-logo {
    max-width: 176px;
  }
  .main-header .servicelinks {
    top: 50px;
    position: absolute;
  }
}
@media only screen and (max-width:767px) and (max-width: 991.98px) {
  .main-header .servicelinks {
    top: 24px;
  }
}

.mod-header .flight-search-section {
  height: 160px;
  padding-top: 0;
  overflow-y: visible;
}
.mod-header .flight-search-section .col-12 {
  padding-right: 30px;
}
@media (max-width: 1199.98px) {
  .mod-header .flight-search-section .col-12 {
    margin-bottom: 40px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 1199.98px) {
  .mod-header .flight-search-section {
    padding-top: 0;
    height: auto;
  }
  .mod-header .flight-search-section .col-12 {
    margin-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991.98px) {
  .mod-header .flight-search-section .col-12 {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
.mod-header .flight-search-section .container {
  position: relative;
}
.mod-header .flight-search-section .red-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column;
  flex-flow: column;
  -ms-flex-pack: start;
  justify-content: flex-start;
  min-height: 100px;
  height: auto;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 27px;
  position: absolute;
  right: 0;
  padding: 13px 0;
  z-index: 3;
  background: #AF231C;
}
.mod-header .flight-search-section .red-block .slick-arrow {
  display: none !important;
}
@media (max-width: 1199.98px) {
  .mod-header .flight-search-section .red-block {
    position: static;
    background: #AF231C;
    padding: 0;
  }
}
@media (max-width: 991.98px) {
  .mod-header .flight-search-section .red-block {
    display: block;
    overflow: hidden;
    width: 100%;
    background: none;
  }
  .mod-header .flight-search-section .red-block a {
    height: 80px;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-direction: column !important;
        flex-direction: column !important;
    -ms-flex-pack: center !important;
        justify-content: center !important;
  }
}
@media (max-width: 991.98px) {
  .mod-header .flight-search-section .red-block {
    margin-bottom: -60px;
  }
}
.mod-header .flight-search-section .red-block a {
  color: #fff !important;
  font-size: 1rem;
  line-height: 1.1250rem;
  letter-spacing: 0.05em;
  display: block;
  width: 100%;
  padding-top: 14px;
  padding-bottom: 14px;
  font-weight: 500;
  padding-right: 40px;
  position: relative;
  font-family: Lato;
  font-feature-settings: "kern" off;
  background: #AF231C;
  padding: 14px 36px;
}
@media (max-width: 360px) {
  .mod-header .flight-search-section .red-block a {
    padding: 14px;
  }
}
.mod-header .flight-search-section .red-block a:after {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url("../../../content/dam/itaspa/imgheader/images/ita_white_arrow.svg") no-repeat center right;
  right: 36px;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  bottom: auto;
  transition: right 0.3s ease-in-out;
}
.mod-header .flight-search-section .red-block a:hover:after {
  right: 29px;
}
@media (max-width: 991.98px) {
  .mod-header .flight-search-section .red-block a:hover:after {
    right: 36px;
  }
}
.mod-header .flight-search-section .red-block.black-block {
  background: #000;
}
.mod-header .flight-search-section .red-block.black-block a {
  background: #000;
}
.mod-header .flight-search-section .red-block.green-block {
  background: #0171CF;
}
.mod-header .flight-search-section .red-block.green-block a {
  background: #0171CF;
}
.mod-header .section--cerca-volo {
  position: static;
  padding: 0;
  top: 0;
  background: #fff;
  padding-top: 33px;
}
@media (max-width: 991.98px) {
  .mod-header .section--cerca-volo {
    padding-top: 0;
  }
}
.mod-header .section--cerca-volo .cerca-volo-inner {
  border-radius: 0;
}
.mod-header .section--cerca-volo #cerca-volo__close-button {
  display: none !important;
}
.mod-header .section--cerca-volo .cerca-volo {
  padding: 0;
  max-width: 100%;
}
@media (max-width: 1199.98px) {
  .mod-header .section--cerca-volo .cerca-volo {
    padding: 20px 0;
  }
}
@media (max-width: 991.98px) {
  .mod-header .section--cerca-volo .cerca-volo {
    padding: 0;
    padding-top: 15px;
  }
}
.mod-header .section--cerca-volo .cerca-volo .icon-icon-history-grey {
  display: none;
}
.mod-header .row {
  padding: 0;
}
@media (min-width: 992px) {
  .mod-header .overlay--desk,
.mod-header #cerca-volo__widget {
    display: none !important;
  }
}
@media (max-width: 991.98px) {
  .mod-header .overlay--desk,
.mod-header #cerca-volo__widget {
    margin-bottom: 0 !important;
  }
}
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .custom-input-group .input-wrap.selected input:focus,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .custom-input-group .input-wrap.selected input,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .partenza-destinazione .input-wrap span.input-placeholder,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .date-viaggio .input-wrap span.input-placeholder,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .timetables .input-wrap span.input-placeholder,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .flight_status .input-wrap span.input-placeholder {
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0 !important;
  width: 100%;
}
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .radio-group label {
  font-family: Lato;
  font-weight: 500;
  font-size: 0.8750rem;
  line-height: 1.0000rem;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  font-feature-settings: "kern" off;
  color: #707070;
  background: #fff !important;
  border: none !important;
}
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .radio-group .radio-wrap.checked label {
  color: #0171CF;
  font-weight: bold;
}
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content.cerca-volo__content--prenota .partenza-destinazione .input-wrap:first-child::after,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content.cerca-volo__content--prenota .partenza-destinazione .input-wrap::after,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content.cerca-volo__content--prenota .date-viaggio .input-wrap::after {
  display: none;
}
.mod-header a.cta--primary span.icon-arrow-dx-green {
  display: none;
}
.mod-header .cta-wrap .cta--icon span {
  font-family: Lato;
  font-weight: 500;
  font-size: 0.8750rem;
  line-height: 1.0000rem;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  font-feature-settings: "kern" off;
  color: #0171CF;
}
.mod-header .radio-group .placeholder {
  height: 18px;
  width: 18px;
}
@media (max-width: 991.98px) {
  .mod-header .radio-group .input-wrap {
    width: 50%;
    float: left;
  }
}
@media (max-width: 991.98px) {
  .mod-header .external-link .cta-wrap {
    width: 50%;
    float: left;
  }
}
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .radio-group .placeholder, .mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .radio-group label {
  line-height: 1.1250rem;
}
.mod-header .radio-group .radio-wrap.checked .placeholder::after {
  height: 16px;
  width: 16px;
  top: 0;
  left: 0;
}
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .partenza-destinazione .input-wrap input, .mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .date-viaggio .input-wrap input, .mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .timetables .input-wrap input, .mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .flight_status .input-wrap input, .mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .partenza-destinazione .input-wrap span.input-placeholder, .mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .date-viaggio .input-wrap span.input-placeholder, .mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .timetables .input-wrap span.input-placeholder, .mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .flight_status .input-wrap span.input-placeholder {
  display: block;
  padding: 15px;
  line-height: 1.2500rem;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  height: 50px;
  padding-left: 15px;
  font-size: 1.3125rem;
}
@media (max-width: 543.98px) {
  .mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .partenza-destinazione .input-wrap input, .mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .date-viaggio .input-wrap input, .mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .timetables .input-wrap input, .mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .flight_status .input-wrap input, .mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .partenza-destinazione .input-wrap span.input-placeholder, .mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .date-viaggio .input-wrap span.input-placeholder, .mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .timetables .input-wrap span.input-placeholder, .mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .flight_status .input-wrap span.input-placeholder {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.section--cerca-volo .cerca-volo .cerca-volo__content .partenza-destinazione .custom-input-group .input-wrap:first-child span.input-placeholder,
.section--cerca-volo .cerca-volo .cerca-volo__content .date-viaggio .custom-input-group .input-wrap:first-child span.input-placeholder,
.section--cerca-volo .cerca-volo .cerca-volo__content .timetables .custom-input-group .input-wrap:first-child span.input-placeholder,
.section--cerca-volo .cerca-volo .cerca-volo__content .flight_status .custom-input-group .input-wrap:first-child span.input-placeholder {
  font-family: 'Lato' , sans-serif !important;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3125rem;
  font-feature-settings: "kern" off;
  color: #707070;
  overflow: visible;
}
.section--cerca-volo .cerca-volo .cerca-volo__content .partenza-destinazione .custom-input-group .input-wrap:first-child span.input-placeholder:focus,
.section--cerca-volo .cerca-volo .cerca-volo__content .date-viaggio .custom-input-group .input-wrap:first-child span.input-placeholder:focus,
.section--cerca-volo .cerca-volo .cerca-volo__content .timetables .custom-input-group .input-wrap:first-child span.input-placeholder:focus,
.section--cerca-volo .cerca-volo .cerca-volo__content .flight_status .custom-input-group .input-wrap:first-child span.input-placeholder:focus {
  border: none !important;
  border-radius: 0 !important;
}
@media (max-width: 1439.98px) {
  .section--cerca-volo .cerca-volo .cerca-volo__content .partenza-destinazione .custom-input-group .input-wrap:first-child span.input-placeholder,
.section--cerca-volo .cerca-volo .cerca-volo__content .date-viaggio .custom-input-group .input-wrap:first-child span.input-placeholder,
.section--cerca-volo .cerca-volo .cerca-volo__content .timetables .custom-input-group .input-wrap:first-child span.input-placeholder,
.section--cerca-volo .cerca-volo .cerca-volo__content .flight_status .custom-input-group .input-wrap:first-child span.input-placeholder {
    font-size: 18px;
  }
}
@media (max-width: 1199.98px) {
  .section--cerca-volo .cerca-volo .cerca-volo__content .partenza-destinazione .custom-input-group .input-wrap:first-child span.input-placeholder,
.section--cerca-volo .cerca-volo .cerca-volo__content .date-viaggio .custom-input-group .input-wrap:first-child span.input-placeholder,
.section--cerca-volo .cerca-volo .cerca-volo__content .timetables .custom-input-group .input-wrap:first-child span.input-placeholder,
.section--cerca-volo .cerca-volo .cerca-volo__content .flight_status .custom-input-group .input-wrap:first-child span.input-placeholder {
    font-size: 1rem;
  }
}

.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .partenza-destinazione .input-wrap input,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .date-viaggio .input-wrap input,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .timetables .input-wrap input,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .flight_status .input-wrap input,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .partenza-destinazione .input-wrap span.input-placeholder,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .date-viaggio .input-wrap span.input-placeholder,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .timetables .input-wrap span.input-placeholder,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .flight_status .input-wrap span.input-placeholder {
  font-family: Lato;
  font-style: normal;
  font-weight: 500;
  font-size: 1.1250rem;
  line-height: 1.3125rem;
  font-feature-settings: "kern" off;
  color: #707070;
  overflow: visible;
}
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .partenza-destinazione .input-wrap input:focus,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .date-viaggio .input-wrap input:focus,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .timetables .input-wrap input:focus,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .flight_status .input-wrap input:focus,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .partenza-destinazione .input-wrap span.input-placeholder:focus,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .date-viaggio .input-wrap span.input-placeholder:focus,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .timetables .input-wrap span.input-placeholder:focus,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .flight_status .input-wrap span.input-placeholder:focus {
  border: none !important;
  border-radius: 0 !important;
}
@media (max-width: 1439.98px) {
  .mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .partenza-destinazione .input-wrap input,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .date-viaggio .input-wrap input,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .timetables .input-wrap input,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .flight_status .input-wrap input,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .partenza-destinazione .input-wrap span.input-placeholder,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .date-viaggio .input-wrap span.input-placeholder,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .timetables .input-wrap span.input-placeholder,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .flight_status .input-wrap span.input-placeholder {
    font-size: 0.9375rem;
  }
}
@media (max-width: 1199.98px) {
  .mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .partenza-destinazione .input-wrap input,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .date-viaggio .input-wrap input,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .timetables .input-wrap input,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .flight_status .input-wrap input,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .partenza-destinazione .input-wrap span.input-placeholder,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .date-viaggio .input-wrap span.input-placeholder,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .timetables .input-wrap span.input-placeholder,
.mod-header .section--cerca-volo .cerca-volo .cerca-volo__content .flight_status .input-wrap span.input-placeholder {
    font-size: 1rem;
  }
}

@media (max-width: 991.98px) {
  .section--cerca-volo .cerca-volo .cerca-volo__content .custom-input-group .reverse-button {
    left: auto !important;
    right: 0 !important;
    width: 48px !important;
    height: 48px !important;
    top: 49px !important;
    transform: none !important;
    border-radius: 4px;
  }
}

.reverse-button .icon-icon-reverse-green {
  margin: 0;
  top: 7px;
  position: relative;
}

.icon-icon-reverse-green:before {
  content: "";
  background: url("../../../content/dam/itaspa/imgheader/images/andata-ritorno.svg") no-repeat center;
  width: 50px;
  height: 50px;
  display: block;
  margin: 0;
}
@media (max-width: 991.98px) {
  .icon-icon-reverse-green:before {
    background: url("../../../content/dam/itaspa/imgheader/images/andata-ritorno-white.svg") no-repeat center;
    width: 48px;
    height: 34px;
    transform: none;
  }
}

@media (max-width: 991.98px) {
  .partenza-destinazione .input-wrap,
.date-viaggio .input-wrap {
    max-width: 82% !important;
    border: none !important;
  }
}

@media (max-width: 991.98px) {
  .date-viaggio .input-wrap {
    width: calc(50% - 24px) !important;
    margin: 0;
    float: left;
  }
  .date-viaggio .input-wrap:last-child {
    float: right;
  }
}

@media (max-width: 991.98px) {
  .section--cerca-volo .custom-row .custom-col {
    padding: 0;
  }
}

@media (min-width: 1024px) {
  .section--cerca-volo .cerca-volo .cerca-volo__content.cerca-volo__content--prenota,
.section--cerca-volo .cerca-volo .cerca-volo__content.cerca-volo__content--miei-voli,
.section--cerca-volo .cerca-volo .cerca-volo__content.cerca-volo__content--info-voli {
    padding: 0;
  }

  .section--cerca-volo .custom-row .custom-large-60 {
    width: 60%;
  }
  .section--cerca-volo .custom-row .custom-large-60 .input-wrap {
    margin-right: 24px;
    margin-left: 24px;
    width: calc(52% - 48px) !important;
    padding-left: 0;
  }
}
@media (min-width: 1024px) and (max-width: 1199.98px) {
  .section--cerca-volo .custom-row .custom-large-60 .input-wrap {
    margin-right: 12px;
    margin-left: 12px;
    width: calc(50% - 24px) !important;
  }
}
@media (min-width: 1024px) {
  .section--cerca-volo .custom-row .custom-large-60 .input-wrap:first-child {
    margin-left: 0;
  }
}
@media (min-width: 1024px) {
  .section--cerca-volo .custom-row .custom-large-60 .input-wrap .iata-code {
    color: #0171CF;
  }
}
@media (min-width: 1024px) and (max-width: 991.98px) {
  .section--cerca-volo .custom-row .custom-large-60 .input-wrap input, .section--cerca-volo .custom-row .custom-large-60 .input-wrap span {
    padding-left: 7px !important;
  }
}
@media (min-width: 1024px) {
  .cerca-volo__content--info-voli .flight_status .custom-col.custom-large-60 .input-wrap {
    margin-right: 0 !important;
  }
}
@media (min-width: 1024px) {
  .section--cerca-volo .custom-row .custom-large-40.input-wrap-2--desktop {
    width: 40%;
  }
  .section--cerca-volo .custom-row .custom-large-40.input-wrap-2--desktop .input-wrap {
    margin-right: 12px;
    margin-left: 12px;
    width: calc(50% - 24px) !important;
    position: relative;
    padding-left: 0;
  }
}
@media (min-width: 1024px) and (max-width: 1199.98px) {
  .section--cerca-volo .custom-row .custom-large-40.input-wrap-2--desktop .input-wrap {
    margin-right: 12px;
    margin-left: 12px;
    width: calc(50% - 24px) !important;
  }
}
@media (min-width: 1024px) {
  .section--cerca-volo .custom-row .custom-large-40.input-wrap-2--desktop .input-wrap:first-child {
    margin-left: 0;
  }
}
@media (min-width: 1024px) {
  .section--cerca-volo .custom-row .custom-large-40.input-wrap-2--desktop .input-wrap .iata-code {
    color: #0171CF;
  }
}
@media (min-width: 1024px) {
  .section--cerca-volo .custom-row .custom-large-40.input-wrap-2--desktop .input-wrap input, .section--cerca-volo .custom-row .custom-large-40.input-wrap-2--desktop .input-wrap span {
    padding-left: 7px !important;
  }
}
@media (min-width: 1024px) {
  .section--cerca-volo .cerca-volo .cerca-volo__content.cerca-volo__content--prenota .external-link .multitratta {
    float: left;
    width: 45%;
  }
}
@media (min-width: 1024px) {
  .section--cerca-volo .cerca-volo .cerca-volo__content.cerca-volo__content--prenota .external-link .biglietto-premio {
    float: left;
    width: 43%;
  }
}
.section--cerca-volo .custom-row .custom-large-60 .input-wrap::after {
  content: "" !important;
  background: url("../../../content/dam/itaspa/imgheader/images/down-green-arrow.svg") no-repeat center !important;
  background-size: 12px !important;
  width: 12px;
  height: 12px;
  display: block !important;
  margin: 0;
  position: absolute;
  right: 0 !important;
  left: auto !important;
  font-size: 0;
  top: 0;
  margin-top: 1px !important;
}

.section--cerca-volo .cerca-volo #cerca-volo__widget .cerca-volo__tab.is-active .cerca-volo__title::before {
  /*background: url("../../../content/dam/itaspa/imgheader/images/menu-mobile-arrow-green.svg") no-repeat center !important;*/
  /*transform: rotate(0deg);*/
}

.section--cerca-volo .custom-row .custom-large-40.input-wrap-2--desktop .input-wrap,
.section--cerca-volo .custom-row .input-wrap-2--tablet .input-wrap {
  position: relative;
}
.section--cerca-volo .custom-row .custom-large-40.input-wrap-2--desktop .input-wrap::after,
.section--cerca-volo .custom-row .input-wrap-2--tablet .input-wrap::after {
  content: "" !important;
  background: url("../../../content/dam/itaspa/imgheader/images/calendar-ico.svg") no-repeat center;
  background-position: center center !important;
  background-size: 18px !important;
  width: 18px !important;
  height: 18px !important;
  display: block !important;
  margin: 0;
  position: absolute !important;
  right: 0 !important;
  left: auto !important;
  font-size: 0 !important;
  top: 3px !important;
}

.section--cerca-volo .cerca-volo .cerca-volo__content .custom-input-group .reverse-button {
  width: 30px;
  height: 30px;
  top: 10px;
  left: 49%;
  right: auto;
  transform: translate(-50%, 0);
}

.section--cerca-volo .cerca-volo .cerca-volo__content.cerca-volo__content--prenota .validate-search--desktop button .icon-ico-select-white:before {
  content: "";
  background: url("../../../content/dam/itaspa/imgheader/images/search-ico.svg") no-repeat center;
  width: 17px;
  height: 16px;
  display: block;
  margin: 0;
  padding: 0;
  margin: auto;
}

.on-focus label:after {
  border: none;
}

a:focus {
  outline: 0;
}

@media (max-width: 1199.98px) {
  .section--cerca-volo .cerca-volo #cerca-volo__widget .cerca-volo__title::before {
    content: "" !important;
    /*background: url("../../../content/dam/itaspa/imgheader/images/menu-mobile-arrow-black.svg") no-repeat center !important;*/
    background-size: 24px 12px !important;
    width: 24px;
    height: 12px;
    display: block !important;
    margin: 0;
    position: absolute;
    right: 19px !important;
    left: auto !important;
    font-size: 0;
    top: 26px;
    margin-top: 1px !important;
  }
}


@media (max-width: 991.98px) {
  .section--cerca-volo .cerca-volo #cerca-volo__widget .cerca-volo__title {
    /*padding-left: 50px;*/
    font-weight: 500;
    font-size: 14px;
    /*line-height: 1.2500rem;*/
    /*padding-top: 24px;*/
    padding-bottom: 20px;
    height:48px;
  }
}

.section--cerca-volo .cerca-volo #cerca-volo__widget .cerca-volo__tab {
  border-top: none !important;
}
@media (max-width: 991.98px) {
  .section--cerca-volo .cerca-volo #cerca-volo__widget .cerca-volo__tab.last-child {
    border: none !important;
  }
}

.other-links {
  margin-bottom: 24px;
}
.other-links li {
  border-bottom: 1px solid #676767 !important;
  height: 59px;
}
.other-links li a {
  text-transform: uppercase;
  font-size: 1.1250rem;
  font-weight: 700;
  font-family: Lato;
  color: #000;
  padding: 0 10px;
  padding-left: 10px;
  padding-bottom: 0;
  line-height: 3.6875rem;
  display: block;
}
.other-links li:last-child {
  border: none !important;
}

.button-wrap.validate-search--mobile button {
  background-image: url("../../../content/dam/itaspa/imgheader/images/search-ico.svg");
  background-repeat: no-repeat;
  background-position: center right;
  background-position-x: calc(100% - 15px);
}

@media (max-width: 991.98px) {
  #flight-status-search {
    background-image: url("../../../content/dam/itaspa/imgheader/images/search-ico.svg");
    background-repeat: no-repeat;
    background-position: center right;
    background-position-x: calc(100% - 15px);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .section--cerca-volo .cerca-volo #cerca-volo__widget .cerca-volo__title, .section--cerca-volo .cerca-volo #cerca-volo__widget .cerca-volo__content {
    padding: 20px;
  }

  .section--cerca-volo .cerca-volo .cerca-volo__content.cerca-volo__content--prenota .radio-travel-type {
    float: left;
    width: 100%;
    display: block;
  }

  .section--cerca-volo .cerca-volo .cerca-volo__content .button-wrap button {
    margin-top: 20px;
    float: left;
  }

  .section--cerca-volo .cerca-volo .cerca-volo__content.cerca-volo__content--prenota .radio-group .input-wrap:last-child {
    margin-left: 0;
  }

  .section--cerca-volo .cerca-volo .cerca-volo__content .radio-group {
    display: -ms-flexbox;
    display: flex;
    width: 50%;
  }

  .section--cerca-volo .cerca-volo .cerca-volo__content .custom-input-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }

  .section--cerca-volo .cerca-volo .cerca-volo__content .custom-input-group .input-wrap {
    float: left;
    width: 47%;
  }

  .section--cerca-volo .custom-row .custom-large-40.input-wrap-2--desktop .input-wrap::after, .section--cerca-volo .custom-row .input-wrap-2--tablet .input-wrap::after {
    right: 15px !important;
  }

  .section--cerca-volo .cerca-volo .cerca-volo__content .custom-input-group .reverse-button {
    top: 10px !important;
    left: calc(50% - 24px) !important;
    right: auto;
    transform: rotate(90deg) !important;
  }

  .section--cerca-volo .cerca-volo .cerca-volo__content .timetables .input-wrap, .section--cerca-volo .cerca-volo .cerca-volo__content .flight_status .input-wrap {
    width: 90%;
  }

  .section--cerca-volo .custom-row .custom-col.flight_status_DIV {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }

  .other-links li a {
    padding-left: 20px;
  }
}

/*! MODAL STYLES */
@media (min-width: 992px) {
  .modal-custom .modal-dialog {
    max-width: 920px;
  }
}
.modal-custom .modal-content {
  border-radius: 24px;
  font-family: Lato;
}
.modal-custom .modal-content p {
  font-family: Lato;
}
.modal-custom .modal-content a {
  color: #0171CF;
}
.modal-custom .modal-content .signuplink {
  margin-top: 20px;
}
.modal-custom .modal-content .btn.btn-custom-green {
  font-family: Lato;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid #0171CF;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 1rem;
  padding-top: 10px;
  background-color: #0171CF;
  color: #fff;
}
.modal-custom .modal-content .ehbox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
  height: 100%;
  margin-bottom: 10px;
}
.modal-custom .modal-content .ehbox p {
  color: #707070;
}
.modal-custom .modal-content .signup-list {
  font-size: 0.7500rem;
  color: #707070;
  padding-left: 0px;
  list-style: none;
}
.modal-custom .modal-content .signup-list li {
  padding-left: 22px;
  background-image: url("../../../content/dam/itaspa/imgheader/images/checkmark-ico--green.svg");
  background-position: left top 2px;
  background-repeat: no-repeat;
  background-size: 14px;
  margin-bottom: 1px;
}
.modal-custom .modal-header {
  border-radius: 0;
  padding-bottom: 5px;
}
.modal-custom .modal-header h5 {
  font-family: Lato;
  font-weight: 700;
  font-size: 1.75rem;
  padding-left: 10px;
}
@media (max-width: 768.98px) {
  .modal-custom .modal-header h5 {
    font-size: 1.3750rem;
  }
}
.modal-custom .modal-header button.close {
  font-family: Lato;
  font-weight: 400;
  color: #0171CF;
  font-size: 36px;
  opacity: 1;
  padding: 10px 20px 5px 5px;
}
.modal-custom .modal-footer {
  border-radius: 0;
  border-top: none;
}
.modal-custom .modal-footer button {
  display: none;
}

#supportModal .support-title {
  font-family: Lato;
  font-size: 1.1250rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 10px;
  margin-top: 10px;
}
#supportModal .support-section-list li {
  margin-bottom: 2px;
}
@media (max-width: 768.98px) {
  #supportModal .support-section-list li {
    margin-bottom: 8px;
  }
}
#supportModal .support-section-list li a {
  font-family: Lato;
  font-size: 0.8750rem;
  color: #0171CF;
}

#signupModal .support-title {
  font-family: Lato;
  font-size: 1.1250rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 20px;
  margin-top: 10px;
}
#signupModal .support-section-list li {
  margin-bottom: 2px;
}
@media (max-width: 768.98px) {
  #signupModal .support-section-list li {
    margin-bottom: 8px;
  }
}
#signupModal .support-section-list li a {
  font-family: Lato;
  font-size: 0.8750rem;
  color: #0171CF;
}

#signinModal .support-title {
  font-family: Lato;
  font-size: 1.1250rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  margin-top: 10px;
}
#signinModal .support-section-list li {
  margin-bottom: 2px;
}
@media (max-width: 768.98px) {
  #signinModal .support-section-list li {
    margin-bottom: 8px;
  }
}
#signinModal .support-section-list li a {
  font-family: Lato;
  font-size: 0.8750rem;
  color: #0171CF;
}

@media (min-width: 992px) {
  #alertsModal .modal-dialog {
    max-width: 480px;
  }
}
#alertsModal .alert-line-item {
  position: relative;
  padding: 20px;
  padding-left: 0;
}
#alertsModal .alert-line-item span {
  font-weight: 700;
  display: block;
  max-width: 80%;
}
#alertsModal .alert-line-item .close-alert {
  z-index: 100;
  display: block;
  width: 32px;
  height: 32px;
  right: 0;
  top: -5px;
  position: absolute;
  background: url("../../../content/dam/itaspa/imgheader/images/close-ico.svg") no-repeat center !important;
  background-size: 32px !important;
  background-color: transparent !important;
  border-radius: 100%;
}

#searchModal .input-group {
  margin-top: 10px;
}
#searchModal .input-group input {
  border-radius: 0 !important;
  margin-right: 40px;
  border: none;
  border-bottom: 2px solid #707070 !important;
  font-size: 1.1250rem;
  color: #707070;
  font-weight: 500;
}
@media (max-width: 992px) {
  #searchModal .input-group input {
    font-size: 1rem;
  }
}
#searchModal .input-group input:focus {
  outline: 0;
  border: none;
  box-shadow: none;
  border-bottom: 2px solid #0171CF !important;
}
#searchModal .input-group .btn.btn-primary {
  background: #0171CF;
  border: none;
  font-weight: 700;
  opacity: 1;
  transition: opacity 0.1s ease-in-out;
}
#searchModal .input-group .btn.btn-primary:hover {
  opacity: 0.9;
}
#searchModal .input-group .btn.btn-primary:focus {
  outline: 0;
  border: none;
  box-shadow: none;
}

#languageModal select {
  background-image: url("../../../content/dam/itaspa/imgheader/images/down-green-arrow.svg");
  background-size: 16px 9px;
  background-position: right -0.9rem center;
  padding-right: 1.8rem;
  border: none;
  border-bottom: 2px solid #707070;
  border-radius: 0;
}
#languageModal select:focus {
  outline: 0;
  border: none;
  border-bottom: 2px solid #0171CF;
  box-shadow: none;
}
#languageModal .languageMenu__group, #languageModal .reveal__content {
  text-align: center;
}
#languageModal .confirmButton {
  color: #fff !important;
}
#languageModal .rememberMeLang {
  width: 150px;
  height: 24px;
  margin-left: 7px;
  z-index: 9;
  cursor: pointer;
}
#languageModal .rememberMeLang:checked + label:after {
  left: 7px;
  top: 11px;
}
@media (max-width: 991.98px) {
  #languageModal .reveal__content {
    position: static;
  }
}


@media (min-width: 769px) {
  div#ui-datepicker-div {
    position: absolute !important;
    width: 700px !important;
    right: 150px;
    left: auto;
  }
}
#panel-travel-options .panel__content .seat-type-wrap .radio-group label,
#panel-travel-options .panel__content .seat-type-wrap .radio-group .label {
  font-weight: 400;
  font-family: Lato;
}

#panel-travel-options .panel__content .passenger-wrap label,
#panel-travel-options .panel__content .passenger-wrap .label {
  font-weight: 700;
  font-family: Lato;
}

.icon-icon-arrival {
  display: none !important;
}

@media (min-width: 1024px) {
  #panel-all-destination .all-destination .initials-wrap {
    margin-left: 4.33%;
  }
}
@media (min-width: 769px) {
  .mod-header .flight-search-section .red-block {
    min-height: 120px;
  }
}
/*! START MOBILE PICKER PANELS */
@media (max-width: 991.98px) {
  .mod-header #data-andata--prenota-desk {
    display: none !important;
  }
}
@media (max-width: 991.98px) {
  .mod-header #data-ritorno--prenota-desk {
    display: none !important;
  }
}
.mod-header #data-andata--prenota-mobile + .icon-icon-calendar,
.mod-header #data-ritorno--prenota-mobile + .icon-icon-calendar {
  right: 32px;
}
.mod-header #data-andata--prenota-mobile + .icon-icon-calendar::before,
.mod-header #data-ritorno--prenota-mobile + .icon-icon-calendar::before {
  display: none;
}
.mod-header #data-andata--prenota-mobile + .icon-icon-calendar::after,
.mod-header #data-ritorno--prenota-mobile + .icon-icon-calendar::after {
  content: "" !important;
  background: url("../../../content/dam/itaspa/imgheader/images/calendar-ico.svg") no-repeat center;
  background-position: center center !important;
  background-size: 18px !important;
  width: 18px !important;
  height: 18px !important;
  display: block !important;
  margin: 0;
  position: absolute !important;
  right: 0 !important;
  left: auto !important;
  font-size: 0 !important;
  top: 3px !important;
}
.mod-header .panel__header-mobile .icon.icon--close--black::after {
  content: "×" !important;
  font-family: Lato;
  font-size: 42px !important;
  position: absolute;
  top: -13px;
  right: -6px;
  color: #000 !important;
}
@media (max-width: 991.98px) {
  .mod-header #departure_date--flight-status-desk {
    display: none !important;
  }
}
@media (max-width: 991.98px) {
  .mod-header #departure_date--timetables-desk {
    display: none !important;
  }
}
.mod-header #departure_date--flight-status-mobile + .icon-icon-calendar,
.mod-header #departure_date--timetables-mobile + .icon-icon-calendar {
  right: 32px;
}
.mod-header #departure_date--flight-status-mobile + .icon-icon-calendar::before,
.mod-header #departure_date--timetables-mobile + .icon-icon-calendar::before {
  display: none;
}
.mod-header #departure_date--flight-status-mobile + .icon-icon-calendar::after,
.mod-header #departure_date--timetables-mobile + .icon-icon-calendar::after {
  content: "" !important;
  background: url("../../../content/dam/itaspa/imgheader/images/calendar-ico.svg") no-repeat center;
  background-position: center center !important;
  background-size: 18px !important;
  width: 18px !important;
  height: 18px !important;
  display: block !important;
  margin: 0;
  position: absolute !important;
  right: 0 !important;
  left: auto !important;
  font-size: 0 !important;
  top: 3px !important;
}
.mod-header .cerca-volo__content--info-voli form#flight-info-submit .flight_status_DIV + .flight_status_DIV .input-wrap::after {
  content: "" !important;
  background: url("../../../content/dam/itaspa/imgheader/images/calendar-ico.svg") no-repeat center;
  background-position: center center !important;
  background-size: 18px !important;
  width: 18px !important;
  height: 18px !important;
  display: block !important;
  margin: 0;
  position: absolute !important;
  right: 0 !important;
  left: auto !important;
  font-size: 0 !important;
  top: 15px !important;
}
.mod-header .cerca-volo__content--info-voli form.timetables .custom-col.custom-large-60 + .custom-col.custom-large-20 .input-wrap::after {
  content: "" !important;
  background: url("../../../content/dam/itaspa/imgheader/images/calendar-ico.svg") no-repeat center;
  background-position: center center !important;
  background-size: 18px !important;
  width: 18px !important;
  height: 18px !important;
  display: block !important;
  margin: 0;
  position: absolute !important;
  right: 0 !important;
  left: auto !important;
  font-size: 0 !important;
  top: 15px !important;
}
.mod-header .autocomplete-wrap.collapsable-wrap .panel__header-mobile span {
  font-family: Lato;
  font-size: 1.1250rem;
  margin-top: -4px;
}

@media (max-width: 991.98px) {
  body.lock #ui-datepicker-div {
    position: fixed !important;
    z-index: 204;
  }
  body.lock #ui-datepicker-div .ui-widget-content {
    width: auto !important;
    display: block;
    border-radius: 0;
  }
  body.lock #ui-datepicker-div .ui-datepicker-prev,
body.lock #ui-datepicker-div .ui-datepicker-next {
    height: 32px;
    width: 32px;
  }
  body.lock #ui-datepicker-div .ui-datepicker-prev::before,
body.lock #ui-datepicker-div .ui-datepicker-next::before {
    display: block;
    content: "";
    width: 31px;
    height: 31px;
  }
  body.lock #ui-datepicker-div .ui-datepicker-prev {
    right: 4px;
  }
  body.lock #ui-datepicker-div .ui-datepicker-prev::before {
    background: url("../../../content/dam/itaspa/imgheader/images/menu-mobile-arrow-green.svg") no-repeat center !important;
    transform: rotate(-180deg);
  }
  body.lock #ui-datepicker-div .ui-datepicker-next {
    right: 4px;
  }
  body.lock #ui-datepicker-div .ui-datepicker-next::before {
    background: url("../../../content/dam/itaspa/imgheader/images/menu-mobile-arrow-green.svg") no-repeat center !important;
    transform: rotate(180deg);
  }
}

[id*=panel-] #data-andata--prenota-mobile,
[id*=panel-] #data-ritorno--prenota-mobile,
[id*=panel-] #departure_date--timetables-mobile,
[id*=panel-] #departure_date--flight-status-mobile {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #707070 !important;
}

/* END MOBILE PICKER PANELS */
@media (min-width: 769px) {
  .mod-header {
    min-height: 243px;
  }
}
.mod-header .section--cerca-volo .custom-row > .custom-row {
  margin-left: 0;
  margin-right: 0;
}
.mod-header .section--cerca-volo .custom-row > .custom-row .user-login-box {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
}
.mod-header .section--cerca-volo .custom-row > .custom-row .user-login-box label {
  display: inline-block;
  margin-top: 10px;
  padding-left: 15px;
}
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--prenota .labelErrorInfoStatoVolo {
  padding-left: 0px;
  color: #AF231C;
  font-family: Lato;
  font-size: 0.7500rem;
}
@media (max-width: 1199.98px) {
  .mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--prenota .labelErrorInfoStatoVolo {
    margin-left: 5px !important;
  }
}
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--check-in input#code,
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--check-in input#surname,
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--check-in input#name,
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--check-in input#name_code,
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--check-in input#name_surname {
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
  font-family: Lato;
}
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--check-in input#code:-ms-input-placeholder,
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--check-in input#surname:-ms-input-placeholder,
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--check-in input#name:-ms-input-placeholder,
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--check-in input#name_code:-ms-input-placeholder,
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--check-in input#name_surname:-ms-input-placeholder {
  color: #707070;
}
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--check-in input#code::placeholder,
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--check-in input#surname::placeholder,
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--check-in input#name::placeholder,
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--check-in input#name_code::placeholder,
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--check-in input#name_surname::placeholder {
  color: #707070;
}
@media (max-width: 1199.98px) {
  .mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--check-in .radio-group .input-wrap.radio-wrap {
    width: 100%;
    float: none;
  }
}
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--check-in .user-login-box {
  color: #AF231C;
  font-family: Lato;
  font-size: 0.7500rem;
}
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--check-in .user-login-box label {
  font-size: 0.7500rem;
  line-height: 1.0000rem;
  margin-bottom: 5px;
  padding-left: 5px;
}
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--miei-voli input#lastName,
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--miei-voli input#firstName,
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--miei-voli input#pnr {
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
  font-family: Lato;
}
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--miei-voli input#lastName:-ms-input-placeholder,
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--miei-voli input#firstName:-ms-input-placeholder,
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--miei-voli input#pnr:-ms-input-placeholder {
  color: #707070;
}
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--miei-voli input#lastName::placeholder,
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--miei-voli input#firstName::placeholder,
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--miei-voli input#pnr::placeholder {
  color: #707070;
}
@media (max-width: 1199.98px) {
  .mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--miei-voli .radio-group .input-wrap.radio-wrap {
    width: 100%;
    float: none;
    margin-bottom: 0;
  }
}
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--miei-voli .labelErrorInfoStatoVolo {
  padding-left: 0px;
  color: #AF231C;
  font-family: Lato;
  font-size: 0.7500rem;
  margin-top: 10px;
}
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--info-voli .labelErrorInfoStatoVolo,
.mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__tab.cerca-volo__tab--info-voli #labelErrorInfoOrarioVolo {
  padding-left: 0px;
  color: #AF231C;
  font-family: Lato;
  font-size: 0.7500rem;
  margin-top: 10px;
}
.mod-header .section--cerca-volo .tabs-content {
  border-radius: 0 !important;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota span#span_luogo-arrivo--prenota-desk {
  border-bottom: 2px solid #707070 !important;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota span#span_luogo-arrivo--prenota-desk.is-invalid-input {
  border-color: #AF231C !important;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota span[data-toggle-panel="#panel-list_andata--prenota"] {
  border-bottom: 2px solid #707070 !important;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota span[data-toggle-panel="#panel-list_andata--prenota"].is-invalid-input {
  border-color: #AF231C !important;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota label[for=data-andata--prenota-desk] + span,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota label[for=data-ritorno--prenota-desk] + span {
  border-bottom: 2px solid #707070 !important;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota label[for=data-andata--prenota-desk] + span.is-invalid-input,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota label[for=data-ritorno--prenota-desk] + span.is-invalid-input {
  border-color: #AF231C !important;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota input#data-andata--prenota-desk,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota input#data-ritorno--prenota-desk {
  font-family: Lato;
  font-size: 1.1250rem;
  color: #707070;
  border: none;
  border-radius: 0;
  border-bottom: 0px solid #0171CF !important;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota input#data-andata--prenota-desk:-ms-input-placeholder,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota input#data-ritorno--prenota-desk:-ms-input-placeholder {
  color: #707070;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota input#data-andata--prenota-desk::placeholder,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota input#data-ritorno--prenota-desk::placeholder {
  color: #707070;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota input#data-andata--prenota-desk:focus,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota input#data-ritorno--prenota-desk:focus {
  border-bottom-width: 1px !important;
}
@media (max-width: 1439.98px) {
  .mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota input#data-andata--prenota-desk,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota input#data-ritorno--prenota-desk {
    font-size: 0.9375rem;
  }
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota input#data-andata--prenota-desk.is-invalid-input,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota input#data-ritorno--prenota-desk.is-invalid-input {
  border-bottom: 2px solid #AF231C !important;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota input#luogo-partenza--prenota-desk,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota input#luogo-arrivo--prenota-desk {
  font-family: Lato;
  font-size: 1.1250rem;
  color: #707070;
  border: none;
  border-radius: 0;
  border-bottom: 0px solid #707070 !important;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota input#luogo-partenza--prenota-desk:-ms-input-placeholder,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota input#luogo-arrivo--prenota-desk:-ms-input-placeholder {
  color: #707070;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota input#luogo-partenza--prenota-desk::placeholder,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota input#luogo-arrivo--prenota-desk::placeholder {
  color: #707070;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota input#luogo-partenza--prenota-desk:focus,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota input#luogo-arrivo--prenota-desk:focus {
  border-bottom-width: 1px !important;
}
@media (max-width: 1439.98px) {
  .mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota input#luogo-partenza--prenota-desk,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota input#luogo-arrivo--prenota-desk {
    font-size: 0.9375rem;
  }
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota input#luogo-partenza--prenota-desk.is-invalid-input,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota input#luogo-arrivo--prenota-desk.is-invalid-input {
  border-bottom-color: #AF231C !important;
  background: #AF231C;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--prenota .labelErrorInfoStatoVolo {
  padding-left: 0px;
  margin-left: 20px;
  color: #AF231C;
  font-family: Lato;
  font-size: 0.7500rem;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in {
  padding: 0;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in .input-wrap.radio-wrap {
  padding-left: 0;
  padding-right: 20px;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in .input-wrap.radio-wrap label {
  margin-left: 0;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in .input-wrap.radio-wrap label[for=booking_code] {
  min-width: 280px;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#code,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#surname,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#name,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#name_code,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#name_surname {
  font-family: Lato;
  font-size: 1.1250rem;
  color: #000;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid #707070 !important;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#code:-ms-input-placeholder,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#surname:-ms-input-placeholder,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#name:-ms-input-placeholder,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#name_code:-ms-input-placeholder,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#name_surname:-ms-input-placeholder {
  color: #707070;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#code::placeholder,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#surname::placeholder,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#name::placeholder,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#name_code::placeholder,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#name_surname::placeholder {
  color: #707070;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#code:focus,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#surname:focus,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#name:focus,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#name_code:focus,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#name_surname:focus {
  border-bottom: 1px solid #0171CF !important;
}
@media (max-width: 1439.98px) {
  .mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#code,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#surname,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#name,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#name_code,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#name_surname {
    font-size: 0.9375rem;
  }
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#code.is-invalid-input,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#surname.is-invalid-input,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#name.is-invalid-input,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#name_code.is-invalid-input,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in input#name_surname.is-invalid-input {
  border-bottom-color: #AF231C !important;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in .custom-col.custom-large-50 .custom-input-group .input-wrap {
  float: none;
  margin-right: 10px;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in .custom-col.custom-large-50 .custom-input-group .input-wrap + .input-wrap {
  margin-right: 0;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in .user-login-box {
  color: #AF231C;
  font-family: Lato;
  font-size: 0.7500rem;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--check-in .user-login-box label {
  font-size: 0.7500rem;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--miei-voli {
  padding-top: 26px;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--miei-voli input#lastName,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--miei-voli input#firstName,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--miei-voli input#pnr {
  font-family: Lato;
  font-size: 1.1250rem;
  color: #000;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid #707070 !important;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--miei-voli input#lastName:-ms-input-placeholder,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--miei-voli input#firstName:-ms-input-placeholder,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--miei-voli input#pnr:-ms-input-placeholder {
  color: #707070;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--miei-voli input#lastName::placeholder,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--miei-voli input#firstName::placeholder,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--miei-voli input#pnr::placeholder {
  color: #707070;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--miei-voli input#lastName:focus,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--miei-voli input#firstName:focus,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--miei-voli input#pnr:focus {
  border-bottom: 1px solid #0171CF !important;
}
@media (max-width: 1439.98px) {
  .mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--miei-voli input#lastName,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--miei-voli input#firstName,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--miei-voli input#pnr {
    font-size: 0.9375rem;
  }
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--miei-voli input#lastName.is-invalid-input,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--miei-voli input#firstName.is-invalid-input,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--miei-voli input#pnr.is-invalid-input {
  border-bottom-color: #AF231C !important;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--miei-voli .labelErrorInfoStatoVolo {
  position: static;
  float: left;
  padding-left: 20px;
  color: #AF231C;
  font-family: Lato;
  font-size: 0.7500rem;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli span[data-toggle-panel="#panel-list_andata--timetables"],
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli span[data-toggle-panel="#panel-destination--timetables"] {
  border-bottom: 2px solid #707070 !important;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli span[data-toggle-panel="#panel-list_andata--timetables"].is-invalid-input,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli span[data-toggle-panel="#panel-destination--timetables"].is-invalid-input {
  border-color: #AF231C !important;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli span[data-toggle-panel="#panel-numero-volo--flight-status"] {
  border-bottom: 2px solid #707070 !important;
  color: #000 !important;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli span[data-toggle-panel="#panel-numero-volo--flight-status"].is-invalid-input {
  border-color: #AF231C !important;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli label[for=departure_date--flight-status-desk] + span,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli label[for=departure_date--timetables-desk] + span {
  border-bottom: 2px solid #707070 !important;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli label[for=departure_date--flight-status-desk] + span.is-invalid-input,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli label[for=departure_date--timetables-desk] + span.is-invalid-input {
  border-color: #AF231C !important;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#departure_date--flight-status-desk,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#departure_date--timetables-desk {
  font-family: Lato;
  font-size: 1.1250rem;
  color: #707070;
  border: none;
  border-radius: 0;
  border-bottom: 0px solid #0171CF !important;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#departure_date--flight-status-desk:-ms-input-placeholder,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#departure_date--timetables-desk:-ms-input-placeholder {
  color: #707070;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#departure_date--flight-status-desk::placeholder,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#departure_date--timetables-desk::placeholder {
  color: #707070;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#departure_date--flight-status-desk:focus,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#departure_date--timetables-desk:focus {
  border-bottom-width: 1px !important;
}
@media (max-width: 1439.98px) {
  .mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#departure_date--flight-status-desk,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#departure_date--timetables-desk {
    font-size: 0.9375rem;
  }
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#departure_date--flight-status-desk.is-invalid-input,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#departure_date--timetables-desk.is-invalid-input {
  border-bottom: 2px solid #AF231C !important;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#luogo-partenza--timetables-desk,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#luogo-arrivo--timetables-desk {
  font-family: Lato;
  font-size: 1.1250rem;
  color: #707070;
  border: none;
  border-radius: 0;
  border-bottom: 0px solid #707070 !important;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#luogo-partenza--timetables-desk:-ms-input-placeholder,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#luogo-arrivo--timetables-desk:-ms-input-placeholder {
  color: #707070;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#luogo-partenza--timetables-desk::placeholder,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#luogo-arrivo--timetables-desk::placeholder {
  color: #707070;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#luogo-partenza--timetables-desk:focus,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#luogo-arrivo--timetables-desk:focus {
  border-bottom-width: 1px !important;
}
@media (max-width: 1439.98px) {
  .mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#luogo-partenza--timetables-desk,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#luogo-arrivo--timetables-desk {
    font-size: 0.9375rem;
  }
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#luogo-partenza--timetables-desk.is-invalid-input,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#luogo-arrivo--timetables-desk.is-invalid-input {
  border-bottom-color: #AF231C !important;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#flight-number--flight-status-desk {
  font-family: Lato;
  font-size: 1.1250rem;
  color: #000;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid #707070 !important;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#flight-number--flight-status-desk:-ms-input-placeholder {
  color: #707070;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#flight-number--flight-status-desk::placeholder {
  color: #707070;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#flight-number--flight-status-desk:focus {
  border-bottom: 1px solid #0171CF !important;
}
@media (max-width: 1439.98px) {
  .mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#flight-number--flight-status-desk {
    font-size: 0.9375rem;
  }
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli input#flight-number--flight-status-desk.is-invalid-input {
  border-bottom-color: #AF231C !important;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli .labelErrorInfoStatoVolo,
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content.cerca-volo__content--info-voli #labelErrorInfoOrarioVolo {
  position: static;
  float: left;
  padding-left: 20px;
  color: #AF231C;
  font-family: Lato;
  font-size: 0.7500rem;
  margin-top: 10px !important;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content .input-wrap.radio-wrap.on-focus label::after {
  border: none;
}
.mod-header .section--cerca-volo .tabs-content .cerca-volo__content .radio-group .radio-wrap .placeholder {
  margin-right: 4px;
}
@media (min-width: 1024px) {
  .mod-header .section--cerca-volo .cerca-volo .cerca-volo__content.cerca-volo__content--check-in {
    background-color: #fff;
    min-height: 118px;
  }
}
.mod-header .menurightbox {
  padding: 0 10px 0 20px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
@media (max-width: 1439.98px) {
  .mod-header .menurightbox {
    padding: 0 20px;
  }
}
@media (max-width: 991.98px) {
  .mod-header .menurightbox {
    padding: 0 0 0 20px;
  }
}
.mod-header .menurightbox .servicemenubox .servicelinks ul {
  min-width: auto;
}
@media (max-width: 991.98px) {
  .mod-header .menurightbox .servicemenubox {
    display: none;
  }
}
.mod-header .menurightbox .mainmenutoggler {
  transition: background-color 0.3s linear;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: url("../../../content/dam/itaspa/imgheader/images/hamburger-ico.svg") no-repeat center;
}
.mod-header .menurightbox .mainmenutoggler span {
  font-size: 1.3750rem;
}
.mod-header .menurightbox .mainmenutoggler__notify {
  font-style: normal;
  font-size: 0.6875rem
  font-family: Lato;
  display: inline-block;
  width: 15px;
  height: 15px;
  transform: translateY(-12px) translateX(10px);
  transition: all 0.3s linear;
  background: #dc3545;
  border-radius: 100%;
  color: #fff;
  line-height: 0.8750rem;
}
@media (max-width: 991.98px) {
  .mod-header .menurightbox .mainmenutoggler {
    height: 100%;
    width: 64px;
    min-width: 64px;
    border-radius: 0;
    background-color: #E5E5E5;
    float: right;
    position: absolute;
    right: 0;
    top: 5px;
  }
}
@media (max-width: 991.98px) {
  .mod-header .menurightbox.menurightbox--loggedin .mainmenutoggler {
    background-color: #DDC981;
  }
}
@media (max-width: 991.98px) {
  .mod-header .section--cerca-volo #cerca-volo__widget .cerca-volo__content {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.mod-header {
  position: relative;
}
.mod-header .menurightbox {
  position: static;
}
.mod-header .menurightbox .mainnav {
  position: absolute;
  padding-top: 0;
  padding-left: 0px;
  padding-right: 0px;
  top: 0px !important;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 98;
  background-color: white;
  transform: translateY(-100%);
  transition: all 0.3s ease;
  display: none;
}
@media (max-width: 991.98px) {
  .mod-header .menurightbox .mainnav {
    transform: translateX(100%);
    position: fixed;
    top: 0;
    left: 0;
  }
}
.mod-header .menurightbox .mainnav .servicelinks {
  display: none;
}
@media (max-width: 1199.98px) {
  .mod-header .menurightbox .mainnav .servicelinks {
    padding-right: 0;
  }
}
@media (max-width: 1199.98px) {
  .mod-header .menurightbox .mainnav .servicelinks {
    display: block;
    position: relative;
    left: 0;
    top: 66px;
    z-index: 99;
  }
}
.mod-header .menurightbox .mainnav .servicelinks ul {
  padding-left: 0;
  margin-bottom: 0;
  min-width: 80px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: start;
}
@media (max-width: 991.98px) {
  .mod-header .menurightbox .mainnav .servicelinks ul {
    min-width: auto;
  }
}
.mod-header .menurightbox .mainnav .servicelinks ul li {
  display: inline-block;
}
.mod-header .menurightbox .mainnav .servicelinks ul li a {
  font-size: 1rem;
  line-height: 1.0000rem;
  letter-spacing: 0.05em;
  font-feature-settings: "kern" off;
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
}
.mod-header .menurightbox .mainnav .servicelinks ul li a.dropdown-toggle::after {
  display: inline-block;
  margin-left: 8px;
  vertical-align: 0.255em;
  content: "";
  border-top: 8px solid;
  border-right: 5px solid transparent;
  border-bottom: 0;
  border-left: 5px solid transparent;
  top: 2px;
  position: relative;
}
.mod-header .menurightbox .mainnav .servicelinks ul li a .mobile {
  display: none;
}
@media (max-width: 991.98px) {
  .mod-header .menurightbox .mainnav .servicelinks ul li a .mobile {
    display: inline-block;
    font-size: 0.8750rem;
    line-height: 0.8750rem;
  }
}
.mod-header .menurightbox .mainnav .servicelinks ul li a .language {
  display: inline-block;
}
@media (max-width: 991.98px) {
  .mod-header .menurightbox .mainnav .servicelinks ul li a .language {
    display: none;
  }
}
.mod-header .menurightbox .mainnav .servicelinks ul li.show .dropdown-menu.show {
  max-width: 3.2em;
}
.mod-header .menurightbox .mainnav .servicelinks ul li.show .dropdown-item {
  background: #E5E5E5 !important;
  max-width: 3.7em;
}
.mod-header .menurightbox .mainnav .servicelinks .dropdown-menu {
  min-width: 4em;
  padding: 0;
  top: auto;
  border: none;
  padding: 0;
  background: none;
}
.mod-header .menurightbox .mainnav .servicelinks .dropdown-menu .dropdown-item {
  border: 0;
  padding: 0;
  padding-top: 10px;
}
.mod-header .menurightbox .mainnav .servicelinks .dropdown-menu .dropdown-item:hover {
  background-color: transparent;
  color: #0171CF;
}
.mod-header .menurightbox .mainnav__menu {
  position: relative;
  height: 100vh;
  padding-top: 15vh;
}
@media (max-width: 991.98px) {
  .mod-header .menurightbox .mainnav__menu {
    padding-top: 15vh;
    height: 86vh;
  }
}
.mod-header .menurightbox .mainnav__l1 {
  width: 33%;
  background-color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid transparent;
  border-top: 2px solid transparent;
  font-size: 1rem;
  z-index: 21;
  transition: border-color 0.3s linear;
}
@media (min-width: 769px) {
  .mod-header .menurightbox .mainnav__l1:hover a.mainnav__l1__link {
    color: #0171CF;
  }
}
.mod-header .menurightbox .mainnav__l1 a.mainnav__l1__link {
  color: #707070;
  font-size: 1.5000rem;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
.mod-header .menurightbox .mainnav__l1 a.mainnav__l1__link:hover {
  color: #0171CF;
  font-weight: 700;
}
@media (max-width: 991.98px) {
  .mod-header .menurightbox .mainnav__l1 a.mainnav__l1__link {
    font-weight: 500;
    font-size: 1.1250rem;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding-right: 20px;
  }
}
.mod-header .menurightbox .mainnav__l1.mainnav__submenu--hover {
  border-bottom: 2px solid #0171CF;
}
@media (max-width: 991.98px) {
  .mod-header .menurightbox .mainnav__l1.mainnav__submenu--hover {
    border-bottom: 2px solid #fff;
  }
}
@media (max-width: 991.98px) {
  .mod-header .menurightbox .mainnav__l1 {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.mod-header .menurightbox .mainnav__l1.collapse-show .mainnav__l1__link {
  color: #0171CF !important;
}
.mod-header .menurightbox .mainnav__l2 {
  font-size: 1rem;
}
@media (min-width: 769px) {
  .mod-header .menurightbox .mainnav__l2:hover a.mainnav__l2__link {
    color: #0171CF;
  }
}
.mod-header .menurightbox .mainnav__l2 a.mainnav__l2__link {
  padding-top: 10px;
  padding-bottom: 8px;
  color: #707070;
  font-size: 1.1250rem;
  text-transform: uppercase;
  font-weight: 400;
  display: block;
  position: relative;
  padding-left: 40px;
}
@media (max-width: 991.98px) {
  .mod-header .menurightbox .mainnav__l2 a.mainnav__l2__link {
    padding-left: 10px;
    font-size: 1.1250rem;
  }
}
.mod-header .menurightbox .mainnav__l2 a.mainnav__l2__link:hover {
  color: #0171CF;
}
@media (min-width: 769px) {
  .mod-header .menurightbox .mainnav__l2 a.mainnav__l2__link--hover {
    color: #0171CF;
  }
}
.mod-header .menurightbox .mainnav__l2 a.mainnav__l2__link--hover::after {
  content: " ";
  display: block;
  left: 40px;
  bottom: 0;
  position: absolute;
  height: 2px;
  width: calc(100% - 40px);
  background-color: #0171CF;
}
@media (max-width: 991.98px) {
  .mod-header .menurightbox .mainnav__l2 a.mainnav__l2__link--hover::after {
    background-color: #fff;
  }
}
@media (max-width: 991.98px) {
  .mod-header .menurightbox .mainnav__l2 a.mainnav__l2__link {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding-right: 20px;
  }
}
.mod-header .menurightbox .mainnav__l2.collapse-show .mainnav__l2__link {
  color: #0171CF !important;
}
.mod-header .menurightbox .mainnav__l3 {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 1rem;
}
.mod-header .menurightbox .mainnav__l3 a {
  color: #707070;
  font-family: #000;
  font-size: 1.2500rem;
  text-transform: none;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .mod-header .menurightbox .mainnav__l3 a {
    font-size: 1rem;
  }
}
.mod-header .menurightbox .mainnav__menu__l2 {
  padding-top: 10vh;
  padding-left: 0px;
  position: absolute;
  z-index: -1;
  width: 33%;
  top: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
}
.mod-header .menurightbox .mainnav__menu__l2--active {
  opacity: 1;
  z-index: auto;
  top: 0;
  left: 33%;
  background-color: rgba(242, 241, 241, 0.5);
}
@media (max-width: 991.98px) {
  .mod-header .menurightbox .mainnav__menu__l2 {
    position: relative;
    width: 100%;
    top: auto;
    left: auto;
    bottom: auto;
    padding-top: 0px;
    z-index: auto;
    opacity: 1;
    margin-top: 10px;
  }
  .mod-header .menurightbox .mainnav__menu__l2--active {
    background-color: #fff;
    left: auto;
  }
}
.mod-header .menurightbox .mainnav__menu__l3 {
  padding-top: 4vh;
  padding-left: 40px;
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 0;
  left: 0;
  padding-bottom: 10px;
  opacity: 0;
}
.mod-header .menurightbox .mainnav__menu__l3 a.mainnav__l3__link:hover {
  color: #0171CF;
}
.mod-header .menurightbox .mainnav__menu__l3--active {
  opacity: 1;
  z-index: auto;
  top: -40px;
  left: 100%;
  background-color: #F2F1F1;
  position: relative;
  padding-top: 0px;
}

@media (max-width: 991.98px) {

  .mainnav__12 .havesubmenu .mainnav__submenu--hover {
    margin-bottom: -180px;
  }

  .mod-header .menurightbox .mainnav__menu__l3 {
    position: relative;
    width: 100%;
    top: auto;
    left: auto;
    bottom: auto;
    padding-top: 0px;
    z-index: auto;
    opacity: 1;
    padding-left: 26px;
    margin-bottom: 10px;
  }
  .mod-header .menurightbox .mainnav__menu__l3--active {
    background-color: #fff;
    left: auto;
  }
}

body.mainmenu-opened {
  overflow: hidden !important;
}
@media (max-width: 991.98px) {
  body.mainmenu-opened {
    padding-right: 0;
  }
}
body.mainmenu-opened .mod-header .main-logo {
  max-height: 60px;
  background: #fff;
}
body.mainmenu-opened .mod-pre-header {
  display: none;
}
body.mainmenu-opened .mainnav {
  transform: none !important;
  z-index: 99;
  display: block !important;
}
@media (max-width: 991.98px) {
  body.mainmenu-opened .mainnav .container {
    overflow-y: auto;
    height: calc(100vh - 10px);
  }
}
@media (max-width: 991.98px) {
  body.mainmenu-opened .mainnav::after {
    content: " ";
    display: block;
    z-index: 0;
    width: 100vw;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0.8631827731) 63%, rgba(255, 255, 255, 0) 100%);
  }
}
body.mainmenu-opened .mainmenutoggler {
  z-index: 1200;
  background: url("../../../content/dam/itaspa/imgheader/images/close-ico.svg") no-repeat center !important;
  background-size: 32px !important;
  background-color: transparent !important;
  border-radius: 100%;
}
body.mainmenu-opened .mainmenutoggler__notify {
  transform: translateY(-20px) translateX(22px) !important;
  opacity: 0;
}
@media (max-width: 991.98px) {
  body.mainmenu-opened .mainmenutoggler {
    margin-right: 10px;
  }
}
body.mainmenu-opened .logobox {
  z-index: 100;
}

.col-12--mainnav {
  padding-right: 60px;
}
@media (max-width: 991.98px) {
  .col-12--mainnav {
    padding-top: 46px;
    padding-right: 10px;
  }
}

@media (max-width: 991.98px) {
  body.mainmenu-opened .main-navigation {
    padding-top: 20px;
  }
}

.mainnav__l1__link {
  position: relative;
  width: 100%;
  height: 100%;
  padding-right: 80px;
  display: block;
  position: relative;
}

.sublevel-control--l1 {
  display: block;
  width: 24px;
  height: 24px;
  float: right;
  position: relative;
  margin-left: 0;
  margin-top: -26px;
  cursor: pointer;
  text-align: center;
  font-size: 1.5000rem;
  line-height: 1.5000rem;
  background: #fff url("../../../content/dam/itaspa/imgheader/images/grey-chevron.svg") no-repeat center !important;
}
@media (max-width: 991.98px) {
  .sublevel-control--l1 {
    background: #fff url("../../../content/dam/itaspa/imgheader/images/menu-mobile-arrow-black.svg") no-repeat center !important;
    text-indent: -9999px;
    margin-right: 10px;
  }
  .sublevel-control--l1[aria-expanded=true] {
    background-image: url("../../../content/dam/itaspa/imgheader/images/menu-mobile-arrow-green.svg") !important;
  }
}

.sublevel-control--l2 {
  display: block;
  width: 24px;
  height: 24px;
  float: right;
  position: relative;
  margin-left: 0;
  margin-top: -36px;
  cursor: pointer;
  text-align: center;
  font-size: 1.5000rem
  line-height: 1.5000rem;
}
@media (max-width: 991.98px) {
  .sublevel-control--l2 {
    background: #fff url("../../../content/dam/itaspa/imgheader/images/menu-mobile-arrow-black.svg") no-repeat center !important;
    background-size: 70% !important;
    text-indent: -9999px;
    margin-right: 10px;
  }
  .sublevel-control--l2[aria-expanded=true] {
    background-image: url("../../../content/dam/itaspa/imgheader/images/menu-mobile-arrow-green.svg") !important;
  }
}

@media (min-width: 992px) {
  .collapse.dont-collapse-lg {
    display: block;
    height: auto !important;
    visibility: visible;
  }
}
.mod-header .flight-search-section .red-block a {
  padding-right: 70px;
}

.mod-header .flight-search-section .black-block a {
  padding-right: 70px;
}

@media (max-width: 991.98px) {
  .mod-header .flight-search-section .red-block a {
    height: 160px;
    font-size: 0.8750rem;
  }
}
.mod-header .main-logo {
  max-height: 76px;
  transition: max-height 0.3s ease-in-out;
}

/*START HP RED BLOCKS FIX @mobile*/
@media (max-width: 991.98px) {
  .mod-header .flight-search-section .red-block a {
    min-height: 160px;
  }

  .mod-header .red-block .slick-track {
    display: -ms-flexbox;
    display: flex;
  }

  .mod-header .red-block .slick-track .slick-slide {
    height: inherit !important;
  }
}
/*END HP RED BLOCKS FIX @mobile*/
.sticky {
  position: fixed;
  background: rgba(255, 255, 255, 0.9);
  top: 0;
  z-index: 99;
  width: 100%;
  height: 119px;
  min-height: auto;
  border: none;
  animation: slide-down 0.5s;
}
@media (max-width: 991.98px) {
  .sticky {
    height: 77px;
    background: #fff;
  }
}
.sticky .mod-pre-header, .sticky .flight-search-section {
  display: none !important;
}
.sticky .logobox {
  margin-top: 20px;
}
.sticky .logobox img {
  transition: all 0.5s ease-in;
}
@media (max-width: 991.98px) {
  .sticky .logobox img {
    height: 50px !important;
    width: auto;
    max-width: 100% !important;
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 0.9;
    transform: translateY(0);
  }
}
.usermenuboxmobile {
  height: 100px;
  display: none;
}
@media (max-width: 991.98px) {
  .usermenuboxmobile {
    display: block;
  }
}
.usermenuboxmobile .usermenubox {
  margin-right: 10px;
  margin-left: 15px;
}
.usermenuboxmobile .usermenubox__link {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  color: #000;
  font-family: Lato;
  text-transform: uppercase;
  font-size: 0.8750rem;
  line-height: 0.8750rem;
}
.usermenuboxmobile .usermenubox__link--signin::after {
  content: " /";
  display: inline-block;
  margin-left: 4px;
  font-size: 0.8750rem;
  font-family: Lato;
  margin-top: -4px;
}
.usermenuboxmobile .usermenubox__text {
  cursor: pointer;
  height: 18px;
}
.usermenuboxmobile .usermenubox__icon {
  width: 18px;
  height: 18px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 5px;
  background: url("../../../content/dam/itaspa/imgheader/images/user-ico.svg") no-repeat center;
  background-size: 18px;
  position: absolute;
  top: 13px;
  left: auto;
  width: 60px;
  height: 60px;
  right: 80px;
}
.usermenuboxmobile .usermenubox__icon--logout {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 5px;
  background: url("../../../content/dam/itaspa/imgheader/images/logout-ico.svg") no-repeat center;
  vertical-align: text-bottom;
}
@media (max-width: 768.98px) {
  .usermenuboxmobile .usermenubox {
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */

/*START 11-10 header2 overrides*/

/*HP header main menu */

@media screen and (min-width:1008px) and (max-width:1440px){
  .main-header .main-navigation  .main-menu{
    justify-content: space-evenly;
    width: 100%!important;
    }
}

/*bullets on offcanvas menu L2 items*/
a.mainnav__l2__link::before{
  content:"•";
  position: absolute;
  left: 24px;
}
@media (max-width: 800px){
    a.mainnav__l2__link::before{
     content:"•";
     left: 0;
    }
}
/*offcanvas menu add overflow*/
.mod-header .menurightbox .mainnav{
  overflow: auto;
  height: calc(100vh + 16px);
}


/*fix booking panels stacking*/
@media (min-width: 1024px){
  body.mainmenu-opened .section--cerca-volo.on-focus .cerca-volo .tabs-content[data-tabs-content="cerca-volo__widget"] {
      z-index: 97;
  }


}
/*waiting messages style*/
 .waitingPageWrapper__intro{
   text-transform: none;
   color:#000;
  }

  .waitingPageWrapper__introPagamento{
   text-transform: none;

 }

/*Select arrow*/
.customSelect select{
  background-size: 22px!important;
  padding-right: 40px!important;
  background-position: top 15px right 10px!important;
}
.customSelect select::after{
display: none;
}

/*error messages radius*/
div.genericErrorMessage,
div.continuityWarningMessage{
  border-radius: 16px;
  display:block;
}


/*modal headers titles*/
.modal-header h1,
.modal-header h2,
.modal-header h3,
.modal-header h4,
.modal-header h5{
  color:#0171CF
}


/*international  icon*/
.icon.icon--int{
  vertical-align: top;
  background-size: cover;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MjAiIGhlaWdodD0iNDIwIj4KPHBhdGggc3R5bGU9ImZpbGw6bm9uZTtzdHJva2U6IzA0NzE1NjtzdHJva2Utd2lkdGg6MjA7c3Ryb2tlLW1pdGVybGltaXQ6NDtzdHJva2Utb3BhY2l0eToxO3N0cm9rZS1kYXNoYXJyYXk6bm9uZSIgZD0iTTIyNi4yIDE2LjY1N2E0NzMuOTYgMzMzLjM3OSAwIDAgMSAwIDM4Ny4yMzJNNTkgMzMzLjIxNWEyNjAgMjYwIDAgMCAxIDMwMiAwTTE5Ny4xNzEgMTQuNzk0YTQ3Ny4yNDUgMzM1LjY5IDAgMCAwIDAgMzg5LjkxNk0yMDkgMTVhMTk1IDE5NSAwIDEgMCAyIDB6bTEgMHYzOTBtMTk1LTE5NUgxNU01OSA5Mi42N2EyNjAgMjYwIDAgMCAwIDMwMiAwTTM2MSAzMzAiLz48L3N2Zz4=")
}
.icon-icon-int{
  display: none;
}

/*buttons for international label*/
@media (min-width: 1024px){

  .reveal--language .reveal__content {
      width: 100%;
  }

  .reveal--language .shortcut-wrap {
    width: auto;
   }
  .reveal--language .shortcut-wrap .shortcut{
    padding-left: 32px;
    padding-right: 32px;
   }
}

@media (max-width: 600px){
  .reveal--language .shortcut-wrap {
    width: 100%;
   }
}



/*END 11-10 header2 overrides*/


.titoloh3 {
    text-transform: uppercase;
    font-size: 1.25rem;
    color: #E5E5E5;
    font-family: Lato;
}

.titoloh4 {
    text-transform: uppercase;
    font-size: 1rem;
    color: #E5E5E5;
    font-family: Lato;
}

.icon-icon-reverse-green:before {
  content: "";
  background: url("../../../content/dam/itaspa/imgheader/images/andata-ritorno.svg") no-repeat center;
  width: 50px;
  height: 50px;
  display: block;
  margin: 0;
  border-radius: 100% !important;
  background-color: #e9eff6 !important;
  transform: rotate(90deg);
}

.icon-icon-reverse-green-mobile{
  display: none;
}

@media only screen and (max-width: 450px) and (min-width:200px){

  .icon-icon-reverse-green-mobile::before {
    content: "";
    background: url("../../../content/dam/itaspa/imgheader/images/andata-ritorno.svg") no-repeat center;
    width: 50px;
    height: 50px;
    display: block;
    margin: 0;
    border-radius: 100% !important;
    background-color: #e9eff6 !important;
    transform: rotate(180deg);
  }

  .icon-icon-reverse-green{
    display: none;
  }

  .icon-icon-reverse-green-mobile{
    display: block;
  }

}

.input-reset {
    width: 20px;
    height: 20px;
    position: relative;
    opacity: 0.5;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    right: calc(100% / 19.5);
    border: none;
    background-color: transparent;
    cursor: none !important;
    box-shadow: inset 0 1px 3px transparent, 0 0 8px transparent !important;
    transition: none;
  }

  .input-reset-bg{
    background-image: url("../../../content/dam/itaspa/assets/icons/brand/ic_20_cancel.png");
    cursor: pointer !important;
  }

