@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

/* GENERAL */

body {
  background: #f7f9ff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: #555;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #00011c;
}

p {
  margin-bottom: 24px;
  line-height: 1.9;
}

label,
.col-form-label {
  font-size: 12px;
  margin-bottom: 2px;
  font-weight: 600;
  color: #00011c;
}

.btn-group label {
  font-size: 11px;
}
/* TITLE */

#title-container {
  min-height: 460px;
  height: 100%;
  color: #fff;
  background-color: #0e2a47;
  text-align: center;
  padding: 105px 28px 28px 28px;
  box-sizing: border-box;
  position: relative;
  box-shadow: 10px 8px 21px 0px rgba(204, 204, 204, 0.75);
  -webkit-box-shadow: 10px 8px 21px 0px rgba(204, 204, 204, 0.75);
  -moz-box-shadow: 10px 8px 21px 0px rgba(204, 204, 204, 0.75);
}

#title-container h2 {
  font-size: 45px;
  font-weight: 800;
  color: #fff;
  padding: 0;
  margin-bottom: 0px;
}

#title-container h3 {
  font-size: 23px;
  font-weight: 600;
  color: #9a9790;
  padding: 0;
}
#title-container h6 span:nth-child(1) {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}
#title-container h6 span:nth-child(2) {
  font-size: 17px;
  color: #e06a25;
  font-weight: 600;
}

#title-container p {
  font-size: 13px;
  padding: 0 25px;
  line-height: 20px;
}

.logo-image {
  width: 230px;
  margin-bottom: 15px;
}

/* FORMS */

.add_new_questionnaire .form-control:disabled,
.add_new_questionnaire .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
  border: none;
  font-size: 14px;
  margin: 0px;
  padding: 8px;
}
#qbox-container {
  position: relative;
  padding: 62px;
  min-height: 630px;
  box-shadow: 10px 8px 21px 0px rgba(204, 204, 204, 0.75);
  -webkit-box-shadow: 10px 8px 21px 0px rgba(204, 204, 204, 0.75);
  -moz-box-shadow: 10px 8px 21px 0px rgba(204, 204, 204, 0.75);
  height: 100vh;
  overflow: auto;
}

#steps-container {
  margin: auto;
  min-height: 420px;
  display: flex;
  vertical-align: middle;
  align-items: center;
}

.step {
  display: none;
}

.step h5 {
  margin: -40px 0 0 0;
}

button#prev-btn,
button#next-btn,
button#submit-btn {
  font-size: 13px;
  font-weight: bold;
  position: relative;
  width: 90px;
  height: 35px;
  background: #308388;
  margin: 0 auto;
  margin-top: 20px;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  transition: color 0.3s;
  text-align: center;
  color: #fff;
  border: 0;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

button#next-btn:disabled {
  background: #e7e9eb;
  pointer-events: none;
}

button#prev-btn:after,
button#next-btn:after,
button#submit-btn:after {
  position: absolute;
  top: 90%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0d484b;
  content: "";
  z-index: -2;
  transition: transform 0.3s;
}

button#prev-btn:hover::after,
button#next-btn:hover::after,
button#submit-btn:hover::after {
  transform: translateY(-80%);
  transition: transform 0.3s;
}

.progress {
  border-radius: 0px !important;
}

.q__question {
  position: relative;
}

.q__question:not(:last-child) {
  margin-bottom: 10px;
}

.question__input {
  position: absolute;
  left: -9999px;
}

.question__label {
  position: relative;
  display: block;
  line-height: 40px;
  border: 1px solid #ced4da;
  border-radius: 5px;
  background-color: #fff;
  padding: 5px 20px 5px 50px;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}

.question__label:hover {
  border-color: #308388;
}

.question__label:before,
.question__label:after {
  position: absolute;
  content: "";
}

.question__label:before {
  top: 12px;
  left: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: inset 0 0 0 1px #ced4da;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.question__input:checked + .question__label:before {
  background-color: #308388;
  box-shadow: 0 0 0 0;
}

.form-check-input {
  width: 1.5em;
  height: 1.5em;
  border: 1.5px solid rgba(0, 0, 0, 0.5);
}

.question__input:checked + .question__label:after {
  top: 22px;
  left: 18px;
  width: 10px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.form-check-input:checked,
.form-check-input:focus {
  background-color: #308388 !important;
  outline: none !important;
  border: none !important;
}

input:focus {
  outline: none;
}

#input-container {
  display: inline-block;
  box-shadow: none !important;
  margin-top: 36px !important;
}

label.form-check-label.radio-lb {
  margin-right: 15px;
}

#q-box__buttons {
  text-align: center;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="text"],
input[type="email"] {
  padding: 8px 14px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus {
  border: 1px solid #308388;
  border-radius: 5px;
  outline: 0px !important;
  -webkit-appearance: none;
  box-shadow: none !important;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.form-check-input:checked[type="radio"],
.form-check-input:checked[type="radio"]:hover,
.form-check-input:checked[type="radio"]:focus,
.form-check-input:checked[type="radio"]:active {
  border: none !important;
  outline: 0px !important;
  box-shadow: none !important;
}

.form-check-input:focus,
input[type="radio"]:hover {
  box-shadow: none;
  cursor: pointer !important;
}

#note_start {
  margin: 0;
}

#form_cuestionario_clientes #success {
  display: none;
}

.back-link {
  font-weight: 700;
  color: #308388;
  text-decoration: none;
  font-size: 18px;
}

.back-link:hover {
  color: #82000a;
}

/* PRELOADER */

#preloader-wrapper {
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

#preloader {
  background-image: url("../img/process.png");
  width: 120px;
  height: 119px;
  border-top-color: #fff;
  border-radius: 100%;
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  margin: -75px 0 0 -75px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  z-index: 1001;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#preloader-wrapper .preloader-section {
  width: 51%;
  height: 100%;
  position: fixed;
  top: 0;
  background: #f7f9ff;
  z-index: 1000;
}

#preloader-wrapper .preloader-section.section-left {
  left: 0;
}

#preloader-wrapper .preloader-section.section-right {
  right: 0;
}

.loaded #preloader-wrapper .preloader-section.section-left {
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #preloader-wrapper .preloader-section.section-right {
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #preloader {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.loaded #preloader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}

/* MEDIA QUERIES */

@media (min-width: 990px) and (max-width: 1199px) {
  #title-container {
    padding: 80px 28px 28px 28px;
  }
  #steps-container {
    width: 85%;
  }
}

@media screen and (max-width: 1300px) {
  #steps-container {
    width: 100vh;
  }
}

@media (min-width: 990px) and (max-width: 1199px) {
  #title-container {
    padding: 80px 28px 28px 28px;
  }
  #steps-container {
    width: 85vh;
  }
}

@media (max-width: 991px) {
  #title-container {
    padding: 30px;
    min-height: inherit;
  }
}

@media (max-width: 767px) {
  #qbox-container {
    padding: 30px;
  }
  #steps-container {
    width: 100vh;
    min-height: 400px;
  }
  #title-container {
    padding-top: 50px;
  }
}

@media (max-width: 560px) {
  #qbox-container {
    padding: 40px;
  }
  #title-container {
    padding-top: 45px;
  }
}

.login-container {
  font-family: "Raleway";
}
.error {
  color: darkred;
  font-weight: 600;
  font-style: italic;
}

.login-container img {
  width: 22em;
  margin: 30px;
}

.login-container {
  margin-top: 3%;
  margin-bottom: 5%;
}

.login-form-1 {
  padding: 5%;
  background-color: #fff;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 9px 26px 0 rgba(0, 0, 0, 0.19);
}

.login-form-1 .nav-pills {
  background-color: #0e2a47;
  padding: 7px;
  border-radius: 4px;
}

.login-form-1 .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #0e2a47;
  background-color: #fff;
}

.login-form-1 .nav-pills .nav-item .nav-link {
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  letter-spacing: 1.5px;
  font-weight: 500;
  font-size: 13px;
}
.login-form-1 .nav-pills .nav-link {
  border-radius: 1.25rem;
  margin: 0 5px 0 5px;
  padding: 5px 30px 5px 30px;
  color: #fff;
}

.login-form-1 h3,
h6 {
  text-align: center;
  color: #333;
  font-weight: 600;
}

.login-form-2 {
  padding: 5%;
  background: rgba(0, 122, 129, 0.7);
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 9px 26px 0 rgba(0, 0, 0, 0.19);
}

.login-form-2 h3 {
  text-align: center;
  color: #fff;
}

.btnSubmit {
  width: 50%;
  border-radius: 1rem;
  padding: 1.5%;
  border: none;
}

.login-form-1 .btnSubmit {
  font-weight: 600;
  color: #fff;
  background-color: #0e2a47;
  margin-top: 20px;
  border: 1px solid #000;
}

.login-form-1 .btnSubmit:hover {
  font-weight: 600;
  color: #0e2a47;
  background-color: rgb(255, 255, 255);
  border: 1px solid #000;
  transition: 0.7s;
  cursor: pointer;
}

.login-form-1 .btnSubmit:focus {
  outline: none;
}

.btnReg {
  /*BOTON REGISTRARME LOGIN*/
  width: 50%;
  border-radius: 1rem;
  padding: 1.5%;
  border: none;
}

.btnReg {
  font-weight: 600;
  color: rgb(0, 122, 129);
  background-color: rgb(255, 255, 255);
}

.btnReg:hover {
  font-weight: 600;
  color: #fff;
  background-color: rgb(0, 122, 129);
  border: 1px solid #000;
  transition: 0.7s;
  cursor: pointer;
}

.btnReg:focus {
  outline: none;
}

.login-form-1 .ForgetPwd {
  color: #0062cc;
  font-weight: 600;
  text-decoration: none;
}

.login-form-2 label {
  /*ETIQUETAS LOGIN*/
  color: #fff;
  font-weight: 600;
  padding-left: 2%;
  padding-top: 0.5rem;
}

.fondoLogin {
  background-image: url("../img/fondoLogin.jpeg") !important;
  background-size: cover;
  overflow: hidden;
}

.login-form-1 .fa-user,
.login-form-1 .fa-key {
  font-size: 15px;
  width: 10px;
  margin: 3px;
}

.btn-check {
  font-size: 12px;
}

.bs-searchbox input[type="search"] {
  font-size: 12px;
}

.dropdown-menu li {
  font-size: 11px;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100% !important;
  font-size: 11px !important;
  text-align: left;
}
.btn-group-vertical {
  margin-left: 20px;
}

#tablaResultadosClientes th {
  background-color: #e06a25;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
}

table td {
  font-size: 12px;
  font-weight: 300;
}

#tableSatisfaction thead,
#tableQuality thead,
#tableResponsive thead,
#tableSummary thead,
#tableResultDepts thead {
  font-size: 12px;
  color: #0e2a47;
  text-align: center;
}

#tableSatisfaction tbody tr,
#tableQuality tbody tr,
#tableResponsive tbody tr,
#tableSummary tbody tr,
#tableResultDepts tbody tr {
  font-size: 11px;
  color: #000;
  text-align: center;
}

.modal#modalPendingCustomers .modal-header,
.modal#modalDoneCustomers .modal-header {
  padding: 10px;
}

.modal#modalPendingCustomers .modal-header h5,
.modal#modalDoneCustomers .modal-header h5 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.modal#modalPendingCustomers .modal-body,
.modal#modalDoneCustomers .modal-body {
  text-align: left;
}
.modal#modalPendingCustomers .modal-body ul > li,
.modal#modalDoneCustomers .modal-body ul > li {
  padding: 1px;
  font-weight: 300;
}

.modal#modalPendingCustomers .modal-body ul li > i {
  color: darkred;
  font-size: 11px;
}

.modal#modalDoneCustomers .modal-body ul li > i {
  color: green;
  font-size: 11px;
}

#divTableAllowedQuestions #questionsTable .question-row {
  cursor: pointer; /* Cambia el cursor a una mano al pasar sobre las filas */
}