:root {
  --app-height: 100%;
}
body,
html {
  height: 100%;
  width: 100%;
  font-size: 24px;
  /* height: var(--app-height); */
  display: flex;
  flex-direction: row;
}
#player {
  display: flex;
  /* margin: auto;
    padding-top:2px; */
  height: 100vh;
  justify-content: center;
  align-items: center;
  /* flex-grow: 1; */
}
.mplayer {
  position: fixed;
  width: 100%;
  height: 100%;
}
#canvas-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.canvas-container {
  margin: 0 auto;
}
.canvas-container canvas {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
#btnMute {
  margin-right: 2px;
}
#btnLink {
  padding-left: 10px;
}
progress {
  margin-right: 0px;
}
.progressWrapper {
  justify-content: space-around;
  width: 120px;
  padding-left: 1px;
  position: relative;
  top: 1px;
}
#btnStop {
  font-size: 26px;
  position: relative;
  bottom: 2px;
}
#progress-bar1 {
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 0px;
}
#elapsedTime1 {
  display: none;
  font-size: 11px;
}
#totalTime1 {
  display: none;
  font-size: 11px;
}
#elapsedTime {
  font-size: 14px;
  width: fit-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  top: 1px;
}
#elapsedTime span {
  width: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
#elapsedTime span:focus-visible,
#elapsedTime1:focus-visible {
  outline: none;
}
#frameCount {
  width: 35px;
  font-size: 14px;
  text-overflow: clip;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 3px;
  padding-left: 5px;
  position: relative;
  top: 1px;
}
#frameCount:focus-visible {
  outline: none;
}
#totalTime {
  font-size: 14px;
  width: fit-content;
  position: relative;
  top: 1px;
}
#controls {
  width: calc(100% - 2px);
  padding: 0px;
  margin: 0px;
  background: white;
  /* margin-left: 5px;
    margin-right: 5px; */
  border: solid 1px black;
  border-radius: 0px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
#volume {
  top: -5;
}
#volume .ui-slider-range-min {
  background: #bebebe;
}
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) {
  #canvas-container {
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
  }
}
@media only screen and (max-width: 500px) {
  #progress-bar {
    display: none;
  }
  #progress-bar1 {
    display: inline-block;
  }
  #elapsedTime1 {
    display: flex;
    font-size: 11px;
    align-items: center;
    /* width: 60px; */
  }
  #totalTime1 {
    display: flex;
    font-size: 11px;
    align-items: center;
  }
  #elapsedTime {
    display: none;
  }
  #frameCount {
    display: none;
  }
  #totalTime {
    display: none;
  }
  #bottom-progress-bar {
    display: flex;
    width: calc(100% - 5px);
  }
}
@media only screen and (min-width: 1079px) {
  #elapsedTime {
    font-size: 18px;
    /* width: 95px; */
  }
  #elapsedTime span {
    width: 20px;
  }
  #frameCount {
    font-size: 18px;
    width: 45px;
  }
  #totalTime {
    font-size: 18px;
    /* width: 100px; */
  }
}
@media only screen and (min-width: 1600px) {
  #elapsedTime {
    font-size: 22px;
    /* width: 120px; */
  }
  #elapsedTime span {
    width: 25px;
  }
  #frameCount {
    font-size: 22px;
    width: 55px;
  }
  #totalTime {
    font-size: 22px;
    /* width: 120px; */
  }
  .progress-container {
    position: relative;
    top: 1px;
  }
}
#mogulstore-iframe {
  width: calc(50% - 4px);
}
#msLine {
  height: 100%;
  width: 4px;
  background-color: gray;
  cursor: col-resize;
}
#msLine:hover {
  background-color: black;
}
#loadinggif {
  top: 50%;
  margin-left: -18px;
  margin-top: -18px;
  display: block;
  position: fixed;
  z-index: 1;
  width: 36px;
  height: 36px;
  cursor: pointer;
}
#settingsLink{
  margin-left: 5px;
  display: inline;
}
#resolutionBadge{
  display: inline;
  position: absolute;
  top: 0;
  right: 0;
}
#resolutionBadge span{
  padding: 2px;
  background-color: red;
  color: white;
  border-radius: 3px;
  font-size: 8px;
}
#resolutionOptions{
  display: flex;
}
