html, body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
  
/* Track */
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
}
  
/* Handle */
::-webkit-scrollbar-thumb {
    background: rgba(5, 94, 121, 0.8);
    border-radius: 5px;
}

.horizontalContainer {
    width: 100%;
}

.horizontalContainer > div {
    width: auto;
    display: inline-block;
    margin-right: 20px;
    vertical-align: middle;
}

.checkDiv {
    text-align: right;
}

.checkDiv > div {
    display: inline-block;
}

input[type='file'] {
    color: rgba(0, 0, 0, 0);
    width: 90px;
    margin-right: 0px;
}

button {
    border-radius: 0px;
    border-width: 0px;
}

button:hover {
    cursor: pointer;
    background-color:rgb(165, 165, 165)
}

/* Four sides */

#topDiv {
    color: white;
    width: calc(64% - 20px) !important;
    height: 50px;
    position: fixed;
    top: calc(2% + 50px);
    left: 18%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
}

#bottomDiv {
    color: white;
    position: fixed;
    bottom: 2%;
    left: 10%;
    width: calc(80% - 20px);
    height: 100px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
}

#multiMotionDiv {
    color: white;
    position: fixed;
    bottom: calc(2% + 130px);
    left: 20%;
    width: calc(60% - 20px);
    /* height: 20px; */
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
}

#leftDiv {
    color: white;
    position: fixed;
    top: 2%;
    left: 1%;
    width: 15%;
    height: calc(98% - 190px);
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

#rightDiv {
    color: white;
    position: fixed;
    top: 2%;
    right: 1%;
    width: 15%;
    height: calc(98% - 190px);
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
}

#bottomLeftDiv {
    color: white;
    position: fixed;
    bottom: 2%;
    left: 1%;
    width: calc(8% - 20px);
    height: 120px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
}

#bottomRightDiv {
    color: white;
    position: fixed;
    bottom: 2%;
    right: 1%;
    width: calc(8% - 20px);
    height: 120px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
}


/* tooltips */

.tooltip .tooltiptext {
    visibility: hidden;
    background-color:rgb(0,0,0,0.5);
    color: #fff;
    text-align: center;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.2s;
    white-space: normal;
}

.topToolTip {
    position: fixed;
    top: calc(2% + 125px);
    left: 19.5%;
    width: 60% !important;
    z-index: 100;
}

.bottomToolTip {
    position: fixed;
    /* bottom: calc(2% + 150px); */
    top: calc(2% + 125px);
    left: 19.5%;
    width: 60% !important;
    z-index: 100;
}

.leftToolTip {
    position: fixed;
    top: calc(2% + 125px);
    left: 18%;
    width: 10% !important;
    z-index: 100;
}

.rightToolTip {
    position: fixed;
    top: calc(2% + 125px);
    right: 18%;
    width: 10% !important;
    z-index: 100;
}

.tooltip:hover .tooltiptext {
    opacity: 1;
    visibility: visible;
}

/* UI Control */

#uiControlDiv {
    color: white;
    position: fixed;
    top: 2%;
    left: 19.5%;
    width: 60% !important;
    height: 20px;
    padding: 10px 0.5% 10px 0.5%;
    background-color: rgba(0, 0, 0, 0.5);
}

#uiControlContainer > * {
    margin: 0px;
    width: 20%;
    text-align: center;
}

#uiControlContainer > * > * {
    width: 80%
}
