.modal{
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	animation: fadeIn 0.25s;
}

@keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

.modal .blocker{
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.747);
	z-index: 1;
}

.modal .content{
	position: relative;
	width: 17.7rem;
	margin: 1rem;
	padding: 2.15rem;
	background: #5B2577;
	border-radius: 0.4rem;
	color: #fff;
	z-index: 2;
}

.modal .content *:first-child{
	margin-top: 0;
}

.modal .content p{
	line-height: 1.2rem;
	text-align: justify;
}

.modal.hide{
	display: none;
}

.modal button.close{
	height: auto;
	padding: 0;
	background-color: transparent;
	border: none;
	color: #fff;
	font-size: 1.5rem;
	position: absolute;
	right: 0.75rem;
	top: 0.75rem;
}