/* CSS Document */
@font-face {
  font-family: OpenSans;
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/OpenSans/OpenSans-Light.ttf") format("truetype");
}
@font-face {
  font-family: OpenSans;
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/OpenSans/OpenSans-Regular.ttf") format("truetype");
}
@font-face {
  font-family: OpenSans;
  font-weight: 600;
  font-style: normal;
  src: url("../fonts/OpenSans/OpenSans-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: OpenSans;
  font-weight: 400;
  font-style: italic;
  src: url("../fonts/OpenSans/OpenSans-LightItalic.ttf") format("truetype");
}
@font-face {
  font-family: OpenSans;
  font-weight: 500;
  font-style: italic;
  src: url("../fonts/OpenSans/OpenSans-Italic.ttf") format("truetype");
}
@font-face {
  font-family: OpenSans;
  font-weight: 600;
  font-style: italic;
  src: url("../fonts/OpenSans/OpenSans-SemiBoldItalic.ttf") format("truetype");
}
* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-family: OpenSans;
  font-weight: 500;
}

body {
  width: 100%;
  height: 100%;
  height: calc(var(--vh, 1vh) * 100);
}

h1 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
}

h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

h5 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  cursor: pointer;
}

b {
  font-weight: 600;
}

p {
  margin-bottom: 15px;
}

hr {
  border-top: 0.5px solid #333;
}

.flex, .flex-100 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.flex.flex-100 div, .flex-100.flex-100 div {
  width: 100%;
}
.flex.column-gap, .flex-100.column-gap {
  -webkit-column-gap: 10px;
          column-gap: 10px;
}
.flex.column-gap-5, .flex-100.column-gap-5 {
  -webkit-column-gap: 5px;
          column-gap: 5px;
}
.flex.column-gap-10, .flex-100.column-gap-10 {
  -webkit-column-gap: 10px;
          column-gap: 10px;
}
.flex.column-gap-15, .flex-100.column-gap-15 {
  -webkit-column-gap: 15px;
          column-gap: 15px;
}
.flex.column-gap-20, .flex-100.column-gap-20 {
  -webkit-column-gap: 20px;
          column-gap: 20px;
}
.flex.strip div, .flex-100.strip div {
  font-size: 10px;
  border-left: 1px solid #CCC;
  padding: 5px;
}
.flex.strip div.red, .flex-100.strip div.red {
  background-color: #ff8787;
}
.flex.strip div.blue, .flex-100.strip div.blue {
  background-color: #cad8ed;
}
.flex.strip div.green, .flex-100.strip div.green {
  background-color: #aae6a3;
}
.flex.strip div.yellow, .flex-100.strip div.yellow {
  background-color: #fcd69d;
}
.flex.strip div.grey, .flex-100.strip div.grey {
  background-color: #cfcfcf;
}
.flex.strip div select, .flex-100.strip div select {
  width: 100%;
  border: none;
  background-color: transparent;
}

.grid {
  display: grid;
  width: 100%;
  height: 100%;
  overflow: scroll;
}
.grid.paddingBottom {
  padding: 0px 0px 500px 0px;
}
.grid > div {
  background-color: #CCC;
  padding: 10px;
  border: 1px solid #000;
  margin-bottom: -1px;
  margin-right: -1px;
  height: 70px;
}
.grid > div:nth-of-type(odd) {
  background-color: antiquewhite;
}
.grid > div.header-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0px !important;
  border-top: none;
  z-index: 10000;
}
.grid > div.header-left {
  position: -webkit-sticky;
  position: sticky;
  left: 0px !important;
  border-left: none;
  z-index: 20000;
}
.grid > div.header-both {
  position: -webkit-sticky;
  position: sticky;
  top: 0px !important;
  left: 0px !important;
  border-top: none;
  border-left: none;
  z-index: 30000;
}

nav {
  position: fixed;
  top: 0px;
  left: 0px;
  bottom: 0px;
  width: 250px;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: #1E4878;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  z-index: 10;
}
nav #navHeader {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 40px;
  border-bottom: 1px solid #FFF;
}
nav #navHeader .img {
  display: block;
  width: 50px;
  height: 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 25px;
}
nav #navHeader #menu_btn {
  float: right;
  width: 40px;
  background-image: url("../images/navigation/application/mobile_white.svg");
  cursor: pointer;
  background-size: 20px;
}
nav #navHeader #menu_btn:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
nav #navHeader #logout_btn {
  float: right;
  width: 40px;
  background-image: url("../images/navigation/application/logout_white.svg");
  cursor: pointer;
  background-size: 16px;
}
nav #navHeader #logout_btn:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
nav #navHeader #notify_btn {
  float: right;
  width: 40px;
  background-image: url("../images/navigation/application/notify_white.svg");
  cursor: pointer;
  background-size: 18px;
}
nav #navHeader #notify_btn:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
nav #navHeader #logo {
  float: left;
  background-size: 30px;
  background-image: url("../images/logo/logo_feathers_white.svg");
}
nav > ul#navMenu {
  position: absolute;
  display: block;
  top: calc(40px + 10px);
  bottom: 0px;
  left: 0px;
  width: 100%;
  overflow: auto;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}
nav > ul#navMenu li {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  min-height: 40px;
}
nav > ul#navMenu li a {
  position: absolute;
  display: block;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding-left: 0px;
  margin-left: 0px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
nav > ul#navMenu li a:hover {
  background-color: #777777;
  color: #333;
}
nav > ul#navMenu li a img {
  float: left;
  width: 50px;
  height: 40px;
  padding: 5px;
}
nav > ul#navMenu li a .text {
  float: left;
  width: calc(100% - 50px);
  padding-left: 5px;
  color: #FFF;
}
nav > ul#navMenu li ul {
  display: none;
  margin-top: 40px;
  margin-left: calc(50px / 2);
  width: calc(100% - 30px);
}
nav > ul#navMenu li ul li {
  border-left: 1px solid #FFF;
}
nav > ul#navMenu li ul li a {
  margin-left: 10px;
  padding-left: calc((50px / 2) - 10px);
}
nav > ul#navMenu li ul li a .text {
  width: 100%;
  color: #FFF;
}
nav > ul#navMenu li .arrow {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 60px;
  height: 40px;
  background-image: url("../images/navigation/application/arrow_white.svg");
  background-size: 5px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  z-index: 1;
}
nav > ul#navMenu li .arrow:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
nav > ul#navMenu li.active > a .text {
  text-decoration: underline;
}
nav ul#notifications {
  position: absolute;
  display: none;
  top: calc(40px + 10px);
  bottom: 0px;
  left: 0px;
  width: 100%;
  overflow: auto;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  padding: 0px 10px 10px 10px;
}
nav ul#notifications li {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  background-color: #FFF;
  margin-bottom: 10px;
}
nav ul#notifications li:first-of-type {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 1;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  border-bottom: 10px solid #1E4878;
  margin-bottom: 0px;
}

.tooltip {
  z-index: 100000;
}

.tooltip::before {
  position: absolute;
  display: block;
  content: attr(data-tooltip);
  top: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 20px;
  background: #09F;
  color: #FFF;
  padding: 0px 5px;
  border-radius: 2px;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
  z-index: 1;
}

.tooltip:hover::before {
  opacity: 1;
}

container {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  bottom: 0px;
  right: 0px;
  overflow: hidden;
  background-color: #EBEBEB;
}
container header {
  width: 100%;
  min-height: 40px;
  max-height: 40px;
  background-color: #DDD;
  border-bottom: 1px solid #999;
  overflow: hidden;
}
container header .menu {
  width: 100%;
  line-height: 40px;
  padding-left: 10px;
  overflow-x: scroll;
  overflow-y: hidden;
  text-align: center;
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  scrollbar-width: none;
  /* Optional: show position indicator in red */
}
container header .menu ::-webkit-scrollbar {
  width: 0;
  /* Remove scrollbar space */
  background: transparent;
  /* Optional: just make scrollbar invisible */
  display: none;
}
container header .menu ::-webkit-scrollbar-thumb {
  background: #FF0000;
}
container header .menu ul {
  width: auto;
  overflow-x: scroll;
  white-space: nowrap;
}
container header .menu ul li {
  display: inline-block;
  list-style-type: none;
  line-height: 20px;
}
container header .menu ul li a {
  border-right: 1px solid #333;
  padding: 0px 5px;
  line-height: 20px;
}
container header .menu ul li a:hover {
  text-decoration: underline;
}
container header .menu ul li a.active {
  text-decoration: underline;
}
container header .menu ul li:first-of-type a {
  padding-left: 0px;
}
container header .menu ul li:last-of-type a {
  border-right: none;
}
container main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
container main > .asideBtnLeft, container main > .asideBtnRight {
  position: absolute;
  display: block;
  top: 5px;
  width: 20px;
  height: 30px;
  background-color: #AAA;
  z-index: 1;
}
container main > .asideBtnLeft .arrows, container main > .asideBtnRight .arrows {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../images/misc/application/arrows_white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px;
}
container main > .asideBtnLeft.asideBtnLeft, container main > .asideBtnRight.asideBtnLeft {
  left: 0px;
}
container main > .asideBtnLeft.asideBtnLeft .arrows, container main > .asideBtnRight.asideBtnLeft .arrows {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
container main > .asideBtnLeft.asideBtnRight, container main > .asideBtnRight.asideBtnRight {
  right: 0px;
}
container main > .asideBtnLeft.asideBtnRight .arrows, container main > .asideBtnRight.asideBtnRight .arrows {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
container main > .asideBtnLeft:hover, container main > .asideBtnRight:hover {
  cursor: pointer;
  background-color: #999;
}
container main aside {
  display: none;
  position: relative;
  min-width: 300px;
  max-width: 300px;
  height: 100;
  background-color: #999;
  z-index: 2;
}
container main aside.show {
  display: block;
}
container main aside > .asideBtnLeft, container main aside > .asideBtnRight {
  position: absolute;
  display: block;
  top: 5px;
  width: 20px;
  height: 30px;
  background-color: #FFF;
}
container main aside > .asideBtnLeft .arrows, container main aside > .asideBtnRight .arrows {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../images/misc/application/arrows.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px;
}
container main aside > .asideBtnLeft.asideBtnLeft, container main aside > .asideBtnRight.asideBtnLeft {
  right: 5px;
}
container main aside > .asideBtnLeft.asideBtnLeft .arrows, container main aside > .asideBtnRight.asideBtnLeft .arrows {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
container main aside > .asideBtnLeft.asideBtnRight, container main aside > .asideBtnRight.asideBtnRight {
  left: 5px;
}
container main aside > .asideBtnLeft.asideBtnRight .arrows, container main aside > .asideBtnRight.asideBtnRight .arrows {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
container main aside > .asideBtnLeft:hover, container main aside > .asideBtnRight:hover {
  cursor: pointer;
  background-color: #EEE;
}
container main aside .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 5px 5px 0px 5px;
}
container main aside .container .titleContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5px;
          column-gap: 5px;
  width: calc(100% - 25px);
  min-height: 30px;
  max-height: 30px;
  line-height: 30px;
  font-weight: 600;
  text-align: center;
  overflow: hidden;
}
container main aside .container .titleContainer .title {
  width: 100%;
  padding-left: 5px;
  background-color: #FFF;
  font-weight: 600;
  overflow: hidden;
}
container main aside .container .titleContainer .addBtn {
  width: 25px;
  background-color: #FFF;
  font-weight: 600;
  overflow: hidden;
  font-size: 20px;
  color: #777;
}
container main aside .container .titleContainer .addBtn:hover {
  cursor: pointer;
  background-color: #EEE;
  text-decoration: none;
}
container main aside .container .search {
  position: relative;
  grid-column-gap: 5px;
  width: 100%;
  background-color: #FFF;
}
container main aside .container .search input {
  width: calc(100% - 30px);
  height: 30px;
}
container main aside .container .search .searchBtn {
  position: absolute;
  top: 0px;
  right: 0px;
  padding-left: 5px;
  padding-right: 5px;
  display: block;
  width: 30px;
  height: 30px;
  background-color: #FFF;
  cursor: pointer;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
container main aside .container .search .searchBtn .searchImg {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../images/misc/application/search.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px;
}
container main aside .container .search .searchBtn .searchImg:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
container main aside .container .content {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
container main aside .container .content.white {
  background-color: #FFF;
}
container main aside .container .content a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0px;
  width: 100%;
  height: auto;
  padding: 5px;
  background-color: #FFF;
  margin-bottom: 5px;
  font-size: 13px;
}
container main aside .container .content a * {
  font-size: 13px;
}
container main aside .container .content a:hover {
  text-decoration: none;
  background-color: #DADADA !important;
}
container main aside .container .content a.active {
  background-color: #9AD6FF;
}
container main aside .container .content a > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  float: left;
  width: 100%;
  text-align: center;
}
container main aside .container .content a > div div {
  width: 100%;
}
container main aside .container .content a > div div:last-child {
  text-align: right;
}
container main aside .container .content a > div div:first-child {
  text-align: left;
}
container main aside.left .title {
  left: 10px;
}
container main aside.right .container .title {
  margin-left: 25px;
}
container main section {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 10px 25px;
  background-color: #FFF;
  z-index: 0;
}
container main section.show {
  display: block;
}
container main section.noPadding {
  padding: 0px !important;
}
container main section .box {
  position: relative;
}
container footer {
  display: none;
  width: 100%;
  min-height: 40px;
  max-height: 40px;
  padding: 5px;
  text-align: right;
  overflow: hidden;
  background-color: #DDD;
  border-top: 1px solid #999;
}
container footer.show {
  display: block;
}
container footer button, container footer .formfield {
  margin-left: 5px;
  margin-right: 5px;
}
container footer button:first-of-type, container footer .formfield:first-of-type {
  margin-left: 0px;
}
container footer button:last-of-type, container footer .formfield:last-of-type {
  margin-right: 10px;
}
container footer button {
  width: auto;
  min-width: 100px;
}

.buttons-center,
.buttons-center-10,
.buttons-center-20 {
  display: block;
  text-align: center;
}
.buttons-center.buttons-center-10,
.buttons-center-10.buttons-center-10,
.buttons-center-20.buttons-center-10 {
  padding-top: 10px;
}
.buttons-center.buttons-center-20,
.buttons-center-10.buttons-center-20,
.buttons-center-20.buttons-center-20 {
  padding-top: 20px;
}
.buttons-center button,
.buttons-center-10 button,
.buttons-center-20 button {
  margin-right: 5px;
}
.buttons-center button:last-of-type,
.buttons-center-10 button:last-of-type,
.buttons-center-20 button:last-of-type {
  margin-right: 0px !important;
}

button {
  width: 100%;
  height: 30px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 0px;
  max-width: 160px;
  color: #FFF;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  outline: none;
}
button:active, button:hover, button:focus {
  outline: none;
}
button.autoWidth {
  width: auto !important;
  max-width: none !important;
}
button.noBorder {
  border: none !important;
}
button.fontDarkLight {
  color: #000 !important;
}
button.fontDarkLight:hover {
  color: #FFF !important;
}
button.black {
  color: #FFF;
  border: 1px solid #000;
  background-color: #000;
}
button.black:hover {
  color: #000;
  background-color: #FFF;
}
button.whiteBlack {
  color: #000;
  border: 1px solid #000;
  background-color: #FFF;
}
button.whiteBlack:hover {
  color: #FFF;
  background-color: #000;
}
button.grey {
  color: #FFF;
  border: 1px solid #777777;
  background-color: #777777;
}
button.grey:hover {
  color: #000;
  background-color: #FFF;
}
button.whiteGrey {
  color: #000;
  border: 1px solid #777777;
  background-color: #FFF;
}
button.whiteGrey:hover {
  color: #FFF;
  background-color: #777777;
}
button.red {
  color: #FFF;
  border: 1px solid #b30c0c;
  background-color: #b30c0c;
}
button.red:hover {
  color: #b30c0c;
  background-color: #FFF;
}
button.whiteRed {
  color: #b30c0c;
  border: 1px solid #b30c0c;
  background-color: #FFF;
}
button.whiteRed:hover {
  color: #FFF;
  background-color: #b30c0c;
}
button.redDark {
  color: #FFF;
  border: 1px solid #7a1a1a;
  background-color: #7a1a1a;
}
button.redDark:hover {
  color: #7a1a1a;
  background-color: #FFF;
}
button.whiteRedDark {
  color: #7a1a1a;
  border: 1px solid #7a1a1a;
  background-color: #FFF;
}
button.whiteRedDark:hover {
  color: #FFF;
  background-color: #7a1a1a;
}
button.green {
  color: #FFF;
  border: 1px solid #2ba31d;
  background-color: #2ba31d;
}
button.green:hover {
  color: #2ba31d;
  background-color: #FFF;
}
button.whiteGreen {
  color: #2ba31d;
  border: 1px solid #2ba31d;
  background-color: #FFF;
}
button.whiteGreen:hover {
  color: #FFF;
  background-color: #2ba31d;
}
button.greenDark {
  color: #FFF;
  border: 1px solid #1a7a28;
  background-color: #1a7a28;
}
button.greenDark:hover {
  color: #1a7a28;
  background-color: #FFF;
}
button.whiteGreenDark {
  color: #1a7a28;
  border: 1px solid #1a7a28;
  background-color: #FFF;
}
button.whiteGreenDark:hover {
  color: #FFF;
  background-color: #1a7a28;
}
button.blue {
  color: #FFF;
  border: 1px solid #0c4fb3;
  background-color: #0c4fb3;
}
button.blue:hover {
  color: #0c4fb3;
  background-color: #FFF;
}
button.whiteBlue {
  color: #0c4fb3;
  border: 1px solid #0c4fb3;
  background-color: #FFF;
}
button.whiteBlue:hover {
  color: #FFF;
  background-color: #0c4fb3;
}
button.blueDark {
  color: #FFF;
  border: 1px solid #1a307a;
  background-color: #1a307a;
}
button.blueDark:hover {
  color: #1a307a;
  background-color: #FFF;
}
button.whiteBlueDark {
  color: #1a307a;
  border: 1px solid #1a307a;
  background-color: #FFF;
}
button.whiteBlueDark:hover {
  color: #FFF;
  background-color: #1a307a;
}
button.yellow {
  color: #FFF;
  border: 1px solid #FF9800;
  background-color: #FF9800;
}
button.yellow:hover {
  color: #FF9800;
  background-color: #FFF;
}
button.whiteYellow {
  color: #FF9800;
  border: 1px solid #FF9800;
  background-color: #FFF;
}
button.whiteYellow:hover {
  color: #FFF;
  background-color: #FF9800;
}
button.yellowDark {
  color: #FFF;
  border: 1px solid #d18f13;
  background-color: #d18f13;
}
button.yellowDark:hover {
  color: #d18f13;
  background-color: #FFF;
}
button.whiteYellowDark {
  color: #d18f13;
  border: 1px solid #d18f13;
  background-color: #FFF;
}
button.whiteYellowDark:hover {
  color: #FFF;
  background-color: #d18f13;
}
button.turquoise {
  color: #FFF;
  border: 1px solid #1A6C7A;
  background-color: #1A6C7A;
}
button.turquoise:hover {
  color: #1A6C7A;
  background-color: #FFF;
}
button.whiteTurquoise {
  color: #1A6C7A;
  border: 1px solid #1A6C7A;
  background-color: #FFF;
}
button.whiteTurquoise:hover {
  color: #FFF;
  background-color: #1A6C7A;
}

.dialogue, .dialogue_confirm {
  display: block;
  width: 100%;
  min-height: 30px;
}
.dialogue span, .dialogue_confirm span {
  line-height: 30px;
  font-weight: bold;
}
.dialogue span > p, .dialogue_confirm span > p {
  line-height: normal !important;
  max-height: 500px;
  overflow-y: scroll;
}
.dialogue span > p span, .dialogue_confirm span > p span {
  line-height: normal !important;
}
.dialogue button, .dialogue_confirm button {
  float: right;
}
.dialogue button.top, .dialogue_confirm button.top {
  position: absolute;
  top: 10px;
  right: 10px;
}

/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

form.narrow {
  max-width: 500px;
}
form button[type="submit"] {
  margin-top: 30px;
}

label {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.inputGroup {
  display: block;
  margin-bottom: 15px;
}
.inputGroup b {
  display: block;
  width: 100%;
}

input[readonly] {
  color: #7bad89;
}

.form-fields-inline {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 5px;
}

.form-field {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 5px;
  overflow: visible;
}
.form-field.noMargin {
  margin: 0px;
}
.form-field.noBorder input:not([type="file"]), .form-field.noBorder textarea, .form-field.noBorder select {
  border: none !important;
}
.form-field.borderBottom input {
  border-style: none none solid none;
}
.form-field.borderNone input {
  border-style: none;
}
.form-field ul.dropdownList {
  display: none;
  position: absolute;
  top: calc($inputHeight - 10px);
  z-index: 1;
  width: calc(100% - 10px);
  margin-left: 5px;
  background-color: #FFF;
  padding-top: 5px;
  border: 1px solid #BBBBBB;
  border-top: none !important;
  max-height: calc(calc(35px * 4) + 10px);
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 10;
}
.form-field ul.dropdownList li {
  float: left;
  width: 100%;
  line-height: 20px;
  padding: 3px 5px;
  border-bottom: 1px solid #CCC;
  cursor: pointer;
}
.form-field ul.dropdownList li.dropdownActive {
  background-color: #D0D2D3;
}
.form-field ul.dropdownList li.dropdownNoResults {
  cursor: default;
}
.form-field ul.dropdownList li:hover {
  background-color: #EEEEEE;
}
.form-field ul.dropdownList li:last-of-type {
  border-bottom: none !important;
}
.form-field input[type="text"] + label, .form-field textarea + label {
  pointer-events: none;
}
.form-field textarea + label {
  position: absolute;
  display: block;
  top: 4px;
  background-color: #FFF;
  font-size: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 5px;
  padding: 0px 5px;
  color: #333;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: 0.1s all;
  transition: 0.1s all;
}
.form-field input:not([type="file"]), .form-field textarea, .form-field select {
  position: relative;
  display: block;
  width: 100%;
  height: 35px;
  border-style: solid;
  border-color: #BBBBBB;
  border-width: 1px;
  text-indent: 10px;
  border-radius: 0px;
  font-size: 12px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #FFF;
}
.form-field input:not([type="file"]):not(textarea) + label, .form-field textarea:not(textarea) + label, .form-field select:not(textarea) + label {
  position: absolute;
  display: block;
  top: 0px;
  background-color: #FFF;
  font-size: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 5px;
  padding: 0px 5px;
  color: #333;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: 0.1s all;
  transition: 0.1s all;
  z-index: 2;
}
.form-field input:not([type="file"]).highlight_red, .form-field textarea.highlight_red, .form-field select.highlight_red {
  border-color: #b30c0c !important;
  border-width: 1.5px;
}
.form-field input:not([type="file"]).highlight_green, .form-field textarea.highlight_green, .form-field select.highlight_green {
  border-color: #2ba31d !important;
  border-width: 1.5px;
}
.form-field input:not([type="file"]).highlight_blue, .form-field textarea.highlight_blue, .form-field select.highlight_blue {
  border-color: #0c4fb3 !important;
  border-width: 1.5px;
}
.form-field input:not([type="file"]).highlight_yellow, .form-field textarea.highlight_yellow, .form-field select.highlight_yellow {
  border-color: #FF9800 !important;
  border-width: 1.5px;
}
.form-field input:not([type="file"])[type="radio"], .form-field input:not([type="file"])[type="checkbox"], .form-field textarea[type="radio"], .form-field textarea[type="checkbox"], .form-field select[type="radio"], .form-field select[type="checkbox"] {
  display: none;
}
.form-field input:not([type="file"])[type="radio"] + label, .form-field input:not([type="file"])[type="checkbox"] + label, .form-field textarea[type="radio"] + label, .form-field textarea[type="checkbox"] + label, .form-field select[type="radio"] + label, .form-field select[type="checkbox"] + label {
  cursor: pointer;
  position: relative;
  top: 0px !important;
  width: 100%;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  height: 35px;
  line-height: 35px;
  margin-left: 0px;
  z-index: 2;
}
.form-field input:not([type="file"])[type="radio"] + label::before, .form-field input:not([type="file"])[type="checkbox"] + label::before, .form-field textarea[type="radio"] + label::before, .form-field textarea[type="checkbox"] + label::before, .form-field select[type="radio"] + label::before, .form-field select[type="checkbox"] + label::before {
  float: left;
  content: "";
  width: 20px;
  height: 35px;
  padding-right: 10px;
  background-position: left center;
  background-size: 16px;
  background-repeat: no-repeat;
}
.form-field input:not([type="file"])[type="radio"] + label:hover, .form-field input:not([type="file"])[type="checkbox"] + label:hover, .form-field textarea[type="radio"] + label:hover, .form-field textarea[type="checkbox"] + label:hover, .form-field select[type="radio"] + label:hover, .form-field select[type="checkbox"] + label:hover {
  background-color: #EEEEEE;
}
.form-field input:not([type="file"])[type="radio"] + label::before, .form-field textarea[type="radio"] + label::before, .form-field select[type="radio"] + label::before {
  background-image: url("../images/misc/application/radio_false.svg");
}
.form-field input:not([type="file"])[type="radio"]:checked + label::before, .form-field textarea[type="radio"]:checked + label::before, .form-field select[type="radio"]:checked + label::before {
  background-image: url("../images/misc/application/radio_true.svg");
}
.form-field input:not([type="file"])[type="checkbox"] + label::before, .form-field textarea[type="checkbox"] + label::before, .form-field select[type="checkbox"] + label::before {
  background-image: url("../images/misc/application/checkbox_false.svg");
}
.form-field input:not([type="file"])[type="checkbox"]:checked + label::before, .form-field textarea[type="checkbox"]:checked + label::before, .form-field select[type="checkbox"]:checked + label::before {
  background-image: url("../images/misc/application/checkbox_true.svg");
}
.form-field input:not([type="file"])::-webkit-input-placeholder, .form-field textarea::-webkit-input-placeholder, .form-field select::-webkit-input-placeholder {
  font-size: 12px;
  color: #CCC;
}
.form-field input:not([type="file"]):-ms-input-placeholder, .form-field textarea:-ms-input-placeholder, .form-field select:-ms-input-placeholder {
  font-size: 12px;
  color: #CCC;
}
.form-field input:not([type="file"])::-ms-input-placeholder, .form-field textarea::-ms-input-placeholder, .form-field select::-ms-input-placeholder {
  font-size: 12px;
  color: #CCC;
}
.form-field input:not([type="file"])::placeholder, .form-field textarea::placeholder, .form-field select::placeholder {
  font-size: 12px;
  color: #CCC;
}
.form-field input:not([type="file"]):focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-width: 1.5px;
}
.form-field input:not([type="file"]).error, .form-field textarea.error, .form-field select.error {
  border-color: #FF0004;
}
.form-field input:not([type="file"]).error + label, .form-field textarea.error + label, .form-field select.error + label {
  color: #FF0004;
}
.form-field input[type="file"] {
  display: none;
}
.form-field input[type="file"] + .label {
  position: relative;
  display: block;
  width: 100%;
  min-height: 35px;
  max-height: 35px;
  border: 1px solid #BBBBBB;
  background-color: #FFF;
}
.form-field input[type="file"] + .label button {
  position: absolute;
  display: block;
  top: 0px;
  left: 0px;
  width: 120px;
  height: 100%;
  border: none !important;
  border-right: 1px solid #BBBBBB !important;
}
.form-field input[type="file"] + .label button:hover {
  border: none !important;
  border-right: 1px solid #000 !important;
}
.form-field input[type="file"] + .label .fileName {
  position: absolute;
  display: block;
  top: 0px;
  left: 120px;
  width: calc(100% - 120px);
  height: 100%;
  line-height: 35px;
  padding-left: 10px;
  overflow: hidden;
}
.form-field input[type="file"] + .label .fileSize {
  position: absolute;
  display: block;
  top: 0px;
  right: 0px;
  width: auto;
  height: 100%;
  line-height: 35px;
  padding-right: 10px;
  text-align: right;
  font-style: italic;
  color: #BBBBBB;
  background-color: #FFF;
  font-size: 12px;
  overflow: hidden;
}
.form-field input[type="file"].error + .label {
  border-color: #FF0004;
}
.form-field textarea {
  padding: 5px;
  text-indent: 0px !important;
  resize: none;
  margin: 5px 0px 0px 0px;
}
.form-field.floating textarea + label {
  font-size: 12px;
  top: 19px;
}
.form-field.floating textarea:focus::-webkit-input-placeholder, .form-field.floating textarea:not(:placeholder-shown)::-webkit-input-placeholder {
  color: #CCC;
  font-size: 12px;
}
.form-field.floating textarea:focus:-ms-input-placeholder, .form-field.floating textarea:not(:placeholder-shown):-ms-input-placeholder {
  color: #CCC;
  font-size: 12px;
}
.form-field.floating textarea:focus::-ms-input-placeholder, .form-field.floating textarea:not(:placeholder-shown)::-ms-input-placeholder {
  color: #CCC;
  font-size: 12px;
}
.form-field.floating textarea:focus::placeholder, .form-field.floating textarea:not(:placeholder-shown)::placeholder {
  color: #CCC;
  font-size: 12px;
}
.form-field.floating textarea:focus + label, .form-field.floating textarea:not(:placeholder-shown) + label {
  top: 4px;
  background-color: #FFF;
  font-size: 12px;
}
.form-field.floating input::-webkit-input-placeholder, .form-field.floating textarea::-webkit-input-placeholder {
  color: transparent;
}
.form-field.floating input:-ms-input-placeholder, .form-field.floating textarea:-ms-input-placeholder {
  color: transparent;
}
.form-field.floating input::-ms-input-placeholder, .form-field.floating textarea::-ms-input-placeholder {
  color: transparent;
}
.form-field.floating input::placeholder, .form-field.floating textarea::placeholder {
  color: transparent;
}
.form-field.floating input:not(textarea) + label, .form-field.floating textarea:not(textarea) + label {
  font-size: 12px;
  top: calc(35px / 2);
}
.form-field.floating input:focus::-webkit-input-placeholder, .form-field.floating input:not(:placeholder-shown)::-webkit-input-placeholder, .form-field.floating textarea:focus::-webkit-input-placeholder, .form-field.floating textarea:not(:placeholder-shown)::-webkit-input-placeholder {
  color: #CCC;
  font-size: 12px;
}
.form-field.floating input:focus:-ms-input-placeholder, .form-field.floating input:not(:placeholder-shown):-ms-input-placeholder, .form-field.floating textarea:focus:-ms-input-placeholder, .form-field.floating textarea:not(:placeholder-shown):-ms-input-placeholder {
  color: #CCC;
  font-size: 12px;
}
.form-field.floating input:focus::-ms-input-placeholder, .form-field.floating input:not(:placeholder-shown)::-ms-input-placeholder, .form-field.floating textarea:focus::-ms-input-placeholder, .form-field.floating textarea:not(:placeholder-shown)::-ms-input-placeholder {
  color: #CCC;
  font-size: 12px;
}
.form-field.floating input:focus::placeholder, .form-field.floating input:not(:placeholder-shown)::placeholder, .form-field.floating textarea:focus::placeholder, .form-field.floating textarea:not(:placeholder-shown)::placeholder {
  color: #CCC;
  font-size: 12px;
}
.form-field.floating input:focus:not(textarea) + label, .form-field.floating input:not(:placeholder-shown):not(textarea) + label, .form-field.floating textarea:focus:not(textarea) + label, .form-field.floating textarea:not(:placeholder-shown):not(textarea) + label {
  top: 0px;
  background-color: #FFF;
  font-size: 12px;
}
.form-field.center input:not([type="file"]), .form-field.center textarea, .form-field.center select {
  text-align: center !important;
  text-indent: 0px !important;
}
.form-field.center input:not([type="file"]) + label, .form-field.center textarea + label, .form-field.center select + label {
  margin: 0px !important;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.form-field.center select {
  text-align: center !important;
  text-align-last: center !important;
  -moz-text-align-last: center !important;
  text-indent: 0px !important;
}
.form-field.options {
  display: block;
  width: 100%;
}
.form-field.options .buttons {
  float: right;
  width: auto;
}
.form-field.options .buttons a {
  float: left;
  margin: 0px !important;
}
.form-field.options .buttons a.img {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
  -webkit-transition: 0.05s all;
  transition: 0.05s all;
}
.form-field.options .buttons a.img[rel=""]:hover {
  cursor: default;
}
.form-field.options .buttons a.img[rel="add"] {
  background-image: url("../images/icons/application/add.png");
}
.form-field.options .buttons a.img[rel="add_above"] {
  background-image: url("../images/icons/application/add_above.png");
}
.form-field.options .buttons a.img[rel="add_below"] {
  background-image: url("../images/icons/application/add_below.png");
}
.form-field.options .buttons a.img[rel="calculate"] {
  background-image: url("../images/icons/application/calculate.png");
}
.form-field.options .buttons a.img[rel="delete"] {
  background-image: url("../images/icons/application/delete.png");
}
.form-field.options .buttons a.img[rel="default"] {
  background-image: url("../images/icons/application/default.png");
}
.form-field.options .buttons a.img[rel="edit"] {
  background-image: url("../images/icons/application/edit.png");
}
.form-field.options .buttons a.img[rel="lock"] {
  background-image: url("../images/icons/application/lock.png");
}
.form-field.options .buttons a.img[rel="security"] {
  background-image: url("../images/icons/application/security.png");
}
.form-field.options .buttons a.img[rel="upload"] {
  background-image: url("../images/icons/application/upload.png");
}
.form-field.options .buttons a.img[rel="view"] {
  background-image: url("../images/icons/application/view.png");
}
.form-field.options .buttons a.img[rel="aircraft"] {
  background-image: url("../images/icons/application/aircraft.png");
  background-size: 18px !important;
}
.form-field.options .buttons a.img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.form-field .default {
  position: absolute;
  display: block;
  top: 0px;
  right: 0px;
  width: 35px;
  height: 35px;
  background-image: url("../images/misc/application/settings.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
  -webkit-transition: 0.1s all;
  transition: 0.1s all;
  z-index: 1;
}
.form-field .default + input:not([type="file"]), .form-field .default textarea, .form-field .default select {
  padding-right: 25px;
}
.form-field .default:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  cursor: pointer;
}
.form-field .icons {
  position: absolute;
  top: 0px;
  right: 5px;
  margin-left: 0px;
  padding-left: 0px;
}
.form-field .icons .icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 35px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
  margin: 0px;
}
.form-field .icons .icon[rel="add"] {
  background-image: url("../images/icons/application/add.png");
}
.form-field .icons .icon[rel="add_above"] {
  background-image: url("../images/icons/application/add_above.png");
}
.form-field .icons .icon[rel="add_below"] {
  background-image: url("../images/icons/application/add_below.png");
}
.form-field .icons .icon[rel="calculate"] {
  background-image: url("../images/icons/application/calculate.png");
}
.form-field .icons .icon[rel="delete"] {
  background-image: url("../images/icons/application/delete.png");
}
.form-field .icons .icon[rel="default"] {
  background-image: url("../images/icons/application/default.png");
}
.form-field .icons .icon[rel="edit"] {
  background-image: url("../images/icons/application/edit.png");
}
.form-field .icons .icon[rel="lock"] {
  background-image: url("../images/icons/application/lock.png");
}
.form-field .icons .icon[rel="security"] {
  background-image: url("../images/icons/application/security.png");
}
.form-field .icons .icon[rel="upload"] {
  background-image: url("../images/icons/application/upload.png");
}
.form-field .icons .icon[rel="view"] {
  background-image: url("../images/icons/application/view.png");
}
.form-field .icons .icon[rel="save"] {
  background-image: url("../images/icons/application/save.png");
}
.form-field .icons .icon[rel="reload"] {
  background-image: url("../images/icons/application/refresh.png");
}
.form-field .icons .icon[rel="foreflight"] {
  background-image: url("../images/icons/application/aircraft.png");
}
.form-field .icons .icon:hover {
  cursor: pointer;
}

@-webkit-keyframes rotate {
  form {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  form {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.inlineAddSection {
  display: block;
  width: 100%;
  margin-top: 10px;
}
.inlineAddSection .inlineAddSectionBtn {
  text-align: center;
}
.inlineAddSection .inlineAddSectionBtn .button {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../images/misc/application/exitBtnBold.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.inlineAddSection .inlineAddSectionBtn .button:hover {
  -webkit-transform: rotate(45deg) scale(1.2);
          transform: rotate(45deg) scale(1.2);
  cursor: pointer;
}
.inlineAddSection .inlineAddSectionBtn .button:focus {
  outline: none;
}

#form_new_overlay {
  position: fixed;
  display: none;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.73);
  z-index: 1001;
}
#form_new_overlay #form_new {
  position: fixed;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 400px;
  max-width: 100% !important;
  max-height: 100%;
  padding: 20px;
  overflow: scroll;
  background-color: #FFF;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px;
  table-layout: fixed;
}
table td, table th {
  text-align: left;
  padding: 2px 5px;
  vertical-align: top;
  background-color: #FFF;
}
table td.noPadding, table th.noPadding {
  padding: 0px !important;
}
table tr:first-of-type {
  z-index: 1;
}
table tr:first-of-type td, table tr:first-of-type th {
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
}
table td:first-child,
table th:first-child {
  border-left: 1px solid #999;
}
table td, table th {
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
}
table.autoWidth {
  table-layout: auto !important;
}
table.noPadding td, table.noPadding th {
  padding: 0px !important;
}
table.smart th, table.smart td {
  border-color: #FFF !important;
}
table.smart tr:first-child th, table.smart tr:first-child td {
  background-color: #DDD !important;
  font-weight: 600;
}
table.smart tr:nth-of-type(even) th, table.smart tr:nth-of-type(even) td {
  background-color: #F6F6F6;
}
table.smart tr:nth-of-type(odd) th, table.smart tr:nth-of-type(odd) td {
  background-color: #EEE;
}
table.smart-th-td th, table.smart-th-td td {
  border-color: #FFF !important;
}
table.smart-th-td th {
  background-color: #DDD !important;
  font-weight: 600 !important;
}
table.smart-th-td td {
  background-color: #F6F6F6 !important;
  font-weight: 400 !important;
}
table.smart-white th, table.smart-white td {
  border-color: #FFF !important;
}
table.smart-white tr:first-child th, table.smart-white tr:first-child td {
  background-color: #DDD !important;
  font-weight: 600;
}
table .form-field {
  margin: 0px !important;
}
table .form-field input {
  height: 23px !important;
}
table .form-field select {
  height: 21px !important;
}
table .form-field input[type="checkbox"] + label {
  height: 21px !important;
  line-height: 21px !important;
  padding: 0px;
}
table .form-field input[type="checkbox"] + label:hover {
  background-color: transparent !important;
}
table .form-field input[type="checkbox"] + label::before {
  height: 21px !important;
  background-size: 10px;
}

.tableContainer {
  position: relative;
  display: block;
  overflow: auto;
  width: 100%;
  height: auto;
  border: 1px solid #000;
}
.tableContainer table tr:first-child td, .tableContainer table tr:first-child th {
  border-top: none !important;
}
.tableContainer table td:first-child,
.tableContainer table th:first-child {
  border-left: none;
}
.tableContainer table tr:last-child td, .tableContainer table tr:last-child th {
  border-bottom: none !important;
}
.tableContainer table td:last-child,
.tableContainer table th:last-child {
  border-right: none;
}
.tableContainer table.stickyTop tr:first-of-type {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
}
.tableContainer table.stickyLeft th:first-child,
.tableContainer table.stickyLeft td:first-child {
  position: -webkit-sticky;
  position: sticky;
  left: 0px;
}
.tableContainer table.stickyLeft th:last-child,
.tableContainer table.stickyLeft td:last-child {
  margin-right: -1px;
}
.tableContainer.smart {
  border: none !important;
}
.tableContainer.smart table th, .tableContainer.smart table td {
  border-color: #FFF !important;
}
.tableContainer.smart table tr:first-child th, .tableContainer.smart table tr:first-child td {
  background-color: #DDD !important;
  font-weight: 600;
}
.tableContainer.smart table tr:nth-of-type(even) th, .tableContainer.smart table tr:nth-of-type(even) td {
  background-color: #F6F6F6;
}
.tableContainer.smart table tr:nth-of-type(odd) th, .tableContainer.smart table tr:nth-of-type(odd) td {
  background-color: #EEE;
}
.tableContainer.smart-white th, .tableContainer.smart-white td {
  border-color: #FFF !important;
}
.tableContainer.smart-white tr:first-child th, .tableContainer.smart-white tr:first-child td {
  background-color: #DDD !important;
  font-weight: 600;
}

.ui-datepicker-calendar td, .ui-datepicker-calendar th {
  border: none !important;
}

@media screen and (min-width: 1001px) {
  nav {
    width: 50px;
  }
  nav #navHeader .img {
    display: none;
  }
  nav #navHeader .img#logo {
    display: block;
  }
  nav ul li a .text {
    display: none;
  }
  nav ul li ul {
    display: none !important;
  }
  nav ul li .arrow {
    display: none;
  }
  nav:hover {
    width: 300px;
  }
  nav:hover #navHeader .img {
    display: block;
  }
  nav:hover #navHeader .img#menu_btn {
    display: none;
  }
  nav:hover ul li a .text {
    display: block;
  }
  nav:hover ul li .arrow {
    display: block;
  }
  nav:hover ul li .arrow {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  nav:hover ul li .arrow:hover {
    -webkit-transform: rotate(0deg) scale(1.2);
            transform: rotate(0deg) scale(1.2);
  }
  nav:hover ul li.expand .arrow {
    -webkit-transform: rotate(90deg) !important;
            transform: rotate(90deg) !important;
  }
  nav:hover ul li.expand .arrow:hover {
    -webkit-transform: rotate(90deg) scale(1.2) !important;
            transform: rotate(90deg) scale(1.2) !important;
  }
  nav:hover ul li.expand ul {
    display: block !important;
  }

  container {
    top: 0px;
    left: 50px;
  }
}
@media screen and (max-width: 1000px) {
  nav {
    width: 100%;
    height: 40px;
  }
  nav > ul {
    display: none;
  }
  nav.show {
    height: auto;
    bottom: 0px;
  }
  nav.show > ul {
    display: block;
  }
  nav.show ul li.expand .arrow {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  nav.show ul li.expand .arrow:hover {
    -webkit-transform: rotate(90deg) scale(1.2);
            transform: rotate(90deg) scale(1.2);
  }
  nav.show ul li.expand ul {
    display: block !important;
  }
  nav #navHeader .img:hover {
    -webkit-transform: none !important;
            transform: none !important;
  }

  container {
    top: 40px;
    left: 0px;
  }
  container aside {
    min-width: 100% !important;
    max-width: 100% !important;
  }
  container footer {
    text-align: center;
  }
  container footer button:last-of-type {
    margin-right: 0px;
  }
}
#messagePopup {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: calc(40px + 5px);
  right: 0px;
  width: 300px;
  max-width: 100%;
  max-height: calc(100vh - 10px - (40px * 2)) !important;
  background-color: #FFF;
  overflow: hidden;
  z-index: 1003;
}

#messageOverlay {
  position: fixed;
  display: block;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.73);
  z-index: 1002;
}
#messageOverlay #messageOverlayContainer {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 300px;
  max-width: 100% !important;
  max-height: 300px;
}

#messagePopup > .exitBtn,
#messageOverlayContainer > .exitBtn {
  position: absolute;
  display: block;
  top: 0px;
  right: 0px;
  width: 40px;
  height: 40px;
  background-image: url("../images/misc/application/exitBtnBold_white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
#messagePopup > .exitBtn:hover,
#messageOverlayContainer > .exitBtn:hover {
  cursor: pointer;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
#messagePopup .header,
#messageOverlayContainer .header {
  float: left;
  display: block;
  width: 100%;
  min-height: 40px;
  max-height: 40px;
  line-height: 40px;
  padding-left: 10px;
  padding-right: 40px;
  color: #FFF;
  font-weight: 600;
  overflow: hidden;
}
#messagePopup .content,
#messageOverlayContainer .content {
  float: left;
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
  background-color: #FFF;
  overflow: scroll;
  border-bottom: 1px solid #999;
}
#messagePopup.red,
#messageOverlayContainer.red {
  border-left: 3px solid #7a1a1a;
}
#messagePopup.red .header,
#messageOverlayContainer.red .header {
  background-color: #b30c0c;
}
#messagePopup.green,
#messageOverlayContainer.green {
  border-left: 3px solid #1a7a28;
}
#messagePopup.green .header,
#messageOverlayContainer.green .header {
  background-color: #2ba31d;
}
#messagePopup.blue,
#messageOverlayContainer.blue {
  border-left: 3px solid #1a307a;
}
#messagePopup.blue .header,
#messageOverlayContainer.blue .header {
  background-color: #0c4fb3;
}
#messagePopup.yellow,
#messageOverlayContainer.yellow {
  border-left: 3px solid #d18f13;
}
#messagePopup.yellow .header,
#messageOverlayContainer.yellow .header {
  background-color: #FF9800;
}
#messagePopup#messageOverlayContainer,
#messageOverlayContainer#messageOverlayContainer {
  border: none !important;
}

@media screen and (max-width: 1000px) {
  #messagePopup {
    top: calc((40px * 2) + 5px);
    max-height: calc(100vh - 10px - (40px * 3)) !important;
  }
}
/* CSS Document */
.tabs {
  display: block;
  width: 100%;
}
.tabs > .tabs_menu {
  display: block;
  width: 100%;
  min-height: 30px;
}
.tabs > .tabs_menu > li {
  list-style-type: none;
  float: left;
  width: auto;
  height: 30px;
  line-height: 30px;
  padding: 0px 10px;
  margin-right: 5px;
  background-color: #FFF;
  border-top: 1px solid #CCC;
  border-right: 1px solid #CCC;
  border-bottom: none;
  border-left: 1px solid #CCC;
}
.tabs > .tabs_menu > li.active {
  background-color: #1E4878 !important;
  color: #FFF;
  border: none !important;
}
.tabs > .tabs_menu > li:hover {
  cursor: pointer;
  background-color: #DADADA;
}
.tabs > .tabs_content {
  display: block;
  width: 100%;
  border-top: 3px solid #1E4878;
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  border-left: 1px solid #CCC;
}
.tabs > .tabs_content > li {
  display: none;
  list-style-type: none;
  padding: 5px;
}
.tabs > .tabs_content > li.active {
  display: block;
}

#login {
  position: fixed;
  display: block;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: #1E4878;
}
#login form {
  position: fixed;
  display: block;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 400px;
  max-width: 100%;
  max-height: 100%;
  padding: 20px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #FFF;
  text-align: center;
  -webkit-box-shadow: 1px 1px 10px -2px #000;
          box-shadow: 1px 1px 10px -2px #000;
}
#login form a {
  display: block;
}

.display-block {
  display: block;
  width: 400px;
}

.display-none {
  display: none;
}

.position-top-left {
  position: absolute;
  top: 0px;
  left: 0px;
}

.position-top-right {
  position: absolute;
  top: 0px;
  right: 0px;
}

.position-bottom-right {
  position: absolute;
  bottom: 0px;
  right: 0px;
}

.position-bottom-left {
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.border-transparent {
  border: 1px solid transparent !important;
}

.border-red {
  border: 1px solid red !important;
}

.font-red {
  color: red !important;
}

.font-blue {
  color: blue !important;
}

.font-purple {
  color: purple !important;
}

.font-yellow {
  color: orange !important;
}

.font-green {
  color: green !important;
}

.font-size-5 {
  font-size: 5px !important;
}

.font-size-6 {
  font-size: 6px !important;
}

.font-size-7 {
  font-size: 7px !important;
}

.font-size-8 {
  font-size: 8px !important;
}

.font-size-9 {
  font-size: 9px !important;
}

.font-size-10 {
  font-size: 10px !important;
}

.font-size-11 {
  font-size: 11px !important;
}

.font-size-12 {
  font-size: 12px !important;
}

.font-size-13 {
  font-size: 13px !important;
}

.font-size-14 {
  font-size: 14px !important;
}

.font-size-15 {
  font-size: 15px !important;
}

.font-size-16 {
  font-size: 16px !important;
}

.font-size-17 {
  font-size: 17px !important;
}

.font-size-18 {
  font-size: 18px !important;
}

.font-size-19 {
  font-size: 19px !important;
}

.font-size-20 {
  font-size: 20px !important;
}

.line-through {
  text-decoration: line-through !important;
}

.bold {
  font-weight: 600 !important;
}

.light {
  font-weight: 400 !important;
}

.noHover {
  cursor: default;
}

.box-shaddow-light {
  -webkit-box-shadow: 1px 1px 5px -2px #000;
          box-shadow: 1px 1px 5px -2px #000;
}

.box-shaddow-medium {
  -webkit-box-shadow: 1px 1px 8px -2px #000;
          box-shadow: 1px 1px 8px -2px #000;
}

.box-shaddow-dark {
  -webkit-box-shadow: 1px 1px 10px -1px #000;
          box-shadow: 1px 1px 10px -1px #000;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.width-auto {
  width: auto !important;
}

.width-10 {
  width: 10px !important;
}

.width-20 {
  width: 20px !important;
}

.width-30 {
  width: 30px !important;
}

.width-40 {
  width: 40px !important;
}

.width-50 {
  width: 50px !important;
}

.width-60 {
  width: 60px !important;
}

.width-70 {
  width: 70px !important;
}

.width-80 {
  width: 80px !important;
}

.width-90 {
  width: 90px !important;
}

.width-100 {
  width: 100px !important;
}

.width-120 {
  width: 120px !important;
}

.width-140 {
  width: 140px !important;
}

.width-160 {
  width: 160px !important;
}

.width-180 {
  width: 180px !important;
}

.width-200 {
  width: 200px !important;
}

.width-220 {
  width: 220px !important;
}

.width-240 {
  width: 240px !important;
}

.width-260 {
  width: 260px !important;
}

.width-280 {
  width: 280px !important;
}

.width-300 {
  width: 300px !important;
}

.width-350 {
  width: 350px !important;
}

.width-400 {
  width: 400px !important;
}

.width-450 {
  width: 450px !important;
}

.width-500 {
  width: 500px !important;
}

.width-600 {
  width: 600px !important;
}

.width-700 {
  width: 700px !important;
}

.width-800 {
  width: 800px !important;
}

.width-900 {
  width: 900px !important;
}

.width-1000 {
  width: 1000px !important;
}

.width-max {
  width: 100% !important;
}

.min-width-auto {
  min-width: auto !important;
}

.min-width-10 {
  min-width: 10px !important;
}

.min-width-20 {
  min-width: 20px !important;
}

.min-width-30 {
  min-width: 30px !important;
}

.min-width-40 {
  min-width: 40px !important;
}

.min-width-50 {
  min-width: 50px !important;
}

.min-width-60 {
  min-width: 60px !important;
}

.min-width-70 {
  min-width: 70px !important;
}

.min-width-80 {
  min-width: 80px !important;
}

.min-width-90 {
  min-width: 90px !important;
}

.min-width-100 {
  min-width: 100px !important;
}

.min-width-120 {
  min-width: 120px !important;
}

.min-width-140 {
  min-width: 140px !important;
}

.min-width-160 {
  min-width: 160px !important;
}

.min-width-180 {
  min-width: 180px !important;
}

.min-width-200 {
  min-width: 200px !important;
}

.min-width-220 {
  min-width: 220px !important;
}

.min-width-240 {
  min-width: 240px !important;
}

.min-width-260 {
  min-width: 260px !important;
}

.min-width-280 {
  min-width: 280px !important;
}

.min-width-300 {
  min-width: 300px !important;
}

.min-width-350 {
  min-width: 350px !important;
}

.min-width-400 {
  min-width: 400px !important;
}

.min-width-450 {
  min-width: 450px !important;
}

.min-width-500 {
  min-width: 500px !important;
}

.min-width-600 {
  min-width: 600px !important;
}

.min-width-700 {
  min-width: 700px !important;
}

.min-width-800 {
  min-width: 800px !important;
}

.min-width-900 {
  min-width: 900px !important;
}

.min-width-1000 {
  min-width: 1000px !important;
}

.min-width-max {
  min-width: 100% !important;
}

.text-align-center {
  text-align: center !important;
}

.text-align-left {
  text-align: left !important;
}

.text-align-right {
  text-align: right !important;
}

.padding-0 {
  padding: 0px !important;
}

.padding-top-0 {
  padding-top: 0px !important;
}

.padding-right-0 {
  padding-right: 0px !important;
}

.padding-bottom-0 {
  padding-bottom: 0px !important;
}

.padding-left-0 {
  padding-left: 0px !important;
}

.padding-1 {
  padding: 1px !important;
}

.padding-top-1 {
  padding-top: 1px !important;
}

.padding-right-1 {
  padding-right: 1px !important;
}

.padding-bottom-1 {
  padding-bottom: 1px !important;
}

.padding-left-1 {
  padding-left: 1px !important;
}

.padding-2 {
  padding: 2px !important;
}

.padding-top-2 {
  padding-top: 2px !important;
}

.padding-right-2 {
  padding-right: 2px !important;
}

.padding-bottom-2 {
  padding-bottom: 2px !important;
}

.padding-left-2 {
  padding-left: 2px !important;
}

.padding-3 {
  padding: 3px !important;
}

.padding-top-3 {
  padding-top: 3px !important;
}

.padding-right-3 {
  padding-right: 3px !important;
}

.padding-bottom-3 {
  padding-bottom: 3px !important;
}

.padding-left-3 {
  padding-left: 3px !important;
}

.padding-4 {
  padding: 4px !important;
}

.padding-top-4 {
  padding-top: 4px !important;
}

.padding-right-4 {
  padding-right: 4px !important;
}

.padding-bottom-4 {
  padding-bottom: 4px !important;
}

.padding-left-4 {
  padding-left: 4px !important;
}

.padding-5 {
  padding: 5px !important;
}

.padding-top-5 {
  padding-top: 5px !important;
}

.padding-right-5 {
  padding-right: 5px !important;
}

.padding-bottom-5 {
  padding-bottom: 5px !important;
}

.padding-left-5 {
  padding-left: 5px !important;
}

.padding-10 {
  padding: 10px !important;
}

.padding-top-10 {
  padding-top: 10px !important;
}

.padding-right-10 {
  padding-right: 10px !important;
}

.padding-bottom-10 {
  padding-bottom: 10px !important;
}

.padding-left-10 {
  padding-left: 10px !important;
}

.padding-15 {
  padding: 15px !important;
}

.padding-top-15 {
  padding-top: 15px !important;
}

.padding-right-15 {
  padding-right: 15px !important;
}

.padding-bottom-15 {
  padding-bottom: 15px !important;
}

.padding-left-15 {
  padding-left: 15px !important;
}

.padding-20 {
  padding: 20px !important;
}

.padding-top-20 {
  padding-top: 20px !important;
}

.padding-right-20 {
  padding-right: 20px !important;
}

.padding-bottom-20 {
  padding-bottom: 20px !important;
}

.padding-left-20 {
  padding-left: 20px !important;
}

.padding-25 {
  padding: 25px !important;
}

.padding-top-25 {
  padding-top: 25px !important;
}

.padding-right-25 {
  padding-right: 25px !important;
}

.padding-bottom-25 {
  padding-bottom: 25px !important;
}

.padding-left-25 {
  padding-left: 25px !important;
}

.padding-30 {
  padding: 30px !important;
}

.padding-top-30 {
  padding-top: 30px !important;
}

.padding-right-30 {
  padding-right: 30px !important;
}

.padding-bottom-30 {
  padding-bottom: 30px !important;
}

.padding-left-30 {
  padding-left: 30px !important;
}

.margin-auto {
  margin: 0px auto !important;
}

.margin-0 {
  margin: 0px !important;
}

.margin-top-0 {
  margin-top: 0px !important;
}

.margin-right-0 {
  margin-right: 0px !important;
}

.margin-bottom-0 {
  margin-bottom: 0px !important;
}

.margin-left-0 {
  margin-left: 0px !important;
}

.margin-5 {
  margin: 5px !important;
}

.margin-top-5 {
  margin-top: 5px !important;
}

.margin-right-5 {
  margin-right: 5px !important;
}

.margin-bottom-5 {
  margin-bottom: 5px !important;
}

.margin-left-5 {
  margin-left: 5px !important;
}

.margin-10 {
  margin: 10px !important;
}

.margin-top-10 {
  margin-top: 10px !important;
}

.margin-right-10 {
  margin-right: 10px !important;
}

.margin-bottom-10 {
  margin-bottom: 10px !important;
}

.margin-left-10 {
  margin-left: 10px !important;
}

.margin-15 {
  margin: 15px !important;
}

.margin-top-15 {
  margin-top: 15px !important;
}

.margin-right-15 {
  margin-right: 15px !important;
}

.margin-bottom-15 {
  margin-bottom: 15px !important;
}

.margin-left-15 {
  margin-left: 15px !important;
}

.margin-20 {
  margin: 20px !important;
}

.margin-top-20 {
  margin-top: 20px !important;
}

.margin-right-20 {
  margin-right: 20px !important;
}

.margin-bottom-20 {
  margin-bottom: 20px !important;
}

.margin-left-20 {
  margin-left: 20px !important;
}

.margin-25 {
  margin: 25px !important;
}

.margin-top-25 {
  margin-top: 25px !important;
}

.margin-right-25 {
  margin-right: 25px !important;
}

.margin-bottom-25 {
  margin-bottom: 25px !important;
}

.margin-left-25 {
  margin-left: 25px !important;
}

.margin-30 {
  margin: 30px !important;
}

.margin-top-30 {
  margin-top: 30px !important;
}

.margin-right-30 {
  margin-right: 30px !important;
}

.margin-bottom-30 {
  margin-bottom: 30px !important;
}

.margin-left-30 {
  margin-left: 30px !important;
}

#loader_overlay {
  position: fixed;
  display: none;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.73);
  z-index: 1001;
}
#loader_overlay #loader {
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  width: 100px;
  height: 100px;
  background-image: url("../images/logo/logo_feathers_white.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-animation: spin_horizontal 2s forwards linear infinite;
          animation: spin_horizontal 2s forwards linear infinite;
}

@-webkit-keyframes spin_horizontal {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  50% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@keyframes spin_horizontal {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  50% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

/*# sourceMappingURL=styles.css.map */