/*
// *******************************************************************
// VARIABLES
// *******************************************************************
*/
/*
// *******************************************************************
// PAGE LAYOUT
// *******************************************************************
*/
html, body {
  color: #041521;
  background-color: #EEEEEE;
  margin: 0px;
  font-family: "Noto Sans", sans-serif;
  font-size: 15px;
}

/*
// *******************************************************************
// HEADER
// *******************************************************************
*/
* {
  box-sizing: border-box;
}

.cloud {
  animation: clouds 60s infinite linear;
  border-radius: 10px;
  position: relative;
  margin: 13px 0 0 0;
  width: 54px;
  height: 5px;
  background: #f7e7eb;
}
.cloud.tiny {
  transform: scale(0.4, 0.4);
}
.cloud.small {
  transform: scale(0.8, 0.8);
}
.cloud.normal {
  transform: scale(1, 1);
}
.cloud.large {
  transform: scale(2, 2);
}
.cloud div {
  box-shadow: inset -2px -3px 0 0 #f7e7eb;
  position: absolute;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  left: -3px;
  bottom: 0;
  background: #fafbf0;
  z-index: 10;
}
.cloud div:first-child + div {
  transform: scale(1.6, 1.6);
  margin: 0 0 4px 13px;
  z-index: 9;
}
.cloud div:first-child + div + div {
  transform: scale(2.4, 2.4);
  margin: 0 0 9px 32px;
  z-index: 8;
}
.cloud div:first-child + div + div + div {
  transform: scale(1.3, 1.3);
  margin: 0 0 2px 50px;
  z-index: 7;
}
@keyframes clouds {
  0% {
    left: -100%;
  }
  100% {
    left: 120%;
  }
}
.cloud-1 {
  animation-duration: 152s;
  margin-left: 20%;
}

.cloud-2 {
  animation-duration: 84s;
  margin-left: 90%;
}

.cloud-3 {
  animation-duration: 102s;
  margin-left: 50%;
}

.cloud-4 {
  animation-duration: 51s;
  margin-left: 43%;
}

.cloud-5 {
  animation-duration: 139s;
  margin-left: 68%;
}

.cloud-5 {
  animation-duration: 65s;
  margin-left: 16%;
}

#flighthub_header {
  background-color: #87CEFA;
  overflow-x: hidden;
  overflow-y: hidden;
  height: 140px;
}
#flighthub_header #flighthub_header_container {
  z-index: 1000;
  padding: 15px;
  position: absolute;
  top: 0;
}
#flighthub_header #flighthub_header_container #flighthub_header_left img {
  height: 110px;
}
#flighthub_header #flighthub_header_container #flighthub_header_right {
  text-align: right;
}

/*
// *******************************************************************
// FOOTER
// *******************************************************************
*/
#flighthub_footer {
  padding: 20px;
  text-align: center;
  background-color: #117554;
  color: #EEEEEE;
  font-size: 13px;
  font-weight: bold;
}
#flighthub_footer a,
#flighthub_footer a:link,
#flighthub_footer a:visited {
  color: #EEEEEE;
  text-decoration: underline;
}
#flighthub_footer a:hover,
#flighthub_footer a:focus {
  text-decoration: none;
}

/*
// *******************************************************************
// MENU
// *******************************************************************
*/
#flighthub_menu_icon_a {
  display: inline-block;
  margin-left: 10px;
}

#flighthub_menu {
  display: none;
}
#flighthub_menu #flighthub_menu_sar,
#flighthub_menu #flighthub_menu_fire,
#flighthub_menu #flighthub_menu_stol,
#flighthub_menu #flighthub_menu_jet,
#flighthub_menu #flighthub_menu_user {
  display: none;
}
#flighthub_menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#flighthub_menu ul li {
  list-style: none;
}
#flighthub_menu ul#flighthub_menu_primary {
  background-color: #EEEEEE;
  display: inline-block;
  min-width: 300px;
}
#flighthub_menu ul#flighthub_menu_primary > li {
  text-align: left;
  padding: 10px;
  border: 1px solid #03346E;
}
#flighthub_menu ul#flighthub_menu_primary > li .primary_links {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}
#flighthub_menu ul#flighthub_menu_primary > li ul li {
  text-align: right;
  border-bottom: 1px solid #03346E;
  padding: 7px;
}
#flighthub_menu ul#flighthub_menu_primary > li ul li:last-child {
  border: none;
}

/*
// *******************************************************************
// BREADCRUMB
// *******************************************************************
*/
#flighthub_breadcrumb ul {
  list-style: none;
  display: inline-block;
  padding: 0;
  margin: 0;
}
#flighthub_breadcrumb ul li {
  float: left;
}
#flighthub_breadcrumb ul li a {
  color: #EEEEEE;
  display: block;
  background: #117554;
  text-decoration: none;
  position: relative;
  height: 39.5px;
  line-height: 40px;
  padding: 0 10px 0 5px;
  text-align: center;
  margin-right: 28px;
}
#flighthub_breadcrumb ul li:nth-child(even) a {
  background-color: #117554;
}
#flighthub_breadcrumb ul li:nth-child(even) a:before {
  border-color: #117554;
  border-left-color: transparent;
}
#flighthub_breadcrumb ul li:nth-child(even) a:after {
  border-left-color: #117554;
}
#flighthub_breadcrumb ul li:first-child a {
  padding-left: 15px;
  border-radius: 4px 0 0 4px;
}
#flighthub_breadcrumb ul li:first-child a:before {
  border: none;
}
#flighthub_breadcrumb ul li:last-child a {
  padding-right: 15px;
  border-radius: 0 4px 4px 0;
}
#flighthub_breadcrumb ul li:last-child a:after {
  border: none;
}
#flighthub_breadcrumb ul li a:before, #flighthub_breadcrumb ul li a:after {
  content: "";
  position: absolute;
  top: 0;
  border: 0 solid #117554;
  border-width: 20px 10px;
  width: 0;
  height: 0;
}
#flighthub_breadcrumb ul li a:before {
  left: -20px;
  border-left-color: transparent;
}
#flighthub_breadcrumb ul li a:after {
  left: 100%;
  border-color: transparent;
  border-left-color: #117554;
}
#flighthub_breadcrumb ul li a:hover, #flighthub_breadcrumb ul li a:focus {
  background-color: #03346E;
}
#flighthub_breadcrumb ul li a:hover:before, #flighthub_breadcrumb ul li a:focus:before {
  border-color: #03346E;
  border-left-color: transparent;
}
#flighthub_breadcrumb ul li a:hover:after, #flighthub_breadcrumb ul li a:focus:after {
  border-left-color: #03346E;
}
#flighthub_breadcrumb ul li a:active {
  background-color: #03346E;
}
#flighthub_breadcrumb ul li a:active:before {
  border-color: #03346E;
  border-left-color: transparent;
}
#flighthub_breadcrumb ul li a:active:after {
  border-left-color: #03346E;
}

/*
// *******************************************************************
// MAIN CONTENT
// *******************************************************************
*/
#flighthub_main {
  padding: 0 20px 20px;
  background-image: linear-gradient(#87CEFA, #EEEEEE);
}

.home_tile_options {
  text-align: center;
}
.home_tile_options h2 {
  font-size: 25px;
  margin: 10px 0;
  font-weight: 900;
}
.home_tile_options .home_tile_option_image {
  border-radius: 10px;
  overflow: hidden;
}
.home_tile_options .home_tile_option_image img {
  width: 100%;
}

.game_tile_options {
  text-align: center;
}
.game_tile_options .game_tile_option_container {
  border: 1px solid #A0937D;
  border-radius: 10px;
  padding: 10px;
  margin: 10px 0;
  background-color: rgba(0, 0, 0, 0.1);
}
.game_tile_options .game_tile_option_container a {
  display: block;
}
.game_tile_options .game_tile_option_container a .game_tile_option_icon {
  font-size: 50px;
  font-weight: bold;
  padding-bottom: 10px;
}

/*
// *******************************************************************
// THE REST
// *******************************************************************
*/
h1,
h2,
h3,
h4,
h5 {
  color: #03346E;
  margin: 0 0 20px;
  text-align: center;
}

.required,
.red {
  color: #940000 !important;
}

.messages {
  background-color: #43A9FF;
  padding: 20px;
  margin: 10px 0;
}

.errors {
  background-color: #F95454;
  padding: 20px;
  margin: 10px 0;
}

.alerts {
  background-color: #FCCD2A;
  padding: 20px;
  margin: 10px 0;
}

.note {
  color: #696969;
  font-size: 12px;
  font-style: italic;
}

.small_note {
  font-style: italic;
  font-size: 12px;
}

.center,
.align_center {
  text-align: center;
}

.align_left {
  text-align: left;
}

.align_right {
  text-align: right;
}

.two_columns {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}

table th,
table td {
  padding: 4px 10px 4px 0;
}

table tr.row_alert {
  background-color: #FCCD2A;
}

table.data_table {
  border-collapse: collapse;
  margin: 0 auto 15px;
  background-color: #041521;
  color: #EEEEEE;
}
table.data_table th {
  background-color: #212122;
}
table.data_table th,
table.data_table td {
  border: 1px solid #666362;
  padding: 10px;
}
table.data_table tr:nth-child(even) {
  background-color: #666362;
}
table.data_table tr.highlight {
  background-color: #FFE4E1;
  color: #041521;
}
table.data_table th.indent,
table.data_table td.indent {
  padding-left: 25px;
}
table.data_table a {
  color: #EEEEEE;
  text-decoration: underline;
}
table.data_table a:hover, table.data_table a:focus {
  text-decoration: none;
}

table.form_table textarea {
  width: 100%;
}

fieldset legend {
  font-size: 13px;
}

input,
select,
textarea,
.select2 .selection .select2-selection {
  border-color: #041521;
  border-radius: 4px;
  border-width: 2px;
}

input.date_picker {
  width: 90px;
}

input.small_input {
  width: 100px;
}

input.long_input {
  width: 250px;
}

.container {
  width: 100%;
  max-width: 100%;
}
.container.no-padding {
  padding: 0;
  margin: 0;
}

.two_columns {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}

a {
  border: none;
  padding: 0;
  color: #03346E;
  text-decoration: none;
}
a:hover, a:focus {
  color: #088395;
  text-decoration: underline;
}

.btn-primary {
  background-color: #03346E;
  color: #EEEEEE;
}

div.image {
  padding: 10px 0;
}
div.image img {
  width: 50%;
}

#session_start_date_field,
#fire_mission_cheat_refill_water_weight_field,
#fire_mission_cheat_refill_time_field,
#fire_mission_cheat_easy_water_needed_field {
  display: none;
}

.status_future,
.status_present,
.status_past {
  padding: 10px;
  font-weight: bold;
  text-align: center;
}

.status_future {
  background-color: #FFD700;
}

.status_present {
  background-color: #32CD32;
}

.status_past {
  background-color: #686868;
  color: #EEEEEE;
}

/*
// *******************************************************************
// LESS THAN 1200PX
// *******************************************************************
*/
@media all and (max-width: 1200px) {
  #flighthub_header {
    width: auto;
    max-width: none;
  }
}
/*
// *******************************************************************
// LESS THAN 768PX
// *******************************************************************
*/
@media all and (max-width: 768px) {
  #flighthub_main {
    padding: 10px;
  }
  div.image img {
    width: 100%;
  }
}
/*
// *******************************************************************
// LESS THAN 576PX
// *******************************************************************
*/
@media all and (max-width: 576px) {
  html, body {
    font-size: 13px;
  }
  #flighthub_header {
    padding: 7px 0;
  }
  table th,
  table td {
    padding: 3px 5px 3px 0;
  }
  table.data_table th,
  table.data_table td {
    padding: 3px 5px;
    font-size: 10px;
  }
  table.form_table input[type=file] {
    font-size: 11px;
  }
  table.form_table input {
    width: 100%;
  }
  table.form_table input[type=radio] {
    width: auto;
  }
  .hide_on_mobile {
    display: none;
  }
  /* end of max-width: 576px */
}/*# sourceMappingURL=flighthub_style.css.map */