#pop-up {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;

	&.fechado {
		display: none;
		visibility: hidden;
	}

	span,
	a {
		display: block;
		width: min-content;
		position: relative;
	}

	img {
		width: auto;
		max-width: 90vw;
		height: auto;
		max-height: 90vh;
	}

	i#fechar-pop-up {
		display: block;
		width: 30px;
		height: 30px;
		position: absolute;
		right: 0;
		top: 0;
		text-indent: -30000px;
		cursor: pointer;
		background: url(bt-fechar-pop-up.webp) no-repeat center top;
		background-size: 30px 30px;
		background-color: #666;

		&:hover {
			background-color: #9d9d9d;
		}
	}
}
