* {
	margin:0;
	padding:0;
}

body::-webkit-scrollbar {
	width: 8px;               /* width of the entire scrollbar */
	height: 8px;
}

body::-webkit-scrollbar-track {
	background: white;        /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
	background-color: #999999;    /* color of the scroll thumb */
	border-radius: 20px;       /* roundness of the scroll thumb */
	border: 0px solid ;  /* creates padding around scroll thumb */
}
body{
	background: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(120,120,120,1) 100%);
	height: 100%;
	margin: 0;
	background-repeat: no-repeat;
	background-attachment: fixed;
}
.header{
	background-image: url('redcar_form.jpg');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: contain;
}
.header img{
	max-width:100%;
    min-height:20rem;
	opacity:0;
	pointer-events:none;
}
.form-content{
	background-color:white;
	padding:3rem;
	z-index:3;
	margin-bottom:2rem;
	-webkit-border-bottom-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-bottomright: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}
.question-container{
	padding-top:1.7rem;
	border-right-radius:10px;
	margin-top:2rem;
	margin-bottom:2rem;
	border-left: 3px solid #666;
}
.question{
	margin-bottom:1rem;
	font-size:107%;
}
.form-inputs{
	position:relative;
	margin-bottom:25px;
}
.radio-selector{
	margin-bottom:2rem;
}
.input-container{
	margin-bottom:25px;
}
.input-container input{ 
	border:0;
	border-bottom:1px solid #555;  
	background:transparent;
	width:100%;
	padding:8px 0 5px 0;
	font-size:16px;
	color:#777;
	margin-bottom:1rem;
}
.input-container textarea{ 
	border:0;
	border-bottom:1px solid #555;  
	background:transparent;
	width:100%;
	padding:8px 0 5px 0;
	font-size:16px;
	color:#777;
	margin-bottom:1rem;
}
.input-container select{ 
	border:0;
	border-bottom:1px solid #555;  
	background:transparent;
	width:100%;
	padding:8px 0 5px 0;
	font-size:16px;
	color:#777;
	margin-bottom:1rem;
}
.input-container input:focus{ 
	border:none;	
	outline:none;
	border-bottom:1px solid #e74c3c;	
}
@media screen and (max-width:992px){
	#wrapper{
		display:inline;
	}
	.header{
		margin-top:-2rem;
	}
	.header img{
		min-height:auto;
	}
}
input[type='radio']:after {  
}

input[type='radio']:checked:after {
	width: 24px;
	height: 24px;
	border-radius: 20px;
	top: -5px;
	left: -5px;
	position: relative;
	background-color: #555;
	content: '';
	display: inline-block;
	visibility: visible;
	border: 5px solid #bbb;
}