/* ESTILOS GENERALES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: Nunito;
  src: url(../fonts/Nunito-VariableFont_wght.ttf);
  font-weight: 100 900;
}
body {
  background-color: #146474;
  font-family: Nunito;
  font-size: 100%;
  overflow-x: hidden;
}

.boton {
  width: 100%;
  background-color: pink;
  height: 52px;
  font-size: 14px;
}
.boton a {
  text-decoration: none;
  color: inherit;
}

h1 {
  color: #146373;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}

h2 {
  color: #146373;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}

h3 {
  color: #6C757D;
  font-size: 16px;
}

p {
  color: #333333;
  font-size: 14px;
  font-weight: 400;
}

label {
  display: flex;
  color: #333333;
  font-size: 16px;
  font-weight: 400;
}
 
.label-red {
  color: #E63946;
  text-align: center;
}

.button-primary {
  background-color: #146474;
  color: #f9eede;
  border: none;
  font-weight: 600;
  border-radius: 6px;
  transition: all ease-in 300ms;
}
.button-primary:hover {
  background-color: #104f5c;
  transition: all ease-in 300ms;
  color: #FEFEFE;
}
.button-primary:active {
  background: #8BD1FF;
}

.button-secondary {
  background-color: #7e9596;
  border: solid 1px #146474;
  color: #f9eede;
  font-weight: 600;
  border-radius: 6px;
  transition: all ease-in 300ms;
}
.button-secondary:active {
  background: #8BD1FF;
}

.button-outline {
  background-color: #f9eede;
  border: solid 1px #146474;
  color: #146474;
  font-weight: 600;
  border-radius: 6px;
  transition: all ease-in 300ms;
}

.swal2-confirm {
  background-color: #FEFEFE !important;
  border: solid 1px #025B96 !important;
  color: #025B96 !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
  width: 100% !important;
  height: 54px !important;
  font-size: 16px !important;
}

.swal2-actions:not(.swal2-loading) .swal2-styled:hover {
  background-image: none;
}

.swal2-styled.swal2-confirm:focus {
  box-shadow: none !important;
}

input::placeholder {
  font-size: 14px;
  color: #ABB5BE !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media screen and (min-width: 992px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 18px;
  }
  p {
    font-size: 14px;
  }
  label {
    font-size: 16px;
  }
  .boton {
    width: 100%;
    height: 54px;
    font-size: 16px;
  }
  input::placeholder {
    font-size: 16px;
  }
}
.card {
  background-color: #FEFEFE;
  border-radius: 8px;
  box-shadow: 0px 1px 10px 1px rgba(102, 102, 102, 0.25);
  height: auto;
  margin-bottom: 30px;
}
.card .card-body {
  padding: 30px;
}
.card .card-body .card-cabecera {
  padding: 0 15px 15px 15px;
}
.card .card-body .card-cabecera h1 {
  color: #146373;
}
.card .card-body .card-cabecera-designacion {
  border-bottom: 1px solid #D8DBDD;
  padding-bottom: 10px;
}

label span {
  color: #E63946;
  margin-left: 2px;
}

@media screen and (min-width: 992px) {
  .card .card-body {
    padding: 50px;
  }
  .card .card-body .card-cabecera {
    padding: 15px;
  }
}

#logo-autoridades-comiciales {
  margin-bottom: 1rem;
  width: 20rem;
}

header {
  padding: 15px 0px;
}

header img {
  width: auto;
  height: 30px;
}

@media screen and (min-width: 768px) {
  .logo-container img {
    width: 10rem;
    height: auto;
  }
}
.container-login {
  height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card-login {
  background-color: #FEFEFE;
  border-radius: 8px;
  box-shadow: 0px 1px 10px 1px rgba(102, 102, 102, 0.25);
  height: auto;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
}
.card-login .container-fluid {
  padding: 0;
}
.card-login .card-portada {
  order: 0;
}
.card-login .card-portada .gradiente {
  position: relative;
  margin: auto;
  background-image: url(../img/portada-mobile.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  object-position: top center;
  height: 13vh;
  border-radius: 6px 6px 0 0;
}
.card-login .card-portada .gradiente::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 10%;
  color: rgb(254, 254, 254);
  background: linear-gradient(to bottom, rgba(254, 254, 254, 0) 15%, #FEFEFE 85%);
}
.card-login .card-portada .gradiente .portada-mobile {
  border-radius: 6px 6px 0 0;
  width: 100%;
  height: auto;
  display: none;
}
.card-login .card-portada .gradiente .portada-desktop {
  border-radius: 6px 6px 0 0;
  display: none;
}
.card-login .card-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  order: 1;
  padding: 0 30px 30px 30px;
}
.card-login .card-form .card-cabecera {
  margin-bottom: 10px;
}
.card-login .card-form .login-buttons {
  display: flex;
  flex-direction: column;
  height: 250px;
  justify-content: space-around;
  margin-top: 25px;
}

.form-control {
  border: none;
  border-bottom: 1px solid #ABB5BE;
  border-radius: 0;
  padding: 0.375rem 0.75rem 0.375rem 0;
}
.form-control:focus {
  border-color: #146474;
  box-shadow: none;
}

@media screen and (min-width: 992px) {
  .container-login {
    justify-content: center;
  }
  .card-login {
    height: 80vh;
    flex-direction: row;
    width: 100%;
    gap: 0;
  }
  .card-login .card-portada {
    order: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    width: 50%;
  }
  .card-login .card-portada .gradiente {
    border-radius: 0 6px 6px 0;
    height: 80vh;
    width: auto;
    background-image: url(../img/portada-desktop.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
  }
  .card-login .card-portada .gradiente::before {
    background: none;
    top: 0;
  }
  .card-login .card-portada .gradiente .portada-mobile {
    display: none;
  }
  .card-login .card-portada .gradiente .portada-desktop {
    display: flex;
    border-radius: 0 6px 6px 0;
    width: auto;
    height: 100%;
    width: auto;
    display: none;
    width: 50%;
  }
  .card-login .card-form {
    order: 0;
    width: 50%;
    height: 100%;
    padding: 50px 100px;
  }
  .card-login .card-form .login-buttons {
    height: 240px;
  }
}
@media screen and (min-width: 1200px) {
  .card-form {
    order: 0;
    padding: 50px 120px;
  }
}
.card .card-cabecera {
  text-align: center;
}
.card .card-cabecera h2 {
  color: #6C757D;
}
.card .card-cabecera p span {
  color: #E63946;
  margin-right: 2px;
}
.card .input-card {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.card .input-card .form-control {
  background-color: #FEFEFE;
}
.card .input-card .form-control label {
  color: #333333;
  font-weight: 500;
}
.card .input-card .form-control label span {
  margin-left: 2px;
  color: #E63946;
}
.card .input-card .form-control input {
  font-size: 16px;
  font-weight: 300;
  border: none;
  width: 75%;
}
.card .input-card .form-control input:focus {
  outline: none;
}
.card .card-buttons {
  margin-top: 30px;
  height: 150px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

@media screen and (max-width: 413px) {
  .card .input-card {
    margin-bottom: 5px;
  }
  .card .input-card .form-control label {
    font-size: 12px;
  }
  .card .input-card .form-control input {
    width: 100%;
    font-size: 12px;
  }
}
@media screen and (min-width: 992px) {
  .card .card-buttons {
    margin-top: 30px;
    height: auto;
    width: 100%;
    flex-direction: row;
    gap: 30px;
  }
  .card .card-buttons a {
    width: 50%;
  }
}
.card .combo-radio {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card .combo-radio .form-check {
  margin-left: 10px;
}
.card .combo-radio .form-check .form-check-input {
  cursor: pointer;
}
.card .combo-radio .form-check .form-check-input:checked {
  background-color: #146474;
  border-color: #146474;
}
.card .combo-radio .form-check .form-check-input:focus {
  box-shadow: none;
}
.card .container-text-area textarea {
  resize: none;
  border: solid 1px #CED4DA;
  padding: 10px;
  border-radius: 6px;
}
.card .container-text-area textarea::placeholder {
  color: #b7b7b8;
}

input {
  font-family: "Nunito", sans-serif;
  background-color: #fefefe;
}

.container-input-file {
  border: #146474 solid 2px;
  display: flex;
  justify-content: space-around;
  width: 100%;
  height: 56px;
  border-radius: 6px;
  background-color: #fefefe;
}

::-webkit-file-upload-button {
  color: #fefefe;
  background-color: #CFE8F8;
  color: #0272BB;
  font-family: 500;
  outline: none;
  cursor: pointer;
  display: none;
}

.upload-box {
  font-size: 14px;
  background-color: #fefefe;
  outline: none;
  font-weight: 500;
  cursor: pointer;
  color: #146474;
  width: 55%;
  border-radius: 0 6px 6px 0;
  align-self: center;
  margin: 0 5px 0 10px;
}

.add-file {
  border: none;
  background-color: transparent;
  color: #333333;
  transition: all ease-in 300ms;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.icono-y-label {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #CFE8F8;
  border-right: #146474 solid 2px;
  color: #146474;
  width: 45%;
  padding: 0 5px;
  border-radius: 6px 0 0 6px;
}
.icono-y-label label {
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #146474;
  text-align: center;
}
.icono-y-label label .bi-file-earmark-text {
  margin-right: 5px;
}
.icono-y-label label svg {
  margin: 1px;
}

.fab {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  border: none;
  box-shadow: 1px 1px 3px rgba(34, 34, 34, 0.4);
  background-color: #025B96;
  color: white;
  font-size: 24px;
  position: fixed;
  bottom: 80px;
  right: 40px;
  right: 5%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

@media screen and (min-width: 992px) {
  .card .card-body .card-buttons {
    margin-top: 30px;
    height: auto;
    width: 100%;
    flex-direction: row;
    gap: 30px;
  }
  .card .card-body .card-buttons a {
    width: 50%;
  }
  .card .card-body div .container-input-file .icono-y-label label {
    font-size: 14px;
  }
  .card .card-body div .container-input-file .upload-box {
    font-size: 16px;
  }
  .add-file {
    font-size: 16px;
  }
  .add-file:hover {
    color: #999999;
    transition: all ease-in 300ms;
  }
}
.datos-personales .datos-personales-titulo h1 {
  font-size: 20px;
  color: #333333;
}

.step-bar {
  width: 100%;
  display: flex;
  flex-direction: row;
  word-break: break-word;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #D8DBDD;
}
.step-bar .active:nth-child(1) {
  color: #0272BB;
}
.step-bar .active:nth-child(2) {
  color: #E63946;
}
.step-bar .active:nth-child(3) {
  color: #419D78;
}
.step-bar .step-bar-item {
  width: fit-content;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #D8DBDD;
  gap: 5px;
}
.step-bar .step-bar-item i {
  font-size: 18px;
}
.step-bar .step-bar-item span {
  font-weight: 600;
  font-size: 14px;
}

.cuadro-info {
  background-color: rgba(230, 57, 70, 0.1);
  border: solid 1px #E63946;
  border-radius: 4px;
  color: #E63946;
}
.cuadro-info h4 {
  border-bottom: solid 1px #E63946;
  padding: 0 0 7px 0;
  margin: 15px;
  font-weight: 600;
  font-size: 14px;
}
.cuadro-info p {
  color: #E63946;
  font-weight: 500;
  margin: 15px;
}
.cuadro-info .card-buttons {
  height: 80px;
}

@media screen and (max-width: 410px) {
  .step-bar .step-bar-item i {
    font-size: 14px;
  }
  .step-bar .step-bar-item span {
    font-size: 12px;
  }
}
@media screen and (min-width: 992px) {
  .step-bar {
    flex-direction: row;
  }
  .step-bar .step-bar-item i {
    font-size: 20px;
  }
  .step-bar .step-bar-item span {
    font-size: 18px;
  }
}
.modal .modal-dialog .modal-content {
  border: none;
  box-shadow: 0px 1px 10px 1px rgba(102, 102, 102, 0.25);
  border-radius: 6px;
  display: flex;
  justify-content: flex-end;
}
.modal .modal-dialog .modal-content .btn-close {
  align-self: end;
  margin: 10px 10px 0 0;
  font-size: 12px;
}
.modal .modal-dialog .modal-content .modal-header {
  display: flex;
  justify-content: center;
  padding: 10px;
  margin: 0 20px;
}
.modal .modal-dialog .modal-content .modal-header .modal-title {
  font-size: 18px;
  color: #146474;
}
.modal .modal-dialog .modal-content .modal-body .modal-txt {
  font-size: 12px;
}
.modal .modal-dialog .modal-content .modal-body .modal-txt .txt-resaltado {
  color: #E63946;
}

.table::after {
  border-radius: 30px;
}

.modal-table {
  padding: 0 20px 30px 20px;
}
.modal-table .wrapper-tabla {
  border: 1px solid #DEE2E6;
  border-radius: 6px;
}
.modal-table .wrapper-tabla table {
  background-color: #F4F6FA;
  margin-bottom: 0;
}
.modal-table .wrapper-tabla table thead tr {
  height: 50px;
}
.modal-table .wrapper-tabla table thead tr th {
  font-weight: 600;
  font-size: 10px;
  text-align: center;
  line-height: 12px;
  padding: 0 15px;
}
.modal-table .wrapper-tabla table thead .th-motivo {
  background-color: #D8DBDD;
}
.modal-table .wrapper-tabla table tbody tr th {
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  line-height: 15px;
  padding: 0 5px;
}
.modal-table .wrapper-tabla table tbody tr td {
  text-align: center;
  line-height: 32px;
  font-size: 12px;
}

.table > thead {
  vertical-align: middle;
}

.table > tbody {
  vertical-align: middle;
}

@media screen and (max-width: 378px) {
  .modal-table {
    padding: 0 10px 50px 10px;
  }
  .table-bordered > :not(caption) > * > * {
    padding: 0;
  }
  .modal-title {
    font-size: 14px;
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .modal-table {
    padding: 0 60px 50px 60px;
  }
  .modal .modal-dialog .modal-content .btn-close {
    font-size: 12px;
  }
  .modal .modal-dialog .modal-content .modal-header {
    margin: 0 50px;
  }
  .modal .modal-dialog .modal-content .modal-header .modal-title {
    font-size: 26px;
  }
  .modal .modal-dialog .modal-content .modal-body {
    padding: 30px 75px;
  }
  .modal .modal-dialog .modal-content .modal-body .modal-txt {
    font-size: 16px;
    font-weight: 400;
  }
  .modal-table .wrapper-tabla table thead tr th {
    padding: 0px 32px;
    line-height: 15px;
  }
  .modal-table .wrapper-tabla table .tbody tr th {
    font-size: 1px;
  }
  .modal-table .wrapper-tabla table .tbody tr td {
    line-height: 30px;
  }
}
.main-tribunal .user-exit {
  display: flex;
  justify-content: flex-end;
  color: #F9EEDE;
  margin-bottom: 20px;
  gap: 10px;
  font-size: 18px;
}
.main-tribunal .user-exit a {
  color: #F9EEDE;
}
.main-tribunal .card {
  height: auto;
  background-color: #FAFAFA;
  border: none;
}
.main-tribunal .card .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.main-tribunal .card .card-body .card-cabecera {
  padding: 0 0 50px 0;
}
.main-tribunal .card .card-body .row-filtro {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 95%;
  border-bottom: solid 1px #D8DBDD;
  padding-bottom: 30px;
  gap: 50px;
}
.main-tribunal .card .card-body .row-filtro h2 {
  font-size: 20px;
  margin-bottom: 0;
}
.main-tribunal .card .card-body .row-filtro .combo-radios-tribunal {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-tribunal .card .card-body .row-filtro .combo-radios-tribunal .form-check .form-check-label {
  font-size: 16px;
}
.main-tribunal .card .card-body .row-filtro .combo-radios-tribunal .form-check .form-check-input {
  cursor: pointer;
}
.main-tribunal .card .card-body .row-filtro .combo-radios-tribunal .form-check .form-check-input:checked {
  background-color: #146474;
  border-color: #146474;
  box-shadow: none;
}
.main-tribunal .card .card-body .row-filtro .combo-radios-tribunal .form-check .form-check-input:focus {
  box-shadow: none;
}
.main-tribunal .card .card-body .card-tribunal-title {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding: 0 20px;
}
.main-tribunal .card .card-body .card-tribunal-title .container-title {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 14% 15% 14% 15% 14% 14% 9%;
  grid-template-columns: 14% 15% 14% 13% 20% 11% 9%;
  gap: 20px;
}
.main-tribunal .card .card-body .card-tribunal-title .container-title h3 {
  color: #333333 !important;
  font-size: 16px;
  margin-bottom: 0;
  text-align: start;
  font-weight: 600;
  width: 117px;
  word-break: break-word;
}
.main-tribunal .card .card-body .container-solicitudes {
  height: 60vh;
  width: 100%;
}
.main-tribunal .card .card-body .container-solicitudes .row-solicitudes {
  background-color: #FEFEFE;
  border: solid 1px #D8DBDD;
  border-radius: 6px;
  width: 100%;
  padding: 20px 24px;
}
.main-tribunal .card .card-body .container-solicitudes .row-solicitudes .row-solicitudes-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.main-tribunal .card .card-body .container-solicitudes .row-solicitudes .row-solicitudes-content .form-select-sm {
  width: 205px;
  height: 38px;
  border-radius: 6px;
  border: 1px solid #D8DBDD;
  background-color: #FEFEFE;
  cursor: pointer;
}
.main-tribunal .card .card-body .container-solicitudes .row-solicitudes .row-solicitudes-content .form-select-sm:focus {
  box-shadow: none;
}
.main-tribunal .card .card-body .container-solicitudes .row-solicitudes .row-solicitudes-content .row-solicitudes-btn {
  border: none;
  background-color: transparent;
}
.main-tribunal .card .card-body .container-solicitudes .row-solicitudes .row-solicitudes-content span {
  font-size: 14px;
  font-weight: 500;
  width: 200px;
  word-break: break-word;
}
.main-tribunal .card .card-body .container-solicitudes .row-solicitudes .row-solicitudes-content span a {
  color: #0272BB;
}
.main-tribunal .card .card-body .table {
  border-collapse: separate;
  border-spacing: 0 15px;
}
.main-tribunal .card .card-body .table thead tr th {
  border-bottom: none;
}
.main-tribunal .card .card-body .table tbody tr {
  overflow: visible;
  border-radius: 6px;
  background-color: #FEFEFE;
  /*box-shadow: 0px 0px 1px black;*/
  box-shadow: 0px 0px 1px #9a9292;
}
.main-tribunal .card .card-body .table tbody tr td {
  border: none;
}
.main-tribunal .card .card-body .table tbody tr td span {
  font-size: 14px;
}
.main-tribunal .card .card-body .table tbody tr .container-collapse {
  padding: 0;
}
.main-tribunal .pagination > li > a {
  background-color: #FEFEFE !important;
  color: #146474;
}
.main-tribunal .pagination > li > a:focus,
.main-tribunal .pagination > li > a:hover,
.main-tribunal .pagination > li > span:focus,
.main-tribunal .pagination > li > span:hover {
  color: #ABB5BE !important;
  background-color: #FEFEFE !important;
  border-color: #ABB5BE !important;
}
.main-tribunal .pagination > .active > a {
  color: #FEFEFE;
  background-color: #0272BB !important;
  border: solid 1px #0272BB !important;
}
.main-tribunal .pagination > .active > a:hover {
  color: #FEFEFE;
  background-color: #0272BB !important;
  border: solid 1px #0272BB;
}
.main-tribunal .send-btn {
  background-color: #E6F5FF;
  border: 2px solid #146474;
  height: 40px;
  width: 130px;
  border-radius: 6px;
  color: #146474;
  font-weight: 600;
}
.main-tribunal .send-btn i {
  font-weight: 600;
  margin-left: 10px;
}
.main-tribunal .send-modal .modal-dialog .modal-content .modal-header {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px 10px 32px;
}
.main-tribunal .send-modal .modal-dialog .modal-content .modal-header .modal-title {
  color: #333333;
}
.main-tribunal .send-modal .modal-dialog .modal-content .modal-header .btn-close {
  margin: 0;
}
.main-tribunal .send-modal .modal-dialog .modal-content .modal-body {
  padding: 5%;
}
.main-tribunal .send-modal .modal-dialog .modal-content .modal-body #enviarTextArea {
  resize: none;
  border: 1px solid #D8DBDD;
  border-radius: 6px;
  padding: 10px;
}
.main-tribunal .send-modal .modal-dialog .modal-content .modal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: none;
  padding-bottom: 30px;
}
.main-tribunal .send-modal .modal-dialog .modal-content .modal-footer button {
  width: 95%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.main-tribunal .btn:active {
  border: none;
}
.main-tribunal .btnCollapse {
  border: none;
  background-color: #FEFEFE;
  padding: 10px;
}
.main-tribunal .form-select {
  width: 160px;
}/*# sourceMappingURL=custom.css.map */

.labelSeleccionar {
  color:black;
  font-weight:bold;
}
.checkbox-separado {
  margin-right: 5px; /* Ajusta el valor según sea necesario */
}

/* Estilo para el botón desactivado */
.boton-desactivado {
  background-color: grey;
  cursor: not-allowed;
}

.boton-desactivado:hover {
  background-color: grey;
  cursor: not-allowed;
}


/* Estilo para el botón activado */
.boton-activado {
  background-color: rgb(16,79,92);
  cursor: pointer;
}