@charset "UTF-8";

@keyframes plyr-progress {
	to {
		background-position: 25px 0;
		background-position: var(--plyr-progress-loading-size, 25px) 0;
	}
}

@keyframes plyr-popup {
	0% {
		opacity: .5;
		transform: translateY(10px);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes plyr-fade-in {
	0% {
		opacity: 0;
	}
	
	to {
		opacity: 1;
	}
}

.plyr__control svg {
	display: block;
	fill: currentColor;
	height: 18px;
	height: var(--plyr-control-icon-size, 18px);
	pointer-events: none;
	width: 18px;
	width: var(--plyr-control-icon-size, 18px);
}

.plyr__menu .plyr__control svg {
	transition: transform .3s ease;
}

.plyr__menu .plyr__control[aria-expanded=true] svg {
	transform: rotate(90deg);
}

.plyr__control--overlaid svg {
	left: 2px;
	position: relative;
}

.plyr__preview-thumb__image-container img, .plyr__preview-thumb__image-container:after {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.plyr__preview-thumb__image-container img {
	max-height: none;
	max-width: none;
}

.plyr__preview-scrubbing img {
	height: 100%;
	left: 0;
	max-height: none;
	max-width: none;
	object-fit: contain;
	position: absolute;
	top: 0;
	width: 100%;
}