
.contact-form-outside {
	width: 100%;
	height: 100%;
	position: fixed;
	background-color: rgba(0,0,0,0.75);
	top: 0;
	left: 0;
	z-index: 9999;
	opacity: 0;
	display: none;
}

.contact-close {
	width: 50px;
	height: 46px;
	background-color: #ec7e27;
	color: white;
	text-align: center;
	padding-top: 10px;
	font-size: 24px;
	cursor: pointer;
}

.contact-form-container {
	margin-top: 33px;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: calc(100% - 132px);
	width: 100%;
}

.btn-contact-send[status="sending"] {
	background-color: #9F9F9F;
}
.btn-contact-send[status="success"] {
	background-color: #1AC421;
}
.btn-contact-send[status="error"] {
	background-color: #C62D2D;
}

#contact-form {
	padding: 16px 32px;	
	background-color: white;
	display: block;
	margin: auto;
	width: calc(100% - 64px);
	max-width: 600px;
	max-height: 100%;
	margin: auto;
	overflow-y: auto; 
}
#contact-form > p {
	padding: 8px 0;
	font-size: 12px;
}
#contact-form > input {
	padding: 8px 16px;
	width: calc(100% - 32px);
}
#contact-form > button {
	margin: 16px 0;
	font-size: 14px;
}