﻿.VideoControlsContainer
{
    position: relative;
    z-index: 6;
}
.Videocontrols
{
    position: absolute;
    bottom: 15px;
    width: 100%;
    padding: 0 15px;
    transition: opacity 0.35s;
    opacity: 0;
}
.Videocontrols.hover
{
    opacity: 1 !important;
}
.hpVideoContainer
{
    overflow: hidden;
}
.hpVideoContainer
{
}
.hpVideoContainer.hover
{
    cursor:auto;
}
.Videocontrols #playPause:hover
{
    cursor: pointer;
}
.Videocontrols #playPause
{
    padding: 4px 0;
    width: 60px;
    background: #242424;
    border-radius: 3px;
    border: 1px solid #555;
    color: White;
    float: left;
    text-align: center;
    transition: background 0.5s;
}
.Videocontrols #playPause:hover
{
    background: #383838;
}
.Videocontrols #playPause #Play
{
    display: inline-block;
}
.Videocontrols #playPause #Pause
{
    display: none;
}
.Videocontrols #playPause.Paused #Play
{
    display: none;
}
.Videocontrols #playPause.Paused #Pause
{
    display: inline-block;
}

.Videocontrols #fullscreen:hover
{
    cursor: pointer;
}
.Videocontrols #fullscreen
{
    padding: 4px 0;
    width: 60px;
    background: #242424;
    border-radius: 3px;
    border: 1px solid #555;
    color: White;
    float: left;
    text-align: center;
    transition: background 0.5s;
    margin-left: 10px;
}
.Videocontrols #fullscreen:hover
{
    background: #383838;
}
.Videocontrols #fullscreen #Expand
{
    display: inline-block;
}
.Videocontrols #fullscreen #Contract
{
    display: none;
}
.Videocontrols #fullscreen.Expanded #Expand
{
    display: none;
}
.Videocontrols #fullscreen.Expanded #Contract
{
    display: inline-block;
}
.Videocontrols #videoPosition
{
    float:left;
    width: calc(100% - 210px);
    margin: 0 10px;
    background: transparent;
    padding-top: 7px;
}
.Videocontrols #sound
{
    padding: 4px 0;
    width: 60px;
    background: #242424;
    border-radius: 3px;
    border: 1px solid #555;
    color: White;
    float: left;
    text-align: center;
    transition: background 0.5s;
}
.Videocontrols #sound:hover
{
    background: #383838;
}
.Videocontrols #sound:hover
{
    cursor: pointer;
}

.Videocontrols #sound #VolumeOn
{
    display: inline-block;
}
.Videocontrols #sound #VolumeOff
{
    display: none;
}
.Videocontrols #sound.Muted #VolumeOn
{
    display: none;
}
.Videocontrols #sound.Muted #VolumeOff
{
    display: inline-block;
}

.Videocontrols input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  margin: -1.2px 0;
}
.Videocontrols input[type=range]:focus {
  outline: none;
}
.Videocontrols input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 12.4px;
  cursor: pointer;
  box-shadow: 0px 0px 0px #ffffff, 0px 0px 0px #ffffff;
  background: #272727;
  border-radius: 4.9px;
  border: 1px solid #545555;
  transition: background 0.5s;
}
.Videocontrols input[type=range]::-webkit-slider-runnable-track:hover
{
    background: #383838;
}
.Videocontrols input[type=range]::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 1px solid #ffffff;
  height: 10px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: 0.2px;
}
.Videocontrols input[type=range]:focus::-webkit-slider-runnable-track {
  background: #343434;
}
.Videocontrols input[type=range]::-moz-range-track {
  width: 100%;
  height: 12.4px;
  cursor: pointer;
  box-shadow: 0px 0px 0px #ffffff, 0px 0px 0px #ffffff;
  background: #272727;
  border-radius: 4.9px;
  border: 1px solid #545555;
  transition: background 0.5s;
}
.Videocontrols input[type=range]::-moz-range-track:hover
{
    background: #383838;
}
.Videocontrols input[type=range]::-moz-range-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 1px solid #ffffff;
  height: 10px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}
.Videocontrols input[type=range]::-ms-track {
  width: 100%;
  height: 12.4px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
.Videocontrols input[type=range]::-ms-fill-lower {
  background: #1a1a1a;
  border: 1px solid #545555;
  border-radius: 9.8px;
  box-shadow: 0px 0px 0px #ffffff, 0px 0px 0px #ffffff;
}
.Videocontrols input[type=range]::-ms-fill-upper {
  background: #272727;
  border: 1px solid #545555;
  border-radius: 9.8px;
  box-shadow: 0px 0px 0px #ffffff, 0px 0px 0px #ffffff;
}
.Videocontrols input[type=range]::-ms-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 1px solid #ffffff;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  height: 10px;
}
.Videocontrols input[type=range]:focus::-ms-fill-lower {
  background: #272727;
}
.Videocontrols input[type=range]:focus::-ms-fill-upper {
  background: #343434;
}

.Videocontrols input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  margin: -1.2px 0;
}
.Videocontrols input[type=range]:focus {
  outline: none;
}
.Videocontrols input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 12.4px;
  cursor: pointer;
  box-shadow: 0px 0px 0px #ffffff, 0px 0px 0px #ffffff;
  background: #272727;
  border-radius: 4.9px;
  border: 1px solid #545555;
}
.Videocontrols input[type=range]::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 1px solid #ffffff;
  height: 10px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: 0.2px;
}
.Videocontrols input[type=range]:focus::-webkit-slider-runnable-track {
  background: #343434;
}
.Videocontrols input[type=range]::-moz-range-track {
  width: 100%;
  height: 12.4px;
  cursor: pointer;
  box-shadow: 0px 0px 0px #ffffff, 0px 0px 0px #ffffff;
  background: #272727;
  border-radius: 4.9px;
  border: 1px solid #545555;
}
.Videocontrols input[type=range]::-moz-range-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 1px solid #ffffff;
  height: 10px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}
.Videocontrols input[type=range]::-ms-track {
  width: 100%;
  height: 12.4px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
.Videocontrols input[type=range]::-ms-fill-lower {
  background: #1a1a1a;
  border: 1px solid #545555;
  border-radius: 9.8px;
  box-shadow: 0px 0px 0px #ffffff, 0px 0px 0px #ffffff;
}
.Videocontrols input[type=range]::-ms-fill-upper {
  background: #272727;
  border: 1px solid #545555;
  border-radius: 9.8px;
  box-shadow: 0px 0px 0px #ffffff, 0px 0px 0px #ffffff;
}
.Videocontrols input[type=range]::-ms-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 1px solid #ffffff;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  height: 10px;
}
.Videocontrols input[type=range]:focus::-ms-fill-lower {
  background: #272727;
}
.Videocontrols input[type=range]:focus::-ms-fill-upper {
  background: #343434;
}


.phase-ready.sizing-medium.state-playing, ::-webkit-media-controls
{
    display: none !important;
}
.hpVideoContainer
{
    display: grid;
}
.hpVideoOuterContainer.Full .hpVideoContainer
{
    width: 100vw;
}
#hpPosThumb
{
    position: absolute;
    z-index: 40;
    left: 0;
    top: -110px;
    pointer-events: none;
    border: 4px solid black;
    border-radius: 3px;
}