@font-face {
   font-family: bahnschrift;
   src: url(../fonts/bahnschrift.ttf);
}

:root {
    --wrapperWidth: 960px;
    --controlWidth: 960px;
    --videoWidth: 960px;
    --videoHeight: 540px;
    --containerHeight: 575px;
    --topPadding: 0px;
    --leftPadding: 0px;
    --fontColor: #4C6A94;
    --backgroundColor:  #F0F0F0;
    --hoverColor: #D0D0D0;
    --disabledColor: #C0C0C0;
    --oldButtonColor: #C4D8F2;
}

html {
    font-family: bahnschrift, sans-serif;
    font-size: 100%;
    color: #4C6A94;
    background-color: #F0F0F0;
}

body {
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    user-select: none;
}

.prevent-select {
}

#mainContainer {
    width: 1360 px;
    height: 610px;
    position: relative;
    margin-top: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    column-gap: 10px;
    z-index: 1;
    /* border: 1px solid black; */
}

#vidContainer {
    width: var(--videoWidth);
    height: var(--containerHeight);
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    /*border: 1px solid red; */
}

#videoWrapper {
    width: var(--wrapperWidth);
    height: var(--videoHeight);
    position: relative;
    display: block;
    margin: 0;
    margin-left: var(--marginLeft);
    padding: 0;
    /* border: 1px solid blue; */
}    

#dropBox {
    width:var(--wrapperWidth);
    height:var(--videoHeight);
    position: absolute;
    top: 0;
    left: 0;
    border: 2px dashed #333333;
    padding: 0;
    z-index: 10; */
}    

#theVideo {
    display: none;
    width: var(--videoWidth);
    top: 0;
    left: 0;
    height: var(--videoHeight);
    margin: 0;
}

#loaderDiv {
    width:var(--videoWidth);
    height:var(--videoHeight);
    position: absolute;
    margin-top: 150px;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

#fullScreenButton {
    width:var(--videoWidth);
    height:var(--videoHeight);
    position: absolute;
    margin-top: 150px;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

#loadInstr {
    margin-top: 30px;
    font-size: 150%;
}

.myButton {
    font-family: bahnschrift;    
    margin-top: 30px;
    height: 35px;
    padding-top: 8px;
    cursor: pointer;
    font-size: 150%;
    color: var(--fontColor);
    background-color: var(--backgroundColor);
    border: 3px solid var(--fontColor);
    border-radius: 12px;
    text-align: center;
}

.myButton:hover {
    background-color: var(--hoverColor);
}

#loadButton {
    width: 200px;
}

#goFullScreen {
    margin-top: 200px;
    width: 300px;
    height: 50px;
    padding-top: 2px;
}

#controlWrapper   {
    width: var(--videoWidth);
    height: 30px;
    margin-top: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* border: 1px solid magenta; */
}

#videoControls {
    height: 30px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
}

#frameCounter {
    width: 90px;
    font-family: courier, monospace;
    font-weight: bold;
    text-align: right;
    margin: 0;
    margin-top: 7px;
}

.vcSpacer {
    width: 10px;
}

.material-icons {
    color: var(--fontColor);
}

.vcButton {
    /*    background-color: #e3ecf9; */
    width: 33px;
    height: 30px;
    padding: 0;
    padding-top: 2px;
    background-color: var(--backgroundColor);
    border: 1px solid var(--fontColor);
    border-radius: 2px;
}

.vcButton:hover {
    background-color: #c4d8f2;
    cursor: pointer;
}

#progressContainer {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

#vcProgressBar {
    background-color: #f0f0f0;
    border: 1px solid #4C6A94;
    border-radius: 2px;
    width: 470px;
    padding: 0;
    margin: 0;
    height: 29px;
}

#vcProgressBar:hover {
    cursor: pointer;
}

#videoProgress {
    background-color: var(--fontColor);
    width: 469px;
    max-width: 0px; /* max is 469 px */
    height: 27px;
    padding: 1px;
    padding-left: 0px;
}
   
.muteButton {
    /*    background-color: #e3ecf9; */
    width: 30px;
    height: 30px;
    padding: 0;
    padding-top: 2px;
    background-color: var(--backgroundColor);
    border: 1px solid var(--fontColor);
    border-radius: 2px;
}

.muteButton:hover {
    background-color: #c4d8f2;
    cursor: pointer;
}

#muteContainer {
    width: 175px;
    display: flex;
    flex-direction: row;
    justify-content: right;
}

#muteTextBox {
    width: 150px;
    text-align: right;
    padding-top: 5px;
}

#muteText {
    text-align: right;
}

#muted, #unmuted {
/*    margin-top: 5px; */
}

