
/***** General *****/

body {
  background-color: #e1e2e1;
  font-family: 'Roboto', sans-serif;
  color: #4e4f53;
}

input{
  color:#000000;
}

input[disabled]
{
    background-color:#CCC;
    border: 1px solid #000;
}


#pagewrap .containerPage {
  display: none;
  margin-top: 2em;
}

#pagewrap .containerPage.show {
  display: block;
}

.pageload-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  visibility: hidden;
}

.pageload-overlay.show {
  visibility: visible;
}

.pageload-overlay svg {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.pageload-overlay svg path {
  fill: #fff;
}

.pageload-overlay::after,
.pageload-overlay::before {
  content: '';
  position: fixed;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  z-index: 1000;
  -webkit-transition: opacity 0.15s, visibility 0s 0.15s;
  transition: opacity 0.15s, visibility 0s 0.15s;
}

.pageload-overlay::after {
  background: #6cc88a;
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
  -webkit-animation: moveRight 0.6s linear infinite alternate;
  animation: moveRight 0.6s linear infinite alternate;
}

.pageload-overlay::before {
  background: #4fc3f7;
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
  -webkit-animation: moveLeft 0.6s linear infinite alternate;
  animation: moveLeft 0.6s linear infinite alternate;
}

@-webkit-keyframes moveRight {
  to { -webkit-transform: translateX(20px); }
}

@keyframes moveRight {
  to { transform: translateX(20px); }
}

@-webkit-keyframes moveLeft {
  to { -webkit-transform: translateX(-20px); }
}

@keyframes moveLeft {
  to { transform: translateX(-20px); }
}

.pageload-loading.pageload-overlay::after,
.pageload-loading.pageload-overlay::before {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}


/***** Cuestionario *****/
.divPregunta {
  margin-top:1em;
  clear: both;
  padding-bottom: 20px;
}

.pregunta {
  font-weight: bold;
  color:#756a6a;
  margin-bottom: 10px;
}

.opcion_respuesta {
  padding-right:2em;
  display: inline-flex;
  align-items: center;
  padding-left:15px;
}

.opcion_respuesta.opcion_otro {
  display: block;
}

.detalle {
  height: 60px;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default {
  color: #000 !important;
}

.boton_finalizar {
  background-color:#001965; color:#FFFFFF;min-width: 150px;
  font-size: 20px;
  padding-top: 2px;
  padding-bottom: 3px;
}

#btnNext, #btnBack, #btnFinish {
  font-size: 120%;
  color: #525252;
  cursor: pointer;
  width:150px;
  padding:5px;
  text-decoration: none;
}


/* No media query since this is the default in Bootstrap */

/* Small devices (landscape phones, 576px and up) */

@media (min-width: 576px) {}

/* Medium devices (tablets, 768px and up) */

@media (min-width: 768px) {}

/* Large devices (desktops, 992px and up) */

@media (min-width: 992px) {}

/* Extra large devices (large desktops, 1200px and up) */

@media (min-width: 1200px) {}

#sugerencias
{
  width: 100%;
  height:100px;
}

label {
    color: #8b8b8b;
    font-size:14px;
    margin-bottom: 0;
    margin-left:5px;
}

label.error {
	color: red;
	font-style: italic;
  margin-left: 15px;
}

.opcion_otro label {
  margin-left:0px;
}
div.error { display: none; }
input {	border: 1px solid black; }
input.checkbox { border: none }
input:focus { border: 1px dotted black; }
input.error { border: 1px dotted red; }

.divPregunta.error-item {
  border: 1px solid red;
  padding: 5px;
}
 textarea {
   border-radius: 5px;
   font-size:13px;
   padding:5px 10px 5px 10px;
   color: #555151;
 }
