#container-popup {
  display: none;
}
#container-popup.exibir {
	display: flex;
}
#bg_popup {
	background-color: #000;
	opacity: 0.8;
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 30;
}
#element_to_pop_up { 
	background-color: #fff;
	border-radius: 15px;
	color: #000;
	display: block;
	padding: 20px;
	/* min-width: 40px; */
	/* min-height: 180px; */
	position: fixed;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
	max-width: 500px;
	top: 40px;
	z-index: 30;
}
.b-close{
	cursor: pointer;
	position: absolute;
	right: 21px;
	top: 2px;
	font-size: 10px;
}