/*CSS HANDLER */
/*CSS HANDLER */
/*CSS HANDLER */
/*CSS HANDLER */
body.overlayActive{
  overflow: hidden;
  z-index: 2 !important;
}

body.overlayActive #container{
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none; /*Safari*/
  -moz-user-select: none; /*Firefox*/
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
  z-index: 2; 
  pointer-events: none; 
}

#movementBox {
  background-color: rgba(0, 0, 0, 0.7);
  float: left;
  height: 270px;
  width: 500px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  z-index: 3 !important;
  cursor: pointer !important;
  pointer-events:stroke
}

#movementBox label {
  display: inline-block;
}

#movementBox label > input,
#movementBox label > select,
#movementBox label > button {
  display: block;
}

#movementBox input,
#movementBox select,
#movementBox button {
  margin-top: 5px;
}

#movementBox select {
  height: 25px;
}

#movResult table {
  width: 100%;
}

#movResult td {
  padding: 2px;
  font-size:11px
}

thead {
  background: var(--bg_color);
  text-transform: uppercase;
  font-weight: bold;
	color: var(--bg_text)
}

.altRow {  
  background-color: #3C3C3C;
}

#movResult table tbody tr:hover {
  background-color: #6c6c6c;
  cursor: pointer;
}

#movResult {
  height: 200px;
  overflow: auto;
}

#movLoading {
  background: rgba(0, 0, 0, 0.8) url("//img/loading.gif") no-repeat scroll center center / 52px auto;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

#movLoading::after {
  content: "Loading...";
  display: block;
  height: 100%;
  margin-top: 105px;
  text-align: center;
  width: 100%;
}

#movResult p {
  margin: 20px 5px;
  text-transform: uppercase;
}

#movementBox #movFilter button {
  display: inline-block;
  margin-top: 18px;
}

@media screen and (min-width: 992px) {
  body.overlayActive #container {
    z-index: 0;
  }
}

@media screen and (max-width: 991px) {
  .overlay {
    z-index: 1041;
  }
  #movementBox {
    z-index: 1042 !important;
  }
}