.cb-range {
	-webkit-appearance: none;
	 appearance: none;
	 background: transparent;
	 cursor: pointer;
	 width: 100%;
}
.cb-range:focus {
	outline: none;
}
.cb-range::-webkit-slider-runnable-track {
	background-color: #eee;
	border-radius: 8px;
	height: 3px;
}
.cb-range::-webkit-slider-thumb {
	-webkit-appearance: none;
	 appearance: none;
	 margin-top: -6px;
	 background-color: #fff;
	 height: 14px;
	 width: 14px;
	 border-radius: 50%;
}

.cb-range:focus::-webkit-slider-thumb {   
	border: 1px solid #fff;
	outline: none;
}

/* ff */
.cb-range::-moz-range-track {
	background-color: #eee;
	border-radius: 8px;
	height: 3px;
}
.cb-range::-moz-range-thumb {
	border: none;
	border-radius: 50%;
	background-color: #fff;
	height: 14px;
	width: 14px;
}
.cb-range:focus::-moz-range-thumb {
	border: 1px solid #fff;
	outline: none;
}

.cb-player {
	position: relative;
}
.cb-controls {
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	color: #fff;
	background: linear-gradient(to bottom, rgba(0, 0, 0, .1), rgba(0, 0, 0, .8));
	container-type: inline-size;
	container-name: controls;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
/*	transition: opacity 0.5s;*/
}
.cb-playing .cb-controls {
	animation-name: playing;
	animation-delay: 2s;
	animation-duration: 0.6s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}
.cb-track {
	padding: 0 5px;
}
.cb-buttons {
	line-height: 1;
	padding-bottom: 4px;
}
.cb-time, .cb-total {
	font-size: .925rem;
	width: 40px;
	text-align: center;
}
.cb-line {
	font-size: .925rem;
}
.cb-play {
	cursor: pointer;
}
.cb-play svg {
	width: 32px;
	height: 32px;
}
.cbiconpause {
	display: none;
}
.cb-playing .cbiconpause {
	display: inline-block;
}
.cb-playing .cbiconplay {
	display: none;
}
.cb-prev {
	margin-left: auto;
}
.cb-icon {
	padding: 0 10px;
	cursor: pointer;
}
.cb-prev svg, .cb-next svg {
	width: 24px;
	height: 24px;
}
.cb-fullscreen svg {
	width: 18px;
	height: 18px;
}
.cb-icon.cb-disabled {
	color: #ccc;
	cursor: default;
	visibility: hidden;
}
.cb-btn-cover {
	cursor: pointer;
}
.cb-btn-cover:before {
	position: absolute;
	bottom: 0;
	left: 14px;
	font-family: Ionicons;
	content: "\f488";
	font-size: 32px;
	line-height: 1.2;
	color: #fff;
	-webkit-text-stroke: 1px #000;
	text-stroke: 1px #000;
}
.news-item-double .cb-btn-cover:before {
	left: 16px;
	font-size: 38px;
}
.cb-buffering {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	z-index: 2;
	color: #fff;
	-webkit-text-stroke: 1px #000;
	text-stroke: 1px #000;
}
.cb-buffering .wait {
	width: 100%;
	height: 100%;
}
@keyframes playing {
	0%   {opacity: 1;}
	100% {opacity: 0; z-index: -1;}
}
@container controls (max-width: 300px) {
	.cb-times {
		display: none!important;
	}
}

#cbpmobile {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	background-color: #000;
	padding: 5px 0;
	z-index: 9998;
}
.cbpmobilewrap {
	color: #fff;
	width: 100%;
	height: 100%;
}
.cbpmobilewrap video {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.cbpmobileclose {
	position: absolute;
	top: 2px;
	right: 2px;
	font-size: 2.5rem;
	line-height: 1.3;
	color: #fff;
	background-color: #000;
	padding: 0 .75rem;
	z-index: 1;
	cursor: pointer;
}