body{
	background-color:#F9F9F9;
	font-size: 13px;
  color: #404040;
}

::-webkit-input-placeholder { /* Edge */
  color: #d0d0d0;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #d0d0d0;
}

::placeholder {
  color: #d0d0d0;
  opacity: 0.5; /* Firefox */
}

.main{
	padding: 2em 0;
}

#landing-page{
	background: url(../images/landing-bg.jpg) scroll 0 0 rgb(49, 133, 156);
}

/* Preloader */
#loader{
	position: fixed;
	z-index: 99999;
	background-color: #F3F3F3;
	width: 100%;
	height: 100%;
	display: none;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}

#loader.show{
	display: block !important;
	}

.loader-note{
	max-width: 768px;
	text-align: center;
	margin: 10% auto 0;
	display: block;
	color: #808080;
	font-size: 20px;
}

.loader-image{
	max-width: 768px;
	margin: auto;
	text-align: center;
}

/* End Preloader */

/* Header */
.header{

	}

.header-logo{
	}

/* Nav */
.navbar-default{
	background-color: #fff;
	text-align: center;
	padding: 1em 0;
	margin-bottom: 0;
}

.navbar-default h1{ color:#FFF; font-size:45px; margin-top:5px;}

.navbar-default h2{   color: #dddddd;
    font-family: Georgia;
    font-style: italic;
    text-shadow: 1px 1px 1px #000000;
	font-size:14px;
	}

/* Content */
.row{ margin:0 auto;}

.content-wrap{
	padding: 2em 0;
	background: url(../images/landing-bg.jpg) no-repeat scroll 0 0 transparent;
	background-size: cover;
}

.container {
  margin: 0 auto;
}

.container_bg {
	border-top: 5px solid #f3c66b;
	padding-bottom: 1em;
	background-color: #FFF;
	margin-bottom: 2em;
}

/* Login */
.home-form{
	}

.home-form h3{
	}

.home-form input[type="text"],
.home-form input[type="password"],
.home-form input[type="email"]{
  border-radius: 0;
  padding: 10px;
  height: auto;
  font-size: 12px;
	}

.home-form #loginFrm label{
	font-weight: 500;
	}

.home-form button.btn{
  letter-spacing: 1px;
  padding: 1em 2em;
  text-transform: uppercase;
  margin: auto;
  font-size: 12px;
  font-weight: 700;
  border-radius: 30px;
  display: inherit;
	}

.form-bottom{
	}

.form-bottom a{
	}

/* Registration Page */
.panel-heading h3{
	margin: 0;
	}

.register-form label{
	font-weight: 500;
	}

.register-form .btn{
	font-size: 20px;
	letter-spacing: 1px;
	padding: 10px;
	text-transform: uppercase;
	width: 100%;
	}

.register-wrap .alert-success h3,
.register-wrap .alert-success p{
	color: #539F4B;
	}

.register-wrap h3,
.register-wrap p{
	}

.login-container{
    position: relative;
    width: 300px;
    margin: 80px auto;
    padding: 20px 40px 40px;
    text-align: center;
    background: #fff;
    border: 1px solid #ccc;
}

#output{
    position:relative;
    width: 100%;
    top: -5px;
    left: 0;
    color: #fff;
}

#output.alert-success{
    background: rgb(25, 204, 25);
}

#output.alert-danger{
    background: rgb(228, 105, 105);
}


.login-container::before,.login-container::after{
    content: "";
    position: absolute;
    width: 100%;height: 100%;
    top: 3.5px;left: 0;
    background: #fff;
    z-index: -1;
    -webkit-transform: rotateZ(4deg);
    -moz-transform: rotateZ(4deg);
    -ms-transform: rotateZ(4deg);
    border: 1px solid #ccc;

}

.login-container::after{
    top: 5px;
    z-index: -2;
    -webkit-transform: rotateZ(-2deg);
     -moz-transform: rotateZ(-2deg);
      -ms-transform: rotateZ(-2deg);

}

.avatar{
    width: 100px;height: 100px;
    margin: 10px auto 30px;

    border: 0px solid #aaa;

}


.form-box input{
    width: 100%;
    padding: 10px;
    text-align: center;
    height:40px;
    border: 1px solid #ccc;;
    background: #fafafa;
    transition:0.2s ease-in-out;

}

.form-box input:focus{
    outline: 0;
    background: #eee;
}

.form-box input[type="text"]{
    border-radius: 5px 5px 0 0;
    text-transform: lowercase;
}

.form-box input[type="password"]{
    border-radius: 0 0 5px 5px;
    border-top: 0;
}

.form-box button.login{
    margin-top:15px;
    padding: 10px 20px;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

#inner-footer {
    display: table;
    font-family: "Helvetica Neue",Arial,Tahoma,sans-serif;
    font-size: 11px;
    padding-bottom: 25px;
    text-transform: uppercase;
    width: 100%;
}

/* Note */
.page-note{
	background-color: #FFF;
	border-bottom: 1px solid #eee;
	}

.page-note h3{
	margin: 0;
	padding: 1em;
	color: #606060;
	font-family: 'Roboto Light';
	font-size: 1.30em;
	}

/* Progress Bar */
.progress {
  border-radius: 0;
  height: 1.5rem;
}
.content-wrap .progress{
	margin: 0;
	border-radius: 0;
	height: 30px;
	}

.content-wrap .progress-bar{
	font-size: 18px;
	line-height: 30px;
  font-weight: 700;
	}

/* Page Forms */
#result_error{}

#result_error .alert{
	margin-bottom: 0;
	border-radius: 0;
	border: 0;
	background-color: #e74c3c;
	color: #FFF;
	text-align: center;
	}

#detailed-before, .page-form{
    background-color: #FFF;
    overflow: hidden;
	}

.page1 .form-entry, .page3 .form-entry, .page4 .form-entry{
	padding: 1em;
  display: flex !important;
}

.form-entry h1{
	margin: 0 0 1em 0;
	color: #606060;
	font-size: 2em;
	text-align: center;
	}

.form-entry h4.set-number{
	margin: 0 0 0.50em 0;
	font-size: 28px;
	}

.form-entry h4.set-number span{
	border-radius: 50%;
	display: inline-block;
	color: #fff;
	line-height: 180%;
	width: 50px;
	height: 50px;
	vertical-align: middle;
	background-color: #31859c;
	}

.form-entry .textbox{
	border-radius: 5px 5px 5px 5px;
  height: 100%;
}

.form-entry .textbox input[type="radio"]{
	display: block;
	width: 100%;
	margin: 1em 0;
	cursor: pointer;
	}

.form-entry .words-set{
  padding: 1em;
  background-color: #FFF;
  border-radius: 0px 0px 5px 5px;
  line-height: 24px;
  font-size: 13px;
	}

.form-entry .textbox input[type='radio']{
	opacity: 0;
	width: 90%;
	height: 60px;
	cursor: pointer;
	position: absolute;
	margin: 0;
}

.form-entry .textbox input[type='radio'] + label{
	margin: 0;
	clear: none;
	padding: 21px 0 21px 0;
	cursor: pointer;
	background: url(../images/radio.png) center center no-repeat;
	width: 100%;
}

.form-entry .textbox input[type='radio']:hover + label {
    background-image: url(../images/radio-hover.png);
}

.form-entry .textbox input[type='radio']:checked + label {
    background-image: url(../images/radio-selected.png);
}


.form-entry .pattern-question{
		text-align: center;
	}

.form-entry .pattern-option{
	padding: 0;
	list-style: none;
	text-align: center;
	margin-top: 1em;
}

.form-entry .pattern-option li{
	display: inline-flex;
	width: 18%;
	position: relative;
	padding: 0 5px;
}

.form-entry .pattern-option input[type='radio']{
	opacity: 0;
	height: 40px;
	cursor: pointer;
	position: absolute;
	clear: none;
	width: 90%;
	}

.form-entry .pattern-option input[type='radio'] + label{
	margin: 0;
	clear: none;
	padding: 5px 5px 5px 5px;
	cursor: pointer;
	width: 100%;
	border-radius: 20px;
	text-align: center;
	font-size: 18px;
  font-weight: 700;
}

.form-entry .pattern-option.red-set input[type='radio'] + label{
	/* background: url(../images/red-default.png) 10px center no-repeat; */
}

.form-entry .pattern-option.green-set input[type='radio'] + label{
  /* background: url(../images/green-default.png) 10px center no-repeat; */
}

.form-entry .pattern-option.red-set input[type='radio'] + label{
	color: #e74c3c;
	border: 1px solid #e74c3c;
}

.form-entry .pattern-option.green-set input[type='radio'] + label{
	color: #2ecc71;
	border: 1px solid #2ecc71;
}

.form-entry .pattern-option.red-set input[type='radio']:checked + label {
	/* background-image: url(../images/pattern-selected.png); */
	background-color: #e74c3c;
	color: #FFF;
}

.form-entry .pattern-option.green-set input[type='radio']:checked + label {
	/* background-image: url(../images/pattern-selected.png); */
	background-color: #2ecc71;
	color: #FFF;
}

.page-form .form-control,
.page-form select.dropdown-toggle{
  font-size: 12px;
  padding: 10px;
  height: auto;
  border: 1px solid #ced4da;
}

.page-form button[type="submit"],
.page-form input.butt{
	width: 100%;
	border-radius: 0;
	padding: 10px;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 2px;
	color: #FFF;
}

.page-form button[type="submit"]:hover{}

.page-form table{
	margin-bottom: 0;
	}

.page-form table tr.table-head{
	background-color: #f7f7f7;
	font-size: 18px;
	color: #404040;
	}

.page-form table th,
.page-form table td{
	padding: 10px 20px !important;
	position: relative;
	overflow: hidden;
	}

.least-most input[type='radio']{
	opacity: 0;
	height: 60px;
	cursor: pointer;
	position: absolute;
	margin: 0;
	width: 80%;
}

.least-most input[type='radio'] + label{
	margin: 0;
	clear: none;
	padding: 21px 0 21px 0;
	cursor: pointer;
	background: url(../images/radio.png) center center no-repeat;
	width: 100%;
}

.least-most input[type='radio']:hover + label {
    background-image: url(../images/radio-hover.png);
}

.least-most input[type='radio']:checked + label {
    background-image: url(../images/radio-selected.png);
}

.part2 .questions .row{
	display: none;
}

/* */
footer p {
    color: #000000;
    margin: 10px;
    text-align: center;
}

.login_top {
	display: table;
	font-size: 16px;
	padding-bottom: 25px;
	width: 100%;
}

.login_top h3,.login_top p{
	text-align: center;
	color: #FFF;
}

.div_top { display: table;
	font-family: "Helvetica Neue",Arial,Tahoma,sans-serif;
	font-size: 16px;
	padding-bottom: 25px;
	text-shadow: 0 1px 0 #ffffff;
	text-transform: uppercase;
	width: 100%;
	position:fixed;
	 top:70px;
}

#result_error{
	display: none;
}

#result{
	display: none;
}

.hide{
	display: none;
}

#answer{
	text-align: center;
	width: 400px;
	font-weight: bold;
}
.highlight {
	color : #CCFFCC;
	font-size: 20px;
}

.w_set{
	font-size:18px;
	font-weight:lighter;
	margin-top:20px;
	}


.counter {
  background: #2C2C2C;
  -moz-box-shadow:    inset 0 0 5px #000000;
  -webkit-box-shadow: inset 0 0 5px #000000;
  box-shadow:         inset 0 0 5px #000000;
  min-height: 25px;
  color:#FFF;
   font-size: 26px;
   float:right;

}
.ordiv{ margin-top:50px;}
.centerdiv{ text-align:left;}
.txt{ font-size:16px;}
.scale_main{ position:fixed;bottom:0;left:0;background:lightgray;width:100%;}
.scale_inner{ margin:0 auto;}

/* Thank you*/
.thank-you-page .content-wrap{ padding-top: 0 !important; }
.thank-you-page .page-form{ margin-top: 3rem; }

/* our menu styles */
#sticky_navigation_wrapper { width:100%; }
#sticky_navigation { width:100%; height: auto; -moz-box-shadow: 0 0 5px #999; -webkit-box-shadow: 0 0 5px #999; box-shadow: 0 0 5px #999; z-index:999999}
/*#sticky_navigation ul { list-style:none; margin:0; padding:5px; }
#sticky_navigation ul li { margin:0; padding:0; display:inline; }
#sticky_navigation ul li a { display:block; float:left; margin:0 0 0 5px; padding:0 20px; height:70px; line-height:70px; font-size:14px; font-family:Arial, serif; font-weight:bold; color:#ddd; background:#333; -moz-border-radius:3px; -webkit-border-radius:3px; border-radius:3px; }
#sticky_navigation ul li a:hover, #sticky_navigation ul li a.selected { color:#fff; background:#111; }*/
.iecode{ width:100px !important;}

footer p {
	font-size: 11px;
  color: #808080;
	}
