@import "../../../theme/css/variables.css";

* {
	text-decoration: none;
	max-width: 100%;
}

html { overflow-x: hidden }

html,
body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: #F2F2F2;
}

body {
	font-family: "Helvetica Neue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
	overflow-x: hidden;
}

img { border: none }

a { color: inherit }
a:hover { opacity: .7 }

.overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 2;
}

#spinner {
	display: none;
	position: relative;
}

.spinnerGif {
	position: relative;
	width: 250px;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: #F8F9F9;
	padding: 20px;
}

.container {
	width: 100%;
	background-color: white;
	box-sizing: border-box;
}

p {
	font-family: "Helvetica", Arial, sans-serif;
	font-weight: lighter;
}

/* Header Styles */

header {
	background-color: white;
	box-shadow: 0 8px 10px -4px #949494;
	-webkit-box-shadow: 0 8px 10px -4px #949494;
	-moz-box-shadow: 0 8px 10px -4px #949494;
	padding: 11px 0;
	position: relative;
	z-index: 1;
	margin-bottom: 10px;
}

.header_container {
	max-width: 960px;
	margin: auto;
}

.header_logo { max-width: 274px }

/* Survey Body Styles */
#surveyContainer {
	padding-bottom: 10px;
	height: 465px;
}

.main {
	margin: auto;
	background-color: #FFF;
	position: relative;
}

.outerWrapper {
	white-space: nowrap;
	position: absolute;
	transition-property: left;
	transition-duration: 1s;
	transition-delay: 0.5s;
	width: 100%;
	left: 0;
	max-height: 520px;
}

.wrap {
	background: white;
	border-radius: 10px;
	margin: 3px auto;
	width: 365px;
}

.wrap,
.wrap input,
label { cursor: pointer }

.box {
	display: inline-block;
	width: 100%;
	vertical-align: top;
}

.box h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 24px;
	font-weight: 900;
}

.box1 { left: 0 }

.box2 { left: -101.4% }

.box3 { left: -202.6% }

.box4 { left: -301.4% }

.pl20 {
	margin-right: auto;
	display: block;
	margin-left: auto;
	width: 314px;
	padding-left: 26px;
	margin-bottom: 9px;
}

input { display: none }

label {
	font-size: 21px;
	line-height: 24px;
	font-weight: normal;
	width: 100%;
	display: inline-block;
	text-align: center;
	margin: 0;
	border-radius: 10px;
	border: 1px solid #4880C2;
	padding: 8px 0;
}

input[type=radio]:checked + label {
	color: white;
	font-style: italic;
}

input[type=checkbox] + label { background-color: white }

input[type=checkbox]:checked + label, input[type=radio]:checked + label {
	background-color: green;
	color: white;
	font-style: italic;
	border-radius: 10px;
}

.selected {
	border: 1px solid green;
	background-color: white;
}

.button_box {

}

#surveySubmit,
#surveySubmitMobile {
	margin: 20px auto 10px;
	opacity: 0;
	transition: opacity 600ms;
	display: block;
}

#surveySubmit,
#surveySubmitMobile,
.nextQuestion {
	background: -webkit-linear-gradient(#0C0, #060);
	/* For Safari 5.1 to 6.0 */
	background: -o-linear-gradient(#0C0, #060);
	/* For Opera 11.1 to 12.0 */
	background: -moz-linear-gradient(#0C0, #060);
	/* For Firefox 3.6 to 15 */
	background: linear-gradient(#0C0, #060);
	/* Standard syntax */
	border: 1px solid #060;
	border-radius: 8px;
	width: 200px;
	text-align: center;
	text-decoration: none;
	color: #FFF;
	font-weight: bold;
	font-size: 22px;
	line-height: 37px;
}

.nextQuestion { display: none }

#surveySubmitMobile {
	width: 60%;
	max-width: 246px;
	cursor: pointer;
}

#surveySubmit:hover {
	box-shadow: 2px 2px 10px 2px #AAA;
	cursor: pointer;
}

#fourthBox h2 { margin-bottom: 31px }

.skip {
	text-align: right;
	margin-top: 90px;
	padding-bottom: 15px;
	margin-right: auto;
	width: 325px;
	margin-left: auto;
	display: block;
	padding-right: 20px;
}

.skip a { text-decoration: underline }

@media screen and (min-width: 1024px) {
	::-webkit-scrollbar-thumb {
		border-radius: 10px;
		background: #2C507C;
	}
	
	::-webkit-scrollbar {
		width: 8px;
		max-width: 12px;
	}
}
@media screen and (max-width: 1024px) {
	::-webkit-scrollbar {
		width: 0;
		max-width: 12px;
	}
	
	header { padding: 10px 20px }
	
	.main { margin-bottom: 0 }
	
	.header_logo { max-width: 50% }
	
	.pl20 {
		width: 100%;
		padding-left: 20px;
	}
	
	.wrap { width: 95% }
	
	.skip {
		margin-top: 80px;
		padding-bottom: 5px;
		width: 100%;
	}
	
	.skip a {
		padding-right: 16px;
		text-decoration: underline }
}
