
/***** 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 {
  display: inline-block;
  background: linear-gradient(135deg, #001965 0%, #0a3a8f 100%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-width: 260px;
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(0, 25, 101, 0.35);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}
.boton_finalizar:hover {
  background: linear-gradient(135deg, #0a3a8f 0%, #1258c7 100%);
  box-shadow: 0 6px 24px rgba(0, 25, 101, 0.45);
  transform: translateY(-2px);
}
.boton_finalizar:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 25, 101, 0.3);
}

#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; }
input[type="text"], input[type="email"], input[type="number"] {
  border: 1px solid #ccc !important;
  border-radius: 5px;
  padding: 6px 10px;
  font-size: 13px;
  color: #555151;
  width: 100%;
  max-width: 480px;
  box-sizing: border-box;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="number"]:focus {
  border-color: #888 !important;
  outline: none;
  box-shadow: 0 0 0 2px rgba(84,110,122,0.15);
}

 textarea {
   border-radius: 5px;
   font-size:13px;
   padding:5px 10px 5px 10px;
   color: #555151;
 }
