.modal-box.active-modal{
	display: block;
}
.modal-box{
	display: none;
}
.modal{
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	background-color: rgb(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
}
.fechar-modal{
	width: 40px;
	height: 40px;
	background-color:  #fc5c65;
	position: absolute;
	top: 0px;
	right: 0px;
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	cursor: pointer;
}
.modal-container{
	width: 40%;
	max-width: 400px;
	min-width: 310px;
	height: auto;
	background-color: #fff;
	position: relative;
	padding: 40px;
}

.modal-container input{
	width: 100%;
	height: 40px;
	border: solid 1px #ccc;
	margin: 0 0 10px 0;
	font-size: 14px;
	padding: 10px;
}
.textarea{
	width: 100%;
	border: solid 1px #ccc;
	padding: 10px;
	font-size: 14px;
}
.submit-modal{
	background-color: #fc5c65;
	color: #fff;
	border: none;
	cursor: pointer;
}
