.popup-general{
	position: fixed;
	background: rgba(0,0,0,.6);
	width: 100%;
	height: 100vh;
	left: 0;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	z-index: -1;
}

.popup-general .contenido{
	background: #fff;
	width: 100%;
	max-width: 600px;
	min-height: 100px;
	border-radius: 8px;
}

.popup-general.noanim.active{
	opacity: 1;
	z-index: 99999;
}

.popup-general.anim.active{
	z-index: 99999;
}

.popup-general .header-popup,
.popup-general .body-popup,
.popup-general .footer-popup{
	position: relative;
	padding: 10px;
}

.popup-general .icon-cerrar{
	background-image: url("data:image/svg+xml,%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3C!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools --%3E%3Csvg fill='%23000000' version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='64px' height='64px' viewBox='0 0 94.926 94.926' xml:space='preserve' stroke='%2314213D'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'/%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cg%3E%3Cpath d='M55.931,47.463L94.306,9.09c0.826-0.827,0.826-2.167,0-2.994L88.833,0.62C88.436,0.224,87.896,0,87.335,0 c-0.562,0-1.101,0.224-1.498,0.62L47.463,38.994L9.089,0.62c-0.795-0.795-2.202-0.794-2.995,0L0.622,6.096 c-0.827,0.827-0.827,2.167,0,2.994l38.374,38.373L0.622,85.836c-0.827,0.827-0.827,2.167,0,2.994l5.473,5.476 c0.397,0.396,0.936,0.62,1.498,0.62s1.1-0.224,1.497-0.62l38.374-38.374l38.374,38.374c0.397,0.396,0.937,0.62,1.498,0.62 s1.101-0.224,1.498-0.62l5.473-5.476c0.826-0.827,0.826-2.167,0-2.994L55.931,47.463z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	background-size: 10px;
	width: 25px;
	height: 25px;
	display: block;
	background-repeat: no-repeat;
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	border-radius: 50%;
	border: 2px solid #14213D;
	background-position: center;
}


.popup-general .header-popup .titulo{
	font-size: 20px;
}