/* #region Form */
@font-face {
	font-family: "Rajdhani-regular";
	src: url("../webfonts/rajdhani-regular-webfont.woff") format("woff");
}
/* #endregion */

/* #region ContactButton */
.contact-button-container
{
	bottom: 0%;
	right: 0%;
	display: block;
	position: absolute;
	width: 100%;
}

.contact-button-wrapper
{
	display: flex;
	align-items: right;
	justify-content: right;
}

.contact-button
{
	background-color: brown;
	color: white;
	cursor: pointer;
	padding-left: 1rem;
	padding-right: 1.5rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	border: none;
	font-size: max(1.25vw, 18px);
	transition: 0.3s;
	opacity: 70%;
	z-index: 5;
	text-transform: uppercase;
}

.contact-button:hover
{
	background-color: #cb3333;
	opacity: 100%;
}

.machine-form-container
{
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: block;
	position: absolute;
	box-sizing: border-box;
	background-color: white;
	z-index: 10;
	overflow-y: auto;
}

/* #endregion */