/*CSS HANDLER */

body.overlayActive{
  overflow: hidden;
  z-index: 2 !important;
}
body.overlayActive #container{
  pointer-events: none;
  /* overflow: hidden; */
  z-index: 0;

  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(--colore_principale);;
  text-transform: uppercase;
  font-weight: bold;
	color: var(--testo_gradiente)
}

.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;
}
