.messageBox {
	position: fixed;
	z-index: 9999;

	width: 280px;
	right: 20px;
	bottom: 0;

	background: #fff;
	border-radius: 10px 10px 0 0;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12),
		0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.messageBox .messageBox-header {
	font-size: 16px !important;

	padding: 10px 18px !important;

	color: #fff !important;
	background-color: #076bd0;

	cursor: pointer;
	border-radius: 10px 10px 0 0;
}

.messageBox p {
	font-size: 14px;

	margin: 0 7px;
	padding: 10px 10px;

	color: #333;
}

.messageBox hr {
	margin: 0;
}

.messageBox form {
	padding: 10px;
}

.messageBox label {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	font-weight: bold;

	width: 240px;
	max-width: 240px;
	margin: 0 7px;
}

.messageBox input,
.messageBox textarea {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;

	width: 240px;
	max-width: 240px;
	margin: 0 7px;

	color: #333;

	border: none;
	border-bottom: 1px solid #f0f0f0;
}

.messageBox input:focus,
.messageBox textarea:focus {
	outline: none;
	box-shadow: none;
}

.messageBox button[type="submit"] {
	display: block;

	width: 100px;
	height: 35px;
	line-height: 35px;
	margin: 10px auto;
	padding: 0 20px;

	border: none;

	cursor: pointer;
	border-radius: 5px;

	color: #fff !important;
	background-color: #076bd0;
}

.messageBox textarea {
	min-height: 80px;
}

.messageBox .invalid-feedback {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 10px;

	width: 240px;
	max-width: 240px;
	margin: 0 7px;
}

.messageBox .alert {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;

	margin: 0 7px;
}

@media screen and (max-width: 676px) {
	.messageBox {
		right: 50%;
		left: 50%;
		transform: translateX(-50%);
	}
}
