*{
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body{
    height: 100%;
    background-color: #98ccca;
}

#enc-box{
    width:100%;
    min-height: 100%;
    background-color: #98ccca;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 25px;
    padding-bottom: 25px;
    /*background-image: url("../src/bg.jpg");*/
}

#enc-box h1 {
    color: #c23639;
    margin: 20px 0px 20px 0px;
}

#encuesta h3{
    margin-bottom: 20px;
    color: #bb332f;
}

#bloque{
  max-width: 650px;
  width: 100%;
}

#bloque p{
  background-color: #bb332f;
  color: white;
  padding: 10px;
  width: 100%;
  display: inline-block;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  font-size: 14px;
  float: right;
  text-align: center;
  box-shadow: 2px 0px 5px 1px rgba(0, 0, 0, 0.2);
}

#encuesta{
  max-width: 650px;
  width: 100%;
  background-color: white;
  padding: 10px;
  border-radius: 0px 0px 10px 10px;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.2);
}

#en-inicio{
  max-width: 700px;
  width: 100%;
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#en-inicio h1{
    margin-top: 0px;
    margin-bottom: 5px;
    text-align: center;
}

#en-inicio h4{
    margin-bottom: 10px;
    text-align: center;
}

#en-inicio h5{
  color: #666;
  font-size: 14px;
}

.pText{
  text-align: center;
  font-size: 0.7em;
  margin-bottom: 5px;
  margin-top:10px;
}

#divFVS{
  width: 30%;
}

#divDKV{
  width: 40%;
}

.foot{
  margin: 20px auto;
  font-size: 0.7em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.foot p{
  text-align: left;
}

.divSpansito{
  width: 30%;
}

.spansito{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: baseline;
  align-content: center;
}

#err-body{
  text-align: center;
  margin: 10px 0px 10px 0px;
}

#en-mundos{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.en-img-mundo{
  width: 50px;
  height: 50px;
  margin: 5px;
}

#start-btn{
    margin-top: 80px;
}

#encuesta #respuestas input{
    margin: 10px 20px 10px 40px;
    vertical-align: top;
}

#encuesta label{
    vertical-align: top;
}

.opcion{
  display: flex;
  width: 90%;
  align-items: center;
  margin-bottom: 10px;
}

.enc-btn:enabled{
    color: white;
    background-color: #c23639;
    border: none;
    padding: 8px 30px 8px 30px;
    font-size: 15px;
    border-radius: 5px;
    margin-top: 20px;
    outline: none;
    transition: all 0.5s;
}

.enc-btn:disabled {
    background-color: #A4A4A4;
    color: white;
    border: none;
    padding: 8px 30px 8px 30px;
    font-size: 15px;
    border-radius: 5px;
    margin-top: 20px;
    outline: none;
    transition: all 0.5s;
}

.enc-btn:enabled:hover{
    cursor: pointer;
    opacity: 0.6;
}

.left{
  float: left;  
}

.right{
  float: right;  
}


.load{
    width: 75px;
    height: 75px;
    margin-bottom: 20px;
}

#encuesta .checkbox {
  position: relative;
  top: -0.1rem;
  margin: 0 1rem 0 0;
  cursor: pointer;
  vertical-align: top;
}
#encuesta .checkbox:before {
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -moz-transition: -moz-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-transform: rotate(-45deg) scale(0, 0);
  -moz-transform: rotate(-45deg) scale(0, 0);
  -ms-transform: rotate(-45deg) scale(0, 0);
  -o-transform: rotate(-45deg) scale(0, 0);
  transform: rotate(-45deg) scale(0, 0);
  content: "";
  position: absolute;
  left: 0.1875rem;
  top: 0.125rem;
  z-index: 1;
  width: 0.75rem;
  height: 0.375rem;
  border: 2px solid;
  border-top-style: none;
  border-right-style: none;
}
#encuesta .checkbox:checked:before {
  -webkit-transform: rotate(-45deg) scale(1, 1);
  -moz-transform: rotate(-45deg) scale(1, 1);
  -ms-transform: rotate(-45deg) scale(1, 1);
  -o-transform: rotate(-45deg) scale(1, 1);
  transform: rotate(-45deg) scale(1, 1);
}
#encuesta .checkbox:after {
  content: "";
  position: absolute;
  top: -0.125rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  background: #fff;
  border: 2px solid #CBCBCB;
  cursor: pointer;
}

#encuesta .radio {
  position: relative;
  margin: 0 1rem 0 0;
  cursor: pointer;
  vertical-align: top;
}
#encuesta .radio:before {
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -moz-transition: -moz-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  transform: scale(0, 0);
  content: "";
  position: absolute;
  top: 0;
  left: 0.125rem;
  z-index: 1;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}
#encuesta .radio:checked:before {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}
#encuesta .radio:after {
  content: "";
  position: absolute;
  top: -0.25rem;
  left: -0.125rem;
  width: 1rem;
  height: 1rem;
  background: #fff;
  border: 2px solid #CBCBCB;
  border-radius: 50%;
}

#encuesta select {
  border: 1px solid #CCC;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  display: inline-block;
  margin: 0 auto;
  padding: 8px;
  color: #666;
  width: 100%;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  select {
    background: #EFEFEF url("../src/arrow.png") 95% 50% no-repeat;
  }
}

.selector{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.selector-text{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33%;
  height: 100%;
}

.selector-textos{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 25px;
  text-align: center;
}

.selector-box{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50%;
}

.selector-item{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20%;
  height: 100%;
}

.selector-item .radio{
  left: -10px;
}

.selector-radios{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.selector-centro{
  height: 100%;
  width: 33%;
}

.imagen{
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

#divImgUTAD{
  background-color: rgba(0,21,92,1);
  border-radius: 5px;
  width: 20%;
  height: auto;
  margin-left: 5%;
}

/* LOADER */

.md-preloader{
  font-size:0;
  display:inline-block;
  -webkit-animation:outer 6600ms linear infinite;
  animation:outer 6600ms linear infinite
}

.md-preloader svg{
  -webkit-animation:inner 1320ms linear infinite;
  animation:inner 1320ms linear infinite;
}

.md-preloader svg circle{
  fill:none;
  stroke:#448aff;
  stroke-linecap:square;
  -webkit-animation:arc 1320ms cubic-bezier(.8, 0, .4, .8) infinite;
  animation:arc 1320ms cubic-bezier(.8, 0, .4, .8) infinite
}

@-webkit-keyframes outer{
  0%{-webkit-transform:rotate(0);transform:rotate(0)}
  100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}
}

@keyframes outer{
  0%{-webkit-transform:rotate(0);transform:rotate(0)}
  100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}
}

@-webkit-keyframes inner{
  0%{-webkit-transform:rotate(-100.8deg);transform:rotate(-100.8deg)}
  100%{-webkit-transform:rotate(0);transform:rotate(0)}
}

@keyframes inner{
  0%{-webkit-transform:rotate(-100.8deg);transform:rotate(-100.8deg)}
  100%{-webkit-transform:rotate(0);transform:rotate(0)}
}

@-webkit-keyframes arc{
  0%{stroke-dasharray:1 210.48670779px;stroke-dashoffset:0}
  40%{stroke-dasharray:151.55042961px,210.48670779px;stroke-dashoffset:0}
  100%{stroke-dasharray:1 210.48670779px;stroke-dashoffset:-151.55042961px}
}

@keyframes arc{
  0%{stroke-dasharray:1 210.48670779px;stroke-dashoffset:0}
  40%{stroke-dasharray:151.55042961px,210.48670779px;stroke-dashoffset:0}
  100%{stroke-dasharray:1 210.48670779px;stroke-dashoffset:-151.55042961px}
}