body {
  height: 100%;
  width: 100%;
  margin: 0px;
  font-family: 'Open Sans', sans-serif;
  background-color: #232323;
  cursor: crosshair;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
  text-align-last: center;
  border: 0px;
}

select:focus {
  outline: 0;
}

li, ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

[contenteditable]:focus {
  outline: 0px solid transparent;
}

/*UI */
.noSel {
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.border {
  border: 1px solid red;
}

.col {
  float: left;
  border: 5px solid #8e8e8e;
  height: 100vh;
  width: 25%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
}

.leftCol {
  float: left;
  height: 100%;
  width: 50%;
}

.rightCol1 {
  float: left;
  height: 100%;
  width: 17.5%;
}

.rightCol2 {
  float: left;
  height: 100%;
  width: 22.5%;
}

.topCol {
  float: left;
  height: 50%;
  width: 50%;
}

.tag {
  cursor: -webkit-default;
  cursor: default;
  background-color: #b7b7b7;
  height: 3.5vw;
  border: 2px solid #3d3d3d;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.tag.dep {
  background-color: #a8dcd5 !important;
}

.tag.arr {
  background-color: #e2e1b9 !important;
}

.b {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.dz {
  overflow: auto;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  flex: 1;
}

.callsign {
  padding-left: .4vw;
  text-align: left;
  font-weight: 700;
  font-size: 1.15vw;
  white-space: nowrap;
}

.sid {
  text-align: right;
  font-size: .75vw;
  padding-top: .35vw;
  padding-right: .3vw;
}

.rwy {
  padding-top: .25vw;
  text-align: center;
  font-weight: 700;
  font-size: 1.35vw;
  background-color: inherit;
}

.ins {
  text-align: center;
  font-weight: 700;
  font-size: 1.35vw;
  background-color: #a0a0a0;
}

.arr {
  background-color: #b7b68a !important;
}

.dep {
  background-color: #79b9b0 !important;
}

.warning {
  animation-name: warningFlash !important;
  animation-duration: .35s;
  animation-iteration-count: infinite;
}

@keyframes warningFlash {
  0% {
    background-color: rgba(200, 28, 28, 100)
  }

  50% {
    background-color: rgba(150, 30, 38, 100)
  }

  100% {
    background-color: rgba(200, 28, 28, 100)
  }
}

.semiConcerned {
  animation-name: semiConcerned !important;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  background-color: rgb(255, 164, 79)
}

@keyframes semiConcerned {
  0% {
    background-color: rgb(255, 164, 79)
  }

  50% {
    background-color: rgb(255, 112, 56)
  }

  100% {
    background-color: rgb(255, 164, 79)
  }
}

.rule {
  text-align: right;
  font-size: .75vw;
  padding-top: .3vw;
  padding-right: .3vw;
}

.type {
  padding-top: .25vw;
  padding-left: .45vw;
  text-align: left;
  font-size: .85vw;
}

.fl {
  float: left;
}

.hl {
  font-size: 1.5vw;
  font-weight: 600;
  background-color: #8e8e8e;
  text-align: center;
  height: 2.5vw;
}

/* FOR RIGHT CLICK MENU */
#ctxMenu {
  display: none;
  z-index: 100;
}

menu {
  position: absolute;
  display: block;
  left: 0px;
  top: 0px;
  height: 20px;
  width: 20px;
  padding: 0;
  margin: 0;
  border: 1px solid;
  background-color: white;
  font-weight: normal;
  white-space: nowrap;
}

menu:hover {
  background-color: #eef;
  font-weight: bold;
}

menu>menu {
  display: block;
  position: relative;
  top: -22px;
  left: 100%;
  width: 75px;
}

menu[title]:before {
  content: attr(title);
}

menu:not([title]):before {
  content: "\2630";
}

/* CUSTOM SCROLLBAR */
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #555;
}

/* MODAL WINDOW */
/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.7);
  /* Black w/ opacity */
}

.modal.fade {
  -webkit-transition: opacity 0.3s ease-in-out;
  opacity: 0;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 60%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.7s;
  animation-name: animatetop;
  animation-duration: 0.7s
}

.modal-image {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 100%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.8s;
  animation-name: animatetop;
  animation-duration: 0.8s
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0
  }

  to {
    top: 0;
    opacity: 1
  }
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0
  }

  to {
    top: 0;
    opacity: 1
  }
}

.modal-header {
  padding: 2px 16px;
  background-color: #4c5159;
  color: white;
}

.modal-body {
  height: 3vw;
}

.v {
  float: left;
  margin-left: 2vw;
}

.fr {
  float: right;
}

.form {
  margin: 0;
}

.field {
  height: 2vw;
  width: 8vw;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.75vw;
}

.first {
  width: 70%;
  padding: 0;
}

.options {
  margin-top: 2.85%;
  margin-right: 20%;
  font-size: .7vw;
}

#arrowIcon {
  height: 1.25vw;
  transition: 400ms;
}

#arrowIcon.is-active {
  transform: rotate(180deg);
}

.options:hover {
  cursor: pointer;
  opacity: 0.66;
}

#optionsMenu {
  overflow: hidden;
  height: 0vw;
  background: white;
  transition: 400ms;
}

#optionsMenu.is-active {
  height: 4vw;
}

#status {
  margin-left: 10%;
  margin-top: 25%;
  height: 1.75vw;
  opacity: 0;
}

#status.found {
  opacity: 0.8;
}

#status.notfound {
  opacity: 0.8;
}

.menucontent {}

.subtitle {
  text-align: left;
  font-size: .8vw;
  padding: 0 2vw 0 2vw;
}

.selector {
  text-align: left;
  font-size: .8vw;
}

/* Switch 1 Specific Styles Start */
.box_1 {
  position: relative;
  width: 7vw;
}

.label {
  position: absolute;
  margin: 3px 3px 3px 6px;
}

input[type="checkbox"].switch_1 {
  font-size: 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 2.75vw;
  height: 1.15vw;
  background: #ddd;
  border-radius: 2.3vw;
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

input[type="checkbox"].switch_1:checked {
  background: #09510c;
}

input[type="checkbox"].switch_1:after {
  position: absolute;
  content: "";
  width: 1.15vw;
  height: 1.15vw;
  border-radius: 50%;
  background: #fff;
  -webkit-box-shadow: 0 0 .75vw rgba(0, 0, 0, .35);
  box-shadow: 0 0 .75vw rgba(0, 0, 0, .35);
  -webkit-transform: scale(.7);
  transform: scale(.7);
  left: 0;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

input[type="checkbox"].switch_1:checked:after {
  left: calc(100% - 1.15vw);
}

/* Switch 1 Specific Style End */
table {
  border-collapse: collapse;
  width: 100%;
  height: 100%;
}

td, th {
  font-weight: 600;
  font-size: 1.75vw;
}

.pad {
  padding: 0 2vw 0 2vw;
}

.r {
  text-align: right;
}
