.team_player.has-team-video-seek {
	position: relative;
}

.team_video_seek {
	position: absolute;
	z-index: 8;
	right: 72px;
	bottom: 14px;
	left: 20px;
	height: 28px;
	cursor: pointer;
	touch-action: none;
	-webkit-tap-highlight-color: transparent;
	user-select: none;
}

.team_video_seek_track {
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	display: block;
	height: 3px;
	overflow: visible;
	transform: translateY(-50%);
	border-radius: 999px;
	background: rgba(255, 255, 255, .34);
	box-shadow: 0 1px 4px rgba(0, 0, 0, .22);
	transition: height .18s ease;
}

.team_video_seek_buffered,
.team_video_seek_played {
	position: absolute;
	inset: 0;
	display: block;
	transform: scaleX(0);
	transform-origin: left center;
	border-radius: inherit;
	pointer-events: none;
}

.team_video_seek_buffered {
	background: rgba(255, 255, 255, .48);
}

.team_video_seek_played {
	background: #fff;
	box-shadow: 0 0 4px rgba(0, 0, 0, .18);
}

.team_video_seek_thumb {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 11px;
	height: 11px;
	transform: translate(-50%, -50%) scale(.72);
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 1px 5px rgba(0, 0, 0, .3);
	opacity: 0;
	pointer-events: none;
	transition: opacity .18s ease, transform .18s ease;
}

.team_video_seek:hover .team_video_seek_track,
.team_video_seek:focus-visible .team_video_seek_track,
.team_video_seek.is-dragging .team_video_seek_track {
	height: 5px;
}

.team_video_seek:hover .team_video_seek_thumb,
.team_video_seek:focus-visible .team_video_seek_thumb,
.team_video_seek.is-dragging .team_video_seek_thumb {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}

.team_video_seek:focus-visible {
	outline: 2px solid rgba(255, 255, 255, .9);
	outline-offset: 1px;
	border-radius: 999px;
}

@media (hover: none), (pointer: coarse) {
	.team_video_seek_thumb {
		transform: translate(-50%, -50%) scale(.9);
		opacity: 1;
	}
}

@media (max-width: 767px) {
	.team_video_seek {
		right: 62px;
		bottom: 10px;
		left: 14px;
		height: 32px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.team_video_seek_track,
	.team_video_seek_thumb {
		transition: none;
	}
}
