html,
body {
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: var(--grey);
  background: var(--lightBlue);
}

input,
textarea,
select {
  font: inherit;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

td {
  padding: 2px 5px;
  vertical-align: top;
  overflow: hidden;
}

table.holder td {
  padding: 0;
}

table.form td {
  padding: 4px 8px;
  vertical-align: middle;
  text-align: left;
}

.voile {
  opacity: 0.5;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  background: rgba(30, 20, 30, 0.5);
}

input[type=text],
input[type=password] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 2px;
  border: 1px solid #ccc;
}

input[type=text]:focus,
input[type=password]:focus {
  border-color: rgba(0, 68, 137, 0.5);
  outline: none;
}

input[type=number].nospin::-webkit-outer-spin-button,
input[type=number].nospin::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number].nospin {
  appearance: textfield;
}

.menuTab {
  width: 230px;
  box-sizing: border-box;
  display: inline-block;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.5);
  color: #333;
  height: 34px;
  padding: 0 12px 0 8px;
  border-radius: 6px 0 0 6px;
  overflow: hidden;
  text-transform: uppercase;
  border-width: 1px 0 1px 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.6);
  user-select: none;
}

.menuTab:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.menuTab.selected {
  background-color: rgb(41, 124, 129);
  color: #fff;
}

.cellButton {
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
}

.cellButton:hover,
.cellButton.selected {
  background-color: rgba(41, 124, 129, 0.1);
}

.cellButton.disabled {
  cursor: default;
}

.cellButton.disabled:hover,
.cellButton.disabled.selected {
  background-color: transparent;
}

.violetButton {
  display: inline-block;
  cursor: pointer;
  background-color: rgb(0, 68, 137);
  color: #fff;
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  border-radius: 6px;
  overflow: hidden;
  text-transform: uppercase;
}

.violetButton:hover {
  background-color: rgba(0, 87, 174, 1);
}

.violetButton.disabled,
.violetButton.disabled:hover {
  background-color: rgba(0, 68, 137, 0.5);
  cursor: default;
}

.violetButton.light {
  display: block;
  border-radius: 0;
  height: auto;
  line-height: 22px;
  background-color: transparent;
  color: rgba(0, 68, 137, 1);
}

.violetButton.light:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.violetButton.blue {
  display: block;
  border-radius: 0;
  height: auto;
  line-height: 22px;
  color: #fff;
  background-color: rgba(0, 68, 137, 1);
}

.violetButton.blue:hover {
  background-color: rgba(0, 68, 137, 0.8);
}

.violetButton.silver {
  background-color: transparent;
  color: rgba(0, 68, 137, 1);
}

.violetButton.silver:hover {
  background-color: rgba(242, 242, 242, 1);
}

.violetButton.silver.disabled,
.violetButton.silver.disabled:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.violetButton.red {
  background-color: rgba(255, 0, 0, 0.1);
  color: rgba(255, 0, 0, 1);
}

.violetButton.red:hover {
  background-color: rgba(255, 0, 0, 0.2);
}

.scrollable {
  overflow-y: auto;
  overflow-x: hidden;
}

a.blueLink {
  color: #004489;
  text-decoration: none;
}

a.blueLink:hover {
  text-decoration: underline;
}

input.rounded {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 15px;
  border: 1px solid #ccc;
  padding: 6px 10px;
}

.listItem {
  padding: 2px;
  white-space: nowrap;
  overflow: hidden;
}

.listItem.selected {
  background: rgb(222, 222, 222);
}

.listItem:hover,
.listItem.selected:hover {
  background: rgb(202, 202, 202);
}

.tableRow {
  background: rgba(164, 223, 226, 0.04);
}

.tableRow.even {
  background: rgba(164, 223, 226, 0.13);
}

.tableRow:hover {
  background: rgba(164, 223, 226, 0.08);
}

.tableRow.even:hover {
  background: rgba(164, 223, 226, 0.2);
}

.tableRow.selected,
.tableRow.even.selected {
  background: rgba(0, 153, 255, 0.15);
  border-right: 3px solid rgba(0, 153, 255, 1);
}

.svgIcon {
  border: 1px solid #eee;
  border-radius: 4px;
}

.svgIcon.disabled {
  pointer-events: none;
  cursor: default;
}

.svgIcon:not(.disabled):hover {
  background: rgb(242, 242, 242);
  transition: background .4s ease;
}

.svgIcon.selected {
  color: rgb(41, 124, 129);
}

.localiserIcon {
  background-color: transparent;
}

.localiserIcon:hover {
  background-color: rgba(0, 68, 137, 0.8);
  color: white;
}

.localiserIcon.selected {
  background-color: rgba(0, 68, 137, 1);
  color: white;
}

.caseHolder {
  display: inline-block;
  border-radius: 4px;
  border: 1px solid #ccc;
  overflow: hidden;
}

.roundCheckbox {
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 22px;
  border: 1px solid #ccc;
  border-radius: 11px;
  text-align: center;
  background-color: #fff;
}

.roundCheckbox:hover {
  background-color: rgba(0, 68, 137, 0.3);
}

.roundCheckbox.selected {
  border: 1px solid #0099ff;
  background-color: rgba(0, 68, 137, 1);
}

.missionInfo {
  display: inline-block;
  font-size: 14px;
  background-color: rgba(41, 124, 129, 0.1);
  padding: 10px;
  border-radius: 8px;
}

.infoCell div.missionInfo {
  font-size: 14px;
  background-color: rgba(41, 124, 129, 0.047);
  padding: 10px;
  border-radius: 8px;
  height: 100%;
  width: calc(100% - 20px);
}

.toggle {
  overflow: hidden;
  width: 0;
  visibility: hidden;
  transition: width 0.3s ease-in-out, visibility 0.3s linear;
}

.subTabs {
  display: flex;
  margin-bottom: 5px;
  gap: 4px;
  border-bottom: 1px solid rgb(41, 124, 129);
  padding: 6px 0 0 10px;
  font-size: 13px;
  user-select: none;
  background: var(--silver);
}

.subTab {
  padding: 5px 10px;
  border: 1px solid rgb(119, 159, 164);
  border-bottom: 1px solid rgb(41, 124, 129);
  border-radius: 10px 5px 0 0;
  margin-top: 4px;
  background: rgb(245, 248, 249);
  color: rgb(119, 159, 164);
  transform: translateY(1px);
}

.subTab.selected {
  border: 1px solid rgb(41, 124, 129);
  border-bottom-width: 0;
  margin-top: 0;
  background: white;
  color: rgb(41, 124, 129);
}

.subTab:hover {
  margin-top: 0;
  transition: margin-top 500ms ease-out;
}

.tooltip {
  position: relative;
  cursor: help;
}

.tooltip:before,
.tooltip:after {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
  display: block;
}

.tooltip:after {
  border-top: 6px solid transparent;
  border-left: 6px solid rgba(0, 68, 137, .75);
  border-bottom: 6px solid transparent;
  content: '';
  height: 0;
  width: 0;
  top: 9px;
  left: -5px;
}

.tooltip:before {
  background: rgba(0, 68, 137, .75);
  border-radius: 2px;
  color: #fff;
  content: attr(data-title);
  font-size: 14px;
  padding: 6px 10px;
  top: 2px;
  right: calc(100% + 5px);
  box-sizing: border-box;
  width: max-content;
  max-width: 1200px;
  height: auto;
  line-height: 15px;
}

.tooltip:hover:before,
.tooltip:hover:after {
  opacity: 1;
  transition: all 500ms ease-in-out;
}

.filterbutton.active {
  background: white;
  box-shadow: inset 0 0 2px black;
}

.filterbutton.active .label {
  font-weight: bold;
}

.filterbutton:after {
  border-left: var(--triangle-size) solid transparent;
  border-top: var(--triangle-size) solid rgb(0, 0, 0);
  border-right: var(--triangle-size) solid transparent;
  content: '';
  height: 0;
  width: 0;
  position: absolute;
  top: 50%;
  right: var(--triangle-size);
  margin-top: calc(-1 * var(--triangle-size) / 2);
  opacity: 0.4;
}

.filterbutton:hover:after {
  opacity: 1;
  transition: all 500ms ease-in-out;
}

@media print {
  .mainLayout {
    display: none;
  }
}