@charset "UTF-8";
@import url("https://fonts.cdnfonts.com/css/br-shape");
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Segoe UI", sans-serif;
  position: relative;
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children ul {
  padding: 4px 24px 2px 57px !important;
  padding-left: 16px !important;
}

#bgVideo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.747);
  z-index: 1;
}

.container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem;
  flex-wrap: wrap;
}

h1.display-4 {
  color: white;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
  font-size: 3rem;
  max-width: 55%;
  font-family: "BR Shape", sans-serif !important;
  font-weight: 700;
}

.login-box {
  background: linear-gradient(145deg, #f5faff, #e0e8f0);
  padding: 2.5rem;
  border-radius: 25px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 0 0 4px #28a745, 0 0 15px 4px rgba(6, 119, 21, 0.603), inset 0 0 15px rgba(0, 0, 0, 0.1);
  border: 2px solid #28a745;
}

.login-box label {
  font-weight: bold;
}

.login-box .form-control {
  border-radius: 10px;
}

.login-box .btn {
  border-radius: 10px;
  padding: 0.5rem 1.2rem;
}

.login-box small {
  display: block;
  margin-top: 1rem;
  font-weight: 500;
  color: #444;
  text-align: center;
}

.login-title {
  color: #28a745; /* verde bootstrap */
  padding: 0.8rem;
  border-radius: 12px;
  font-weight: bold;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
}

#tablaProveedores{
  font-size: 10px;
  text-align: center;
}

.table > :not(caption) > * > * {
  padding: 6px 0;
}

.login-footer a:hover,
.login-footer a:visited,
.login-footer a:active,
.login-footer a:focus {
  color: #28a745 !important;
  text-decoration: underline;
}

footer-lg {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to right, #0d6efd, #fd7e14);
  color: white;
  text-align: center;
  padding: 1rem 0;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.5px;
}

.login-footer {
  background: rgba(255, 255, 255, 0.25);
  padding: 0.8rem;
  border-top: 1px solid #ddd;
  border-radius: 0 0 18px 18px;
  font-size: 0.9rem;
  color: #0d6efd;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.login-footer img {
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.4));
}

.login-footer a {
  color: #28a745 !important;
  text-decoration: none;
  font-weight: bold;
}

.left-text {
  position: relative;
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  text-shadow: -1px -1px 0 #f57c00, 1px -1px 0 #f57c00, -1px 1px 0 #f57c00, 1px 1px 0 #f57c00; /* contorno naranja */
  overflow: hidden;
  display: inline-block;
  opacity: 0;
  animation: fadeInText 1s ease-in forwards;
  animation-delay: 0.2s;
}

.left-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: shimmer 3s infinite;
  animation-delay: 1s; /* 👈 empieza después de 1 segundo */
  pointer-events: none;
}

@keyframes shimmer {
  0% {
    left: -75%;
  }
  50% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}
@keyframes fadeInText {
  to {
    opacity: 1;
  }
}
.modal-content {
  border: 2px solid #0d6efd;
}

.modal-header {
  background: linear-gradient(90deg, #0d6efd, #025ce2);
}

#logo-inicial {
  height: 60vh !important;
  width: 100% !important;
  padding: 2rem 0;
}

.btn-warning {
  background-color: #fd7e14;
  border: none;
}

.btn-warning:hover {
  background-color: #e96c0a;
}

/* #Region Accordion Horizontal */
.accordion-horizontal {
  display: flex;
  max-height: 70vh;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

/* Pestañas a la izquierda */
.accordion-tabs {
  width: 200px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #dee2e6;
  background-color: #f8f9fa;
}

/* Contenido a la derecha */
.accordion-content {
  flex-grow: 1;
  padding: 1rem;
  overflow-y: auto;
}

/* Botones del acordeón */
.accordion-button {
  text-align: left;
  width: 100%;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #dee2e6;
  background-color: transparent;
  padding: 0.75rem 1rem;
  transition: background-color 0.3s ease;
}

/* Activo y hover */
.accordion-button.active,
.accordion-button:hover {
  background-color: #e9ecef;
  outline: none;
}

/* Colapsables */
.accordion-collapse {
  display: none;
}

.accordion-collapse.show {
  display: block;
}

.tab-content-panel {
  display: none;
}

.tab-content-panel.show {
  display: block;
}

#preview {
  height: 50%;
  width: 50%;
  border-radius: 10px;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

/* #endregion */
/* #region personal-formulario */
.form-control.input-sm,
.form-select.input-sm {
  height: calc(1.3em + 0.75rem + 2px) !important;
  padding: 0.375rem 0.75rem !important;
  font-size: 0.875rem;
}

.form-floating > .form-control.input-sm ~ label,
.form-floating > .form-select.input-sm ~ label {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
}

.form-control.sm-input, .form-select.sm-input, textarea.sm-input {
  height: 30px !important;
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
}

.formulario-container {
  height: calc(100vh - 140px); /* Ajustar según altura de navbar/footer */
  display: flex;
  flex-direction: column;
}

.formulario-scrollable {
  flex: 1;
  overflow-y: auto;
  padding-right: 8px;
}

.sm-input {
  height: 30px !important;
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
}

#optgroup-personal {
  margin-top: 17vh !important;
}

.mbp-1 {
  margin-bottom: -1.5rem !important;
}


#tablaPersonal thead tr th,
#tablaPersonal tbody tr td
 {
  padding: 4px 8px;
  line-height: 1.1;
  font-size: 10px;
}
.personal-container {
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #f8f9fa;
  padding: 20px;
}



/* #endregion */
/* Region Asistencias */
.asistencia #tableAsistencia thead tr th {
  padding: 4px 8px;
  line-height: 1.1;
  font-size: 10px;
}
.asistencia-container {
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #f8f9fa;
  padding: 20px;
}
.asistencia-card {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  border: none;
  background-color: white;
}
.asistencia-card-header {
  background: linear-gradient(135deg, #0d6efd, #0257d5);
  color: white;
  font-weight: bold;
  border-radius: 10px 10px 0 0 !important;
}
.asistencia-table {
  width: 100%;
  min-width: 1000px;
  border-collapse: collapse;
}
.asistencia-table-container {
  overflow-x: auto;
}
.asistencia-table-header {
  background-color: #f1f6ff;
  position: sticky;
  top: 0;
}
.asistencia-table-header th {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 2px solid #dee2e6;
}
.asistencia-table-row td {
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
}
.asistencia-table-row:hover {
  background-color: white;
}
.asistencia-employee-name {
  font-weight: 600;
  color: #0d6efd;
}
.asistencia-employee-total-hours {
  font-weight: bold;
  background-color: white;
}
.asistencia-week-separator {
  background-color: #e9ecef;
  font-weight: bold;
  color: #495057;
}
.asistencia-input-time {
  width: 80px;
  padding: 5px 10px;
  border: 1px solid #ced4da;
  border-radius: 4px;
}
.asistencia-btn {
  padding: 8px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 500;
}
.asistencia-btn-primary {
  background-color: #0d6efd;
  color: white;
}
.asistencia-btn-primary:hover {
  background-color: #0257d5;
}
.asistencia-btn-secondary {
  background-color: #6c757d;
  color: white;
}
.asistencia-btn-secondary:hover {
  background-color: #545b62;
}

#tablaAsistencia thead tr th,
#tablaAsistencia tbody tr td{
  padding: 4px 8px;
  line-height: 1.1;
  font-size: 10px;
}

#tablaAsistencia tbody tr td input {
  font-size: 9px;
  padding: 4px 7px;
  height: auto;
  line-height: 0.8;
  width: 100%;
  box-sizing: border-box;
}

#formAsistencia input {
  font-size: 12px;
}

.modal-header-verde{
  background: linear-gradient(40deg, #95dd4d, #008000) !important;
}

/* Filtros asistencias  */

.filtro-asistencia {
  border: 2px solid #008000;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 10px; /* tamaño base del texto */
}

.form-filtro-asistencia {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
}

.grupo-filtro {
  display: flex;
  flex-direction: column;
  flex: 1 1 30%;
  min-width: 180px;
}

.grupo-filtro label {
  font-size: 10px;
  font-weight: 500;
  margin-bottom: 4px;
}

.grupo-filtro input,
.grupo-filtro select
{
  padding: 4px 8px;
  font-size: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.boton-buscar {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.boton-buscar button {
  padding: 5px 10px;
  font-size: 10px;
  border-radius: 5px;
  background-color: white;
  color: #008000;
  border: 1px solid #008000;
  cursor: pointer;
}

.boton-buscar button i {
  margin-right: 4px;
}

#modalProveedor .modal-body {
    max-height: 75vh;
    overflow-y: auto;
}

#modalProveedor .form-label {
    font-size: 0.75rem; /* Más pequeño que form-control-sm */
}
#modalProveedor .form-control-sm {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}
#modalProveedor .form-check-label {
    font-size: 0.75rem;
}
#modalProveedor .modal-body {
    font-size: 0.75rem;
}
#modalProveedor .modal-dialog {
    max-width: 800px;
}
#modalProveedor .modal-content {
    font-size: 0.75rem;
}

.table tbody tr:first-child > * {
  padding-top: 2px;
}



/* #region Genera Quincenas */

    .gq-body {
      margin: 0;
      padding: 0;
      background-color: #f2f2f2;
      font-family: 'Segoe UI', sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 62vh;
    }

    .gq-contenedor {
      max-width: 420px;
      width: 100%;
      background-color: white;
      border: 2px solid #008000;
      border-radius: 10px;
      padding: 2rem;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
      position: relative;
    }

    .gq-contenedor h2 {
      margin-top: 0;
      font-size: 18px;
      color: #333;
      text-align: center;
      margin-bottom: 20px;
    }

    .gq-explicacion {
      position: absolute;
      top: -50px;
      width: 100%;
      text-align: center;
      color: #008000;
      font-weight: bold;
      font-size: 14px;
      background-color: transparent;
    }

    .gq-label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .gq-input {
      width: 100%;
      padding: 10px;
      border: 1px solid #008000;
      border-radius: 5px;
      font-size: 16px;
      margin-bottom: 20px;
    }

    .gq-button {
      width: 100%;
      background-color: #008000;
      color: white;
      padding: 10px;
      font-size: 16px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    .gq-button:hover {
      background-color: #006400;
    }



/* #endregion */

/* #region Overlay */

 .gp-overlay {
    display: none; /* Oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); /* Backdrop negro translúcido */
    z-index: 9999;
    justify-content: center;
    align-items: center;
  }

  .gp-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-size: 1.2rem;
  }

  .gp-spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #ffffff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    animation: gp-rotate 1s linear infinite;
  }

  @keyframes gp-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }


/* #endregion */

/* #region generar_planillas */
  .gp-planilla-container {
      font-size: 12px;
  }

  .gp-planilla-formulario,
  .gp-planilla-iframe {
      border: 2px solid #008000;
      border-radius: 8px;
      padding: 15px;
      margin-bottom: 20px;
      background-color: #fff;
  }

  .gp-planilla-formulario h6 {
      color: #008000;
      font-weight: bold;
      margin-bottom: 10px;
  }

  .gp-planilla-formulario label {
      font-weight: bold;
      margin-top: 8px;
  }

  .gp-planilla-formulario select,
  .gp-planilla-formulario button {
      font-size: 12px;
  }

  .gp-planilla-btn {
      background-color: #008000;
      color: white;
      border: none;
      width: 100%;
      margin-top: 15px;
  }

  .gp-planilla-iframe iframe {
      width: 100%;
      height: 500px;
      border: none;
  }

  .gp-planilla-descripcion {
      font-size: 12px;
      margin-bottom: 10px;
      color: #333;
  }

  .mppi-8 {
      margin-bottom: -0.5rem !important;
  }

/* #endregion */

/* #region boletas */
.gp-boleta-formulario label{
    font-weight: bold;
    margin-top: 1px;
}

.gp-boleta-formulario,
  .gp-boleta-iframe {
      border: 2px solid #008000;
      border-radius: 8px;
      padding: 15px;
      margin-bottom: 20px;
      background-color: #fff;
  }



.check-boleta{
    margin-top: 0.5rem;
}

.tabla-ajustada th,
.tabla-ajustada tbody td {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
    font-size: 11px !important;
    vertical-align: middle;
}

.thead-verde th {
    background-color: #008000 !important;
    color: white !important;
}

  .tabla-ajustada .btn-sm {
      padding: 2px 6px !important;
      font-size: 10px !important;
      margin-right: 0 !important;
  }
/* #endregion */


@media (max-width: 768px) {
  .asistencia-container {
    padding: 10px;
  }
  .asistencia-periodo-info {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* #endregion */
/* Tablets: ancho entre 768px y 991px */
@media (max-width: 991.98px) {
  h1.display-4 {
    font-size: 3rem;
    max-width: 90%;
    text-align: center;
  }
}
/* Celulares: ancho menor a 768px */
@media (max-width: 767.98px) {
  h1.display-4 {
    font-size: 2rem;
    max-width: 100%;
    text-align: center;
  }
  #optgroup-personal {
    margin-top: 3vh !important;
  }
  .breadcrumb.small {
    font-size: 7px !important;
  }
  .titulo-seccion {
    font-size: 10px !important;
  }
  #contenido-personal {
    padding-top: 0.5rem !important;
    padding-bottom: 20.5rem !important;
  }
  .main-wrapper .footer {
    position: relative !important;
    margin-top: 8vh !important;
    padding-bottom: 1px !important;
  }
  #logo-inicial {
    padding: 15rem 0 !important;
  }

  .asistencia #tableAsistencia thead tr th {
    padding: 0px !important;
    line-height: 1.1;
    font-size: 10px;
}
}
/* Laptop y escritorio: ancho mayor o igual a 992px  */
@media (min-width: 992px) {
  .formulario-container {
    height: calc(100vh - 230px); /* Ajustar según header/footer */
    display: flex;
    flex-direction: column;
  }
  .formulario-scroll-interno {
    max-height: calc(100vh - 220px); /* ajusta según el alto de header y márgenes */
    overflow-y: auto;
    padding-right: 10px;
    border-radius: 8px;
    background-color: #f8f9fa; /* opcional, para que se vea más claro */
  }
}/*# sourceMappingURL=esteriliza.css.map */

table th select {
  font-size: 9px !important;
  background-color: wheat !important;
}

.filtros-table {
    gap: 5px; /* espacio entre inputs */
    padding: 0;
    margin: 0;
}

.filtros-table input {
    /* max-width: 150px;  */
    max-width: 20rem;
    font-size: 12px; /* texto más pequeño */
}

.filtros-table select {
  background-color: #787b78 !important;
  color: white;
}

.progress-bar-timer {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background-color: #0d6efd; /* Azul Bootstrap */
    width: 0%;
    animation: progressTimer 3s linear forwards;
}

@keyframes progressTimer {
    from { width: 0%; }
    to { width: 100%; }
}

/* Contenedor centrado */
.miapp-reporte-container {
  display: flex;
  justify-content: center;
  /* align-items: center;
  min-height: calc(100vh - 80px); */
  align-items: flex-start;
  min-height: auto;
  padding: 20px;
  box-sizing: border-box;
}

/* Card con borde verde */
.miapp-reporte-card {
  background: #fff;
  border: 4px solid #008000;
  border-radius: 12px;
  padding: 9px;
  max-width: 97%;
  width: 100%;
  max-height: 90vh;   /* no se pasa de la pantalla */
  overflow-y: auto;   /* scroll interno si hace falta */
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Título */
.miapp-reporte-card h2 {
  font-size: 18px;
  color: #002d00;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Secciones */
.miapp-reporte-section {
  margin-bottom: 15px;
  padding: 12px;
  border: 2px solid #008000;
  border-radius: 8px;
  background: #f9fff9; /* un blanco verdoso para suavizar */
}

.miapp-reporte-section label {
  font-weight: bold;
  color: #004d00;
  display: block;
  margin-bottom: 6px;
}

/* Inputs */
.miapp-reporte-section select,
.miapp-reporte-section input[type="date"] {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* Botones */
.miapp-reporte-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 15px;
}

.btn-imprimir {
  flex: 1;
  background: #008000;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
}

.btn-salir {
  flex: 1;
  background: #800020; /* guinda */
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
}

.btn-imprimir:hover { background: #006600; }
.btn-salir:hover { background: #660018; }

/* Switch */
.miapp-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  margin-left: 10px;
}

.miapp-switch input { display: none; }

.miapp-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  border-radius: 24px;
  transition: .4s;
}

.miapp-slider:before {
  position: absolute;
  content: "";
  height: 18px; width: 18px;
  left: 3px; bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: .4s;
}

.miapp-switch input:checked + .miapp-slider {
  background-color: #008000;
}

.miapp-switch input:checked + .miapp-slider:before {
  transform: translateX(26px);
}

.miapp-reporte-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* dos columnas iguales */
  gap: 20px;
}
.miapp-reporte-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.texto-concepto{
  font-size: 9px;
  font-style: italic;
  color: #008000;
  text-align: justify;
}

.modal-header {
    background-color: #008000 !important;
    color: white !important;
}



/* Quita espacios extra en los contenedores de filtros */
.card .row, 
.card .col,
.card-body {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

/* Compacta los inputs, selects y botones */
.form-control, .form-select, .btn {
    padding: 0.25rem 0.5rem !important;
    font-size: 0.85rem !important;
    height: auto !important;
}

/* Compacta la tabla */
.table-boleta {
    font-size: 0.8rem !important;
    margin-bottom: 0 !important;
}

.table-boleta td, 
.table-boleta th {
    padding: 0.35rem 0.5rem !important;
    vertical-align: middle;
}

/* Reduce título si quieres */
h4, .card-title {
    font-size: 1rem !important;
    margin-bottom: 0.25rem !important;
}


.miapp-reporte-container input,
.miapp-reporte-container select,
.miapp-reporte-container label {
  font-size: 0.85rem; /* más pequeño (rem = relativo al body) */
}

.miapp-reporte-container input,
.miapp-reporte-container select {
  padding: 4px 6px;   /* ajusta altura interna */
  height: auto;       /* evita que se queden demasiado grandes */
}

/* Universal */

/* --- Layout general --- */
.app-wrapper {
  height: 100vh;
  overflow: hidden;
}

/* Sidebar */
.sidebar {
  width: 240px;
  flex-shrink: 0;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
  z-index: 1000;
}

/* Contenido principal */
#main-content {
  margin-left: 240px; /* igual al ancho del sidebar */
  background-color: #f8fbff;
  overflow-y: auto;
  height: 100vh;
}

/* Área interna del contenido */
.content-area {
  min-height: calc(100vh - 80px);
  background-color: #f9fbfd;
  border-radius: 10px;
  padding: 20px;
}

/* Ajuste para tablas y encabezados */
.alm-header {
  background-color: #cfe9ff;
  border-bottom: 3px solid #5a9bd5;
  color: #003366;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 0 0 10px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.alm-filtros {
  border: 1px solid #5a9bd5;
  background-color: #e9f5ff;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.alm-table {
  font-size: 13px;
}


#