*{
    box-sizing:border-box;
    margin: 0;
    padding: 0;
}

html, html > * {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: black;
}

html, body, div, span{
    margin: 0;
    padding: 0;
}

body > * {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100vh;
}

#overlay{
    display: flex;
    z-index: 1;
    padding: 2rem 3rem;
}

#overlay > * {
    width: 50%;
    height: 100%;
    /* background-color: white; */
    padding:1rem;
    position: relative;
}

#overlay > * > * {
    background-color: rgba(0,0,0,0.85);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    border: 3px solid white;
}

#overlay > * > * > *:not(:last-child){
    padding-bottom: 1rem;
}

#overlay > * > * > *:last-child{
    padding-top: 1rem;
}

#leftContainer {
    position: absolute;
    bottom:0;
    left: 0;
    margin: auto auto;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 550px;

}

#rightside > * {
    position:absolute;
    top:0;
    right:0;
    display: inline-block;
}

.button{
    user-select: none;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: .5rem;
    font-weight: bold;
    border: 1px solid white;
}

.button:hover{
    color: rgb(206, 206, 206);
    border-color: rgb(199, 199, 199);
}

.button:active{
    color: rgb(133, 133, 133);
    border-color: rgb(134, 134, 134);
}

#params{
    width: calc(100% + 3rem);
    position: relative;
    left: -1.5rem;
    padding: 1rem 1.5rem;
    border: 1px solid white;
    overflow-y: auto;
}

.sliderContainer{
    width: 100%;
}

.sliderContainer:not(:last-child){
    padding-bottom: 0.5rem;
}

.sliderContainer > *{
    width: 100%;
}

.sliderContainer > span{
    font-weight: bold;
}

.sliderLabels{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sliderLabels > *{
    width: 33%;
}

.sliderLabels > *:nth-child(2){
    text-align: center;
}

.sliderLabels > *:last-child{
    text-align: right;
}

input[type="range"] {
    -webkit-appearance: none !important;
    appearance: none !important;
    height: 2px;
    background: white;
    border: none;
    outline: none;
}
input[type="range"]::-webkit-slider-thumb {
     -webkit-appearance: none !important;
  width: 10px;
  height:10px;
  background: white;
  border: 1px solid black;
  border-radius: 50%;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb:hover {
  background: white;
} 

#playbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#rightContainer > span{
    font-weight: bold;
}

#rightContainer table{
    margin-left: auto;
}

#rightContainer table td:not(:last-child){
    padding-right: 1rem;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
    border-radius: 1rem;
}
  
  /* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
  
  /* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}
  
  /* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}