@charset "UTF-8";
/* ---------- Import variables ---------- */
/* Layout */
/**
 * Jeet grid settings.
 */
/**
 * Breakpoints - Breakpoint slicer
 * https://github.com/lolmaus/breakpoint-slicer
 */
/* Colors */
/* Greys */
/* Elements */
/* Borders */
/* Links */
/* Font stuff */
/* Magic numbers */
/* ---------- Import grid system ---------- */
/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 *  Alias for edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Uncenter an element.
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Unstack an element.
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/* ---------- Import base ---------- */
/*  Better box model */
@import url(../fonts/fonts.css);
/* line 13, ../sass/base/_normalize.scss */
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 21, ../sass/base/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

/* line 37, ../sass/base/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
}

/* line 46, ../sass/base/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* line 56, ../sass/base/_normalize.scss */
[hidden], template {
  display: none;
}

/* line 69, ../sass/base/_normalize.scss */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* line 76, ../sass/base/_normalize.scss */
html,
button,
input,
select,
textarea {
  font-family: "Fira Sans", Helvetica, Arial, sans-serif;
}

/* line 86, ../sass/base/_normalize.scss */
body {
  margin: 0;
}

/* line 99, ../sass/base/_normalize.scss */
a {
  background: transparent;
}
/* line 104, ../sass/base/_normalize.scss */
a:focus {
  outline: thin dotted;
}
/* line 109, ../sass/base/_normalize.scss */
a:hover, a:active {
  outline: 0;
}

/* line 117, ../sass/base/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* line 123, ../sass/base/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/* line 130, ../sass/base/_normalize.scss */
dfn {
  font-style: italic;
}

/* line 136, ../sass/base/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* line 144, ../sass/base/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 24;
}

/* line 154, ../sass/base/_normalize.scss */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* line 162, ../sass/base/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/* line 167, ../sass/base/_normalize.scss */
q:before,
q:after {
  content: '';
  content: none;
}

/* line 175, ../sass/base/_normalize.scss */
small {
  font-size: 80%;
}

/* line 182, ../sass/base/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 190, ../sass/base/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 194, ../sass/base/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* Base responsive images */
/* line 207, ../sass/base/_normalize.scss */
img {
  height: auto;
  max-width: 100%;
  border: 0;
}

/* line 215, ../sass/base/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* line 225, ../sass/base/_normalize.scss */
figure {
  margin: 0;
}

/* line 235, ../sass/base/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/* line 246, ../sass/base/_normalize.scss */
legend {
  border: 0;
  padding: 0;
  white-space: normal;
}

/* line 257, ../sass/base/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
}

/* line 269, ../sass/base/_normalize.scss */
button,
input {
  line-height: normal;
}

/* line 279, ../sass/base/_normalize.scss */
button,
select {
  text-transform: none;
}

/* line 290, ../sass/base/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

/* line 300, ../sass/base/_normalize.scss */
button[disabled],
input[disabled] {
  cursor: default;
}

/* line 308, ../sass/base/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

/* input[type="search"] {
  -webkit-appearance: textfield; // 1
} */
/* input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
} */
/* line 332, ../sass/base/_normalize.scss */
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* line 341, ../sass/base/_normalize.scss */
textarea {
  overflow: auto;
  vertical-align: top;
}

/* line 352, ../sass/base/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * Mixins
 *
 * Snippets of reusable CSS to develop faster and keep code readable
 */
/*
 * ICOFONT
 */
/**
 * Apply a clearfix to an element.
 */
/**
 * Extendables
 *
 * Collect all of your extendable classes, ids and silent extendables.
 */
/* line 18, ../sass/base/_extendables.scss */
.clearfix {
  *zoom: 1;
}
/* line 122, ../sass/base/_mixins.scss */
.clearfix:before, .clearfix:after {
  content: '';
  display: table;
}
/* line 127, ../sass/base/_mixins.scss */
.clearfix:after {
  clear: both;
}

/**
 * Typography
 */
/* line 4, ../sass/base/_typography.scss */
* {
  outline: none !important;
}

/* line 8, ../sass/base/_typography.scss */
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* line 17, ../sass/base/_typography.scss */
html,
button,
input,
select,
textarea {
  font-family: "Fira Sans", Helvetica, Arial, sans-serif;
}

/* line 25, ../sass/base/_typography.scss */
body {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 400;
}

@media (max-width: 768px) {
  /* line 32, ../sass/base/_typography.scss */
  html {
    font-size: 75%;
  }
}
/* line 38, ../sass/base/_typography.scss */
h1 {
  font-size: 72px;
  font-size: 4.5rem;
  color: #003d4d;
  margin: .67em 0;
  font-weight: 500;
  letter-spacing: 1px;
}

/* line 46, ../sass/base/_typography.scss */
h2 {
  font-size: 46px;
  font-size: 2.875rem;
  color: #003d4d;
  margin: .83em 0;
  font-weight: 500;
  letter-spacing: 1px;
}

/* line 54, ../sass/base/_typography.scss */
h3 {
  font-size: 28px;
  font-size: 1.75rem;
  color: #003d4d;
  margin: 1em 0;
  font-weight: 500;
  text-transform: uppercase;
}

/* line 62, ../sass/base/_typography.scss */
h4 {
  font-size: 24px;
  font-size: 1.5rem;
  color: #003d4d;
  margin: 1.33em 0;
}

/* line 68, ../sass/base/_typography.scss */
h5 {
  font-size: 12px;
  font-size: 0.75rem;
  color: #003d4d;
  margin: 1.67em 0;
}

/* line 74, ../sass/base/_typography.scss */
h6 {
  font-size: 12px;
  font-size: 0.75rem;
  color: #003d4d;
  margin: 2.33em 0;
}

/* line 80, ../sass/base/_typography.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* line 84, ../sass/base/_typography.scss */
b, strong {
  font-weight: 700;
}

/* line 88, ../sass/base/_typography.scss */
dfn {
  font-style: italic;
}

/* line 92, ../sass/base/_typography.scss */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  border-top: 1px solid #003d4d;
  border-bottom: 0;
  margin: 80px -500%;
  padding: 0 500%;
}

/* line 102, ../sass/base/_typography.scss */
mark {
  background: #ff0;
  color: #000;
}

/* line 107, ../sass/base/_typography.scss */
p, pre {
  margin: 1.5em 0;
}

/* line 111, ../sass/base/_typography.scss */
code, kbd, pre, samp {
  font-family: monospace,serif;
  font-family: 'courier new',monospace;
  font-size: 24px;
  font-size: 1.5rem;
}

/* line 117, ../sass/base/_typography.scss */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* line 123, ../sass/base/_typography.scss */
q {
  quotes: none;
}

/* line 127, ../sass/base/_typography.scss */
q:before, q:after {
  content: '';
  content: none;
}

/* line 132, ../sass/base/_typography.scss */
small {
  font-size: 22px;
  font-size: 1.375rem;
}

/* line 136, ../sass/base/_typography.scss */
large {
  font-size: 26px;
  font-size: 1.625rem;
}

/* line 140, ../sass/base/_typography.scss */
sub, sup {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 147, ../sass/base/_typography.scss */
sup {
  top: -.5em;
}

/* line 151, ../sass/base/_typography.scss */
sub {
  bottom: -.25em;
}

/* line 155, ../sass/base/_typography.scss */
dl, ol, ul {
  margin: 1.5em 0;
}
/* line 157, ../sass/base/_typography.scss */
dl dl, dl menu, dl ul, ol dl, ol menu, ol ul, ul dl, ul menu, ul ul {
  margin: 0;
}

/* line 162, ../sass/base/_typography.scss */
dd {
  margin: 0 0 0 30px;
}

/* line 166, ../sass/base/_typography.scss */
ul {
  padding: 0 0 0 30px;
  list-style: disc;
}
/* line 169, ../sass/base/_typography.scss */
ul.rteindent1 {
  padding: 0;
}

/* line 174, ../sass/base/_typography.scss */
ol {
  padding: 0 0 0 30px;
  list-style: decimal;
}
/* line 177, ../sass/base/_typography.scss */
ol.rteindent1 {
  padding: 0;
}

/* line 182, ../sass/base/_typography.scss */
ol ol {
  margin: 0;
  list-style: lower-alpha;
}

/* line 187, ../sass/base/_typography.scss */
nav ul, nav ol {
  list-style: none;
  list-style-image: none;
}

/* line 192, ../sass/base/_typography.scss */
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

/* line 197, ../sass/base/_typography.scss */
svg:not(:root) {
  overflow: hidden;
}

/* line 201, ../sass/base/_typography.scss */
figure {
  margin: 0;
}

/* line 205, ../sass/base/_typography.scss */
.ckeditor-accordion {
  border-top: 5px solid #f27c38;
}
/* line 207, ../sass/base/_typography.scss */
.ckeditor-accordion dt {
  outline: 0;
}
/* line 209, ../sass/base/_typography.scss */
.ckeditor-accordion dt a {
  transition: border 3s ease;
  background: transparent;
  border-bottom: 1px solid #aeaeae;
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  font-style: normal;
  padding: 1.5em 1.5em;
}
/* line 217, ../sass/base/_typography.scss */
.ckeditor-accordion dt a:hover {
  background: transparent;
}
/* line 220, ../sass/base/_typography.scss */
.ckeditor-accordion dt a::before {
  display: none;
}
/* line 227, ../sass/base/_typography.scss */
.ckeditor-accordion dt.current a {
  transition: border .1s ease;
  border-bottom: 1px solid transparent;
}
/* line 234, ../sass/base/_typography.scss */
.ckeditor-accordion dd {
  outline: 0;
  padding: 0 1.5em;
  border-bottom: 1px solid #aeaeae;
}

/* line 240, ../sass/base/_typography.scss */
.ckeditor-accordion dt.current a::before {
  display: none;
}

/* ---------- Components ---------- */
@font-face {
  font-family: 'airport';
  src: url("../fonts/airport.eot?bv1sfl");
  src: url("../fonts/airport.eot?bv1sfl#iefix") format("embedded-opentype"), url("../fonts/airport.ttf?bv1sfl") format("truetype"), url("../fonts/airport.woff?bv1sfl") format("woff"), url("../fonts/airport.svg?bv1sfl#airport") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* line 9, ../sass/components/_icons.scss */
.airport-icon, form[class*="search-"] #edit-basic::after,
form#search-block-form #edit-actions::after, .block-airport-table .content .loader i::before, #block-views-alert-block .alert-wrapper [class^='alert-']::before, #block-views-alert-block .alert-wrapper .node-alert .field-name-field-alert-link a::after,
#block-views-alert-block .alert-wrapper .node-alert .node-readmore a::after, span.ext::before, .page-node-157 h2#wifi::after, .help-centre::before, .help-centre::after, .footer-links .block-menu-block::before,
[id^="block-menu-menu-foo-"]::before, .footer-contact .social .twitter::before,
.footer-contact .social .facebook::before, .footer-contact [href^='mailto:']::before,
.footer-contact [href^='tel:']::before,
.footer-contact a.facebook::before,
.footer-contact a.instagram::before,
.footer-contact a.twitter::before, .view-id-news .more-link a::before,
.section-link::before, #node-154 h2#car::before,
#node-154 h2#car2::before,
#node-154 h2#taxi::before,
#node-154 h2#car-rental::before,
#node-154 h2#shuttle-bus::before,
#node-154 h2#shuttle-bus2::before, #block-menu-menu-help #nav-global-search::after, #block-menu-menu-help #nav-help-desk::after, #menu-mobile-menu ul.menu li > a::before, #menu-mobile-menu ul.menu li #mobile-menu-close::after, #mmenu_first [class*="mme-"] a.mm-next::before, .mm-menu #mmenu-help-center::before, #help-centre a::before, #mmenu_second .mm-navbar a::before, #mmenu_second .block.block-menu h2::before, #mmenu_second .block.block-menu ul.menu a::after,
#mmenu_second .block.block-menu ul.menu span::after, #mmenu_second .block-block a[href^="mailto:"]::before,
#mmenu_second .block-block a[href^="tel:"]::before, .desktop-menu [data-block=block--5] .content span::before, #backtotop::before,
[class^="aicon-"], [class*=" aicon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'airport' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@font-face {
  font-family: 'airportcorporate';
  src: url("../fonts/airportcorporate.eot?9oks7s");
  src: url("../fonts/airportcorporate.eot?9oks7s#iefix") format("embedded-opentype"), url("../fonts/airportcorporate.ttf?9oks7s") format("truetype"), url("../fonts/airportcorporate.woff?9oks7s") format("woff"), url("../fonts/airportcorporate.svg?9oks7s#airportcorporate") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* line 33, ../sass/components/_icons.scss */
.corp-icon,
[class^="corp-"], [class*=" corp-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'airportcorporate' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 118, ../sass/components/_icons.scss */
.aicon-link-external:before {
  content: "";
}

/* line 124, ../sass/components/_icons.scss */
.aicon-menu:before {
  content: "";
}

/* line 130, ../sass/components/_icons.scss */
.aicon-help-centre:before {
  content: "";
}

/* line 136, ../sass/components/_icons.scss */
.aicon-mail:before {
  content: "";
}

/* line 142, ../sass/components/_icons.scss */
.aicon-phone:before {
  content: "";
}

/* line 148, ../sass/components/_icons.scss */
.aicon-facebook:before {
  content: "";
}

/* line 154, ../sass/components/_icons.scss */
.aicon-twitter:before {
  content: "";
}

/* line 160, ../sass/components/_icons.scss */
.aicon-airlines:before {
  content: "";
}

/* line 166, ../sass/components/_icons.scss */
.aicon-alert:before {
  content: "";
}

/* line 172, ../sass/components/_icons.scss */
.aicon-animals-and-pets:before {
  content: "";
}

/* line 178, ../sass/components/_icons.scss */
.aicon-arrivals:before {
  content: "";
}

/* line 184, ../sass/components/_icons.scss */
.aicon-arrow:before {
  content: "";
}

/* line 190, ../sass/components/_icons.scss */
.aicon-border-control:before {
  content: "";
}

/* line 196, ../sass/components/_icons.scss */
.aicon-car:before {
  content: "";
}

/* line 202, ../sass/components/_icons.scss */
.aicon-car-rental:before {
  content: "";
}

/* line 208, ../sass/components/_icons.scss */
.aicon-checked-in-baggage:before {
  content: "";
}

/* line 214, ../sass/components/_icons.scss */
.aicon-checkin:before {
  content: "";
}

/* line 220, ../sass/components/_icons.scss */
.aicon-close:before {
  content: "";
}

/* line 226, ../sass/components/_icons.scss */
.aicon-customs:before {
  content: "";
}

/* line 232, ../sass/components/_icons.scss */
.aicon-departures:before {
  content: "";
}

/* line 238, ../sass/components/_icons.scss */
.aicon-drop-off:before {
  content: "";
}

/* line 244, ../sass/components/_icons.scss */
.aicon-duty-free:before {
  content: "";
}

/* line 250, ../sass/components/_icons.scss */
.aicon-facilities:before {
  content: "";
}

/* line 256, ../sass/components/_icons.scss */
.aicon-flight-radar:before {
  content: "";
}

/* line 262, ../sass/components/_icons.scss */
.aicon-flights:before {
  content: "";
}

/* line 268, ../sass/components/_icons.scss */
.aicon-flight-schedule:before {
  content: "";
}

/* line 274, ../sass/components/_icons.scss */
.aicon-food-and-drink:before {
  content: "";
}

/* line 280, ../sass/components/_icons.scss */
.aicon-hand-luggage:before {
  content: "";
}

/* line 286, ../sass/components/_icons.scss */
.aicon-help-centre-old:before {
  content: "";
}

/* line 292, ../sass/components/_icons.scss */
.aicon-long-stay-park-and-ride:before {
  content: "";
}

/* line 298, ../sass/components/_icons.scss */
.aicon-long-stay-parking:before {
  content: "";
}

/* line 304, ../sass/components/_icons.scss */
.aicon-parking:before {
  content: "";
}

/* line 310, ../sass/components/_icons.scss */
.aicon-passenger-info:before {
  content: "";
}

/* line 316, ../sass/components/_icons.scss */
.aicon-passports-and-visas:before {
  content: "";
}

/* line 322, ../sass/components/_icons.scss */
.aicon-pick-up:before {
  content: "";
}

/* line 328, ../sass/components/_icons.scss */
.aicon-private-hire-cars:before {
  content: "";
}

/* line 334, ../sass/components/_icons.scss */
.aicon-route-map:before {
  content: "";
}

/* line 340, ../sass/components/_icons.scss */
.aicon-search:before {
  content: "";
}

/* line 346, ../sass/components/_icons.scss */
.aicon-security:before {
  content: "";
}

/* line 352, ../sass/components/_icons.scss */
.aicon-security-information:before {
  content: "";
}

/* line 358, ../sass/components/_icons.scss */
.aicon-shop-and-eat:before {
  content: "";
}

/* line 364, ../sass/components/_icons.scss */
.aicon-shopping:before {
  content: "";
}

/* line 370, ../sass/components/_icons.scss */
.aicon-short-stay-parking:before {
  content: "";
}

/* line 376, ../sass/components/_icons.scss */
.aicon-shuttle-bus:before {
  content: "";
}

/* line 382, ../sass/components/_icons.scss */
.aicon-special-assistance:before {
  content: "";
}

/* line 388, ../sass/components/_icons.scss */
.aicon-taxi:before {
  content: "";
}

/* line 394, ../sass/components/_icons.scss */
.aicon-terminal-map:before {
  content: "";
}

/* line 400, ../sass/components/_icons.scss */
.aicon-to-and-from-the-airport:before {
  content: "";
}

/* line 406, ../sass/components/_icons.scss */
.aicon-wifi:before {
  content: "";
}

/* line 412, ../sass/components/_icons.scss */
.corp-advertising:before {
  content: "";
}

/* line 418, ../sass/components/_icons.scss */
.corp-charges:before {
  content: "";
}

/* line 424, ../sass/components/_icons.scss */
.corp-building:before {
  content: "";
}

/* line 430, ../sass/components/_icons.scss */
.corp-retail:before {
  content: "";
}

/* line 436, ../sass/components/_icons.scss */
.corp-about:before {
  content: "";
}

/* line 442, ../sass/components/_icons.scss */
.corp-community:before {
  content: "";
}

/* line 448, ../sass/components/_icons.scss */
.corp-planning:before {
  content: "";
}

/* line 454, ../sass/components/_icons.scss */
.corp-property:before {
  content: "";
}

/* line 460, ../sass/components/_icons.scss */
.corp-business:before {
  content: "";
}

/* line 466, ../sass/components/_icons.scss */
.corp-working:before {
  content: "";
}

/* line 1, ../sass/components/_blockquote.scss */
blockquote {
  margin: 2.5em 0;
  border-left: 4px solid #f27c38;
  padding: 0 2.5em;
}

/*
 * Buttons
 */
/* line 5, ../sass/components/_buttons.scss */
.button,
input[type=submit] {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
  border: solid 1px #f27c38;
  padding: 0.4em 0.7em;
  color: #007dbd;
}

/* line 14, ../sass/components/_buttons.scss */
.button:hover,
input[type=submit]:hover,
.button:focus {
  color: #fff;
  background-color: #007dbd;
  text-decoration: none;
}

/* line 1, ../sass/components/_breadcrumb.scss */
.breadcrumb {
  font-size: 80%;
  margin: 1.5em 0;
}

/*
 * caption.js styles
 */
/* Main */
/* line 6, ../sass/components/_captions.scss */
.caption {
  line-height: 0;
}

/* line 10, ../sass/components/_captions.scss */
.caption figcaption {
  display: block;
  line-height: 1.2;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 1em 0;
  font-style: italic;
}

/*
 * Forms, webforms
 */
/* line 5, ../sass/components/_forms.scss */
input[type=text],
input[type=password],
input[type=email],
input[type=url],
input[type=date],
input[type=month],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=week],
input[type=number],
input[type=search],
input[type=tel],
input[type=color],
.form-text,
select,
textarea {
  padding: .5em .6em;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 2px;
  color: #003d4d;
  font-size: 24;
  width: 100%;
  max-width: 500px;
  outline: none;
}
/* line 32, ../sass/components/_forms.scss */
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=week]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=color]:focus,
.form-text:focus,
select:focus,
textarea:focus {
  border-color: #363636;
}

/* line 37, ../sass/components/_forms.scss */
fieldset {
  margin-bottom: 1.5em;
  padding: 0;
  border: 0;
}
/* line 42, ../sass/components/_forms.scss */
fieldset fieldset {
  margin-bottom: 0;
}

/* line 47, ../sass/components/_forms.scss */
form fieldset:last-of-type {
  margin-bottom: 0;
}

/* line 51, ../sass/components/_forms.scss */
.fieldset-description {
  margin-bottom: 1.5em;
}

/* line 55, ../sass/components/_forms.scss */
.grippie {
  max-width: 500px;
}

/*  legend... wait for it... dary! */
/* line 60, ../sass/components/_forms.scss */
legend {
  padding: 0;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 600;
  border-bottom: 1px solid #dfdfdf;
  display: block;
  width: 100%;
  margin-bottom: 1.5em;
}

/* line 70, ../sass/components/_forms.scss */
label {
  display: block;
  margin-bottom: 0.5em;
}

/*  Placeholders. Keep as seperate selectors or it won't work  */
/* line 76, ../sass/components/_forms.scss */
.placeholder {
  color: #505050;
}

/* line 80, ../sass/components/_forms.scss */
::-webkit-input-placeholder {
  color: #505050;
}

/* line 84, ../sass/components/_forms.scss */
:-moz-placeholder {
  /* Firefox 18- */
  color: #505050;
}

/* line 88, ../sass/components/_forms.scss */
::-moz-placeholder {
  /* Firefox 19+ */
  color: #505050;
}

/* line 92, ../sass/components/_forms.scss */
:-ms-input-placeholder {
  color: #505050;
}

/*  Drupal classes */
/* line 98, ../sass/components/_forms.scss */
.form-item {
  margin-bottom: 1.5em;
}

/* line 102, ../sass/components/_forms.scss */
input[type="submit"], .form-submit {
  background-color: #363636;
  cursor: pointer;
}
/* line 106, ../sass/components/_forms.scss */
.views-reset-button input[type="submit"], .views-reset-button .form-submit {
  background-color: #363636;
}
/* line 109, ../sass/components/_forms.scss */
.views-reset-button input[type="submit"]:hover, .views-reset-button input[type="submit"]:focus, .views-reset-button .form-submit:hover, .views-reset-button .form-submit:focus {
  background-color: #f27c38;
}

/* line 116, ../sass/components/_forms.scss */
.form-managed-file .form-submit {
  background-color: #363636;
}
/* line 119, ../sass/components/_forms.scss */
.form-managed-file .form-submit:hover {
  background-color: #f27c38;
}

/* line 124, ../sass/components/_forms.scss */
.description {
  font-size: 22px;
  font-size: 1.375rem;
  color: #00b6e6;
  margin: 0.75em 0;
}

/* line 130, ../sass/components/_forms.scss */
.form-type-checkbox {
  margin-bottom: 0;
}
/* line 133, ../sass/components/_forms.scss */
.form-type-checkbox label {
  font-weight: 400;
}

/* line 138, ../sass/components/_forms.scss */
.form-type-radio {
  margin-bottom: 0;
}

/* line 142, ../sass/components/_forms.scss */
.form-radios label,
label.option {
  display: inline;
}

/* line 147, ../sass/components/_forms.scss */
.form-managed-file .form-file {
  display: inline;
  width: auto;
}

/* line 152, ../sass/components/_forms.scss */
.form-type-date select {
  width: auto;
}

/*
  WEBFORM
*/
/* line 160, ../sass/components/_forms.scss */
.webform-client-form .form,
.webform-client-form .form-item {
  margin-bottom: 1.5em;
}
/* line 164, ../sass/components/_forms.scss */
.webform-client-form .form label,
.webform-client-form .form-item label {
  margin-bottom: 1.5em;
}
/* line 169, ../sass/components/_forms.scss */
.webform-client-form .form-item {
  position: relative;
}
/* line 172, ../sass/components/_forms.scss */
.webform-client-form .form-item > label {
  font-weight: bold;
}
/* line 176, ../sass/components/_forms.scss */
.webform-client-form .form-item .label-inline {
  display: inline;
}
/* line 180, ../sass/components/_forms.scss */
.webform-client-form .form-item textarea {
  box-shadow: none;
  border: 1px solid #dfdfdf;
  padding: 10px;
  border-radius: 0;
}
/* line 187, ../sass/components/_forms.scss */
.webform-client-form .form-item input[readonly="readonly"] {
  background-color: #fcfcfc;
  border-color: #dfdfdf;
}
/* line 195, ../sass/components/_forms.scss */
.webform-client-form .webform-component-checkboxes input,
.webform-client-form .webform-component-radios input {
  padding-top: 2px;
}
/* line 200, ../sass/components/_forms.scss */
.webform-client-form .webform-component-checkboxes.form-item .form-item,
.webform-client-form .webform-component-radios.form-item .form-item {
  margin-bottom: 0;
}
/* line 203, ../sass/components/_forms.scss */
.webform-client-form .webform-component-checkboxes.form-item .form-item label,
.webform-client-form .webform-component-radios.form-item .form-item label {
  font-weight: normal;
  margin-bottom: 0;
}
/* line 208, ../sass/components/_forms.scss */
.webform-client-form .webform-component-checkboxes.form-item .form-item .form-type-checkbox,
.webform-client-form .webform-component-radios.form-item .form-item .form-type-checkbox {
  margin: 0;
  padding: 10px 0 10px 5px;
}
/* line 216, ../sass/components/_forms.scss */
.webform-client-form .form-item-clear {
  width: auto;
  border: 0;
  padding: 0;
  font-weight: bold;
}
/* line 223, ../sass/components/_forms.scss */
.webform-client-form .webform-component-date .form-select,
.webform-client-form .webform-component-time .form-select {
  width: auto;
}
/* line 228, ../sass/components/_forms.scss */
.webform-client-form .webform-component-textarea .grippie {
  display: none;
}

/* line 1, ../sass/components/_login.scss */
.page-user {
  background: #fff;
  padding: 0 20px;
}

/* line 5, ../sass/components/_login.scss */
#login-top img {
  max-width: 70%;
  margin: 0 auto;
  display: block;
}

/* line 10, ../sass/components/_login.scss */
#auth_box {
  font-family: "Fira Sans", Helvetica, Arial, sans-serif;
  max-width: 340px;
  margin: 3em auto 0;
}
/* line 14, ../sass/components/_login.scss */
#auth_box .form-submit {
  width: 100%;
  float: none;
  padding: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

/* line 23, ../sass/components/_login.scss */
#auth_box input[type="text"], #auth_box input[type="password"] {
  width: 100%;
  padding: 12px;
  background: #f2f2f2;
}

/* line 30, ../sass/components/_login.scss */
#top_part {
  margin-top: 2em;
}

/* line 34, ../sass/components/_login.scss */
#login-middle {
  border: 1px solid #dfdfdf;
  border-radius: 3px;
  box-shadow: 0 0 25px #f2f2f2;
  padding: 1em;
  margin-bottom: 2em;
}
/* line 40, ../sass/components/_login.scss */
#login-middle h2 {
  font-size: 1.5em;
  margin-top: 0;
}

/* line 46, ../sass/components/_login.scss */
#login-bottom {
  text-align: center;
}

/* line 51, ../sass/components/_login.scss */
.login-footer {
  margin-top: 4em;
  text-align: center;
}

/* line 1, ../sass/components/_maintenance.scss */
.page-maintenance {
  padding: 50px 20px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
/* line 7, ../sass/components/_maintenance.scss */
.page-maintenance h1:before {
  content: "";
  display: block;
  width: 150px;
  height: 150px;
  margin: 0 auto 1em;
  background: url("../img/admin/info.png");
  background: url("../img/admin/info.svg"), none;
  background-size: 150px 150px;
}

/*
 * Pagination
 */
/* line 4, ../sass/components/_pagination.scss */
.item-list {
  overflow: auto;
}
/* line 6, ../sass/components/_pagination.scss */
.item-list .pager {
  padding: 0;
  text-align: left;
  overflow: auto;
}
/* line 10, ../sass/components/_pagination.scss */
.item-list .pager li {
  float: left;
  list-style: none;
  padding: 0;
  margin-right: 1em;
}
/* line 16, ../sass/components/_pagination.scss */
.item-list .pager a {
  display: inline-block;
  padding: 0 .2em;
}
/* line 19, ../sass/components/_pagination.scss */
.item-list .pager a:hover {
  text-decoration: none;
  border-bottom: 2px solid #003d4d;
}
/* line 26, ../sass/components/_pagination.scss */
.item-list .pager .pager-ellipsis {
  background: #fff;
  display: inline-block;
}
/* line 30, ../sass/components/_pagination.scss */
.item-list .pager .pager-current {
  border-bottom: 2px solid #003d4d;
  font-weight: 500;
  padding: 0 .2em;
}

/**
 * Promotions section on the homepage
 */
/* line 4, ../sass/components/_promotions.scss */
.content-promotions {
  /**********************/
}
@media (min-width: 769px) {
  /* line 5, ../sass/components/_promotions.scss */
  .content-promotions > .container, #block-views-alert-block .content-promotions > .alert-wrapper, footer .content-promotions > .footer-wrapper {
    margin-bottom: 60px;
  }
}
/* line 12, ../sass/components/_promotions.scss */
.content-promotions > .container > h2, #block-views-alert-block .content-promotions > .alert-wrapper > h2, footer .content-promotions > .footer-wrapper > h2 {
  margin: 0 0 60px;
}
@media (max-width: 1024px) {
  /* line 12, ../sass/components/_promotions.scss */
  .content-promotions > .container > h2, #block-views-alert-block .content-promotions > .alert-wrapper > h2, footer .content-promotions > .footer-wrapper > h2 {
    width: 90%;
  }
}
@media (max-width: 1024px) {
  /* line 21, ../sass/components/_promotions.scss */
  .content-promotions .promos {
    margin: 0 -10px;
  }
}
/* line 26, ../sass/components/_promotions.scss */
.content-promotions .block-bean {
  position: relative;
}
/* line 28, ../sass/components/_promotions.scss */
.content-promotions .block-bean h2 {
  position: absolute;
  bottom: 0;
}
/* line 33, ../sass/components/_promotions.scss */
.content-promotions .promotion-item {
  margin-bottom: 40px;
}
/* line 36, ../sass/components/_promotions.scss */
.content-promotions img {
  display: block;
  width: 100%;
}
/* line 40, ../sass/components/_promotions.scss */
.content-promotions .promotion-heading {
  background: #bd3223;
  background: linear-gradient(135deg, #bd3223 0%, #e27064 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$primary', endColorstr='lighten($primary,20%)', GradientType=1 );
  color: #fff;
  box-shadow: inset 0 0 0 50px transparent;
  transition: box-shadow 0.3s ease-out;
  overflow: hidden;
  padding: 0.35em 0.7em;
}
@media (min-width: 769px) {
  /* line 40, ../sass/components/_promotions.scss */
  .content-promotions .promotion-heading {
    padding: 0.75em 1.2em;
  }
}
/* line 53, ../sass/components/_promotions.scss */
.content-promotions a:hover .promotion-heading {
  box-shadow: inset 0 0 0 50px #bd3223;
  transition: box-shadow 0.3s ease-out;
}
/* line 60, ../sass/components/_promotions.scss */
.content-promotions .promotion-title {
  text-transform: uppercase;
  float: left;
}
@media (max-width: 768px) {
  /* line 60, ../sass/components/_promotions.scss */
  .content-promotions .promotion-title {
    display: none;
  }
}
/* line 67, ../sass/components/_promotions.scss */
.content-promotions .promotion-link-text {
  font-style: italic;
}
@media (max-width: 768px) {
  /* line 67, ../sass/components/_promotions.scss */
  .content-promotions .promotion-link-text {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
    font-size: 1rem;
  }
}
@media (min-width: 769px) {
  /* line 67, ../sass/components/_promotions.scss */
  .content-promotions .promotion-link-text {
    float: right;
    font-weight: 300;
  }
}
/* line 81, ../sass/components/_promotions.scss */
.content-promotions .block-bean {
  position: relative;
  margin: 20px 0;
  border-bottom: none !important;
}
/* line 85, ../sass/components/_promotions.scss */
.content-promotions .block-bean > h2 {
  display: none;
}
/* line 88, ../sass/components/_promotions.scss */
.content-promotions .block-bean .field-name-field-link {
  position: absolute;
  bottom: 0;
  margin: 0;
}
@media (max-width: 768px) {
  /* line 94, ../sass/components/_promotions.scss */
  .content-promotions .block-bean .field-name-field-image-desktop {
    display: none;
  }
}
@media (min-width: 769px) {
  /* line 100, ../sass/components/_promotions.scss */
  .content-promotions .block-bean .field-name-field-image-mobile {
    display: none;
  }
  /* line 103, ../sass/components/_promotions.scss */
  .content-promotions .block-bean#block-bean-promo-2, .content-promotions .block-bean#block-bean-promo-3 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
  }
  /* line 122, ../sass/base/_mixins.scss */
  .content-promotions .block-bean#block-bean-promo-2:before, .content-promotions .block-bean#block-bean-promo-2:after, .content-promotions .block-bean#block-bean-promo-3:before, .content-promotions .block-bean#block-bean-promo-3:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  .content-promotions .block-bean#block-bean-promo-2:after, .content-promotions .block-bean#block-bean-promo-3:after {
    clear: both;
  }
  /* line 56, ../sass/jeet/_grid.scss */
  .content-promotions .block-bean#block-bean-promo-2:last-child, .content-promotions .block-bean#block-bean-promo-3:last-child {
    margin-right: 0%;
  }
}
/* line 109, ../sass/components/_promotions.scss */
.content-promotions .block-bean .field-type-image {
  margin: 0;
}
/* line 111, ../sass/components/_promotions.scss */
.content-promotions .block-bean .field-type-image .field-item {
  line-height: 0;
}
/* line 118, ../sass/components/_promotions.scss */
.content-promotions .slick-initialized .slick-slide .content {
  transition: all 300ms ease;
  transform-origin: 50% 50%;
}
@media (min-width: 481px) and (max-width: 768px) {
  /* line 118, ../sass/components/_promotions.scss */
  .content-promotions .slick-initialized .slick-slide .content {
    padding: 0 5px;
  }
}
@media (max-width: 480px) {
  /* line 126, ../sass/components/_promotions.scss */
  .content-promotions .slick-initialized .slick-slide:not(.slick-active) .content {
    opacity: 0.85;
    transform: scale(0.95);
  }
}

/* line 4, ../sass/components/_sitemap.scss */
.site-map ul {
  padding: 0;
  margin: 0;
}
/* line 8, ../sass/components/_sitemap.scss */
.site-map ul ul {
  padding-left: 20px;
}
/* line 11, ../sass/components/_sitemap.scss */
.site-map ul ul a {
  background: #999;
}
/* line 12, ../sass/components/_sitemap.scss */
.site-map ul ul ul a {
  background: #777;
}
/* line 13, ../sass/components/_sitemap.scss */
.site-map ul ul ul ul a {
  background: #555;
}
/* line 14, ../sass/components/_sitemap.scss */
.site-map ul ul ul ul ul a {
  background: #333;
}
/* line 17, ../sass/components/_sitemap.scss */
.site-map ul a {
  padding: 5px 10px;
  background: #f27c38;
  /* Change to primary-color colour */
}
/* line 23, ../sass/components/_sitemap.scss */
.site-map li {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* line 29, ../sass/components/_sitemap.scss */
.site-map a {
  color: white;
  display: inline-block;
  margin-bottom: 1px;
}
/* line 34, ../sass/components/_sitemap.scss */
.site-map a:hover {
  background: #e85e0f;
  color: #fff;
}

/* line 1, ../sass/components/_search.scss */
form#search-block-form,
form[class*="search-"] {
  position: relative;
}
/* line 4, ../sass/components/_search.scss */
form#search-block-form input[type="search"],
form[class*="search-"] input[type="search"] {
  border: 1px solid #f27c38;
  border-radius: 3px;
  -webkit-appearance: none;
}
/* line 9, ../sass/components/_search.scss */
form#search-block-form input[type="submit"],
form[class*="search-"] input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 40px;
  border: none;
  background: none;
  overflow: hidden;
  text-indent: 999999999px;
  z-index: 10;
}
/* line 21, ../sass/components/_search.scss */
body.page-search-node form#search-block-form, body.page-search-node
form[class*="search-"] {
  float: right;
  margin-top: 0;
}

/* line 27, ../sass/components/_search.scss */
form[class*="search-"] #edit-basic::after,
form#search-block-form #edit-actions::after {
  font-size: 28px;
  font-size: 1.75rem;
  color: #f27c38;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  z-index: 1;
}

/* line 40, ../sass/components/_search.scss */
form[class*="search-"] #edit-basic {
  position: relative;
}
/* line 42, ../sass/components/_search.scss */
form[class*="search-"] #edit-basic::after {
  top: 70%;
}

/* line 48, ../sass/components/_search.scss */
body.page-search-node .form-type-searchfield {
  display: block;
}
/* line 51, ../sass/components/_search.scss */
body.page-search-node input[type="search"] {
  margin: 0.5em 0;
}
/* line 54, ../sass/components/_search.scss */
body.page-search-node form[class*="search-"] {
  float: none;
}
/* line 57, ../sass/components/_search.scss */
body.page-search-node form[class*="search-"] #edit-basic:after {
  top: 36%;
  right: -40px;
}
/* line 62, ../sass/components/_search.scss */
body.page-search-node form[class*="search-"] .form-type-searchfield {
  display: inline-block;
}
/* line 65, ../sass/components/_search.scss */
body.page-search-node form[class*="search-"] .container-inline.form-wrapper {
  display: inline-block;
}
/* line 68, ../sass/components/_search.scss */
body.page-search-node form[class*="search-"] input.form-submit {
  right: -40px;
}
/* line 75, ../sass/components/_search.scss */
body.page-search-node .search-results.node-results {
  clear: both;
}
/* line 77, ../sass/components/_search.scss */
body.page-search-node .search-results.node-results a {
  color: #007dbd;
}
/* line 79, ../sass/components/_search.scss */
body.page-search-node .search-results.node-results a:hover {
  color: #f49031;
}

/* Slider */
/* line 18, ../sass/components/_slider.scss */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

/* line 29, ../sass/components/_slider.scss */
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
/* line 36, ../sass/components/_slider.scss */
.slick-list:focus {
  outline: none;
}
/* line 44, ../sass/components/_slider.scss */
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

/* line 49, ../sass/components/_slider.scss */
.slick-slider .slick-track {
  -webkit-translate3d: 0, 0, 0;
  -moz-translate3d: 0, 0, 0;
  -ms-translate3d: 0, 0, 0;
  -o-translate3d: 0, 0, 0;
  translate3d: 0, 0, 0;
}

/* line 53, ../sass/components/_slider.scss */
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
/* line 59, ../sass/components/_slider.scss */
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
/* line 65, ../sass/components/_slider.scss */
.slick-track:after {
  clear: both;
}
/* line 69, ../sass/components/_slider.scss */
.slick-loading .slick-track {
  visibility: hidden;
}

/* line 73, ../sass/components/_slider.scss */
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
/* line 77, ../sass/components/_slider.scss */
[dir="rtl"] .slick-slide {
  float: right;
}
/* line 80, ../sass/components/_slider.scss */
.slick-slide img {
  display: block;
}
/* line 83, ../sass/components/_slider.scss */
.slick-slide.slick-loading img {
  display: none;
}
/* line 89, ../sass/components/_slider.scss */
.slick-slide.dragging img {
  pointer-events: none;
}
/* line 93, ../sass/components/_slider.scss */
.slick-initialized .slick-slide {
  display: block;
}
/* line 97, ../sass/components/_slider.scss */
.slick-loading .slick-slide {
  visibility: hidden;
}
/* line 101, ../sass/components/_slider.scss */
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* Arrows */
/* line 111, ../sass/components/_slider.scss */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -10px;
  padding: 0;
  border: none;
  outline: none;
  z-index: 1000;
}
/* line 128, ../sass/components/_slider.scss */
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
/* line 132, ../sass/components/_slider.scss */
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
/* line 136, ../sass/components/_slider.scss */
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

/* line 140, ../sass/components/_slider.scss */
.slick-prev:before, .slick-next:before {
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 148, ../sass/components/_slider.scss */
.slick-prev {
  left: 20px;
}
/* line 150, ../sass/components/_slider.scss */
[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}
/* line 154, ../sass/components/_slider.scss */
.slick-prev:before {
  content: "←";
}
/* line 156, ../sass/components/_slider.scss */
[dir="rtl"] .slick-prev:before {
  content: "→";
}

/* line 161, ../sass/components/_slider.scss */
.slick-next {
  right: 20px;
}
/* line 163, ../sass/components/_slider.scss */
[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}
/* line 167, ../sass/components/_slider.scss */
.slick-next:before {
  content: "→";
}
/* line 169, ../sass/components/_slider.scss */
[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
/* line 177, ../sass/components/_slider.scss */
.slick-slider {
  margin-bottom: 30px;
}

/* line 180, ../sass/components/_slider.scss */
.slick-dots {
  position: absolute;
  bottom: 0;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%;
  z-index: 1000;
}
/* line 190, ../sass/components/_slider.scss */
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
/* line 199, ../sass/components/_slider.scss */
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
/* line 211, ../sass/components/_slider.scss */
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
/* line 213, ../sass/components/_slider.scss */
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
/* line 218, ../sass/components/_slider.scss */
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-size: 30px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* line 236, ../sass/components/_slider.scss */
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/*
 * Tables
 */
/* line 9, ../sass/components/_tables.scss */
table {
  background-color: #fff;
  border: 0 solid transparent;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.5em;
}
/* line 15, ../sass/components/_tables.scss */
table caption {
  text-align: left;
}
/* line 18, ../sass/components/_tables.scss */
table th {
  text-align: left;
  color: #f27c38;
  font-weight: 500;
}
/* line 23, ../sass/components/_tables.scss */
table td {
  font-weight: normal;
  letter-spacing: normal;
  text-transform: none;
  font-family: inherit;
}
/* line 34, ../sass/components/_tables.scss */
table > thead > tr > th,
table > thead > tr > td,
table > tbody > tr > th,
table > tbody > tr > td,
table > tfoot > tr > th,
table > tfoot > tr > td {
  padding: 5px 0;
  vertical-align: top;
}
/* line 39, ../sass/components/_tables.scss */
table > thead > tr > th:not(:last-child),
table > thead > tr > td:not(:last-child),
table > tbody > tr > th:not(:last-child),
table > tbody > tr > td:not(:last-child),
table > tfoot > tr > th:not(:last-child),
table > tfoot > tr > td:not(:last-child) {
  padding-right: 10px;
}
/* line 47, ../sass/components/_tables.scss */
table > thead > tr > th {
  vertical-align: bottom;
}
/* line 55, ../sass/components/_tables.scss */
table > caption + thead > tr:first-child > th,
table > caption + thead > tr:first-child > td,
table > colgroup + thead > tr:first-child > th,
table > colgroup + thead > tr:first-child > td,
table > thead:first-child > tr:first-child > th,
table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
/* line 62, ../sass/components/_tables.scss */
table > tbody + tbody {
  border-top: 2px solid #dfdfdf;
}
/* line 67, ../sass/components/_tables.scss */
table table {
  background-color: #fff;
  margin-bottom: 0;
}

/**
 * Responsive tables. tables in node content are wrapped with a div with class "table-responsive" via js in scripts.js
 */
/* line 78, ../sass/components/_tables.scss */
.table-responsive {
  width: 100%;
  overflow-y: auto;
}

/* line 84, ../sass/components/_tables.scss */
.table-responsive::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
}

/* line 90, ../sass/components/_tables.scss */
.table-responsive::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 3px solid #fff;
  background-color: rgba(0, 0, 0, 0.3);
}

/* line 100, ../sass/components/_tables.scss */
.table-bordered {
  border: 1px solid #dfdfdf;
}
/* line 106, ../sass/components/_tables.scss */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #dfdfdf;
  padding: 5px;
}

/* line 117, ../sass/components/_tables.scss */
.table-striped > tbody > tr:nth-child(odd),
.table-striped .odd-row {
  background-color: #f2f2f2;
}
/* line 121, ../sass/components/_tables.scss */
.table-striped th, .table-striped td {
  border: 0;
}

/* line 126, ../sass/components/_tables.scss */
.table-striped-vertical th:nth-child(odd),
.table-striped-vertical td:nth-child(odd),
.table-striped-vertical .odd-column {
  background-color: #f2f2f2;
}
/* line 131, ../sass/components/_tables.scss */
.table-striped-vertical th, .table-striped-vertical td {
  border: 0;
}

/* line 136, ../sass/components/_tables.scss */
.table-vertical th, .table-vertical td {
  border-top: 0;
  border-bottom: 0;
  border-right: 1px solid #dfdfdf;
}
/* line 141, ../sass/components/_tables.scss */
.table-vertical tr td:last-child,
.table-vertical tr th:last-child {
  border: 0;
}

/* line 152, ../sass/components/_tables.scss */
.table-unstyled > thead > tr > th,
.table-unstyled > thead > tr > td,
.table-unstyled > tbody > tr > th,
.table-unstyled > tbody > tr > td,
.table-unstyled > tfoot > tr > th,
.table-unstyled > tfoot > tr > td {
  padding: 0;
  vertical-align: top;
  border: 0;
}

/**
 * Tabs
 */
/* line 5, ../sass/components/_tabs-primary.scss */
.tabs.primary {
  list-style: none;
  padding-left: 0;
  border-bottom: 1px solid #dfdfdf;
}
/* line 9, ../sass/components/_tabs-primary.scss */
.tabs.primary li {
  display: inline-block;
  position: relative;
  top: 1px;
}
/* line 14, ../sass/components/_tabs-primary.scss */
.tabs.primary a {
  display: inline-block;
  padding: .5em 1em;
}
/* line 17, ../sass/components/_tabs-primary.scss */
.tabs.primary a.active {
  border-top: 1px solid #dfdfdf;
  border-left: 1px solid #dfdfdf;
  border-right: 1px solid #dfdfdf;
  border-bottom: 0 solid white;
  background: white;
}

/*
 * Classes that can be used in the WYSIWYG editor
 */
/* line 4, ../sass/components/_wysiwyg.scss */
.image-left {
  float: left;
  background-color: #fff;
  border: 1px solid #dfdfdf;
  padding: 5px;
  margin-right: 1.25em;
}

/* line 12, ../sass/components/_wysiwyg.scss */
.image-right {
  float: right;
  background-color: #fff;
  border: 1px solid #dfdfdf;
  padding: 5px;
  margin-left: 1.25em;
}

/* line 20, ../sass/components/_wysiwyg.scss */
big {
  font-size: 26px;
  font-size: 1.625rem;
}

/* line 24, ../sass/components/_wysiwyg.scss */
small {
  font-size: 22px;
  font-size: 1.375rem;
}

/* line 28, ../sass/components/_wysiwyg.scss */
.text-red {
  color: #bd3223;
}

/* line 32, ../sass/components/_wysiwyg.scss */
.text-green {
  color: #f49031;
}

/**
 * Call out boxes
 * These should in theory only be applied on P tags
 */
/* line 39, ../sass/components/_wysiwyg.scss */
.call-out {
  padding: 20px;
  max-width: 450px;
  border: 1px solid #f27c38;
  font-weight: 400;
}

/* line 46, ../sass/components/_wysiwyg.scss */
.call-out-emergency {
  border-color: #bd3223;
}

/**
 * Boxes
 * These should appear on the layout template columns.
 */
/* line 53, ../sass/components/_wysiwyg.scss */
.box-highlight {
  border: 1px solid #f27c38;
  padding: 20px;
}
/* line 57, ../sass/components/_wysiwyg.scss */
.box-highlight > *:first-child {
  margin-top: 0;
}
/* line 61, ../sass/components/_wysiwyg.scss */
.box-highlight > *:last-child {
  margin-bottom: 0;
}

/* line 67, ../sass/components/_wysiwyg.scss */
.layout-row {
  *zoom: 1;
}
/* line 122, ../sass/base/_mixins.scss */
.layout-row:before, .layout-row:after {
  content: '';
  display: table;
}
/* line 127, ../sass/base/_mixins.scss */
.layout-row:after {
  clear: both;
}
/* line 70, ../sass/components/_wysiwyg.scss */
.layout-row > div {
  margin-bottom: 20px;
}

/* line 75, ../sass/components/_wysiwyg.scss */
body.cke_editable {
  padding: 20px;
}
/* line 78, ../sass/components/_wysiwyg.scss */
body.cke_editable .layout-row {
  padding: 10px;
  margin: 0 -10px 20px;
  border: 1px dashed pink;
}
/* line 84, ../sass/components/_wysiwyg.scss */
body.cke_editable .layout-row > div {
  border: 1px dashed #a5d3e4;
}
/* line 89, ../sass/components/_wysiwyg.scss */
body.cke_editable table td {
  border: 1px dashed #ccc;
}

@media (min-width: 769px) {
  /* line 95, ../sass/components/_wysiwyg.scss */
  .col-one-half {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
  }
  /* line 122, ../sass/base/_mixins.scss */
  .col-one-half:before, .col-one-half:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  .col-one-half:after {
    clear: both;
  }
  /* line 56, ../sass/jeet/_grid.scss */
  .col-one-half:last-child {
    margin-right: 0%;
  }

  /* line 99, ../sass/components/_wysiwyg.scss */
  .col-one-third {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%;
  }
  /* line 122, ../sass/base/_mixins.scss */
  .col-one-third:before, .col-one-third:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  .col-one-third:after {
    clear: both;
  }
  /* line 56, ../sass/jeet/_grid.scss */
  .col-one-third:last-child {
    margin-right: 0%;
  }

  /* line 103, ../sass/components/_wysiwyg.scss */
  .col-two-thirds {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 65.66667%;
    margin-left: 0%;
    margin-right: 3%;
  }
  /* line 122, ../sass/base/_mixins.scss */
  .col-two-thirds:before, .col-two-thirds:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  .col-two-thirds:after {
    clear: both;
  }
  /* line 56, ../sass/jeet/_grid.scss */
  .col-two-thirds:last-child {
    margin-right: 0%;
  }

  /* line 107, ../sass/components/_wysiwyg.scss */
  .col-one-quarter {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
  }
  /* line 122, ../sass/base/_mixins.scss */
  .col-one-quarter:before, .col-one-quarter:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  .col-one-quarter:after {
    clear: both;
  }
  /* line 56, ../sass/jeet/_grid.scss */
  .col-one-quarter:last-child {
    margin-right: 0%;
  }
}
/* line 117, ../sass/components/_wysiwyg.scss */
.col-one-half a,
.col-one-half h1,
.col-one-half h2,
.col-one-half h3,
.col-one-half h4,
.col-one-half p,
.col-one-quarter a,
.col-one-quarter h1,
.col-one-quarter h2,
.col-one-quarter h3,
.col-one-quarter h4,
.col-one-quarter p,
.col-one-third a,
.col-one-third h1,
.col-one-third h2,
.col-one-third h3,
.col-one-third h4,
.col-one-third p,
.col-two-thirds a,
.col-two-thirds h1,
.col-two-thirds h2,
.col-two-thirds h3,
.col-two-thirds h4,
.col-two-thirds p {
  word-wrap: break-word;
}

/* line 128, ../sass/components/_wysiwyg.scss */
dl.ckeditor-accordion dt {
  position: relative;
}
/* line 131, ../sass/components/_wysiwyg.scss */
dl.ckeditor-accordion dt::after {
  content: '+';
  display: block;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 1.2em;
  font-weight: 800;
  color: #68B334;
}
/* line 144, ../sass/components/_wysiwyg.scss */
dl.ckeditor-accordion dt.current::after {
  content: '-';
}

/*
 * BOARD SPECIFIC DESIGN
 *
 * Include all the boards elements in this file.
 */
/* AIRLINE ARRAY (REMOVED in place of inline style in airport_tabel*.js) */
/* FLAPPER PLUGIN */
/* line 12, ../sass/components/_board.scss */
.flapping input {
  margin: 0;
  padding: 0;
  border: none;
  color: #003d4d;
}
/* line 19, ../sass/components/_board.scss */
.flapping b {
  font-size: 18px;
  font-size: 1.125rem;
  width: 6px;
  height: 30px;
  line-height: 36px;
  display: inline-block;
  text-align: center;
  vertical-align: top;
}

/* line 30, ../sass/components/_board.scss */
.filterable input,
.flapper {
  font-family: "Bebas", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
}
/* line 38, ../sass/components/_board.scss */
.filterable input.light .digit,
.flapper.light .digit {
  border: none;
  background: none;
  margin: 0;
  border-radius: 0;
  width: 10px;
}
/* line 45, ../sass/components/_board.scss */
.filterable input.light .digit div,
.flapper.light .digit div {
  color: #003d4d;
  border-radius: 0;
  background-color: white;
  width: 10px;
}
/* line 52, ../sass/components/_board.scss */
.filterable input.light .digit .top,
.flapper.light .digit .top {
  clip: rect(0px, 24px, 15px, 0px);
}
/* line 58, ../sass/components/_board.scss */
.filterable input.XS,
.flapper.XS {
  height: 30px;
  position: relative;
  top: 5px;
  font-size: 18px;
  font-size: 1.125rem;
}

@media (min-width: 769px) {
  /* line 66, ../sass/components/_board.scss */
  .flapping b {
    width: 16px !important;
    font-size: 22px !important;
  }

  /* line 73, ../sass/components/_board.scss */
  .light .digit,
  .light .digit div {
    width: 16px !important;
  }

  /* line 80, ../sass/components/_board.scss */
  .XS {
    font-size: 22px !important;
  }
}
@media (min-width: 1025px) {
  /* line 85, ../sass/components/_board.scss */
  .XS,
  .flapping b {
    font-size: 24px !important;
  }
}
/* line 92, ../sass/components/_board.scss */
td.delayed .digit div {
  color: #db3e01 !important;
}

/* line 96, ../sass/components/_board.scss */
td.cancelled .digit div {
  color: #db6801 !important;
}

/* FILTERTABLE PLUGIN */
/* line 100, ../sass/components/_board.scss */
.filter-table .quick {
  margin-left: 0.5em;
  font-size: 0.8em;
  text-decoration: none;
}

/* line 106, ../sass/components/_board.scss */
.fitler-table .quick:hover {
  text-decoration: underline;
}

/* line 111, ../sass/components/_board.scss */
td.alt, td.alt .filterable input.light .digit div, td.alt .flapper.light .digit div {
  background-color: #fffaf7;
}

/* line 119, ../sass/components/_board.scss */
.filterable td,
.filterable th {
  border: none;
}
/* line 125, ../sass/components/_board.scss */
.filterable tbody td {
  font-family: "Bebas", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  color: #003d4d;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 2px !important;
  line-height: 30px;
}
@media (min-width: 769px) {
  /* line 125, ../sass/components/_board.scss */
  .filterable tbody td {
    letter-spacing: 5.2px !important;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  /* line 125, ../sass/components/_board.scss */
  .filterable tbody td {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
@media (min-width: 1025px) {
  /* line 125, ../sass/components/_board.scss */
  .filterable tbody td {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
/* line 146, ../sass/components/_board.scss */
.filterable tbody .visible {
  display: table-row !important;
  /* transition: background-color 0.2s ease-out;
  &:hover {
    background-color: $grey-light;
  } */
}
/* line 154, ../sass/components/_board.scss */
.table-wrapper:not(.single-mode) .filterable tbody tr:not(.visible) {
  display: none !important;
}
/* line 158, ../sass/components/_board.scss */
.filterable tbody .day-separator {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  font-family: "Fira Sans", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  display: table-row !important;
}
/* line 165, ../sass/components/_board.scss */
.filterable tbody .day-separator td {
  position: relative;
  padding: 2em 0;
}
/* line 169, ../sass/components/_board.scss */
.filterable tbody .day-separator td span {
  display: inline-block !important;
  background-color: white;
  position: relative;
  z-index: 50;
  padding: 0 10px;
}
/* line 177, ../sass/components/_board.scss */
.filterable tbody .day-separator td::before {
  content: '';
  width: 100%;
  border-bottom: 1px solid #003d4d;
  display: inline-block;
  z-index: 46;
  position: absolute;
  top: 50%;
  left: 0;
}
/* line 188, ../sass/components/_board.scss */
.filterable tbody .day-separator td::after {
  left: auto;
  right: 0;
}
/* line 195, ../sass/components/_board.scss */
.filterable tbody td:first-child {
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0;
}
/* line 200, ../sass/components/_board.scss */
.filterable tbody em {
  color: white;
  background-color: #f27c38;
  display: inline-block;
  width: 25px;
  height: 24px;
  text-align: center;
  font-size: smaller;
  font-style: normal;
  letter-spacing: -1px;
  position: absolute;
  top: 50%;
  transform: translate(6px, -50%);
}
/* line 215, ../sass/components/_board.scss */
.filterable tbody em::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #f27c38 transparent transparent;
  border-width: 7px 6px 7px 0;
  position: absolute;
  left: -6px;
  top: 5px;
}

/* TABLE */
/* line 232, ../sass/components/_board.scss */
.block-airport-table .content {
  min-height: 250px;
  /* STATUS ON TABLE */
  /* TAP TO SHOW F NUMBERS */
}
/* line 237, ../sass/components/_board.scss */
.block-airport-table .content .loader {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100px;
  display: block;
  width: 75px;
  height: 75px;
}
/* line 248, ../sass/components/_board.scss */
.block-airport-table .content .loader::after, .block-airport-table .content .loader::before {
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  border: 3px solid rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  content: '';
}
/* line 260, ../sass/components/_board.scss */
.block-airport-table .content .loader::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75px;
  height: 75px;
  border-right-color: rgba(242, 124, 56, 0.8);
  border-left-color: rgba(242, 124, 56, 0.8);
  animation: rotation 2s linear infinite;
}
/* line 272, ../sass/components/_board.scss */
.block-airport-table .content .loader::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
  border-top-color: rgba(242, 124, 56, 0.8);
  border-bottom-color: rgba(242, 124, 56, 0.8);
  animation: rotation 0.75s linear infinite;
}
@keyframes rotation {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(180deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* line 296, ../sass/components/_board.scss */
.block-airport-table .content .loader i {
  position: absolute;
  display: block;
  width: 19px;
  height: 19px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 19px;
}
/* line 306, ../sass/components/_board.scss */
.block-airport-table .content .loader i::before {
  content: "";
  color: #f27c38;
  position: absolute;
  top: 0;
}
@media (min-width: 769px) {
  /* line 237, ../sass/components/_board.scss */
  .block-airport-table .content .loader {
    top: 120px;
  }
}
/* line 319, ../sass/components/_board.scss */
.block-airport-table .content td {
  height: 40px;
  vertical-align: middle;
  white-space: nowrap;
}
@media (min-width: 769px) {
  /* line 319, ../sass/components/_board.scss */
  .block-airport-table .content td {
    height: 50px;
  }
}
/* line 328, ../sass/components/_board.scss */
.block-airport-table .content th {
  color: #f27c38;
  font-size: 16px;
  font-size: 1rem;
}
@media (min-width: 769px) {
  /* line 328, ../sass/components/_board.scss */
  .block-airport-table .content th {
    padding-top: 40px;
  }
}
/* line 336, ../sass/components/_board.scss */
.block-airport-table .content td,
.block-airport-table .content th {
  padding-right: 5px;
}
@media (max-width: 768px) {
  /* line 340, ../sass/components/_board.scss */
  .block-airport-table .content td:not(:first-child):not(.f_number):not(.h_number),
  .block-airport-table .content th:not(:first-child):not(.f_number):not(.h_number) {
    padding-left: 5px;
  }
}
@media (min-width: 769px) {
  /* line 345, ../sass/components/_board.scss */
  .block-airport-table .content td:not(:first-child),
  .block-airport-table .content th:not(:first-child) {
    padding-left: 5px;
  }
}
/* line 350, ../sass/components/_board.scss */
.block-airport-table .content td span.data-invisible,
.block-airport-table .content th span.data-invisible {
  display: none !important;
}
/* line 357, ../sass/components/_board.scss */
.block-airport-table .content tr.cancelled td.f_status,
.block-airport-table .content tr.delayed td.f_status {
  color: red;
}
/* line 362, ../sass/components/_board.scss */
.block-airport-table .content tr.cancelled {
  background-color: rgba(255, 0, 0, 0.08);
}
/* line 366, ../sass/components/_board.scss */
.block-airport-table .content .f_time {
  min-width: 90px;
  position: relative;
}
@media (min-width: 769px) {
  /* line 370, ../sass/components/_board.scss */
  .block-airport-table .content .f_time span {
    letter-spacing: 7px;
  }
}
/* line 376, ../sass/components/_board.scss */
.block-airport-table .content .f_time em {
  opacity: 0;
}
/* line 380, ../sass/components/_board.scss */
.block-airport-table .content .f_time[data-title] em {
  cursor: help;
  opacity: 1;
  line-height: 24px;
  font-size: 17px;
}
/* line 391, ../sass/components/_board.scss */
.block-airport-table .content [data-title]:after {
  position: absolute;
  transition: opacity ease-in 0.2s;
  transition-delay: 0.1s;
  opacity: 0;
  display: none;
  cursor: help;
  white-space: nowrap;
  text-indent: 0;
  content: attr(data-title);
  font-size: 16px;
  font-size: 1rem;
  color: #f27c38;
  font-weight: 400;
  font-style: italic;
  font-family: "Fira Sans", Helvetica, Arial, sans-serif;
  text-transform: none;
  padding: 0.3em 0.4em;
  height: 30px;
  letter-spacing: 0;
  background-color: white;
  border: 2px solid #f27c38;
  white-space: normal;
  line-height: 1;
  top: 50%;
  transform: translate(60%, -50%);
  right: 0;
  z-index: 100;
}
@media (min-width: 769px) {
  /* line 391, ../sass/components/_board.scss */
  .block-airport-table .content [data-title]:after {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media (min-width: 769px) {
  /* line 391, ../sass/components/_board.scss */
  .block-airport-table .content [data-title]:after {
    transform: translate(60%, -50%);
  }
}
/* line 433, ../sass/components/_board.scss */
.block-airport-table .content [data-title]:active:after,
.block-airport-table .content [data-title]:focus:after,
.block-airport-table .content [data-title]:hover:after {
  opacity: 1;
  display: block;
}
/* line 441, ../sass/components/_board.scss */
.block-airport-table .content td.f_airline [data-title]:after,
.block-airport-table .content td.f_number [data-title]:after {
  min-width: 5em;
}
@media (max-width: 768px) {
  /* line 449, ../sass/components/_board.scss */
  .block-airport-table .content .table-wrapper > em:before {
    content: 'Tap to show flight numbers';
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 2;
    font-weight: 200;
    font-style: italic;
    margin-bottom: 10px;
    display: inline-block;
    transition: all ease-out 0.4s;
  }
  /* line 460, ../sass/components/_board.scss */
  .block-airport-table .content .f_number,
  .block-airport-table .content .h_number {
    display: none;
  }
  /* line 466, ../sass/components/_board.scss */
  .block-airport-table .content .alt-view .f_number,
  .block-airport-table .content .alt-view .h_number {
    display: table-cell;
  }
  /* line 471, ../sass/components/_board.scss */
  .block-airport-table .content .alt-view .f_airline,
  .block-airport-table .content .alt-view .h_airline {
    display: none;
  }
}
/* line 478, ../sass/components/_board.scss */
.block-airport-table .content td.f_airline {
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 80%;
  text-indent: -9999px;
  transform: translate3d(0, 0, 0);
  transition: all 0.3s ease-in;
  position: relative;
}
@media (min-width: 769px) {
  /* line 478, ../sass/components/_board.scss */
  .block-airport-table .content td.f_airline {
    background-size: 60%;
    min-width: 5em;
  }
}
/* line 490, ../sass/components/_board.scss */
.block-airport-table .content td.f_airline a.flightracker {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: block;
  z-index: 90;
}
/* line 500, ../sass/components/_board.scss */
.block-airport-table .content td.f_gate {
  text-align: center;
}
@media (max-width: 768px) {
  /* line 503, ../sass/components/_board.scss */
  .block-airport-table .content .f_time_sch,
  .block-airport-table .content .h_time {
    display: none;
  }
}
/* line 509, ../sass/components/_board.scss */
.block-airport-table .content td {
  position: relative;
}

/* FILTER */
/* line 515, ../sass/components/_board.scss */
#filter {
  position: absolute;
  z-index: 9;
  top: 1px;
  top: 0;
  right: 0;
  color: #003d4d;
  border: 1px solid #003d4d;
  border-width: 0 0 0 1px;
  border-radius: 0;
  height: 48px;
  background-color: transparent;
  font-size: 28px;
  font-size: 1.75rem;
  font-style: normal;
  background-image: url("/icon/search/");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 24px center;
  padding-left: 55px;
  transition: all ease-in 0.3s;
}
@media (min-width: 1201px) {
  /* line 515, ../sass/components/_board.scss */
  #filter {
    height: 70px;
  }
}
@media (min-width: 481px) {
  /* line 537, ../sass/components/_board.scss */
  #filter::-webkit-input-placeholder {
    color: #003d4d;
    font-weight: 300;
    font-style: italic;
    font-size: 29px;
    font-size: 1.8125rem;
  }
  /* line 544, ../sass/components/_board.scss */
  #filter:-moz-placeholder {
    /* Firefox 18- */
    color: #003d4d;
    font-weight: 300;
    font-style: italic;
    font-size: 29px;
    font-size: 1.8125rem;
  }
  /* line 552, ../sass/components/_board.scss */
  #filter::-moz-placeholder {
    /* Firefox 19+ */
    color: #003d4d;
    font-weight: 300;
    font-style: italic;
    font-size: 29px;
    font-size: 1.8125rem;
  }
  /* line 560, ../sass/components/_board.scss */
  #filter:-ms-input-placeholder {
    color: #003d4d;
    font-weight: 300;
    font-style: italic;
    font-size: 29px;
    font-size: 1.8125rem;
  }
}
@media (min-width: 1201px) {
  /* line 568, ../sass/components/_board.scss */
  #filter::-webkit-input-placeholder {
    font-size: 31px;
    font-size: 1.9375rem;
  }
  /* line 572, ../sass/components/_board.scss */
  #filter:-moz-placeholder {
    /* Firefox 18- */
    font-size: 31px;
    font-size: 1.9375rem;
  }
  /* line 577, ../sass/components/_board.scss */
  #filter::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 31px;
    font-size: 1.9375rem;
  }
  /* line 582, ../sass/components/_board.scss */
  #filter:-ms-input-placeholder {
    font-size: 31px;
    font-size: 1.9375rem;
  }
}
@media (max-width: 480px) {
  /* line 515, ../sass/components/_board.scss */
  #filter {
    width: 46px;
    height: 50px;
    font-size: 28px;
    font-size: 1.75rem;
  }
  /* line 591, ../sass/components/_board.scss */
  #filter:focus {
    width: 100%;
    background-color: white;
    border-left: 0;
    border-bottom: 1px solid #003d4d;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  /* line 515, ../sass/components/_board.scss */
  #filter {
    width: 42%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  /* line 515, ../sass/components/_board.scss */
  #filter {
    width: 397px;
  }
}

/* TABS */
/* line 606, ../sass/components/_board.scss */
.board-tabs {
  border-bottom: 1px solid #003d4d;
  padding: 0;
}
@media (max-width: 768px) {
  /* line 606, ../sass/components/_board.scss */
  .board-tabs {
    margin-left: -11px;
    margin-right: -11px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  /* line 606, ../sass/components/_board.scss */
  .board-tabs {
    margin: 0 -20px 1em;
  }
}
/* line 617, ../sass/components/_board.scss */
.board-tabs li {
  list-style: none;
  display: inline-block;
  position: relative;
  bottom: -1px;
}
/* line 625, ../sass/components/_board.scss */
.board-tabs a {
  padding: 10px;
  display: inline-block;
  color: #003d4d;
  font-size: 26px;
  font-size: 1.625rem;
  /*****************************************/
  /*****************************************/
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  border-bottom: 0;
  border-left: 0;
  position: relative;
  left: 1px;
  outline: 0;
  transition: none;
}
@media (min-width: 769px) {
  /* line 625, ../sass/components/_board.scss */
  .board-tabs a {
    margin-left: 35px;
    text-indent: -6px;
    padding: 5px 20px 5px 10px;
  }
}
/* line 657, ../sass/components/_board.scss */
.board-tabs a.active,
.board-tabs a.temp-active {
  color: #003d4d;
  border: 1px solid #003d4d;
  border-bottom: 1px solid white;
}
@media (min-width: 769px) {
  /* line 657, ../sass/components/_board.scss */
  .board-tabs a.active,
  .board-tabs a.temp-active {
    border-left: 0;
  }
  /* line 665, ../sass/components/_board.scss */
  .board-tabs a.active:before,
  .board-tabs a.temp-active:before {
    content: '';
    position: absolute;
    top: -1px;
    left: -23px;
    bottom: -1px;
    width: 10px;
    background: transparent;
    border-radius: 0 0 7px 0;
    border-right: 1px solid #003d4d;
    border-bottom: 1px solid #003d4d;
    transform: skew(-30deg);
  }
  /* line 680, ../sass/components/_board.scss */
  .board-tabs a.active::after,
  .board-tabs a.temp-active::after {
    content: '';
    background-color: white;
    height: 1px;
    width: 100px;
    display: block;
    position: absolute;
    left: -30px;
    bottom: -1px;
  }
}
@media (max-width: 768px) {
  /* line 695, ../sass/components/_board.scss */
  .board-tabs li:first-child a.active, .board-tabs li:first-child a.temp-active {
    border-left: none;
  }
}
@media (min-width: 1201px) {
  /* line 702, ../sass/components/_board.scss */
  .board-tabs a {
    font-size: 42px;
    font-size: 2.625rem;
    font-weight: 500;
    text-indent: 5px;
  }
  /* line 707, ../sass/components/_board.scss */
  .board-tabs a.active:before, .board-tabs a.temp-active:before {
    left: -30px;
  }
  /* line 712, ../sass/components/_board.scss */
  .board-tabs a.active:after, .board-tabs a.temp-active:after {
    left: -45px;
  }
}

/* line 720, ../sass/components/_board.scss */
#block-airport-table-airport-board {
  padding: 0 !important;
  margin-top: 20px;
}
@media (min-width: 769px) {
  /* line 720, ../sass/components/_board.scss */
  #block-airport-table-airport-board {
    margin-top: 40px;
  }
}

/* line 728, ../sass/components/_board.scss */
#block-airport-table-airport-arr-table,
#block-airport-table-airport-dep-table {
  padding: 0 !important;
  position: relative;
}
/* line 733, ../sass/components/_board.scss */
#block-airport-table-airport-arr-table #filter,
#block-airport-table-airport-dep-table #filter {
  position: static;
  max-width: none;
  border: none;
  border-bottom: 1px solid;
  z-index: 10;
  height: auto;
  width: 100%;
}

/* @include to(tablet-p) {
  .table-wrapper {
    padding: 0 10px;
  }
} */
/* Hide Flight number flappers on mobile, beacause theiy are hidden on reload */
@media (max-width: 768px) {
  /* line 752, ../sass/components/_board.scss */
  .f_number input {
    display: none;
  }
  /* line 756, ../sass/components/_board.scss */
  .f_number span {
    display: inline !important;
  }
}
/*
* Full width FLUID FIX (+1400px)
*/
@media (min-width: 1400px) {
  /* line 766, ../sass/components/_board.scss */
  #block-airport-table-airport-board #arrivals,
  #block-airport-table-airport-board #departures {
    margin-top: 20px;
    padding-top: 60px;
    padding-top: calc(55px + 1em);
  }

  /* TABS */
  /* line 774, ../sass/components/_board.scss */
  .board-tabs {
    border-bottom: 1px solid #003d4d;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    width: 100vw;
    margin: 0;
    padding-left: calc(((100vw - 1400px) / 2) + 12px);
  }
}
/* line 1, ../sass/components/_alert.scss */
#block-views-alert-block {
  background-color: white;
}
/* line 7, ../sass/components/_alert.scss */
#block-views-alert-block .alert-wrapper {
  font-size: 16px;
  font-size: 1rem;
}
/* line 10, ../sass/components/_alert.scss */
#block-views-alert-block .alert-wrapper .close-alert {
  border-radius: 2px;
  color: #003d4d;
  font-size: 34px;
  position: absolute;
  top: -5px;
  right: 5px;
  display: block;
  height: 26px;
  width: 26px;
  line-height: 24px;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
}
/* line 26, ../sass/components/_alert.scss */
#block-views-alert-block .alert-wrapper [class^='alert-']::before {
  font-size: 26px;
  font-size: 1.625rem;
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  opacity: 1;
}
@media (min-width: 769px) {
  /* line 26, ../sass/components/_alert.scss */
  #block-views-alert-block .alert-wrapper [class^='alert-']::before {
    left: 0px;
  }
}
/* line 41, ../sass/components/_alert.scss */
#block-views-alert-block .alert-wrapper .alert-com::before {
  color: #f49031;
  content: "" !important;
}
/* line 45, ../sass/components/_alert.scss */
#block-views-alert-block .alert-wrapper .alert-war::before {
  color: #F17525;
}
/* line 48, ../sass/components/_alert.scss */
#block-views-alert-block .alert-wrapper .alert-sev::before {
  color: #bd3223;
}
/* line 51, ../sass/components/_alert.scss */
#block-views-alert-block .alert-wrapper .node-alert {
  margin-top: 15px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 40px;
}
@media (min-width: 769px) {
  /* line 51, ../sass/components/_alert.scss */
  #block-views-alert-block .alert-wrapper .node-alert {
    padding-left: 50px;
  }
}
/* line 60, ../sass/components/_alert.scss */
#block-views-alert-block .alert-wrapper .node-alert p,
#block-views-alert-block .alert-wrapper .node-alert .field {
  margin: 0;
}
/* line 64, ../sass/components/_alert.scss */
#block-views-alert-block .alert-wrapper .node-alert h2 {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
}
/* line 71, ../sass/components/_alert.scss */
#block-views-alert-block .alert-wrapper .node-alert ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
/* line 76, ../sass/components/_alert.scss */
#block-views-alert-block .alert-wrapper .node-alert .field-name-field-alert-link a,
#block-views-alert-block .alert-wrapper .node-alert .node-readmore a {
  color: #003d4d;
  font-weight: 600;
}
/* line 80, ../sass/components/_alert.scss */
#block-views-alert-block .alert-wrapper .node-alert .field-name-field-alert-link a::after,
#block-views-alert-block .alert-wrapper .node-alert .node-readmore a::after {
  font-size: 12px;
  font-size: 0.75rem;
  content: "";
  margin-left: 8px;
}

/* ---------- Import design ---------- */
/**
 * Layout
 *
 * All layout theming should go in this file
 */
/* line 20, ../sass/design/_layout.scss */
.container, #block-views-alert-block .alert-wrapper, footer .footer-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  *zoom: 1;
  padding: 0 10px;
}
/* line 122, ../sass/base/_mixins.scss */
.container:before, #block-views-alert-block .alert-wrapper:before, footer .footer-wrapper:before, .container:after, #block-views-alert-block .alert-wrapper:after, footer .footer-wrapper:after {
  content: '';
  display: table;
}
/* line 127, ../sass/base/_mixins.scss */
.container:after, #block-views-alert-block .alert-wrapper:after, footer .footer-wrapper:after {
  clear: both;
}
@media (min-width: 769px) {
  /* line 20, ../sass/design/_layout.scss */
  .container, #block-views-alert-block .alert-wrapper, footer .footer-wrapper {
    padding: 0 20px;
  }
}

@media (min-width: 769px) {
  /* line 34, ../sass/design/_layout.scss */
  .one-sidebar.sidebar-first .main {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 74.25%;
    margin-left: 0%;
    margin-right: 3%;
    position: relative;
    left: 25.75%;
  }
  /* line 122, ../sass/base/_mixins.scss */
  .one-sidebar.sidebar-first .main:before, .one-sidebar.sidebar-first .main:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  .one-sidebar.sidebar-first .main:after {
    clear: both;
  }
  /* line 56, ../sass/jeet/_grid.scss */
  .one-sidebar.sidebar-first .main:last-child {
    margin-right: 0%;
  }
  /* line 41, ../sass/design/_layout.scss */
  .one-sidebar.sidebar-second .main {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 74.25%;
    margin-left: 0%;
    margin-right: 3%;
  }
  /* line 122, ../sass/base/_mixins.scss */
  .one-sidebar.sidebar-second .main:before, .one-sidebar.sidebar-second .main:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  .one-sidebar.sidebar-second .main:after {
    clear: both;
  }
  /* line 56, ../sass/jeet/_grid.scss */
  .one-sidebar.sidebar-second .main:last-child {
    margin-right: 0%;
  }
  /* line 47, ../sass/design/_layout.scss */
  .one-sidebar aside.sidebar_first {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
    position: relative;
    left: -77.25%;
  }
  /* line 122, ../sass/base/_mixins.scss */
  .one-sidebar aside.sidebar_first:before, .one-sidebar aside.sidebar_first:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  .one-sidebar aside.sidebar_first:after {
    clear: both;
  }
  /* line 56, ../sass/jeet/_grid.scss */
  .one-sidebar aside.sidebar_first:last-child {
    margin-right: 0%;
  }
  /* line 52, ../sass/design/_layout.scss */
  .one-sidebar aside.sidebar_second {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
  }
  /* line 122, ../sass/base/_mixins.scss */
  .one-sidebar aside.sidebar_second:before, .one-sidebar aside.sidebar_second:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  .one-sidebar aside.sidebar_second:after {
    clear: both;
  }
  /* line 56, ../sass/jeet/_grid.scss */
  .one-sidebar aside.sidebar_second:last-child {
    margin-right: 0%;
  }

  /* line 59, ../sass/design/_layout.scss */
  .two-sidebars .main {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
    position: relative;
    left: 25.75%;
  }
  /* line 122, ../sass/base/_mixins.scss */
  .two-sidebars .main:before, .two-sidebars .main:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  .two-sidebars .main:after {
    clear: both;
  }
  /* line 56, ../sass/jeet/_grid.scss */
  .two-sidebars .main:last-child {
    margin-right: 0%;
  }
  /* line 64, ../sass/design/_layout.scss */
  .two-sidebars .sidebar_first {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
    position: relative;
    left: -51.5%;
  }
  /* line 122, ../sass/base/_mixins.scss */
  .two-sidebars .sidebar_first:before, .two-sidebars .sidebar_first:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  .two-sidebars .sidebar_first:after {
    clear: both;
  }
  /* line 56, ../sass/jeet/_grid.scss */
  .two-sidebars .sidebar_first:last-child {
    margin-right: 0%;
  }
  /* line 69, ../sass/design/_layout.scss */
  .two-sidebars .sidebar_second {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
  }
  /* line 122, ../sass/base/_mixins.scss */
  .two-sidebars .sidebar_second:before, .two-sidebars .sidebar_second:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  .two-sidebars .sidebar_second:after {
    clear: both;
  }
  /* line 56, ../sass/jeet/_grid.scss */
  .two-sidebars .sidebar_second:last-child {
    margin-right: 0%;
  }
}
/* DEBUG STUFF */
/*
body {
  &:after {
    content: '';
    position: fixed;
    @include font-size(12);
    bottom: 0;
    left: 0;
    z-index: 10000000;
    padding: 5px;
    color: #fff;
    @include at(mobile) {
      background-color: transparentize(green, 0.4);
      content: 'mobile';
    }

    @include at(tablet-p) {
      background-color: transparentize(blue, 0.4);
      content: 'tablet-p';
    }

    @include at(tablet-l) {
      background-color: transparentize(red, 0.4);
      content: 'tablet-l';
    }

    @include at(desktop) {
      background-color: transparentize(yellow, 0.4);
      content: 'desktop';
    }

    @include from(desktop-xl) {
      content: 'out-of-range';
    }

    @include at(desktop-xl) {
      background-color: transparentize(black, 0.4);
      content: 'desktop-xl';
    }
  }
}
*/
/* line 44, ../sass/design/_design.scss */
.content-area-wrapper {
  -webkit-user-select: initial;
  -webkit-user-drag: initial;
}

/*
 * Design
 *
 * Include all your design elements in this file.
 */
/* line 55, ../sass/design/_design.scss */
.three-animal-cols .img-center {
  text-align: center;
  padding-top: 1em;
}
/* line 60, ../sass/design/_design.scss */
.three-animal-cols h3 {
  line-height: 1;
}
/* line 63, ../sass/design/_design.scss */
.three-animal-cols h3, .three-animal-cols li, .three-animal-cols a {
  color: white;
}
/* line 68, ../sass/design/_design.scss */
.three-animal-cols a.button {
  background-color: #003145;
  color: white;
}
/* line 71, ../sass/design/_design.scss */
.three-animal-cols a.button:hover {
  background-color: white;
  color: #003145;
}
/* line 76, ../sass/design/_design.scss */
.three-animal-cols .col-one-third {
  border: 1px solid transparent;
}
/* line 79, ../sass/design/_design.scss */
.three-animal-cols .col-one-third:nth-child(1) {
  background-color: #d2755d;
}
/* line 82, ../sass/design/_design.scss */
.three-animal-cols .col-one-third:nth-child(2) {
  background-color: #ffb93f;
}
/* line 85, ../sass/design/_design.scss */
.three-animal-cols .col-one-third:nth-child(3) {
  background-color: #5bbbb7;
}

/* line 91, ../sass/design/_design.scss */
body {
  background: #fff;
  color: #003d4d;
  overflow-x: hidden;
}

/* line 97, ../sass/design/_design.scss */
p {
  font-weight: 300;
}

/* line 101, ../sass/design/_design.scss */
a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #f27c38;
  text-decoration: none;
}
/* line 105, ../sass/design/_design.scss */
a:hover, a:focus {
  color: #f27c38;
}
/* line 109, ../sass/design/_design.scss */
.node a {
  font-weight: 400;
}
/* line 111, ../sass/design/_design.scss */
.node a:hover {
  text-decoration: underline;
}
/* line 115, ../sass/design/_design.scss */
.node a.button:hover {
  text-decoration: none;
}

/* line 122, ../sass/design/_design.scss */
.content-area-wrapper .content-wrapper {
  padding-bottom: 80px;
}

/* line 126, ../sass/design/_design.scss */
.node {
  font-weight: 300;
}
/* line 131, ../sass/design/_design.scss */
.node .layout-row {
  display: flex;
}

/* line 137, ../sass/design/_design.scss */
article a:not([href]), article a:not([href]):hover, article a:not([href]):focus {
  color: #003d4d;
}

/* line 144, ../sass/design/_design.scss */
span.ext {
  background: none;
  width: 10px;
  height: 10px;
  padding-right: 12px;
  text-decoration: none;
}
/* line 150, ../sass/design/_design.scss */
span.ext::before {
  content: "";
  position: relative;
  top: 2px;
  left: 5px;
}

/* line 162, ../sass/design/_design.scss */
.box-highlight.tip {
  max-width: 640px;
}
/* line 165, ../sass/design/_design.scss */
.box-highlight a {
  color: #f49031;
  font-weight: 500;
}

/* line 171, ../sass/design/_design.scss */
.field {
  margin-bottom: 1em;
}
/* line 173, ../sass/design/_design.scss */
.field .field-label {
  font-weight: 700;
}

/* line 183, ../sass/design/_design.scss */
.top-header {
  background-color: white;
}

/* Weather*/
@font-face {
  font-family: 'weather';
  src: url("../fonts/artill_clean_icons-webfont.eot");
  src: url("../fonts/artill_clean_icons-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/artill_clean_icons-webfont.woff") format("woff"), url("../fonts/artill_clean_icons-webfont.ttf") format("truetype"), url("../fonts/artill_clean_icons-webfont.svg#artill_clean_weather_iconsRg") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* line 197, ../sass/design/_design.scss */
#simple-weather {
  text-transform: uppercase;
}
/* line 199, ../sass/design/_design.scss */
#simple-weather i {
  font-size: 1.46em;
  font-family: weather;
  font-weight: 500;
  font-style: normal;
  line-height: 1.0;
}
/* line 206, ../sass/design/_design.scss */
#simple-weather .ico-load:before {
  content: "*";
}
/* line 209, ../sass/design/_design.scss */
#simple-weather .ico-0:before {
  content: ":";
}
/* line 212, ../sass/design/_design.scss */
#simple-weather .ico-1:before {
  content: "p";
}
/* line 215, ../sass/design/_design.scss */
#simple-weather .ico-2:before {
  content: "S";
}
/* line 218, ../sass/design/_design.scss */
#simple-weather .ico-3:before {
  content: "Q";
}
/* line 221, ../sass/design/_design.scss */
#simple-weather .ico-4:before {
  content: "S";
}
/* line 224, ../sass/design/_design.scss */
#simple-weather .ico-5:before {
  content: "W";
}
/* line 227, ../sass/design/_design.scss */
#simple-weather .ico-6:before {
  content: "W";
}
/* line 230, ../sass/design/_design.scss */
#simple-weather .ico-7:before {
  content: "W";
}
/* line 233, ../sass/design/_design.scss */
#simple-weather .ico-8:before {
  content: "W";
}
/* line 236, ../sass/design/_design.scss */
#simple-weather .ico-9:before {
  content: "I";
}
/* line 239, ../sass/design/_design.scss */
#simple-weather .ico-10:before {
  content: "W";
}
/* line 242, ../sass/design/_design.scss */
#simple-weather .ico-11:before {
  content: "I";
}
/* line 245, ../sass/design/_design.scss */
#simple-weather .ico-12:before {
  content: "I";
}
/* line 248, ../sass/design/_design.scss */
#simple-weather .ico-13:before {
  content: "I";
}
/* line 251, ../sass/design/_design.scss */
#simple-weather .ico-14:before {
  content: "I";
}
/* line 254, ../sass/design/_design.scss */
#simple-weather .ico-15:before {
  content: "W";
}
/* line 257, ../sass/design/_design.scss */
#simple-weather .ico-16:before {
  content: "I";
}
/* line 260, ../sass/design/_design.scss */
#simple-weather .ico-17:before {
  content: "W";
}
/* line 263, ../sass/design/_design.scss */
#simple-weather .ico-18:before {
  content: "U";
}
/* line 266, ../sass/design/_design.scss */
#simple-weather .ico-19:before {
  content: "Z";
}
/* line 269, ../sass/design/_design.scss */
#simple-weather .ico-20:before {
  content: "Z";
}
/* line 272, ../sass/design/_design.scss */
#simple-weather .ico-21:before {
  content: "Z";
}
/* line 275, ../sass/design/_design.scss */
#simple-weather .ico-22:before {
  content: "Z";
}
/* line 278, ../sass/design/_design.scss */
#simple-weather .ico-23:before {
  content: "Z";
}
/* line 281, ../sass/design/_design.scss */
#simple-weather .ico-24:before {
  content: "E";
}
/* line 284, ../sass/design/_design.scss */
#simple-weather .ico-25:before {
  content: "E";
}
/* line 287, ../sass/design/_design.scss */
#simple-weather .ico-26:before {
  content: "3";
}
/* line 290, ../sass/design/_design.scss */
#simple-weather .ico-27:before {
  content: "a";
}
/* line 293, ../sass/design/_design.scss */
#simple-weather .ico-28:before {
  content: "A";
}
/* line 296, ../sass/design/_design.scss */
#simple-weather .ico-29:before {
  content: "a";
}
/* line 299, ../sass/design/_design.scss */
#simple-weather .ico-30:before {
  content: "A";
}
/* line 302, ../sass/design/_design.scss */
#simple-weather .ico-31:before {
  content: "6";
}
/* line 305, ../sass/design/_design.scss */
#simple-weather .ico-32:before {
  content: "1";
}
/* line 308, ../sass/design/_design.scss */
#simple-weather .ico-33:before {
  content: "6";
}
/* line 311, ../sass/design/_design.scss */
#simple-weather .ico-34:before {
  content: "1";
}
/* line 314, ../sass/design/_design.scss */
#simple-weather .ico-35:before {
  content: "W";
}
/* line 317, ../sass/design/_design.scss */
#simple-weather .ico-36:before {
  content: "1";
}
/* line 320, ../sass/design/_design.scss */
#simple-weather .ico-37:before {
  content: "S";
}
/* line 323, ../sass/design/_design.scss */
#simple-weather .ico-38:before {
  content: "S";
}
/* line 326, ../sass/design/_design.scss */
#simple-weather .ico-39:before {
  content: "S";
}
/* line 329, ../sass/design/_design.scss */
#simple-weather .ico-40:before {
  content: "M";
}
/* line 332, ../sass/design/_design.scss */
#simple-weather .ico-41:before {
  content: "W";
}
/* line 335, ../sass/design/_design.scss */
#simple-weather .ico-42:before {
  content: "I";
}
/* line 338, ../sass/design/_design.scss */
#simple-weather .ico-43:before {
  content: "W";
}
/* line 341, ../sass/design/_design.scss */
#simple-weather .ico-44:before {
  content: "a";
}
/* line 344, ../sass/design/_design.scss */
#simple-weather .ico-45:before {
  content: "S";
}
/* line 347, ../sass/design/_design.scss */
#simple-weather .ico-46:before {
  content: "U";
}
/* line 350, ../sass/design/_design.scss */
#simple-weather .ico-47:before {
  content: "S";
}
/* line 353, ../sass/design/_design.scss */
#simple-weather ul {
  margin: 0;
  padding: 0;
}
/* line 357, ../sass/design/_design.scss */
#simple-weather li {
  background: #fff;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  display: inline-block;
  border-radius: 5px;
}
/* line 364, ../sass/design/_design.scss */
#simple-weather .currently {
  margin: 0 20px;
}

/* Slick slider base */
/* line 371, ../sass/design/_design.scss */
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

/* line 387, ../sass/design/_design.scss */
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
/* line 393, ../sass/design/_design.scss */
.slick-list:focus {
  outline: none;
}
/* line 396, ../sass/design/_design.scss */
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

/* line 402, ../sass/design/_design.scss */
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* line 411, ../sass/design/_design.scss */
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
/* line 416, ../sass/design/_design.scss */
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
/* line 421, ../sass/design/_design.scss */
.slick-track:after {
  clear: both;
}
/* line 424, ../sass/design/_design.scss */
.slick-loading .slick-track {
  visibility: hidden;
}

/* line 429, ../sass/design/_design.scss */
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
/* line 433, ../sass/design/_design.scss */
[dir="rtl"] .slick-slide {
  float: right;
}
/* line 436, ../sass/design/_design.scss */
.slick-slide img {
  display: block;
}
/* line 439, ../sass/design/_design.scss */
.slick-slide.slick-loading img {
  display: none;
}
/* line 443, ../sass/design/_design.scss */
.slick-slide.dragging img {
  pointer-events: none;
}
/* line 446, ../sass/design/_design.scss */
.slick-initialized .slick-slide {
  display: block;
}
/* line 449, ../sass/design/_design.scss */
.slick-loading .slick-slide {
  visibility: hidden;
}
/* line 452, ../sass/design/_design.scss */
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* line 459, ../sass/design/_design.scss */
.slick-arrow.slick-hidden {
  display: none;
}

/* NEWSLETTER CTA */
/* line 466, ../sass/design/_design.scss */
#block-block-7 {
  *zoom: 1;
  text-align: center;
  margin-bottom: 3em;
}
/* line 122, ../sass/base/_mixins.scss */
#block-block-7:before, #block-block-7:after {
  content: '';
  display: table;
}
/* line 127, ../sass/base/_mixins.scss */
#block-block-7:after {
  clear: both;
}
@media (min-width: 769px) {
  /* line 466, ../sass/design/_design.scss */
  #block-block-7 {
    margin-bottom: 1em;
  }
  /* line 472, ../sass/design/_design.scss */
  #block-block-7 .newsletter-paragraph {
    line-height: 2;
  }
}
/* line 477, ../sass/design/_design.scss */
#block-block-7 .newsletter-button .button {
  width: 100%;
  color: white;
  background: #f27c38;
  font-weight: bold;
}
/* line 482, ../sass/design/_design.scss */
#block-block-7 .newsletter-button .button:hover {
  color: #f27c38;
  background: white;
  border-color: white;
}
@media (min-width: 769px) and (max-width: 1024px) {
  /* line 490, ../sass/design/_design.scss */
  #block-block-7 .newsletter-paragraph,
  #block-block-7 .newsletter-button {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
  }
  /* line 122, ../sass/base/_mixins.scss */
  #block-block-7 .newsletter-paragraph:before, #block-block-7 .newsletter-paragraph:after,
  #block-block-7 .newsletter-button:before,
  #block-block-7 .newsletter-button:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  #block-block-7 .newsletter-paragraph:after,
  #block-block-7 .newsletter-button:after {
    clear: both;
  }
  /* line 56, ../sass/jeet/_grid.scss */
  #block-block-7 .newsletter-paragraph:last-child,
  #block-block-7 .newsletter-button:last-child {
    margin-right: 0%;
  }
}
@media (min-width: 1025px) {
  /* line 497, ../sass/design/_design.scss */
  #block-block-7 .newsletter-paragraph {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 58.8%;
    margin-left: 0%;
    margin-right: 3%;
  }
  /* line 122, ../sass/base/_mixins.scss */
  #block-block-7 .newsletter-paragraph:before, #block-block-7 .newsletter-paragraph:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  #block-block-7 .newsletter-paragraph:after {
    clear: both;
  }
  /* line 56, ../sass/jeet/_grid.scss */
  #block-block-7 .newsletter-paragraph:last-child {
    margin-right: 0%;
  }
  /* line 500, ../sass/design/_design.scss */
  #block-block-7 .newsletter-button {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 38.2%;
    margin-left: 0%;
    margin-right: 3%;
  }
  /* line 122, ../sass/base/_mixins.scss */
  #block-block-7 .newsletter-button:before, #block-block-7 .newsletter-button:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  #block-block-7 .newsletter-button:after {
    clear: both;
  }
  /* line 56, ../sass/jeet/_grid.scss */
  #block-block-7 .newsletter-button:last-child {
    margin-right: 0%;
  }
}

/* line 507, ../sass/design/_design.scss */
.page-node-157 h2#wifi::after {
  content: "";
  margin-left: 0.3em;
}

/* line 518, ../sass/design/_design.scss */
#drafts-table td {
  vertical-align: middle;
}
/* line 520, ../sass/design/_design.scss */
#drafts-table td img {
  border: 1px solid #f27c38;
}
/* line 523, ../sass/design/_design.scss */
#drafts-table td a:hover img {
  border: 1px solid #f27c38;
}

/* line 532, ../sass/design/_design.scss */
a.video {
  display: inline-block;
  text-align: center;
  margin: 1em auto;
  position: relative;
  line-height: 0;
}
/* line 539, ../sass/design/_design.scss */
a.video::after {
  transition: all 0.2s ease-in;
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 0 50px 100px;
  border-color: transparent transparent transparent white;
}
/* line 554, ../sass/design/_design.scss */
a.video:hover::after {
  border-color: transparent transparent transparent #f27c38;
}
/* line 557, ../sass/design/_design.scss */
a.video::before {
  transition: all 0.2s ease-in;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.2);
}
/* line 568, ../sass/design/_design.scss */
a.video:hover::before {
  background: rgba(0, 0, 0, 0.35);
}
/* line 572, ../sass/design/_design.scss */
a.video img {
  margin: 0;
  line-height: 0;
}

/**
 * Footer
 */
/**
 * Help center
 */
/* line 8, ../sass/design/_footer.scss */
.help-centre {
  background: #F7AB3D;
  background: linear-gradient(135deg, #F17525 0%, #F17525 35%, #F7AB3D 65%, #F7AB3D 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$yellow-dark', endColorstr='$yellow-light', GradientType=1 );
  color: #fff;
  padding: 5px 0;
  text-align: left;
  font-style: italic;
  font-weight: 400;
  font-size: 21px;
  font-size: 1.3125rem;
  position: relative;
  border-bottom: 3px solid #222;
  line-height: 32px;
}
@media (min-width: 769px) {
  /* line 8, ../sass/design/_footer.scss */
  .help-centre {
    padding: 40px 0;
    text-align: center;
  }
}
/* line 30, ../sass/design/_footer.scss */
.help-centre::before {
  content: "";
  float: left;
  line-height: 32px;
  display: inline-block;
  padding: 0 0.75em;
  margin-right: 0.75em;
  border-right: 1px solid white;
  font-size: 28px;
  font-size: 1.75rem;
}
/* line 40, ../sass/design/_footer.scss */
.help-centre::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

/**
 * Fat footer
 */
/* line 53, ../sass/design/_footer.scss */
footer {
  font-weight: 300;
  *zoom: 1;
  color: #fff;
  background-color: #363636;
}
/* line 122, ../sass/base/_mixins.scss */
footer:before, footer:after {
  content: '';
  display: table;
}
/* line 127, ../sass/base/_mixins.scss */
footer:after {
  clear: both;
}
@media (min-width: 1025px) {
  /* line 53, ../sass/design/_footer.scss */
  footer {
    background: linear-gradient(to right, #363636 76%, #363636 76%, #464646 76%, #464646 100%);
  }
}
/* line 62, ../sass/design/_footer.scss */
footer a {
  color: #fff;
}
/* line 64, ../sass/design/_footer.scss */
footer a:hover {
  color: #f27c38;
}
/* line 68, ../sass/design/_footer.scss */
footer .footer-wrapper {
  font-size: 16px;
  font-size: 1rem;
  padding: 0;
  overflow: hidden;
  position: relative;
}
/* line 75, ../sass/design/_footer.scss */
footer .menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
/* line 79, ../sass/design/_footer.scss */
footer .menu li:not(:last-child) {
  margin-bottom: 1em;
}

/* line 85, ../sass/design/_footer.scss */
.footer-links {
  background-color: #363636;
  margin: 40px 0 0;
}
/* line 88, ../sass/design/_footer.scss */
.footer-links .block h2 {
  display: none;
}

/* line 93, ../sass/design/_footer.scss */
.footer-navigation {
  margin-bottom: 40px;
}

/* line 97, ../sass/design/_footer.scss */
.footer-contact {
  background-color: #464646;
  padding: 40px 0;
}
/* line 100, ../sass/design/_footer.scss */
.footer-contact #logo-footer img {
  transform: scale(0.99);
  filter: grayscale(100%) brightness(10);
  width: 50%;
}
/* line 105, ../sass/design/_footer.scss */
.footer-contact .store-links a {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%;
  text-align: center;
}
/* line 122, ../sass/base/_mixins.scss */
.footer-contact .store-links a:before, .footer-contact .store-links a:after {
  content: '';
  display: table;
}
/* line 127, ../sass/base/_mixins.scss */
.footer-contact .store-links a:after {
  clear: both;
}
/* line 47, ../sass/jeet/_grid.scss */
.footer-contact .store-links a:nth-of-type(2n) {
  margin-right: 0%;
  float: right;
}
/* line 51, ../sass/jeet/_grid.scss */
.footer-contact .store-links a:nth-of-type(2n + 1) {
  clear: both;
}
/* line 108, ../sass/design/_footer.scss */
.footer-contact .store-links a img {
  width: 100%;
  max-width: 170px;
}

@media (min-width: 1025px) {
  /* line 116, ../sass/design/_footer.scss */
  .footer-links {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 64.98%;
    margin-left: 0%;
    margin-right: 3%;
  }
  /* line 122, ../sass/base/_mixins.scss */
  .footer-links:before, .footer-links:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  .footer-links:after {
    clear: both;
  }
  /* line 56, ../sass/jeet/_grid.scss */
  .footer-links:last-child {
    margin-right: 0%;
  }
  /* line 118, ../sass/design/_footer.scss */
  .footer-links .footer-navigation {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 17.6%;
    margin-left: 0%;
    margin-right: 3%;
  }
  /* line 122, ../sass/base/_mixins.scss */
  .footer-links .footer-navigation:before, .footer-links .footer-navigation:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  .footer-links .footer-navigation:after {
    clear: both;
  }
  /* line 47, ../sass/jeet/_grid.scss */
  .footer-links .footer-navigation:nth-of-type(5n) {
    margin-right: 0%;
    float: right;
  }
  /* line 51, ../sass/jeet/_grid.scss */
  .footer-links .footer-navigation:nth-of-type(5n + 1) {
    clear: both;
  }

  /* line 122, ../sass/design/_footer.scss */
  .footer-contact {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 30.99%;
    margin-left: 0%;
    margin-right: 3%;
    margin-right: 0%;
    float: right;
  }
  /* line 122, ../sass/base/_mixins.scss */
  .footer-contact:before, .footer-contact:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  .footer-contact:after {
    clear: both;
  }
  /* line 56, ../sass/jeet/_grid.scss */
  .footer-contact:last-child {
    margin-right: 0%;
  }

  /* line 127, ../sass/design/_footer.scss */
  .footer-bottom {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 64.98%;
    margin-left: 0%;
    margin-right: 3%;
  }
  /* line 122, ../sass/base/_mixins.scss */
  .footer-bottom:before, .footer-bottom:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  .footer-bottom:after {
    clear: both;
  }
  /* line 56, ../sass/jeet/_grid.scss */
  .footer-bottom:last-child {
    margin-right: 0%;
  }
}
@media (max-width: 1024px) {
  /* line 135, ../sass/design/_footer.scss */
  .footer-links .footer-navigation {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%;
  }
  /* line 122, ../sass/base/_mixins.scss */
  .footer-links .footer-navigation:before, .footer-links .footer-navigation:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  .footer-links .footer-navigation:after {
    clear: both;
  }
  /* line 47, ../sass/jeet/_grid.scss */
  .footer-links .footer-navigation:nth-of-type(3n) {
    margin-right: 0%;
    float: right;
  }
  /* line 51, ../sass/jeet/_grid.scss */
  .footer-links .footer-navigation:nth-of-type(3n + 1) {
    clear: both;
  }
}
/* line 142, ../sass/design/_footer.scss */
.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid #464646;
  color: #aaa;
}
@media (min-width: 769px) {
  /* line 142, ../sass/design/_footer.scss */
  .footer-bottom {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
/* line 150, ../sass/design/_footer.scss */
.footer-bottom .copy {
  margin-right: 2em;
}
@media (max-width: 1200px) {
  /* line 150, ../sass/design/_footer.scss */
  .footer-bottom .copy {
    display: block;
    margin-bottom: 2em;
  }
}
/* line 157, ../sass/design/_footer.scss */
.footer-bottom .menu {
  display: inline;
}
@media (max-width: 1024px) {
  /* line 157, ../sass/design/_footer.scss */
  .footer-bottom .menu {
    display: block;
    margin-bottom: 2em;
  }
}
/* line 164, ../sass/design/_footer.scss */
.footer-bottom .menu li {
  display: inline;
}
/* line 166, ../sass/design/_footer.scss */
.footer-bottom .menu li:not(:last-child)::after {
  content: " | ";
}
/* line 171, ../sass/design/_footer.scss */
.footer-bottom .credit {
  margin-bottom: 1em;
  display: block;
}
@media (min-width: 1025px) {
  /* line 171, ../sass/design/_footer.scss */
  .footer-bottom .credit {
    display: inline;
    float: right;
    margin-left: 2em;
  }
}
/* line 180, ../sass/design/_footer.scss */
.footer-bottom a {
  color: #aaa;
}
/* line 182, ../sass/design/_footer.scss */
.footer-bottom a:hover {
  color: #fff;
}

/**
 * Sections Icons
 */
/* line 191, ../sass/design/_footer.scss */
.footer-links .block-menu-block,
[id^="block-menu-menu-foo-"] {
  font-size: 20px;
  font-size: 1.25rem;
}
@media (min-width: 769px) {
  /* line 191, ../sass/design/_footer.scss */
  .footer-links .block-menu-block,
  [id^="block-menu-menu-foo-"] {
    font-size: 16px;
    font-size: 1rem;
  }
}
/* line 198, ../sass/design/_footer.scss */
.footer-links .block-menu-block::before,
[id^="block-menu-menu-foo-"]::before {
  color: #f27c38;
  font-size: 46px;
  font-size: 2.875rem;
  margin-bottom: 20px;
  display: block;
}

/* line 209, ../sass/design/_footer.scss */
#block-menu-block-8::before,
#block-menu-menu-foo-flights::before {
  content: "";
}

/* line 216, ../sass/design/_footer.scss */
#block-menu-block-9::before,
#block-menu-menu-foo-cars::before {
  content: "";
}

/* line 223, ../sass/design/_footer.scss */
#block-menu-block-10::before,
#block-menu-menu-foo-airport::before {
  content: "";
}

/* line 230, ../sass/design/_footer.scss */
#block-menu-block-11::before,
#block-menu-menu-foo-business::before {
  content: "";
}

/* line 236, ../sass/design/_footer.scss */
#block-menu-block-7::before {
  content: "";
}

/**
 * Contacts
 */
/* line 248, ../sass/design/_footer.scss */
.footer-contact .social .twitter::before,
.footer-contact .social .facebook::before {
  color: #f27c38;
  font-size: 62px;
  font-size: 3.875rem;
}
/* line 254, ../sass/design/_footer.scss */
.footer-contact .social .twitter::before {
  content: "";
}
/* line 257, ../sass/design/_footer.scss */
.footer-contact .social .facebook::before {
  content: "";
}
/* line 261, ../sass/design/_footer.scss */
.footer-contact [href^='mailto:'],
.footer-contact [href^='tel:'],
.footer-contact a.facebook,
.footer-contact a.instagram,
.footer-contact a.twitter {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  vertical-align: middle;
}
/* line 269, ../sass/design/_footer.scss */
.footer-contact [href^='mailto:']::before,
.footer-contact [href^='tel:']::before,
.footer-contact a.facebook::before,
.footer-contact a.instagram::before,
.footer-contact a.twitter::before {
  color: #f27c38;
  font-size: 42px;
  font-size: 2.625rem;
  margin-right: 10px;
  position: relative;
  top: 6px;
}
/* line 278, ../sass/design/_footer.scss */
.footer-contact [href^='mailto:']::before {
  content: "";
  font-size: 30px;
  font-size: 1.875rem;
}
/* line 282, ../sass/design/_footer.scss */
.footer-contact [href^='tel:']::before {
  content: "";
}
/* line 285, ../sass/design/_footer.scss */
.footer-contact a.facebook::before {
  content: "";
}
/* line 288, ../sass/design/_footer.scss */
.footer-contact a.twitter::before {
  content: "";
}
/* line 291, ../sass/design/_footer.scss */
.footer-contact a.instagram::before {
  content: "";
}

/**
 * Newsroom
 */
/* line 4, ../sass/design/_newsroom.scss */
.node--article--full .field-name-post-date,
.news-item .news-date {
  font-family: "Bebas", Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 5px;
  margin-top: 0;
}

/**
 * Newsroom
 */
/* line 18, ../sass/design/_newsroom.scss */
.section-news article .container, .section-news article #block-views-alert-block .alert-wrapper, #block-views-alert-block .section-news article .alert-wrapper, .section-news article footer .footer-wrapper, footer .section-news article .footer-wrapper,
.section-vacancies article .container,
.section-vacancies article #block-views-alert-block .alert-wrapper,
#block-views-alert-block .section-vacancies article .alert-wrapper,
.section-vacancies article footer .footer-wrapper,
footer .section-vacancies article .footer-wrapper,
.page-corporate-vacancies article .container,
.page-corporate-vacancies article #block-views-alert-block .alert-wrapper,
#block-views-alert-block .page-corporate-vacancies article .alert-wrapper,
.page-corporate-vacancies article footer .footer-wrapper,
footer .page-corporate-vacancies article .footer-wrapper {
  max-width: 940px !important;
}
/* line 21, ../sass/design/_newsroom.scss */
.section-news .news-item,
.section-news .vacancies-item,
.section-vacancies .news-item,
.section-vacancies .vacancies-item,
.page-corporate-vacancies .news-item,
.page-corporate-vacancies .vacancies-item {
  border-bottom: 1px solid #003d4d;
  padding: 40px 0;
}
/* line 25, ../sass/design/_newsroom.scss */
.section-news .news-item h3,
.section-news .vacancies-item h3,
.section-vacancies .news-item h3,
.section-vacancies .vacancies-item h3,
.page-corporate-vacancies .news-item h3,
.page-corporate-vacancies .vacancies-item h3 {
  margin-top: 0;
  text-transform: none;
}
/* line 28, ../sass/design/_newsroom.scss */
.section-news .news-item h3 a,
.section-news .vacancies-item h3 a,
.section-vacancies .news-item h3 a,
.section-vacancies .vacancies-item h3 a,
.page-corporate-vacancies .news-item h3 a,
.page-corporate-vacancies .vacancies-item h3 a {
  color: #f27c38;
}
/* line 30, ../sass/design/_newsroom.scss */
.section-news .news-item h3 a:hover,
.section-news .vacancies-item h3 a:hover,
.section-vacancies .news-item h3 a:hover,
.section-vacancies .vacancies-item h3 a:hover,
.page-corporate-vacancies .news-item h3 a:hover,
.page-corporate-vacancies .vacancies-item h3 a:hover {
  color: #f49031;
}
/* line 35, ../sass/design/_newsroom.scss */
.section-news .news-item:last-child,
.section-news .vacancies-item:last-child,
.section-vacancies .news-item:last-child,
.section-vacancies .vacancies-item:last-child,
.page-corporate-vacancies .news-item:last-child,
.page-corporate-vacancies .vacancies-item:last-child {
  border-bottom: none;
  margin-bottom: 2em;
}

/*
 * Homepage block
 */
/* line 46, ../sass/design/_newsroom.scss */
#block-views-news-block-1 > h2 {
  margin-bottom: 0.83em !important;
}

/* line 51, ../sass/design/_newsroom.scss */
.latest-news-homepage {
  overflow: hidden;
}
/* line 53, ../sass/design/_newsroom.scss */
.latest-news-homepage .news-item {
  position: relative;
}
/* line 55, ../sass/design/_newsroom.scss */
.latest-news-homepage .news-item:not(:last-child):after {
  content: '';
  display: block;
  width: 1px;
  border-left: 1px solid #f27c38;
  height: 1000px;
  position: absolute;
  right: -7%;
  top: 0;
}
/* line 65, ../sass/design/_newsroom.scss */
.latest-news-homepage .news-item h3 {
  text-transform: none;
  margin: .5em 0;
  line-height: 1.2;
}
/* line 69, ../sass/design/_newsroom.scss */
.latest-news-homepage .news-item h3 a {
  color: #f49031;
}
/* line 71, ../sass/design/_newsroom.scss */
.latest-news-homepage .news-item h3 a:hover {
  color: #bd3223;
}
/* line 76, ../sass/design/_newsroom.scss */
.latest-news-homepage .news-item .news-date {
  letter-spacing: 2px;
}
@media (min-width: 769px) {
  /* line 76, ../sass/design/_newsroom.scss */
  .latest-news-homepage .news-item .news-date {
    font-size: 16px;
    font-size: 1rem;
  }
}
/* line 82, ../sass/design/_newsroom.scss */
.latest-news-homepage .news-item p {
  margin: 0;
  font-size: 18px;
  font-size: 1.125rem;
}
@media (min-width: 1025px) {
  /* line 53, ../sass/design/_newsroom.scss */
  .latest-news-homepage .news-item {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
  }
  /* line 122, ../sass/base/_mixins.scss */
  .latest-news-homepage .news-item:before, .latest-news-homepage .news-item:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  .latest-news-homepage .news-item:after {
    clear: both;
  }
  /* line 47, ../sass/jeet/_grid.scss */
  .latest-news-homepage .news-item:nth-of-type(4n) {
    margin-right: 0%;
    float: right;
  }
  /* line 51, ../sass/jeet/_grid.scss */
  .latest-news-homepage .news-item:nth-of-type(4n + 1) {
    clear: both;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  /* line 53, ../sass/design/_newsroom.scss */
  .latest-news-homepage .news-item {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
    margin-bottom: 40px;
  }
  /* line 122, ../sass/base/_mixins.scss */
  .latest-news-homepage .news-item:before, .latest-news-homepage .news-item:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  .latest-news-homepage .news-item:after {
    clear: both;
  }
  /* line 47, ../sass/jeet/_grid.scss */
  .latest-news-homepage .news-item:nth-of-type(2n) {
    margin-right: 0%;
    float: right;
  }
  /* line 51, ../sass/jeet/_grid.scss */
  .latest-news-homepage .news-item:nth-of-type(2n + 1) {
    clear: both;
  }
  /* line 93, ../sass/design/_newsroom.scss */
  .latest-news-homepage .news-item:nth-child(odd):after {
    right: -3.3%;
  }
  /* line 96, ../sass/design/_newsroom.scss */
  .latest-news-homepage .news-item:nth-child(3), .latest-news-homepage .news-item:nth-child(4) {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  /* line 104, ../sass/design/_newsroom.scss */
  .latest-news-homepage .news-item:not(:nth-last-child(2)) {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f27c38;
  }
  /* line 109, ../sass/design/_newsroom.scss */
  .latest-news-homepage .news-item:last-child {
    display: none;
  }
  /* line 112, ../sass/design/_newsroom.scss */
  .latest-news-homepage .news-item p {
    font-size: 22px;
    font-size: 1.375rem;
    display: none;
  }
}

/* line 121, ../sass/design/_newsroom.scss */
.latest-news .more-link {
  position: absolute;
  bottom: 0px;
  width: 100%;
}

/* line 2, ../sass/design/_airlines.scss */
.section-airlines .box-highlight {
  position: relative;
  border: 3px solid #007dbd;
}
/* line 5, ../sass/design/_airlines.scss */
.section-airlines .box-highlight > h3 {
  display: none;
}
/* line 9, ../sass/design/_airlines.scss */
.section-airlines dl.ckeditor-accordion {
  position: absolute;
  margin: 0;
  bottom: 0;
  width: 100%;
  left: 0;
  border: none;
  height: 0px;
}
/* line 17, ../sass/design/_airlines.scss */
.section-airlines dl.ckeditor-accordion dt {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
}
/* line 23, ../sass/design/_airlines.scss */
.section-airlines dl.ckeditor-accordion dt a {
  padding: 20px 1em;
  border: none;
}
/* line 28, ../sass/design/_airlines.scss */
.section-airlines dl.ckeditor-accordion dd {
  position: absolute;
  top: 0px;
  right: -3px;
  left: -3px;
  background-color: white;
  box-shadow: 0 5 5px rgba(0, 0, 0, 0.5);
  font-size: 0.75em;
  z-index: 50;
  border: 3px solid #f27c38;
  border-top: none;
}

/**
 * Header - Headline
 */
/* LOGO */
/* line 6, ../sass/design/_headline.scss */
.header-main {
  background: #fff;
  padding: 20px 0;
}

@media (min-width: 769px) {
  /* line 11, ../sass/design/_headline.scss */
  #logo {
    display: inline-block;
    width: 178px;
    padding: 12px 0 5px;
  }
}

/* TOP HEADER (logo wrapper) */
@media (min-width: 769px) {
  /* line 21, ../sass/design/_headline.scss */
  .top-header {
    display: block;
    background-color: white;
    position: relative;
  }
}

/* line 29, ../sass/design/_headline.scss */
.navigation-section {
  width: calc(100% - 220px);
  text-align: right;
}
/* line 32, ../sass/design/_headline.scss */
.navigation-section .menu {
  margin: 0;
}
/* line 34, ../sass/design/_headline.scss */
.navigation-section .menu li {
  display: inline-block;
  margin-left: 2em;
  text-align: center;
}
/* line 39, ../sass/design/_headline.scss */
.navigation-section .menu a {
  display: block;
}

/*
 * This is the greeting thing
 */
/* line 49, ../sass/design/_headline.scss */
header {
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-color: #B6C5BA;
  background-size: cover;
  *zoom: 1;
}
/* line 122, ../sass/base/_mixins.scss */
header:before, header:after {
  content: '';
  display: table;
}
/* line 127, ../sass/base/_mixins.scss */
header:after {
  clear: both;
}
/* line 57, ../sass/design/_headline.scss */
.front header {
  padding-bottom: 70px;
  background-position: 50% 85%;
}
/* line 62, ../sass/design/_headline.scss */
header::before {
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  background-position: 50% 94%;
  z-index: -1;
  opacity: 1;
  transition: opacity 1s ease-out 0.5s;
}
/* line 76, ../sass/design/_headline.scss */
.condition-rain header::before, .condition-sun header::before {
  opacity: 0;
}

@media (max-width: 1024px) {
  /* line 83, ../sass/design/_headline.scss */
  #logo {
    display: block;
    text-align: center;
    margin: 10px auto 0;
    z-index: 50;
    width: 130px;
  }
}

/**
 * MANAGE COLOR ACCORDING TO WIDGET
 */
/* line 97, ../sass/design/_headline.scss */
.header {
  text-align: center;
}
/* line 99, ../sass/design/_headline.scss */
.header .container, .header #block-views-alert-block .alert-wrapper, #block-views-alert-block .header .alert-wrapper, .header footer .footer-wrapper, footer .header .footer-wrapper {
  color: #003d4d;
  text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.8);
}
/* line 103, ../sass/design/_headline.scss */
.condition-rain .header .container, .condition-rain .header #block-views-alert-block .alert-wrapper, #block-views-alert-block .condition-rain .header .alert-wrapper, .condition-rain .header footer .footer-wrapper, footer .condition-rain .header .footer-wrapper {
  color: white;
  text-shadow: 1px 1px 0px rgba(0, 61, 77, 0.8);
}
/* line 106, ../sass/design/_headline.scss */
.condition-rain .header .container #block-clock-clock .content, .condition-rain .header #block-views-alert-block .alert-wrapper #block-clock-clock .content, #block-views-alert-block .condition-rain .header .alert-wrapper #block-clock-clock .content, .condition-rain .header footer .footer-wrapper #block-clock-clock .content, footer .condition-rain .header .footer-wrapper #block-clock-clock .content,
.condition-rain .header .container #block-simple-weather-simple-weather-report .content,
.condition-rain .header #block-views-alert-block .alert-wrapper #block-simple-weather-simple-weather-report .content,
#block-views-alert-block .condition-rain .header .alert-wrapper #block-simple-weather-simple-weather-report .content,
.condition-rain .header footer .footer-wrapper #block-simple-weather-simple-weather-report .content,
footer .condition-rain .header .footer-wrapper #block-simple-weather-simple-weather-report .content,
.condition-rain .header .container #airport-header .headline,
.condition-rain .header #block-views-alert-block .alert-wrapper #airport-header .headline,
#block-views-alert-block .condition-rain .header .alert-wrapper #airport-header .headline,
.condition-rain .header footer .footer-wrapper #airport-header .headline,
footer .condition-rain .header .footer-wrapper #airport-header .headline {
  color: white !important;
}

/* line 116, ../sass/design/_headline.scss */
#block-airport-headline-airport-headline #airport-header {
  /* Base style for Headline */
}
/* line 118, ../sass/design/_headline.scss */
#block-airport-headline-airport-headline #airport-header .headline {
  display: block;
  padding: 10px;
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 200;
  color: transparent;
}
@media (max-width: 1024px) {
  /* line 118, ../sass/design/_headline.scss */
  #block-airport-headline-airport-headline #airport-header .headline {
    padding-top: 40px;
  }
}
@media (min-width: 1025px) {
  /* line 118, ../sass/design/_headline.scss */
  #block-airport-headline-airport-headline #airport-header .headline {
    font-size: 38px;
    font-size: 2.375rem;
    width: 70%;
    margin: auto;
  }
}
/* line 135, ../sass/design/_headline.scss */
#block-airport-headline-airport-headline #airport-header .headline::before {
  color: #003d4d;
  display: block;
  transition: all ease-out 0.3s;
}
/* line 140, ../sass/design/_headline.scss */
header.complete #block-airport-headline-airport-headline #airport-header .headline {
  transition-delay: 0.1s;
  color: #003d4d;
}
/* line 144, ../sass/design/_headline.scss */
header.complete #block-airport-headline-airport-headline #airport-header .headline::before {
  height: 0;
  opacity: 0;
}

/* line 155, ../sass/design/_headline.scss */
#block-clock-clock .content,
#block-simple-weather-simple-weather-report .content {
  color: #003d4d;
  transition: all ease-out 0.3s;
  transition-delay: 0.1s;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 200;
}
/* line 160, ../sass/design/_headline.scss */
header.complete #block-clock-clock .content, header.complete
#block-simple-weather-simple-weather-report .content {
  color: #003d4d;
}
@media (min-width: 1025px) {
  /* line 155, ../sass/design/_headline.scss */
  #block-clock-clock .content,
  #block-simple-weather-simple-weather-report .content {
    font-size: 35px;
    font-size: 2.1875rem;
  }
}
/* line 170, ../sass/design/_headline.scss */
#block-clock-clock .content i,
#block-simple-weather-simple-weather-report .content i {
  font-weight: lighter;
}

/* line 176, ../sass/design/_headline.scss */
#block-clock-clock {
  display: inline-block;
  padding-right: 10px;
  text-align: right;
}

/* line 183, ../sass/design/_headline.scss */
#block-simple-weather-simple-weather-report {
  display: inline-block;
  padding-left: 10px;
}

@media (min-width: 1025px) {
  /* line 189, ../sass/design/_headline.scss */
  .front .header .container, .front .header #block-views-alert-block .alert-wrapper, #block-views-alert-block .front .header .alert-wrapper, .front .header footer .footer-wrapper, footer .front .header .footer-wrapper {
    padding-top: 120px;
    height: 475px;
  }
}

/**
 * General homepage
 */
/* line 5, ../sass/design/_homepage.scss */
.front .content-promotions,
.front .content-wrapper .block {
  padding: 70px 0 20px 0;
}
@media (min-width: 769px) {
  /* line 5, ../sass/design/_homepage.scss */
  .front .content-promotions,
  .front .content-wrapper .block {
    padding: 180px 0 40px;
  }
}

/* line 14, ../sass/design/_homepage.scss */
.front .content-area-wrapper:not(.content-promotions) .container, .front .content-area-wrapper:not(.content-promotions) #block-views-alert-block .alert-wrapper, #block-views-alert-block .front .content-area-wrapper:not(.content-promotions) .alert-wrapper, .front .content-area-wrapper:not(.content-promotions) footer .footer-wrapper, footer .front .content-area-wrapper:not(.content-promotions) .footer-wrapper,
.section-corporate .content-area-wrapper:not(.content-promotions) .container,
.section-corporate .content-area-wrapper:not(.content-promotions) #block-views-alert-block .alert-wrapper,
#block-views-alert-block .section-corporate .content-area-wrapper:not(.content-promotions) .alert-wrapper,
.section-corporate .content-area-wrapper:not(.content-promotions) footer .footer-wrapper,
footer .section-corporate .content-area-wrapper:not(.content-promotions) .footer-wrapper {
  max-width: none;
  padding: 0;
}
/* line 18, ../sass/design/_homepage.scss */
.front .content-area-wrapper:not(.content-promotions) .container .block, .front .content-area-wrapper:not(.content-promotions) #block-views-alert-block .alert-wrapper .block, #block-views-alert-block .front .content-area-wrapper:not(.content-promotions) .alert-wrapper .block, .front .content-area-wrapper:not(.content-promotions) footer .footer-wrapper .block, footer .front .content-area-wrapper:not(.content-promotions) .footer-wrapper .block,
.section-corporate .content-area-wrapper:not(.content-promotions) .container .block,
.section-corporate .content-area-wrapper:not(.content-promotions) #block-views-alert-block .alert-wrapper .block,
#block-views-alert-block .section-corporate .content-area-wrapper:not(.content-promotions) .alert-wrapper .block,
.section-corporate .content-area-wrapper:not(.content-promotions) footer .footer-wrapper .block,
footer .section-corporate .content-area-wrapper:not(.content-promotions) .footer-wrapper .block {
  border-bottom: 1px solid #f27c38;
  position: relative;
}
/* line 21, ../sass/design/_homepage.scss */
.front .content-area-wrapper:not(.content-promotions) .container .block > h2, .front .content-area-wrapper:not(.content-promotions) #block-views-alert-block .alert-wrapper .block > h2, #block-views-alert-block .front .content-area-wrapper:not(.content-promotions) .alert-wrapper .block > h2, .front .content-area-wrapper:not(.content-promotions) footer .footer-wrapper .block > h2, footer .front .content-area-wrapper:not(.content-promotions) .footer-wrapper .block > h2, .front .content-area-wrapper:not(.content-promotions) .container .block > .content, .front .content-area-wrapper:not(.content-promotions) #block-views-alert-block .alert-wrapper .block > .content, #block-views-alert-block .front .content-area-wrapper:not(.content-promotions) .alert-wrapper .block > .content, .front .content-area-wrapper:not(.content-promotions) footer .footer-wrapper .block > .content, footer .front .content-area-wrapper:not(.content-promotions) .footer-wrapper .block > .content,
.section-corporate .content-area-wrapper:not(.content-promotions) .container .block > h2,
.section-corporate .content-area-wrapper:not(.content-promotions) #block-views-alert-block .alert-wrapper .block > h2,
#block-views-alert-block .section-corporate .content-area-wrapper:not(.content-promotions) .alert-wrapper .block > h2,
.section-corporate .content-area-wrapper:not(.content-promotions) footer .footer-wrapper .block > h2,
footer .section-corporate .content-area-wrapper:not(.content-promotions) .footer-wrapper .block > h2,
.section-corporate .content-area-wrapper:not(.content-promotions) .container .block > .content,
.section-corporate .content-area-wrapper:not(.content-promotions) #block-views-alert-block .alert-wrapper .block > .content,
#block-views-alert-block .section-corporate .content-area-wrapper:not(.content-promotions) .alert-wrapper .block > .content,
.section-corporate .content-area-wrapper:not(.content-promotions) footer .footer-wrapper .block > .content,
footer .section-corporate .content-area-wrapper:not(.content-promotions) .footer-wrapper .block > .content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
}
@media (min-width: 769px) {
  /* line 21, ../sass/design/_homepage.scss */
  .front .content-area-wrapper:not(.content-promotions) .container .block > h2, .front .content-area-wrapper:not(.content-promotions) #block-views-alert-block .alert-wrapper .block > h2, #block-views-alert-block .front .content-area-wrapper:not(.content-promotions) .alert-wrapper .block > h2, .front .content-area-wrapper:not(.content-promotions) footer .footer-wrapper .block > h2, footer .front .content-area-wrapper:not(.content-promotions) .footer-wrapper .block > h2, .front .content-area-wrapper:not(.content-promotions) .container .block > .content, .front .content-area-wrapper:not(.content-promotions) #block-views-alert-block .alert-wrapper .block > .content, #block-views-alert-block .front .content-area-wrapper:not(.content-promotions) .alert-wrapper .block > .content, .front .content-area-wrapper:not(.content-promotions) footer .footer-wrapper .block > .content, footer .front .content-area-wrapper:not(.content-promotions) .footer-wrapper .block > .content,
  .section-corporate .content-area-wrapper:not(.content-promotions) .container .block > h2,
  .section-corporate .content-area-wrapper:not(.content-promotions) #block-views-alert-block .alert-wrapper .block > h2,
  #block-views-alert-block .section-corporate .content-area-wrapper:not(.content-promotions) .alert-wrapper .block > h2,
  .section-corporate .content-area-wrapper:not(.content-promotions) footer .footer-wrapper .block > h2,
  footer .section-corporate .content-area-wrapper:not(.content-promotions) .footer-wrapper .block > h2,
  .section-corporate .content-area-wrapper:not(.content-promotions) .container .block > .content,
  .section-corporate .content-area-wrapper:not(.content-promotions) #block-views-alert-block .alert-wrapper .block > .content,
  #block-views-alert-block .section-corporate .content-area-wrapper:not(.content-promotions) .alert-wrapper .block > .content,
  .section-corporate .content-area-wrapper:not(.content-promotions) footer .footer-wrapper .block > .content,
  footer .section-corporate .content-area-wrapper:not(.content-promotions) .footer-wrapper .block > .content {
    padding: 0 20px;
  }
}
@media (max-width: 1024px) {
  /* line 30, ../sass/design/_homepage.scss */
  .front .content-area-wrapper:not(.content-promotions) .container .block h2, .front .content-area-wrapper:not(.content-promotions) #block-views-alert-block .alert-wrapper .block h2, #block-views-alert-block .front .content-area-wrapper:not(.content-promotions) .alert-wrapper .block h2, .front .content-area-wrapper:not(.content-promotions) footer .footer-wrapper .block h2, footer .front .content-area-wrapper:not(.content-promotions) .footer-wrapper .block h2,
  .section-corporate .content-area-wrapper:not(.content-promotions) .container .block h2,
  .section-corporate .content-area-wrapper:not(.content-promotions) #block-views-alert-block .alert-wrapper .block h2,
  #block-views-alert-block .section-corporate .content-area-wrapper:not(.content-promotions) .alert-wrapper .block h2,
  .section-corporate .content-area-wrapper:not(.content-promotions) footer .footer-wrapper .block h2,
  footer .section-corporate .content-area-wrapper:not(.content-promotions) .footer-wrapper .block h2 {
    width: 100%;
    margin: 0;
  }
}

/* line 38, ../sass/design/_homepage.scss */
.hp-icon-links,
.node .hp-icon-links {
  *zoom: 1;
}
/* line 40, ../sass/design/_homepage.scss */
.hp-icon-links a,
.node .hp-icon-links a {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%;
  text-align: center !important;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #003d4d;
}
/* line 122, ../sass/base/_mixins.scss */
.hp-icon-links a:before, .hp-icon-links a:after,
.node .hp-icon-links a:before,
.node .hp-icon-links a:after {
  content: '';
  display: table;
}
/* line 127, ../sass/base/_mixins.scss */
.hp-icon-links a:after,
.node .hp-icon-links a:after {
  clear: both;
}
/* line 47, ../sass/jeet/_grid.scss */
.hp-icon-links a:nth-of-type(2n),
.node .hp-icon-links a:nth-of-type(2n) {
  margin-right: 0%;
  float: right;
}
/* line 51, ../sass/jeet/_grid.scss */
.hp-icon-links a:nth-of-type(2n + 1),
.node .hp-icon-links a:nth-of-type(2n + 1) {
  clear: both;
}
@media (min-width: 769px) {
  /* line 40, ../sass/design/_homepage.scss */
  .hp-icon-links a,
  .node .hp-icon-links a {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
  }
  /* line 122, ../sass/base/_mixins.scss */
  .hp-icon-links a:before, .hp-icon-links a:after,
  .node .hp-icon-links a:before,
  .node .hp-icon-links a:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  .hp-icon-links a:after,
  .node .hp-icon-links a:after {
    clear: both;
  }
  /* line 38, ../sass/jeet/_grid.scss */
  .hp-icon-links a:nth-of-type(2n),
  .node .hp-icon-links a:nth-of-type(2n) {
    margin-right: 3%;
    float: left;
  }
  /* line 42, ../sass/jeet/_grid.scss */
  .hp-icon-links a:nth-of-type(2n + 1),
  .node .hp-icon-links a:nth-of-type(2n + 1) {
    clear: none;
  }
  /* line 56, ../sass/jeet/_grid.scss */
  .hp-icon-links a:last-child,
  .node .hp-icon-links a:last-child {
    margin-right: 0%;
  }
  /* line 44, ../sass/design/_homepage.scss */
  .hp-icon-links a:hover,
  .node .hp-icon-links a:hover {
    text-decoration: none;
  }
  /* line 46, ../sass/design/_homepage.scss */
  .hp-icon-links a:hover span,
  .node .hp-icon-links a:hover span {
    bottom: 0.1em;
    color: #e6760c;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  /* line 40, ../sass/design/_homepage.scss */
  .hp-icon-links a,
  .node .hp-icon-links a {
    margin-top: 80px;
    margin-bottom: 80px;
    font-size: 20px;
    font-size: 1.25rem;
  }
}
/* line 66, ../sass/design/_homepage.scss */
.hp-icon-links a span,
.node .hp-icon-links a span {
  display: block;
  transition: all 0.2s ease-out;
  position: relative;
  bottom: 0em;
  margin-bottom: 10px;
  font-size: 80px;
  font-size: 5rem;
  color: #f49031;
}
@media (min-width: 769px) {
  /* line 66, ../sass/design/_homepage.scss */
  .hp-icon-links a span,
  .node .hp-icon-links a span {
    margin-bottom: 40px;
    margin-top: 40px;
    font-size: 120px;
    font-size: 7.5rem;
  }
}
/* line 80, ../sass/design/_homepage.scss */
.hp-icon-links a span.aicon-car-rental,
.node .hp-icon-links a span.aicon-car-rental {
  transform: scale(1.2);
  transform-origin: bottom;
}
/* line 122, ../sass/base/_mixins.scss */
.hp-icon-links:before, .hp-icon-links:after,
.node .hp-icon-links:before,
.node .hp-icon-links:after {
  content: '';
  display: table;
}
/* line 127, ../sass/base/_mixins.scss */
.hp-icon-links:after,
.node .hp-icon-links:after {
  clear: both;
}

/* line 89, ../sass/design/_homepage.scss */
.view-id-news .more-link {
  left: 0;
}

/* line 93, ../sass/design/_homepage.scss */
.view-id-news .more-link a,
.section-link {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  font-style: italic;
  font-weight: 400;
  padding: 13px 30px 13px 10px;
  font-size: 1.325rem;
  font-size: 22px;
  font-size: 1.375rem;
  color: white;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$secondary', endColorstr='$red', GradientType=1 );
  background: linear-gradient(135deg, #bd3223 0%, #e27064 80%, #e27064 100%);
  background: linear-gradient(135deg, #bd3223 0%, #e27064 calc(100% - 40px), #e27064 100%);
  border-bottom: 1px solid #bd3223;
  text-shadow: none;
  box-shadow: inset 0 0 0 50px rgba(189, 50, 35, 0);
  transition: box-shadow 0.2s ease-out;
  transition-delay: 0;
  /*
  * Full width FLUID FIX (+1400px)
  */
}
/* line 116, ../sass/design/_homepage.scss */
.view-id-news .more-link a::before,
.section-link::before {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 30px;
  content: "";
  position: absolute;
  right: -5px;
  transition: all 0.2s ease-out;
}
/* line 126, ../sass/design/_homepage.scss */
.view-id-news .more-link a::after,
.section-link::after {
  content: '';
  position: absolute;
  padding: 0 20px;
  z-index: -1;
  top: 0;
  right: -30px;
  bottom: -1px;
  width: 60px;
  border-radius: 0 0 10px 0;
  border-right: 1px solid #bd3223;
  border-bottom: 1px solid #bd3223;
  background: #e27064;
  transform: skew(-37deg);
  box-shadow: inset 0 0 0 50px rgba(242, 124, 56, 0);
  transition: all 0.2s ease-out;
  transition-delay: 0;
}
/* line 145, ../sass/design/_homepage.scss */
.view-id-news .more-link a:hover,
.section-link:hover {
  color: white;
}
/* line 147, ../sass/design/_homepage.scss */
.view-id-news .more-link a:hover, .view-id-news .more-link a:hover::after,
.section-link:hover,
.section-link:hover::after {
  box-shadow: inset 0 0 0 50px #bd3223;
}
/* line 151, ../sass/design/_homepage.scss */
.view-id-news .more-link a:hover::before,
.section-link:hover::before {
  right: -10px;
}
@media (min-width: 1400px) {
  /* line 93, ../sass/design/_homepage.scss */
  .view-id-news .more-link a,
  .section-link {
    padding-left: calc(((100vw - 1400px) / 2) + 12px);
  }
}

/* line 164, ../sass/design/_homepage.scss */
#block-block-1 p:first-of-type {
  width: 50%;
}

/* line 169, ../sass/design/_homepage.scss */
#block-block-2,
#block-block-6 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: #fff;
}
@media (max-width: 480px) {
  /* line 169, ../sass/design/_homepage.scss */
  #block-block-2,
  #block-block-6 {
    background-image: url(../img/getting-through_mobile.jpg);
    background-position: right center;
  }
}
@media (min-width: 481px) {
  /* line 169, ../sass/design/_homepage.scss */
  #block-block-2,
  #block-block-6 {
    background-image: url(../img/getting-through_desktop.jpg);
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 30%, transparent 100%), url(../img/getting-through_desktop.jpg);
    background-blend-mode: multiply;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  /* line 169, ../sass/design/_homepage.scss */
  #block-block-2,
  #block-block-6 {
    padding: 280px 0 120px;
  }
}
@media (min-width: 1025px) {
  /* line 169, ../sass/design/_homepage.scss */
  #block-block-2,
  #block-block-6 {
    padding: 400px 0 120px;
  }
}
/* line 195, ../sass/design/_homepage.scss */
#block-block-2 h2,
#block-block-6 h2 {
  color: currentColor;
}
/* line 201, ../sass/design/_homepage.scss */
#block-block-2 .content p,
#block-block-6 .content p {
  margin-top: 0;
}
@media (min-width: 769px) {
  /* line 201, ../sass/design/_homepage.scss */
  #block-block-2 .content p,
  #block-block-6 .content p {
    width: 50%;
  }
}
@media (max-width: 480px) {
  /* line 210, ../sass/design/_homepage.scss */
  #block-block-2 .content,
  #block-block-6 .content {
    margin-bottom: 240px;
  }
}

@media (min-width: 769px) {
  /* line 216, ../sass/design/_homepage.scss */
  #block-views-news-block-1 {
    padding: 160px 0 120px;
  }
}

/* line 221, ../sass/design/_homepage.scss */
.not-front #block-views-news-block-1 {
  border: none;
}
@media (min-width: 769px) {
  /* line 221, ../sass/design/_homepage.scss */
  .not-front #block-views-news-block-1 {
    padding: 80px 0 40px;
    margin: 40px 0 40px;
  }
}

/* line 1, ../sass/design/_node.scss */
.page-title {
  /* body:not(.page-node) & {
    background-image: url("/sites/all/themes/darwinairport/img/default-header.jpg") !important;
  } */
  background-image: url("/sites/all/themes/darwinairport/img/default-header.jpg");
  background-repeat: none;
  background-position: center bottom;
  position: relative;
}
/* line 10, ../sass/design/_node.scss */
.page-title::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 60%, transparent 100%);
  background-blend-mode: multiply;
}
@media (min-width: 1025px) {
  /* line 1, ../sass/design/_node.scss */
  .page-title {
    height: 500px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  /* line 1, ../sass/design/_node.scss */
  .page-title {
    height: 320px;
  }
}
@media (max-width: 768px) {
  /* line 1, ../sass/design/_node.scss */
  .page-title {
    height: 250px;
  }
}
/* line 32, ../sass/design/_node.scss */
.page-title h1 {
  color: #fff;
  font-weight: 500;
  position: absolute;
  bottom: 0;
}
@media (min-width: 481px) and (max-width: 1024px) {
  /* line 32, ../sass/design/_node.scss */
  .page-title h1 {
    font-size: 45px;
  }
}
@media (max-width: 480px) {
  /* line 32, ../sass/design/_node.scss */
  .page-title h1 {
    font-size: 35px;
  }
}

/* line 46, ../sass/design/_node.scss */
.not-front.page-node .content-area-wrapper .container, .not-front.page-node .content-area-wrapper #block-views-alert-block .alert-wrapper, #block-views-alert-block .not-front.page-node .content-area-wrapper .alert-wrapper, .not-front.page-node .content-area-wrapper footer .footer-wrapper, footer .not-front.page-node .content-area-wrapper .footer-wrapper {
  max-width: 940px;
}

/**
 * Corporate page
 */
/* line 54, ../sass/design/_node.scss */
.not-front.page-node.page-node-80 .content-area-wrapper .page-title .container, .not-front.page-node.page-node-80 .content-area-wrapper .page-title #block-views-alert-block .alert-wrapper, #block-views-alert-block .not-front.page-node.page-node-80 .content-area-wrapper .page-title .alert-wrapper, .not-front.page-node.page-node-80 .content-area-wrapper .page-title footer .footer-wrapper, footer .not-front.page-node.page-node-80 .content-area-wrapper .page-title .footer-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
/* line 63, ../sass/design/_node.scss */
.not-front.page-node.page-node-80 .content-area-wrapper .container, .not-front.page-node.page-node-80 .content-area-wrapper #block-views-alert-block .alert-wrapper, #block-views-alert-block .not-front.page-node.page-node-80 .content-area-wrapper .alert-wrapper, .not-front.page-node.page-node-80 .content-area-wrapper footer .footer-wrapper, footer .not-front.page-node.page-node-80 .content-area-wrapper .footer-wrapper {
  max-width: none;
  padding: 0;
}
/* line 66, ../sass/design/_node.scss */
.not-front.page-node.page-node-80 .content-area-wrapper .container ul.tabs.primary, .not-front.page-node.page-node-80 .content-area-wrapper #block-views-alert-block .alert-wrapper ul.tabs.primary, #block-views-alert-block .not-front.page-node.page-node-80 .content-area-wrapper .alert-wrapper ul.tabs.primary, .not-front.page-node.page-node-80 .content-area-wrapper footer .footer-wrapper ul.tabs.primary, footer .not-front.page-node.page-node-80 .content-area-wrapper .footer-wrapper ul.tabs.primary {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
}
/* line 72, ../sass/design/_node.scss */
.not-front.page-node.page-node-80 .content-area-wrapper .container .content-wrapper > .node-page, .not-front.page-node.page-node-80 .content-area-wrapper #block-views-alert-block .alert-wrapper .content-wrapper > .node-page, #block-views-alert-block .not-front.page-node.page-node-80 .content-area-wrapper .alert-wrapper .content-wrapper > .node-page, .not-front.page-node.page-node-80 .content-area-wrapper footer .footer-wrapper .content-wrapper > .node-page, footer .not-front.page-node.page-node-80 .content-area-wrapper .footer-wrapper .content-wrapper > .node-page {
  position: relative;
}
/* line 74, ../sass/design/_node.scss */
.not-front.page-node.page-node-80 .content-area-wrapper .container .content-wrapper > .node-page .content, .not-front.page-node.page-node-80 .content-area-wrapper #block-views-alert-block .alert-wrapper .content-wrapper > .node-page .content, #block-views-alert-block .not-front.page-node.page-node-80 .content-area-wrapper .alert-wrapper .content-wrapper > .node-page .content, .not-front.page-node.page-node-80 .content-area-wrapper footer .footer-wrapper .content-wrapper > .node-page .content, footer .not-front.page-node.page-node-80 .content-area-wrapper .footer-wrapper .content-wrapper > .node-page .content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
}
@media (min-width: 769px) {
  /* line 74, ../sass/design/_node.scss */
  .not-front.page-node.page-node-80 .content-area-wrapper .container .content-wrapper > .node-page .content, .not-front.page-node.page-node-80 .content-area-wrapper #block-views-alert-block .alert-wrapper .content-wrapper > .node-page .content, #block-views-alert-block .not-front.page-node.page-node-80 .content-area-wrapper .alert-wrapper .content-wrapper > .node-page .content, .not-front.page-node.page-node-80 .content-area-wrapper footer .footer-wrapper .content-wrapper > .node-page .content, footer .not-front.page-node.page-node-80 .content-area-wrapper .footer-wrapper .content-wrapper > .node-page .content {
    padding: 0 20px;
  }
}
/* line 83, ../sass/design/_node.scss */
.not-front.page-node.page-node-80 .content-area-wrapper .container .content-wrapper > .node-page .content .hp-icon-links a span, .not-front.page-node.page-node-80 .content-area-wrapper #block-views-alert-block .alert-wrapper .content-wrapper > .node-page .content .hp-icon-links a span, #block-views-alert-block .not-front.page-node.page-node-80 .content-area-wrapper .alert-wrapper .content-wrapper > .node-page .content .hp-icon-links a span, .not-front.page-node.page-node-80 .content-area-wrapper footer .footer-wrapper .content-wrapper > .node-page .content .hp-icon-links a span, footer .not-front.page-node.page-node-80 .content-area-wrapper .footer-wrapper .content-wrapper > .node-page .content .hp-icon-links a span {
  color: #007dbd;
}
/* line 87, ../sass/design/_node.scss */
.not-front.page-node.page-node-80 .content-area-wrapper .container .content-wrapper > .node-page .content .hp-icon-links a:hover span, .not-front.page-node.page-node-80 .content-area-wrapper #block-views-alert-block .alert-wrapper .content-wrapper > .node-page .content .hp-icon-links a:hover span, #block-views-alert-block .not-front.page-node.page-node-80 .content-area-wrapper .alert-wrapper .content-wrapper > .node-page .content .hp-icon-links a:hover span, .not-front.page-node.page-node-80 .content-area-wrapper footer .footer-wrapper .content-wrapper > .node-page .content .hp-icon-links a:hover span, footer .not-front.page-node.page-node-80 .content-area-wrapper .footer-wrapper .content-wrapper > .node-page .content .hp-icon-links a:hover span {
  color: #005b8a;
}
/* line 97, ../sass/design/_node.scss */
.not-front.page-node.page-node-80 .content-area-wrapper .container .content-wrapper #block-block-2 .content, .not-front.page-node.page-node-80 .content-area-wrapper #block-views-alert-block .alert-wrapper .content-wrapper #block-block-2 .content, #block-views-alert-block .not-front.page-node.page-node-80 .content-area-wrapper .alert-wrapper .content-wrapper #block-block-2 .content, .not-front.page-node.page-node-80 .content-area-wrapper footer .footer-wrapper .content-wrapper #block-block-2 .content, footer .not-front.page-node.page-node-80 .content-area-wrapper .footer-wrapper .content-wrapper #block-block-2 .content,
.not-front.page-node.page-node-80 .content-area-wrapper .container .content-wrapper #block-block-6 .content,
.not-front.page-node.page-node-80 .content-area-wrapper #block-views-alert-block .alert-wrapper .content-wrapper #block-block-6 .content,
#block-views-alert-block .not-front.page-node.page-node-80 .content-area-wrapper .alert-wrapper .content-wrapper #block-block-6 .content,
.not-front.page-node.page-node-80 .content-area-wrapper footer .footer-wrapper .content-wrapper #block-block-6 .content,
footer .not-front.page-node.page-node-80 .content-area-wrapper .footer-wrapper .content-wrapper #block-block-6 .content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
/* line 101, ../sass/design/_node.scss */
.not-front.page-node.page-node-80 .content-area-wrapper .container .content-wrapper #block-block-2 .content p, .not-front.page-node.page-node-80 .content-area-wrapper #block-views-alert-block .alert-wrapper .content-wrapper #block-block-2 .content p, #block-views-alert-block .not-front.page-node.page-node-80 .content-area-wrapper .alert-wrapper .content-wrapper #block-block-2 .content p, .not-front.page-node.page-node-80 .content-area-wrapper footer .footer-wrapper .content-wrapper #block-block-2 .content p, footer .not-front.page-node.page-node-80 .content-area-wrapper .footer-wrapper .content-wrapper #block-block-2 .content p,
.not-front.page-node.page-node-80 .content-area-wrapper .container .content-wrapper #block-block-6 .content p,
.not-front.page-node.page-node-80 .content-area-wrapper #block-views-alert-block .alert-wrapper .content-wrapper #block-block-6 .content p,
#block-views-alert-block .not-front.page-node.page-node-80 .content-area-wrapper .alert-wrapper .content-wrapper #block-block-6 .content p,
.not-front.page-node.page-node-80 .content-area-wrapper footer .footer-wrapper .content-wrapper #block-block-6 .content p,
footer .not-front.page-node.page-node-80 .content-area-wrapper .footer-wrapper .content-wrapper #block-block-6 .content p {
  width: 50%;
}
/* line 107, ../sass/design/_node.scss */
.not-front.page-node.page-node-80 .content-area-wrapper .container .content-wrapper #block-views-news-block-1 .more-link, .not-front.page-node.page-node-80 .content-area-wrapper #block-views-alert-block .alert-wrapper .content-wrapper #block-views-news-block-1 .more-link, #block-views-alert-block .not-front.page-node.page-node-80 .content-area-wrapper .alert-wrapper .content-wrapper #block-views-news-block-1 .more-link, .not-front.page-node.page-node-80 .content-area-wrapper footer .footer-wrapper .content-wrapper #block-views-news-block-1 .more-link, footer .not-front.page-node.page-node-80 .content-area-wrapper .footer-wrapper .content-wrapper #block-views-news-block-1 .more-link {
  display: none;
}

/* line 113, ../sass/design/_node.scss */
#anchorific-wrapper {
  position: relative;
  min-height: 48px;
}

/* line 118, ../sass/design/_node.scss */
nav.anchorific {
  background: linear-gradient(90deg, #f27c38 0%, #f8bb98 100%);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  /* line 118, ../sass/design/_node.scss */
  nav.anchorific {
    overflow-x: scroll;
    overflow-x: overlay;
    overflow-y: hidden;
  }
}
/* line 127, ../sass/design/_node.scss */
nav.anchorific > ul {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 10px 0;
  line-height: 0;
}
@media (max-width: 768px) {
  /* line 127, ../sass/design/_node.scss */
  nav.anchorific > ul {
    *zoom: 1;
    width: 200%;
    max-width: none;
  }
  /* line 122, ../sass/base/_mixins.scss */
  nav.anchorific > ul:before, nav.anchorific > ul:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  nav.anchorific > ul:after {
    clear: both;
  }
}
/* line 139, ../sass/design/_node.scss */
nav.anchorific > ul > li {
  display: inline-block;
  margin: 0;
  padding: 0;
  height: 2em;
  line-height: 2em;
  margin: 0.1em 0.3em;
}
@media (min-width: 769px) {
  /* line 139, ../sass/design/_node.scss */
  nav.anchorific > ul > li {
    overflow: hidden;
    height: 1em;
    line-height: 1em;
  }
}
/* line 152, ../sass/design/_node.scss */
nav.anchorific > ul > li > a {
  color: white;
  padding: 0 0.3em;
  display: block;
  position: relative;
  font-size: 17px;
  font-size: 1.0625rem;
}
@media (max-width: 768px) {
  /* line 152, ../sass/design/_node.scss */
  nav.anchorific > ul > li > a {
    transition: transform 0.3s;
  }
}
@media (min-width: 769px) {
  /* line 163, ../sass/design/_node.scss */
  nav.anchorific > ul > li > a::after {
    content: attr(data-anchor);
    display: block;
    font-weight: 500;
    position: absolute;
    top: 100%;
    transform: translate3d(0, 0, 0);
  }
}
@media (max-width: 768px) {
  /* line 174, ../sass/design/_node.scss */
  nav.anchorific > ul > li.active a {
    font-weight: bold;
  }
}
@media (min-width: 769px) {
  /* line 180, ../sass/design/_node.scss */
  nav.anchorific > ul > li.active a, nav.anchorific > ul > li a:hover {
    transform: translateY(-100%);
  }
}
/* line 186, ../sass/design/_node.scss */
nav.anchorific > ul > li > ul {
  display: none;
}
/* line 191, ../sass/design/_node.scss */
nav.anchorific.stick {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
/* line 197, ../sass/design/_node.scss */
.ubacity-admin-menu nav.anchorific.stick {
  width: calc(100% - 60px);
  left: 60px;
}

/* line 211, ../sass/design/_node.scss */
#node-154 h2#car::before,
#node-154 h2#car2::before,
#node-154 h2#taxi::before,
#node-154 h2#car-rental::before,
#node-154 h2#shuttle-bus::before,
#node-154 h2#shuttle-bus2::before {
  position: relative;
  top: 0.1em;
  margin-right: 0.5em;
  content: "";
}
/* line 220, ../sass/design/_node.scss */
#node-154 h2#taxi::before {
  content: "";
}
/* line 223, ../sass/design/_node.scss */
#node-154 h2#car-rental::before {
  content: "";
}
/* line 226, ../sass/design/_node.scss */
#node-154 h2#shuttle-bus::before, #node-154 h2#shuttle-bus2::before {
  content: "";
}

/* line 231, ../sass/design/_node.scss */
#node-142 {
  padding-top: 40px;
}

@media (min-width: 481px) {
  /* line 237, ../sass/design/_node.scss */
  #node-136 select {
    width: 25%;
  }
}

/* line 244, ../sass/design/_node.scss */
.page-node-253 .anchorific li {
  margin: 0.3em;
}
/* line 246, ../sass/design/_node.scss */
.page-node-253 .anchorific li a {
  font-size: 17px;
}

/* line 252, ../sass/design/_node.scss */
#node-256 #webform-client-form-256 {
  margin-top: 35px;
}
/* line 254, ../sass/design/_node.scss */
#node-256 #webform-client-form-256 .webform-component--coordinates {
  display: none;
}
/* line 257, ../sass/design/_node.scss */
#node-256 #webform-client-form-256 input.form-submit {
  background-color: #ffffff;
}
/* line 259, ../sass/design/_node.scss */
#node-256 #webform-client-form-256 input.form-submit:hover {
  background-color: #007dbd;
}

/* line 267, ../sass/design/_node.scss */
#node-438 #mc_embed_signup .asterisk {
  position: initial;
  font-size: 100%;
}

/* line 1, ../sass/design/_navigation.scss */
.navigation-global {
  overflow: hidden;
}
@media (min-width: 1025px) {
  /* line 1, ../sass/design/_navigation.scss */
  .navigation-global {
    *zoom: 1;
    padding: 0 20px 0 0;
    font-size: 15px;
    font-size: 0.9375rem;
    background-color: #494949;
    color: #fff;
    height: 32px;
    line-height: 32px;
  }
  /* line 122, ../sass/base/_mixins.scss */
  .navigation-global:before, .navigation-global:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  .navigation-global:after {
    clear: both;
  }
  /* line 12, ../sass/design/_navigation.scss */
  .navigation-global a {
    color: #fff;
  }
  /* line 16, ../sass/design/_navigation.scss */
  .navigation-global .menu {
    margin: 0;
    padding: 0;
  }
  /* line 20, ../sass/design/_navigation.scss */
  .navigation-global .menu li {
    display: inline-block;
  }
  /* line 25, ../sass/design/_navigation.scss */
  .navigation-global .navigation-primary {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 60%;
    margin-left: 0%;
    margin-right: 0%;
  }
  /* line 122, ../sass/base/_mixins.scss */
  .navigation-global .navigation-primary:before, .navigation-global .navigation-primary:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  .navigation-global .navigation-primary:after {
    clear: both;
  }
  /* line 29, ../sass/design/_navigation.scss */
  .navigation-global .navigation-secondary {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 40%;
    margin-left: 0%;
    margin-right: 0%;
    text-align: right;
    float: right !important;
  }
  /* line 122, ../sass/base/_mixins.scss */
  .navigation-global .navigation-secondary:before, .navigation-global .navigation-secondary:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  .navigation-global .navigation-secondary:after {
    clear: both;
  }
  /* line 34, ../sass/design/_navigation.scss */
  .navigation-global .navigation-secondary .menu li {
    padding: 0 1.4em;
    position: relative;
  }
  /* line 40, ../sass/design/_navigation.scss */
  .navigation-global .navigation-secondary .menu li:not(:first-child):before {
    content: '|';
    position: absolute;
    left: -0.2em;
  }
}

/* MENU DIVISIONS */
/* line 52, ../sass/design/_navigation.scss */
#block-menu-menu-divisions {
  overflow: hidden;
}
/* line 55, ../sass/design/_navigation.scss */
#block-menu-menu-divisions .menu li {
  text-transform: uppercase;
  float: left;
}
/* line 59, ../sass/design/_navigation.scss */
#block-menu-menu-divisions .menu li a {
  position: relative;
  display: inline-block;
  padding: 0 3em 0 1em;
  margin-left: 0;
  margin-right: 30px;
  font-weight: 300;
  margin-bottom: 5px;
  height: 25px;
  line-height: 25px;
  vertical-align: top;
  font-style: italic;
  background-color: #5F646A;
  transition: all linear 0.2s !important;
  transition-delay: 0;
}
/* line 77, ../sass/design/_navigation.scss */
#block-menu-menu-divisions .menu li a::after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  right: -13px;
  bottom: 0;
  width: 20px;
  background-color: #5F646A;
  border-radius: 0 0 7px 0;
  transform: skew(-30deg);
  transition: all linear 0.2s !important;
  transition-delay: 0;
}
/* line 92, ../sass/design/_navigation.scss */
#block-menu-menu-divisions .menu li a:hover {
  transition-duration: 0;
}
/* line 95, ../sass/design/_navigation.scss */
#block-menu-menu-divisions .menu li a:hover, #block-menu-menu-divisions .menu li a:hover::after {
  background-color: #6d737a;
}
/* line 101, ../sass/design/_navigation.scss */
#block-menu-menu-divisions .menu li a.active, #block-menu-menu-divisions .menu li a.active-trail {
  font-weight: 400;
  color: #494949;
}
/* line 106, ../sass/design/_navigation.scss */
#block-menu-menu-divisions .menu li a.active, #block-menu-menu-divisions .menu li a.active::after, #block-menu-menu-divisions .menu li a.active-trail, #block-menu-menu-divisions .menu li a.active-trail::after {
  background-color: white;
}
/* line 114, ../sass/design/_navigation.scss */
#block-menu-menu-divisions .menu li.active-trail ul {
  display: none;
}

/* GLOBAL TOP NAV MENU HELP  */
/* line 125, ../sass/design/_navigation.scss */
#block-menu-menu-help .content .menu li a:hover {
  color: white;
  text-decoration: underline;
}
/* line 131, ../sass/design/_navigation.scss */
#block-menu-menu-help .content .menu li.first.leaf {
  padding: 0;
}
/* line 136, ../sass/design/_navigation.scss */
#block-menu-menu-help #nav-global-search {
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
}
/* line 141, ../sass/design/_navigation.scss */
#block-menu-menu-help #nav-global-search::after {
  content: "";
  font-size: 16px;
  font-size: 1rem;
  color: white;
  padding-left: 1em;
  padding-right: 1em;
  vertical-align: middle;
  transition: color 0.2s ease-out;
}
/* line 152, ../sass/design/_navigation.scss */
#block-menu-menu-help #nav-global-search:hover {
  text-decoration: none;
}
/* line 155, ../sass/design/_navigation.scss */
#block-menu-menu-help #nav-global-search:hover::after {
  color: #F17525;
}
/* line 161, ../sass/design/_navigation.scss */
#block-menu-menu-help #nav-help-desk {
  padding-right: 0.5em;
}
/* line 164, ../sass/design/_navigation.scss */
#block-menu-menu-help #nav-help-desk::after {
  content: "";
  font-size: 16px;
  font-size: 1rem;
  color: white;
  vertical-align: middle;
  text-decoration: none !important;
  transform: translateY(-50%) rotate(180deg);
  position: absolute;
  top: 50%;
  right: 0;
}

/*
 * MOBILE MENU
 */
@media (max-width: 1024px) {
  /* line 182, ../sass/design/_navigation.scss */
  body {
    margin-bottom: 50px;
  }
  /* line 185, ../sass/design/_navigation.scss */
  body .content-area-wrapper {
    overflow: hidden;
  }

  /* line 190, ../sass/design/_navigation.scss */
  .navigation-global {
    display: none;
  }
}
/* line 195, ../sass/design/_navigation.scss */
#menu-mobile-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 60px;
  width: 100%;
  z-index: 10010;
  display: block;
  border-top: 2px solid #dfdfdf;
  border-top: 2px solid rgba(0, 0, 0, 0.3);
  overflow: hidden;
  margin: 0;
  padding: 0;
}
@media (min-width: 1025px) {
  /* line 195, ../sass/design/_navigation.scss */
  #menu-mobile-menu {
    display: none;
  }
}
/* line 212, ../sass/design/_navigation.scss */
#menu-mobile-menu ul.menu {
  background-color: #f27c38;
  background: linear-gradient(90deg, #f27c38 0%, #f27c38 80%, #f27c38 100%);
  margin: 0;
  padding: 0;
  overflow: hidden;
  *zoom: 1;
}
/* line 122, ../sass/base/_mixins.scss */
#menu-mobile-menu ul.menu:before, #menu-mobile-menu ul.menu:after {
  content: '';
  display: table;
}
/* line 127, ../sass/base/_mixins.scss */
#menu-mobile-menu ul.menu:after {
  clear: both;
}
/* line 220, ../sass/design/_navigation.scss */
#menu-mobile-menu ul.menu li {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 20%;
  margin-left: 0%;
  margin-right: 0%;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
  transition: all ease-out 0.2s;
  font-size: 32px;
  font-size: 2rem;
  /*       &:first-child {
          border-right: 1px solid lighten($secondary, 1%);
        } */
  /*       &:first-child,
        &:nth-last-child(2) {
          @include span(1 / 5);
        }*/
}
/* line 122, ../sass/base/_mixins.scss */
#menu-mobile-menu ul.menu li:before, #menu-mobile-menu ul.menu li:after {
  content: '';
  display: table;
}
/* line 127, ../sass/base/_mixins.scss */
#menu-mobile-menu ul.menu li:after {
  clear: both;
}
/* line 237, ../sass/design/_navigation.scss */
#menu-mobile-menu ul.menu li:nth-last-child(2) {
  border: none;
}
/* line 241, ../sass/design/_navigation.scss */
#menu-mobile-menu ul.menu li:last-child {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 0%;
  position: absolute;
  border: none;
  z-index: -1;
  opacity: 0;
  font-size: 24px;
  font-size: 1.5rem;
}
/* line 122, ../sass/base/_mixins.scss */
#menu-mobile-menu ul.menu li:last-child:before, #menu-mobile-menu ul.menu li:last-child:after {
  content: '';
  display: table;
}
/* line 127, ../sass/base/_mixins.scss */
#menu-mobile-menu ul.menu li:last-child:after {
  clear: both;
}
/* line 250, ../sass/design/_navigation.scss */
html.mm-opening #menu-mobile-menu ul.menu li:last-child {
  opacity: 1;
  z-index: 10020;
}
/* line 257, ../sass/design/_navigation.scss */
#menu-mobile-menu ul.menu li > * {
  text-align: center;
  color: white;
  display: block;
  padding: 10px;
}
/* line 264, ../sass/design/_navigation.scss */
#menu-mobile-menu ul.menu li > a {
  text-indent: -99999999px;
  display: block;
  position: relative;
  width: 100%;
  height: 60px;
}
/* line 271, ../sass/design/_navigation.scss */
#menu-mobile-menu ul.menu li > a::before {
  text-indent: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* line 280, ../sass/design/_navigation.scss */
#menu-mobile-menu ul.menu li > a.mbm-search {
  background-color: #F17525;
  background: linear-gradient(135deg, #F17525 0%, #F7AB3D 100%);
}
/* line 284, ../sass/design/_navigation.scss */
#menu-mobile-menu ul.menu li > a.mbm-search::before {
  content: "";
}
/* line 289, ../sass/design/_navigation.scss */
#menu-mobile-menu ul.menu li > a#mobile-menu-open::before {
  content: "";
}
/* line 293, ../sass/design/_navigation.scss */
#menu-mobile-menu ul.menu li > a.mbm-departures::before {
  content: "";
}
/* line 297, ../sass/design/_navigation.scss */
#menu-mobile-menu ul.menu li > a.mbm-arrivals::before {
  content: "";
}
/* line 301, ../sass/design/_navigation.scss */
#menu-mobile-menu ul.menu li > a.mbm-parking::before {
  content: "";
}
/* line 306, ../sass/design/_navigation.scss */
#menu-mobile-menu ul.menu li #mobile-menu-close {
  cursor: pointer;
  text-indent: 0;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 42px;
  background-color: #494949;
  text-align: right;
}
/* line 315, ../sass/design/_navigation.scss */
#menu-mobile-menu ul.menu li #mobile-menu-close::after {
  content: "";
  padding-left: 10px;
  padding-right: 5px;
  font-size: 20px;
  font-size: 1.25rem;
}

/**
 * MMENU DRUPAL MODULE: FIXES and THEME
 */
/* line 330, ../sass/design/_navigation.scss */
#mmenu_first:not(.mm-menu),
#mmenu_second:not(.mm-menu) {
  display: none;
}

/* line 335, ../sass/design/_navigation.scss */
.mm-menu.mm-theme-white .mm-navbar > *,
.mm-menu.mm-theme-white .mm-navbar a {
  color: rgba(0, 0, 0, 0.3);
}

/* line 340, ../sass/design/_navigation.scss */
.mm-menu {
  z-index: 10000 !important;
  box-shadow: 4px 0 0 rgba(0, 0, 0, 0.2) !important;
  width: 90%;
}
/* line 346, ../sass/design/_navigation.scss */
.mm-menu .mm-panel.mm-iconpanel-1 {
  left: 20%;
}
/* line 351, ../sass/design/_navigation.scss */
.mm-menu.mm-right {
  box-shadow: -4px 0 0 rgba(0, 0, 0, 0.2) !important;
}
/* line 355, ../sass/design/_navigation.scss */
.mm-menu .mm-arrow:after,
.mm-menu .mm-next:after {
  right: 20px;
}
/* line 360, ../sass/design/_navigation.scss */
.mm-menu .mm-prev:before {
  left: 20px;
}
/* line 365, ../sass/design/_navigation.scss */
.mm-menu.mm-theme-white .mm-navbar {
  padding: 0 20px;
}
/* line 369, ../sass/design/_navigation.scss */
.mm-menu.mm-theme-white .mm-navbar > *,
.mm-menu.mm-theme-white .mm-navbar a,
.mm-menu.mm-theme-white a {
  color: #f27c38;
}
/* line 375, ../sass/design/_navigation.scss */
.mm-menu.mm-theme-white .mm-navbar > *,
.mm-menu.mm-theme-white .mm-navbar a {
  text-transform: uppercase;
  font-weight: 500;
}
/* line 382, ../sass/design/_navigation.scss */
.mm-menu .block-menu-block > .content {
  margin-top: -60px;
}
/* line 386, ../sass/design/_navigation.scss */
.mm-menu .mm-listview li {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 22px;
}
/* line 391, ../sass/design/_navigation.scss */
.mm-menu .menu-category {
  background-color: #f27c38;
}
/* line 394, ../sass/design/_navigation.scss */
.mm-menu .menu-category *,
.mm-menu .menu-category a {
  color: white;
}

/* line 401, ../sass/design/_navigation.scss */
.mm-subopened .mm-subblocker {
  opacity: 0;
}

/* line 405, ../sass/design/_navigation.scss */
#mm-blocker {
  z-index: 90 !important;
  background-color: transparent;
  transition: background-color ease-out 0.2s;
}
/* line 410, ../sass/design/_navigation.scss */
.mm-opening #mm-blocker {
  background-color: rgba(0, 0, 0, 0.4);
}

/* line 415, ../sass/design/_navigation.scss */
.mm-navbar-bottom {
  bottom: 50px !important;
}

/* line 419, ../sass/design/_navigation.scss */
.mm-panels > .block-menu-block {
  padding: 0;
}

/* line 423, ../sass/design/_navigation.scss */
.mm-page {
  min-height: auto !important;
}

/* line 427, ../sass/design/_navigation.scss */
.mm-iconpanel .mm-panel.mm-opened {
  border-left: none;
}

/* line 431, ../sass/design/_navigation.scss */
#mmenu_first {
  /* NAVBAR */
}
/* line 432, ../sass/design/_navigation.scss */
#mmenu_first.mm-iconpanel .mm-panel.mm-opened {
  box-shadow: -4px 0 0 rgba(0, 0, 0, 0.2) !important;
}
/* line 436, ../sass/design/_navigation.scss */
#mmenu_first .mm-navbar {
  background: #f27c38;
  background: linear-gradient(90deg, #f27c38 0%, #f8bb98 100%);
  color: white;
  height: 60px;
}
/* line 442, ../sass/design/_navigation.scss */
#mmenu_first .mm-navbar a {
  text-transform: none;
  color: currentColor;
  padding-top: 20px;
  padding-bottom: 20px;
  height: 60px;
}
/* line 449, ../sass/design/_navigation.scss */
#mmenu_first .mm-navbar a::before {
  border-color: currentColor;
}
/* line 455, ../sass/design/_navigation.scss */
#mmenu_first .mm-panels > .mm-panel > .mm-listview:first-child,
#mmenu_first .mm-panels > .mm-panel > .mm-navbar + .mm-listview {
  margin-top: 0;
}
/* line 460, ../sass/design/_navigation.scss */
#mmenu_first .mm-listview:first-child li {
  line-height: 38px !important;
}
/* line 464, ../sass/design/_navigation.scss */
#mmenu_first .mm-listview:not(:first-child) {
  color: #f27c38;
}
/* line 465, ../sass/design/_navigation.scss */
#mmenu_first .mm-listview:not(:first-child) li:last-child {
  margin-bottom: 60px;
}
/* line 471, ../sass/design/_navigation.scss */
#mmenu_first .mm-listview:not(:first-child) a {
  color: #f27c38;
}
/* line 475, ../sass/design/_navigation.scss */
#mmenu_first .mm-listview:not(:first-child) .category-item {
  padding-top: 5px;
}
/* line 478, ../sass/design/_navigation.scss */
#mmenu_first .mm-listview:not(:first-child) .category-item a {
  padding-top: 15px;
  text-transform: uppercase;
  font-weight: 800;
  border-top: 1px solid #f27c38;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
/* line 489, ../sass/design/_navigation.scss */
#mmenu_first .mm-listview:not(:first-child) .category-item:first-child {
  padding-top: 0;
}
/* line 492, ../sass/design/_navigation.scss */
#mmenu_first .mm-listview:not(:first-child) .category-item:first-child a {
  border: none;
}
/* line 499, ../sass/design/_navigation.scss */
#mmenu_first .new-menu > li.expanded {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #f27c38;
  background: linear-gradient(90deg, #f27c38 0%, #f27c38 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr= '$yellow-dark', endColorstr='$yellow-light', GradientType=1 );
  color: white;
}
/* line 510, ../sass/design/_navigation.scss */
#mmenu_first .new-menu > li.expanded a::after {
  border-color: white;
}
/* line 514, ../sass/design/_navigation.scss */
#mmenu_first .new-menu > li.expanded a:not(.mm-next) {
  width: 100%;
  text-align: center;
  padding: 10px !important;
  font-size: 12px;
  font-weight: 500;
  border: none;
}
/* line 523, ../sass/design/_navigation.scss */
#mmenu_first .new-menu > li.expanded a.mm-next {
  position: absolute;
  width: 100%;
  border: none;
  top: 0;
  left: 0;
}
/* line 533, ../sass/design/_navigation.scss */
#mmenu_first [class*="mme-"] span.nolink {
  padding-left: 60px;
}
/* line 538, ../sass/design/_navigation.scss */
#mmenu_first [class*="mme-"] a.mm-next::before {
  width: 46px;
  top: 50%;
  bottom: auto;
  left: 5px;
  transform: translateY(-50%);
  text-align: center;
  font-size: 26px;
  color: white;
  display: block;
}

/* line 555, ../sass/design/_navigation.scss */
.mm-menu .mme-flight > a::before {
  content: "";
}
/* line 559, ../sass/design/_navigation.scss */
.mm-menu .mme-passenger > a::before {
  content: "";
}
/* line 563, ../sass/design/_navigation.scss */
.mm-menu .mme-parking > a::before {
  content: "";
}
/* line 567, ../sass/design/_navigation.scss */
.mm-menu .mme-tofrom > a::before {
  content: "";
}
/* line 571, ../sass/design/_navigation.scss */
.mm-menu .mme-shopeat > a::before {
  content: "";
}

/* line 576, ../sass/design/_navigation.scss */
.mm-listview > li:not([class^="mme-"]):not([class*=" mme-"]) {
  clear: both;
}

/* line 580, ../sass/design/_navigation.scss */
.mm-menu #mmenu-help-center {
  background: #F7AB3D;
  background: linear-gradient(135deg, #F17525 0%, #F17525 35%, #F7AB3D 65%, #F7AB3D 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr= '$yellow-dark', endColorstr='$yellow-light', GradientType=1 );
  color: #fff;
  padding-left: 60px;
  position: relative;
}
/* line 589, ../sass/design/_navigation.scss */
.mm-menu #mmenu-help-center::before {
  width: 46px;
  position: absolute;
  top: 50%;
  left: 5px;
  bottom: auto;
  content: "";
  display: block;
  transform: translateY(-50%);
  text-align: center;
  font-size: 26px;
  color: white;
  display: block;
}

/* line 606, ../sass/design/_navigation.scss */
#help-centre {
  background: #F7AB3D;
  background: linear-gradient(135deg, #F17525 0%, #F7AB3D 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr= '$yellow-dark', endColorstr='$yellow-light', GradientType=1 );
  text-align: center;
}
/* line 611, ../sass/design/_navigation.scss */
#help-centre .container, #help-centre #block-views-alert-block .alert-wrapper, #block-views-alert-block #help-centre .alert-wrapper, #help-centre footer .footer-wrapper, footer #help-centre .footer-wrapper {
  max-width: none;
  padding: 0;
}
/* line 617, ../sass/design/_navigation.scss */
#help-centre a {
  display: block;
  padding: 1em 56px;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  padding-left: 60px;
  position: relative;
  background-color: transparent;
  transition: background-color 0.3s ease-out;
}
@media (min-width: 769px) {
  /* line 617, ../sass/design/_navigation.scss */
  #help-centre a {
    padding-left: 80px;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }
}
/* line 633, ../sass/design/_navigation.scss */
#help-centre a::before {
  font-size: 28px;
  font-size: 1.75rem;
  content: "";
  margin-right: 13px;
  margin-left: -37px;
  vertical-align: middle;
  left: 0;
  padding: 0 0.75em;
  border-right: 1px solid white;
}
@media (min-width: 769px) {
  /* line 633, ../sass/design/_navigation.scss */
  #help-centre a::before {
    font-size: 2em;
    margin-right: 35px;
  }
}
/* line 652, ../sass/design/_navigation.scss */
#help-centre a:hover {
  background-color: #F17525;
}

/**
 * HELP CENTER SPECIFIC
 */
/* line 661, ../sass/design/_navigation.scss */
#mmenu_second {
  /* NAVBAR */
  /* HC BLOCKS */
}
/* line 663, ../sass/design/_navigation.scss */
#mmenu_second .mm-navbar {
  text-align: left;
  border: none;
  height: auto;
  line-height: 46px;
  padding: 0 10px;
}
@media (min-width: 769px) {
  /* line 663, ../sass/design/_navigation.scss */
  #mmenu_second .mm-navbar {
    padding: 0 20px;
  }
}
/* line 673, ../sass/design/_navigation.scss */
#mmenu_second .mm-navbar a {
  text-transform: none;
  font-size: 42px;
  font-size: 2.625rem;
  font-weight: 500;
  padding: 20px 0;
}
/* line 680, ../sass/design/_navigation.scss */
#mmenu_second .mm-navbar a::before {
  position: relative;
  top: 4px;
  color: #F17525;
  padding-right: 0.4em;
  float: left;
  font-size: 46px;
  font-size: 2.875rem;
  content: "";
}
/* line 694, ../sass/design/_navigation.scss */
#mmenu_second .mm-panels > .mm-panel {
  padding: 30px 0 0;
}
/* line 697, ../sass/design/_navigation.scss */
#mmenu_second .mm-panels > .mm-panel .block {
  padding: 20px 10px;
}
@media (min-width: 769px) {
  /* line 697, ../sass/design/_navigation.scss */
  #mmenu_second .mm-panels > .mm-panel .block {
    padding: 20px;
  }
}
/* line 710, ../sass/design/_navigation.scss */
#mmenu_second #block-search-form form#search-block-form {
  float: none;
}
/* line 714, ../sass/design/_navigation.scss */
#mmenu_second #block-search-form h2 {
  color: #f27c38;
  font-size: 16px;
  font-size: 1rem;
}
/* line 719, ../sass/design/_navigation.scss */
#mmenu_second #block-search-form input[type="search"] {
  margin: 0.5em 0 0.7em;
  padding-right: 2em;
}
/* line 723, ../sass/design/_navigation.scss */
#mmenu_second #block-search-form input[type="search"]::-webkit-input-placeholder {
  color: #003d4d;
  font-weight: 300;
  font-style: italic;
  font-size: 29px;
  font-size: 1.8125rem;
}
/* line 730, ../sass/design/_navigation.scss */
#mmenu_second #block-search-form input[type="search"]:-moz-placeholder {
  /* Firefox 18- */
  color: #003d4d;
  font-weight: 300;
  font-style: italic;
  font-size: 29px;
  font-size: 1.8125rem;
}
/* line 738, ../sass/design/_navigation.scss */
#mmenu_second #block-search-form input[type="search"]::-moz-placeholder {
  /* Firefox 19+ */
  color: #003d4d;
  font-weight: 300;
  font-style: italic;
  font-size: 29px;
  font-size: 1.8125rem;
}
/* line 746, ../sass/design/_navigation.scss */
#mmenu_second #block-search-form input[type="search"]:-ms-input-placeholder {
  color: #003d4d;
  font-weight: 300;
  font-style: italic;
  font-size: 29px;
  font-size: 1.8125rem;
}
/* line 756, ../sass/design/_navigation.scss */
#mmenu_second .block.block-menu h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
  font-size: 1.25rem;
}
/* line 761, ../sass/design/_navigation.scss */
#mmenu_second .block.block-menu h2::before {
  font-size: 108px;
  font-size: 6.75rem;
  color: white;
  content: "";
  display: block;
  text-align: center;
  margin-bottom: 14px;
}
/* line 772, ../sass/design/_navigation.scss */
#mmenu_second .block.block-menu ul.menu a,
#mmenu_second .block.block-menu ul.menu span {
  color: white;
  padding: 5px 10px 5px 0;
  font-weight: 400;
}
/* line 778, ../sass/design/_navigation.scss */
#mmenu_second .block.block-menu ul.menu a::after,
#mmenu_second .block.block-menu ul.menu span::after {
  content: "";
  float: right;
}
/* line 785, ../sass/design/_navigation.scss */
#mmenu_second .block.block-menu#block-menu-menu-hc-parking h2::before {
  content: "";
}
/* line 789, ../sass/design/_navigation.scss */
#mmenu_second .block.block-menu#block-menu-menu-hc-airport h2::before {
  content: "";
}
/* line 794, ../sass/design/_navigation.scss */
#mmenu_second .block-block {
  font-size: 95%;
  color: #f27c38;
}
@media (min-width: 769px) {
  /* line 794, ../sass/design/_navigation.scss */
  #mmenu_second .block-block {
    font-size: 80%;
  }
}
/* line 801, ../sass/design/_navigation.scss */
#mmenu_second .block-block p {
  font-weight: 300;
  margin-top: 0;
}
/* line 805, ../sass/design/_navigation.scss */
#mmenu_second .block-block p u {
  font-weight: 400;
}
/* line 810, ../sass/design/_navigation.scss */
#mmenu_second .block-block h2 {
  font-size: 33px;
  font-size: 2.0625rem;
  margin: 0.5em 0;
}
/* line 815, ../sass/design/_navigation.scss */
#mmenu_second .block-block h3 {
  font-size: 19px;
  font-size: 1.1875rem;
  margin-bottom: 0.5em;
}
/* line 820, ../sass/design/_navigation.scss */
#mmenu_second .block-block a[href^="mailto:"],
#mmenu_second .block-block a[href^="tel:"] {
  display: block;
  margin-bottom: 0.5em;
  word-break: break-all;
}
/* line 826, ../sass/design/_navigation.scss */
#mmenu_second .block-block a[href^="mailto:"]::before,
#mmenu_second .block-block a[href^="tel:"]::before {
  content: "";
  color: #f27c38;
  font-size: 28px;
  font-size: 1.75rem;
  margin-right: 0.2em;
  vertical-align: middle;
}
/* line 836, ../sass/design/_navigation.scss */
#mmenu_second .block-block a[href^="mailto:"]::before {
  content: "";
}
/* line 840, ../sass/design/_navigation.scss */
#mmenu_second .block-block a.button[href^="mailto:"] {
  text-align: center;
  text-transform: uppercase;
  border: solid 1px #f27c38;
  padding: 1em;
  color: #f27c38;
}
/* line 847, ../sass/design/_navigation.scss */
#mmenu_second .block-block a.button[href^="mailto:"]:hover {
  color: white;
  background-color: #f27c38;
}
/* line 852, ../sass/design/_navigation.scss */
#mmenu_second .block-block a.button[href^="mailto:"]::before {
  content: none;
}
/* line 858, ../sass/design/_navigation.scss */
#mmenu_second .block-menu {
  background: #F7BD52;
  background: linear-gradient(90deg, #F17525 0%, #F7AB3D 100%);
  border-bottom: 1px solid white !important;
}
/* line 862, ../sass/design/_navigation.scss */
#mmenu_second .block-menu *,
#mmenu_second .block-menu a {
  color: white;
}

/* DESKTOP MENU */
/* line 875, ../sass/design/_navigation.scss */
a[href="#"] {
  cursor: default !important;
}

@keyframes logoIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes logoOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* line 898, ../sass/design/_navigation.scss */
.top-header #logo {
  position: relative;
}
/* line 901, ../sass/design/_navigation.scss */
.top-header #logo img {
  width: 100%;
  height: auto;
}
/* line 908, ../sass/design/_navigation.scss */
.top-header #logo .blue-logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  opacity: 0;
}
@media (min-width: 769px) {
  /* line 908, ../sass/design/_navigation.scss */
  .top-header #logo .blue-logo {
    top: 12px;
  }
}
/* line 922, ../sass/design/_navigation.scss */
.top-header #logo .blue-logo.fadeIn,
.top-header #logo .green-logo.fadeIn {
  animation: logoIn 0.3s linear forwards;
}
/* line 926, ../sass/design/_navigation.scss */
.top-header #logo .blue-logo.fadeOut,
.top-header #logo .green-logo.fadeOut {
  animation: logoOut 0.5s linear forwards;
}

/* line 963, ../sass/design/_navigation.scss */
.desktop-menu {
  display: none;
  float: right;
}
@media (min-width: 1025px) {
  /* line 963, ../sass/design/_navigation.scss */
  .desktop-menu {
    display: block;
  }
  /* line 970, ../sass/design/_navigation.scss */
  .desktop-menu .block {
    position: static !important;
  }
  /* line 974, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu {
    background: transparent;
  }
  /* line 978, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .nav > li {
    text-align: center;
    font-size: 15px;
    font-size: 0.9375rem;
  }
  /* line 982, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .nav > li > a {
    border: none;
    font-weight: 500;
    padding: 10px;
    height: 104px;
    min-width: 145px;
    color: #f27c38;
    cursor: default;
  }
  /* line 991, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .nav > li > a::before {
    color: #f27c38;
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'airport' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 42px;
    font-size: 2.625rem;
    display: block;
    padding: 9px 0;
    content: "";
  }
  /* line 1001, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .nav > li.dme-flight > a::before {
    content: "";
  }
  /* line 1005, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .nav > li.dme-tofrom > a::before {
    content: "";
  }
  /* line 1009, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .nav > li.dme-parking > a::before {
    content: "";
  }
  /* line 1013, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .nav > li.dme-passenger > a::before {
    content: "";
  }
  /* line 1017, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .nav > li.dme-shopeat > a::before {
    content: "";
  }
  /* line 1021, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .nav > li.dme-about > a::before {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'airportcorporate' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
  }
  /* line 1026, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .nav > li.dme-business > a::before {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'airportcorporate' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
  }
  /* line 1031, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .nav > li.dme-community > a::before {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'airportcorporate' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
  }
  /* line 1036, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .nav > li.dme-planning > a::before {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'airportcorporate' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
  }
  /* line 1041, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .nav > li.dme-working > a::before {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'airportcorporate' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
  }
  /* line 1046, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .nav > li > a:hover, .desktop-menu .tb-megamenu .nav > li.active-trail > a:hover, .desktop-menu .tb-megamenu .nav > li.dropdown.open > .dropdown-toggle {
    background-color: #f27c38 !important;
    color: white;
    transition: all 0.2s ease-out;
    transition-delay: 0;
  }
  /* line 1054, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .nav > li > a:hover::before, .desktop-menu .tb-megamenu .nav > li.active-trail > a:hover::before, .desktop-menu .tb-megamenu .nav > li.dropdown.open > .dropdown-toggle::before {
    transition: all 0.2s ease-out;
    transition-delay: 0;
    color: white !important;
  }
  /* line 1062, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .nav > .active > a {
    background-color: #f27c38 !important;
    color: white;
  }
  /* line 1066, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .nav > .active > a::before {
    color: currentColor;
  }
  /* line 1072, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu,
  .desktop-menu .tb-megamenu .dropdown {
    position: static;
  }
  /* line 1077, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .dropdown-menu {
    background: #f27c38;
    background: linear-gradient(45deg, #b84b0c 0%, #b84b0c 35%, #f27c38 65%, #f27c38 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr= '$blue-darker', endColorstr='$primary', GradientType=1 );
    border: none;
    left: 0;
    right: 0;
    top: 104px;
    z-index: 1000000;
  }
}
@media (min-width: 1025px) and (min-width: 1025px) {
  /* line 1077, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .dropdown-menu {
    background: linear-gradient(17deg, #b84b0c 0%, #b84b0c 15%, #f27c38 55%, #f27c38 100%);
  }
}
@media (min-width: 1025px) {
  /* line 1091, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .dropdown-menu .active a {
    background: none;
  }
  /* line 1095, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .dropdown-menu > .mega-dropdown-inner {
    text-align: right;
    padding: 50px 20px;
    padding-top: 50px;
    padding-bottom: 50px;
    max-width: 1400px;
    margin: 0 auto;
    *zoom: 1;
  }
  /* line 122, ../sass/base/_mixins.scss */
  .desktop-menu .tb-megamenu .dropdown-menu > .mega-dropdown-inner:before, .desktop-menu .tb-megamenu .dropdown-menu > .mega-dropdown-inner:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  .desktop-menu .tb-megamenu .dropdown-menu > .mega-dropdown-inner:after {
    clear: both;
  }
  /* line 1104, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .dropdown-menu > .mega-dropdown-inner .mega-inner {
    padding: 0;
  }
  /* line 1108, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .dropdown-menu > .mega-dropdown-inner > .tb-megamenu-row {
    position: relative;
    min-height: 145px;
  }
  /* line 1112, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .dropdown-menu > .mega-dropdown-inner > .tb-megamenu-row > .tb-megamenu-column {
    text-align: left !important;
    width: auto;
    margin: auto;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 17.6%;
    margin-left: 0%;
    margin-right: 3%;
  }
  /* line 122, ../sass/base/_mixins.scss */
  .desktop-menu .tb-megamenu .dropdown-menu > .mega-dropdown-inner > .tb-megamenu-row > .tb-megamenu-column:before, .desktop-menu .tb-megamenu .dropdown-menu > .mega-dropdown-inner > .tb-megamenu-row > .tb-megamenu-column:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  .desktop-menu .tb-megamenu .dropdown-menu > .mega-dropdown-inner > .tb-megamenu-row > .tb-megamenu-column:after {
    clear: both;
  }
  /* line 56, ../sass/jeet/_grid.scss */
  .desktop-menu .tb-megamenu .dropdown-menu > .mega-dropdown-inner > .tb-megamenu-row > .tb-megamenu-column:last-child {
    margin-right: 0%;
  }
  /* line 1118, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .dropdown-menu > .mega-dropdown-inner > .tb-megamenu-row > .tb-megamenu-column:first-child {
    position: absolute;
    top: 0;
    bottom: 0;
  }
  /* line 1123, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .dropdown-menu > .mega-dropdown-inner > .tb-megamenu-row > .tb-megamenu-column:first-child .tb-megamenu-block {
    margin: 0;
  }
  /* line 1128, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .dropdown-menu > .mega-dropdown-inner > .tb-megamenu-row > .tb-megamenu-column:nth-child(2) {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 17.6%;
    margin-left: 20.6%;
    margin-right: 3%;
  }
  /* line 122, ../sass/base/_mixins.scss */
  .desktop-menu .tb-megamenu .dropdown-menu > .mega-dropdown-inner > .tb-megamenu-row > .tb-megamenu-column:nth-child(2):before, .desktop-menu .tb-megamenu .dropdown-menu > .mega-dropdown-inner > .tb-megamenu-row > .tb-megamenu-column:nth-child(2):after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  .desktop-menu .tb-megamenu .dropdown-menu > .mega-dropdown-inner > .tb-megamenu-row > .tb-megamenu-column:nth-child(2):after {
    clear: both;
  }
  /* line 56, ../sass/jeet/_grid.scss */
  .desktop-menu .tb-megamenu .dropdown-menu > .mega-dropdown-inner > .tb-megamenu-row > .tb-megamenu-column:nth-child(2):last-child {
    margin-right: 0%;
  }
  /* line 1133, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .dropdown-menu > .mega-dropdown-inner > .tb-megamenu-row > .tb-megamenu-column .tb-megamenu-subnav > li a {
    border: none;
    padding: 0;
    font-size: 18px;
    font-size: 1.125rem;
    color: white;
    line-height: 25px;
  }
  /* line 1144, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .dropdown-menu > .mega-dropdown-inner h2 {
    font-size: 16px;
    font-size: 1rem;
    margin-top: 0;
  }
  /* line 1149, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .dropdown-menu > .mega-dropdown-inner .block {
    text-align: left;
  }
  /* line 1152, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .dropdown-menu > .mega-dropdown-inner .block .menu a {
    font-size: 18px;
    font-size: 1.125rem;
    color: white;
  }
  /* line 1160, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu .dropdown-menu .active .mega-nav .mega-group > .mega-group-title,
  .desktop-menu .tb-megamenu .dropdown-menu .mega-nav .mega-group > .mega-group-title,
  .desktop-menu .tb-megamenu .mega-nav .mega-group > .mega-group-title {
    font-size: 16px !important;
    background: none;
    font-weight: 500;
    padding: 0;
    margin: 0 0 0.83em;
    text-transform: none;
    text-transform: uppercase;
    text-align: left;
  }
  /* line 1174, ../sass/design/_navigation.scss */
  .desktop-menu .tb-megamenu li.level-3 a:hover {
    transform: translateX(5px);
  }
}
/* line 1180, ../sass/design/_navigation.scss */
.desktop-menu [data-block=block--5] {
  border-right: 2px solid white;
  min-height: 145px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
/* line 1189, ../sass/design/_navigation.scss */
.desktop-menu [data-block=block--5] .content {
  color: white;
  text-align: center;
  padding: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
/* line 1198, ../sass/design/_navigation.scss */
.desktop-menu [data-block=block--5] .content span::before {
  font-size: 100px;
  font-size: 6.25rem;
  display: block;
  padding-bottom: 20px;
  content: "";
}
/* line 1206, ../sass/design/_navigation.scss */
.desktop-menu [data-block=block--5] .content em::before {
  font-size: 18px;
  font-size: 1.125rem;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 500;
  content: "Flights";
}
/* line 1217, ../sass/design/_navigation.scss */
.desktop-menu .dme-tofrom [data-block=block--5] .content span::before {
  content: "";
  font-size: 75px;
  font-size: 4.6875rem;
}
/* line 1222, ../sass/design/_navigation.scss */
.desktop-menu .dme-tofrom [data-block=block--5] .content em::before {
  content: "To & From the Airport";
}
/* line 1228, ../sass/design/_navigation.scss */
.desktop-menu .dme-passenger [data-block=block--5] .content span::before {
  content: "";
}
/* line 1232, ../sass/design/_navigation.scss */
.desktop-menu .dme-passenger [data-block=block--5] .content em::before {
  content: "Passenger Info";
}
/* line 1238, ../sass/design/_navigation.scss */
.desktop-menu .dme-parking [data-block=block--5] .content span::before {
  content: "";
}
/* line 1242, ../sass/design/_navigation.scss */
.desktop-menu .dme-parking [data-block=block--5] .content em::before {
  content: "Parking";
}
/* line 1248, ../sass/design/_navigation.scss */
.desktop-menu .dme-shopeat [data-block=block--5] .content span::before {
  content: "";
}
/* line 1252, ../sass/design/_navigation.scss */
.desktop-menu .dme-shopeat [data-block=block--5] .content em::before {
  content: "Shop, Eat & Relax";
}
/* line 1258, ../sass/design/_navigation.scss */
.desktop-menu .dme-about [data-block=block--5] .content span::before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'airportcorporate' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
}
/* line 1263, ../sass/design/_navigation.scss */
.desktop-menu .dme-about [data-block=block--5] .content em::before {
  content: "About Us";
}
/* line 1269, ../sass/design/_navigation.scss */
.desktop-menu .dme-business [data-block=block--5] .content span::before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'airportcorporate' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
}
/* line 1274, ../sass/design/_navigation.scss */
.desktop-menu .dme-business [data-block=block--5] .content em::before {
  content: "Our Business";
}
/* line 1280, ../sass/design/_navigation.scss */
.desktop-menu .dme-community [data-block=block--5] .content span::before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'airportcorporate' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
}
/* line 1285, ../sass/design/_navigation.scss */
.desktop-menu .dme-community [data-block=block--5] .content em::before {
  content: "Community";
}
/* line 1291, ../sass/design/_navigation.scss */
.desktop-menu .dme-planning [data-block=block--5] .content span::before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'airportcorporate' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
}
/* line 1296, ../sass/design/_navigation.scss */
.desktop-menu .dme-planning [data-block=block--5] .content em::before {
  content: "Planning & Environment";
}
/* line 1302, ../sass/design/_navigation.scss */
.desktop-menu .dme-working [data-block=block--5] .content span::before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'airportcorporate' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
}
/* line 1307, ../sass/design/_navigation.scss */
.desktop-menu .dme-working [data-block=block--5] .content em::before {
  content: "Working on Airport";
}

/* line 1313, ../sass/design/_navigation.scss */
#backtotop {
  background: rgba(242, 124, 56, 0.6);
  color: white;
  height: 60px;
  width: 60px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  line-height: 30px;
  padding: 10px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  text-align: center;
  z-index: 100;
  overflow: hidden;
  text-indent: -999px;
  transition: background ease-out 0.3s;
}
@media (max-width: 1024px) {
  /* line 1313, ../sass/design/_navigation.scss */
  #backtotop {
    display: none !important;
  }
}
/* line 1335, ../sass/design/_navigation.scss */
#backtotop::before {
  text-indent: 0;
  color: currentColor;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: top ease-out 0.2s;
}
/* line 1347, ../sass/design/_navigation.scss */
#backtotop:hover {
  background: #f27c38;
}
/* line 1350, ../sass/design/_navigation.scss */
#backtotop:hover::before {
  top: 42%;
}

/* line 1, ../sass/design/_book-parking.scss */
.not-front.page-node.section-book-your-car-parking .content-area-wrapper .container, .not-front.page-node.section-book-your-car-parking .content-area-wrapper #block-views-alert-block .alert-wrapper, #block-views-alert-block .not-front.page-node.section-book-your-car-parking .content-area-wrapper .alert-wrapper, .not-front.page-node.section-book-your-car-parking .content-area-wrapper footer .footer-wrapper, footer .not-front.page-node.section-book-your-car-parking .content-area-wrapper .footer-wrapper {
  max-width: 1200px;
}

/* line 9, ../sass/design/_book-parking.scss */
.desktop-menu .tb-megamenu .dropdown-menu > .mega-dropdown-inner > .tb-megamenu-row > .tb-megamenu-column .tb-megamenu-subnav > li.appear-as-bold > a {
  font-size: 16px !important;
  background: none;
  font-weight: 500;
  padding: 0;
  margin: 0 0 0.83em;
  text-transform: none;
  text-transform: uppercase;
  text-align: left;
}

/* line 20, ../sass/design/_book-parking.scss */
#mmenu_first .menu-mlid-3405 > a {
  padding-top: 15px;
  text-transform: uppercase;
  font-weight: 800;
  border-top: 1px solid #007dbd;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

/* line 31, ../sass/design/_book-parking.scss */
.book-parking-holder {
  margin-top: 80px;
}
/* line 34, ../sass/design/_book-parking.scss */
.book-parking-holder .book-parking-inner {
  font-size: 16px;
  font-size: 1rem;
  padding: 150px 30px 20px 20px;
  background: #fff url(../img/parking-symbol.svg) no-repeat center 15px;
  background-size: 120px 120px;
  *zoom: 1;
}
@media (min-width: 769px) {
  /* line 34, ../sass/design/_book-parking.scss */
  .book-parking-holder .book-parking-inner {
    padding: 20px 30px 20px 150px;
    background: #fff url(../img/parking-symbol.svg) no-repeat 15px center;
    background-size: 120px 120px;
  }
}
/* line 122, ../sass/base/_mixins.scss */
.book-parking-holder .book-parking-inner:before, .book-parking-holder .book-parking-inner:after {
  content: '';
  display: table;
}
/* line 127, ../sass/base/_mixins.scss */
.book-parking-holder .book-parking-inner:after {
  clear: both;
}
/* line 48, ../sass/design/_book-parking.scss */
.book-parking-holder .book-parking-inner > .col {
  margin-bottom: 15px;
}
@media (min-width: 769px) {
  /* line 48, ../sass/design/_book-parking.scss */
  .book-parking-holder .book-parking-inner > .col {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
  }
  /* line 122, ../sass/base/_mixins.scss */
  .book-parking-holder .book-parking-inner > .col:before, .book-parking-holder .book-parking-inner > .col:after {
    content: '';
    display: table;
  }
  /* line 127, ../sass/base/_mixins.scss */
  .book-parking-holder .book-parking-inner > .col:after {
    clear: both;
  }
  /* line 56, ../sass/jeet/_grid.scss */
  .book-parking-holder .book-parking-inner > .col:last-child {
    margin-right: 0%;
  }
}
/* line 55, ../sass/design/_book-parking.scss */
.book-parking-holder .book-parking-inner > .col label {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  color: #003145;
  text-align: left;
  text-shadow: none;
}
/* line 63, ../sass/design/_book-parking.scss */
.book-parking-holder .book-parking-inner > .col input {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  padding: 20px 15px;
}
/* line 69, ../sass/design/_book-parking.scss */
.book-parking-holder .book-parking-inner > .col input[type="submit"] {
  border: 1px solid #f27c38;
  background: #f27c38 url(../img/icon-submit-parking.png) no-repeat 90% center;
  color: #FFF;
  font-weight: bold;
  font-size: 16px;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 11px 45px 11px 15px;
}
/* line 78, ../sass/design/_book-parking.scss */
.book-parking-holder .book-parking-inner > .col input[type="submit"]:hover {
  background-color: #f06c20;
}
/* line 85, ../sass/design/_book-parking.scss */
.book-parking-holder .book-parking-inner > .col.date-time .inputs > .input-date {
  width: 60%;
  margin-right: 2%;
  background-repeat: no-repeat;
  background-image: url(../img/icon-parking-date.png);
  background-position: 90% center;
}
/* line 93, ../sass/design/_book-parking.scss */
.book-parking-holder .book-parking-inner > .col.date-time .inputs > .input-time {
  width: 38%;
  background-repeat: no-repeat;
  background-image: url(../img/icon-parking-time.png);
  background-position: 90% center;
}
/* line 103, ../sass/design/_book-parking.scss */
.book-parking-holder .book-parking-inner > .col.col-4 .inputs {
  text-align: left;
}
/* line 106, ../sass/design/_book-parking.scss */
.book-parking-holder .book-parking-inner > .col.col-4 .inputs input[type="submit"] {
  width: 100%;
  padding: 20px;
}

/* line 116, ../sass/design/_book-parking.scss */
.xdsoft_monthpicker {
  *zoom: 1;
  padding: 10px 0 !important;
}
/* line 122, ../sass/base/_mixins.scss */
.xdsoft_monthpicker:before, .xdsoft_monthpicker:after {
  content: '';
  display: table;
}
/* line 127, ../sass/base/_mixins.scss */
.xdsoft_monthpicker:after {
  clear: both;
}

/* line 122, ../sass/design/_book-parking.scss */
.xdsoft_label > span {
  font-weight: normal;
}
/* line 127, ../sass/design/_book-parking.scss */
.xdsoft_label.xdsoft_month > span {
  padding-right: 5px;
}

/* line 134, ../sass/design/_book-parking.scss */
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev, .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

/* line 139, ../sass/design/_book-parking.scss */
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default, .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current, .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  background: #f27c38 !important;
  box-shadow: #f27c38 0 1px 3px 0 inset !important;
  color: #fff;
  font-weight: 700;
}
