/* This wrapper is what moves left and right for the slide effect */
#lpod-video-slides-wrapper{visibility: hidden; opacity:0; transition: transform 0.5s ease-in-out;}
#lpod-video-slides-wrapper.lpod-slider-initialized{ visibility: visible; opacity:1; }
.lpod-video-slider-wrp{position: relative;}

/* This class handles the video expansion within a slide */
.lpod-video-container.video-expanded .lpod-video-text-content {
	flex-basis: 0;
	opacity: 0;
	margin-right: -2rem;
	width: 0;
}
.lpod-video-container.video-expanded .lpod-video-wrapper {
	flex-basis: 100%;
}
.lpod-video-container.video-expanded .play-btn {
	opacity: 0;
	pointer-events: none;
}
.lpod-video-container.video-expanded .close-btn {
	opacity: 1;
	pointer-events: auto;
}
/* Hide progress bar by default, show when video is expanded */
.progress-bar-container {
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}
.lpod-video-container.video-expanded .progress-bar-container {
	opacity: 1;
}
.video-fullscreen__card-play-icon-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  width: 72px;
  height: 72px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  grid-gap: 3px;
  gap: 3px;
  cursor: pointer;
  transition: transform .1s ease-out,left .1s ease-out,top .1s ease-out;
  pointer-events: none;
  border: 2px solid #0073cd;
}

.video-fullscreen__card-play-icon-wrapper .video-fullscreen__card-play-icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-color: transparent transparent transparent #000;
  border-style: solid;
  border-width: 10px 0 10px 17px;
}

.video-fullscreen__card-play-icon-wrapper .play-icon-content {
  color: #333;
  text-align: center;
  font-feature-settings: "liga" off,"clig" off;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 18px;
  letter-spacing: 1px;
}

.progressbar-container {
  display: flex !important;
  flex-direction: row;
  max-width: 80%;
  height: 15px;
  grid-gap: 12px;
  gap: 12px;
  justify-content: flex-start;
  width: 350px;
  position: relative;
  border: none;
  align-items: center;
  z-index: 9;
}

.progressbar-container .progressbar-bricks {
  width: 0;
  flex: 1 1;
  list-style: none;
  cursor: pointer;
  position: relative;
  border: none;
  padding: 15px 0;
}

.progressbar-container .progressbar-bricks.active {
  flex: 3 1;
}

.progressbar-container .progressbar-bricks .progress-bar-brick-filler-container {
  background-color: #d3d3d3;
  width: 100%;
  height: 1px;
  transform: scaleY(2.5);
}

.progressbar-container .progressbar-bricks {
  list-style: none;
  cursor: pointer;
}

.progressbar-container .progressbar-bricks .progress-bar-brick-filler-container {
  background-color: #d3d3d3;
  width: 100%;
  height: 1px;
  transform: scaleY(2.5);
}