/* Videospeler styling */
.embed-wrapper {
	position: relative;
	padding-top: 0;
	width: 100%;
	overflow: hidden;
	margin-bottom: 10px;
}

.embed-wrapper iframe,
.embed-wrapper video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Branding elementen */
.playertoplogo {
	text-align: right; /* Rechts uitlijnen */
	margin-bottom: 0px; /* Ruimte creëren tussen het logo en de video */
}

.playertoplogo img {
	max-width: 120px; /* Zorg ervoor dat het logo niet uitrekt */
	min-width: 100px;
	height: auto; /* Behoud de aspect ratio van het logo */
	display: inline-block; /* Zorgt voor nette uitlijning in de container */
}

.player_lt_promo {
	z-index: 1;
	height: 0;
	width: 15%;
	min-width: 30px;
	max-width: 80px;
	position: relative;
	top: 20px;
	left: 10px;
	display: none;
}

@media only screen and (min-width: 770px) {
	.embed-wrapper:hover .player_lt_promo {
		display: block;
	}
}


