@charset "UTF-8";
/*
    Document   : flightdesc-site-styles 
    Created on : 22/09/2011, 5:55:45 PM
    Author     : Logan
    Description: 
        general styling for frontend flightdec sites
        basic layout for normal settings, FD logo, forms et c.

    IF need to overwrite, do so in styles.css
*/
/*rewrite btn if using a colour */
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets
  http://mynameismatthieu.com/sass-css3-mixins/

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
/*! 
*   https://github.com/alexwolfe/Buttons

@license
*
* Buttons
* Copyright 2012-2014 Alex Wolfe and Rob Levin
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*        http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* Compass (optional)
*
* We recommend the use of autoprefixer instead of Compass
* when using buttons. However, buttons does support Compass.
* simply change $ubtn-use-compass to true and uncomment the
* @import 'compass' code below to use Compass.
*/
/*
* Required Files
*
* These files include the variables and options
* and base css styles that are required to generate buttons.
*/
/*
* $ubtn prefix (reserved)
*
* This prefix stands for Unicorn Button - ubtn
* We provide a prefix to the Sass Variables to
* prevent namespace collisions that could occur if
* you import buttons as part of your Sass build process.
* We kindly ask you not to use the prefix $ubtn in your project
* in order to avoid possilbe name conflicts. Thanks!
*/
/*
* Button Namespace (ex .button or .btn)
*
*/
/*
* Button Defaults
*
* Some default settings that are used throughout the button library.
* Changes to these settings will be picked up by all of the other modules.
* The colors used here are the default colors for the base button (gray).
* The font size and height are used to set the base size for the buttons.
* The size values will be used to calculate the larger and smaller button sizes.
*/
/*
* Button Colors
*
* $ubtn-colors is used to generate the different button colors.
* Edit or add colors to the list below and recompile.
* Each block contains the (name, background, color)
* The class is generated using the name: (ex .button-primary)
*/
/*
* Button Shapes
*
* $ubtn-shapes is used to generate the different button shapes.
* Edit or add shapes to the list below and recompile.
* Each block contains the (name, border-radius).
* The class is generated using the name: (ex .button-square).
*/
/*
* Button Sizes
*
* $ubtn-sizes is used to generate the different button sizes.
* Edit or add colors to the list below and recompile.
* Each block contains the (name, size multiplier).
* The class is generated using the name: (ex .button-giant).
*/
/*
* Color Mixin
*
* Iterates through the list of colors and creates
*
*/
/*
* No Animation
*
* Sets animation property to none
*/
/*
* Clearfix
*
* Clears floats inside the container
*/
/*
* Base Button Style
*
* The default values for the .button class
*/
.ubtn {
  color: #666;
  background-color: #EEE;
  border-color: #EEE;
  font-weight: 300;
  font-size: 16px;
  font-family: "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  text-decoration: none;
  text-align: center;
  line-height: 40px;
  height: 40px;
  padding: 0 40px;
  margin: 0;
  display: inline-block;
  appearance: none;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
  transition-property: all;
  transition-duration: 0.3s;
  /*
  * Disabled State
  *
  * The disabled state uses the class .disabled, is-disabled,
  * and the form attribute disabled="disabled".
  * The use of !important is only added because this is a state
  * that must be applied to all buttons when in a disabled state.
  */
}
.ubtn:visited {
  color: #666;
}
.ubtn:hover, .ubtn:focus {
  background-color: #f6f6f6;
  text-decoration: none;
  outline: none;
}
.ubtn:active, .ubtn.active, .ubtn.is-active {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  text-decoration: none;
  background-color: #eeeeee;
  border-color: #cfcfcf;
  color: #d5d5d5;
  transition-duration: 0s;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}
.ubtn.disabled, .ubtn.is-disabled, .ubtn:disabled {
  top: 0 !important;
  background: #EEE !important;
  border: 1px solid #DDD !important;
  text-shadow: 0 1px 1px white !important;
  color: #CCC !important;
  cursor: default !important;
  appearance: none !important;
  box-shadow: none !important;
  opacity: 0.8 !important;
}

/*
* Base Button Tyography
*
*/
.ubtn-uppercase {
  text-transform: uppercase;
}

.ubtn-lowercase {
  text-transform: lowercase;
}

.ubtn-capitalize {
  text-transform: capitalize;
}

.ubtn-small-caps {
  font-variant: small-caps;
}

.ubtn-icon-txt-large {
  font-size: 36px !important;
}

/*
* Base padding
*
*/
.ubtn-width-small {
  padding: 0 10px !important;
}

/*
* Base Colors
*
* Create colors for buttons
* (.button-primary, .button-secondary, etc.)
*/
.ubtn-primary,
.ubtn-primary-flat {
  background-color: #006ead;
  border-color: #006ead;
  color: #FFF;
}
.ubtn-primary:visited,
.ubtn-primary-flat:visited {
  color: #FFF;
}
.ubtn-primary:hover, .ubtn-primary:focus,
.ubtn-primary-flat:hover,
.ubtn-primary-flat:focus {
  background-color: #008ee0;
  border-color: #008ee0;
  color: #FFF;
}
.ubtn-primary:active, .ubtn-primary.active, .ubtn-primary.is-active,
.ubtn-primary-flat:active,
.ubtn-primary-flat.active,
.ubtn-primary-flat.is-active {
  background-color: #096ca4;
  border-color: #096ca4;
  color: #004e7a;
}

.ubtn-plain,
.ubtn-plain-flat {
  background-color: #FFF;
  border-color: #FFF;
  color: #1B9AF7;
}
.ubtn-plain:visited,
.ubtn-plain-flat:visited {
  color: #1B9AF7;
}
.ubtn-plain:hover, .ubtn-plain:focus,
.ubtn-plain-flat:hover,
.ubtn-plain-flat:focus {
  background-color: white;
  border-color: white;
  color: #1B9AF7;
}
.ubtn-plain:active, .ubtn-plain.active, .ubtn-plain.is-active,
.ubtn-plain-flat:active,
.ubtn-plain-flat.active,
.ubtn-plain-flat.is-active {
  background-color: white;
  border-color: white;
  color: #e6e6e6;
}

.ubtn-inverse,
.ubtn-inverse-flat {
  background-color: #222;
  border-color: #222;
  color: #EEE;
}
.ubtn-inverse:visited,
.ubtn-inverse-flat:visited {
  color: #EEE;
}
.ubtn-inverse:hover, .ubtn-inverse:focus,
.ubtn-inverse-flat:hover,
.ubtn-inverse-flat:focus {
  background-color: #3c3c3c;
  border-color: #3c3c3c;
  color: #EEE;
}
.ubtn-inverse:active, .ubtn-inverse.active, .ubtn-inverse.is-active,
.ubtn-inverse-flat:active,
.ubtn-inverse-flat.active,
.ubtn-inverse-flat.is-active {
  background-color: #222222;
  border-color: #222222;
  color: #090909;
}

.ubtn-action,
.ubtn-action-flat {
  background-color: #A5DE37;
  border-color: #A5DE37;
  color: #FFF;
}
.ubtn-action:visited,
.ubtn-action-flat:visited {
  color: #FFF;
}
.ubtn-action:hover, .ubtn-action:focus,
.ubtn-action-flat:hover,
.ubtn-action-flat:focus {
  background-color: #b9e563;
  border-color: #b9e563;
  color: #FFF;
}
.ubtn-action:active, .ubtn-action.active, .ubtn-action.is-active,
.ubtn-action-flat:active,
.ubtn-action-flat.active,
.ubtn-action-flat.is-active {
  background-color: #a1d243;
  border-color: #a1d243;
  color: #8bc220;
}

.ubtn-highlight,
.ubtn-highlight-flat {
  background-color: #FEAE1B;
  border-color: #FEAE1B;
  color: #FFF;
}
.ubtn-highlight:visited,
.ubtn-highlight-flat:visited {
  color: #FFF;
}
.ubtn-highlight:hover, .ubtn-highlight:focus,
.ubtn-highlight-flat:hover,
.ubtn-highlight-flat:focus {
  background-color: #fec04e;
  border-color: #fec04e;
  color: #FFF;
}
.ubtn-highlight:active, .ubtn-highlight.active, .ubtn-highlight.is-active,
.ubtn-highlight-flat:active,
.ubtn-highlight-flat.active,
.ubtn-highlight-flat.is-active {
  background-color: #f3ab26;
  border-color: #f3ab26;
  color: #e59501;
}

.ubtn-caution,
.ubtn-caution-flat {
  background-color: #FF4351;
  border-color: #FF4351;
  color: #FFF;
}
.ubtn-caution:visited,
.ubtn-caution-flat:visited {
  color: #FFF;
}
.ubtn-caution:hover, .ubtn-caution:focus,
.ubtn-caution-flat:hover,
.ubtn-caution-flat:focus {
  background-color: #ff7680;
  border-color: #ff7680;
  color: #FFF;
}
.ubtn-caution:active, .ubtn-caution.active, .ubtn-caution.is-active,
.ubtn-caution-flat:active,
.ubtn-caution-flat.active,
.ubtn-caution-flat.is-active {
  background-color: #f64c59;
  border-color: #f64c59;
  color: #ff1022;
}

.ubtn-royal,
.ubtn-royal-flat {
  background-color: #7B72E9;
  border-color: #7B72E9;
  color: #FFF;
}
.ubtn-royal:visited,
.ubtn-royal-flat:visited {
  color: #FFF;
}
.ubtn-royal:hover, .ubtn-royal:focus,
.ubtn-royal-flat:hover,
.ubtn-royal-flat:focus {
  background-color: #a49ef0;
  border-color: #a49ef0;
  color: #FFF;
}
.ubtn-royal:active, .ubtn-royal.active, .ubtn-royal.is-active,
.ubtn-royal-flat:active,
.ubtn-royal-flat.active,
.ubtn-royal-flat.is-active {
  background-color: #827ae1;
  border-color: #827ae1;
  color: #5246e2;
}

/*
* Base Layout Styles
*
* Very Miminal Layout Styles
*/
.ubtn-block,
.ubtn-stacked {
  display: block;
  width: 100%;
}

/*
* Button Types (optional)
*
* All of the files below represent the various button
* types (including shapes & sizes). None of these files
* are required. Simple remove the uneeded type below and
* the button type will be excluded from the final build
*/
/*
* Button Shapes
*
* This file creates the various button shapes
* (ex. Circle, Rounded, Pill)
*/
.ubtn-square {
  border-radius: 0;
}

.ubtn-box {
  border-radius: 10px;
}

.ubtn-rounded {
  border-radius: 4px;
}

.ubtn-pill {
  border-radius: 200px;
}

.ubtn-circle {
  border-radius: 100%;
}

/*
* Size Adjustment for equal height & widht buttons
*
* Remove padding and set a fixed width.
*/
.ubtn-circle,
.ubtn-box,
.ubtn-square {
  padding: 0 !important;
  width: 40px;
}
.ubtn-circle.ubtn-giant,
.ubtn-box.ubtn-giant,
.ubtn-square.ubtn-giant {
  width: 70px;
}
.ubtn-circle.ubtn-jumbo,
.ubtn-box.ubtn-jumbo,
.ubtn-square.ubtn-jumbo {
  width: 60px;
}
.ubtn-circle.ubtn-large,
.ubtn-box.ubtn-large,
.ubtn-square.ubtn-large {
  width: 50px;
}
.ubtn-circle.ubtn-normal,
.ubtn-box.ubtn-normal,
.ubtn-square.ubtn-normal {
  width: 40px;
}
.ubtn-circle.ubtn-small,
.ubtn-box.ubtn-small,
.ubtn-square.ubtn-small {
  width: 30px;
}
.ubtn-circle.ubtn-tiny,
.ubtn-box.ubtn-tiny,
.ubtn-square.ubtn-tiny {
  width: 24px;
}

/*
* Border Buttons
*
* These buttons have no fill they only have a
* border to define their hit target.
*/
.ubtn-border, .ubtn-border-thick, .ubtn-border-thin {
  background: none;
  border-width: 2px;
  border-style: solid;
  line-height: 36px;
}
.ubtn-border:hover, .ubtn-border-thick:hover, .ubtn-border-thin:hover {
  background-color: rgba(255, 255, 255, 0.9);
}
.ubtn-border:active, .ubtn-border-thick:active, .ubtn-border-thin:active, .ubtn-border.active, .active.ubtn-border-thick, .active.ubtn-border-thin, .ubtn-border.is-active, .is-active.ubtn-border-thick, .is-active.ubtn-border-thin {
  box-shadow: none;
  text-shadow: none;
  transition-property: all;
  transition-duration: 0.3s;
}

/*
* Border Optional Sizes
*
* A slight variation in border thickness
*/
.ubtn-border-thin {
  border-width: 1px;
}

.ubtn-border-thick {
  border-width: 3px;
}

/*
* Border Button Colors
*
* Create colors for buttons
* (.button-primary, .button-secondary, etc.)
*/
.ubtn-border,
.ubtn-border-thin,
.ubtn-border-thick {
  /*
  * Border Button Size Adjustment
  *
  * The line-height must be adjusted to compinsate for
  * the width of the border.
  */
}
.ubtn-border.ubtn-primary,
.ubtn-border-thin.ubtn-primary,
.ubtn-border-thick.ubtn-primary {
  color: #006ead;
}
.ubtn-border.ubtn-primary:hover, .ubtn-border.ubtn-primary:focus,
.ubtn-border-thin.ubtn-primary:hover,
.ubtn-border-thin.ubtn-primary:focus,
.ubtn-border-thick.ubtn-primary:hover,
.ubtn-border-thick.ubtn-primary:focus {
  background-color: rgba(0, 142, 224, 0.9);
  color: rgba(255, 255, 255, 0.9);
}
.ubtn-border.ubtn-primary:active, .ubtn-border.ubtn-primary.active, .ubtn-border.ubtn-primary.is-active,
.ubtn-border-thin.ubtn-primary:active,
.ubtn-border-thin.ubtn-primary.active,
.ubtn-border-thin.ubtn-primary.is-active,
.ubtn-border-thick.ubtn-primary:active,
.ubtn-border-thick.ubtn-primary.active,
.ubtn-border-thick.ubtn-primary.is-active {
  background-color: rgba(9, 108, 164, 0.7);
  color: rgba(255, 255, 255, 0.5);
  opacity: 0.3;
}
.ubtn-border.ubtn-plain,
.ubtn-border-thin.ubtn-plain,
.ubtn-border-thick.ubtn-plain {
  color: #FFF;
}
.ubtn-border.ubtn-plain:hover, .ubtn-border.ubtn-plain:focus,
.ubtn-border-thin.ubtn-plain:hover,
.ubtn-border-thin.ubtn-plain:focus,
.ubtn-border-thick.ubtn-plain:hover,
.ubtn-border-thick.ubtn-plain:focus {
  background-color: rgba(255, 255, 255, 0.9);
  color: rgba(27, 154, 247, 0.9);
}
.ubtn-border.ubtn-plain:active, .ubtn-border.ubtn-plain.active, .ubtn-border.ubtn-plain.is-active,
.ubtn-border-thin.ubtn-plain:active,
.ubtn-border-thin.ubtn-plain.active,
.ubtn-border-thin.ubtn-plain.is-active,
.ubtn-border-thick.ubtn-plain:active,
.ubtn-border-thick.ubtn-plain.active,
.ubtn-border-thick.ubtn-plain.is-active {
  background-color: rgba(255, 255, 255, 0.7);
  color: rgba(27, 154, 247, 0.5);
  opacity: 0.3;
}
.ubtn-border.ubtn-inverse,
.ubtn-border-thin.ubtn-inverse,
.ubtn-border-thick.ubtn-inverse {
  color: #222;
}
.ubtn-border.ubtn-inverse:hover, .ubtn-border.ubtn-inverse:focus,
.ubtn-border-thin.ubtn-inverse:hover,
.ubtn-border-thin.ubtn-inverse:focus,
.ubtn-border-thick.ubtn-inverse:hover,
.ubtn-border-thick.ubtn-inverse:focus {
  background-color: rgba(60, 60, 60, 0.9);
  color: rgba(238, 238, 238, 0.9);
}
.ubtn-border.ubtn-inverse:active, .ubtn-border.ubtn-inverse.active, .ubtn-border.ubtn-inverse.is-active,
.ubtn-border-thin.ubtn-inverse:active,
.ubtn-border-thin.ubtn-inverse.active,
.ubtn-border-thin.ubtn-inverse.is-active,
.ubtn-border-thick.ubtn-inverse:active,
.ubtn-border-thick.ubtn-inverse.active,
.ubtn-border-thick.ubtn-inverse.is-active {
  background-color: rgba(34, 34, 34, 0.7);
  color: rgba(238, 238, 238, 0.5);
  opacity: 0.3;
}
.ubtn-border.ubtn-action,
.ubtn-border-thin.ubtn-action,
.ubtn-border-thick.ubtn-action {
  color: #A5DE37;
}
.ubtn-border.ubtn-action:hover, .ubtn-border.ubtn-action:focus,
.ubtn-border-thin.ubtn-action:hover,
.ubtn-border-thin.ubtn-action:focus,
.ubtn-border-thick.ubtn-action:hover,
.ubtn-border-thick.ubtn-action:focus {
  background-color: rgba(185, 229, 99, 0.9);
  color: rgba(255, 255, 255, 0.9);
}
.ubtn-border.ubtn-action:active, .ubtn-border.ubtn-action.active, .ubtn-border.ubtn-action.is-active,
.ubtn-border-thin.ubtn-action:active,
.ubtn-border-thin.ubtn-action.active,
.ubtn-border-thin.ubtn-action.is-active,
.ubtn-border-thick.ubtn-action:active,
.ubtn-border-thick.ubtn-action.active,
.ubtn-border-thick.ubtn-action.is-active {
  background-color: rgba(161, 210, 67, 0.7);
  color: rgba(255, 255, 255, 0.5);
  opacity: 0.3;
}
.ubtn-border.ubtn-highlight,
.ubtn-border-thin.ubtn-highlight,
.ubtn-border-thick.ubtn-highlight {
  color: #FEAE1B;
}
.ubtn-border.ubtn-highlight:hover, .ubtn-border.ubtn-highlight:focus,
.ubtn-border-thin.ubtn-highlight:hover,
.ubtn-border-thin.ubtn-highlight:focus,
.ubtn-border-thick.ubtn-highlight:hover,
.ubtn-border-thick.ubtn-highlight:focus {
  background-color: rgba(254, 192, 78, 0.9);
  color: rgba(255, 255, 255, 0.9);
}
.ubtn-border.ubtn-highlight:active, .ubtn-border.ubtn-highlight.active, .ubtn-border.ubtn-highlight.is-active,
.ubtn-border-thin.ubtn-highlight:active,
.ubtn-border-thin.ubtn-highlight.active,
.ubtn-border-thin.ubtn-highlight.is-active,
.ubtn-border-thick.ubtn-highlight:active,
.ubtn-border-thick.ubtn-highlight.active,
.ubtn-border-thick.ubtn-highlight.is-active {
  background-color: rgba(243, 171, 38, 0.7);
  color: rgba(255, 255, 255, 0.5);
  opacity: 0.3;
}
.ubtn-border.ubtn-caution,
.ubtn-border-thin.ubtn-caution,
.ubtn-border-thick.ubtn-caution {
  color: #FF4351;
}
.ubtn-border.ubtn-caution:hover, .ubtn-border.ubtn-caution:focus,
.ubtn-border-thin.ubtn-caution:hover,
.ubtn-border-thin.ubtn-caution:focus,
.ubtn-border-thick.ubtn-caution:hover,
.ubtn-border-thick.ubtn-caution:focus {
  background-color: rgba(255, 118, 128, 0.9);
  color: rgba(255, 255, 255, 0.9);
}
.ubtn-border.ubtn-caution:active, .ubtn-border.ubtn-caution.active, .ubtn-border.ubtn-caution.is-active,
.ubtn-border-thin.ubtn-caution:active,
.ubtn-border-thin.ubtn-caution.active,
.ubtn-border-thin.ubtn-caution.is-active,
.ubtn-border-thick.ubtn-caution:active,
.ubtn-border-thick.ubtn-caution.active,
.ubtn-border-thick.ubtn-caution.is-active {
  background-color: rgba(246, 76, 89, 0.7);
  color: rgba(255, 255, 255, 0.5);
  opacity: 0.3;
}
.ubtn-border.ubtn-royal,
.ubtn-border-thin.ubtn-royal,
.ubtn-border-thick.ubtn-royal {
  color: #7B72E9;
}
.ubtn-border.ubtn-royal:hover, .ubtn-border.ubtn-royal:focus,
.ubtn-border-thin.ubtn-royal:hover,
.ubtn-border-thin.ubtn-royal:focus,
.ubtn-border-thick.ubtn-royal:hover,
.ubtn-border-thick.ubtn-royal:focus {
  background-color: rgba(164, 158, 240, 0.9);
  color: rgba(255, 255, 255, 0.9);
}
.ubtn-border.ubtn-royal:active, .ubtn-border.ubtn-royal.active, .ubtn-border.ubtn-royal.is-active,
.ubtn-border-thin.ubtn-royal:active,
.ubtn-border-thin.ubtn-royal.active,
.ubtn-border-thin.ubtn-royal.is-active,
.ubtn-border-thick.ubtn-royal:active,
.ubtn-border-thick.ubtn-royal.active,
.ubtn-border-thick.ubtn-royal.is-active {
  background-color: rgba(130, 122, 225, 0.7);
  color: rgba(255, 255, 255, 0.5);
  opacity: 0.3;
}
.ubtn-border.ubtn-giant,
.ubtn-border-thin.ubtn-giant,
.ubtn-border-thick.ubtn-giant {
  line-height: 66px;
}
.ubtn-border.ubtn-jumbo,
.ubtn-border-thin.ubtn-jumbo,
.ubtn-border-thick.ubtn-jumbo {
  line-height: 56px;
}
.ubtn-border.ubtn-large,
.ubtn-border-thin.ubtn-large,
.ubtn-border-thick.ubtn-large {
  line-height: 46px;
}
.ubtn-border.ubtn-normal,
.ubtn-border-thin.ubtn-normal,
.ubtn-border-thick.ubtn-normal {
  line-height: 36px;
}
.ubtn-border.ubtn-small,
.ubtn-border-thin.ubtn-small,
.ubtn-border-thick.ubtn-small {
  line-height: 26px;
}
.ubtn-border.ubtn-tiny,
.ubtn-border-thin.ubtn-tiny,
.ubtn-border-thick.ubtn-tiny {
  line-height: 20px;
}

/*
* Border Buttons
*
* These buttons have no fill they only have a
* border to define their hit target.
*/
.ubtn-borderless {
  background: none;
  border: none;
  padding: 0 8px !important;
  color: #EEE;
  font-size: 20.8px;
  font-weight: 200;
  /*
  * Borderless Button Colors
  *
  * Create colors for buttons
  * (.button-primary, .button-secondary, etc.)
  */
  /*
  * Borderles Size Adjustment
  *
  * The font-size must be large to compinsate for
  * the lack of a hit target.
  */
}
.ubtn-borderless:hover, .ubtn-borderless:focus {
  background: none;
}
.ubtn-borderless:active, .ubtn-borderless.active, .ubtn-borderless.is-active {
  box-shadow: none;
  text-shadow: none;
  transition-property: all;
  transition-duration: 0.3s;
  opacity: 0.3;
}
.ubtn-borderless.ubtn-primary {
  color: #006ead;
}
.ubtn-borderless.ubtn-plain {
  color: #FFF;
}
.ubtn-borderless.ubtn-inverse {
  color: #222;
}
.ubtn-borderless.ubtn-action {
  color: #A5DE37;
}
.ubtn-borderless.ubtn-highlight {
  color: #FEAE1B;
}
.ubtn-borderless.ubtn-caution {
  color: #FF4351;
}
.ubtn-borderless.ubtn-royal {
  color: #7B72E9;
}
.ubtn-borderless.ubtn-giant {
  font-size: 36.4px;
  height: 52.4px;
  line-height: 52.4px;
}
.ubtn-borderless.ubtn-jumbo {
  font-size: 31.2px;
  height: 47.2px;
  line-height: 47.2px;
}
.ubtn-borderless.ubtn-large {
  font-size: 26px;
  height: 42px;
  line-height: 42px;
}
.ubtn-borderless.ubtn-normal {
  font-size: 20.8px;
  height: 36.8px;
  line-height: 36.8px;
}
.ubtn-borderless.ubtn-small {
  font-size: 15.6px;
  height: 31.6px;
  line-height: 31.6px;
}
.ubtn-borderless.ubtn-tiny {
  font-size: 12.48px;
  height: 28.48px;
  line-height: 28.48px;
}

/*
* Raised Buttons
*
* A classic looking button that offers
* great depth and affordance.
*/
.ubtn-raised {
  border-color: #e1e1e1;
  border-style: solid;
  border-width: 1px;
  line-height: 38px;
  background: linear-gradient(#f6f6f6, #e1e1e1);
  box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.3), 0 1px 2px rgba(0, 0, 0, 0.15);
}
.ubtn-raised:hover, .ubtn-raised:focus {
  background: linear-gradient(top, white, gainsboro);
}
.ubtn-raised:active, .ubtn-raised.active, .ubtn-raised.is-active {
  background: #eeeeee;
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2), 0px 1px 0px white;
}

/*
* Raised Button Colors
*
* Create colors for raised buttons
*/
.ubtn-raised.ubtn-primary {
  border-color: #005e94;
  background: linear-gradient(#007ec7, #005e94);
}
.ubtn-raised.ubtn-primary:hover, .ubtn-raised.ubtn-primary:focus {
  background: linear-gradient(top, #0088d6, #005789);
}
.ubtn-raised.ubtn-primary:active, .ubtn-raised.ubtn-primary.active, .ubtn-raised.ubtn-primary.is-active {
  border-color: #004e7a;
  background: #096ca4;
}
.ubtn-raised.ubtn-plain {
  border-color: #f2f2f2;
  background: linear-gradient(white, #f2f2f2);
}
.ubtn-raised.ubtn-plain:hover, .ubtn-raised.ubtn-plain:focus {
  background: linear-gradient(top, white, #ededed);
}
.ubtn-raised.ubtn-plain:active, .ubtn-raised.ubtn-plain.active, .ubtn-raised.ubtn-plain.is-active {
  border-color: #e6e6e6;
  background: white;
}
.ubtn-raised.ubtn-inverse {
  border-color: #151515;
  background: linear-gradient(#2f2f2f, #151515);
}
.ubtn-raised.ubtn-inverse:hover, .ubtn-raised.ubtn-inverse:focus {
  background: linear-gradient(top, #363636, #101010);
}
.ubtn-raised.ubtn-inverse:active, .ubtn-raised.ubtn-inverse.active, .ubtn-raised.ubtn-inverse.is-active {
  border-color: #090909;
  background: #222222;
}
.ubtn-raised.ubtn-action {
  border-color: #9ad824;
  background: linear-gradient(#afe24d, #9ad824);
}
.ubtn-raised.ubtn-action:hover, .ubtn-raised.ubtn-action:focus {
  background: linear-gradient(top, #b5e45a, #94cf22);
}
.ubtn-raised.ubtn-action:active, .ubtn-raised.ubtn-action.active, .ubtn-raised.ubtn-action.is-active {
  border-color: #8bc220;
  background: #a1d243;
}
.ubtn-raised.ubtn-highlight {
  border-color: #fea502;
  background: linear-gradient(#feb734, #fea502);
}
.ubtn-raised.ubtn-highlight:hover, .ubtn-raised.ubtn-highlight:focus {
  background: linear-gradient(top, #febc44, #f49f01);
}
.ubtn-raised.ubtn-highlight:active, .ubtn-raised.ubtn-highlight.active, .ubtn-raised.ubtn-highlight.is-active {
  border-color: #e59501;
  background: #f3ab26;
}
.ubtn-raised.ubtn-caution {
  border-color: #ff2a39;
  background: linear-gradient(#ff5d69, #ff2a39);
}
.ubtn-raised.ubtn-caution:hover, .ubtn-raised.ubtn-caution:focus {
  background: linear-gradient(top, #ff6c77, #ff1f30);
}
.ubtn-raised.ubtn-caution:active, .ubtn-raised.ubtn-caution.active, .ubtn-raised.ubtn-caution.is-active {
  border-color: #ff1022;
  background: #f64c59;
}
.ubtn-raised.ubtn-royal {
  border-color: #665ce6;
  background: linear-gradient(#9088ec, #665ce6);
}
.ubtn-raised.ubtn-royal:hover, .ubtn-raised.ubtn-royal:focus {
  background: linear-gradient(top, #9c95ef, #5e53e4);
}
.ubtn-raised.ubtn-royal:active, .ubtn-raised.ubtn-royal.active, .ubtn-raised.ubtn-royal.is-active {
  border-color: #5246e2;
  background: #827ae1;
}

/*
* 3D Buttons
*
* These buttons have a heavy three dimensional
* style that mimics the visual appearance of a
* real life button.
*/
.ubtn-3d {
  position: relative;
  top: 0;
  box-shadow: 0 7px 0 #bbbbbb, 0 8px 3px rgba(0, 0, 0, 0.2);
}
.ubtn-3d:hover, .ubtn-3d:focus {
  box-shadow: 0 7px 0 #bbbbbb, 0 8px 3px rgba(0, 0, 0, 0.2);
}
.ubtn-3d:active, .ubtn-3d.active, .ubtn-3d.is-active {
  top: 5px;
  transition-property: all;
  transition-duration: 0.15s;
  box-shadow: 0 2px 0 #bbbbbb, 0 3px 3px rgba(0, 0, 0, 0.2);
}

/*
* 3D Button Colors
*
* Create colors for buttons
* (.button-primary, .button-secondary, etc.)
*/
.ubtn-3d.ubtn-primary {
  box-shadow: 0 7px 0 #004e7a, 0 8px 3px rgba(0, 0, 0, 0.3);
}
.ubtn-3d.ubtn-primary:hover, .ubtn-3d.ubtn-primary:focus {
  box-shadow: 0 7px 0 #004770, 0 8px 3px rgba(0, 0, 0, 0.3);
}
.ubtn-3d.ubtn-primary:active, .ubtn-3d.ubtn-primary.active, .ubtn-3d.ubtn-primary.is-active {
  box-shadow: 0 2px 0 #002d47, 0 3px 3px rgba(0, 0, 0, 0.2);
}
.ubtn-3d.ubtn-plain {
  box-shadow: 0 7px 0 #e6e6e6, 0 8px 3px rgba(0, 0, 0, 0.3);
}
.ubtn-3d.ubtn-plain:hover, .ubtn-3d.ubtn-plain:focus {
  box-shadow: 0 7px 0 #e0e0e0, 0 8px 3px rgba(0, 0, 0, 0.3);
}
.ubtn-3d.ubtn-plain:active, .ubtn-3d.ubtn-plain.active, .ubtn-3d.ubtn-plain.is-active {
  box-shadow: 0 2px 0 #cccccc, 0 3px 3px rgba(0, 0, 0, 0.2);
}
.ubtn-3d.ubtn-inverse {
  box-shadow: 0 7px 0 #090909, 0 8px 3px rgba(0, 0, 0, 0.3);
}
.ubtn-3d.ubtn-inverse:hover, .ubtn-3d.ubtn-inverse:focus {
  box-shadow: 0 7px 0 #030303, 0 8px 3px rgba(0, 0, 0, 0.3);
}
.ubtn-3d.ubtn-inverse:active, .ubtn-3d.ubtn-inverse.active, .ubtn-3d.ubtn-inverse.is-active {
  box-shadow: 0 2px 0 black, 0 3px 3px rgba(0, 0, 0, 0.2);
}
.ubtn-3d.ubtn-action {
  box-shadow: 0 7px 0 #8bc220, 0 8px 3px rgba(0, 0, 0, 0.3);
}
.ubtn-3d.ubtn-action:hover, .ubtn-3d.ubtn-action:focus {
  box-shadow: 0 7px 0 #84b91f, 0 8px 3px rgba(0, 0, 0, 0.3);
}
.ubtn-3d.ubtn-action:active, .ubtn-3d.ubtn-action.active, .ubtn-3d.ubtn-action.is-active {
  box-shadow: 0 2px 0 #6b9619, 0 3px 3px rgba(0, 0, 0, 0.2);
}
.ubtn-3d.ubtn-highlight {
  box-shadow: 0 7px 0 #e59501, 0 8px 3px rgba(0, 0, 0, 0.3);
}
.ubtn-3d.ubtn-highlight:hover, .ubtn-3d.ubtn-highlight:focus {
  box-shadow: 0 7px 0 #db8e01, 0 8px 3px rgba(0, 0, 0, 0.3);
}
.ubtn-3d.ubtn-highlight:active, .ubtn-3d.ubtn-highlight.active, .ubtn-3d.ubtn-highlight.is-active {
  box-shadow: 0 2px 0 #b27401, 0 3px 3px rgba(0, 0, 0, 0.2);
}
.ubtn-3d.ubtn-caution {
  box-shadow: 0 7px 0 #ff1022, 0 8px 3px rgba(0, 0, 0, 0.3);
}
.ubtn-3d.ubtn-caution:hover, .ubtn-3d.ubtn-caution:focus {
  box-shadow: 0 7px 0 #ff0618, 0 8px 3px rgba(0, 0, 0, 0.3);
}
.ubtn-3d.ubtn-caution:active, .ubtn-3d.ubtn-caution.active, .ubtn-3d.ubtn-caution.is-active {
  box-shadow: 0 2px 0 #dc0010, 0 3px 3px rgba(0, 0, 0, 0.2);
}
.ubtn-3d.ubtn-royal {
  box-shadow: 0 7px 0 #5246e2, 0 8px 3px rgba(0, 0, 0, 0.3);
}
.ubtn-3d.ubtn-royal:hover, .ubtn-3d.ubtn-royal:focus {
  box-shadow: 0 7px 0 #493de1, 0 8px 3px rgba(0, 0, 0, 0.3);
}
.ubtn-3d.ubtn-royal:active, .ubtn-3d.ubtn-royal.active, .ubtn-3d.ubtn-royal.is-active {
  box-shadow: 0 2px 0 #2f21d4, 0 3px 3px rgba(0, 0, 0, 0.2);
}

/*
* Glowing Buttons
*
* A pulse like glow that appears
* rythmically around the edges of
* a button.
*/
/*
* Glow animation mixin for Compass users
*
*/
/*
* Glowing Keyframes
*
*/
@keyframes glowing {
  from {
    box-shadow: 0 0 0 rgba(44, 154, 219, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(44, 154, 219, 0.8);
  }
  to {
    box-shadow: 0 0 0 rgba(44, 154, 219, 0.3);
  }
}
/*
* Glowing Keyframes for various colors
*
*/
@keyframes glowing-primary {
  from {
    box-shadow: 0 0 0 rgba(0, 110, 173, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 110, 173, 0.8);
  }
  to {
    box-shadow: 0 0 0 rgba(0, 110, 173, 0.3);
  }
}
@keyframes glowing-plain {
  from {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  }
  to {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.3);
  }
}
@keyframes glowing-inverse {
  from {
    box-shadow: 0 0 0 rgba(34, 34, 34, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(34, 34, 34, 0.8);
  }
  to {
    box-shadow: 0 0 0 rgba(34, 34, 34, 0.3);
  }
}
@keyframes glowing-action {
  from {
    box-shadow: 0 0 0 rgba(165, 222, 55, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(165, 222, 55, 0.8);
  }
  to {
    box-shadow: 0 0 0 rgba(165, 222, 55, 0.3);
  }
}
@keyframes glowing-highlight {
  from {
    box-shadow: 0 0 0 rgba(254, 174, 27, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(254, 174, 27, 0.8);
  }
  to {
    box-shadow: 0 0 0 rgba(254, 174, 27, 0.3);
  }
}
@keyframes glowing-caution {
  from {
    box-shadow: 0 0 0 rgba(255, 67, 81, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 67, 81, 0.8);
  }
  to {
    box-shadow: 0 0 0 rgba(255, 67, 81, 0.3);
  }
}
@keyframes glowing-royal {
  from {
    box-shadow: 0 0 0 rgba(123, 114, 233, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(123, 114, 233, 0.8);
  }
  to {
    box-shadow: 0 0 0 rgba(123, 114, 233, 0.3);
  }
}
/*
* Glowing Buttons Base Styes
*
* A pulse like glow that appears
* rythmically around the edges of
* a button.
*/
.ubtn-glow {
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-name: glowing;
}
.ubtn-glow:active, .ubtn-glow.active, .ubtn-glow.is-active {
  animation-name: none;
}

/*
* Glowing Button Colors
*
* Create colors for glowing buttons
*/
.ubtn-glow.ubtn-primary {
  animation-name: glowing-primary;
}
.ubtn-glow.ubtn-plain {
  animation-name: glowing-plain;
}
.ubtn-glow.ubtn-inverse {
  animation-name: glowing-inverse;
}
.ubtn-glow.ubtn-action {
  animation-name: glowing-action;
}
.ubtn-glow.ubtn-highlight {
  animation-name: glowing-highlight;
}
.ubtn-glow.ubtn-caution {
  animation-name: glowing-caution;
}
.ubtn-glow.ubtn-royal {
  animation-name: glowing-royal;
}

/*
* Dropdown menu buttons
*
* A dropdown menu appears
* when a button is pressed
*/
/*
* Dropdown Container
*
*/
.ubtn-dropdown {
  position: relative;
  overflow: visible;
  display: inline-block;
}

/*
* Dropdown List Style
*
*/
.ubtn-dropdown-list {
  display: none;
  position: absolute;
  padding: 0;
  margin: 0;
  top: 0;
  left: 0;
  z-index: 1000;
  min-width: 100%;
  list-style-type: none;
  background: rgba(255, 255, 255, 0.95);
  border-style: solid;
  border-width: 1px;
  border-color: #d5d5d5;
  font-family: "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  box-sizing: border-box;
  /*
  * Dropdown Below
  *
  */
  /*
  * Dropdown Above
  *
  */
}
.ubtn-dropdown-list.is-below {
  top: 100%;
  border-top: none;
  border-radius: 0 0 3px 3px;
}
.ubtn-dropdown-list.is-above {
  bottom: 100%;
  top: auto;
  border-bottom: none;
  border-radius: 3px 3px 0 0;
  box-shadow: 0 -2px 7px rgba(0, 0, 0, 0.2);
}

/*
* Dropdown Buttons
*
*/
.ubtn-dropdown-list > li {
  padding: 0;
  margin: 0;
  display: block;
}
.ubtn-dropdown-list > li > a {
  display: block;
  line-height: 40px;
  font-size: 12.8px;
  padding: 5px 10px;
  float: none;
  color: #666;
  text-decoration: none;
}
.ubtn-dropdown-list > li > a:hover {
  color: #5e5e5e;
  background: #f6f6f6;
  text-decoration: none;
}

.ubtn-dropdown-divider {
  border-top: 1px solid #e6e6e6;
}

/*
* Dropdown Colors
*
* Create colors for buttons
* (.button-primary, .button-secondary, etc.)
*/
.ubtn-dropdown.ubtn-dropdown-primary .ubtn-dropdown-list {
  background: rgba(0, 110, 173, 0.95);
  border-color: #004e7a;
}
.ubtn-dropdown.ubtn-dropdown-primary .ubtn-dropdown-list .ubtn-dropdown-divider {
  border-color: #005789;
}
.ubtn-dropdown.ubtn-dropdown-primary .ubtn-dropdown-list > li > a {
  color: #FFF;
}
.ubtn-dropdown.ubtn-dropdown-primary .ubtn-dropdown-list > li > a:hover {
  color: #f2f2f2;
  background: #005e94;
}
.ubtn-dropdown.ubtn-dropdown-plain .ubtn-dropdown-list {
  background: rgba(255, 255, 255, 0.95);
  border-color: #e6e6e6;
}
.ubtn-dropdown.ubtn-dropdown-plain .ubtn-dropdown-list .ubtn-dropdown-divider {
  border-color: #ededed;
}
.ubtn-dropdown.ubtn-dropdown-plain .ubtn-dropdown-list > li > a {
  color: #1B9AF7;
}
.ubtn-dropdown.ubtn-dropdown-plain .ubtn-dropdown-list > li > a:hover {
  color: #088ef0;
  background: #f2f2f2;
}
.ubtn-dropdown.ubtn-dropdown-inverse .ubtn-dropdown-list {
  background: rgba(34, 34, 34, 0.95);
  border-color: #090909;
}
.ubtn-dropdown.ubtn-dropdown-inverse .ubtn-dropdown-list .ubtn-dropdown-divider {
  border-color: #101010;
}
.ubtn-dropdown.ubtn-dropdown-inverse .ubtn-dropdown-list > li > a {
  color: #EEE;
}
.ubtn-dropdown.ubtn-dropdown-inverse .ubtn-dropdown-list > li > a:hover {
  color: #e1e1e1;
  background: #151515;
}
.ubtn-dropdown.ubtn-dropdown-action .ubtn-dropdown-list {
  background: rgba(165, 222, 55, 0.95);
  border-color: #8bc220;
}
.ubtn-dropdown.ubtn-dropdown-action .ubtn-dropdown-list .ubtn-dropdown-divider {
  border-color: #94cf22;
}
.ubtn-dropdown.ubtn-dropdown-action .ubtn-dropdown-list > li > a {
  color: #FFF;
}
.ubtn-dropdown.ubtn-dropdown-action .ubtn-dropdown-list > li > a:hover {
  color: #f2f2f2;
  background: #9ad824;
}
.ubtn-dropdown.ubtn-dropdown-highlight .ubtn-dropdown-list {
  background: rgba(254, 174, 27, 0.95);
  border-color: #e59501;
}
.ubtn-dropdown.ubtn-dropdown-highlight .ubtn-dropdown-list .ubtn-dropdown-divider {
  border-color: #f49f01;
}
.ubtn-dropdown.ubtn-dropdown-highlight .ubtn-dropdown-list > li > a {
  color: #FFF;
}
.ubtn-dropdown.ubtn-dropdown-highlight .ubtn-dropdown-list > li > a:hover {
  color: #f2f2f2;
  background: #fea502;
}
.ubtn-dropdown.ubtn-dropdown-caution .ubtn-dropdown-list {
  background: rgba(255, 67, 81, 0.95);
  border-color: #ff1022;
}
.ubtn-dropdown.ubtn-dropdown-caution .ubtn-dropdown-list .ubtn-dropdown-divider {
  border-color: #ff1f30;
}
.ubtn-dropdown.ubtn-dropdown-caution .ubtn-dropdown-list > li > a {
  color: #FFF;
}
.ubtn-dropdown.ubtn-dropdown-caution .ubtn-dropdown-list > li > a:hover {
  color: #f2f2f2;
  background: #ff2a39;
}
.ubtn-dropdown.ubtn-dropdown-royal .ubtn-dropdown-list {
  background: rgba(123, 114, 233, 0.95);
  border-color: #5246e2;
}
.ubtn-dropdown.ubtn-dropdown-royal .ubtn-dropdown-list .ubtn-dropdown-divider {
  border-color: #5e53e4;
}
.ubtn-dropdown.ubtn-dropdown-royal .ubtn-dropdown-list > li > a {
  color: #FFF;
}
.ubtn-dropdown.ubtn-dropdown-royal .ubtn-dropdown-list > li > a:hover {
  color: #f2f2f2;
  background: #665ce6;
}

/*
* Buton Groups
*
* A group of related buttons
* displayed edge to edge
*/
.ubtn-group {
  position: relative;
  display: inline-block;
}
.ubtn-group:after {
  content: " ";
  display: block;
  clear: both;
}
.ubtn-group .ubtn,
.ubtn-group .ubtn-dropdown {
  float: left;
}
.ubtn-group .ubtn:not(:first-child):not(:last-child),
.ubtn-group .ubtn-dropdown:not(:first-child):not(:last-child) {
  border-radius: 0;
  border-right: none;
}
.ubtn-group .ubtn:first-child,
.ubtn-group .ubtn-dropdown:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
}
.ubtn-group .ubtn:last-child,
.ubtn-group .ubtn-dropdown:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/*
* Button Wrapper
*
* A wrap around effect to highlight
* the shape of the button and offer
* a subtle visual effect.
*/
.ubtn-wrap {
  border: 1px solid #e3e3e3;
  display: inline-block;
  padding: 9px;
  background: linear-gradient(#f2f2f2, #FFF);
  border-radius: 200px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04);
}

/*
* Long Shadow Buttons
*
* A visual effect adding a flat shadow to the text of a button
*/
/*
* Long Shadow Function
*
* Loops $length times building a long shadow. Defaults downward right
*/
/*
* LONG SHADOW MIXIN
*
*/
/*
* Shadow Right
*
*/
.ubtn-longshadow,
.ubtn-longshadow-right {
  overflow: hidden;
}
.ubtn-longshadow.ubtn-primary,
.ubtn-longshadow-right.ubtn-primary {
  text-shadow: 0px 0px #004e7a, 1px 1px #004e7a, 2px 2px #004e7a, 3px 3px #004e7a, 4px 4px #004e7a, 5px 5px #004e7a, 6px 6px #004e7a, 7px 7px #004e7a, 8px 8px #004e7a, 9px 9px #004e7a, 10px 10px #004e7a, 11px 11px #004e7a, 12px 12px #004e7a, 13px 13px #004e7a, 14px 14px #004e7a, 15px 15px #004e7a, 16px 16px #004e7a, 17px 17px #004e7a, 18px 18px #004e7a, 19px 19px #004e7a, 20px 20px #004e7a, 21px 21px #004e7a, 22px 22px #004e7a, 23px 23px #004e7a, 24px 24px #004e7a, 25px 25px #004e7a, 26px 26px #004e7a, 27px 27px #004e7a, 28px 28px #004e7a, 29px 29px #004e7a, 30px 30px #004e7a, 31px 31px #004e7a, 32px 32px #004e7a, 33px 33px #004e7a, 34px 34px #004e7a, 35px 35px #004e7a, 36px 36px #004e7a, 37px 37px #004e7a, 38px 38px #004e7a, 39px 39px #004e7a, 40px 40px #004e7a, 41px 41px #004e7a, 42px 42px #004e7a, 43px 43px #004e7a, 44px 44px #004e7a, 45px 45px #004e7a, 46px 46px #004e7a, 47px 47px #004e7a, 48px 48px #004e7a, 49px 49px #004e7a, 50px 50px #004e7a, 51px 51px #004e7a, 52px 52px #004e7a, 53px 53px #004e7a, 54px 54px #004e7a, 55px 55px #004e7a, 56px 56px #004e7a, 57px 57px #004e7a, 58px 58px #004e7a, 59px 59px #004e7a, 60px 60px #004e7a, 61px 61px #004e7a, 62px 62px #004e7a, 63px 63px #004e7a, 64px 64px #004e7a, 65px 65px #004e7a, 66px 66px #004e7a, 67px 67px #004e7a, 68px 68px #004e7a, 69px 69px #004e7a, 70px 70px #004e7a, 71px 71px #004e7a, 72px 72px #004e7a, 73px 73px #004e7a, 74px 74px #004e7a, 75px 75px #004e7a, 76px 76px #004e7a, 77px 77px #004e7a, 78px 78px #004e7a, 79px 79px #004e7a, 80px 80px #004e7a, 81px 81px #004e7a, 82px 82px #004e7a, 83px 83px #004e7a, 84px 84px #004e7a, 85px 85px #004e7a;
}
.ubtn-longshadow.ubtn-primary:active, .ubtn-longshadow.ubtn-primary.active, .ubtn-longshadow.ubtn-primary.is-active,
.ubtn-longshadow-right.ubtn-primary:active,
.ubtn-longshadow-right.ubtn-primary.active,
.ubtn-longshadow-right.ubtn-primary.is-active {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}
.ubtn-longshadow.ubtn-plain,
.ubtn-longshadow-right.ubtn-plain {
  text-shadow: 0px 0px #e6e6e6, 1px 1px #e6e6e6, 2px 2px #e6e6e6, 3px 3px #e6e6e6, 4px 4px #e6e6e6, 5px 5px #e6e6e6, 6px 6px #e6e6e6, 7px 7px #e6e6e6, 8px 8px #e6e6e6, 9px 9px #e6e6e6, 10px 10px #e6e6e6, 11px 11px #e6e6e6, 12px 12px #e6e6e6, 13px 13px #e6e6e6, 14px 14px #e6e6e6, 15px 15px #e6e6e6, 16px 16px #e6e6e6, 17px 17px #e6e6e6, 18px 18px #e6e6e6, 19px 19px #e6e6e6, 20px 20px #e6e6e6, 21px 21px #e6e6e6, 22px 22px #e6e6e6, 23px 23px #e6e6e6, 24px 24px #e6e6e6, 25px 25px #e6e6e6, 26px 26px #e6e6e6, 27px 27px #e6e6e6, 28px 28px #e6e6e6, 29px 29px #e6e6e6, 30px 30px #e6e6e6, 31px 31px #e6e6e6, 32px 32px #e6e6e6, 33px 33px #e6e6e6, 34px 34px #e6e6e6, 35px 35px #e6e6e6, 36px 36px #e6e6e6, 37px 37px #e6e6e6, 38px 38px #e6e6e6, 39px 39px #e6e6e6, 40px 40px #e6e6e6, 41px 41px #e6e6e6, 42px 42px #e6e6e6, 43px 43px #e6e6e6, 44px 44px #e6e6e6, 45px 45px #e6e6e6, 46px 46px #e6e6e6, 47px 47px #e6e6e6, 48px 48px #e6e6e6, 49px 49px #e6e6e6, 50px 50px #e6e6e6, 51px 51px #e6e6e6, 52px 52px #e6e6e6, 53px 53px #e6e6e6, 54px 54px #e6e6e6, 55px 55px #e6e6e6, 56px 56px #e6e6e6, 57px 57px #e6e6e6, 58px 58px #e6e6e6, 59px 59px #e6e6e6, 60px 60px #e6e6e6, 61px 61px #e6e6e6, 62px 62px #e6e6e6, 63px 63px #e6e6e6, 64px 64px #e6e6e6, 65px 65px #e6e6e6, 66px 66px #e6e6e6, 67px 67px #e6e6e6, 68px 68px #e6e6e6, 69px 69px #e6e6e6, 70px 70px #e6e6e6, 71px 71px #e6e6e6, 72px 72px #e6e6e6, 73px 73px #e6e6e6, 74px 74px #e6e6e6, 75px 75px #e6e6e6, 76px 76px #e6e6e6, 77px 77px #e6e6e6, 78px 78px #e6e6e6, 79px 79px #e6e6e6, 80px 80px #e6e6e6, 81px 81px #e6e6e6, 82px 82px #e6e6e6, 83px 83px #e6e6e6, 84px 84px #e6e6e6, 85px 85px #e6e6e6;
}
.ubtn-longshadow.ubtn-plain:active, .ubtn-longshadow.ubtn-plain.active, .ubtn-longshadow.ubtn-plain.is-active,
.ubtn-longshadow-right.ubtn-plain:active,
.ubtn-longshadow-right.ubtn-plain.active,
.ubtn-longshadow-right.ubtn-plain.is-active {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}
.ubtn-longshadow.ubtn-inverse,
.ubtn-longshadow-right.ubtn-inverse {
  text-shadow: 0px 0px #090909, 1px 1px #090909, 2px 2px #090909, 3px 3px #090909, 4px 4px #090909, 5px 5px #090909, 6px 6px #090909, 7px 7px #090909, 8px 8px #090909, 9px 9px #090909, 10px 10px #090909, 11px 11px #090909, 12px 12px #090909, 13px 13px #090909, 14px 14px #090909, 15px 15px #090909, 16px 16px #090909, 17px 17px #090909, 18px 18px #090909, 19px 19px #090909, 20px 20px #090909, 21px 21px #090909, 22px 22px #090909, 23px 23px #090909, 24px 24px #090909, 25px 25px #090909, 26px 26px #090909, 27px 27px #090909, 28px 28px #090909, 29px 29px #090909, 30px 30px #090909, 31px 31px #090909, 32px 32px #090909, 33px 33px #090909, 34px 34px #090909, 35px 35px #090909, 36px 36px #090909, 37px 37px #090909, 38px 38px #090909, 39px 39px #090909, 40px 40px #090909, 41px 41px #090909, 42px 42px #090909, 43px 43px #090909, 44px 44px #090909, 45px 45px #090909, 46px 46px #090909, 47px 47px #090909, 48px 48px #090909, 49px 49px #090909, 50px 50px #090909, 51px 51px #090909, 52px 52px #090909, 53px 53px #090909, 54px 54px #090909, 55px 55px #090909, 56px 56px #090909, 57px 57px #090909, 58px 58px #090909, 59px 59px #090909, 60px 60px #090909, 61px 61px #090909, 62px 62px #090909, 63px 63px #090909, 64px 64px #090909, 65px 65px #090909, 66px 66px #090909, 67px 67px #090909, 68px 68px #090909, 69px 69px #090909, 70px 70px #090909, 71px 71px #090909, 72px 72px #090909, 73px 73px #090909, 74px 74px #090909, 75px 75px #090909, 76px 76px #090909, 77px 77px #090909, 78px 78px #090909, 79px 79px #090909, 80px 80px #090909, 81px 81px #090909, 82px 82px #090909, 83px 83px #090909, 84px 84px #090909, 85px 85px #090909;
}
.ubtn-longshadow.ubtn-inverse:active, .ubtn-longshadow.ubtn-inverse.active, .ubtn-longshadow.ubtn-inverse.is-active,
.ubtn-longshadow-right.ubtn-inverse:active,
.ubtn-longshadow-right.ubtn-inverse.active,
.ubtn-longshadow-right.ubtn-inverse.is-active {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}
.ubtn-longshadow.ubtn-action,
.ubtn-longshadow-right.ubtn-action {
  text-shadow: 0px 0px #8bc220, 1px 1px #8bc220, 2px 2px #8bc220, 3px 3px #8bc220, 4px 4px #8bc220, 5px 5px #8bc220, 6px 6px #8bc220, 7px 7px #8bc220, 8px 8px #8bc220, 9px 9px #8bc220, 10px 10px #8bc220, 11px 11px #8bc220, 12px 12px #8bc220, 13px 13px #8bc220, 14px 14px #8bc220, 15px 15px #8bc220, 16px 16px #8bc220, 17px 17px #8bc220, 18px 18px #8bc220, 19px 19px #8bc220, 20px 20px #8bc220, 21px 21px #8bc220, 22px 22px #8bc220, 23px 23px #8bc220, 24px 24px #8bc220, 25px 25px #8bc220, 26px 26px #8bc220, 27px 27px #8bc220, 28px 28px #8bc220, 29px 29px #8bc220, 30px 30px #8bc220, 31px 31px #8bc220, 32px 32px #8bc220, 33px 33px #8bc220, 34px 34px #8bc220, 35px 35px #8bc220, 36px 36px #8bc220, 37px 37px #8bc220, 38px 38px #8bc220, 39px 39px #8bc220, 40px 40px #8bc220, 41px 41px #8bc220, 42px 42px #8bc220, 43px 43px #8bc220, 44px 44px #8bc220, 45px 45px #8bc220, 46px 46px #8bc220, 47px 47px #8bc220, 48px 48px #8bc220, 49px 49px #8bc220, 50px 50px #8bc220, 51px 51px #8bc220, 52px 52px #8bc220, 53px 53px #8bc220, 54px 54px #8bc220, 55px 55px #8bc220, 56px 56px #8bc220, 57px 57px #8bc220, 58px 58px #8bc220, 59px 59px #8bc220, 60px 60px #8bc220, 61px 61px #8bc220, 62px 62px #8bc220, 63px 63px #8bc220, 64px 64px #8bc220, 65px 65px #8bc220, 66px 66px #8bc220, 67px 67px #8bc220, 68px 68px #8bc220, 69px 69px #8bc220, 70px 70px #8bc220, 71px 71px #8bc220, 72px 72px #8bc220, 73px 73px #8bc220, 74px 74px #8bc220, 75px 75px #8bc220, 76px 76px #8bc220, 77px 77px #8bc220, 78px 78px #8bc220, 79px 79px #8bc220, 80px 80px #8bc220, 81px 81px #8bc220, 82px 82px #8bc220, 83px 83px #8bc220, 84px 84px #8bc220, 85px 85px #8bc220;
}
.ubtn-longshadow.ubtn-action:active, .ubtn-longshadow.ubtn-action.active, .ubtn-longshadow.ubtn-action.is-active,
.ubtn-longshadow-right.ubtn-action:active,
.ubtn-longshadow-right.ubtn-action.active,
.ubtn-longshadow-right.ubtn-action.is-active {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}
.ubtn-longshadow.ubtn-highlight,
.ubtn-longshadow-right.ubtn-highlight {
  text-shadow: 0px 0px #e59501, 1px 1px #e59501, 2px 2px #e59501, 3px 3px #e59501, 4px 4px #e59501, 5px 5px #e59501, 6px 6px #e59501, 7px 7px #e59501, 8px 8px #e59501, 9px 9px #e59501, 10px 10px #e59501, 11px 11px #e59501, 12px 12px #e59501, 13px 13px #e59501, 14px 14px #e59501, 15px 15px #e59501, 16px 16px #e59501, 17px 17px #e59501, 18px 18px #e59501, 19px 19px #e59501, 20px 20px #e59501, 21px 21px #e59501, 22px 22px #e59501, 23px 23px #e59501, 24px 24px #e59501, 25px 25px #e59501, 26px 26px #e59501, 27px 27px #e59501, 28px 28px #e59501, 29px 29px #e59501, 30px 30px #e59501, 31px 31px #e59501, 32px 32px #e59501, 33px 33px #e59501, 34px 34px #e59501, 35px 35px #e59501, 36px 36px #e59501, 37px 37px #e59501, 38px 38px #e59501, 39px 39px #e59501, 40px 40px #e59501, 41px 41px #e59501, 42px 42px #e59501, 43px 43px #e59501, 44px 44px #e59501, 45px 45px #e59501, 46px 46px #e59501, 47px 47px #e59501, 48px 48px #e59501, 49px 49px #e59501, 50px 50px #e59501, 51px 51px #e59501, 52px 52px #e59501, 53px 53px #e59501, 54px 54px #e59501, 55px 55px #e59501, 56px 56px #e59501, 57px 57px #e59501, 58px 58px #e59501, 59px 59px #e59501, 60px 60px #e59501, 61px 61px #e59501, 62px 62px #e59501, 63px 63px #e59501, 64px 64px #e59501, 65px 65px #e59501, 66px 66px #e59501, 67px 67px #e59501, 68px 68px #e59501, 69px 69px #e59501, 70px 70px #e59501, 71px 71px #e59501, 72px 72px #e59501, 73px 73px #e59501, 74px 74px #e59501, 75px 75px #e59501, 76px 76px #e59501, 77px 77px #e59501, 78px 78px #e59501, 79px 79px #e59501, 80px 80px #e59501, 81px 81px #e59501, 82px 82px #e59501, 83px 83px #e59501, 84px 84px #e59501, 85px 85px #e59501;
}
.ubtn-longshadow.ubtn-highlight:active, .ubtn-longshadow.ubtn-highlight.active, .ubtn-longshadow.ubtn-highlight.is-active,
.ubtn-longshadow-right.ubtn-highlight:active,
.ubtn-longshadow-right.ubtn-highlight.active,
.ubtn-longshadow-right.ubtn-highlight.is-active {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}
.ubtn-longshadow.ubtn-caution,
.ubtn-longshadow-right.ubtn-caution {
  text-shadow: 0px 0px #ff1022, 1px 1px #ff1022, 2px 2px #ff1022, 3px 3px #ff1022, 4px 4px #ff1022, 5px 5px #ff1022, 6px 6px #ff1022, 7px 7px #ff1022, 8px 8px #ff1022, 9px 9px #ff1022, 10px 10px #ff1022, 11px 11px #ff1022, 12px 12px #ff1022, 13px 13px #ff1022, 14px 14px #ff1022, 15px 15px #ff1022, 16px 16px #ff1022, 17px 17px #ff1022, 18px 18px #ff1022, 19px 19px #ff1022, 20px 20px #ff1022, 21px 21px #ff1022, 22px 22px #ff1022, 23px 23px #ff1022, 24px 24px #ff1022, 25px 25px #ff1022, 26px 26px #ff1022, 27px 27px #ff1022, 28px 28px #ff1022, 29px 29px #ff1022, 30px 30px #ff1022, 31px 31px #ff1022, 32px 32px #ff1022, 33px 33px #ff1022, 34px 34px #ff1022, 35px 35px #ff1022, 36px 36px #ff1022, 37px 37px #ff1022, 38px 38px #ff1022, 39px 39px #ff1022, 40px 40px #ff1022, 41px 41px #ff1022, 42px 42px #ff1022, 43px 43px #ff1022, 44px 44px #ff1022, 45px 45px #ff1022, 46px 46px #ff1022, 47px 47px #ff1022, 48px 48px #ff1022, 49px 49px #ff1022, 50px 50px #ff1022, 51px 51px #ff1022, 52px 52px #ff1022, 53px 53px #ff1022, 54px 54px #ff1022, 55px 55px #ff1022, 56px 56px #ff1022, 57px 57px #ff1022, 58px 58px #ff1022, 59px 59px #ff1022, 60px 60px #ff1022, 61px 61px #ff1022, 62px 62px #ff1022, 63px 63px #ff1022, 64px 64px #ff1022, 65px 65px #ff1022, 66px 66px #ff1022, 67px 67px #ff1022, 68px 68px #ff1022, 69px 69px #ff1022, 70px 70px #ff1022, 71px 71px #ff1022, 72px 72px #ff1022, 73px 73px #ff1022, 74px 74px #ff1022, 75px 75px #ff1022, 76px 76px #ff1022, 77px 77px #ff1022, 78px 78px #ff1022, 79px 79px #ff1022, 80px 80px #ff1022, 81px 81px #ff1022, 82px 82px #ff1022, 83px 83px #ff1022, 84px 84px #ff1022, 85px 85px #ff1022;
}
.ubtn-longshadow.ubtn-caution:active, .ubtn-longshadow.ubtn-caution.active, .ubtn-longshadow.ubtn-caution.is-active,
.ubtn-longshadow-right.ubtn-caution:active,
.ubtn-longshadow-right.ubtn-caution.active,
.ubtn-longshadow-right.ubtn-caution.is-active {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}
.ubtn-longshadow.ubtn-royal,
.ubtn-longshadow-right.ubtn-royal {
  text-shadow: 0px 0px #5246e2, 1px 1px #5246e2, 2px 2px #5246e2, 3px 3px #5246e2, 4px 4px #5246e2, 5px 5px #5246e2, 6px 6px #5246e2, 7px 7px #5246e2, 8px 8px #5246e2, 9px 9px #5246e2, 10px 10px #5246e2, 11px 11px #5246e2, 12px 12px #5246e2, 13px 13px #5246e2, 14px 14px #5246e2, 15px 15px #5246e2, 16px 16px #5246e2, 17px 17px #5246e2, 18px 18px #5246e2, 19px 19px #5246e2, 20px 20px #5246e2, 21px 21px #5246e2, 22px 22px #5246e2, 23px 23px #5246e2, 24px 24px #5246e2, 25px 25px #5246e2, 26px 26px #5246e2, 27px 27px #5246e2, 28px 28px #5246e2, 29px 29px #5246e2, 30px 30px #5246e2, 31px 31px #5246e2, 32px 32px #5246e2, 33px 33px #5246e2, 34px 34px #5246e2, 35px 35px #5246e2, 36px 36px #5246e2, 37px 37px #5246e2, 38px 38px #5246e2, 39px 39px #5246e2, 40px 40px #5246e2, 41px 41px #5246e2, 42px 42px #5246e2, 43px 43px #5246e2, 44px 44px #5246e2, 45px 45px #5246e2, 46px 46px #5246e2, 47px 47px #5246e2, 48px 48px #5246e2, 49px 49px #5246e2, 50px 50px #5246e2, 51px 51px #5246e2, 52px 52px #5246e2, 53px 53px #5246e2, 54px 54px #5246e2, 55px 55px #5246e2, 56px 56px #5246e2, 57px 57px #5246e2, 58px 58px #5246e2, 59px 59px #5246e2, 60px 60px #5246e2, 61px 61px #5246e2, 62px 62px #5246e2, 63px 63px #5246e2, 64px 64px #5246e2, 65px 65px #5246e2, 66px 66px #5246e2, 67px 67px #5246e2, 68px 68px #5246e2, 69px 69px #5246e2, 70px 70px #5246e2, 71px 71px #5246e2, 72px 72px #5246e2, 73px 73px #5246e2, 74px 74px #5246e2, 75px 75px #5246e2, 76px 76px #5246e2, 77px 77px #5246e2, 78px 78px #5246e2, 79px 79px #5246e2, 80px 80px #5246e2, 81px 81px #5246e2, 82px 82px #5246e2, 83px 83px #5246e2, 84px 84px #5246e2, 85px 85px #5246e2;
}
.ubtn-longshadow.ubtn-royal:active, .ubtn-longshadow.ubtn-royal.active, .ubtn-longshadow.ubtn-royal.is-active,
.ubtn-longshadow-right.ubtn-royal:active,
.ubtn-longshadow-right.ubtn-royal.active,
.ubtn-longshadow-right.ubtn-royal.is-active {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

/*
* Shadow Left
*
*/
.ubtn-longshadow-left {
  overflow: hidden;
}
.ubtn-longshadow-left.ubtn-primary {
  text-shadow: 0px 0px #004e7a, -1px 1px #004e7a, -2px 2px #004e7a, -3px 3px #004e7a, -4px 4px #004e7a, -5px 5px #004e7a, -6px 6px #004e7a, -7px 7px #004e7a, -8px 8px #004e7a, -9px 9px #004e7a, -10px 10px #004e7a, -11px 11px #004e7a, -12px 12px #004e7a, -13px 13px #004e7a, -14px 14px #004e7a, -15px 15px #004e7a, -16px 16px #004e7a, -17px 17px #004e7a, -18px 18px #004e7a, -19px 19px #004e7a, -20px 20px #004e7a, -21px 21px #004e7a, -22px 22px #004e7a, -23px 23px #004e7a, -24px 24px #004e7a, -25px 25px #004e7a, -26px 26px #004e7a, -27px 27px #004e7a, -28px 28px #004e7a, -29px 29px #004e7a, -30px 30px #004e7a, -31px 31px #004e7a, -32px 32px #004e7a, -33px 33px #004e7a, -34px 34px #004e7a, -35px 35px #004e7a, -36px 36px #004e7a, -37px 37px #004e7a, -38px 38px #004e7a, -39px 39px #004e7a, -40px 40px #004e7a, -41px 41px #004e7a, -42px 42px #004e7a, -43px 43px #004e7a, -44px 44px #004e7a, -45px 45px #004e7a, -46px 46px #004e7a, -47px 47px #004e7a, -48px 48px #004e7a, -49px 49px #004e7a, -50px 50px #004e7a, -51px 51px #004e7a, -52px 52px #004e7a, -53px 53px #004e7a, -54px 54px #004e7a, -55px 55px #004e7a, -56px 56px #004e7a, -57px 57px #004e7a, -58px 58px #004e7a, -59px 59px #004e7a, -60px 60px #004e7a, -61px 61px #004e7a, -62px 62px #004e7a, -63px 63px #004e7a, -64px 64px #004e7a, -65px 65px #004e7a, -66px 66px #004e7a, -67px 67px #004e7a, -68px 68px #004e7a, -69px 69px #004e7a, -70px 70px #004e7a, -71px 71px #004e7a, -72px 72px #004e7a, -73px 73px #004e7a, -74px 74px #004e7a, -75px 75px #004e7a, -76px 76px #004e7a, -77px 77px #004e7a, -78px 78px #004e7a, -79px 79px #004e7a, -80px 80px #004e7a, -81px 81px #004e7a, -82px 82px #004e7a, -83px 83px #004e7a, -84px 84px #004e7a, -85px 85px #004e7a;
}
.ubtn-longshadow-left.ubtn-primary:active, .ubtn-longshadow-left.ubtn-primary.active, .ubtn-longshadow-left.ubtn-primary.is-active {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}
.ubtn-longshadow-left.ubtn-plain {
  text-shadow: 0px 0px #e6e6e6, -1px 1px #e6e6e6, -2px 2px #e6e6e6, -3px 3px #e6e6e6, -4px 4px #e6e6e6, -5px 5px #e6e6e6, -6px 6px #e6e6e6, -7px 7px #e6e6e6, -8px 8px #e6e6e6, -9px 9px #e6e6e6, -10px 10px #e6e6e6, -11px 11px #e6e6e6, -12px 12px #e6e6e6, -13px 13px #e6e6e6, -14px 14px #e6e6e6, -15px 15px #e6e6e6, -16px 16px #e6e6e6, -17px 17px #e6e6e6, -18px 18px #e6e6e6, -19px 19px #e6e6e6, -20px 20px #e6e6e6, -21px 21px #e6e6e6, -22px 22px #e6e6e6, -23px 23px #e6e6e6, -24px 24px #e6e6e6, -25px 25px #e6e6e6, -26px 26px #e6e6e6, -27px 27px #e6e6e6, -28px 28px #e6e6e6, -29px 29px #e6e6e6, -30px 30px #e6e6e6, -31px 31px #e6e6e6, -32px 32px #e6e6e6, -33px 33px #e6e6e6, -34px 34px #e6e6e6, -35px 35px #e6e6e6, -36px 36px #e6e6e6, -37px 37px #e6e6e6, -38px 38px #e6e6e6, -39px 39px #e6e6e6, -40px 40px #e6e6e6, -41px 41px #e6e6e6, -42px 42px #e6e6e6, -43px 43px #e6e6e6, -44px 44px #e6e6e6, -45px 45px #e6e6e6, -46px 46px #e6e6e6, -47px 47px #e6e6e6, -48px 48px #e6e6e6, -49px 49px #e6e6e6, -50px 50px #e6e6e6, -51px 51px #e6e6e6, -52px 52px #e6e6e6, -53px 53px #e6e6e6, -54px 54px #e6e6e6, -55px 55px #e6e6e6, -56px 56px #e6e6e6, -57px 57px #e6e6e6, -58px 58px #e6e6e6, -59px 59px #e6e6e6, -60px 60px #e6e6e6, -61px 61px #e6e6e6, -62px 62px #e6e6e6, -63px 63px #e6e6e6, -64px 64px #e6e6e6, -65px 65px #e6e6e6, -66px 66px #e6e6e6, -67px 67px #e6e6e6, -68px 68px #e6e6e6, -69px 69px #e6e6e6, -70px 70px #e6e6e6, -71px 71px #e6e6e6, -72px 72px #e6e6e6, -73px 73px #e6e6e6, -74px 74px #e6e6e6, -75px 75px #e6e6e6, -76px 76px #e6e6e6, -77px 77px #e6e6e6, -78px 78px #e6e6e6, -79px 79px #e6e6e6, -80px 80px #e6e6e6, -81px 81px #e6e6e6, -82px 82px #e6e6e6, -83px 83px #e6e6e6, -84px 84px #e6e6e6, -85px 85px #e6e6e6;
}
.ubtn-longshadow-left.ubtn-plain:active, .ubtn-longshadow-left.ubtn-plain.active, .ubtn-longshadow-left.ubtn-plain.is-active {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}
.ubtn-longshadow-left.ubtn-inverse {
  text-shadow: 0px 0px #090909, -1px 1px #090909, -2px 2px #090909, -3px 3px #090909, -4px 4px #090909, -5px 5px #090909, -6px 6px #090909, -7px 7px #090909, -8px 8px #090909, -9px 9px #090909, -10px 10px #090909, -11px 11px #090909, -12px 12px #090909, -13px 13px #090909, -14px 14px #090909, -15px 15px #090909, -16px 16px #090909, -17px 17px #090909, -18px 18px #090909, -19px 19px #090909, -20px 20px #090909, -21px 21px #090909, -22px 22px #090909, -23px 23px #090909, -24px 24px #090909, -25px 25px #090909, -26px 26px #090909, -27px 27px #090909, -28px 28px #090909, -29px 29px #090909, -30px 30px #090909, -31px 31px #090909, -32px 32px #090909, -33px 33px #090909, -34px 34px #090909, -35px 35px #090909, -36px 36px #090909, -37px 37px #090909, -38px 38px #090909, -39px 39px #090909, -40px 40px #090909, -41px 41px #090909, -42px 42px #090909, -43px 43px #090909, -44px 44px #090909, -45px 45px #090909, -46px 46px #090909, -47px 47px #090909, -48px 48px #090909, -49px 49px #090909, -50px 50px #090909, -51px 51px #090909, -52px 52px #090909, -53px 53px #090909, -54px 54px #090909, -55px 55px #090909, -56px 56px #090909, -57px 57px #090909, -58px 58px #090909, -59px 59px #090909, -60px 60px #090909, -61px 61px #090909, -62px 62px #090909, -63px 63px #090909, -64px 64px #090909, -65px 65px #090909, -66px 66px #090909, -67px 67px #090909, -68px 68px #090909, -69px 69px #090909, -70px 70px #090909, -71px 71px #090909, -72px 72px #090909, -73px 73px #090909, -74px 74px #090909, -75px 75px #090909, -76px 76px #090909, -77px 77px #090909, -78px 78px #090909, -79px 79px #090909, -80px 80px #090909, -81px 81px #090909, -82px 82px #090909, -83px 83px #090909, -84px 84px #090909, -85px 85px #090909;
}
.ubtn-longshadow-left.ubtn-inverse:active, .ubtn-longshadow-left.ubtn-inverse.active, .ubtn-longshadow-left.ubtn-inverse.is-active {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}
.ubtn-longshadow-left.ubtn-action {
  text-shadow: 0px 0px #8bc220, -1px 1px #8bc220, -2px 2px #8bc220, -3px 3px #8bc220, -4px 4px #8bc220, -5px 5px #8bc220, -6px 6px #8bc220, -7px 7px #8bc220, -8px 8px #8bc220, -9px 9px #8bc220, -10px 10px #8bc220, -11px 11px #8bc220, -12px 12px #8bc220, -13px 13px #8bc220, -14px 14px #8bc220, -15px 15px #8bc220, -16px 16px #8bc220, -17px 17px #8bc220, -18px 18px #8bc220, -19px 19px #8bc220, -20px 20px #8bc220, -21px 21px #8bc220, -22px 22px #8bc220, -23px 23px #8bc220, -24px 24px #8bc220, -25px 25px #8bc220, -26px 26px #8bc220, -27px 27px #8bc220, -28px 28px #8bc220, -29px 29px #8bc220, -30px 30px #8bc220, -31px 31px #8bc220, -32px 32px #8bc220, -33px 33px #8bc220, -34px 34px #8bc220, -35px 35px #8bc220, -36px 36px #8bc220, -37px 37px #8bc220, -38px 38px #8bc220, -39px 39px #8bc220, -40px 40px #8bc220, -41px 41px #8bc220, -42px 42px #8bc220, -43px 43px #8bc220, -44px 44px #8bc220, -45px 45px #8bc220, -46px 46px #8bc220, -47px 47px #8bc220, -48px 48px #8bc220, -49px 49px #8bc220, -50px 50px #8bc220, -51px 51px #8bc220, -52px 52px #8bc220, -53px 53px #8bc220, -54px 54px #8bc220, -55px 55px #8bc220, -56px 56px #8bc220, -57px 57px #8bc220, -58px 58px #8bc220, -59px 59px #8bc220, -60px 60px #8bc220, -61px 61px #8bc220, -62px 62px #8bc220, -63px 63px #8bc220, -64px 64px #8bc220, -65px 65px #8bc220, -66px 66px #8bc220, -67px 67px #8bc220, -68px 68px #8bc220, -69px 69px #8bc220, -70px 70px #8bc220, -71px 71px #8bc220, -72px 72px #8bc220, -73px 73px #8bc220, -74px 74px #8bc220, -75px 75px #8bc220, -76px 76px #8bc220, -77px 77px #8bc220, -78px 78px #8bc220, -79px 79px #8bc220, -80px 80px #8bc220, -81px 81px #8bc220, -82px 82px #8bc220, -83px 83px #8bc220, -84px 84px #8bc220, -85px 85px #8bc220;
}
.ubtn-longshadow-left.ubtn-action:active, .ubtn-longshadow-left.ubtn-action.active, .ubtn-longshadow-left.ubtn-action.is-active {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}
.ubtn-longshadow-left.ubtn-highlight {
  text-shadow: 0px 0px #e59501, -1px 1px #e59501, -2px 2px #e59501, -3px 3px #e59501, -4px 4px #e59501, -5px 5px #e59501, -6px 6px #e59501, -7px 7px #e59501, -8px 8px #e59501, -9px 9px #e59501, -10px 10px #e59501, -11px 11px #e59501, -12px 12px #e59501, -13px 13px #e59501, -14px 14px #e59501, -15px 15px #e59501, -16px 16px #e59501, -17px 17px #e59501, -18px 18px #e59501, -19px 19px #e59501, -20px 20px #e59501, -21px 21px #e59501, -22px 22px #e59501, -23px 23px #e59501, -24px 24px #e59501, -25px 25px #e59501, -26px 26px #e59501, -27px 27px #e59501, -28px 28px #e59501, -29px 29px #e59501, -30px 30px #e59501, -31px 31px #e59501, -32px 32px #e59501, -33px 33px #e59501, -34px 34px #e59501, -35px 35px #e59501, -36px 36px #e59501, -37px 37px #e59501, -38px 38px #e59501, -39px 39px #e59501, -40px 40px #e59501, -41px 41px #e59501, -42px 42px #e59501, -43px 43px #e59501, -44px 44px #e59501, -45px 45px #e59501, -46px 46px #e59501, -47px 47px #e59501, -48px 48px #e59501, -49px 49px #e59501, -50px 50px #e59501, -51px 51px #e59501, -52px 52px #e59501, -53px 53px #e59501, -54px 54px #e59501, -55px 55px #e59501, -56px 56px #e59501, -57px 57px #e59501, -58px 58px #e59501, -59px 59px #e59501, -60px 60px #e59501, -61px 61px #e59501, -62px 62px #e59501, -63px 63px #e59501, -64px 64px #e59501, -65px 65px #e59501, -66px 66px #e59501, -67px 67px #e59501, -68px 68px #e59501, -69px 69px #e59501, -70px 70px #e59501, -71px 71px #e59501, -72px 72px #e59501, -73px 73px #e59501, -74px 74px #e59501, -75px 75px #e59501, -76px 76px #e59501, -77px 77px #e59501, -78px 78px #e59501, -79px 79px #e59501, -80px 80px #e59501, -81px 81px #e59501, -82px 82px #e59501, -83px 83px #e59501, -84px 84px #e59501, -85px 85px #e59501;
}
.ubtn-longshadow-left.ubtn-highlight:active, .ubtn-longshadow-left.ubtn-highlight.active, .ubtn-longshadow-left.ubtn-highlight.is-active {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}
.ubtn-longshadow-left.ubtn-caution {
  text-shadow: 0px 0px #ff1022, -1px 1px #ff1022, -2px 2px #ff1022, -3px 3px #ff1022, -4px 4px #ff1022, -5px 5px #ff1022, -6px 6px #ff1022, -7px 7px #ff1022, -8px 8px #ff1022, -9px 9px #ff1022, -10px 10px #ff1022, -11px 11px #ff1022, -12px 12px #ff1022, -13px 13px #ff1022, -14px 14px #ff1022, -15px 15px #ff1022, -16px 16px #ff1022, -17px 17px #ff1022, -18px 18px #ff1022, -19px 19px #ff1022, -20px 20px #ff1022, -21px 21px #ff1022, -22px 22px #ff1022, -23px 23px #ff1022, -24px 24px #ff1022, -25px 25px #ff1022, -26px 26px #ff1022, -27px 27px #ff1022, -28px 28px #ff1022, -29px 29px #ff1022, -30px 30px #ff1022, -31px 31px #ff1022, -32px 32px #ff1022, -33px 33px #ff1022, -34px 34px #ff1022, -35px 35px #ff1022, -36px 36px #ff1022, -37px 37px #ff1022, -38px 38px #ff1022, -39px 39px #ff1022, -40px 40px #ff1022, -41px 41px #ff1022, -42px 42px #ff1022, -43px 43px #ff1022, -44px 44px #ff1022, -45px 45px #ff1022, -46px 46px #ff1022, -47px 47px #ff1022, -48px 48px #ff1022, -49px 49px #ff1022, -50px 50px #ff1022, -51px 51px #ff1022, -52px 52px #ff1022, -53px 53px #ff1022, -54px 54px #ff1022, -55px 55px #ff1022, -56px 56px #ff1022, -57px 57px #ff1022, -58px 58px #ff1022, -59px 59px #ff1022, -60px 60px #ff1022, -61px 61px #ff1022, -62px 62px #ff1022, -63px 63px #ff1022, -64px 64px #ff1022, -65px 65px #ff1022, -66px 66px #ff1022, -67px 67px #ff1022, -68px 68px #ff1022, -69px 69px #ff1022, -70px 70px #ff1022, -71px 71px #ff1022, -72px 72px #ff1022, -73px 73px #ff1022, -74px 74px #ff1022, -75px 75px #ff1022, -76px 76px #ff1022, -77px 77px #ff1022, -78px 78px #ff1022, -79px 79px #ff1022, -80px 80px #ff1022, -81px 81px #ff1022, -82px 82px #ff1022, -83px 83px #ff1022, -84px 84px #ff1022, -85px 85px #ff1022;
}
.ubtn-longshadow-left.ubtn-caution:active, .ubtn-longshadow-left.ubtn-caution.active, .ubtn-longshadow-left.ubtn-caution.is-active {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}
.ubtn-longshadow-left.ubtn-royal {
  text-shadow: 0px 0px #5246e2, -1px 1px #5246e2, -2px 2px #5246e2, -3px 3px #5246e2, -4px 4px #5246e2, -5px 5px #5246e2, -6px 6px #5246e2, -7px 7px #5246e2, -8px 8px #5246e2, -9px 9px #5246e2, -10px 10px #5246e2, -11px 11px #5246e2, -12px 12px #5246e2, -13px 13px #5246e2, -14px 14px #5246e2, -15px 15px #5246e2, -16px 16px #5246e2, -17px 17px #5246e2, -18px 18px #5246e2, -19px 19px #5246e2, -20px 20px #5246e2, -21px 21px #5246e2, -22px 22px #5246e2, -23px 23px #5246e2, -24px 24px #5246e2, -25px 25px #5246e2, -26px 26px #5246e2, -27px 27px #5246e2, -28px 28px #5246e2, -29px 29px #5246e2, -30px 30px #5246e2, -31px 31px #5246e2, -32px 32px #5246e2, -33px 33px #5246e2, -34px 34px #5246e2, -35px 35px #5246e2, -36px 36px #5246e2, -37px 37px #5246e2, -38px 38px #5246e2, -39px 39px #5246e2, -40px 40px #5246e2, -41px 41px #5246e2, -42px 42px #5246e2, -43px 43px #5246e2, -44px 44px #5246e2, -45px 45px #5246e2, -46px 46px #5246e2, -47px 47px #5246e2, -48px 48px #5246e2, -49px 49px #5246e2, -50px 50px #5246e2, -51px 51px #5246e2, -52px 52px #5246e2, -53px 53px #5246e2, -54px 54px #5246e2, -55px 55px #5246e2, -56px 56px #5246e2, -57px 57px #5246e2, -58px 58px #5246e2, -59px 59px #5246e2, -60px 60px #5246e2, -61px 61px #5246e2, -62px 62px #5246e2, -63px 63px #5246e2, -64px 64px #5246e2, -65px 65px #5246e2, -66px 66px #5246e2, -67px 67px #5246e2, -68px 68px #5246e2, -69px 69px #5246e2, -70px 70px #5246e2, -71px 71px #5246e2, -72px 72px #5246e2, -73px 73px #5246e2, -74px 74px #5246e2, -75px 75px #5246e2, -76px 76px #5246e2, -77px 77px #5246e2, -78px 78px #5246e2, -79px 79px #5246e2, -80px 80px #5246e2, -81px 81px #5246e2, -82px 82px #5246e2, -83px 83px #5246e2, -84px 84px #5246e2, -85px 85px #5246e2;
}
.ubtn-longshadow-left.ubtn-royal:active, .ubtn-longshadow-left.ubtn-royal.active, .ubtn-longshadow-left.ubtn-royal.is-active {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

/*
* Button Sizes
*
* This file creates the various button sizes
* (ex. .button-large, .button-small, etc.)
*/
.ubtn-giant {
  font-size: 28px;
  height: 70px;
  line-height: 70px;
  padding: 0 70px;
}

.ubtn-jumbo {
  font-size: 24px;
  height: 60px;
  line-height: 60px;
  padding: 0 60px;
}

.ubtn-large {
  font-size: 20px;
  height: 50px;
  line-height: 50px;
  padding: 0 50px;
}

.ubtn-normal {
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  padding: 0 40px;
}

.ubtn-small {
  font-size: 12px;
  height: 30px;
  line-height: 30px;
  padding: 0 30px;
}

.ubtn-tiny {
  font-size: 9.6px;
  height: 24px;
  line-height: 24px;
  padding: 0 24px;
}

/* 
    Created on : 2/11/2016, 12:00:22 PM
    Author     : Logan
*/
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets
  http://mynameismatthieu.com/sass-css3-mixins/

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
/*rewrite btn if using a colour */
/* LOCK message */
.fd-form-lock.alert {
  color: white;
  background-color: #006eaf;
  border: 3px solid white;
  -webkit-border-radius: 25px;
  -khtml-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  border-radius: 25px;
  border-color: white;
  /*@include opacity ( 0.7 );*/
  padding: 10px;
}

.fd-form-lock.alert p {
  color: white;
}

.blockMsg.blockUI, .blockMsg.ui-widget, .blockMsg.ui-dialog, .blockMsg .ui-widgetcontent, .blockMsg .ui-dialog-content {
  background-color: transparent;
  border: none;
}

/* general forms */
fieldset.form-hidden {
  padding: 10px;
}

fieldset.form-hidden legend {
  margin-bottom: 0px;
}

.form-option {
  border-top: 1px solid grey;
  padding-top: 5px;
  margin-top: 5px;
}

.form-option .icon {
  margin-top: 0px;
}

.form-group p {
  margin: 0px;
}

fieldset {
  padding: 10px;
  padding-left: 13px;
  margin-bottom: 15px;
  clear: both;
  min-height: 50px;
}

fieldset h2 {
  margin-bottom: 0.3em;
}

fieldset fieldset {
  border: none;
  border-top: 1px solid #5f8692;
  padding: 0px;
  margin-top: 10px;
  padding-top: 10px;
}

legend {
  background-color: transparent;
  clear: both;
  color: #779000;
  float: left;
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
  padding-right: 20px;
  width: auto;
  border: none;
}

fieldset fieldset legend {
  border: none;
  font-size: 1.3em !important;
  color: #006ead;
  float: left;
  width: 100%;
  padding: 0px;
  margin: 10px 0px;
  text-align: left;
}

.form-group {
  margin-bottom: 2rem;
}

.login-form {
  max-width: 800px;
}

.login-form fieldset {
  border: none;
}

.login-container {
  margin-right: 60px;
}

.login-container .green {
  margin-left: 30px;
}

.input-group-addon {
  padding-left: 0rem;
  font-size: 1.2rem;
  color: #006eaf;
  background-color: transparent;
  border: none;
}

.form-control, .form-select {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  height: auto;
}

/* fix the cutting of of the dropdowns */
select.form-control, select.form-select {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.form-group.row {
  margin-bottom: 2rem;
}

.form-control-small, .form-control-medium {
  display: inline-block;
  width: 25%;
}

.form-control-medium {
  width: 50%;
}

/*Highlight/ error helpers */
.fd-red, .admin-icons:hover .hover-red, .admin-icons.fd-red {
  color: #F00;
}

.fd-green, .admin-icons:hover .hover-green, .admin-icons.fd-green {
  color: #919c5d;
}

.fd-blue, .admin-icons:hover .hover-blue, .admin-icons.fd-blue {
  color: #006ead;
}

input.error-class, textarea.error-class, .radio.error-class, .checkbox.error-class {
  background-color: #FF9999;
  color: #fff;
}

label.btn {
  padding-left: 30px;
}

.btn {
  white-space: normal;
}

/* style file inputs */
.input-file {
  /*  Setting the property values to zero ends up throwing the element out of tab party in some browsers.
  position: absolute guarantees the element does not interfere with the sibling elements. */
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  /* display: none or visibility: hidden will not work out as  the input value will not be sent to the server on form submit */
}

.input-file + label {
  font-size: 1em;
  font-weight: bold;
  display: inline-block;
  cursor: pointer;
}

.input-file:focus + label, .input-file + label:hover {
  text-decoration: underline;
}

/* keyboard */
.inputfile:focus + label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}

/*
    OLD forms are done in a definition list. with the subject or main label in the <dt> and the content in the <dd> for easy sepeartion
    any other list can then be styled out side of the list if needed
*/
/* old forms - now using bootstrap */
dd label {
  /*float:left; */
}

.flightdec-admin form, .flightdec-admin fieldset {
  clear: both;
}

form dl {
  clear: both;
  margin-top: 0.6em;
}

dt, dd {
  margin-bottom: 20px;
}

dt {
  clear: left;
  float: left;
  width: 25%;
}

dd {
  float: left;
  width: 73%;
}

dd img {
  clear: left;
}

#search input {
  margin-top: 0px;
}

#search-text {
  padding: 2px 12px;
}

label input[type=text] {
  display: inline-block;
  width: auto;
  margin-left: 10px;
}

label i.fa-question-circle {
  font-size: 0.8em;
  padding-left: 5px;
}

label.required:after {
  color: red;
  content: " *";
}

label.font-awesome-star:after {
  content: "";
}

/*styled with font awesome so remove *  */
label .small {
  color: #294e5c;
}

optgroup option {
  margin-left: 10px;
}

optgroup {
  font-style: normal;
}

/** backend connected sortables */
.form-opt-group {
  border: 1px solid grey;
  padding: 10px;
  margin: 10px 0px;
}

.connectSortable {
  border: 1px dashed grey;
  padding: 10px;
  margin: 10px;
  min-height: 10px;
}

/* 
    Created on : 2/11/2016, 2:25:22 PM
    Author     : Logan
*/
/*rewrite btn if using a colour */
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets
  http://mynameismatthieu.com/sass-css3-mixins/

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
/*  ERROR MESSAGES */
#h2-error {
  position: fixed;
  z-index: 9999;
  display: block;
  width: 500px;
  text-align: center;
  left: 50%;
  top: 150px;
  margin-left: -250px;
  padding: 20px 10px 5px 5px;
}

#h2-error .close-error {
  color: white;
  margin-left: 10px;
  margin-bottom: 5px;
}

#h2-error h2 {
  font-size: 1em;
  margin: 0px;
  line-height: 1.5em;
}

#h2-error div {
  z-index: 999;
  position: relative;
  width: 95%;
  margin: 0px auto 5px;
  cursor: pointer;
}

#h2-error .ui-button {
  display: block;
}

#h2-error.multi-errors {
  background: white;
  background: rgba(255, 255, 255, 0.5);
}

#h2-error.multi-errors #all-close {
  color: black;
}

.close-error img {
  float: right;
  border: none;
}

#h2-error .global-position {
  top: 50px;
  position: fixed;
}

#h2-error .btn.green {
  float: none;
}

.error-class {
  color: #900;
  clear: left;
}

div.error-class {
  background-color: #900;
  color: #fff;
}

/* YELLOW (error, 0) GREEN (good, 1) BLUE(info, -1) Interaction Cues -->
----------------------------------*/
#h2-error h2, #h2-error a {
  color: #fff;
  white-space: normal;
}

#h2-error .ui-state-active h2, #h2-error .ui-state-active a {
  color: #fff;
}

#h2-error a:hover {
  color: #fff;
  text-decoration: none;
}

#h2-error i {
  float: left;
}

#h2-error .btn.red {
  background-color: #fe4e0b;
  border-color: #fe4e0b;
  color: white;
}

#h2-error .btn.green {
  background-color: #779000;
  border-color: #779000;
  color: white;
}

#h2-error .btn.blue {
  background-color: #006eaf;
  border-color: #006eaf;
  color: white;
}

#h2-error .btn.grey {
  background-color: #7b7b7b;
  border-color: #7b7b7b;
  color: white;
}

#h2-error .btn.light-grey {
  background-color: #f5f5fc;
  border-color: #f5f5fc;
  color: white;
}

#h2-error .btn.yellow {
  background-color: #fec10d;
  border-color: #fec10d;
  color: white;
}

#h2-error .btn.black {
  background-color: #3c3c3c;
  border-color: #3c3c3c;
  color: white;
}

/* 
    Created on : 2/11/2016, 2:39:45 PM
    Author     : Logan
*/
/* hide the broadcast box by default*/
.broadcast-ignore-box {
  display: none;
}

.broadcast-admin.editing .broadcast-ignore-box {
  display: block;
}

/** NEED TO MOVE THE RH "REMOVE BROADCAST" UP A BIT out of way of the content*/
#modules-holder .broadcast-ignore-box {
  position: relative;
  margin-top: -5px;
  float: right;
}

.broadcast-result {
  clear: both;
  margin-bottom: 10px;
  border-bottom: 1px dashed #AFAFAA;
  padding-bottom: 10px;
}

.broadcast-from {
  font-size: 0.9em;
}

/*  THE read more  -  broadcast link */
.broadcast-link {
  float: right;
  border: 2px outset #AFAFAA;
  padding: 2px 5px;
}

.broadcast-link:hover {
  border: 2px inset #AFAFAA;
  background-color: #cecece;
}

.broadcast-image {
  float: left;
  margin-right: 10px;
}

#modules-holder .broadcast-image {
  margin-left: 10px;
}

/* broadcasts */
a.btn.broadcast-ignore-site, a.btn.broadcast-ignore {
  float: right;
  margin-left: 10px;
  font-size: 0.75em;
  line-height: 10px;
  padding: 5px;
  color: #9e3a1b;
  border: 2px solid #9e3a1b;
  background-color: #fff;
  border-radius: 20px;
}

a.btn.broadcast-ignore-site:hover, a.btn.broadcast-ignore:hover {
  border: 2px solid #b1360f;
  background-color: #b1360f;
  color: #fff;
}

#fd-content-broadcast a.btn.broadcast-pin {
  float: left;
  margin-left: 10px;
  font-size: 0.75em;
  line-height: 10px;
  padding: 5px;
  color: #779000;
  border: 2px solid #779000;
  background-color: #fff;
  border-radius: 20px;
}

#fd-content-broadcast a.btn.broadcast-pin:hover {
  border: 2px solid #779000;
  background-color: #779000;
  color: #fff;
}

#fd-content-broadcast a.btn.broadcast-pin.red {
  color: #9e3a1b;
  border: none;
  font-size: 0.4em;
  margin-top: -4px;
}

#fd-content-broadcast a.btn.broadcast-pin.red:hover {
  border: none;
  color: #fff;
  background-color: #ad3000;
}

.broadcast-search input {
  margin-top: 0px;
}

.broadcast-search legend {
  font-size: 1.1em;
  background-color: transparent;
  width: auto;
}

.broadcast-toggle-modal {
  border: none;
  background-color: #104163;
  background-image: none;
  font-weight: bold;
  color: #fff;
  padding: 4px 5px 5px 4px;
  line-height: 0.25;
  border-radius: 10px 0px 10px;
  margin-bottom: 5px;
  margin-top: 30px;
}

.broadcast-toggle-modal:hover {
  background-color: #0265a9;
  border: none;
}

.broadcast-toggle-modal .fa-paper-plane {
  font-size: 0.5em;
}

.broadcast-toggle-modal .fa-paper-plane:hover {
  color: #fff;
}

/* bootstrap make visibile for content editor*/
#tinymce .modal {
  display: block;
  opacity: 100;
  position: initial;
  overflow: visible;
}

#tinymce .modal.fade .modal-dialog {
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}

/** add a + icon to btn on modals */
.bootstrap-modal-btn:hover {
  color: #428bca;
}

.bootstrap-modal-btn:before {
  color: #084c71;
  font-family: FontAwesome, sans-serif;
  content: "";
  margin-right: 5px;
  font-size: 0.9em;
}

/* 
    Created on : 2/11/2016, 2:03:21 PM
    Author     : Logan
*/
/*rewrite btn if using a colour */
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets
  http://mynameismatthieu.com/sass-css3-mixins/

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
/* make all buttons the same */
.btn {
  -webkit-border-radius: 200px;
  -khtml-border-radius: 200px;
  -moz-border-radius: 200px;
  -ms-border-radius: 200px;
  -o-border-radius: 200px;
  border-radius: 200px;
}

.btn.square, .btn.underline {
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}

/* make a smaller one */
.btn.small {
  padding: 3px 6px;
  color: #000;
}

.advanced-option, .advanced-option.row {
  display: none;
}

.show-advanced .advanced-option {
  display: flex;
}

.advanced-option, .advanced-option .form-control {
  border-color: #779000;
}

/* BLUE Interaction states * DEFAULT BUTTON * --> border: 2px outset, hover inset
----------------------------------*/
/** also remove the box shadow from bootsrap */
.btn.red:hover, .btn.red.hover {
  border: 2px solid #fe4e0b;
  background-color: #fe4e0b;
  color: #fff;
  outline-style: none;
  background-image: none;
}

.btn.red, a.ui-button.red {
  border: 2px solid #fe4e0b;
  background-color: white;
  background-image: none;
  font-weight: bold;
  color: #fe4e0b;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -khtml-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -ms-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -o-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
}

.btn.red:focus, .btn.red:active, .btn.red.focus, .btn.red.active {
  border: 2px solid #fe4e0b;
  background-color: #fe4e0b;
  color: #fff;
  outline-style: none;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -khtml-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -ms-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -o-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
}

/** also remove the box shadow from bootsrap */
.btn.green:hover, .btn.green.hover {
  border: 2px solid #779000;
  background-color: #779000;
  color: #fff;
  outline-style: none;
  background-image: none;
}

.btn.green, a.ui-button.green {
  border: 2px solid #779000;
  background-color: white;
  background-image: none;
  font-weight: bold;
  color: #779000;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -khtml-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -ms-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -o-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
}

.btn.green:focus, .btn.green:active, .btn.green.focus, .btn.green.active {
  border: 2px solid #779000;
  background-color: #779000;
  color: #fff;
  outline-style: none;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -khtml-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -ms-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -o-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
}

/** also remove the box shadow from bootsrap */
.btn.blue:hover, .btn.blue.hover {
  border: 2px solid #006eaf;
  background-color: #006eaf;
  color: #fff;
  outline-style: none;
  background-image: none;
}

.btn.blue, a.ui-button.blue {
  border: 2px solid #006eaf;
  background-color: white;
  background-image: none;
  font-weight: bold;
  color: #006eaf;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -khtml-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -ms-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -o-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
}

.btn.blue:focus, .btn.blue:active, .btn.blue.focus, .btn.blue.active {
  border: 2px solid #006eaf;
  background-color: #006eaf;
  color: #fff;
  outline-style: none;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -khtml-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -ms-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -o-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
}

/** also remove the box shadow from bootsrap */
.btn.grey:hover, .btn.grey.hover {
  border: 2px solid #7b7b7b;
  background-color: #7b7b7b;
  color: #fff;
  outline-style: none;
  background-image: none;
}

.btn.grey, a.ui-button.grey {
  border: 2px solid #7b7b7b;
  background-color: white;
  background-image: none;
  font-weight: bold;
  color: #7b7b7b;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -khtml-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -ms-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -o-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
}

.btn.grey:focus, .btn.grey:active, .btn.grey.focus, .btn.grey.active {
  border: 2px solid #7b7b7b;
  background-color: #7b7b7b;
  color: #fff;
  outline-style: none;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -khtml-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -ms-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -o-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
}

/** also remove the box shadow from bootsrap */
.btn.light-grey:hover, .btn.light-grey.hover {
  border: 2px solid #f5f5fc;
  background-color: #f5f5fc;
  color: #fff;
  outline-style: none;
  background-image: none;
}

.btn.light-grey, a.ui-button.light-grey {
  border: 2px solid #f5f5fc;
  background-color: white;
  background-image: none;
  font-weight: bold;
  color: #f5f5fc;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -khtml-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -ms-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -o-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
}

.btn.light-grey:focus, .btn.light-grey:active, .btn.light-grey.focus, .btn.light-grey.active {
  border: 2px solid #f5f5fc;
  background-color: #f5f5fc;
  color: #fff;
  outline-style: none;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -khtml-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -ms-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -o-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
}

/** also remove the box shadow from bootsrap */
.btn.yellow:hover, .btn.yellow.hover {
  border: 2px solid #fec10d;
  background-color: #fec10d;
  color: #fff;
  outline-style: none;
  background-image: none;
}

.btn.yellow, a.ui-button.yellow {
  border: 2px solid #fec10d;
  background-color: white;
  background-image: none;
  font-weight: bold;
  color: #fec10d;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -khtml-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -ms-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -o-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
}

.btn.yellow:focus, .btn.yellow:active, .btn.yellow.focus, .btn.yellow.active {
  border: 2px solid #fec10d;
  background-color: #fec10d;
  color: #fff;
  outline-style: none;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -khtml-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -ms-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -o-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
}

/** also remove the box shadow from bootsrap */
.btn.black:hover, .btn.black.hover {
  border: 2px solid #3c3c3c;
  background-color: #3c3c3c;
  color: #fff;
  outline-style: none;
  background-image: none;
}

.btn.black, a.ui-button.black {
  border: 2px solid #3c3c3c;
  background-color: white;
  background-image: none;
  font-weight: bold;
  color: #3c3c3c;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -khtml-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -ms-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -o-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
}

.btn.black:focus, .btn.black:active, .btn.black.focus, .btn.black.active {
  border: 2px solid #3c3c3c;
  background-color: #3c3c3c;
  color: #fff;
  outline-style: none;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -khtml-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -ms-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -o-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
}

.btn.green {
  float: right;
  background-color: #779000;
  color: #fff;
}

.btn.green:hover, .btn.green:hover {
  background-color: #727903;
  border-color: #727903;
}

.green.f-left {
  float: left;
}

.round-icon {
  /* global button class */
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 2em;
  height: 2em;
  box-shadow: 0 2px 2px #999;
  padding: 0px;
  text-decoration: none;
  text-align: center;
  line-height: 2em;
  -webkit-border-radius: 25px;
  -khtml-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  border-radius: 25px;
}

.round-icon:hover {
  box-shadow: 0 2px 2px #dedede;
}

.btn.underline {
  border: none;
  border-bottom: 1px solid white;
}

.btn.underline:active, .btn.underline.active, .btn.underline:focus, .btn.underline.focus,
.btn.underline:hover, .btn.underline.hover {
  border: none;
  border-bottom: 1px solid black;
  background-color: white;
  color: black;
  /** also remove the box shadow from bootsrap */
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -khtml-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -ms-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -o-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
}

.page-edit-menu .modules-slider .btn.underline {
  border: 1px solid #7b7b7b;
}

/* using /modules/buttons now @import 'general/fd-buttons'; */
/* 
    Created on : 2/11/2016, 2:35:25 PM
    Author     : Logan
*/
/* mediaboxAdvanced - black theme */
#mbOverlay {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  cursor: pointer;
}

#mbOverlay.mbOverlayFF {
  background: transparent url(/images/mediabox/80.png) repeat;
}

#mbOverlay.mbOverlayIE {
  position: absolute;
}

#mbCenter {
  position: absolute;
  z-index: 9999;
  left: 50%;
  overflow: hidden;
  background-color: #000;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.7);
}

#mbCenter.mbLoading {
  background: #000 url(/images/mediabox/BlackLoading.gif) no-repeat center;
  /*	This style is applied only during animation.	*/
  /*	For example, the following turns off shadows,	*/
  /*	helping browser performance on slow systems.	*/
  /*	To leave shadows on, just remove these lines:	*/
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

#mbImage {
  position: relative;
  left: 0;
  top: 0;
  /*	Begin styles for inline content, if no style is given	*/
  font-family: Myriad, Verdana, Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-size: 12px;
  color: #fff;
  text-align: left;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 10px;
}

#mbImage a, #mbImage a:link, #mbImage a:visited {
  color: #ddd;
}

#mbImage a:hover, #mbImage a:active {
  color: #fff;
}

/*	End inline content styles	*/
#mbBottom {
  min-height: 20px;
  font-family: Myriad, Verdana, Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-size: 12px;
  color: #999;
  text-align: left;
  padding: 0 10px 10px;
}

#mbTitle {
  display: inline;
  color: #fff;
  font-weight: bold;
  line-height: 20px;
  font-size: 12px;
}

#mbNumber {
  display: inline;
  color: #999;
  line-height: 14px;
  font-size: 10px;
  margin: auto 10px;
}

#mbCaption {
  display: block;
  color: #999;
  line-height: 14px;
  font-size: 10px;
  padding-bottom: 10px;
}

#mbPrevLink, #mbNextLink, #mbCloseLink {
  display: block;
  float: right;
  height: 20px;
  margin: 0;
  outline: none;
}

#mbPrevLink {
  width: 69px;
  background: transparent url(/images/mediabox/BlackPrevious.gif) no-repeat center;
}

#mbNextLink {
  width: 41px;
  background: transparent url(/images/mediabox/BlackNext.gif) no-repeat center;
}

#mbCloseLink {
  width: 46px;
  background: transparent url(/images/mediabox/BlackClose.gif) no-repeat center;
}

/* 
    Created on : 2/11/2016, 2:35:56 PM
    Author     : Logan
*/
/* TOOL TIPS - only styling the created ones. .tips is looked for in JS and bootstrap styling applied */
.tips-tracked .fa-question-circle {
  margin-left: 5px;
}

.tooltip.top {
  width: 300px;
}

.tooltip-inner {
  background-color: #fff;
  border-color: #5f8692;
  border-style: solid;
  border-width: 1px;
  color: #000;
  max-width: 300px;
  padding: 10px;
  text-align: left;
}

.tooltip.top .tooltip-arrow {
  border-top-color: #5f8692;
}

.tip-link {
  border: none;
  margin-top: 10px;
  margin-bottom: 5px;
  display: block;
}

.ui-dialog {
  background-color: #FFF;
  border: 1px solid #bebebe;
}

.ui-dialog-titlebar {
  background-color: #DEDEDE;
  padding: 5px;
}

.ui-dialog-title {
  font-weight: bold;
  color: #476F8B;
}

.ui-dialog-content {
  padding: 10px;
}

.ui-dialog-titlebar-close {
  float: right;
  margin-right: 5px;
}

/* 
    Created on : 2/11/2016, 2:36:40 PM
    Author     : Logan
*/
/* SPINNERS */
.spinner {
  position: absolute;
  opacity: 0.9;
  filter: alpha(opacity=90);
  z-index: 999;
}

.spinner-msg {
  text-align: center;
  font-weight: bold;
}

dd .spinner-img {
  background: url("/images/flightdec/spinner.gif") no-repeat;
  width: 16px;
  height: 16px;
  margin: 0 auto;
}

/* 
    Created on : 2/11/2016, 2:37:21 PM
    Author     : Logan
*/
/* All BOXES EXCEPT SNAPSHOT */
.box ol, .box ul {
  margin: 7px 10px 0 25px;
}

.box ol li p, .box ul li p {
  padding: 0px;
  margin: 0px;
}

.box ol li, .box ul li {
  list-style-position: outside;
  padding: 3px;
}

.box ol li, .box ul li {
  font-size: 0.85em;
}

.box ol li a, .box ul li a {
  text-decoration: none;
}

.box ol li a:hover, .box ul li a:hover {
  text-decoration: underline;
}

/* GREY BOX - MAINLY FOR RIGHT COL */
.box {
  margin-bottom: 5px;
  border: 1px solid #BEBEBE;
  line-height: 1.6em;
  padding-top: 5px;
  padding-bottom: 5px;
}

.box.article {
  margin-bottom: -10px;
}

.box h6 {
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}

.box p {
  padding: 4px 10px;
}

.custom-box {
  clear: left;
}

.rotate-holder {
  height: 65px;
  background-color: #fff;
}

.rotate {
  padding-left: 5px;
  display: block;
  width: 50px;
  padding: 0px 5px;
}

/* 
    Created on : 7/04/2020, 12:19:57 PM
    Author     : L.hendra

    Frontend editor css
*/
button.f-right, a.f-right, .btn.f-right {
  margin-right: 5px;
}

button.f-left, a.f-left, .btn.f-left {
  margin-left: 5px;
}

/* HTML 5 elements fix for lt IE 9 */
html {
  font-size: 100%;
}

/* keep as 100% from bootstrap - is chagned in aa,a,aaa.ccs in body */
/*create min-width paragraphs
p:before {
    content: "";
    width: 200px; 
    display: block; 
    overflow: hidden;
    float: left;
} */
/** remove on floated paragraphs  */
p.f-right:before {
  width: 0px;
}

.fd-load-time, .fd-cache-time {
  display: none;
}

body .last {
  margin-left: 0px;
  margin-right: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

#fd-logo {
  background-color: #fff;
  position: fixed;
  bottom: 10px;
  right: 0px;
  z-index: 998;
  height: 90px;
  float: right;
}

#fd-logo.fd-logo-bottom {
  position: static;
  bottom: 10px;
  margin-top: -200px;
  display: block;
}

#fd-text {
  position: fixed;
  bottom: 10px;
  right: 0px;
  z-index: 999;
  width: auto;
  padding-top: 50px;
  margin-right: 20px;
}

#fd-text p {
  background-color: #fff;
  padding: 5px;
  font-size: 14px;
  display: block;
  margin-bottom: 0px;
}

#fd-text p a {
  color: blue;
  font-size: 14px;
  padding-left: 3px;
  font-style: italic;
}

#wait-icon {
  position: fixed;
  top: 50%;
  left: 48%;
  z-index: 9999;
}

#admin-special {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  padding: 10px;
}

#admin-special h3 {
  color: #fff;
  margin: 5px auto;
  text-align: center;
}

.admin-special {
  background-color: #000;
}

#user-notification .admin-special a {
  color: #fff;
}

#user-notification .admin-special a:hover {
  color: #000;
}

#user-notification {
  background-color: #f7f7f7;
  z-index: 999;
  width: 100%;
}

#user-notification a {
  color: #3c9ab1;
}

#user-notification ul li {
  margin: 0px;
}

#site-history {
  position: fixed;
  bottom: 0px;
  background-color: #262626;
  padding: 10px 50px;
  border-top: 1px solid #BEBEBE;
  z-index: 99;
  width: 100%;
}

#site-history p {
  margin: 0px;
  color: #fff;
}

#site-history a {
  color: #3c9ab1;
  font-size: 12px;
  cursor: pointer;
}

#site-history .white {
  color: #fff;
}

/* ADMIN page Curl/tools on front end when logged in */
#admin-tools {
  width: 157px;
  height: 160px;
  background-image: URL("/images/flightdec/flightdec-sprite.png");
  background-repeat: no-repeat;
  z-index: 999;
  font-size: 1.2em;
  position: fixed;
  top: 0px;
  right: 0px;
}

.admin .open-menu.details-opener {
  top: 80px;
}

/* move the opener out from underneath it */
#admin-tools {
  background-position: -70px -704px;
  height: 70px;
  width: 80px;
}

#admin-btns {
  visibility: hidden;
}

#admin-tools.curled {
  background-position: 0px -544px;
  height: 155px;
  width: 157px;
}

.curled #admin-btns {
  visibility: visible;
}

/* hidden members menu */
.small-members-menu .xs-members-opener {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
}

.small-members-menu .xs-members-opener:after {
  display: none;
}

/* hide bootstrap arrow while using jQueryUI */
.small-members-menu .details-opener {
  font-size: 1.2em;
  padding: 10px;
  border: 2px outset #000;
  color: #fff;
  background-color: #3d3d3d;
}

.small-members-menu li {
  list-style-type: none;
}

.small-members-menu .details-slide.menu {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
  height: auto;
  position: fixed;
  margin-top: 50px;
  width: 100%;
  background-image: none;
  background-color: #3d3d3d;
}

.small-members-menu ul {
  padding-left: 0px;
}

.small-members-menu ul li {
  float: none;
  text-align: center;
}

.members-area-notification {
  display: block;
  padding: 10px 15px;
  border-left: 3px solid #104163;
  color: #000;
  font-weight: bold;
}

#user-notification .nav-tabs i.fa-chevron-right {
  font-size: 0.8em;
  margin-right: 5px;
}

/* small menu position reset */
.small-hidden-menu .primary-menu-item ul, .small-hidden-menu .secondary-menu-item ul {
  position: inherit;
}

/* General Reset Rules */
table, tbody, td {
  border-collapse: collapse;
  border-spacing: 0;
  vertical-align: top;
  padding: 5px;
}

html {
  overflow-y: scroll;
}

.clear {
  clear: both;
}

.popover-content {
  font-weight: bold;
}

#sub-content {
  padding-bottom: 0.5em;
}

/* Layout */
.f-left {
  float: left;
}

.f-right {
  float: right;
}

/* these ones need to be specific so they dont get overwritten, IE by .icon 
body div .f-left { float:left; }
body div .f-right { float:right; }*/
.archive {
  margin: 20px 0px;
}

.archive-result {
  margin: 20px 0px;
}

.date-post {
  margin-top: -20px;
}

#result {
  font-weight: bold;
  padding: 4px;
  text-align: center;
  margin-bottom: 8px;
}

.transparent, .container.transparent {
  background-color: transparent;
  border: none;
}

.pointer, .details-opener, .hover {
  cursor: pointer;
}

.hidden {
  display: none;
}

.details-opener .toggle-icon, .hover-opener .toggle-icon {
  float: left;
  margin-right: 5px;
  width: 10px;
}

.details-opener .toggle-icon-right, .hover-opener .toggle-icon-right {
  margin-right: 5px;
  float: right;
  margin-right: 0px;
  margin-left: 10px;
}

.result.off {
  background-image: URL("/images/flightdec/active-screen.gif");
  background-position: top left;
  opacity: 0.7;
}

/** .toggle icons via aria attributes */
.auto-toggle-icon:before {
  padding-right: 10px;
  font-family: "Font Awesome 6 Pro";
  width: 16px;
  display: inline-block;
}

.auto-toggle-icon[aria-expanded=true]:before, .auto-toggle-icon[aria-expanded="1"]:before {
  content: "";
}

.auto-toggle-icon[aria-expanded=false]:before, .auto-toggle-icon[aria-expanded=""]:before {
  content: "";
}

/** back button */
.back-btn:before {
  padding-right: 10px;
  font-family: "Font Awesome 5 Pro";
  width: 16px;
  display: inline-block;
  content: "";
}

a.color-edit {
  text-indent: -9999px;
  background-image: URL("/images/flightdec/flightdec-sprite.png");
  background-position: -2px -493px;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
}

.site-avatar img {
  float: left;
  margin: 0px 5px;
}

h5.site-avatar {
  margin-top: 5px;
}

#skiptocontent a {
  padding: 6px;
  position: absolute;
  top: -40px;
  left: 0px;
  color: white;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  border-bottom-right-radius: 8px;
  background: transparent;
  -webkit-transition: top 1s ease-out, background 1s linear;
  transition: top 1s ease-out, background 1s linear;
  z-index: 100;
}

#skiptocontent a:focus {
  position: absolute;
  left: 0px;
  top: 0px;
  background: #BF1722;
  outline: 0;
  -webkit-transition: top 0.1s ease-in, background 0.5s linear;
  transition: top 0.1s ease-in, background 0.5s linear;
}

.comment-reply-quote {
  margin: 10px 40px;
}

.comment-row {
  margin-top: 10px;
  border-bottom: 1px dashed grey;
  padding-bottom: 5px;
}

#comment-form-hide-btn {
  border-bottom: 1px dashed black;
  padding-bottom: 10px;
}

#comment-form-hide-btn:before {
  font-family: "Font Awesome 5 Pro";
  content: "";
}

#comment-form-hide-btn.toggled:before {
  content: "";
}

#totop {
  right: 50px;
  bottom: 10px;
  z-index: 1010;
  position: fixed;
  display: none;
}

#totop a.btn {
  min-width: 50px;
  border: 2px solid #104163;
  color: #104163;
  font-size: 0.7em;
  padding: 4px 6px 0px 8px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #fff;
  border-radius: 20px;
}

#totop a.btn:hover {
  color: #fff;
  background-color: #104163;
}

#totop.affix, #totop.affix-bottom {
  visibility: visible;
  z-index: 999;
}

/* show  */
.textsize {
  position: fixed;
  bottom: 10px;
  left: 0px;
  z-index: 100;
  width: 17px;
}

.textsize-decrease, .textsize-increase {
  background-image: URL("/images/flightdec/flightdec-sprite.png");
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  text-indent: -9999px;
  display: block;
}

.textsize-increase {
  background-position: -5px -4px;
}

.textsize-decrease {
  background-position: -31px -6px;
}

.textsize-text {
  background-image: URL("/images/flightdec/flightdec-sprite.png");
  background-position: -4px -26px;
  display: block;
  height: 60px;
  width: 17px;
  background-color: #fff;
  text-indent: -9999px;
}

#aaa {
  height: 100px;
}

/* admin icons for members and flightdec sections */
#sortable {
  padding: 5px;
}

.sortable {
  padding-bottom: 15px;
}

.admin-pages {
  margin-bottom: 30px;
  display: block;
}

.admin-pages h2 {
  margin-top: 20px;
}

.admin-icons {
  display: block;
  background-repeat: no-repeat;
  margin-right: 10px;
  margin-left: 10px;
  float: right;
}

.admin-icons li {
  float: left;
  list-style-type: none;
  margin: 0px;
}

.admin-icons a, #sortable-mods .admin-icons a, .module a {
  text-decoration: none;
  display: block;
  cursor: pointer;
  color: #333;
  margin: 0px;
  margin-right: 10px;
  font-size: 18px;
}

.admin-icons a:hover, .module a:hover {
  color: #006ead;
}

.admin-icons .status-off a {
  color: red;
}

.admin-icons .status-off a:hover {
  color: green;
}

.admin-icons .status-on a {
  color: green;
}

.admin-icons .status-on a:hover {
  color: red;
}

.admin-icons a.active i {
  border-bottom: 1px solid #006eaf;
  padding-bottom: 3px;
}

.result {
  padding: 10px;
  margin-bottom: 20px;
}

.result .result {
  padding: 0px;
}

.odd {
  background-color: #e8e8e9;
}

.even {
  background-color: #ecf2f6;
}

.moving {
  background-color: #abbf44;
}

.odd-child {
  background-color: #e0e0e1;
}

.even-child {
  background-color: #deeaf4;
}

.helper, .sortable-placeholder {
  background-color: #abbf44;
  margin-bottom: 10px;
}

.sortable-placeholder p {
  text-align: center;
  color: #fff;
  font-weight: bold;
  padding-top: 5px;
  font-size: 1em;
}

a.panel-title {
  display: block;
}

#add-page {
  position: relative;
  z-index: 99;
}

#admin-btns a {
  border: 1px outset #C4C4C4;
  padding: 2px 5px;
  display: block;
  float: right;
  clear: right;
  background-color: #fff;
}

#admin-btns {
  z-index: 998;
}

#preview-box {
  position: fixed;
  z-index: 9999;
  top: 0px;
  left: 50%;
  margin-left: -300px;
  text-align: center;
  background-color: #dedede;
  padding: 10px;
  width: 600px;
  background-image: URL("/images/flightdec/flightdec-sprite.png");
  background-repeat: repeat-x;
  background-position: 0px -300px;
  background-color: #acacac;
  border: 2px solid #000;
  border-top: none;
}

#preview-box h3 {
  color: #fff;
}

/* members menu */
.members-menu li {
  float: left;
  list-style-type: none;
  margin: 0px;
}

.members-menu li a {
  padding: 5px 10px;
  border: 1px outset #cecece;
  background-color: #DEDEDE;
  display: block;
}

.members-menu li a:hover, .members-menu li a.active {
  border: 1px inset #c4c4c4;
  background-color: #999;
  color: #fff;
}

.join-btn {
  font-size: 1.1em;
}

/* page changer / pagination */
.pagination {
  float: left;
}

.pagination li {
  margin-left: 0px;
}

.pagination-container .chngr-jump {
  width: 25px;
  padding: 4px;
  display: inline;
  float: none;
  margin-top: 0px;
}

.pagination-form {
  margin-left: 10px;
  display: inline-block;
  width: auto;
}

.pagination-form form {
  display: inline;
}

/*** spacers ***/
/* which classes to create spavcers for */
[class*=spacer-] {
  height: 0px;
  visibility: hidden;
  clear: both;
}

/* set all heights to 0, hidden and clear both */
.spacer-0 {
  margin-bottom: 0px;
}

/** applys the height as margin-bottom */
.hr-rule.spacer-0 {
  height: 0px;
}

/* sets the height of a rule spacer to THAT height as we want to at 10px to the bottom so the rule is visible */
.spacer-1 {
  margin-bottom: 1px;
}

/** applys the height as margin-bottom */
.hr-rule.spacer-1 {
  height: 1px;
}

/* sets the height of a rule spacer to THAT height as we want to at 10px to the bottom so the rule is visible */
.spacer-5 {
  margin-bottom: 5px;
}

/** applys the height as margin-bottom */
.hr-rule.spacer-5 {
  height: 5px;
}

/* sets the height of a rule spacer to THAT height as we want to at 10px to the bottom so the rule is visible */
.spacer-10 {
  margin-bottom: 10px;
}

/** applys the height as margin-bottom */
.hr-rule.spacer-10 {
  height: 10px;
}

/* sets the height of a rule spacer to THAT height as we want to at 10px to the bottom so the rule is visible */
.spacer-15 {
  margin-bottom: 15px;
}

/** applys the height as margin-bottom */
.hr-rule.spacer-15 {
  height: 15px;
}

/* sets the height of a rule spacer to THAT height as we want to at 10px to the bottom so the rule is visible */
.spacer-20 {
  margin-bottom: 20px;
}

/** applys the height as margin-bottom */
.hr-rule.spacer-20 {
  height: 20px;
}

/* sets the height of a rule spacer to THAT height as we want to at 10px to the bottom so the rule is visible */
.spacer-30 {
  margin-bottom: 30px;
}

/** applys the height as margin-bottom */
.hr-rule.spacer-30 {
  height: 30px;
}

/* sets the height of a rule spacer to THAT height as we want to at 10px to the bottom so the rule is visible */
.spacer-40 {
  margin-bottom: 40px;
}

/** applys the height as margin-bottom */
.hr-rule.spacer-40 {
  height: 40px;
}

/* sets the height of a rule spacer to THAT height as we want to at 10px to the bottom so the rule is visible */
.spacer-50 {
  margin-bottom: 50px;
}

/** applys the height as margin-bottom */
.hr-rule.spacer-50 {
  height: 50px;
}

/* sets the height of a rule spacer to THAT height as we want to at 10px to the bottom so the rule is visible */
/* add rule and make visible for .hr-rule */
.hr-rule[class*=spacer-] {
  border-bottom: 1px solid #cecece;
  visibility: visible;
  margin-bottom: 10px;
}

/* make a padder class for a visible spacer */
.visible[class*=spacer-] {
  visibility: visible;
  height: auto;
  clear: initial;
}

/*   SITEMAP STYLES   */
.sitemap-category li {
  list-style-type: none;
}

.sitemap-child-0 {
  margin-left: 0px;
}

.sitemap-child-1 {
  margin-left: 10px;
}

.sitemap-child-2 {
  margin-left: 20px;
}

.sitemap-child-3 {
  margin-left: 30px;
}

.sitemap-child-4 {
  margin-left: 40px;
}

#dev-tools {
  position: fixed;
  bottom: 0px;
  font-size: 18px;
  font-weight: bold;
  z-index: 998;
  opacity: 0.4;
}

#dev-tools a {
  color: #fff;
  text-align: center;
  padding: 5px 20px;
  border: 3px outset #fff;
  background-color: red;
  z-index: 999;
}

#dev-tools a:hover {
  border: 3px inset #000;
  background-color: yellow;
}

#fd-countdown {
  top: 0px;
  z-index: 999;
  position: fixed;
  width: 100%;
}

#fd-countdown-msg {
  background-color: red;
  margin: 0px auto;
  opacity: 0.8;
  padding: 5px;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  width: 100px;
  text-align: center;
}

#fd-timer {
  padding: 0px 10px;
}

.fd-error-container {
  background-color: red;
  color: #fff;
  border: 3px outset #dedede;
  padding: 5px;
}

body pre .fd-error {
  background-color: red;
  color: #fff;
  width: auto;
  z-index: 999;
  position: absolute;
  border: 3px inset #dedede;
  padding: 5px;
}

.fd-error-container h4 {
  color: white;
}

.signature-image {
  float: left;
  margin-top: 3px;
  margin-right: 10px;
  border: 1px solid #BEBEBE;
}

.content-header {
  margin-top: 10px;
  font-size: 0.85em;
  padding: 0.2em 0.9em;
  border: 1px solid #BEBEBE;
  border-left: none;
  border-right: none;
  margin-bottom: 10px;
}

.content-header h3 {
  margin-top: 0em;
}

.content-header h4 {
  margin-top: 0.4em;
  margin-bottom: 0.4em;
  display: flex;
  align-items: center;
}

.content-header img {
  width: 21px;
  height: 21px;
  margin-top: 0.2em;
}

.content-header .broadcast-image, .content-header .row-site-image {
  border: none;
  vertical-align: middle;
  margin-right: 5px;
  float: left;
  margin: 0 5px 0 0;
}

.content-header p {
  line-height: 1.8em;
  margin-bottom: 3px;
}

.content-header i {
  margin-right: 5px;
}

.content-header .heading {
  font-weight: bold;
}

.content-header img {
  border: none;
}

article a {
  text-decoration: none;
}

/* the read more link for module index pages */
.read-more {
  cursor: pointer;
  padding: 3px 10px;
  margin-top: 5px;
  font-size: 0.85em;
  text-decoration: underline;
}

article a.read-more {
  text-decoration: none;
}

/** artilces have the WHOLE a p as read-more */
article a.read-more:hover {
  text-decoration: underline;
}

/** .read-more::before { content: '...' }  **/
.mod-index-divider {
  margin-bottom: 30px;
  clear: both;
  padding-bottom: 10px;
}

.mod-index-divider a:hover {
  text-decoration: none;
}

/* the brodcast module name for index pages */
.broadcast-module-name {
  font-size: 0.8em;
  float: right;
  font-weight: bold;
  clear: left;
  display: block;
  color: red;
  text-transform: uppercase;
  margin-top: 5px;
}

.module-icon {
  width: 16px;
  height: 16px;
}

/**  broadcast search */
#fd-content-broadcast label {
  display: none;
}

#fd-content-broadcast .col-8.col-xl-6, #uni-Form fieldset .col-sm-6.col-xs-12 {
  padding-right: 0px;
}

.broadcast-search fieldset {
  padding-left: 0px;
  border: none;
}

#broadcast-search.text.form-control:focus {
  color: #000;
}

#broadcast-search.text.form-control {
  color: #8a8989;
  border-radius: 0rem;
  border: 1px solid #babbbb;
}

#fd-content-broadcast .btn.green, #calForm .btn.green, #unimod-search-btn {
  border: none;
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

#fd-content-broadcast .btn.green:hover, #calForm .btn.green:hover, #unimod-search-btn:hover {
  color: #05c74b;
  background-color: transparent;
}

a.red.reset {
  line-height: 2.5;
  color: #b36945;
  font-weight: bold;
  padding-left: 4px;
}

a.red.reset:hover {
  color: #d20303;
}

/** search buton tweaks for broadcast, event and unimod */
#uni-Form input.form-control:focus, #filter.form-control:focus, #filter.form-control:focus-within {
  color: #000;
}

#uni-Form input.form-control, #filter.form-control {
  color: #8a8989;
  border-radius: 0px;
  border: 1px solid #babbbb;
}

#calForm .btn.green {
  font-size: 18px;
  padding: 0px 12px;
}

#calForm h4, #uni-Form legend {
  font-size: 1rem;
  color: #999999;
  font-weight: normal;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0px;
  margin-top: 20px;
}

#uni-Form fieldset, #uni-Form .col-sm-1.col-xs-12 {
  padding-right: 0px;
  padding-left: 0px;
}

/* make them visible scrollable */
.modal-dialog {
  overflow-y: initial !important;
}

.modal-body {
  max-height: calc(100vh - 200px);
  /* > IE9 */
  overflow-y: auto;
}

/* the flightdec default overlay */
.fd-overlay {
  padding: 10px;
  /* overlay is hidden before loading */
  display: none;
  /* standard decorations */
  border: 10px solid #666;
  /* for modern browsers use semi-transparent color on the border. nice! */
  border: 10px solid rgba(82, 82, 82, 0.698);
  /* hot CSS3 features for mozilla and webkit-based browsers (rounded borders) */
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  background-color: #fff;
}

.fd-overlay fieldset {
  border: none;
  width: 455px;
  padding: 0px;
}

.fd-overlay textarea {
  height: 100px;
  width: 100%;
}

.fd-overlay legend {
  display: none;
}

.fd-overlay .close {
  float: right;
  margin-right: 20px;
}

/* BOOTSTRAP additions or fixes */
.row-eq-height {
  display: flex;
  flex-wrap: wrap;
}

.row-eq-height > div[class*=col-] {
  display: flex;
  flex-direction: column;
}

.equal-5 .col-sm-2 {
  width: 20%;
}

@media (min-width: 768px) {
  .equal-5 .col-2, .equal-5 .col-sm-2, .equal-5 .col-lg-2 {
    width: 20%;
    *width: 20%;
  }
}
@media (min-width: 1200px) {
  .equal-5 .col-2, .equal-5 .col-sm-2, .equal-5 .col-lg-2 {
    width: 20%;
    *width: 20%;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .equal-5 .col-2, .equal-5 .col-sm-2, .equal-5 .col-lg-2 {
    width: 20%;
    *width: 20%;
  }
}
@media (max-width: 768px) {
  .equal-5 .col-xs-6 {
    width: 50%;
    *width: 50%;
  }
}
select, input[type=file] {
  height: auto;
}

/*  .no-space to remove gap inbetween rows
 * Bootstrap Grid System without space
 *
 * Overwrite Bootstrap grid system, removing margin
 * Usage :  Simple add no-space class with row-fluid
 *
 * updated for BS3
 */
.row .no-space, .row.no-space > div {
  padding-left: 0px;
  padding-right: 0px;
}

.row-fluid.no-space [class*=span], .row.no-space [class*=span] {
  margin-left: 0%;
  *margin-left: -0.06944%;
}

.row-fluid.no-space [class*=span]:first-child, .row.no-space [class*=span]:first-child {
  margin-left: 0;
}

.row-fluid.no-space .controls-row [class*=span] + [class*=span],
.row.no-space .controls-row [class*=span] + [class*=span] {
  margin-left: 0%;
}

.row-fluid.no-space .span12 {
  width: 100%;
  *width: 99.9305555556%;
}

.row-fluid.no-space .span11 {
  width: 91.6666666667%;
  *width: 91.5972222222%;
}

.row-fluid.no-space .span10 {
  width: 83.3333333333%;
  *width: 83.2638888889%;
}

.row-fluid.no-space .span9 {
  width: 75%;
  *width: 74.9305555556%;
}

.row-fluid.no-space .span8 {
  width: 66.6666666667%;
  *width: 66.5972222222%;
}

.row-fluid.no-space .span7 {
  width: 58.3333333333%;
  *width: 58.2638888889%;
}

.row-fluid.no-space .span6 {
  width: 50%;
  *width: 49.9305555556%;
}

.row-fluid.no-space .span5 {
  width: 41.6666666667%;
  *width: 41.5972222222%;
}

.row-fluid.no-space .span4 {
  width: 33.3333333333%;
  *width: 33.2638888889%;
}

.row-fluid.no-space .span3 {
  width: 25%;
  *width: 24.9305555556%;
}

.row-fluid.no-space .span2 {
  width: 16.6666666667%;
  *width: 16.5972222222%;
}

.row-fluid.no-space .span1 {
  width: 8.3333333333%;
  *width: 8.2638888889%;
}

.row-fluid.no-space .offset12 {
  margin-left: 100%;
  *margin-left: 99.8611111111%;
}

.row-fluid.no-space .offset12:first-child {
  margin-left: 100%;
  *margin-left: 99.8611111111%;
}

.row-fluid.no-space .offset11 {
  margin-left: 91.6666666667%;
  *margin-left: 91.5277777778%;
}

.row-fluid.no-space .offset11:first-child {
  margin-left: 91.6666666667%;
  *margin-left: 91.5277777778%;
}

.row-fluid.no-space .offset10 {
  margin-left: 83.3333333333%;
  *margin-left: 83.1944444444%;
}

.row-fluid.no-space .offset10:first-child {
  margin-left: 83.3333333333%;
  *margin-left: 83.1944444444%;
}

.row-fluid.no-space .offset9 {
  margin-left: 75%;
  *margin-left: 74.8611111111%;
}

.row-fluid.no-space .offset9:first-child {
  margin-left: 75%;
  *margin-left: 74.8611111111%;
}

.row-fluid.no-space .offset8 {
  margin-left: 66.6666666667%;
  *margin-left: 66.5277777778%;
}

.row-fluid.no-space .offset8:first-child {
  margin-left: 66.6666666667%;
  *margin-left: 66.5277777778%;
}

.row-fluid.no-space .offset7 {
  margin-left: 58.3333333333%;
  *margin-left: 58.1944444444%;
}

.row-fluid.no-space .offset7:first-child {
  margin-left: 58.3333333333%;
  *margin-left: 58.1944444444%;
}

.row-fluid.no-space .offset6 {
  margin-left: 50%;
  *margin-left: 49.8611111111%;
}

.row-fluid.no-space .offset6:first-child {
  margin-left: 50%;
  *margin-left: 49.8611111111%;
}

.row-fluid.no-space .offset5 {
  margin-left: 41.6666666667%;
  *margin-left: 41.5277777778%;
}

.row-fluid.no-space .offset5:first-child {
  margin-left: 41.6666666667%;
  *margin-left: 41.5277777778%;
}

.row-fluid.no-space .offset4 {
  margin-left: 33.3333333333%;
  *margin-left: 33.1944444444%;
}

.row-fluid.no-space .offset4:first-child {
  margin-left: 33.3333333333%;
  *margin-left: 33.1944444444%;
}

.row-fluid.no-space .offset3 {
  margin-left: 25%;
  *margin-left: 24.8611111111%;
}

.row-fluid.no-space .offset3:first-child {
  margin-left: 25%;
  *margin-left: 24.8611111111%;
}

.row-fluid.no-space .offset2 {
  margin-left: 16.6666666667%;
  *margin-left: 16.5277777778%;
}

.row-fluid.no-space .offset2:first-child {
  margin-left: 16.6666666667%;
  *margin-left: 16.5277777778%;
}

.row-fluid.no-space .offset1 {
  margin-left: 8.3333333333%;
  *margin-left: 8.1944444444%;
}

.row-fluid.no-space .offset1:first-child {
  margin-left: 8.3333333333%;
  *margin-left: 8.1944444444%;
}

/* page rating system */
.page-rating {
  float: right;
  width: 150px;
}

.rating a {
  font-size: 1.2em;
}

.rating > a:hover, .rating > a:hover:before,
.rating > a:hover ~ a:before {
  color: orange;
  direction: rtl;
}

.rating_text {
  float: left;
  text-align: center;
  font-size: 1em;
}

.rating a.star {
  font-family: "Font Awesome 5 Pro";
  float: right;
  margin-right: 3px;
}

.rating a.star:hover {
  cursor: pointer;
  text-decoration: none;
}

/*  off */
.rating a.star-empty:after {
  content: "";
  color: grey;
}

/*  half */
.rating a.star-half:after {
  content: "";
  color: goldenrod;
}

/*  on*/
.rating a.star-full:after {
  content: "";
  color: goldenrod;
}

.rating a.star:hover:after, .rating a.star:hover ~ a.star:after {
  content: "";
  color: green;
}

/* flightdec chat */
#fd-chat {
  position: fixed;
  top: 30px;
  left: 5px;
  z-index: 9999;
}

#chat-button {
  position: relative;
  padding: 10px;
  font-size: 1.5em;
}

#chat-button.open {
  color: red;
}

#pin {
  width: 40px;
  min-width: 40px;
}

#fd-chat-window {
  display: none;
  height: 552px;
  width: 700px;
  margin-top: -50px;
  background-color: #929292;
  border: 2px solid #929292;
}

#fd-chat-window iframe {
  width: 100%;
  height: 500px;
}

figure.image {
  display: table;
}

figure.align-left {
  float: left;
  margin-right: 10px;
}

figure.align-right {
  float: right;
  margin-left: 10px;
}

figure.image img {
  display: block;
}

figure.image figcaption {
  padding: 6px 8px 6px 8px;
  text-align: center;
  font-style: italic;
  font-size: 0.95em;
  border-bottom: 1px solid #cecece;
  display: table-caption;
  caption-side: bottom;
}

figure.image img.img-responsive, figure.image img.img-fluid {
  max-width: 96%;
  margin: 0px auto;
}

figure.image figcaption p {
  line-height: 1.3em;
}

.iframe-responsive-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* parallax effect fixs for hiding images while loading */
section .parallax-slider {
  display: none;
}

a p {
  color: #333;
}

.read-more:hover {
  color: #337ab7;
}

/*# sourceMappingURL=flightdec-site-styles.css.map */
