.episodes-scroller,.cust-scroller {
  display: flex;
  align-items: center;
  width: 100%;
  overflow-x: auto;
  	position: absolute;
  width: 100%;
  height: 100px;
  top: 64%;
  z-index: 2;
}
 
.episodes-container,.cust-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  background: #000;
  padding: 10px 0;
  width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.episodes-container::-webkit-scrollbar,.cust-container::-webkit-scrollbar {
  display: none;
}

.episode-link,.cust_lnk {
  display: flex; 
  min-width: 170px;
  height: 50px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  flex-shrink: 0;
  cursor: pointer;
  line-height: 1.5;
  position:relative;
  font-weight: 300;
}

.episode-link::before,
.cust_lnk::before
 {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: rgb(102, 102, 102);
  pointer-events: none;
}

.episode-link:hover,
.cust_lnk:hover
{
text-decoration:none;
  background: rgba(241, 245, 249, 0.2);
}

.episode-link.active::after,.cust_lnk.active::after {
  content: " ";
  position: absolute;
  top: 5px;
  right: 10px;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background: rgb(255, 136, 34);
  pointer-events: none;
  transition: opacity 0.2s linear;
}

.episode-link.active,.cust_lnk.active{
  color: rgb(255, 136, 34);
}

.episode-link .ep_title ,.cust_lnk .ep_title{
  color: #fff;
  padding: 5px 10px;
  pointer-events: none;
  transition: color 0.2s linear;
}

.episode-link.active .ep_title,.cust_lnk.active .ep_title{
  color: rgb(255, 136, 34);
}
.voiceover-tabs>.episodes-container{
	justify-content:flex-end;
}
.scroll-btn {
  position: absolute;
  width: 30px;
  height: 50px;
  background: transparent;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 9999;
}

.scroll-btn:hover {
  background: none;
}

.scroll-btn.left {
  left: 0;
}

.scroll-btn.right {
  right: 0;
}

.player-container {
  margin: 20px 0;
  position:relative;
  background: #000;   
}

.video-player {
  width: 100%;
  height: 500px;
  position:relative;
  z-index:1;
  aspect-ratio: 16/9; 
}
.voiceover-tabs {
	text-align:center;
	
}
.voiceover-tabs .cust_lnk_voice{
background: #2b2a2a;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 10px 15px;
  border: none;
  color: #fff;
  margin: 5px;
  cursor: pointer;
  appearance: auto;
  display:inline-block;
}
.voiceover-tabs .cust_lnk_voice.active{
color:#ff8822;
}
.video-player iframe {
  width: 100%;
  height: 100%;
}

.source-tabs {
  margin-bottom: 10px;
}

.source-tab {
  display: inline-block;
  padding: 8px 15px;
  margin: 5px;
  text-decoration: none;
  color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: rgba(83, 83, 83, 0.9);  
}

.source-tab.active {
  background: #007bff;
  color: white;
  border-color: #007bff;
}

.episodes {
  margin: 10px 0;
}
.player-content{
 
}
.active_dot {
  position: absolute;
  top: 5px;
  right: 10px;
  color: rgb(255, 136, 34);
  font-size: 10px;
  pointer-events: none;
  transition: opacity 0.2s linear;
}