.video-player__wrapper {
	height: 56.5vw;
	max-height: 315px;
	width: 100%;
	max-width: 560px;
	background-color: var(--byu-grey-darkest);
	margin: 1rem auto 0;
}

.video-player__left-align-container {
	height: 100%;
	max-width: 800px;
}

.video-player__left-align-container:hover{
	cursor: pointer;
}


.video-player {
	height: 100%;
	width: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
}

#default-video-player {
	display: none;
}

.video-player__options-wrapper,
.video-player__duration {
	font-family: var(--ibm-plex-sans-ssm);
	text-transform: uppercase;
}

.video-player__play-icon-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1rem;
	background-color: rgba(0, 0, 0, 0.6);
	border-radius: 50%;
}

.video-player__play-icon-wrapper:hover {
	cursor: pointer;
}

.video-player__play-icon {
	height: 29px;
	width: 29px;
	margin-left: 4px;
	opacity: 1;
}

.video-player__duration {
	font-size: 0.85rem;
	color: var(--byu-white);
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 0 0.5rem 0.5rem 0;
}

.video-player__options-wrapper {
	margin-top: 1.25rem;
}

.video-player__options-wrapper-single {
	margin-top: 0.5rem;
}

.video-player__options-left-align-container {
	display: flex;
	justify-content: center;
	font-size: 0.7rem;
	font-weight: 500;
	color: var(--byu-grey-medium-dark);
	flex-wrap: wrap;
	gap: 8px;
}

.video-player__options-wrapper .single-speech__button {
	margin: 0;
}

@media (min-width: 1024px) {

	.video-player__wrapper {
		width: calc(100% - 17rem);
		max-width: calc(1240px - 17rem);
		background-color: unset;
		margin: 1.75rem auto 0;
	}

	.video-player {
		width: 560px;
		margin: 0 auto;
	}

	.video-player__play-icon-wrapper {
		padding: 1.25rem;
	}

	.video-player__play-icon {
		height: 40px;
		width: 40px;
	}

	.video-player__options-wrapper {
		width: calc(100% - 17rem);
		max-width: calc(1240px - 17rem);
		margin: 1.25rem auto 0;
	}

	.video-player__options-wrapper-single {
		margin: 0.5rem auto 0;
	}

	.video-player__options-left-align-container {
		max-width: 800px;
	}
}
