
.password-wrapper {
  position: relative;
  display: block;
  align-items: center;
}

.password-wrapper input {
  padding-right: 40px;
  width: 100%;
}

.ver_password_usu {
  position: absolute;
  right: 30px;
  top: 21px;
  transform: translateY(-50%);
  z-index: 1;
  font-size: 17px;
  color: #333;
  background: transparent;
  border: none;
  cursor: pointer;
}

.card-border {
  border: 1px solid #e1e1e1;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding: 1rem;
  margin: 0 0 24px 0;
}

.card-border .card-border-title {
  font-size: 1rem;
  margin: 0 0 30px 0;
  font-weight: bold;
  color: #13181e;
}
.card-border .card-border-body {
  padding: 0;
}


.custom-btn-group {
  display: flex;
  flex-wrap: wrap;
}
.custom-btn-group.flex-end {
  justify-content: flex-end;
}
.custom-btn-group.flex-end .btn {
  margin: 0.25rem 0 0.25rem 0.25rem;
}
.custom-btn-group .btn {
  margin: 0.25rem;
}
.custom-icon-group {
  display: flex;
  flex-wrap: wrap;
}
.custom-icon-group.flex-end {
  justify-content: flex-end;
}
.custom-icon-group .btn {
  margin: 0.2rem;
}
.custom-icon-group .btn i {
  margin: 0;
}
.custom-link-group a {
  margin: 0 1rem;
}
.custom-badge-group {
  display: flex;
  flex-wrap: wrap;
}
.custom-badge-group.flex-end {
  justify-content: flex-end;
}
.custom-badge-group .badge {
  margin: 0.25rem;
}


.breadcrumb {
  background: rgba(0, 0, 0, 0);
  padding: 0;
  margin: 0;
}

.breadcrumb .breadcrumb-item {
  color: #13181e;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.breadcrumb .breadcrumb-item i {
  font-size: 2rem;
  margin-right: 15px;
  color: #0d9394;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #13181e;
  font-family: "bootstrap-icons" !important;
  content: "";
  font-size: 1.3rem;
  line-height: 1;
  vertical-align: middle;
}
.breadcrumb .breadcrumb-item a {
  color: #13181e;
}
.breadcrumb .breadcrumb-active {
  color: #13181e;
}

.color_link {
    text-decoration: none;
}

.color_link:hover  {
	color: #0d9394 !important; 
}

.text-red {
  color: #f87957 !important;
}

.text-green {
  color: #26ba4f !important;
}
.text-yellow {
  color: #ffae1f !important;
}
.text-blue {
  color: #e30613 !important;
}

.form-select_inv {
  border: 1px solid #c3cbd6;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  color: #232629;
  font-size: 0.8rem;
  min-height: 40px;
  background-color: #fff;
}
.form-select_inv:hover {
  border: 1px solid #9ba5b3;
}
.form-select_inv:focus {
  border-color: #9ba5b3;
  box-shadow: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  outline: auto !important;
  outline-color: #9ba5b3 !important;
}

/*para las fotos*/
  .miniatura {
    max-width: 70px;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 2px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .miniatura:hover {
    transform: scale(1.05);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  }

  /* Modal para ver imagen grande */
  .modal-imagen {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
  }

  .modal-imagen img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 4px;
    box-shadow: 0 0 10px #000;
  }

  .modal-imagen.active {
    display: flex;
  }

  .sin-foto {
    width: 70px;
    height: 45px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    color: #555;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
  }



.flash-message {
    background-color: #e6f7e9;
    color: #067d2e;
    padding: 10px 16px;
    margin: 0px 0px 0px 0px;
    border-left: 4px solid #28a745;
    font-size: 14px;
    border-radius: 4px;
}


