/****************************************************************/
/****************************************************************/
/* Styles go here */
.prep-drawer {
  will-change: all;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  overflow: hidden;
  z-index: 10;
}
.prep-drawer.drawer-open {
  will-change: all;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-bottom: 0;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.animate-show {
  -webkit-transition: max-height ease-out 0.5s;
  transition: max-height ease-out 0.5s;
  background: white;
  /* This is a wild guess of the height of the element
     Needs to be in the ballpark of the actual content height,
     but slightly larger.
     Change to, e.g., 30px and 300px to see what happens */
  max-height: 150px;
}
.animate-show.ng-hide {
  /* Animate max height*/
  max-height: 0;
}
.animate-show.ng-hide-add,
.animate-show.ng-hide-remove {
  /* Needed to override display:none which cannot be animated */
  display: block!important;
  overflow-y: hidden;
}
/**
 * To demonstrate which classes are added and when
 */
/* Styles go here */
.animate-show {
  -webkit-transition: max-height ease-out 0.5s;
  transition: max-height ease-out 0.5s;
  background: white;
  /* This is a wild guess of the height of the element
     Needs to be in the ballpark of the actual content height,
     but slightly larger.
     Change to, e.g., 30px and 300px to see what happens */
  max-height: 150px;
}
.animate-show.ng-hide {
  /* Animate max height*/
  max-height: 0;
}
.animate-show.ng-hide-add,
.animate-show.ng-hide-remove {
  /* Needed to override display:none which cannot be animated */
  display: block!important;
  overflow-y: hidden;
}
/**
 * To demonstrate which classes are added and when
 */
.fade-prep {
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  will-change: all;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transform: translateZ(0);
}
.fade-next,
.fade-prev {
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.fade-next {
  -webkit-transform: translateX(5em);
  -ms-transform: translateX(5em);
  transform: translateX(5em);
}
.fade-prev {
  -webkit-transform: translateX(-5em);
  -ms-transform: translateX(-5em);
  transform: translateX(-5em);
}
.animate-min-height {
  will-change: min-height;
  -webkit-transition: min-height 0.5s ease;
  -moz-transition: min-height 0.5s ease;
  -o-transition: min-height 0.5s ease;
  -ms-transition: min-height 0.5s ease;
  transition: min-height 0.5s ease;
}
.fade-in-right > *,
.fade-out-right > *,
.fade-in-left > *,
.fade-out-left > * {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.fade-in-right > *,
.fade-out-right > * {
  -webkit-animation-name: fade-right;
  animation-name: fade-right;
}
.fade-out-right {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.fade-in-left > *,
.fade-out-left > * {
  -webkit-animation-name: fade-left;
  animation-name: fade-left;
}
.fade-out-left {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
@keyframes fade-left {
  0% {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-5em, 0);
    -ms-transform: translate(-5em, 0);
    transform: translate(-5em, 0);
    opacity: 0;
  }
}
@-webkit-keyframes fade-left {
  0% {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-5em, 0);
    -ms-transform: translate(-5em, 0);
    transform: translate(-5em, 0);
    opacity: 0;
  }
}
@keyframes fade-right {
  0% {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(5em, 0);
    -ms-transform: translate(5em, 0);
    transform: translate(5em, 0);
    opacity: 0;
  }
}
@-webkit-keyframes fade-right {
  0% {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(5em, 0);
    -ms-transform: translate(5em, 0);
    transform: translate(5em, 0);
    opacity: 0;
  }
}
@-webkit-keyframes wave {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes rotating-rev {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotating-rev {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotating-plane {
  0% {
    -webkit-transform: rotate(-45deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(45deg);
    opacity: 0;
  }
}
@keyframes rotating-plane {
  0% {
    transform: rotate(-45deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: rotate(45deg);
    opacity: 0;
  }
}
@-webkit-keyframes icon-array {
  2% {
    opacity: 0;
    -webkit-transform: scale(1);
  }
  3% {
    opacity: 1;
    -webkit-transform: scale(0.9);
  }
  9% {
    opacity: 1;
    -webkit-transform: scale(0.9);
  }
  10% {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-webkit-keyframes fly {
  0% {
    -webkit-transform: rotateX(0deg) translateZ(2em) perspective(2000);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotateX(360deg) translateZ(2em) perspective(2000);
    opacity: 1;
  }
}
@-webkit-keyframes fly-two {
  0% {
    -webkit-transform: rotateZ(30deg) rotateX(0deg) translateZ(2em) perspective(2000);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotateZ(30deg) rotateX(360deg) translateZ(2em) perspective(2000);
    opacity: 1;
  }
}
@-webkit-keyframes fly-three {
  0% {
    -webkit-transform: rotateZ(60deg) rotateX(0deg) translateZ(2em) perspective(2000);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotateZ(60deg) rotateX(360deg) translateZ(2em) perspective(2000);
    opacity: 1;
  }
}
@-webkit-keyframes fly-four {
  0% {
    -webkit-transform: rotateZ(90deg) rotateX(0deg) translateZ(2em) perspective(2000);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotateZ(90deg) rotateX(360deg) translateZ(2em) perspective(2000);
    opacity: 1;
  }
}
@-webkit-keyframes fly-five {
  0% {
    -webkit-transform: rotateZ(120deg) rotateX(0deg) translateZ(2em) perspective(2000);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotateZ(120deg) rotateX(360deg) translateZ(2em) perspective(2000);
    opacity: 1;
  }
}
@-webkit-keyframes fly-six {
  0% {
    -webkit-transform: rotateZ(150deg) rotateX(0deg) translateZ(2em) perspective(2000);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotateZ(150deg) rotateX(360deg) translateZ(2em) perspective(2000);
    opacity: 1;
  }
}
@-webkit-keyframes fly-seven {
  0% {
    -webkit-transform: rotateZ(180deg) rotateX(0deg) translateZ(2em) perspective(2000);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotateZ(180deg) rotateX(360deg) translateZ(2em) perspective(2000);
    opacity: 1;
  }
}
@-webkit-keyframes fly-eight {
  0% {
    -webkit-transform: rotateZ(210deg) rotateX(0deg) translateZ(2em) perspective(2000);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotateZ(210deg) rotateX(360deg) translateZ(2em) perspective(2000);
    opacity: 1;
  }
}
@-webkit-keyframes fly-nine {
  0% {
    -webkit-transform: rotateZ(240deg) rotateX(0deg) translateZ(2em) perspective(2000);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotateZ(240deg) rotateX(360deg) translateZ(2em) perspective(2000);
    opacity: 1;
  }
}
@-webkit-keyframes fly-ten {
  0% {
    -webkit-transform: rotateZ(270deg) rotateX(0deg) translateZ(2em) perspective(2000);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotateZ(270deg) rotateX(360deg) translateZ(2em) perspective(2000);
    opacity: 1;
  }
}
@-webkit-keyframes fly-eleven {
  0% {
    -webkit-transform: rotateZ(300deg) rotateX(0deg) translateZ(2em) perspective(2000);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotateZ(300deg) rotateX(360deg) translateZ(2em) perspective(2000);
  }
}
@-webkit-keyframes throb {
  0% {
    -webkit-transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.2);
  }
  15% {
    -webkit-transform: scale(0.9);
  }
  19% {
    -webkit-transform: scale(1.15);
  }
  23% {
    -webkit-transform: scale(0.95);
  }
  27% {
    -webkit-transform: scale(1.1);
  }
  30% {
    -webkit-transform: scale(0.975);
  }
  33% {
    -webkit-transform: scale(1.05);
  }
  35% {
    -webkit-transform: scale(0.985);
  }
  37% {
    -webkit-transform: scale(1.025);
  }
  39% {
    -webkit-transform: scale(0.99);
  }
  41% {
    -webkit-transform: scale(1);
  }
}
@keyframes throb {
  0% {
    -ms-transform: scale(1);
    transform: scale(1);
  }
  80% {
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.label {
  behavior: url(/resources/pie/PIE.htc);
}
.labelDark {
  behavior: url(/resources/pie/PIE.htc);
}
.circle {
  behavior: url(/resources/pie/PIE.htc);
}
.button-orange,
.button-shamrock-green {
  behavior: url(/resources/pie/PIE.htc);
}
.button-standard {
  min-width: 86px;
  behavior: url(/resources/pie/PIE.htc);
}
.button-orange-gradient {
  -ms-filter: "progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#ff6600,EndColorStr=#ff6600)";
}
.button-orange-gradient:hover,
.button-orange-gradient:focus {
  -ms-filter: "progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#fab156,EndColorStr=#fab156)";
}
.button-orange-gradient:active {
  -ms-filter: "progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#ff6600,EndColorStr=#ff6600)";
}
.button-action1 .icon-plus,
.button-action1 .icon-checked {
  top: -50%;
}
.button-action1 .icon-checked {
  top: 50%;
}
.button-action1.clicked .icon-plus {
  top: -150%;
}
.button-action1.clicked .icon-checked {
  top: -50%;
}
.button-price .icon {
  top: 2em;
}
.button-price .icon.icon-cross {
  top: .4em;
}
.button-price.complete .icon {
  top: -2em;
}
.button-price.complete .icon.icon-ok {
  top: .4em;
}
.form-style-1 fieldset {
  behavior: url(/resources/pie/PIE.htc);
  overflow: hidden;
}
.form-style-1 fieldset .left-panel {
  behavior: url(/resources/pie/PIE.htc);
  border-radius: 8px 0 0 8px;
}
.form-style-1 fieldset .right-panel {
  behavior: url(/resources/pie/PIE.htc);
  border-radius: 0 8px 8px 0;
}
.form-style-2 fieldset {
  behavior: url(/resources/pie/PIE.htc);
}
/*Custom arrow */
.select-wrpr .selectArrow {
  display: none;
}
.checkbox-out .checkbox {
  display: none;
}
.checkbox-out input[type=checkbox] {
  display: inline-block !important;
  visibility: visible !important;
}
.message-with-arrow:after {
  display: none;
}
.etc-placeholder {
  behavior: url(/resources/pie/PIE.htc);
}
.item-card .item-img-cont img {
  behavior: url(/resources/pie/PIE.htc);
}
.dashed-box {
  behavior: url(/resources/pie/PIE.htc);
}
.sub-grid-hdr,
.outer-box-radius {
  -ms-filter: "progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#FFFFFF,EndColorStr=#efefef)";
}
.sub-grid-hdr.gray-11,
.outer-box-radius.gray-11 {
  -ms-filter: "progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#f1f1f1,EndColorStr=#f1f1f1)";
}
.sub-grid-hdr.gray-0,
.outer-box-radius.gray-0 {
  -ms-filter: "progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#ffffff,EndColorStr=#ffffff)";
}
/*Grids Related Fixes for IE8	*/
.grid-image {
  -ms-behavior: url(/scripts/common/backgroundsize.min.htc);
}
.short-des-in:before {
  background: #000000;
  /*background:url(../images/bg-black.png) top left repeat;*/
}
.flight-details.less-opacity {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
}
.column-list.less-opacity {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
}
.centered.less-opacity {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
}
.top-margin-std {
  margin-top: 10px;
}
.grid-wrapper1 .grid-item-cont {
  -ms-behavior: url(/scripts/common/backgroundsize.min.htc);
}
.grid-wrapper1 .interactive.selected-state .img-mask {
  -pie-background: rgba(0, 98, 87, 0.6);
  zoom: 1;
  behavior: url(/resources/pie/PIE.htc);
}
.booker-bar .icon-left input,
.booker-bar .icon-left button {
  padding: 14px 0 8px 40px;
}
.booker-bar .icon-left .badge-text {
  behavior: url(/resources/pie/PIE.htc);
}
.route-finder-wrapper .theme {
  -pie-background: rgba(0, 0, 0, 0.3);
  zoom: 1;
  behavior: url(/resources/pie/PIE.htc);
}
.bbar-route-finder {
  -pie-background: rgba(0, 0, 0, 0.3);
  zoom: 1;
  behavior: url(/resources/pie/PIE.htc);
}
.bbar-route-finder .input-wrap {
  behavior: url(/resources/pie/PIE.htc);
}
.bbar-route-finder .btn {
  -pie-background: linear-gradient(#89ba16, #9cc53b);
  behavior: url(/resources/pie/PIE.htc);
}
.route-finder-wrapper .label-placeholder-wrap {
  position: relative;
}
.route-finder-wrapper .label-placeholder-wrap .ei-placeholder-text {
  display: inline-block;
  position: absolute;
  font-weight: bold;
  color: #999;
  cursor: text;
  top: -2px;
  left: 101%;
}
.route-finder-wrapper .extra-options .promocode,
.route-finder-wrapper .other-options .promocode {
  position: relative;
}
.route-finder-wrapper .extra-options .promocode .ei-placeholder-text,
.route-finder-wrapper .other-options .promocode .ei-placeholder-text {
  display: inline-block;
  position: absolute;
  cursor: text;
  left: 40px;
  top: 13px;
  color: #999;
}
.route-finder-wrapper .extra-options .promocode.focused .ei-placeholder-text,
.route-finder-wrapper .other-options .promocode.focused .ei-placeholder-text {
  color: #fff;
}
.trip-switch li {
  behavior: url(/resources/pie/PIE.htc);
}
.discovery .scroller .button,
.filter-options .al-icon-wrapper,
.loading-icon {
  zoom: 1;
  position: relative;
  behavior: url(/resources/pie/PIE.php);
}
.al-icon,
[data-icon]:before {
  font-family: "aer-lingus-icons-p1", "aer-lingus-icons-p2", "aer-lingus-icons-last", "aer-lingus-icons-old-p1", "aer-lingus-icons-old-p2", "aer-lingus-icons-old-last", sans-serif !important;
}
[data-icon] {
  font-family: "cartogothic_pro_lightregular", Georgia, "Times New Roman", Times, serif;
  font-weight: normal;
}
/* Hardcoded styles */
[data-icon].exp_1:before {
  content: '\F019';
}
[data-icon].exp_2:before {
  content: '\F01b';
}
[data-icon].exp_3:before {
  content: '\F020';
}
[data-icon].exp_4:before {
  content: '\F01f';
}
[data-icon].exp_5:before {
  content: '\F01d';
}
[data-icon].exp_6:before {
  content: '\F059';
}
[data-icon].exp_7:before {
  content: '\F023';
}
[data-icon].exp_8:before {
  content: '\F025';
}
[data-icon].exp_9:before {
  content: '\F022';
}
[data-icon].exp_10:before {
  content: '\F027';
}
[data-icon].exp_doandsee:before {
  content: '\F01a';
}
[data-icon].exp_dining:before {
  content: '\F027';
}
[data-icon].exp_cafe:before {
  content: '\F00e';
}
[data-icon].exp_nightlife:before {
  content: '\F023';
}
[data-icon].exp_shopping:before {
  content: '\F022';
}
[data-icon].exp_accomodation:before {
  content: '\F008';
}
.ff-inbound-charts .month-barchart .chart-bar .active {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}
.month-barchart .chart-bar .active:before {
  font-family: "aer-lingus-icons-p1", "aer-lingus-icons-p2", "aer-lingus-icons-last", "aer-lingus-icons-old-p1", "aer-lingus-icons-old-p2", "aer-lingus-icons-old-last", sans-serif !important;
}
.explore-route-finder .options-wrapper .trip-options .checkbox-out label {
  margin-top: -1px;
  padding-top: 0;
}
.explore-route-finder .options-wrapper .trip-options .checkbox-out input {
  margin-right: 5px;
}
.destination-wrapper .trip-summary .flight-details .flight-price .close {
  font-size: 0.6em;
}
.destination-wrapper nav li {
  margin-left: 3px;
}
.column-list dl dt {
  display: table-cell;
  float: none;
  height: 100%;
  vertical-align: middle;
  padding-bottom: 17px;
}
.column-list dt span {
  display: inline;
  vertical-align: baseline;
}
.ff-error-block .icon-out .icon {
  top: 10px;
  left: 3px;
}
.svg-out .glyphicon {
  display: inline-block !important;
  color: #fff !important;
  top: -1px;
}
.discovery .circle,
.discovery .button-orange,
.discovery .button-shamrock-green,
.discovery .button-standard {
  behavior: none;
}
.explore-route-finder .calendar-dropdown {
  max-width: none;
  width: 950px;
}
@media (max-width: 990px) {
  .explore-route-finder .calendar-dropdown {
    width: 757px;
  }
}
/*
-------------------------------------------------
passanger info CSS start
-------------------------------------------------
*/
/*
-------------------------------------------------
passanger info CSS End
-------------------------------------------------
*/
.redress-expand {
  behavior: url(/resources/pie/PIE.htc);
  border-radius: 0 0 8px 8px;
}
/*
-------------------------------------------------
User Profile info CSS start
-------------------------------------------------
*/
.no-fav {
  behavior: url(/resources/pie/PIE.htc);
}
.time-line .time-pill-cont .time-pill {
  border: 2px solid #80c1ba;
}
.time-line .time-pill-cont .time-pill.grey-border {
  border: 2px solid #e5e5e5;
}
.pagination li .interactive {
  behavior: url(/resources/pie/PIE.htc);
}
/*
-------------------------------------------------
User Profile info CSS End
-------------------------------------------------
*/
/* tealGreen */
/*Red*/
/* shamrockGreen */
/* deepBlue */
/* skyBlue */
/* orange */
/*Red*/
/* purple */
#map_canvas .infoBox .flightInfo:before {
  display: none;
}
.content-page-nav:hover:after,
.content-page-nav:focus:after {
  bottom: -0.5em;
}
.content-page-nav.active:after {
  bottom: 0;
}
/****************************************************************/
.svg-out .glyphicon {
  display: inline-block;
}
.rotate-null {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
}
.rotate-right {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}
.rotate-down {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}
.rotate-left {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
.shadow-border {
  behavior: url(/resources/pie/PIE.htc);
}
.logo-out {
  background-image: url(../images/logo_aerlingus.png);
  background-position: center;
  background-repeat: no-repeat;
}
/* slider overrides for home page */
#slides-controller .left.carousel-control,
#slides-controller .right.carousel-control {
  z-index: 9;
}
#slides-controller .carousel-control,
#slides-controller .carousel-control span {
  background: #ffffff;
  filter: alpha(opacity=00);
}
#slides_control.relative .carousel-indicators {
  margin-bottom: 120px;
}
#slides_control.relative .carousel-indicators li {
  background: transparent;
}
#slides_control.relative .carousel-indicators li.active {
  background: #fff;
}
