:root {
  --steinmann-text-color: rgb(255, 255, 255);
}
:root {
  --steinmann-second-color: rgb(250, 250, 250);
}




/*
###################
überschreiben der regulären VideoJS-Styles
###################
*/


.vjs-has-started .vjs-control-bar,
.vjs-audio-only-mode .vjs-control-bar {
  height: 4em;
  background-color: rgba(43, 51, 63, 0)
}
.video-js .vjs-control {
    width: 4em;
    padding:0 4px;
    padding-top: 1px;
}
.video-js .vjs-control:focus:before, .video-js .vjs-control:hover:before, .video-js .vjs-control:focus {
    text-shadow: unset;
}

.vjs-button :focus {
  outline: none;
}
.vjs-menu-button {
  font-size: 11px;
}
.vjs-menu-button-popup .vjs-menu {
  margin-bottom: 1em;
}
.vjs-texttrack-settings {
  display: none;
}
.video-js .vjs-time-control {	/* https://stackoverflow.com/questions/15324061/show-the-current-time-of-the-video-instead-of-the-remaining-time-on-videojs  */
  /* display: block; */
}
.video-js .vjs-remaining-time {
  display: none;
}

.vjs-menu li{
  text-transform: none !important;
}

.video-js .vjs-time-control{
  padding-left: 0px;
  padding-right: 0px;
  min-width: 0px;
}
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover,
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active{
  width: 9em;
}
.vjs-mouse-display,
.vjs-volume-level {
  top: 2px !important;
  margin-top: 1px !important;
}


.video-js .vjs-big-play-button {
  border: none !important;
  background-color: rgb(0, 0, 0, 0.0);
  content: "\f101";
  /*
  margin-top: -0.2em;
  margin-left: -1.0em;
  */
  /*
  display: inline-block;
  width: unset;
  position: unset;
  margin: 0;
*/
}
.video-js .vjs-big-play-button:focus {
  background-color: rgb(0, 0, 0, 0.0);
}
.video-js:hover .vjs-big-play-button,
.video-js .vjs-big-play-button:focus {
  background-color: rgb(0, 0, 0, 0.0);
  transition: all 0srgba(255, 34, 0, 0.5)
}

/* roter Live-Punkt */
.vjs-seek-to-live-control .vjs-icon-placeholder:before {
  content: "•"; 
  font-family: inherit; 
  font-size: 2rem;
  display: inline-block;
  padding-top: 3px;

}
/* Volume-Slider */
.vjs-icon-circle:before, 
.video-js .vjs-volume-level:before {
  content: "•"; /* einfacher Punkt */
  font-family: inherit; /* oder eine passende Schriftart */
  font-size: 280%;
  display: inline-block;
  transform: translate(-110%, -70%);
}
.video-js .vjs-play-progress:before {
  /*
  content: "•";
  font-family: inherit;
  font-size: 280%;
  display: inline-block;
  transform: translate(-100%, -33%);
*/
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.2);
}

.video-js .vjs-progress-holder .vjs-load-progress div {
  display: none;
}

.video-js .vjs-big-play-button .vjs-icon-placeholder {
  /*Bestand eleminieren (Sonderzeichen)*/
    font-size: 0;
    text-indent: -9999px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    height:250px;
    width:250px;
    
    /*NEU*/
    background: url("https://start.video-stream-hosting.de/static/videojs/soeren/play-button.svg") no-repeat center center;
    background-size: contain;

    filter: drop-shadow(0px 4px 24px rgba(0, 0, 0, 0.5));
}

@media only screen and (max-width:767px){

    .video-js .vjs-big-play-button .vjs-icon-placeholder {
    background-size: 40% 40%;
    }
}
@media only screen and (max-height:300px){

    .video-js .vjs-big-play-button .vjs-icon-placeholder {
    background-size: 40% 40%;
    }
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  content:unset;
  visibility: hidden;
}


/* Menü-Button Hover: display:block Menü
Hiermit deaktivieren: */
.vjs-workinghover .vjs-menu-button-popup.vjs-hover .vjs-menu {
    display: none;
}
/*
Menüs für z.B. Untertitel-Auswahl
*/
.vjs-menu li {
  padding: 0.2em 0.2em;
}
.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
  position: absolute;
  width: auto;
  padding: 5px 10px 5px;
  bottom: 4.5em;
  max-height: 15em;
}
.vjs-steinmann-ui .vjs-menu-item-text {
background-color: rgba(0, 0, 0, 0);
  padding: 5px 10px 5px;
  font-size: 14px;
}



.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 5em;
}

.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 10em;
}

.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 14em;
}

.vjs-layout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 25em;
}







/*
###################
quality-button (Auswahl der Videoqualität / Auflösung)
###################
*/


/* ZAHNRAD Icon wird nicht mehr verwendet
.vjs-quality-button .vjs-icon-placeholder_:before {
  content: "⚙";
  font-size: 2.2em;
  line-height: 1.3;
  font-weight: bold;
}
*/

.vjs-quality-button.vjs-button {
  cursor: pointer;
  width: auto;
  font-size: 14px;
  padding-top:3px;
}

/* Quality Menu Styling */
#vjs-quality-menu {
  position: absolute;
  bottom: 100%;
  right: 0;
  transform: translateY(-8px);
  z-index: 1000;
  font-family: Arial, sans-serif;
  font-size: 14px;
  background: #222;
  color: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  padding: 6px 0;
  min-width: 90px;
}

.vjs-quality-button {
  position: relative;
}


/*
###################
vjs-steinmann-ui
###################
*/

.vjs-steinmann-ui .vjs-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30vH;
  height: 180px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0,0,0,0.2) 60%, transparent 100%);
  z-index: 0;
  opacity: 1; /* beim Start aktiv. Ausblenden sobald vjs Parameter inactivityTimeout ausläuft */
  transition: opacity 0.3s ease;
  pointer-events: none;
}





.vjs-steinmann-ui .vjs-progress-control.vjs-control { /* Hieran hängt die Spulleiste mit allen Elementen */
  background-color: rgba(29, 115, 255, 0.0);
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  /*
  cursor: auto;
  */
  cursor: pointer;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  height: 20px;
  line-height: normal;
  opacity: 1;
  position: absolute;
  left: 10px;
  right: 10px;
  top: -15px;
  bottom: auto;
  visibility: visible;
  width: auto;
  z-index: 1;
}

.vjs-steinmann-ui .vjs-progress-holder.vjs-slider.vjs-slider-horizontal { /* Hintergrund hinter Spulleiste */
  background-color: rgb(255, 255, 255, 0.4);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  height: 2px;
  margin: 0px 0px 0px 0px;
  line-height: normal;
  opacity: 1;
  position: absolute;
  /*
  right: 10px;
  left: 10px;
  top: auto;
  */
  top: 10px;
  visibility: visible;
  width: 100%;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-play-progress.vjs-slider-bar { /* Fortschrittsbalken auf Spulleiste soweit wie abgespielt */
  background-color: rgb(67, 166, 255);
  bottom: 0px;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  height: 2px;
  left: 0px;
  line-height: normal;
  opacity: 1;
  position: absolute;
  right: auto;
  top: 0px;
  visibility: visible;
  width: auto;
  z-index: auto;
}



.vjs-steinmann-ui .vjs-load-progress {
background-color: rgb(255, 19, 19, 0.0);
  bottom: -9px;
  height: 9px !important;
  pointer-events: none;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: block;
  left: 0px;
  opacity: 1;
  visibility: visible;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-control-text {
background-color: rgb(255, 255, 255);
  bottom: 28px;
  box-sizing: border-box;
  color: rgb(0, 0, 0);
  cursor: pointer;
  display: block;
  font-family: Arial, sans-serif;
  font-size: 11px;
  height: 22px;
  left: -26px;
  line-height: 22px;
  opacity: 0;
  position: absolute;
  right: 5px;
  top: -10px;
  visibility: hidden;
  width: 60px;
  z-index: 2;
}

.vjs-steinmann-ui .vjs-control-text-loaded-percentage {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(0, 0, 0);
  cursor: pointer;
  display: inline;
  font-family: Arial, sans-serif;
  font-size: 11px;
  height: auto;
  left: auto;
  line-height: 22px;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: hidden;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-mouse-display.vjs-abs-hidden {
background-color: rgb(0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  height: 100%;
  left: 12px;
  line-height: normal;
  opacity: 0;
  position: absolute;
  right: auto;
  top: 16px;
  visibility: hidden;
  width: 0px;
  z-index: 1;
}

.vjs-steinmann-ui .vjs-time-tooltip { /* Tooltip mit Zeitangabe. Zwei Varianten unten: klebt an der Maus + klebt an der aktuellen Position */
  background-color: rgba(255, 255, 255, 50%);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: block;
  font-family: Arial, sans-serif;
  font-size: 12px !important;
  height: auto;
  left: auto;
  line-height: 12px;
  opacity: 1;
  position: relative;
  right: 0px;
  top: -25px;
  visibility: hidden;
  min-width: 20px; /* für Safari notwendig, statt nur width: 'auto' */
  width: auto; 
  z-index: 1;
}
.vjs-mouse-display .vjs-time-tooltip {  /* Tooltip mit Zeitangabe, klebt an der Spulleiste an der Position der Maus */
  background-color: rgb(255, 0, 0, 0.0) !important;
  display: block;
  min-width: 20px; /* für Safari notwendig, statt nur width: 'auto' */
  width: auto;
}
.vjs-play-progress .vjs-time-tooltip { /* Tooltip mit Zeitangabe, klebt an aktueller Position */
  background-color: rgb(242, 255, 0) !important;
  display: none !important;
}

.vjs-steinmann-ui .vjs-time-tooltip.vjs-abs-hidden {
  background-color: rgb(255, 0, 0, 0) !important;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: none;
  visibility: hidden;
  width: auto;
  z-index: 1;
}







.vjs-steinmann-ui .vjs-progress-slide {
background-color: rgba(0, 0, 0, 0);
  bottom: 24px;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  height: 0px;
  left: 80px;
  line-height: normal;
  opacity: 1;
  position: absolute;
  right: 861px;
  top: -4px;
  visibility: visible;
  width: 0px;
  z-index: 1;
}

.vjs-steinmann-ui .vjs-thumb {
background-color: rgb(0, 0, 0);
  bottom: 0px;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  height: 90px;
  left: -80px;
  line-height: normal;
  opacity: 0;
  position: absolute;
  right: -80px;
  top: -90px;
  visibility: visible;
  width: 160px;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-thumb-dr {
background-color: rgba(0, 0, 0, 0);
  bottom: 0px;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  height: 18px;
  left: 0px;
  line-height: 18px;
  opacity: 1;
  position: absolute;
  right: 0px;
  top: 70px;
  visibility: visible;
  width: 158px;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-play-control.vjs-control.vjs-button.vjs-paused {
background-color: rgba(0, 0, 0, 0);
  bottom: 0px;
  box-sizing: border-box;
  color: var(--steinmann-second-color);
  cursor: pointer;
  display: block;
  font-family: Arial;
  font-size: 13px;
  height: 40px;
  left: 0px;
  line-height: normal;
  opacity: 1;
  position: relative;
  right: 0px;
  top: 0px;
  visibility: visible;
  width: 40px;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-icon-placeholder.vjs-svg-icon {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: var(--steinmann-second-color);
  cursor: pointer;
  display: inline-block;
  font-family: Arial;
  font-size: 13px;
  height: 23px;
  left: auto;
  line-height: normal;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: visible;
  width: 23px;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-vast-label {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(240, 240, 240);
  cursor: auto;
  display: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  height: auto;
  left: auto;
  line-height: 40px;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-rewind-control.vjs-control.vjs-button.vjs-rewind-10 {
background-color: rgba(0, 0, 0, 0);
  bottom: 0px;
  box-sizing: border-box;
  color: var(--steinmann-second-color);
  cursor: pointer;
  display: block;
  font-family: Arial;
  font-size: 13px;
  height: 40px;
  left: 0px;
  line-height: normal;
  opacity: 1;
  position: relative;
  right: 0px;
  top: 0px;
  visibility: visible;
  width: 40px;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-live-control.vjs-control.vjs-hidden {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: var(--steinmann-text-color);
  cursor: auto;
  display: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  height: auto;
  left: auto;
  line-height: 40px;
  opacity: 1;
  position: relative;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-live-display {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: var(--steinmann-text-color);
  cursor: auto;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  height: auto;
  left: auto;
  line-height: 40px;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-seek-to-live-control.vjs-control {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: var(--steinmann-second-color);
  cursor: pointer;
  display: flex;
  font-family: Arial;
  font-size: 14px;
  height: auto;
  left: auto;
  line-height: normal;
  opacity: 1;
  position: relative;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-seek-to-live-control .vjs-icon-placeholder {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(136, 136, 136);
  cursor: pointer;
  display: inline;
  font-family: Arial;
  font-size: 14px;
  height: auto;
  left: auto;
  line-height: normal;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
  background-color: #f00;
}

.vjs-steinmann-ui .vjs-icon-placeholder {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(136, 136, 136);
  cursor: pointer;
  display: inline;
  font-family: Arial;
  font-size: 14px;
  height: auto;
  left: auto;
  line-height: normal;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-seek-to-live-text {
background-color: rgba(240, 0, 0, 0.0);
  bottom: auto;
  box-sizing: border-box;
  color: var(--steinmann-text-color);
  cursor: pointer;
  display: inline;
  font-family: Arial;
  font-size: 13px;
  height: auto;
  left: auto;
  line-height: normal;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
  padding-top: 2.5px;
}


/* Lautstärkeregler */
.video-js .vjs-volume-bar {
   margin: 1.75em 0.45em;
}
.video-js .vjs-volume-control .vjs-mouse-display {
    z-index: 99;
    font-size: 14px;
  margin-top: 5px !important;
}
/* .vjs-steinmann-ui .vjs-icon-placeholder {
    color: rgb(230,230,230);
} */
.vjs-steinmann-ui .vjs-icon-placeholder:hover {
    color: #fff;
}  
.video-js .vjs-volume-level{
    top: -1.5px !important;
}
.video-js .vjs-volume-tooltip {
  top: -38px;
}







.vjs-steinmann-ui .vjs-volume-panel.vjs-control.vjs-volume-panel-vertical {
background-color: rgba(0, 0, 0, 0);
  bottom: 0px;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: auto;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  height: 40px;
  left: 0px;
  line-height: normal;
  opacity: 1;
  position: relative;
  right: 0px;
  top: 0px;
  visibility: visible;
  width: 40px;
  z-index: 3;
}

.vjs-steinmann-ui .vjs-mute-control.vjs-control.vjs-button.vjs-vol-3 {
background-color: rgba(0, 0, 0, 0);
  bottom: 0px;
  box-sizing: border-box;
  color: var(--steinmann-second-color);
  cursor: pointer;
  display: inline-block;
  font-family: Arial;
  font-size: 13px;
  height: 40px;
  left: 0px;
  line-height: normal;
  opacity: 1;
  position: relative;
  right: 0px;
  top: 0px;
  visibility: visible;
  width: 40px;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-volume-control.vjs-control.vjs-volume-vertical {
background-color: rgba(0, 0, 0, 0);
  bottom: 40px;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  height: 116px;
  left: 0px;
  line-height: normal;
  opacity: 0;
  position: absolute;
  right: 10px;
  top: -116px;
  visibility: visible;
  width: 30px;
  z-index: 2;
}

.vjs-steinmann-ui .vjs-volume-bar.vjs-slider-bar.vjs-slider.vjs-slider-vertical {
background-color: rgba(255, 255, 255, 0.3);
  bottom: 0px;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  height: 80px;
  left: 0px;
  line-height: normal;
  opacity: 1;
  position: relative;
  right: 0px;
  top: 0px;
  visibility: visible;
  width: 5px;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-mouse-display {
background-color: rgba(0, 0, 0, 0);
  display: none;
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #ffffff90;
  z-index: 1;
}

.vjs-steinmann-ui .vjs-volume-tooltipppp {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  height: auto;
  left: auto;
  line-height: normal;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-volume-levellll {
background-color: var(--steinmann-text-color);
  bottom: 0px;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  height: 80px;
  left: 0px;
  line-height: normal;
  opacity: 1;
  position: absolute;
  right: 0px;
  top: 0px;
  visibility: visible;
  width: 5px;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-current-time.vjs-time-control.vjs-control {
background-color: rgba(0, 0, 0, 0);
  bottom: 0px;
  box-sizing: border-box;
  color: var(--steinmann-text-color);
  cursor: auto;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  height: 40px;
  left: 0px;
  line-height: 42px;
  opacity: 1;
  position: relative;
  right: 0px;
  top: 0px;
  visibility: visible;
  width: auto;
  padding: 0px 2px;
}

.vjs-steinmann-ui .vjs-current-time-display {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: var(--steinmann-text-color);
  cursor: auto;
  display: inline;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  height: auto;
  left: auto;
  line-height: 42px;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-time-control.vjs-time-divider {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: var(--steinmann-text-color);
  cursor: auto;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  height: 40px;
  left: auto;
  line-height: 42px;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: visible;
  width: 8px;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-duration.vjs-time-control.vjs-control {
background-color: rgba(0, 0, 0, 0);
  bottom: 0px;
  box-sizing: border-box;
  color: var(--steinmann-text-color);
  cursor: auto;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  height: 40px;
  left: 0px;
  line-height: 42px;
  opacity: 1;
  position: relative;
  right: 0px;
  top: 0px;
  visibility: visible;
  width: auto;
  padding: 0px 2px;
  z-index: auto;
}



.vjs-steinmann-ui .vjs-duration-display {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: var(--steinmann-text-color);
  cursor: auto;
  display: inline;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  height: auto;
  left: auto;
  line-height: 42px;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-custom-control-spacer.vjs-spacer {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: auto;
  display: -webkit-box;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  height: 40px;
  left: auto;
  line-height: normal;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: visible;
  width: 100%;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-chapters-button.vjs-menu-button.vjs-menu-button-popup.vjs-control.vjs-button.vjs-hidden {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  height: 100%;
  left: auto;
  line-height: normal;
  opacity: 1;
  position: relative;
  right: auto;
  top: auto;
  visibility: visible;
  width: 40px;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-chapters-button.vjs-menu-button.vjs-menu-button-popup.vjs-button {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: var(--steinmann-second-color);
  cursor: pointer;
  display: inline-block;
  font-family: Arial;
  font-size: 11.34px;
  height: 100%;
  left: auto;
  line-height: normal;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: visible;
  width: 40px;
  z-index: auto;
}
/*Wichtig, Medialeiste in der Höhe besser Abstand. Klebt nicht mehr zu viel */
.vjs-has-started .vjs-control-bar, .vjs-audio-only-mode .vjs-control-bar{
    bottom: 4px;
}

/*Playbutton in Medialeiste etwas angleichen, wirkt kleiner als Lautstärke und weiter links etwas zu nah am Rand*/
.vjs-icon-play:before, .video-js .vjs-play-control .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before{
    font-size: 2em;
    line-height: 1.5;
    padding-left: 2px;
}
/*Elemente zentrieren*/
.vjs-fullscreen-control .vjs-icon-placeholder:before{
  padding-top: 0.5px;
}
.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal{
  padding-top: 1.5px;
}

/*
.vjs-steinmann-ui .vjs-menu.vjs-hidden {
background-color: rgba(0, 0, 0, 0);
  bottom: 40px;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  height: auto;
  left: auto;
  line-height: normal;
  opacity: 0;
  position: absolute;
  right: -15px;
  top: auto;
  visibility: hidden;
  width: auto;
  z-index: 26;
}

.vjs-steinmann-ui .vjs-menu-content {
background-color: rgb(34, 34, 34);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: block;
  font-family: Arial, sans-serif;
  font-size: 12px;
  height: auto;
  left: auto;
  line-height: normal;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: hidden;
  width: 100%;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-menu-title {
background-color: rgb(221, 221, 221);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(34, 34, 34);
  cursor: default;
  display: block;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: 30px;
  left: auto;
  line-height: 30px;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-descriptions-button.vjs-menu-button.vjs-menu-button-popup.vjs-control.vjs-button.vjs-hidden {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  height: 100%;
  left: auto;
  line-height: normal;
  opacity: 1;
  position: relative;
  right: auto;
  top: auto;
  visibility: visible;
  width: 40px;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-descriptions-button.vjs-menu-button.vjs-menu-button-popup.vjs-button {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: var(--steinmann-second-color);
  cursor: pointer;
  display: inline-block;
  font-family: Arial;
  font-size: 11.34px;
  height: 100%;
  left: auto;
  line-height: normal;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: visible;
  width: 40px;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-menu-item.vjs-selected {
background-color: rgb(68, 68, 68);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: list-item;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: auto;
  left: auto;
  line-height: 32px;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: hidden;
  width: auto;
  z-index: auto;
}



.vjs-steinmann-ui .vjs-menu-item.vjs-texttrack-settings {
background-color: rgb(221, 221, 221);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(34, 34, 34);
  cursor: pointer;
  display: list-item;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: auto;
  left: auto;
  line-height: 32px;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: hidden;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-audio-button.vjs-menu-button.vjs-menu-button-popup.vjs-control.vjs-button.vjs-hidden {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  height: 100%;
  left: auto;
  line-height: normal;
  opacity: 1;
  position: relative;
  right: auto;
  top: auto;
  visibility: visible;
  width: 40px;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-audio-button.vjs-menu-button.vjs-menu-button-popup.vjs-button {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: var(--steinmann-second-color);
  cursor: pointer;
  display: inline-block;
  font-family: Arial;
  font-size: 11.34px;
  height: 100%;
  left: auto;
  line-height: normal;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: visible;
  width: 40px;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-menu-item.vjs-selected.vjs-main-menu-item {
background-color: rgb(68, 68, 68);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: list-item;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: auto;
  left: auto;
  line-height: 32px;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: hidden;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-quality-button.vjs-menu-button.vjs-control.vjs-button {
background-color: rgba(0, 0, 0, 0);
  bottom: 0px;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  height: 40px;
  left: 0px;
  line-height: 38px;
  opacity: 1;
  position: relative;
  right: 0px;
  top: 0px;
  visibility: visible;
  width: 40px;
  z-index: auto;
}

.vjs-steinmann-ui .quality-span.vjs-no-pointer {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: inline;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  height: auto;
  left: auto;
  line-height: 38px;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-hd-icon.vjs-hd-home.vjs-hidden {
background-color: rgb(204, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: none;
  font-family: sans-serif;
  font-size: 8px;
  height: auto;
  left: auto;
  line-height: normal;
  opacity: 1;
  position: static;
  right: 11px;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-menu {
background-color: rgba(0, 0, 0, 0);
  bottom: 40px;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  height: 289px;
  left: -123.039px;
  line-height: 38px;
  opacity: 0;
  position: absolute;
  right: -15px;
  top: -293px;
  visibility: hidden;
  width: 174.039px;
  z-index: 26;
}

.vjs-steinmann-ui .vjs-menu-content.vjs-qlist {
background-color: rgb(34, 34, 34);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: block;
  font-family: Arial, sans-serif;
  font-size: 12px;
  height: 259px;
  left: auto;
  line-height: normal;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: hidden;
  width: 174px;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-menu-item.item-quality {
background-color: rgba(0, 0, 0, 0);
  bottom: 0px;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: list-item;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: 37px;
  left: 0px;
  line-height: 32px;
  opacity: 1;
  position: relative;
  right: 0px;
  top: 0px;
  visibility: hidden;
  width: 174px;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-hd-icon {
background-color: rgb(204, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: inline-block;
  font-family: sans-serif;
  font-size: 9px;
  height: 11px;
  left: auto;
  line-height: normal;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: hidden;
  width: 15px;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-menu-item.item-quality.auto-res.vjs-checked {
background-color: rgba(0, 0, 0, 0);
  bottom: 0px;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: list-item;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: 37px;
  left: 0px;
  line-height: 32px;
  opacity: 1;
  position: relative;
  right: 0px;
  top: 0px;
  visibility: hidden;
  width: 174px;
  z-index: auto;
}

.vjs-steinmann-ui .autores {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: inline;
  font-family: Arial, sans-serif;
  font-size: 11px;
  height: auto;
  left: auto;
  line-height: 32px;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: hidden;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-control.vjs-button.vjs-cog-button.vjs-cog-menu-button {
background-color: rgba(0, 0, 0, 0);
  bottom: 0px;
  box-sizing: border-box;
  color: var(--steinmann-second-color);
  cursor: pointer;
  display: block;
  font-family: Arial;
  font-size: 13px;
  height: 40px;
  left: 0px;
  line-height: normal;
  opacity: 1;
  position: relative;
  right: 0px;
  top: 0px;
  visibility: visible;
  width: 40px;
  z-index: 3;
}

.vjs-steinmann-ui .vjs-hd.vjs-hidden {
background-color: rgb(204, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: none;
  font-family: Arial;
  font-size: 8px;
  height: auto;
  left: auto;
  line-height: normal;
  opacity: 1;
  position: absolute;
  right: 4px;
  top: 7px;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-menu-settings.vjs-hidden {
background-color: rgba(0, 0, 0, 0);
  bottom: 40px;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: default;
  display: none;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: auto;
  left: auto;
  line-height: normal;
  opacity: 1;
  position: absolute;
  right: 0px;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: 26;
}

.vjs-steinmann-ui .vjs-menu-div.vjs-settings-div {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: default;
  display: block;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: auto;
  left: auto;
  line-height: normal;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-submenu.vjs-settings-home {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: default;
  display: block;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: auto;
  left: auto;
  line-height: normal;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-menu-content.vjs-settings-list {
background-color: rgb(34, 34, 34);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: default;
  display: block;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: auto;
  left: auto;
  line-height: normal;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-settings-item.vjs-share-button {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: 35px;
  left: auto;
  line-height: 35px;
  opacity: 1;
  position: relative;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-icon-placeholder.vjs-share-icon.vjs-svg-icon {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: 26px;
  left: auto;
  line-height: 35px;
  opacity: 1;
  position: relative;
  right: auto;
  top: auto;
  visibility: visible;
  width: 17px;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-settings-item.vjs-related-button {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: 35px;
  left: auto;
  line-height: 35px;
  opacity: 1;
  position: relative;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-icon-placeholder.vjs-related-icon.vjs-svg-icon {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: 26px;
  left: auto;
  line-height: 35px;
  opacity: 1;
  position: relative;
  right: auto;
  top: auto;
  visibility: visible;
  width: 17px;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-settings-item.vjs-extend-zoom.vjs-menu-forward {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: 35px;
  left: auto;
  line-height: 35px;
  opacity: 1;
  position: relative;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .zoom-label {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: auto;
  left: auto;
  line-height: 35px;
  opacity: 1;
  position: relative;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-settings-item.vjs-extend-speed.vjs-menu-forward {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: 35px;
  left: auto;
  line-height: 35px;
  opacity: 1;
  position: relative;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-settings-item.vjs-extend-quality.vjs-menu-forward.vjs-hidden {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: none;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: 35px;
  left: auto;
  line-height: 35px;
  opacity: 1;
  position: relative;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .quality-label {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: auto;
  left: auto;
  line-height: 35px;
  opacity: 1;
  position: relative;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-submenu.vjs-menu-speed.vjs-hidden {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: default;
  display: none;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: auto;
  left: auto;
  line-height: normal;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-settings-back {
background-color: rgb(221, 221, 221);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(34, 34, 34);
  cursor: pointer;
  display: block;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: 30px;
  left: auto;
  line-height: 30px;
  opacity: 1;
  position: relative;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-menu-content.vjs-sub-menu {
background-color: rgb(34, 34, 34);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: default;
  display: block;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: auto;
  left: auto;
  line-height: normal;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-menu-item.vjs-speed {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: 35px;
  left: auto;
  line-height: 35px;
  opacity: 1;
  position: relative;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-menu-item.vjs-speed.vjs-checked {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: 35px;
  left: auto;
  line-height: 35px;
  opacity: 1;
  position: relative;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-submenu.vjs-zoom-menu.vjs-sub-menu.vjs-hidden {
background-color: rgba(0, 0, 0, 0.75);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: default;
  display: none;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: auto;
  left: auto;
  line-height: normal;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-settings-back.vjs-return {
background-color: rgb(221, 221, 221);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(34, 34, 34);
  cursor: pointer;
  display: block;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: 30px;
  left: auto;
  line-height: 30px;
  opacity: 1;
  position: relative;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-zoom-slider {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: default;
  display: table;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: 60px;
  left: auto;
  line-height: normal;
  opacity: 1;
  position: relative;
  right: auto;
  top: auto;
  visibility: visible;
  width: 100%;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-zoom-back {
background-color: rgba(255, 255, 255, 0.2);
  bottom: 0px;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: block;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: 100%;
  left: 50%;
  line-height: normal;
  opacity: 1;
  position: absolute;
  right: auto;
  top: auto;
  visibility: visible;
  width: 5px;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-zoom-level {
background-color: var(--steinmann-text-color);
  bottom: 1px;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: block;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: auto;
  left: 50%;
  line-height: normal;
  opacity: 1;
  position: absolute;
  right: auto;
  top: auto;
  visibility: visible;
  width: 5px;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-zoom-reset {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: block;
  font-family: Arial, sans-serif;
  font-size: 11px;
  height: 25px;
  left: auto;
  line-height: 25px;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: visible;
  width: 100%;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-submenu.vjs-menu-quality.vjs-hidden {
background-color: rgba(0, 0, 0, 0);
  bottom: auto;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: default;
  display: none;
  font-family: Arial, sans-serif;
  font-size: 13px;
  height: auto;
  left: auto;
  line-height: normal;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  visibility: visible;
  width: auto;
  z-index: auto;
}
*/

.vjs-steinmann-ui .vjs-picture-in-picture-control.vjs-control.vjs-button {
background-color: rgba(0, 0, 0, 0);
  bottom: 0px;
  box-sizing: border-box;
  color: var(--steinmann-second-color);
  cursor: pointer;
  display: block;
  font-family: Arial;
  font-size: 13px;
  height: 40px;
  left: 0px;
  line-height: normal;
  opacity: 1;
  position: relative;
  right: 0px;
  top: 0px;
  visibility: visible;
  width: 40px;
  z-index: auto;
}

.vjs-steinmann-ui .vjs-fullscreen-control.vjs-control.vjs-button {
background-color: rgba(0, 0, 0, 0);
  bottom: 0px;
  box-sizing: border-box;
  color: var(--steinmann-second-color);
  cursor: pointer;
  display: block;
  font-family: Arial;
  font-size: 13px;
  height: 40px;
  left: 0px;
  line-height: normal;
  opacity: 1;
  position: relative;
  right: 0px;
  top: 0px;
  visibility: visible;
  width: 40px;
  z-index: auto;
}

