.flash-notice {
  position: relative;
  padding-left: 5px;
  padding-right: 5px;
  width: 100%;
  float: left;
  background-color: #f60;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  margin-top: 10px;
  padding: 10px; }

#sold-out-modal-dialog .search-again-button-container {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  float: left;
  text-align: center; }
  #sold-out-modal-dialog .search-again-button-container button {
    float: none; }

@media only screen and (min-width: 768px) {
  .search-form-wrapper {
    margin-bottom: 150px; } }

/*
    Hide the datepickers associated input by using a className
*/
.fd-hidden-input {
  display: none; }

/*
    Screen reader class - used to hide spans inside each cell from the visual
    display. See: http://webaim.org/techniques/css/invisiblecontent/
*/
.fd-screen-reader {
  position: absolute;
  left: -999em;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  -moz-outline: 0 none;
  outline: 0 none; }

/*
    The wrapper div
*/
.date-picker {
  position: absolute;
  z-index: 9999;
  text-align: center;
  /*
    Change the font-size to suit your needs. The following line is for the demo
    that has a 14px font-size defined on the body tag.

    All other rules are "em" based and inherit from the font-size set here.
    */
  font: 900 0.8em/1em "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Verdana, Arial, "Lucida Grande", sans-serif;
  background: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  /*
    Set the fade in/out animation time here. This is used for browsers that
    support CSS transitions. Non-supporting browsers receive the fade effect
    using a Javascript fallback.
    */
  opacity: 1;
  -webkit-transition: opacity .75s ease-in-out;
  -moz-transition: opacity .75s ease-in-out;
  -ms-transition: opacity .75s ease-in-out;
  -o-transition: opacity .75s ease-in-out;
  transition: opacity .75s ease-in-out; }

/*
    The following rule is used whenever CSS Animations are supported by the
    browser
*/
.date-picker.fd-dp-fade {
  opacity: 0; }

/*
    Styles for the static datePickers
*/
.static-datepicker {
  position: relative;
  top: 5px;
  left: 0;
  margin-bottom: 1.5em; }

/*
    The iframe hack to cover selectlists in IE6
*/
.iehack {
  position: absolute;
  background: #fff;
  z-index: 9998;
  padding: 0;
  margin: 0;
  border: 0;
  display: none; }

/*
    The activation "button" created beside each input for popup datePickers
*/
.date-picker-control span {
  display: block;
  width: 18px;
  height: 18px;
  overflow: hidden;
  margin: auto 0;
  resize: none;
  outline: none; }

/*
    The hover effect on the activation button
*/
.date-picker-button-active span,
.date-picker-control:focus span,
.date-picker-control:hover span,
.date-picker-control:active span {
  outline: none;
  box-shadow: 0 0 5px rgba(40, 130, 170, 0.7);
  border-radius: 2px; }

/*
    A base64 encoded image-sprite is used for the activation button. IE6 and 7
    get fed "normal" png images within the rule that follows.
*/
.date-picker-control:link,
.date-picker-control:visited {
  position: relative;
  display: -moz-inline-box;
  border: 0 none;
  padding: 0;
  margin: 0 4px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 0 -72px;
  min-width: 18px;
  line-height: 1;
  cursor: pointer;
  visibility: visible;
  text-decoration: none;
  vertical-align: text-bottom;
  resize: none; }

/*
    IE6 & 7 fed "normal" png images
*/
.oldie .date-picker-control:link,
.oldie .date-picker-control:visited {
  /*
    IE7 gets a non-base64 encoded image sprite of the base64 encoded image
    declared above. That's all you have to do for IE7 support as it inherits
    the background-position declarations used to reposition the sprite
    */
  /*
    IE6 gets the filter treatment and an individual image for each animation
    state. This pattern is repeated for all other image-based rules within the
    stylesheet
    */
  _background-image: none;
  _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,sizingMethod=crop,src='http://www.frequency-decoder.com/demo/datePicker/media/datepicker-normal.png'); }

/*
    If the datepicker has a valid date then use a different icon for the
    activation button to let the user know. It's a little detail but it's the
    little things in life etc
*/
.date-picker-dateval:link,
.date-picker-dateval:visited {
  background-position: 0 -108px; }

/*
    Again, IE6 gets a "normal" png image from the server. Rinse, repeat.
*/
.oldie .date-picker-dateval:link,
.oldie .date-picker-dateval:visited {
  _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,sizingMethod=crop,src='http://www.frequency-decoder.com/demo/datePicker/media/datepicker-selected.png'); }

/*
    Hover states etc for the activation button
*/
.date-picker-button-active:link,
.date-picker-button-active:visited,
.date-picker-control:focus,
.date-picker-control:hover,
.date-picker-control:active {
  background-position: 0 0; }

/*
    IE 6 activation button hover states
*/
.oldie .date-picker-button-active:link,
.oldie .date-picker-button-active:visited,
.oldie .date-picker-control:focus,
.oldie .date-picker-control:hover,
.oldie .date-picker-control:active {
  _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,sizingMethod=crop,src='http://www.frequency-decoder.com/demo/datePicker/media/datepicker-focused.png'); }

/*
    Disabled activation button
*/
.date-picker-control-disabled:link,
.date-picker-control-disabled:visited,
.date-picker-control-disabled:hover,
.date-picker-control-disabled:active {
  background-position: 0 -36px;
  cursor: default; }

/*
    IE 6 disabled activation button
*/
.oldie .date-picker-control-disabled:link,
.oldie .date-picker-control-disabled:visited,
.oldie .date-picker-control-disabled:hover,
.oldie .date-picker-control-disabled:active {
  _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,sizingMethod=crop,src='http://www.frequency-decoder.com/demo/datePicker/media/datepicker-disabled.png'); }

.date-picker-control-disabled:hover span,
.date-picker-control-disabled:active span {
  box-shadow: none !important; }

/*
    Feed IE6 the following rule, IE7 should handle the min-width declared
    previously.
 */
.oldie .date-picker-control {
  _width: 18px; }

/*
    IE, older Safari & Opera. Seperate CSS rule seems to be required.
*/
.date-picker-control {
  display: inline-block; }

/*
    Default datepicker "button" styles
*/
.date-picker th span {
  display: block;
  padding: 0;
  margin: 0;
  text-align: center;
  line-height: 1em;
  border: 0 none;
  background: transparent;
  font-weight: bold;
  cursor: pointer; }

/*
    The "month, year" display
*/
.date-picker .month-display,
.date-picker .year-display {
  display: inline;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: normal;
  font-size: 1.2em; }

/*
    Generic button class for Next & Previous (both month & year) buttons
*/
.date-picker .prev-but,
.date-picker .next-but {
  font-weight: normal;
  font-size: 2.4em;
  font-family: georgia, times new roman, palatino, times, bookman, serif;
  cursor: pointer; }

.date-picker .prev-but,
.date-picker .next-but,
.date-picker .today-but {
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out; }

/*
    Hover effect for Next & Previous (month, year) buttons
*/
.date-picker .prev-but:hover,
.date-picker .next-but:hover,
.date-picker .today-but:hover {
  color: #a84444; }

.date-picker .prev-but:hover,
.date-picker .next-but:hover {
  /*
    Uncomment this if you want a scale effect...

    -webkit-transform:scale(1.6);
       -moz-transform:scale(1.6);
        -ms-transform:scale(1.6);
         -o-transform:scale(1.6);
            transform:scale(1.6);

    text-shadow:0 2px 1px rgba(0,0,0,.4);
    */ }

/*
    Today button
*/
.date-picker .today-but {
  text-align: center;
  margin: 0 auto;
  font-weight: normal;
  font-size: 1em;
  width: 100%;
  text-decoration: none;
  padding-top: 0.3em;
  text-transform: uppercase;
  vertical-align: middle;
  cursor: pointer; }

/*
    Disabled buttons
*/
.date-picker-disabled .prev-but,
.date-picker-disabled .next-but,
.date-picker-disabled .today-but,
.date-picker-disabled .prev-but:hover,
.date-picker-disabled .next-but:hover,
.date-picker-disabled .today-but:hover,
.date-picker .prev-but.fd-disabled:hover,
.date-picker .next-but.fd-disabled:hover,
.date-picker .fd-disabled,
.date-picker .fd-disabled:hover {
  color: #aaa;
  cursor: default !important;
  opacity: 1; }

.date-picker .prev-but.fd-disabled:hover,
.date-picker .next-but.fd-disabled:hover {
  /*
    Uncomment this if you have uncommented the "scale" rules above

    -webkit-transform:scale(1);
       -moz-transform:scale(1);
        -ms-transform:scale(1);
         -o-transform:scale(1);
            transform:scale(1);
    */
  text-shadow: 0 -1px 1px rgba(255, 255, 255, 0.8); }

/*
    The gradient background image
*/
.date-picker table,
.date-picker td,
.date-picker tbody th,
.date-picker .day-disabled,
.date-picker .date-picker-hover.day-disabled,
.date-picker .date-picker-unused,
.date-picker .month-out {
  background-color: #fff;
  background-repeat: repeat-x;
  background-position: 0 0; }

.oldie .date-picker table,
.oldie .date-picker td,
.oldie .date-picker tbody th,
.oldie .date-picker .day-disabled,
.oldie .date-picker .date-picker-hover.day-disabled,
.oldie .date-picker .date-picker-unused,
.oldie .date-picker .month-out {
  /*
    Remove from IE6 as it has a bug that never caches images on dynamically
    created elements which results in one http request being made for each
    cell of each table rendered by the script.
    */
  _background-image: none; }

.date-picker table {
  table-layout: auto;
  empty-cells: show;
  border-spacing: 2px;
  border-collapse: separate;
  position: relative;
  margin: 0;
  padding: 0;
  border: 1px solid #ccc;
  background-position: 0 -20px;
  text-align: center;
  padding: 0.3em;
  width: auto;
  height: auto;
  color: #555;
  font-size: 1em;
  border-radius: 0.8em;
  box-shadow: 0px 0px 5px #aaa; }

/*
    Create a "Lifted Corners" effect on the table. Ripped straight from @necolas
    http://nicolasgallagher.com/css-drop-shadows-without-images/
*/
.date-picker table:before,
.date-picker table:after {
  content: "";
  position: absolute;
  z-index: -2;
  bottom: 15px;
  left: 10px;
  width: 50%;
  height: 20%;
  max-width: 300px;
  max-height: 100px;
  -webkit-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  transform: rotate(-3deg); }

.date-picker table:after {
  right: 10px;
  left: auto;
  -webkit-transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  -o-transform: rotate(3deg);
  transform: rotate(3deg); }

.oldie .date-picker table:before,
.oldie .date-picker table:after {
  display: none; }

/*
    Common TD & TH styling
*/
.date-picker td,
.date-picker tbody th {
  border: 0 none;
  padding: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-position: 0 -35px;
  width: 3em;
  height: 3em;
  overflow: hidden;
  outline: transparent none 0px;
  border: 1px solid #ccc;
  text-transform: none;
  font-weight: normal;
  text-shadow: 0 1px #fff;
  border-radius: 2px; }

.date-picker th {
  border: 0 none;
  padding: 0;
  font-weight: bold;
  color: #333;
  text-align: center;
  vertical-align: middle;
  text-transform: none; }

.date-picker .date-picker-week-header {
  border: 1px solid #dcdcdc;
  font-style: oblique;
  background: transparent;
  cursor: default; }

.date-picker .date-picker-thead .date-picker-week-header {
  border: 0 none;
  cursor: help; }

/*
    The "mon tue wed etc" day header styles
*/
.date-picker .date-picker-day-header {
  cursor: help;
  border: 0 none;
  padding: 0 0 0.2em 0;
  text-transform: lowercase;
  height: auto; }

/*
    tfoot status bar
*/
.date-picker .date-picker-statusbar {
  cursor: default;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 0 none;
  background: #fff;
  height: 2.8em; }

/*
    TD cell that is _not_ used to display a day of the month
*/
.date-picker .date-picker-unused {
  border-color: #dcdcdc;
  cursor: default !important;
  background-position: 0 -25px; }

/*
    The TH cell used to display the "month, year" title
*/
.date-picker .date-picker-title {
  width: auto;
  height: auto;
  padding: 0.4em 0; }

/*
    The "todays date" cell style
*/
.date-picker .month-out.date-picker-highlight {
  color: #b87676; }

/*
    The "highlight days" style
*/
.date-picker .date-picker-highlight {
  color: #a86666; }

/*
    The "active cursor" style
*/
.date-picker td {
  /*

    Uncomment this if you want a transition on the cursor cells scale effect

    -webkit-transition: all .2s ease;
       -moz-transition: all .2s ease;
        -ms-transition: all .2s ease;
         -o-transition: all .2s ease;
            transition: all .2s ease;
    */ }

/*
    Keyboard users get a scaled cursor. webKit exhibits buggy behaviour when
    scaling TD cells so commented out until I find a curious CSS based fix.
    Opera no longer appears to apply the scale... ho hum...
*/
.date-picker-focus .date-picker-hover {
  /*
    -webkit-transform:scale(1.25);
    */
  -moz-transform: scale(1.25);
  -ms-transform: scale(1.25);
  -o-transform: scale(1.25);
  transform: scale(1.25); }

.date-picker .date-picker-hover,
.date-picker .month-out.date-picker-hover {
  cursor: pointer;
  border-color: #6482aa !important;
  border-color: rgba(100, 130, 170, 0.7) !important;
  color: #6482aa;
  text-shadow: 0px 1px 1px #fff;
  box-shadow: 0 0 6px rgba(100, 130, 170, 0.6); }

/*
    The "disabled days" style
*/
.date-picker .day-disabled {
  color: #888;
  cursor: default;
  text-decoration: line-through;
  background-position: 0 -15px; }

.date-picker .month-out {
  border-color: #ddd;
  border-color: rgba(220, 220, 220, 0.8);
  color: #aaa;
  background-position: 0 -25px; }

/*
    The "selected date" style - color changed below also
*/
.date-picker .date-picker-selected-date {
  border-color: #888 !important;
  border-color: rgba(7, 7, 7, 0.6) !important; }

/*
    The date "out of range" style
*/
.date-picker .out-of-range,
.date-picker .not-selectable {
  color: #ccc;
  font-style: oblique;
  background: #fcfcfc;
  cursor: default; }

/*
    Week number "out of range" && "month-out" styles
*/
.date-picker th.month-out,
.date-picker th.out-of-range {
  color: #aaa;
  font-style: oblique;
  background: #fcfcfc; }

/*
    Week numbers "out of range"
*/
.date-picker .out-of-range {
  opacity: 0.6; }

/*
    Used when the entire grid is full but the next/prev months dates cannot be
    selected
*/
.date-picker .not-selectable {
  opacity: 0.8; }

.oldie .date-picker .out-of-range {
  filter: alpha(opacity=60); }

.oldie .date-picker .not-selectable {
  filter: alpha(opacity=80); }

.date-picker tr {
  display: table-row; }

.date-picker sup {
  font-size: 0.86em;
  letter-spacing: normal;
  text-transform: none;
  height: 0;
  line-height: 1;
  position: relative;
  top: -0.2em;
  vertical-align: baseline !important;
  vertical-align: top; }

.date-picker .date-picker-day-header,
.date-picker .month-display,
.date-picker .year-display {
  text-shadow: 0px 1px 1px #fff; }

.date-picker .month-display,
.date-picker .year-display {
  cursor: default; }

.date-picker td:focus,
.date-picker .date-picker-hover {
  overflow: hidden;
  -moz-outline: 0 none;
  outline: 0 none;
  -o-highlight: 0 none; }

/*
    The "pulse" animation on focused button and datepicker cursor
*/
.date-picker-focus .date-picker-hover,
.date-picker-control:focus span {
  -webkit-animation: fd-dp-pulse 1.5s infinite alternate;
  -moz-animation: fd-dp-pulse 1.5s infinite alternate;
  -ms-animation: fd-dp-pulse 1.5s infinite alternate;
  -o-animation: fd-dp-pulse 1.5s infinite alternate; }

/*
    The "selected date" style
*/
.date-picker .date-picker-selected-date {
  color: #333;
  color: rgba(3, 3, 3, 0.8);
  font-weight: bold;
  font-size: 1.2em;
  width: 2.4em;
  height: 2.4em; }

/*
    Remove the box-shadow & lifted corner effect for the inline datepickers
*/
.static-datepicker table {
  box-shadow: 0 0 0 transparent; }

.static-datepicker table:before,
.static-datepicker table:after {
  display: none; }

/*
    Add a box-shadow and enhance border for datepickers that have keyboard focus
*/
.date-picker-focus table {
  border-color: #999;
  border-color: rgba(153, 153, 153, 0.8);
  box-shadow: 0px 0px 5px #aaa; }

/*
    Draggable datepickers
*/
.date-picker .drag-enabled,
.date-picker .drag-enabled span {
  cursor: move; }

/*
    Disabled datePicker
*/
.date-picker-disabled table {
  opacity: .8 !important; }

.date-picker-disabled table:before,
.date-picker-disabled table:after {
  display: none; }

.oldie .date-picker-disabled table {
  filter: alpha(opacity=80); }

.date-picker-disabled,
.date-picker-disabled td,
.date-picker-disabled th,
.date-picker-disabled th span {
  cursor: default !important; }

.date-picker-disabled .prev-but:hover,
.date-picker-disabled .next-but:hover {
  /*
    Uncomment this if you have used the previous scale rules previously
    declared within the file (for the prev-but and next-but classes)

    -webkit-transform:scale(1);
       -moz-transform:scale(1);
        -ms-transform:scale(1);
         -o-transform:scale(1);
            transform:scale(1);
    */
  text-shadow: none; }

body.fd-drag-active {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

/*
    Glow effect for the focused (keyboard active) cursor cell and popup
    datepickers activation button
*/
@-webkit-keyframes fd-dp-pulse {
  from {
    box-shadow: 0 0 2px rgba(100, 130, 170, 0.8); }
  to {
    box-shadow: 0 0 6px rgba(10, 130, 170, 0.5); } }

@-moz-keyframes fd-dp-pulse {
  from {
    box-shadow: 0 0 2px rgba(100, 130, 170, 0.8); }
  to {
    box-shadow: 0 0 6px rgba(10, 130, 170, 0.5); } }

@-ms-keyframes fd-dp-pulse {
  from {
    box-shadow: 0 0 2px rgba(100, 130, 170, 0.8); }
  to {
    box-shadow: 0 0 6px rgba(10, 130, 170, 0.5); } }

@-o-keyframes fd-dp-pulse {
  from {
    box-shadow: 0 0 2px rgba(100, 130, 170, 0.8); }
  to {
    box-shadow: 0 0 6px rgba(10, 130, 170, 0.5); } }

.fcl-datepicker-wrapper {
  display: none;
  height: auto;
  margin-top: -24px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 2; }
  .fcl-datepicker-wrapper .fcl-datepicker-widget {
    position: relative;
    z-index: 1; }
  .fcl-datepicker-wrapper .fcl-datepicker-btns {
    display: none;
    margin: 0 auto;
    padding: 1em 0;
    text-align: center; }
    .fcl-datepicker-wrapper .fcl-datepicker-btns a {
      margin-bottom: 0; }

.show-datepicker {
  background-color: #fff; }
  .show-datepicker .fcl-datepicker-wrapper {
    display: block; }
    @media only screen and (min-width: 768px) {
      .show-datepicker .fcl-datepicker-wrapper {
        margin-top: -20px;
        position: absolute;
        width: 95%; } }
  .show-datepicker .date-picker table thead {
    background-color: #0fb7d0; }
  .show-datepicker .fcl-datepicker-tab-arrow {
    -webkit-transition: left 1s;
    -moz-transition: left 1s;
    -o-transition: left 1s;
    transition: left 1s;
    border-bottom: 10px solid #0fb7d0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid transparent;
    height: 0;
    left: 25%;
    position: relative;
    transition: left 1s;
    width: 0; }
  .show-datepicker.return .fcl-datepicker-tab-arrow {
    border-bottom: 10px solid #4fbd23;
    left: 75%; }
  .show-datepicker.return .date-picker table thead {
    background-color: #4fbd23; }

.static-datepicker {
  margin-bottom: 0;
  top: 0; }

.date-picker table {
  background-position: 0;
  border: 0;
  border-radius: 0;
  border-spacing: 0;
  margin: 0 auto;
  padding: 0;
  width: 100%; }
  .date-picker table tr {
    background: transparent; }
    .date-picker table tr th.date-picker-title {
      padding: 1em 0 0; }
      .date-picker table tr th.date-picker-title span {
        font-size: 16px;
        font-weight: bold; }
    .date-picker table tr th.date-picker-day-header {
      cursor: default;
      font-size: 13px;
      text-transform: none; }
    .date-picker table tr th span {
      cursor: default; }
    .date-picker table tr td {
      border: 1px solid #eee;
      border-radius: 0;
      font-size: .875em; }
      .date-picker table tr td.date-picker-selected-date {
        font-size: .875em;
        font-weight: normal; }
      .date-picker table tr td.date-picker-today {
        -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
        background-color: #333;
        color: #fff; }
        .date-picker table tr td.date-picker-today:active {
          -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset; }
      .date-picker table tr td.return-date {
        background-color: #4fbd23;
        border: 1px solid #4fbd23; }
      .date-picker table tr td.depart-date, .date-picker table tr td.return-date {
        color: #fff;
        font-weight: bold;
        text-shadow: none; }
      .date-picker table tr td.depart-date {
        background-color: #0fb7d0;
        border: 1px solid #0fb7d0; }
        .date-picker table tr td.depart-date.return-date {
          background: #0fb7d0;
          background: -moz-linear-gradient(left, #0fb7d0 0%, #0fb7d0 50%, #4fbd23 50%, #4fbd23 100%);
          background: -webkit-gradient(linear, left top, right top, color-stop(0%, #0fb7d0), color-stop(50%, #0fb7d0), color-stop(50%, #4fbd23), color-stop(100%, #4fbd23));
          background: -webkit-linear-gradient(left, #0fb7d0 0%, #0fb7d0 50%, #4fbd23 50%, #4fbd23 100%);
          background: -o-linear-gradient(left, #0fb7d0 0%, #0fb7d0 50%, #4fbd23 50%, #4fbd23 100%);
          background: -ms-linear-gradient(left, #0fb7d0 0%, #0fb7d0 50%, #4fbd23 50%, #4fbd23 100%);
          background: linear-gradient(to right, #0fb7d0 0%, #0fb7d0 50%, #4fbd23 50%, #4fbd23 100%);
          filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0fb7d0', endColorstr='#4fbd23', GradientType=1); }
      .date-picker table tr td.inbetween-date {
        background-color: #eaeaea;
        text-shadow: none; }
  .date-picker table .date-picker-title,
  .date-picker table .month-display {
    color: #fff;
    text-shadow: none; }
  .date-picker table .date-picker-day-header {
    color: #fff;
    text-shadow: none; }

::-webkit-input-placeholder {
  font-style: italic; }

:-moz-placeholder {
  font-style: italic; }

::-moz-placeholder {
  font-style: italic; }

:-ms-input-placeholder {
  font-style: italic; }

.search-form-wrapper {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  float: left; }
  @media only screen and (min-width: 768px) {
    .search-form-wrapper {
      padding: 10px 0; } }
  .search-form-wrapper form {
    position: relative;
    padding-left: 5px;
    padding-right: 5px;
    width: 100%;
    float: left;
    background-color: #fff;
    padding: 0; }
  .search-form-wrapper label {
    color: rgba(0, 0, 0, 0.54);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    left: 6px;
    margin-bottom: 0;
    position: absolute;
    text-align: left;
    text-transform: uppercase;
    top: 7px;
    z-index: 2; }
  .search-form-wrapper .hover .departdate label,
  .search-form-wrapper .hover .returndate label {
    color: #fff; }
  .search-form-wrapper .global-search-errors {
    position: relative;
    padding-left: 5px;
    padding-right: 5px;
    width: 100%;
    float: left;
    top: 0; }
    .search-form-wrapper .global-search-errors ul li:nth-child(1) {
      margin-bottom: 10px;
      position: relative;
      top: auto; }
  .search-form-wrapper .cabin-class-wrapper .ui-btn {
    overflow: visible; }
  .search-form-wrapper input[type="text"],
  .search-form-wrapper select {
    position: relative;
    padding-left: 5px;
    padding-right: 5px;
    width: 100%;
    float: left;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: rgba(0, 0, 0, 0.87);
    font-size: 12px;
    margin: 0 0 1em;
    padding: 19px 5px 6px;
    position: relative;
    text-align: left;
    text-indent: .01px; }
    @media only screen and (min-width: 768px) {
      .search-form-wrapper input[type="text"],
      .search-form-wrapper select {
        border: 1px solid rgba(0, 0, 0, 0.12);
        font-size: 14px;
        margin-bottom: 0;
        padding: 16px 6px 6px; } }
    .search-form-wrapper input[type="text"]:focus,
    .search-form-wrapper select:focus {
      outline: 0; }
    .search-form-wrapper input[type="text"].no-label,
    .search-form-wrapper select.no-label {
      padding-top: .5em; }
  .search-form-wrapper input[type="text"].depart.focus {
    border: 3px solid #0fb7d0; }
  .search-form-wrapper input[type="text"].return.focus {
    border: 3px solid #4fbd23; }
  .search-form-wrapper .ui-btn {
    height: auto; }
    @media only screen and (min-width: 768px) {
      .search-form-wrapper .ui-btn {
        margin-bottom: 10px; } }
    .search-form-wrapper .ui-btn.open {
      height: 58px; }
  .search-form-wrapper .field-container.invalid .error-message,
  .search-form-wrapper .server-error li:nth-child(1) {
    position: absolute; }
    .search-form-wrapper .field-container.invalid .error-message a,
    .search-form-wrapper .server-error li:nth-child(1) a {
      color: #fff; }
  .search-form-wrapper .field-container {
    overflow: visible; }
  @media only screen and (min-width: 960px) {
    .search-form-wrapper .passengers {
      position: relative;
      padding-left: 5px;
      padding-right: 5px;
      width: 41.66667%;
      float: left; } }
  .search-form-wrapper .airport-indicator {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 3px;
    height: 44px;
    margin-bottom: 14px;
    overflow: visible; }
    .search-form-wrapper .airport-indicator.open {
      background-color: #575757;
      border: 1px solid #575757;
      border-radius: 0;
      margin-bottom: 0; }
      .search-form-wrapper .airport-indicator.open .label,
      .search-form-wrapper .airport-indicator.open label {
        color: #fff; }
    .search-form-wrapper .airport-indicator label {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 11px; }
    .search-form-wrapper .airport-indicator select {
      border: 0;
      height: 42px; }
    .search-form-wrapper .airport-indicator .label {
      color: rgba(0, 0, 0, 0.87);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 12px;
      font-weight: normal;
      padding: 22px 6px 6px; }

.from-to-wrapper {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  float: left; }
  @media only screen and (min-width: 768px) {
    .from-to-wrapper {
      position: relative;
      padding-left: 0;
      padding-right: 0;
      width: 50%;
      float: left; } }
  .from-to-wrapper .origin-wrapper,
  .from-to-wrapper .airport-select,
  .from-to-wrapper .depart-date-wrapper,
  .from-to-wrapper .return-date-wrapper {
    position: relative;
    padding-left: 5px;
    padding-right: 5px;
    width: 50%;
    float: left; }
  .from-to-wrapper .airport-select {
    height: 54px; }

.passengers-wrapper {
  position: relative;
  padding-left: 5px;
  padding-right: 5px;
  width: 100%;
  float: left;
  overflow: hidden; }
  @media only screen and (min-width: 768px) {
    .passengers-wrapper {
      position: relative;
      padding-left: 5px;
      padding-right: 5px;
      width: 50%;
      float: left; } }
  @media only screen and (min-width: 960px) {
    .passengers-wrapper {
      position: relative;
      padding-left: 5px;
      padding-right: 5px;
      width: 100%;
      float: left; } }
  .passengers-wrapper .passenger {
    position: relative;
    padding-left: 0;
    padding-right: 0;
    width: 33.33333%;
    float: left; }
    .passengers-wrapper .passenger.adults select {
      border-bottom-right-radius: 0;
      border-right: 0;
      border-top-right-radius: 0; }
    .passengers-wrapper .passenger.children select {
      border-radius: 0; }
    .passengers-wrapper .passenger.infants select {
      border-bottom-left-radius: 0;
      border-left: 0;
      border-top-left-radius: 0; }

.unaccompanied-minors {
  position: relative;
  padding-left: 5px;
  padding-right: 5px;
  width: 100%;
  float: left;
  margin: 5px 0 15px;
  text-align: left; }
  @media only screen and (min-width: 768px) {
    .unaccompanied-minors {
      position: relative;
      padding-left: 5px;
      padding-right: 5px;
      width: 41.66667%;
      left: 50%;
      right: auto;
      float: left; } }
  @media only screen and (min-width: 960px) {
    .unaccompanied-minors {
      position: relative;
      padding-left: 5px;
      padding-right: 5px;
      width: 41.66667%;
      left: 58.33333%;
      right: auto;
      float: left; } }
  .unaccompanied-minors a {
    color: rgba(0, 0, 0, 0.87);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    outline: 0;
    text-decoration: none; }
    .unaccompanied-minors a:hover span.underlined {
      color: #0048b7; }
    .unaccompanied-minors a span.underlined {
      color: #0fb7d0;
      text-decoration: underline; }

.cabin-class-wrapper {
  position: relative;
  padding-left: 5px;
  padding-right: 5px;
  width: 50%;
  float: left; }
  @media only screen and (min-width: 768px) {
    .cabin-class-wrapper {
      position: relative;
      padding-left: 5px;
      padding-right: 5px;
      width: 25%;
      float: left; } }

.search-button-wrapper {
  position: relative;
  padding-left: 5px;
  padding-right: 5px;
  width: 50%;
  float: left;
  white-space: nowrap; }
  @media only screen and (min-width: 768px) {
    .search-button-wrapper {
      position: relative;
      padding-left: 5px;
      padding-right: 5px;
      width: 25%;
      float: left; } }
  @media only screen and (min-width: 960px) {
    .search-button-wrapper {
      position: relative;
      padding-left: 5px;
      padding-right: 5px;
      width: 16.66667%;
      float: left; } }
  .search-button-wrapper .flight-search-button {
    background-color: #22b929;
    filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#22b929', endColorstr='#009c07');
    background-size: 100%;
    background-image: -webkit-linear-gradient(top, #22b929 5%, #009c07 100%);
    background-image: -moz-linear-gradient(top, #22b929 5%, #009c07 100%);
    background-image: -o-linear-gradient(top, #22b929 5%, #009c07 100%);
    background-image: linear-gradient(top, #22b929 5%, #009c07 100%);
    -webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.4) inset;
    -moz-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.4) inset;
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.4) inset;
    text-indent: 0;
    border: 1px solid #005304;
    border-radius: 4px;
    display: inline-block;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    line-height: 44px;
    height: 44px;
    width: auto;
    text-align: left;
    text-decoration: none;
    text-shadow: 0 1px rgba(0, 0, 0, 0.7);
    margin: 0 0 10px;
    padding: 0 15px;
    position: relative;
    padding-left: 5px;
    padding-right: 5px;
    width: 100%;
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    vertical-align: middle; }
    @media only screen and (min-width: 768px) {
      .search-button-wrapper .flight-search-button:hover, .search-button-wrapper .flight-search-button.psuedo-hover {
        background-color: #01af09;
        color: #fff;
        cursor: pointer;
        text-decoration: none;
        filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#009c07', endColorstr='#22b929');
        background-size: 100%;
        background-image: -webkit-linear-gradient(top, #009c07 5%, #22b929 100%);
        background-image: -moz-linear-gradient(top, #009c07 5%, #22b929 100%);
        background-image: -o-linear-gradient(top, #009c07 5%, #22b929 100%);
        background-image: linear-gradient(top, #009c07 5%, #22b929 100%); }
      .search-button-wrapper .flight-search-button:active, .search-button-wrapper .flight-search-button.psuedo-active {
        position: relative;
        top: 1px; }
      .search-button-wrapper .flight-search-button:visited {
        color: #fff; } }
    .search-button-wrapper .flight-search-button + span::before {
      content: "0";
      font-family: "FC-Font";
      -webkit-font-smoothing: antialiased;
      color: #fff;
      cursor: pointer;
      display: inline-block;
      font-size: 18px;
      line-height: 44px;
      position: absolute;
      right: 12px;
      text-shadow: 0 1px rgba(0, 0, 0, 0.7); }
    @media only screen and (min-width: 768px) {
      .search-button-wrapper .flight-search-button:active + span::before {
        margin-top: 1px; } }
    @media only screen and (min-width: 768px) {
      .search-button-wrapper .flight-search-button {
        position: relative;
        padding-left: 5px;
        padding-right: 5px;
        width: 100%;
        left: 0%;
        right: auto;
        float: left;
        padding-left: 10px;
        padding-right: 10px; } }
    .search-button-wrapper .flight-search-button + span {
      display: inline-block;
      height: 44px;
      position: relative;
      right: 5px;
      vertical-align: middle;
      width: 1px; }
      @media only screen and (min-width: 480px) {
        .search-button-wrapper .flight-search-button + span {
          right: 5px; } }
      @media only screen and (min-width: 960px) {
        .search-button-wrapper .flight-search-button + span {
          right: 5px; } }

.oneway-container {
  margin-bottom: 10px; }
  @media only screen and (min-width: 768px) {
    .oneway-container {
      position: relative;
      padding-left: 5px;
      padding-right: 5px;
      width: 100%;
      float: left; } }
  @media only screen and (min-width: 960px) {
    .oneway-container {
      position: relative;
      padding-left: 0;
      padding-right: 0;
      width: 8.33333%;
      float: left; } }
  .oneway-container .oneway-radios {
    *zoom: 1; }
    .oneway-container .oneway-radios:before, .oneway-container .oneway-radios:after {
      content: " ";
      display: table; }
    .oneway-container .oneway-radios:after {
      clear: both; }
    .oneway-container .oneway-radios label {
      position: relative;
      padding-left: 5px;
      padding-right: 5px;
      width: 33.33333%;
      float: left;
      color: rgba(0, 0, 0, 0.87);
      padding-bottom: 13px;
      padding-top: 14px;
      text-transform: uppercase;
      top: 0;
      white-space: nowrap; }
      @media only screen and (min-width: 768px) {
        .oneway-container .oneway-radios label {
          position: relative;
          padding-left: 5px;
          padding-right: 5px;
          width: 16.66667%;
          float: left;
          font-size: 11px; } }
      @media only screen and (min-width: 960px) {
        .oneway-container .oneway-radios label {
          position: relative;
          padding-left: 5px;
          padding-right: 5px;
          width: 100%;
          float: left;
          left: 0;
          margin-bottom: 0;
          margin-top: 0;
          padding: 14px 0; } }

.ie_8 .search-form-wrapper .oneway-container .oneway-radios label {
  margin-top: 3px; }
  @media only screen and (min-width: 768px) {
    .ie_8 .search-form-wrapper .oneway-container .oneway-radios label {
      margin-top: 5px; } }
  @media only screen and (min-width: 960px) {
    .ie_8 .search-form-wrapper .oneway-container .oneway-radios label {
      width: auto; } }

.avail-legend {
  position: relative;
  padding-left: 5px;
  padding-right: 5px;
  width: 100%;
  float: left;
  color: #000;
  display: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  padding: 10px 0; }
  @media only screen and (min-width: 768px) {
    .avail-legend {
      display: inherit; } }
  .avail-legend .no-baggage,
  .avail-legend .red-eye,
  .avail-legend .baggage {
    background: none;
    vertical-align: middle; }
    .avail-legend .no-baggage span,
    .avail-legend .red-eye span,
    .avail-legend .baggage span {
      vertical-align: middle; }
  .avail-legend .icon {
    font-family: "FC-Font";
    -webkit-font-smoothing: antialiased;
    font-size: 16px; }
  .avail-legend .no-baggage,
  .avail-legend .baggage {
    float: left;
    padding-right: 15px; }
    .avail-legend .no-baggage .icon,
    .avail-legend .baggage .icon {
      color: #343c42; }
  .avail-legend .red-eye {
    position: relative;
    padding-left: 5px;
    padding-right: 5px;
    width: 33.33333%;
    float: left; }
    .avail-legend .red-eye .icon {
      color: #f00; }

@media only screen and (min-width: 768px) {
  #depart-return-same-day-modal-dialog {
    margin-left: -25%;
    width: 50%; } }

@media only screen and (min-width: 960px) {
  #depart-return-same-day-modal-dialog {
    margin-left: -15%;
    width: 30%; } }

#depart-return-same-day-modal-dialog .close-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  background-color: #000;
  border: 0;
  bottom: 0;
  color: #fff;
  height: 0;
  padding: 0;
  position: absolute;
  right: 10px;
  width: 0; }
  #depart-return-same-day-modal-dialog .close-button + span {
    cursor: pointer;
    position: absolute;
    right: 20px; }
    #depart-return-same-day-modal-dialog .close-button + span:before {
      content: ",";
      font-family: "FC-Font";
      -webkit-font-smoothing: antialiased;
      color: #fff;
      font-size: 18px; }

.airport-select-container {
  position: relative;
  padding-left: 5px;
  padding-right: 5px;
  width: 100%;
  float: left;
  display: none;
  top: -14px; }
  @media only screen and (min-width: 768px) {
    .airport-select-container {
      position: relative;
      padding-left: 0;
      padding-right: 0;
      width: 100%;
      float: left;
      padding: 0;
      top: 0;
      z-index: 20; } }

.airport-select-text-container {
  position: relative;
  padding-left: 5px;
  padding-right: 5px;
  width: 100%;
  float: left;
  background-color: #575757;
  padding: 10px; }
  @media only screen and (min-width: 768px) {
    .airport-select-text-container {
      position: relative;
      padding-left: 0;
      padding-right: 0;
      width: 100%;
      float: left;
      background-color: transparent;
      margin-bottom: 10px;
      padding: 0; } }
  .airport-select-text-container label {
    display: none; }
    @media only screen and (min-width: 768px) {
      .airport-select-text-container label {
        color: #515255;
        display: inherit;
        left: 6px;
        position: absolute;
        text-transform: uppercase;
        top: 7px;
        z-index: 21; } }
  .airport-select-text-container input[type='text'] {
    background-color: #fff;
    color: #000;
    font-size: 14px;
    margin-bottom: 0;
    padding-top: 6px; }
    @media only screen and (min-width: 768px) {
      .airport-select-text-container input[type='text'] {
        margin-bottom: 0;
        padding: 18px 6px 7px; } }
  @media only screen and (min-width: 768px) {
    .airport-select-text-container input {
      margin-bottom: 0;
      padding: 18px 6px 7px; } }
  .airport-select-text-container span.clearicon {
    position: relative; }
    .airport-select-text-container span.clearicon span {
      cursor: pointer;
      display: block;
      height: 16px;
      position: absolute;
      right: 8px;
      top: 14px;
      width: 16px; }
      .airport-select-text-container span.clearicon span::after {
        content: ",";
        font-family: "FC-Font";
        -webkit-font-smoothing: antialiased;
        color: #9a9a9a;
        font-size: 18px; }
    .airport-select-text-container span.clearicon input {
      padding-right: 16px; }

.airport-results {
  position: relative;
  padding-left: 5px;
  padding-right: 5px;
  width: 100%;
  float: left;
  background-color: #575757;
  list-style: none;
  -webkit-margin-after: 0;
  -webkit-margin-before: 0;
  -webkit-margin-end: 0;
  -webkit-margin-start: 0;
  margin-top: 0;
  max-height: 200px;
  overflow-y: scroll;
  padding-right: 0;
  -webkit-padding-start: 1px; }
  @media only screen and (min-width: 768px) {
    .airport-results {
      background-color: #fff;
      border: 1px solid rgba(0, 0, 0, 0.12);
      display: none;
      margin-top: -10px;
      position: absolute;
      top: 54px;
      width: 350px;
      z-index: 23; } }
  .airport-results li {
    border-bottom: 1px dotted #fff;
    color: #fff;
    display: block;
    font-family: Arial;
    font-size: 14px;
    list-style: none;
    margin: 0;
    min-height: 45px;
    padding: 4px 14px; }
    @media only screen and (min-width: 768px) {
      .airport-results li {
        border-bottom: 1px dotted rgba(0, 0, 0, 0.87);
        color: #116ab2;
        overflow: hidden;
        padding-left: 4px;
        padding-right: 4px; } }
    .airport-results li:last-child {
      border-bottom: 0; }
    .airport-results li:hover, .airport-results li.hover {
      background-color: #116ab2;
      color: #fff; }
    .airport-results li strong {
      font-weight: bold; }
    .airport-results li .iata {
      float: left;
      height: 40px;
      width: 50px; }

.firefox .airport-select-text-container span.clearicon span {
  top: 26px; }
  @media only screen and (min-width: 768px) {
    .firefox .airport-select-text-container span.clearicon span {
      top: 32px; } }

.trident .airport-select-text-container span.clearicon span,
.ie .airport-select-text-container span.clearicon span {
  display: none; }

.ie_6 .airport-select-text-container span.clearicon span,
.ie_7 .airport-select-text-container span.clearicon span,
.ie_8 .airport-select-text-container span.clearicon span,
.ie_9 .airport-select-text-container span.clearicon span {
  display: block;
  top: 26px; }
