.popup {
	display: none;
	position: fixed;
	z-index: 99999;
	padding-top: 20px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
	overflow: hidden;
}

.popup_content {
	position: relative;
	margin: auto;
	padding: 0;
	-webkit-animation-name: animatetop;
	-webkit-animation-duration: 0.4s;
	animation-name: animatetop;
	animation-duration: 0.4s;
	width: 80%;
	max-width: 650px;
	height: auto;
}

@-webkit-keyframes animatetop {
	from {
		top: -300px;
		opacity: 0;
	}

	to {
		top: 0;
		opacity: 1;
	}
}

@keyframes animatetop {
	from {
		top: -300px;
		opacity: 0;
	}

	to {
		top: 0;
		opacity: 1;
	}
}

.popup_imagem_full {
	width: 100%;
	height: 100%;
	float: left;
	position: relative;
	top: -35px;
}

.popup_imagem_full img {
	height: 100%;
	object-fit: cover;
	width: 100%;
	height: 100%;
	object-fit: cover;
	padding: 7px;
	background: #ffffff;
	border-radius: 8px;
	box-sizing: border-box;
}

.popup_youtube_full {
	width: 100%;
	position: relative;
	padding-bottom: 60%;
	height: 0;
}

.popup_youtube_full iframe {
	padding: 7px;
	background: #ffffff;
	border-radius: 8px;
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.popup_youtube_full .legenda {
	bottom: -35px;
	left: 50%;
	position: absolute;
	transform: translate(-50%, 40%);
	text-align: center;
}

.popup .legenda {
	display: flex;
	justify-content: center;
}

.popup .legenda span {
	background: #000;
	color: #ffffff;
	padding: 5px 20px;
	border-radius: 17px;
	margin-top: 5px;
	font-family: var(--fonte-open-sans);
}

.close {
	color: #000;
	float: right;
	font-size: 2.1875em;
	z-index: 999;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0.7;
	position: relative;
	right: -14px;
	top: -16px;
	background: #ffffff;
	height: 38px;
	width: 38px;
	text-align: center;
	border-radius: 50%;
	border: solid 1px #c1c1c1;
}

.close:hover,
.close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
	background: #dddddd;
}

@media (max-width: 768px) {
	.popup_content {
		width: 98%;
	}
}

@media (max-width: 700px) {
	.close {
		right: -2px;
	}
}