
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');

* {
	box-sizing: border-box;
}

body {
	background: #f6f5f7;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-family: 'Montserrat', sans-serif;
	height: 100vh;
	/*margin: -20px 0 50px;*/
}

h1 {
	font-weight: bold;
	margin: 0;
}

h2 {
	text-align: center;
}

p {
	font-size: 14px;
	font-weight: 100;
	line-height: 20px;
	letter-spacing: 0.5px;
	margin: 20px 0 30px;
}

span {
	font-size: 12px;
}

a {
	color: #333;
	font-size: 14px;
	text-decoration: none;
	margin: 15px 0;
}

button {
		border-radius: 20px;
  border: 1px solid #c3bcbc;
  background-color: #88c1ce;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: bold;
	padding: 12px 45px;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: transform 80ms ease-in;
}

button:active {
	transform: scale(0.95);
}

button:focus {
	outline: none;
}

button.ghost {
	background-color: transparent;
	border-color: #FFFFFF;
}

form {
	background-color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 50px;
	height: 100%;
	text-align: center;
}

input {
	background-color: #eee;
	border: none;
	padding: 12px 15px;
	margin: 8px 0;
	width: 100%;
	letter-spacing: 2px;
}

.container {
	background-color: #fff;
	border-radius: 10px;
  	box-shadow: 0 14px 28px rgba(0,0,0,0.25),
			0 10px 10px rgba(0,0,0,0.22);
	position: relative;
	overflow: hidden;
	width: 768px;
	max-width: 100%;
	min-height: 480px;
}

.form-container {
	position: absolute;
	top: 0;
	height: 100%;
	transition: all 0.6s ease-in-out;
}

.sign-in-container {
	left: 0;
	width: 50%;
	z-index: 2;
}

.container.right-panel-active .sign-in-container {
	transform: translateX(100%);
}

.sign-up-container {
	left: 0;
	width: 50%;
	opacity: 0;
	z-index: 1;
}

.container.right-panel-active .sign-up-container {
	transform: translateX(100%);
	opacity: 1;
	z-index: 5;
	animation: show 0.6s;
}

@keyframes show {
	0%, 49.99% {
		opacity: 0;
		z-index: 1;
	}

	50%, 100% {
		opacity: 1;
		z-index: 5;
	}
}

.overlay-container {
	position: absolute;
	top: 0;
	left: 50%;
	width: 50%;
	height: 100%;
	overflow: hidden;
	transition: transform 0.6s ease-in-out;
	z-index: 100;
}

.container.right-panel-active .overlay-container{
	transform: translateX(-100%);
}

.overlay {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#20386a+0,1772b6+99 */
background: #405e65; /* Old browsers */
background: -moz-linear-gradient(top,  #405e65 0%, #8adbed 99%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #405e65 0%,#8adbed 99%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #405e65 0%, #8adbed 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#20386a', endColorstr='#1772b6',GradientType=0 ); /* IE6-9 */

	background-position: 0 0;
	color: #FFFFFF;
	position: relative;
	left: -100%;
	height: 100%;
	width: 200%;
  	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}

.container.right-panel-active .overlay {
  	transform: translateX(50%);
}

.overlay-panel {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 40px;
	text-align: center;
	top: 0;
	height: 100%;
	width: 50%;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}

.overlay-left {
	transform: translateX(-20%);
}

.container.right-panel-active .overlay-left {
	transform: translateX(0);
}

.overlay-right {
	right: 0;
	transform: translateX(0);
}

.container.right-panel-active .overlay-right {
	transform: translateX(20%);
}

.social-container {
	margin: 20px 0;
}

.social-container a {
	border: 1px solid #DDDDDD;
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0 5px;
	height: 40px;
	width: 40px;
}

footer {
    background-color: #222;
    color: #fff;
    font-size: 14px;
    bottom: 0;
    position: fixed;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 999;
}

footer p {
    margin: 10px 0;
}

footer i {
    color: red;
}

footer a {
    color: #3c97bf;
    text-decoration: none;
}



.radio + .radio, .checkbox + .checkbox {
    margin-top: 6px;
}

.radio,
.checkbox {
    min-height: 22px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-left: 0px;
}

.radio-inline,
.checkbox-inline {
    margin-top: 0px!important;
}

.radio > label,
.checkbox > label {
    padding-left: 29px;
    min-height: 22px;
    line-height: 22px;
    display: inline-block;
	position: relative;
}

.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
    position: absolute;
}

.radio > input[type="radio"]:first-child:not(:checked) + label::before,
.checkbox > input[type="checkbox"]:first-child:not(:checked) + label::before,
.radio > input[type="radio"]:first-child:not(:checked) + input[type="hidden"] + label::before,
.checkbox > input[type="checkbox"]:first-child:not(:checked) + input[type="hidden"] + label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 22px;
    height: 22px;
    border: 1px solid #D3CFC8;
    border-radius: 0px;
    margin-left: -29px;
}

.radio > input[type="radio"]:first-child:not(:checked) + label::before,
.radio > input[type="radio"]:first-child:not(:checked) + input[type="hidden"] + label::before {
    border-radius: 50%;
}

.radio > input[type="radio"]:first-child:checked + label::before,
.checkbox > input[type="checkbox"]:first-child:checked + label::before,
.radio > input[type="radio"]:first-child:checked + input[type="hidden"] + label::before,
.checkbox > input[type="checkbox"]:first-child:checked + input[type="hidden"] + label::before {
    content: "\e013";
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-weight: normal;
    font-size: 10px;
    color: #fff;
    position: absolute;
    width: 22px;
    height: 22px;
    line-height: 20px;
    border: 1px solid #000;
    border-radius: 0px;
    background-color: #000;
    text-align: center;
    margin-left: -29px;
    vertical-align: text-top;
}

.radio > input[type="radio"]:first-child:checked + label::before,
.radio > input[type="radio"]:first-child:checked + input[type="hidden"] + label::before {
    border-radius: 50%;
}

.radio > input[type="radio"]:first-child:not(:checked):not(:disabled):hover + label::before,
.checkbox > input[type="checkbox"]:first-child:not(:checked):not(:disabled):hover + label::before,
.radio > input[type="radio"]:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before,
.checkbox > input[type="checkbox"]:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
    border: 2px solid #000;
}

.radio > input[type="radio"]:first-child:disabled + label,
.radio > input[type="radio"]:first-child:disabled + label::before,
.checkbox > input[type="checkbox"]:first-child:disabled + label,
.checkbox > input[type="checkbox"]:first-child:disabled + label::before,
.radio > input[type="radio"]:first-child:disabled + input[type="hidden"] + label,
.radio > input[type="radio"]:first-child:disabled + input[type="hidden"] + label::before,
.checkbox > input[type="checkbox"]:first-child:disabled + input[type="hidden"] + label,
.checkbox > input[type="checkbox"]:first-child:disabled + input[type="hidden"] + label::before {
    pointer-events: none;
    cursor: default;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65;
}

.radio > input[type="radio"]:first-child,
.checkbox > input[type="checkbox"]:first-child {
    opacity: 0;
    margin-left: 0px;
	width: 90%;
}

    .radio > input[type="radio"]:first-child:disabled,
    .checkbox > input[type="checkbox"]:first-child:disabled {
        opacity: 0;
        cursor: default;
    }

/* not checked hover style*/
.icheck-default > input[type="radio"]:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-default > input[type="checkbox"]:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-default > input[type="radio"]:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before,
.icheck-default > input[type="checkbox"]:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
    border-color: #adadad;
}

/*checked style*/
.icheck-default > input[type="radio"]:first-child:checked + label::before,
.icheck-default > input[type="checkbox"]:first-child:checked + label::before,
.icheck-default > input[type="radio"]:first-child:checked + input[type="hidden"] + label::before,
.icheck-default > input[type="checkbox"]:first-child:checked + input[type="hidden"] + label::before {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}

/* not checked hover style*/
.icheck-primary > input[type="radio"]:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-primary > input[type="checkbox"]:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-primary > input[type="radio"]:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before,
.icheck-primary > input[type="checkbox"]:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
    border-color: #2e6da4;
}

/*checked style*/
.icheck-primary > input[type="radio"]:first-child:checked + label::before,
.icheck-primary > input[type="checkbox"]:first-child:checked + label::before,
.icheck-primary > input[type="radio"]:first-child:checked + input[type="hidden"] + label::before,
.icheck-primary > input[type="checkbox"]:first-child:checked + input[type="hidden"] + label::before {
    background-color: #337ab7;
    border-color: #2e6da4;
}

/* not checked hover style*/
.icheck-success > input[type="radio"]:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-success > input[type="checkbox"]:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-success > input[type="radio"]:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before,
.icheck-success > input[type="checkbox"]:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
    border-color: #4cae4c;
}

/*checked style*/
.icheck-success > input[type="radio"]:first-child:checked + label::before,
.icheck-success > input[type="checkbox"]:first-child:checked + label::before,
.icheck-success > input[type="radio"]:first-child:checked + input[type="hidden"] + label::before,
.icheck-success > input[type="checkbox"]:first-child:checked + input[type="hidden"] + label::before {
    background-color: #5cb85c;
    border-color: #4cae4c;
}



/* not checked hover style*/
.icheck-carrot > input[type="radio"]:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-carrot > input[type="checkbox"]:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-carrot > input[type="radio"]:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before,
.icheck-carrot > input[type="checkbox"]:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
    border-color: #FF4B2B;
}

/*checked style*/
.icheck-carrot > input[type="radio"]:first-child:checked + label::before,
.icheck-carrot > input[type="checkbox"]:first-child:checked + label::before,
.icheck-carrot > input[type="radio"]:first-child:checked + input[type="hidden"] + label::before,
.icheck-carrot > input[type="checkbox"]:first-child:checked + input[type="hidden"] + label::before {
    background-color: #002858;
    border-color: #002858;
}




/* not checked hover style*/
.icheck-orange > input[type="radio"]:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-orange > input[type="checkbox"]:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-orange > input[type="radio"]:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before,
.icheck-orange > input[type="checkbox"]:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
    border-color: #f39c12;
}

/*checked style*/
.icheck-orange > input[type="radio"]:first-child:checked + label::before,
.icheck-orange > input[type="checkbox"]:first-child:checked + label::before,
.icheck-orange > input[type="radio"]:first-child:checked + input[type="hidden"] + label::before,
.icheck-orange > input[type="checkbox"]:first-child:checked + input[type="hidden"] + label::before {
    background-color: #f39c12;
    border-color: #f39c12;
}


.radio-options{
	width: 100%;
}

.radio-options .radio{
	display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
}

.msg{
	color: #ff4268;
    margin: 10px;
    font-weight: bold;
    font-size: 1em;
}

.buttons_bottom{
	text-align: center;
    position: absolute;
    bottom: 0;
    width: calc(100% - 10px);
    padding-bottom: 10px;
    padding-top: 10px;
}

.buttons_bottom button{
	border: 1px solid #fff;
}

.container-quiz{
	width: 1100px;
	/*height: 650px;*/
	height: 680px;
	max-height: 650px
	position: relative;
	padding: 0;
}

.info{
	display: inline-block;
	width: 100%;
	text-align: center;
	font-size: 0.9em;
}

.info.min{
	font-size: 0.8em;
}

.info.bold{
	font-weight: 600;
}
.photo{
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;

}
.photo img{
	height: 120px;
	border-radius: 30px;
	-webkit-box-shadow: 0px 0px 23px -4px rgba(0,0,0,0.58);
	-moz-box-shadow: 0px 0px 23px -4px rgba(0,0,0,0.58);
	box-shadow: 0px 0px 23px -4px rgba(0,0,0,0.58);
}

.form{
	padding: 15px;
	width: calc(100% - 220px);
	display: inline-block;
	vertical-align: top;
	position: relative;
	height: 100%;

}

.modal{
    background: rgba(255,255,255,0.8);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: none;
    overflow: hidden;
}

.sidebar{
	width: 220px;
	height: 100%;
	display: inline-block;
	vertical-align: top;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#20386a+0,1772b6+99 */
background: #20386a; /* Old browsers */
background: -moz-linear-gradient(top,  #20386a 0%, #1772b6 99%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #20386a 0%,#1772b6 99%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #20386a 0%,#1772b6 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#20386a', endColorstr='#1772b6',GradientType=0 ); /* IE6-9 */

    color: #fff;
    padding: 5px;
    position: relative;
    text-align: center;
}

.steps li {
  width: 2em;
  height: 2em;
  text-align: center;
  line-height: 2em;
  border-radius: 1em;
  background: #7eaed2;
  margin: 0 0.1em;
  display: inline-block;
  color: white;
  position: relative;
  cursor: pointer;
}

/*
.steps li::before{
	position: absolute;
	width: 100%;
	height: 100%;

	content: ' ';
	left: 0;
	z-index: 1;
}*/

.steps li:hover{
	background: dodgerblue;
}

.steps li.bt{
	width: auto;
    padding: 0px 10px;
    background: #1772b6;
}

.steps li.bt:hover{
	background: dodgerblue;
}

.steps li.ghost{
	background: white !important;
	border: 0px;
}



/*
.steps li::before{
	content: '';
	position: absolute;
	top: .9em;
	left: -2em;
	width: 1.7em;
	height: .2em;
	background: dodgerblue;
	z-index: 1;
}*/

ul{
	padding: 0;
	width: 100%;
	text-align: center;
}

.steps li:first-child::before {
  display: none;
}

.active {
  background: dodgerblue !important;
}

.header{
	min-height: 100px;
	width: 100%;
	font-size: 1.7em;
	margin-top: 15px;
	margin-bottom:  10px;
}

.header .subtitle{
	display: inline-block;
	width: 100%;
	text-align: center;
	font-weight: bold;
}

.header .question{
	font-size: 1.1em;
	text-align: center;
}
.header .image{
	text-align: center;
}


.respuestas{
	width: 100%;
    padding: 5px 24px;
    font-size: 1.15em;
    /*border: 1px solid #ccc;*/
    border-radius: 30px;
    background: rgba(251, 231, 234, 0.3686274509803922);

    -webkit-box-shadow: 0px 25px 23px -8px rgba(0,0,0,0.29);
	-moz-box-shadow: 0px 25px 23px -8px rgba(0,0,0,0.29);
	box-shadow: 0px 25px 23px -8px rgba(0,0,0,0.29);
	max-height: 280px;
    overflow: auto;
}

.respuesta{
	width: 100%;
	margin-top: 10px;
	margin-bottom: 10px;
}

.footer{
	position: absolute;
	bottom: 10px;
	width: calc(100% - 30px);
}

/*.active ~ li {
  background: lightblue;
}

.active ~ li::before {
  background: lightblue;
}*/


.lds-roller {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
  left: calc(50% - 32px);
  top: calc(50% - 32px);
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 32px 32px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
  margin: -3px 0 0 -3px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 50px;
  left: 50px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 54px;
  left: 45px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 57px;
  left: 39px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 58px;
  left: 32px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 57px;
  left: 25px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 54px;
  left: 19px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 50px;
  left: 14px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 45px;
  left: 10px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.modal_black{
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	top: 0;
	left: 0;
	display: none;
}
.Panel{
	min-width: 300px;
	min-height: 300px;
	background: #fff;
	border-radius: 10px;
	display: none;
	position: absolute;
	padding: 5px;
	border: 3px solid #ccc;
}

#data_preview{
	padding: 5px;
	height: 400px;
	overflow: auto;
}

#bt_next{
	float: right;
}

.header_subtitle{
	font-weight: bold;
	padding: 5px;
	padding-top: 10px;
	color: #f53030;
}

.tbl tbody{
	color : #000;
	font-weight: normal;
}

.cronometer{
	padding: 10px;
	border: 2px solid white;
	font-size: 2em;
	border-radius: 5px;
	display: inline-block;
    margin-bottom: 15px;
    min-width: 140px;
}

.wrap{
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 10px;
	width: 100%;
}

.bar{
	background: #2c3b68;
    display: inline-block;
    width: 100%;
    padding: 5px;
}

.empezar{
	border: 1px solid white;
	background: green;
	border-radius: 5px;
	padding: 5px 10px;
	color: white;
	font-weight: bold;
	cursor: pointer;
}

.empezar:hover{
	color: white;
	text-decoration: none;
}

.tblist th{
	background: #2c3b68;
	color: white;
	font-weight: bold;

}
.tblist th, .tblist td{
	padding: 5px;
}
