/*
  Player Skin Designer for Video.js
  http://videojs.com

  To customize the player skin edit
  the CSS below. Click "details"
  below to add comments or questions.
  This file uses some SCSS. Learn more
  at http://sass-lang.com/guide)

  This designer can be linked to at:
  https://codepen.io/heff/pen/EarCt/left/?editors=010
*/
.video-js {
  /* The base font size controls the size of everything, not just text.
     All dimensions use em-based sizes so that the scale along with the font size.
     Try increasing it to 15px and see what happens. */
  font-size: 10px;
  /* The main font color changes the ICON COLORS as well as the text */
  color: #ffffff;
}

/* The "Big Play Button" is the play button that shows before the video plays.
   To center it set the align values to center and middle. The typical location
   of the 0button is the center, but there is trend towards moving it to a corner
   where it gets out of the way of valuable content in the poster image.*/
.vjs-default-skin .vjs-big-play-button {
  /* The font size is what makes the big play button...big.
     All width/height values use ems, which are a multiple of the font size.
     If the .video-js font-size is 10px, then 3em equals 30px.*/
  font-size: 3em;
  /* We're using SCSS vars here because the values are used in multiple places.
     Now that font size is set, the following em values will be a multiple of the
     new font size. If the font-size is 3em (30px), then setting any of
     the following values to 3em would equal 30px. 3 * font-size. */
  /* 1.5em = 45px default */
  line-height: 2em;
  height: 2em;
  width: 2em;
  /* 0.06666em = 2px default */
/*  border: 0.06666em solid #ffffff;*/
  border: 3px solid rgba(255, 255, 255, 0.5);
  /* 0.3em = 9px default */
  border-radius: 2em;
  /* Align center */
  left: 50%;
  top: 50%;
  margin-left: -1em;
  margin-top: -1em;
}

.video-js .vjs-big-play-button:before {
  color: rgba(255,255,255, 0.5);
  top: -2px;
}

.video-js:hover .vjs-big-play-button:before {
  color: rgba(255,255,255, 1);
}

.video-js:hover .vjs-big-play-button, .video-js .vjs-big-play-button:focus {
  background: rgba(255, 255, 255, 0);
}

/* The default color of control backgrounds is mostly black but with a little
   bit of blue so it can still be seen on all-black video frames, which are common. */
.video-js .vjs-control-bar,
.video-js .vjs-big-play-button,
.video-js .vjs-menu-button .vjs-menu-content {
  /* IE8 - has no alpha support */
/*  background-color: rgba(255, 255, 255, 0);*/
  /* Opacity: 1.0 = 100%, 0.0 = 0% */
  background-color: rgba(255, 255, 255, 0);
/*background: blue;*/

}

/* Slider - used for Volume bar and Progress bar */
.video-js .vjs-slider {
  background-color: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0.2);
}

/* The slider bar color is used for the progress bar and the volume bar
   (the first two can be removed after a fix that's coming) */

.video-js .vjs-play-progress {
  background: white;
}

.vjs-volume-level {
  background: white !important;
}

/* The main progress bar also has a bar that shows how much has been loaded. */
.video-js .vjs-load-progress {
  /* For IE8 we'll lighten the color */
/*  background: rgba(255, 255, 255, 0);*/
  /* Otherwise we'll rely on stacked opacities */
  background: rgba(255, 255, 255, 0.2);
/*background: red; */
}

/* The load progress bar also has internal divs that represent
   smaller disconnected loaded time ranges */
.video-js .vjs-load-progress div {
  /* For IE8 we'll lighten the color */
/*  background: rgba(255, 255, 255, 0);*/
  /* Otherwise we'll rely on stacked opacities */
  background: rgba(255, 255, 255, 0.2);
/*background: purple;*/
}

/* All UI Elements Container */
.vjs-control-bar {
  width: 90% !important;
  margin: 0 auto;
  height: 70px !important;
}

/*
.vjs-progress-control {
  border: 1px solid blue;
  height: 30px !important;
  width: 100% !important;
}
*/

/* Progress Bar */
.vjs-progress-control {
  height: 5px !important;
  width: 100% !important;
  position: absolute !important;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  margin-bottom: 20px !important;
}

/* Progress bar circle */
.video-js .vjs-play-progress:before {
  display: none;
}

/* Button > Playback speed */
.vjs-playback-rate {
  display: none;
}

/*
.vjs-fullscreen-control {

}

#lodi-video-1 > div.vjs-control-bar > button.vjs-fullscreen-control.vjs-control.vjs-button {
}
*/

/* Button > Fullscreen */
.vjs-fullscreen-control.vjs-control.vjs-button {
  /* display: none; */
  display: flex;
  margin-top: 20px;
  height: auto;
  position: absolute;
  /* right: 115px; */
  right: 80px;
}

/* Remaining time */
.video-js .vjs-time-control {
  padding: 0;
  min-width: 0;
  padding-left: 3px;
  padding-right: 3px;
  font-size: 13px;
}

/* Current time */
.video-js .vjs-current-time {
  display: flex;
  margin-top: 16px;
  height: auto;
}

.vjs-remaining-time.vjs-time-control.vjs-control {
  display: none;
}

/* Current time */
.vjs-current-time.vjs-time-control.vjs-control {
  position: absolute;
  /* right: 43px; */
  right: 49px;
  border: 0px solid red;
}

/* Remaining time */
.vjs-remaining-time-display {
  display: none;
  /* margin-top: 20px; */
  margin-top: 16px;
  height: auto;
  border: 0px solid red;

}

/* Time Divider */
.vjs-time-divider {
  display: flex;
  /* margin-top: 20px; */
  margin-top: 16px;
  height: auto;
  position: absolute;
  right: 38px;
  border: 0px solid red;
}

/* Remaining time */
.video-js .vjs-duration {
  display: block;
  /* margin-top: 20px; */
  margin-top: 16px;
  height: auto;
  float: right;
  position: absolute;
  right: 0;
  border: 0px solid blue;
}

/* Button > Play */
.video-js .vjs-play-control {
  height: auto;
  margin-top: 20px;
  margin-left: -10px;
}

/* Button > Volume */
.video-js .vjs-mute-control, .video-js .vjs-volume-menu-button {
  margin-top: 20px;
  height: auto;
}

/* Button > Volume > Make the volume bar always visible */
.video-js .vjs-menu-button-inline, .video-js .vjs-menu-button-inline, .video-js .vjs-menu-button-inline.vjs-slider-active, .video-js.vjs-no-flex .vjs-menu-button-inline {
  width: 12em;
}

.vjs-menu-button-inline .vjs-menu {
  opacity: 1;
}

/* Captions button placement */
div.vjs-control-bar > div.vjs-captions-button.vjs-menu-button.vjs-menu-button-popup.vjs-control.vjs-button {
  display: flex;
  margin-top: 20px;
  height: auto;
  position: absolute;
  /* right: 80px; */
  right: 115px;
}

/* Captions Menu */
#lodi_video_main > div.vjs-control-bar > div.vjs-captions-button.vjs-menu-button.vjs-menu-button-popup.vjs-control.vjs-button > div > ul {
  margin-top: 20px;
}

/*
#button-episodes {
  position: absolute;
  margin-top: 4px;
  right: 170px;
}
*/

// -------------------------------

.lodi-video-grid >  .lodi-video-header {
  font-size: 16px;
  font-family: serif;
  margin-bottom: 0;
  margin-top: 5px;
}

.lodi-video-header2 {
  font-size: 12px;
  font-family: sans-serif;
}

.lodi-video-caption {
  font-size: 12px;
  font-family: sans-serif;
}

.lv-carousel-container {
  margin-top: 20px;
}

.lv-carousel {
}

.lv-carousel-item {
  margin-left: 10px;
  margin-right: 10px;

}

.lodi-video-header-glide {
  font-size: 14px;
  font-family: sans-serif;
  color: white;
  margin-bottom: 0;
}

.lodi-video-caption-glide {
  font-size: 14px;
  font-family: sans-serif;
  color: white;
  margin-bottom: 0;
}

.lv-carousel-tn-text {
  color: white;
  margin-top: -115px;
  text-align: center;
}

.glide__arrow {
  border: none;
  box-shadow: none;
  border-radius: 0;
  text-shadow: none;
  transform: none;
  /* top: 27%; */
  /* padding: none; */
  position: absolute;
  display: flex;
  top: 50%;
}

.glide__arrow--left {
  /* left: 0; */
}

.glide__arrow--right {
  /* right: 0; */
}

.lv-play-button-carousel-tn {
  width: 40px;
  height: 40px;
  /* margin-top: -80px; */
}

.lodi-video-link {
  display: block;

}

.glide__arrows {
}

#button-episodes {
  /* margin-top: 20px; */
  margin: 0;
  padding: 0;
  height: 15px;
  width: 15px;

  position: absolute;
    /* right: 170px; */
    right: 162px;
  top: 18px;

}

#button-episodes-span {
  margin: 0;
  padding: 0;
  height: 15px;
  width: 15px;
}

/* // Extra small devices (portrait phones, less than 576px) */
.glide__arrow, .av_arrow {
  top: 36%;
}

/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

  .glide__arrow, .av_arrow {
  }

  #button-episodes {
    top: 25px;
  }

}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

  .glide__arrow, .av_arrow {
    top: 38%;
  }

  #button-episodes {
    top: 25px;
  }

}

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

  .glide__arrow, .av_arrow {
    top: 37%;
  }

}

/* // X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

  .glide__arrow, .av_arrow {
    top: 36%;
  }

}

/* // XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {

  .glide__arrow, .av_arrow {
  }

}

/* Need this to get rid of black background that sometimes
 * is visible on the borders of the main video tag. */
.video-js {
  background-color: transparent;
}


/* Focus blur for ADA and keyboard nav > Video player */
.video-js:focus {
  outline: none !important;
}


