.pop_up {
	width: 100vw;
	height: 100vh;
	position: fixed;
	z-index: 12;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	padding: 25px 0;
}

.pop_up .conteudo {
	width: 100%;
	display: block;
}

.pop_up .conteudo .img {
	width: max-content;
	max-width: 100%;
	position: relative;
	padding: 20px;
	background-color: var(--color-white);
	border-radius: 10px;
	display: block;
	margin: 0 auto;
	text-align: center;
}

.pop_up .conteudo .img i.fa-times {
	position: absolute;
	right: -25px;
	top: -25px;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--color-white);
	background-color: var(--color-destaque);
	border-radius: 50%;
	font-size: 30px;
	cursor: pointer;
	transition: var(--transition-time);
}

.pop_up .conteudo .img i.fa-times:hover {
	color: var(--color);
}

.pop_up .conteudo .img a {
	width: 100%;
	display: block;
}

.pop_up .conteudo .img a img {
	width: max-content;
	width: auto;
	max-width: 100%;
	display: block;
	max-height: calc(100vh - 100px);
}

@media only screen and (min-width: 768px) {}

@media only screen and (min-width: 1024px) {}