
.example-marquee {
  position: relative;
    background-position: center center; /* Horizontally and vertically center the image */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    background-size: cover; 
}

/*.example-marquee .content {*/
/*  display: table;*/
/*  width: 100%;*/
/*  min-height: 400px;*/
/*  z-index: 1;*/
/*  position: relative;*/
/*      margin-top: 0;*/
/*}*/

.example-marquee .content {
    width: 100%;
    /*padding-top: 56.25%; */
    
    /* 16:9 aspect ratio (9 / 16 = 0.5625, or 56.25%) */
    min-height: 0; /* Remove min-height to prevent conflicts with aspect ratio */
    display: table;
     z-index: 1;
      position: relative;
      margin-top: 0;
}

.example-marquee .content .inner {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding-left: 16px;
  padding-right: 16px;
}

.example-marquee .content .inner h1,
.example-marquee .content .inner h2 {
  color: white;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
}

.example-marquee .content .inner h1 {
  font-size: 62px;
}

.example-marquee .video-background-controls span {
  font-size: 32px;
  display: inline-block;
  padding: 0px;
  margin: 0px;
  height: 32px;
  width: 32px;
  border-radius: 16px;
  line-height: 32px;
  border: none;
  background: none;
  appearance: none;
  color: white;
  filter: drop-shadow(0px 0px 1px black);
  cursor: pointer;
  opacity: 1;
  transition: all 250ms ease-in-out;
  margin-left: 5px;
}

.example-marquee .video-background-controls span:hover {
  opacity: 0.5;
}

:root {
  --seek-bar-thumb-color: #fff;
  --seek-bar-progress-background: #fff;
  --seek-bar-background: rgba(255, 255, 255, 0.4);
}

.example-marquee .seek-bar-wrapper {
  height: 6px;
  background: var(--seek-bar-background);
  position: relative;
}

.example-marquee .seek-bar-progress {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  overflow: hidden;
  background: transparent !important;
  border: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.example-marquee .seek-bar-progress::-webkit-progress-bar {
  background: transparent;
}

.example-marquee .seek-bar-progress::-webkit-progress-value {
  background: var(--seek-bar-progress-background);
}

.example-marquee .seek-bar-progress::-moz-progress-bar {
  background: var(--seek-bar-progress-background);
}

.example-marquee .seek-bar {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  top: calc(50% - 10px);
  z-index: 1;
  display: block;
  width: 100%;
  height: 20px;
  margin: 0;
  cursor: pointer;
  background: transparent;
}

.example-marquee .seek-bar {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  top: calc(50% - 10px);
  z-index: 1;
  display: block;
  width: 100%;
  height: 20px;
  margin: 0;
  cursor: pointer;
  background: transparent;
}

.example-marquee .seek-bar::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.example-marquee .seek-bar::-moz-range-track {
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.example-marquee .seek-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  margin-top: 3px;
  cursor: pointer;
  background: var(--seek-bar-thumb-color);
  border: 0;
  border-radius: 8px;
  transform: translateY(-50%);
  transition: opacity 0.4s ease-in-out;
}

.example-marquee .seek-bar::-moz-range-progress {
  margin-top: 0;
  background: transparent;
  border: 0;
}

.example-marquee .seek-bar::-moz-range-thumb {
  -moz-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  margin-top: 0;
  cursor: pointer;
  background: var(--seek-bar-thumb-color);
  border: 0;
  border-radius: 8px;
  transition: opacity 0.4s ease-in-out;
}
.example-marquee .fullscreen-toggle{
        width: 25px;
}
.example-marquee .seek-bar-wrapper ::-webkit-slider-thumb {
  opacity: 0;
}

.example-marquee .seek-bar-wrapper ::-moz-range-thumb {
  opacity: 0;
}

.example-marquee .seek-bar-wrapper:hover .seek-bar:not([disabled])::-webkit-slider-thumb {
  opacity: 1;
}

.example-marquee .seek-bar-wrapper:hover .seek-bar:not([disabled])::-moz-range-thumb {
  opacity: 1;
}