.section {
	position: relative;
	height: 100vh;
}

.section .section-center {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

#code {
	color: brown;
}

@media screen {
	#printSection {
		display: none;
	}
}

@media print {
	body * {
		visibility: hidden;
	}

	#printSection,
	#printSection * {
		visibility: visible;
	}

	#printSection {
		position: absolute;
		left: 0;
		top: 0;
	}
}

#addition {
	font-family: 'Montserrat', sans-serif;
	background-image: url('../img/background.jpg');
	background-size: cover;
	background-position: center;
}

#addition::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.5);
}

.addition-form {
	max-width: 642px;
	width: 100%;
	margin: auto;
}

.addition-form .form-header {
	text-align: center;
	margin-bottom: 25px;
}

.addition-form .form-header h1 {
	font-size: 45px;
	text-transform: uppercase;
	font-weight: 700;
	color: #e67e22;
	text-shadow: 2px 5px #000;
	margin: 0px;
}

.addition-form>form {
	background-color: #101113;
	padding: 30px 20px;
	border-radius: 3px;
}

.addition-form .form-group {
	position: relative;
	margin-bottom: 15px;
}

.addition-form .form-control {
	background-color: #f5f5f5;
	border: none;
	height: 45px;
	border-radius: 3px;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-weight: 400;
	color: #101113;
}

.addition-form .form-control::-webkit-input-placeholder {
	color: rgba(16, 17, 19, 0.3);
}

.addition-form .form-control:-ms-input-placeholder {
	color: rgba(16, 17, 19, 0.3);
}

.addition-form .form-control::placeholder {
	color: rgba(16, 17, 19, 0.3);
}

.addition-form input[type="date"].form-control:invalid {
	color: rgba(16, 17, 19, 0.3);
}

.addition-form select.form-control {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.addition-form select.form-control+.select-arrow {
	position: absolute;
	right: 0px;
	bottom: 6px;
	width: 32px;
	line-height: 32px;
	height: 32px;
	text-align: center;
	pointer-events: none;
	color: #101113;
	font-size: 14px;
}

.addition-form select.form-control+.select-arrow:after {
	content: '\279C';
	display: block;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.addition-form .form-label {
	color: #fff;
	font-size: 12px;
	font-weight: 400;
	margin-bottom: 5px;
	display: block;
	text-transform: uppercase;
}

.addition-form .submit-btn {
	color: #fff;
	background-color: #e67e22;
	font-weight: 700;
	height: 50px;
	border: none;
	width: 100%;
	display: block;
	border-radius: 3px;
	text-transform: uppercase;
}