.container {
	/* display: flex; */
	justify-content: center;
}

.icon {
	width: 100px;
	height: 100px;
}

.icon img {
	max-width: 100%;
	max-height: 100%;
	cursor: pointer;
}

.popup-container {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

.popup {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	padding: 20px;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

.popup img {
	max-width: 100%;
}

.popup audio {
	display: block;
	margin-top: 10px;
	margin: auto;
}

.close-btn {
	position: absolute;
	font-size: 30px;
	font-weight: bold;
	color: black;
	cursor: pointer;
}

.close-btn.top {
	top: 10px;
	right: 20px;
}

.close-btn.bottom {
	bottom: 10px;
	right: 20px;
}





/* Style for the popup window */
.pp {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	width: 90%;
	max-width: 800px;
	height: 0;
	padding-bottom: 56.25%;
	background-color: #FFF;
	border: 1px solid #CCC;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
	overflow: hidden;
}

/* Style for the video */
.pp iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Style for the close button */
.close-button {
	position: absolute;
	top: 10px;
	right: 10px;
	color: #AAA;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
	z-index: 2;
}