:root {
	--dark: #333333;
	--gray: #999999;
	--fade: #EEEEEE;
	--white: #FFFFFF;
	--orange-c: rgba(255, 99, 64, 0.7);
	--orange: rgba(255, 99, 64);
}

html,
body {
	height: 100%;
}

body {
	background-color: #E54613;
	background-image: url('../img/bg-encuesta.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	font-family: 'Haas Grot Disp 55 Roman', sans-serif;
	align-items: center;
	padding-top: 40px;
	padding-bottom: 40px;
}

/*
body:before {
	background: var(--orange-c);
	content: '';
	height: 100%;
	left: 0px;
	position: absolute;
	top: 0px;
	width: 100%;
	z-index: -1;
}
*/

h1.title {
	color: var(--white);
	font-family: 'Haas Grot Disp 65';
	font-size: 36px;
	font-weight: 200;
}

p.text {
	color: var(--white);
	font-family: 'Haas Grot Disp 55 Roman', sans-serif;
	font-size: 18px;
	margin-bottom: 50px;
}


/***** loader styles */
#preload {
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 9999999;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}
#preload .kd-bounce {
	width: 40px;
	height: 40px;
	position: relative;
	margin: 40px auto;
}
#preload .kd-bounce:before,
#preload .kd-bounce:after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #242424;
	opacity: 0.4;
	filter: alpha(opacity=40);
	position: absolute;
	top: 0;
	left: 0;
	animation: kd-bounce 2.4s infinite ease-in-out;
}
#preload .kd-bounce:after {
	animation-delay: -1.2s;
}
@keyframes kd-bounce {
	0%,
	100% {
		transform: scale(0);
	}
	50% {
		transform: scale(1);
	}
}
/* loader styles *****/

.company-logo {
	margin-bottom: 48px;
	max-width: 100%;
	width: 201px;
}

.form-signin {
	width: 100%;
	max-width: 1000px;
	padding: 15px;
	margin: auto;
}

.form-signin .checkbox {
	font-weight: 400;
}

.form-signin .form-floating:focus-within {
	z-index: 2;
}

.form-signin input[type="email"] {
	margin-bottom: -1px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
	margin-bottom: 10px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.form-floating {
	margin-bottom: 10px;
}

.form-floating > label {
	color: var(--gray);
	font-size: 14px;
	padding: 5px 15px;
	top: 10px;
}

.form-floating .form-control {
	background: none;
	border: 2px solid var(--orange);
	color: var(--dark);
	font-size: 20px;
	font-weight: 400;
	height: 80px;
	padding-bottom: 25px;
	padding-top: 25px;
}
.form-floating textarea.form-control {
	height: 200px;
	resize: none;
}

.form-floating .form-control:active,
.form-floating .form-control:focus,
.form-floating .form-control:hover {
	background: none;
}

.form-floating select.form-control:active,
.form-floating select.form-control:focus,
.form-floating select.form-control:hover{
	color: var(--dark);
}

/*
.form-control {
	padding-top: 0.925rem;
	padding-bottom: 0.925rem;
}

.form-group label {
	color: #FFF;
	font-size: 18px;
}
*/


.text-copy {
	color: rgba(255, 255, 255, 0.5);
	text-align: center;
}

.page-container {
	background: var(--white);
}

.page-content {
	min-height: 310px;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 35px;
	padding-right: 35px;
}

.pager {
	padding: 25px 0px;
	max-width: 600px;
	display: block;
	margin: 0px auto;
}

.btn-primary {
	background: none;
	border: 2px solid var(--orange);
	border-radius: 50px;
	color: var(--orange);
	font-size: 22px;
	font-weight: 700;
	padding-top: 12px;
	width: 100%;
}

.btn-primary.disabled {
	background: none;
	border: 2px solid var(--orange-c);
	color: var(--orange-c);
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
	background: none;
	border: 2px solid var(--orange);
	color: var(--orange-c);
}

.btn-primary.btn-white {
	border-color: var(--white);
	color: var(--white);
}
.btn-primary.btn-white:active,
.btn-primary.btn-white:focus,
.btn-primary.btn-white:hover {
	background: none;
	border-color: var(--white);
	color: var(--white);
	opacity: 0.8;
}

.txt-instructions {
	color: var(--dark);
	display: block;
	font-size: 16px;
	min-height: 24px;
}

.txt-question {
	font-family: 'Haas Grot Disp 75';
	font-size: 28px;
	color: var(--dark);
	line-height: 32px;
	margin-bottom: 25px;
	margin-top: 10px;
}

.txt-question.alt-2 {
	font-family: 'Haas Grot Disp 55 Roman';
	font-size: 25px;
	text-align: right;
}

.select-option.alt-2 {
	margin-bottom: 15px;
	text-align: left;
}

.select-option label {
	margin: 0px 6px;
	background: var(--fade);
	width: 50px;
	height: 50px;
	font-size: 24px;
	color: var(--dark);
	line-height: 50px;
	text-align: center;
}

.select-option label:hover {
	cursor: pointer;
}

.select-option label input {
	display: none;
}

.select-option label.active {
	color: var(--white);
	background: var(--orange);
}


.select-option span {
	display: none;
	font-size: 38px;
	line-height: 46px;
	text-align: center;
}

.select-option strong {
	font-weight: 200;
}

.txt-page {
	color: var(--gray);
	display: block;
	font-size: 16px;
	margin-bottom: 10px;
	margin-top: 10px;
}

.progress-bar {
	background: var(--fade);
	height: 25px;
	margin-bottom: 20px;
}
.progress-bar span {
	background: var(--orange);
	display: block;
	height: 25px;
}

.form-group .form-control {
	border-radius: 0px;
	font-size: 20px;
	font-weight: 400;
	height: 80px;
	padding-bottom: 25px;
	padding-top: 25px;
}

.form-group select.form-control {
	border: 2px solid var(--orange);
	border-radius: 0.25rem;
	max-width: 100%;
	text-align: center;
	width: 450px;
}
.form-group label.control-select,
.form-floating.control-select {
	position: relative;
}
.form-group label.control-select:after,
.form-floating.control-select:after {
	content: '▼';
	position: absolute;
	top: 30px;
	right: 15px;
}
/*.form-group label.control-select:before {
	content: '▲';
	position: absolute;
	top: 20px;
	right: 15px;
}*/


/* MOBILE */
@media screen and (max-width: 768px) {
	.visible-xs {
		display: block !important;
	}

	body {
		padding-bottom: 15px;
		padding-top: 15px;
	}

	.company-logo {
		margin-bottom: 15px;
		width: 180px;
	}

	h1.title {
		font-size: 22px;
	}

	p.text {
		font-size: 15px;
		line-height: 17px;
		margin-bottom: 25px;
	}
	
	.page-content {
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.txt-page {
		font-size: 14px;
	}
	
	.select-option label {
		font-size: 18px;
		height: 40px;
		line-height: 40px;
		margin: 0px 5px;
		width: 40px;
	}

	.progress-bar {
		height: 20px;
		margin-bottom: 0px;
	}

	.progress-bar span {
		height: 20px;
	}

	.txt-instructions {
		font-size: 13px;
		line-height: 16px;
	}

	.txt-question {
		font-size: 20px;
		font-weight: normal;
		line-height: 26px;
		margin-bottom: 20px;
		margin-top: 10pxpx;
	}

	.txt-question.alt-2 {
		font-size: 20px;
		text-align: center;
	}

	.select-option.alt-2 {
		margin-bottom: 15px;
		text-align: center;
	}

	.form-group .form-control {
		font-size: 16px;
		height: 55px;
		line-height: 22px;
		padding-bottom: 0;
		padding-top: 0;
	}

	.form-group label.control-select:after {
		top: 15px;
		right: 10px;
	}

	.form-floating.control-select:after {
		top: 25px;
		right: 10px;
	}

	.btn-primary {
		font-size: 16px;
		padding-top: 10px;
		display: block;
		width: 80%;
		margin: 0px auto;
		padding-left: 0px;
		padding-right: 0px;
		text-align: center;
	}

	.btn-prev {
		margin-right: 0px;
	}

	.btn-next {
		margin-left: 0px;
	}

	.form-floating > label {
		font-size: 12px;
		top: 5px;
		left: -10px;
		text-align: left;
		width: 120%;
	}

	.form-floating .form-control {
		font-size: 16px;
		height: 60px;
	}

	.form-group select.form-control {
		width: 210px;
	}
}


