.popup{
	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;
}
.popup .conteudo{
	width: 100%;
	display: block;
}
.popup .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;
}
.popup .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);
}
.popup .conteudo .img i.fa-times:hover{
	background-color: var(--color-destaque-2);
}
.popup .conteudo .img a{
	width: max-content;
	display: blockx;
}
.popup .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) {

}