html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body,
h1, h2, h3, h4, h5, h6,
p,
ol, ul, li,
form, input, select, textarea, button {
  border-style: none;
  color: #444444;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857;
  margin: 0;
  padding: 0;
}

body {
	background-color: #eaeaea;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1;
}

a {
  color: #0980f4;
}

a:link,
a:visited,
a:hover,
a:active,
a:focus {
  outline: 0 none;
  text-decoration: none;
}

em {
  font-style: italic;
}

strong, b {
  font-weight: 700;
}
img {
  max-width:100%;
}

p {
    color: #6e6e6e;
    font-size: 14px;
    line-height: normal;
    margin: 15px 0 0;
	line-height: 20px;
}
header {
	padding: 10px 0;
	background-color: #292929;
}
.form-wrapper {
	margin: 30px auto;
	width:800px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    background-color: #fff;
	border-radius: 3px;
}
.mandatory {
	background-color: #f7f7f7;
	padding: 30px;
}
.input-control {
	position: relative;
}
.form-wrapper label {
	font-weight: bold;
	margin: 0 0 8px;
}
textarea.form-control {
    resize: none !important;
    min-height: 110px;
}
.form-wrapper input.form-control[type="text"], 
.form-wrapper input.form-control[type="email"], 
.form-wrapper input.form-control[type="password"], 
.form-wrapper textarea.form-control {
    background-color: #f5f6f8;
    border-color: #d9d9d9;
	box-shadow: none;
    color: #4d4d4d;
    font-size: 16px;
    font-weight: 400;
    height: 40px;
    margin: 0;
    padding: 5px 15px;
    width: 100%;
}
.form-wrapper .mandatory input.form-control[type="text"], 
.form-wrapper .mandatory input.form-control[type="email"], 
.form-wrapper .mandatory input.form-control[type="password"], 
.form-wrapper .mandatory textarea.form-control,
.form-wrapper .mandatory .chzn-container-single .chzn-single {
    background-color: #fff;
}
.form-wrapper .required-field-error {
    background-color: #ffeeee;
    border: 1px solid rgba(255, 64, 59, 0.4);
    border-radius: 4px;
    color: #ff403b;
    cursor: text;
    font-size: 16px;
    font-weight: 400;
    height: 100%;
    left: 0;
    line-height: 38px;
    margin: 0;
    padding-left: 15px;
    right: 0;
    top: 0;
	position: absolute;
}
/*
	Chosen Custom Css
*/
.chzn-container {
	width: 100% !important;
}

.chzn-container-single .chzn-single {
    background-image: none;
	background-color: #f7f7f7;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    box-shadow: none;
    color: #333;
    font-family: "Roboto",Arial,Helvetica,sans-serif;
    font-size: 14px;
    font-weight: 400;
    height: 38px;
    line-height: 36px;
    padding: 0 15px;
}

.chzn-container-active.chzn-with-drop .chzn-single {
  border: 1px solid #e5e5e5;
  box-shadow: none;
  background-color: transparent;
  background-image: none;
  border-radius: 4px 4px 0 0;
}

.chzn-container .chzn-drop {
	border-color: #e5e5e5;
    box-shadow: none;
    top: 2px;
}

.chzn-container-single .chzn-search {
    padding: 0;
}

.chzn-container-single .chzn-search input {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important;
    border-style: none;
    color: #454747;
    font-family: "Roboto",Arial,Helvetica,sans-serif;
    font-size: 18px;
    font-weight: 500;
    height: 40px;
    margin: 0;
    padding: 5px 15px;
    width: 100%;
}

.chzn-container .chzn-results {
    border-top: 1px solid #f2f2f2;
    margin: 0;
    padding: 0 0 5px;
}

.chzn-container .chzn-results li {
    font-size: 14px;
    line-height: 20px;
    padding: 5px 15px;
}

.chzn-container .chzn-results .highlighted {
    background-color: #f2f2f2;
    background-image: none;
    color: #000;
}

.chzn-container-single .chzn-single div {
    right: 6px;
    top: 8px;
}

.chzn-container-single .chzn-single abbr {
    right: 15px;
    top: 14px;
}

.chzn-container-single .chzn-single abbr + div {
	display: none;
}
.optional {
	padding: 30px;
	border-top: 1px solid #ddd;
}
.location-icon,
.clear-location {
	background: rgba(0, 0, 0, 0) url("../images/ic_my_location_black_24dp_2x.png") no-repeat scroll center center / 24px auto;
	cursor: pointer;
    display: block;
    height: 40px;
    left: auto;
    opacity: 0.5;
    position: absolute;
    right: 13px;
    top: 0;
    width: 24px;
}
.clear-location {
	background: rgba(0, 0, 0, 0) url("../images/ic_clear_black_24dp_2x.png") no-repeat scroll center center / 24px auto;
	display: none;
}
.cta-bttn-default,
.cta-bttn-big{
	background-color: #0980f4;
    background-image: none;
    border-radius: 4px;
    border-style: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 0;
    padding: 15px 20px;
    text-align: center;
	text-decoration: none;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: nowrap;
	min-width: 200px;
}
.cta-bttn-normal {
	background-color: #f7f7f7;
	color: #757575;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}
.bttn-container {
	margin: 20px 0 30px;
}
.bttn-container a:last-child {
	margin-left: 25px;
}
.heading {
	font-size: 30px;
	margin: 30px 0;
}
.question {
	font-size: 20px;
	margin: 0 0 10px;
}
.radio-custom {
	padding-left: 50px;
}