@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700;900&display=swap');

body {
	font-family: "Source Sans Pro";
	margin: 0;
}

* {
	box-sizing: border-box;
}

.content h1, .content h2 {
	color: #9BBE4C;
	line-height: 1;
	padding: 0 50px;
}

h1 {
	text-align: center;
}

h2 {
	font-size: 30px;
}

.choices {
		margin: 0 auto;
		padding: 10px 10px 15px 10px;
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: center;
}

.choices span{
		margin: 0 3px;
}

button {
	cursor: not-allowed;
	background: rgb(187, 187, 187);
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 35px;
	font-family: "Source Sans Pro";
	font-weight: 900;
	border: none;
	padding: 0;
}

.loaded,.loaded1 {
	cursor: pointer;
	background: black;
}

.purple {
	background: rgba(210, 0, 155, 1.0);
}

.blue {
	background: rgba(0, 125, 255, 1.0);
}

.advance {
	background-color: transparent;
	color: green
}

.active {
	background: rgb(148, 181, 0);
}

.content section {
	max-width: 1200px;
	padding-left: 10px;
	padding-right: 10px;
	margin: 0 auto
}

nav {
	width: 100%;
	margin-bottom: -50px;
}

img {
	width: 100%;
	height: auto;
}

/* 
	╔══════════════════════════════════════════════╗
	║ one-minute video									  ║
	╚══════════════════════════════════════════════╝
 */

.content .een-minuut {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	max-width: 800px;
	min-height: 200px;
	padding-top: 20px; 
}

.een-minuut img {
	width: 300px;
	transform: translateY(80%);
}

.een-minuut-backdrop {
	text-align: center;
	background-image: url(../../images/video_overview_new/1-minuut-backdrop.png);
	background-size: cover;
	background-position: center;

}

.een-minuut-intro {
	position: relative;
	background: rgba(109, 154, 27, 1.0);
	color: white;
	font-size: 19px;
	padding: 40px 40px 50px 40px;
	margin-bottom: 0px;
}

.een-minuut-intro:after {
	content: ' ';
	height: 0;
	position: absolute;
	width: 0;
	left: 120px;
	bottom: -37px;
	border: 20px solid transparent;
	border-top-color: rgba(109, 154, 27, 1.0);
}

/* #endregion One-minute-video ============= */

.kies {
	text-align: center;
	margin-top: 30px;
	margin-bottom: 30px;
}

.keuze-menu {
	max-width: 800px;
	margin-bottom: 100px;
	margin-top: 15px;
	padding: 0 20px;
	display: flex;
	justify-content: center;
	gap: 20px;
}

.keuze-menu a {
	border-radius: 20px;
	/*padding: 20px;*/
	background: rgba(218, 234, 188, 1.0);
	transition: all .5s ease;
}

.keuze-menu a:hover,
.video-thumbnails a:hover {
	transform: scale(1.1);
	transition: all .5s ease;
	filter: drop-shadow(0px 8px 4px rgba(0, 0, 0, .35));
	z-index: 10;
}

.video-thumbnails {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	z-index: 0
}

.video-thumbnails a {
	z-index: 0
}

.introtext {
	text-align: center;
	max-width: 500px;
	margin-bottom: 30px;
}

.choices .route-font{
	font-size: 32px;
}

/* 
	╔════════════════════════════════════════════════╗
	║ pop-up														 ║
	╚════════════════════════════════════════════════╝
 */

.overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	transition: opacity 500ms;
	visibility: hidden;
	opacity: 0;
	z-index: 10
}

.overlay:target {
	visibility: visible;
	opacity: 1;
}

.popup {
	width: 60%;
	margin: 70px auto;
	padding: 0px;
	background: #fff;
	border-radius: 15px;
	position: relative;
	transition: all 2s ease-in-out;
	z-index: 10;
}

.popup h2 {
	padding: 20px 10px 10px 20px;
	color: #333;
}

.popup .close {
	position: absolute;
	margin-top: -10px;
	top: 10px;
	right: 10px;
	transition: all 200ms;
	font-size: 70px;
	font-weight: bold;
	text-decoration: none;
	color: #333;
}

.popup .close:hover {
	color: #9BBE4C;
}

.popup .content {
	max-height: 30%;
	overflow: hidden;
}

/* #region: TOOLTIPS */
/* 
	╔════════════════════════════════════════════════╗
	║ HTML 5 Native Tooltips without Javascript!		 ║
	╚════════════════════════════════════════════════╝ 
*/
[data-tooltip] {
	position: relative;
	cursor: help;
	text-decoration: underline;
}

[data-tooltip][data-position=right]::before {
	top: -50%;
	left: 105%;
	transform: translateX(-20px);
}

[data-tooltip][data-position=bottom]::before {
	top: 150%;
	transform: translateY(-20px);
}

[data-tooltip][data-position=left]::before {
	top: -50%;
	right: 105%;
	left: auto;
	transform: translateX(20px);
}

[data-tooltip]:hover::before {
	transform: translate(0);
	opacity: 1;
}

[data-tooltip]::before {
	content: attr(data-tooltip);
	position: absolute;
	width: auto;
	display: block;
	background: #FFF;
	padding: 10px;
	top: -60px;
	box-shadow: 0px 2px 5px #0000008c;
	border-radius: 3px;
	text-align: center;
	left: -50px;
	z-index: 1;
	opacity: 0;
	pointer-events: none;
	transform: translateY(20px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* #endregion TOOLTIPS */
@media screen and (max-width: 1400px) {
	button {
		width: 30px;
		height: 30px;
		font-size: 20px;
	}
	section.content {
		padding: 0px 0px;
	}
	.choices .route-font{
		font-size: 20px;
	}
	.popup .close {
	    top: 10px;
	    right: 10px;
	    font-size: 50px;
	}
}
@media screen and (max-width: 992px) {
	button {
		width: 25px;
		height: 25px;
		font-size: 16px;
	}
	section.content {
		padding: 0px 0px;
	}
	.choices .route-font{
		font-size: 14px;
	}
	.popup .close {
	    top: 10px;
	    right: 10px;
	    font-size: 30px;
	}
}
@media screen and (max-width: 768px) {
	.popup {
		width: 90%;
	}

	.video-thumbnails {
		grid-template-columns: 1fr 1fr;
	}

	.content .een-minuut {
		grid-template-columns: repeat(1, 1fr);
		padding: 10px 0px 0px 10px;
	}

	.een-minuut-backdrop {
		min-height: 300px;
	}

	.video-thumbnails {
		grid-template-columns: 1fr;
	}

	.keuze-menu {
		display: grid;
		grid-template-columns: repeat(10, 1fr);
		margin-bottom: 20px;
	}

	.keuze-menu a:nth-child(1) {
		grid-column: span 4;
	}

	.keuze-menu a:nth-child(2) {
		grid-column: span 6;
	}

	.keuze-menu a:nth-child(3) {
		grid-column: span 6;
	}

	.keuze-menu a:nth-child(4) {
		grid-column: span 4;
	}
	button {
		width: 20px;
		height: 20px;
		font-size: 14px;
	}
	.choices {
		padding: 10px 10px 15px 10px;
	}
	.choices span{
		margin: 0 1px;
	}
	.choices .route-font{
		font-size: 14px;
	}
	.popup .close {
	    top: 10px;
	    right: 10px;
	    font-size: 30px;
	}
}

#route_backward,#route_forward{
	cursor: pointer;
}

/* overrule custom.css */
.content a:before {
	content: "";
	margin-right: 0;
}
iframe, video {
	position: static;
}