/* Adicionando transição ao modal */
.modal-bloqueio-user {
	display: none;
	position: fixed;
	z-index: 999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.8);
	transition: opacity 0.3s ease;
   /* Adicionando transição ao botão fechar */
}
.modal-bloqueio-user .modal-content {
	display: flex;
	align-items: center;
	flex-direction: column;
	background-color: #fff;
	margin: 10% auto;
	padding: 20px;
	border: 1px solid #888;
	border-radius: 10px;
	width: 18%;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	transition: transform 0.3s ease;
	transform: translateY(-50px);
	opacity: 0;
	text-align: center;
}
.modal-bloqueio-user .modal-content .icone-topo {
	margin-top: 20px;
	margin-bottom: 35px;
}
.modal-bloqueio-user .modal-content .modal-body h1 {
	font-size: 25px;
	color: #d50632;
	text-transform: uppercase;
	margin-bottom: 10px;
	margin-bottom: 35px;
}
.modal-bloqueio-user .modal-content .modal-body h2 {
	font-size: 20px;
	color: #5e5f5f;
	margin-bottom: 35px;
}
.modal-bloqueio-user .modal-content .modal-body p {
	color: #5e5f5f;
	margin-bottom: 35px;
}
.modal-bloqueio-user.show {
	display: block;
}
.modal-bloqueio-user .close {
	opacity: 1;
	color: #e4e4e4;
	background-color: #941a32;
	font-size: 28px;
	font-weight: bold;
	width: 100%;
	border-radius: 20px;
	padding: 8px;
}
.modal-bloqueio-user .close:hover, .modal-bloqueio-user .close:focus {
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	background-color: #79162a;
}
