body {
    font-family: Arial, Helvetica, sans-serif;
    margin:0;
    padding:0;
}

input {
    margin: 0 0.5rem;
    padding: 0.5rem;
    border: 1px solid #333;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 3rem;
  }

.disable-select {
    user-select: none; /* supported by Chrome and Opera */
   -webkit-user-select: none; /* Safari */
   -khtml-user-select: none; /* Konqueror HTML */
   -moz-user-select: none; /* Firefox */
   -ms-user-select: none; /* Internet Explorer/Edge */
}

.header {
    margin:0;
    padding:20px;
    background-color: #444;
    box-shadow: 0 0 2px 2px #999;
    color: #fff;
    font-family: Arial Black;
}

.body {
    padding:20px;
}

.cropEdit {
    width: 640px;
    height: 360px;
    display: inline-block;
    background:gray;
    position: relative;
}

.cropOverlay {
    border: 4px dashed red;
    background: rgba(255,255,255,0.4);
    z-index: 999;
    box-sizing: border-box;
    position: absolute;
}

.cropOverlayPrv {
    border: 3px dashed green;
    background: rgba(255,255,255,0.4);
    z-index: 1000;
    cursor: move;
    box-sizing: border-box;
    position: absolute;
}

.cropTools {
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
    height: 360px;
    padding: 20px;
}

.cropTool {
    width: 60px;
    height: 60px;
    background: lightgray;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    margin:3px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.infoBox {
    background: lightgreen;
    margin:5px;
    border-radius: 5px;
    padding:10px;
}

.gridHeader {
    background: #2c255e;
    font-weight: bold;
    color:white;
    padding:5px;
}

.gridItem {
    overflow: hidden;
    padding: 5px;
}

#player video {
    width: 100%;
}

.camButton {
    font-weight: 800;
    text-align: center;
    line-height: 75px;
    width: 75px;
    height: 75px;
    border-radius: 5px;
    cursor: pointer;
    background-color: #aaaaaa;
    margin: 5px;
    overflow: hidden;
    font-size: 12px;
}

.MuiTab-textColorInherit.Mui-selected {
    background: #2c255e;
    color: #FFF;
}

.laneChooserWrapper {
    display: flex;
}

.laneChooserBtn {
    flex: 1;
    background: darkgray;
    border-radius: 5px 5px 0 0;
    padding: 5px;
    font-weight: bold;
    cursor: pointer;
}

.laneChooserBtn.active {
    background-color: red;
}

.cropEdit.hidden {
    display: none;
}



/* The slider itself */
.slider {
    -webkit-appearance: none;  /* Override default CSS styles */
    appearance: none;
    width: 100%; /* Full-width */
    height: 25px; /* Specified height */
    background: #d3d3d3; /* Grey background */
    outline: none; /* Remove outline */
    opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s; /* 0.2 seconds transition on hover */
    transition: opacity .2s;
  }
  
  /* Mouse-over effects */
  .slider:hover {
    opacity: 1; /* Fully shown on mouse-over */
  }
  
  /* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #04AA6D; /* Green background */
    cursor: pointer; /* Cursor on hover */
  }
  
  .slider::-moz-range-thumb {
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #04AA6D; /* Green background */
    cursor: pointer; /* Cursor on hover */
  }