@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

------------------------------------------------------------- */
/* 
    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: 0.375rem 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;
}

.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-lg?  */
.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: none;
  background-color: #fff;
  border-radius: 20px;
}

#fd-content-broadcast a.btn.broadcast-pin:hover {
  border: none;
  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;
}

/* BLUE Interaction states * DEFAULT BUTTON * --> border: 2px outset, hover inset
----------------------------------*/
.advanced-option, .advanced-option.row {
  display: none;
}

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

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

/** 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: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);
}

.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);
}

/* fix BS4 blue active */
.btn-primary:not([disabled]):not(.disabled).active.red, .btn-primary:not([disabled]):not(.disabled).red:active, a.red:not([href]):not([tabindex]):focus, a.red:not([href]):not([tabindex]):hover {
  background-color: #fe4e0b;
  color: #fff;
}

/** 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: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);
}

.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);
}

/* fix BS4 blue active */
.btn-primary:not([disabled]):not(.disabled).active.green, .btn-primary:not([disabled]):not(.disabled).green:active, a.green:not([href]):not([tabindex]):focus, a.green:not([href]):not([tabindex]):hover {
  background-color: #779000;
  color: #fff;
}

/** 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: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);
}

.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);
}

/* fix BS4 blue active */
.btn-primary:not([disabled]):not(.disabled).active.blue, .btn-primary:not([disabled]):not(.disabled).blue:active, a.blue:not([href]):not([tabindex]):focus, a.blue:not([href]):not([tabindex]):hover {
  background-color: #006eaf;
  color: #fff;
}

/** 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: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);
}

.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);
}

/* fix BS4 blue active */
.btn-primary:not([disabled]):not(.disabled).active.grey, .btn-primary:not([disabled]):not(.disabled).grey:active, a.grey:not([href]):not([tabindex]):focus, a.grey:not([href]):not([tabindex]):hover {
  background-color: #7b7b7b;
  color: #fff;
}

/** 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: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);
}

.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);
}

/* fix BS4 blue active */
.btn-primary:not([disabled]):not(.disabled).active.light-grey, .btn-primary:not([disabled]):not(.disabled).light-grey:active, a.light-grey:not([href]):not([tabindex]):focus, a.light-grey:not([href]):not([tabindex]):hover {
  background-color: #f5f5fc;
  color: #fff;
}

/** 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: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);
}

.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);
}

/* fix BS4 blue active */
.btn-primary:not([disabled]):not(.disabled).active.yellow, .btn-primary:not([disabled]):not(.disabled).yellow:active, a.yellow:not([href]):not([tabindex]):focus, a.yellow:not([href]):not([tabindex]):hover {
  background-color: #fec10d;
  color: #fff;
}

/** 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: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.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);
}

/* fix BS4 blue active */
.btn-primary:not([disabled]):not(.disabled).active.black, .btn-primary:not([disabled]):not(.disabled).black:active, a.black:not([href]):not([tabindex]):focus, a.black:not([href]):not([tabindex]):hover {
  background-color: #3c3c3c;
  color: #fff;
}

.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);
}

#addon-modules, #page-basics {
  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
*/
/*  import bootstrap 4 only rules */
/* CSS styles need to only affect upgrade to bootstrap 4 */
/* pagination */
.bs4 .pagination-form {
  margin-top: 0px;
}

.btn-primary:not([disabled]):not(.disabled).active, .btn-primary:not([disabled]):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
  background-color: inherit;
  color: inherit;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

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

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

.flash {
  -webkit-animation: flash 1s 0s 2 ease-out;
  -khtml-animation: flash 1s 0s 2 ease-out;
  -moz-animation: flash 1s 0s 2 ease-out;
  -ms-animation: flash 1s 0s 2 ease-out;
  -o-animation: flash 1s 0s 2 ease-out;
  animation: flash 1s 0s 2 ease-out;
  /*@include css3-prefix('iteration-count', 2 ) ;*/
}

/** add a flash effect to .flash */
@-webkit-keyframes flash {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: #fc673a;
    color: #000;
  }
  100% {
    background-color: transparent;
  }
}
@-moz-keyframes flash {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: #fc673a;
    color: #000;
  }
  100% {
    background-color: transparent;
  }
}
@-ms-keyframes flash {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: #fc673a;
    color: #000;
  }
  100% {
    background-color: transparent;
  }
}
@-o-keyframes flash {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: #fc673a;
    color: #000;
  }
  100% {
    background-color: transparent;
  }
}
@keyframes flash {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: #fc673a;
    color: #000;
  }
  100% {
    background-color: transparent;
  }
}
/* 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: 9999;
  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;
}

/* backend and front end */
.fd-development #dev-tools:before {
  content: "";
  font-size: 28px;
  background-color: red;
  padding: 4px;
  margin-left: 10px;
  color: white;
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
  border: 5px solid black;
}

/* 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: 9999;
  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;
}

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

.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;
}

.broadcast-tools.admin-icons .status-off a:hover, .broadcast-tools.admin-icons .status-on a:hover {
  color: #006ead;
}

.admin-icons a.active i {
  border-bottom: 2px solid #3c3c3c;
  padding-bottom: 3px;
  border-color: #006ead;
}

.admin-icons a.active i:hover {
  border-color: #006eaf;
}

.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;
}

a#fd-toggle-edit {
  clear: none;
}

#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-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;
}

.page-item.active .page-link {
  background-color: #337ab7;
  border-color: #337ab7;
}

.pagination > li > a, .pagination > li > span {
  color: #337ab7;
}

/*** 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 {
  font-family: "Font Awesome 5";
  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-rem.css.map */
