/* Video player
======================================== */
.video-controls{
	display: grid;
	grid-template-columns: 1fr max-content;
	column-gap: var(--cols-items);
}

/* Time bar */
.video-controls--bar{
	position: relative;
	width: 100%;
	height: 1px;
	align-self: center;
	background-color: rgba(255, 255, 255, 0.2);
}
.video-controls--bar::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	width: 100%;
	height: 30px;
	transform: translateY(-50%);
	cursor: ew-resize;
	z-index: 2;
}

/* Progress */
.video-controls--progress{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.8);
	pointer-events: none;
	z-index: 1;
}

/* Sound */
.video-controls--sound{
	margin: var(--font-sans--mblock-s) 0;
	cursor: pointer;
}
.video-controls--sound > .active{
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}