/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
body {
	font-family: Helvetica, Arial, sans-serif;
	max-width: 1024px;
}
.clickable {
	cursor: pointer;
}
.videos {
	width: 100%;
	clear: both;
	/* display: inline-flex;
	flex-wrap: wrap; */
  gap: 15px;
}
.video {
	/* flex: 46%; */
	width: 100%;
	padding: 10px;
  border: 1px solid #eee;
}
@media only screen and (max-width: 600px) {
	.video {
		flex: 100%;
		margin-right: 0;
	}
}
.video-title {
	font-weight: bold;
}

/**
 * Style: default
 */
.video-content {
  padding-right: 5%;
}
/**
 * Style: slim
 */
.style-slim .video {
  display: flex;
}
.style-slim .video-content {
  width: 60%;
}
.style-slim .video-content-right {
  width: 40%;
}



/**
 * Videoplayer
 */
.video-player {
  position: relative;
  padding-top: 56.25%;
  cursor: pointer;
}
.video-player:hover {
  opacity: 0.9;
}
.video-player img,
.video-player iframe {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}
.video-player .video-player__dauer {
	position: absolute;
	bottom: 5px;
	left: 10px;
	font-size: 20px;
	color: #FFF;
	box-shadow: 2px 2px 5px 0px rgba(117,117,117,1);
}
.clearfix::before {
	content: "";
	display: inline-block;
	clear: both;
	height: 0;
	width: 0;
}