.playlists-player {
	background: #222431;
	color: #fff;
    border-top: 2px solid #191b27;
}
.playlist_cover {
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.playlists-iframe {
	    aspect-ratio: 16 / 9;
	background: #000;
	margin-bottom: 4px;
}
.player_loading {
    position: absolute;
    top: calc(50% - 17.5px);
    left: 0;
    width: 100%;
    padding: 10px;
    text-align: center;
    pointer-events: none;
    transition: all 0.3s ease;
    opacity: 0;
}
.player_loading.show {
    opacity: 1;
}
.playlists-items {
	position: relative;
}
.playlists-items ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
	font-size: 0;
}
.playlists-items li {
	width: 140px;
	height: 40px;
	margin: 0px 0px 4px 4px;
	background: #2d3042;
	display: inline-block;
	font-family: Verdana;
	font-size: 12px;	
	overflow: hidden;
	box-sizing: border-box;
	position: relative;
	line-height: 40px;
	text-align: center;
	display: none;
    transition: all .3s;
}
.playlists-items li:hover {
	background: #312777;
	cursor: pointer;	
}
.playlists-items li.active {
	background: #3b2e92;
	color: #fff;
	font-weight: bold;
    cursor: default; /* был pointer */
    pointer-events: none; /* добавил */
}
.playlists-items li.visible {
	display: inline-block !important;
}

.playlists-videos .playlists-items li {
	width: 180px !important;
	text-align: left;
	padding: 0px 40px 0px 15px;
}
.playlists-view {
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	width: 40px;
	background-image:  url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAABJ0lEQVQ4jeXUsUqcURQE4NmAzWZ18QWEBdFYSLRNEbASAmmFdBYJSB4hvYXY21rkAUQbfQ5DQiAIS0gRUGMjrFrkS7H/wvJzfzcBKzPlmblzOecMJ/nv0GoiMJVkPcnzJL2q3E9ymuSk1Wrd/dUPaGMb55pxiR10Jpm9QL/B4KJQ/46XTWavMag9OMbCmGYeRzXNLTbqZku4rglPKm4ab/EO3ap2WNMOsDwye4rPhXaeoYOvY7UzdNEr6L+gHXwskFfVZ5sFbqvifha4/SdjkXgItIMV3DxAy98wM5rj+4JgtJSOyUu5wWp903sF02MsTojNHd4UB4APhrmqoynYP7B271QNM3nQYDzCL+xiuv7+vuMwm+RVkvkkc0l+Z3gcPuVfjsPjxx+UKYwH8JKOawAAAABJRU5ErkJggg==');
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.3;
    pointer-events: all;
}
.playlists-view:hover {
	opacity: 0.6;
	transform: 0.4ms easy 0.4ms;
}
.playlists-view.watched {
	opacity: 1;
}
.playlists-prev, .playlists-next {
	width: 40px;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0px;
	bottom: 4px;
	z-index: 100001;
	opacity: 0.8;
}
.playlists-prev {
	left: 0px;
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAeElEQVQ4jd3UzQ1AQBCG4Y2DhGqcNIBoQSuKUYm+uHkdrMTBZM0a2cR3n2ezmR/nfhMgBwagssBKYObIBvRW2JnJEluA2gpbgSY5VghYq8Y8ON5g3dP6LOpVTcy/7FGpKZ+g+k4H0LjBDqBxqyeg747DBbU7X0mzAymuSWfKXk8JAAAAAElFTkSuQmCC');
}
.playlists-next {
	right: 0px;
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAbUlEQVQ4jdWUsQ2AMAwEI6RIjANVJqBhAFZhmuwRGIySo4CGiCr+SORq6yzLfjvXNMAILIBXyGbg5CYBvVUYeWOTAgE4MulmlU5NS/ca0jWv64o7WJCOLF2KWvZ12OVpoUL0tM/hkQ6o3tdvuABsDUk5DyWdywAAAABJRU5ErkJggg==');
}
.playlists-prev:hover, .playlists-next:hover {
	opacity: 1;
	cursor: pointer;
}
.playlists-prev.disabled, .playlists-next.disabled {
	display: none;
}
.playlists-alert {
    background: #222431 url(../images/playlists_alert_bg.webp) center center / cover no-repeat;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0 10px;
    position: relative; /* добавил строку */
}

.playlists-alert-img {
	width: 140px;
}

.playlists-alert-descr {
    font-size: 20px;
    color: #cdcdcd;    display: flex;
    flex-direction: column;

}

.playlists-alert-btn {
    color: #fff;
    display: inline-block;
    padding: 0 20px;
    height: 40px;
    border-radius: 5px;
    text-align: center;
    background-color: #3bc18d;
    line-height: 42px;
    margin: 12px auto 5px auto;
    font-size: 13px;
    font-weight: bold;
}

.playlists-alert-btn:hover {
    color: #b5ffe2;
	text-decoration: none;
}

.playlists-alert_title {
    font-size: 18px;
    color: #fff;
    margin-top: 20px;
}

.playlists-alert_info .playlists-alert-descr {
    font-size: 15px;
    color: #cdcdcd;
    margin: 20px 0;
}
.player_cover {
    position: absolute;
    z-index: 300;
    width: 100%;
    height: 423px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.3s;
	top: 45px;
}
.poster_bg {
    position: absolute;
    width: 100%;
    height: 100%;
	filter: blur(15px);
}
.player_cover .poster_img {
    position: absolute;
    width: auto;
    height: 100%;
    object-fit: contain;
}
.player_cover_text {
    background-color: #0000008f;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    z-index: 5000;
    color: #bdbdbd;
    flex-direction: column;
}
.player_cover_text span.fa {
    margin-bottom: 10px;
    font-size: 70px;
    color: #fff;
}
.player-content {position: relative;}
.player_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: #fff;
    font-size: 12px;
    padding: 3px;
    border-bottom: 1px solid #191b27;
}
.header_load {
    position: relative;
}
.header_load:after {
    content: "";
    position: absolute;
    top: calc(50% - 9px);
    left: calc(50% + 5px);
    height: 8px;
    width: 8px;
    border-radius: 50%;
    border: 4px solid #ffffffc4;
    border-top: 4px solid #5f9fcf;
    -webkit-animation: mylistLoad 2s linear infinite;
    animation: mylistLoad 1200ms ease 50ms infinite normal forwards;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.3s;
}



.loading-timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: white;
  font-family: 'Arial', sans-serif;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  position: relative;
}

.timer-text {
  font-size: 1.5em;
  margin-bottom: 20px;
  animation: fadeIn 2s ease-in-out;
}

.timer-countdown {
  font-size: 3em;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.meteor-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  border: 2px solid transparent;
  border-top: 2px solid red;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 0;
  transform: translate(-50%, -50%);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.player-preloader {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 400px; /* или другая высота, соответствующая вашему плееру */
    background: #1a1a1a; /* или другой фон */
    border-radius: 8px; /* если нужно */
    position: relative;
}

.preloader-content {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #3498db; /* цвет спиннера */
    animation: spiner 1s ease-in-out infinite;
    margin: 0 auto 10px;
}

@keyframes spiner {
    to { transform: rotate(360deg); }
}