:root {
	--text-color: #253246;
	--white-color: #ffffff;
	--theme-color: #253246;
	--theme-color-trans-90: rgba(37,50,70,.9);
	--theme-color-2: #9c0f21;
	--theme-color-3: #d9dbda;
	--grey-color: #efefef;
	--border-color: #cfd2d6;
	--yellow-color: #ffbf2e;
}


body {
	padding-top: 0;
	font-size: 1.125rem;
    line-height: 1.5rem;
}

form {
	max-width: 1000px;
	padding-bottom: 2rem;
	background: #fff;
}

form label {
	margin-bottom: 1rem;
}

form input:not([type="checkbox"], [type="radio"], [type="file"]),
form textarea {
	width: 100%;
	margin-bottom: 2rem;
	min-Height: 60px;
	border-radius: 0;
	border: 1px solid #ccc;
	padding: 0 1rem;
	outline: 0 !important;
	box-shadow: none !important;
}

form input[type="checkbox"],
form input[type="radio"] {
	border: 1px solid #aaa;
	box-shadow: none !important;
	outline: 0 !important;
}

form input[type="file"] {
	display: block;
	margin-bottom: .25rem;
}

.file-upload {
	margin-bottom: .5rem;
}

form textarea {
	min-height: 200px;
	padding: 1rem;
}	

form button.btn.btn-primary {
	text-transform: uppercase;
	padding: 1rem 1.5rem;
	background: var(--theme-color);
	margin-top: 1rem;
	margin-bottom: 2rem;
}

.form-check-input {
	margin-top: .25rem;

}

h3 {
	margin-top: 2rem;
	margin-bottom: 1.5rem;
}

.file-upload i{
	font-style: normal;
}

.file-upload i span {
	font-weight: 500;
}

h4 {
	margin-top: 1rem;
}

.add-upload {
	visibility: hidden;	
}

.add-upload.visible {
	visibility: visible;	
}

.upload-label {
	margin-bottom: 0;
}

@media (max-width: 575px) {

	.add-upload {
		display: none;	
	}

	.add-upload.visible {
		display: block;	
	}
}