/*Como votaron v2*/

@keyframes rowEntraVotacion {
  from {
    opacity: 0;
    transform: translateY(50px) scale(1);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#emolmltvot {
  font-family: Arial, Helvetica, sans-serif;
  max-width: 709px;
}

#emolmltvot>img {
  width: 100%;
  max-width: 709px;
  margin-bottom: 10px;
}

#emolmltvot .emvt-card {
  background: #fff;
  border: 1px solid rgba(219, 227, 238, 0.9);
  border-radius: 16px;
  box-sizing: border-box;
  padding: 20px;
  margin-bottom: 16px;
}

#emolmltvot .emvt-card .emvt-sumario h2 {
  text-transform: initial;
  margin: 0 0 6px;
  font-size: 18px;
  color: #000;
  padding: 2px 0px;
}

#emolmltvot .emvt-card .emvt-sumario p.emvt-bajada {
  margin: 0px;
  padding: 0px;
  color: #444;
  font-size: 16px;
  line-height: 22px;
}

#emolmltvot .emvt-sumario span.emvt-quorum {
  display: block;
  text-align: right;
  font-size: 14px;
  line-height: 18px;
  margin-top: 25px;
  margin-bottom: 15px;
  color: #444;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 15px;
}

#emolmltvot .emvt-sumario span.emvt-quorum i {
  color: #1f9d55;
  padding: 2px 2px;
  font-size: 20px;
  vertical-align: middle;
  display: inline-block;
  line-height: 15px;
  margin-top: -1px;
}

#emolmltvot .emvt-votos {
  list-style-type: none;
  padding: 0px;
  margin: 0px 0px 15px 0px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  box-sizing: border-box;
}

#emolmltvot .emvt-votos li {
  width: calc(25% - 8px);
  box-sizing: border-box;
  padding: 10px 12px;
  font-size: 14px;
  border-radius: 12px;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  text-align: center;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.18);
}

#emolmltvot .emvt-votos li span[data-votacion] {
  font-size: 18px;
  display: block;
  width: 100%;
}

#emolmltvot li.emvt-si {
  background: #1f9d55;
}

#emolmltvot li.emvt-no {
  background: #d14343;
}

#emolmltvot li.emvt-ab {
  background: #ffd04d;
  color: #42331c;
}

#emolmltvot li.emvt-sv {
  background: #7b8794;
}

.emvt-filtrosactivos {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed #ddd;
}

.emvt-filtroslabel {
  font-size: 13px;
  color: #444;
  font-weight: bold;
  white-space: nowrap;
}

.emvt-filtrostags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 20px;
}

.emvt-filtro-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 5px;
  background: #eef4ff;
  color: #1146aa;
  border: 1px solid #d4e2ff;
  font-size: 13px;
  min-height: 18px;
  font-weight: bold;
  line-height: 13px;
}

.emvt-filtro-tag button {
  width: 18px;
  height: 18px;
  min-height: auto;
  border: 0;
  background: rgba(17, 70, 170, 0.12);
  color: #1146aa;
  border-radius: 30px;
  padding: 0;
  cursor: pointer;
  font: inherit;
  display: inline-flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  transition: background 300ms ease;
}

.emvt-filtro-tag button:before {
  content: "\f00d";
  font-family: 'fontAwesome';
  font-size: 11px;
  line-height: 18px;
  margin-top: -1px;
  margin-left: 0.5px;
}

.emvt-filtro-tag button:hover {
  background: rgba(17, 70, 170, 0.42);
}

.emvt-grafico {
  padding: 10px 0px;
  display: grid;
  gap: 12px;
}

.emvt-grafbarra {
  display: grid;
  grid-template-columns: 130px 1fr 48px;
  align-items: center;
  padding: 3px 0px;
  gap: 12px;
}

.emvt-graflabel {
  font-weight: bold;
  text-align: right;
  color: #222;
}

.emvt-grafback {
  height: 28px;
  background: #edf2f8;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.emvt-grafback>div {
  height: 100%;
  width: 0;
  border-radius: inherit;
  transition: width 380ms ease;
}

.emvt-grafback>div[data-voto="si"] {
  background: #1f9d55;
}

.emvt-grafback>div[data-voto="no"] {
  background: #d14343;
}

.emvt-grafback>div[data-voto="ab"] {
  background: #ffd04d;
  color: #42331c;
}

.emvt-grafback>div[data-voto="x"] {
  background: #7b8794;
}

.emvt-sello-resultado {
  display: block;
  text-align: right;
  padding: 0px 60px 0px 0px;
}

.emvt-sello-resultado span {
  display: inline-block;
  max-width: 300px;
  border-radius: 5px;
  padding: 7px 14px;
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  color: #fff;
  vertical-align: middle;
}

.emvt-sello-resultado span:before {
  content: '';
  font-family: 'fontAwesome';
  font-weight: normal;
  font-size: 22px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
}

.emvt-sello-resultado span[data-resultado="Aprobado"] {
  background-color: #1f9d55;
}

.emvt-sello-resultado span[data-resultado="Aprobado"]:before {
  content: '\f00c';
}

.emvt-sello-resultado span[data-resultado="Rechazado"] {
  background-color: #d14343;
}

.emvt-sello-resultado span[data-resultado="Rechazado"]:before {
  content: '\f00d';
}


.emvt-filtrosbox {
  padding: 14px 0px;
  backdrop-filter: blur(10px);
  background: #fff;
}

#emvt-buscadornombres {
  position: sticky;
  top: -75px;
  z-index: 20;
  border-bottom: 2px solid #eee;
}

#emolmltvot #emvt-buscadornombres h2 {
  text-transform: initial;
  display: block;
  align-items: center;
  padding: 16px;
  background-color: #0b4076;
  color: #fff;
  margin: 0px 0px 8px 0px;
  font-size: 18px;
  line-height: 18px;
}

.emvt-filtrosgrid {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
}

.emvt-filtrosgrid li {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  width: 25%;
  box-sizing: border-box;
  padding: 0px 4px;
  margin-bottom: 8px;
  margin-top: 8px;
}

.emvt-filtrosgrid li label {
  font-size: 13px;
  line-height: 14px;
  color: #444;
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  padding: 0px 4px;
}

.emvt-filtrosbox select,
.emvt-filtrosbox input,
.emvt-filtrosbox button {
  width: 100%;
  min-height: 40px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #dbe3ee;
  background: #fff;
  color: #1f2937;
  padding: 0 12px;
  font: inherit;
}

.emvt-filtrosbox button {
  background-color: #fff8b6;
  border-color: #f7e645;
  font-weight: bold;
  color: #333;
}

.emvt-filtrosbox button:hover {
  background-color: #fff594;
  border-color: #cfc033;
}

.emvt-filtrosbox input {
  margin-top: 8px;
  background-image: url(https://static.emol.cl/emol50/Fotos/2020/10/16/file_20201016183928.png);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
}

.emvt-filtrosbox input::-webkit-input-placeholder,
.emvt-filtrosbox input::placeholder {
  color: #aaa;
}

.emvt-filtrosbox select:focus,
.emvt-filtrosbox input:focus,
.emvt-filtrosbox button:focus {
  outline: 3px solid rgba(15, 98, 254, 0.14);
  border-color: #0f62fe;
}

.emvt-btn-secundario {
  cursor: pointer;
  font-weight: 600;
  background: #f8fafc;
}

.emvt-table-card {
  overflow: hidden;
}

.emvt-table-head {
  display: block;
  align-items: center;
  padding: 16px 18px 12px 18px;
  background-color: #0b4076;
  color: #fff;
  background-image: url(https://static.emol.cl/emol50/Fotos/2026/04/13/file_20260413161938.png);
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 50px;
}

#emolmltvot .emvt-table-card .emvt-table-head h2 {
  text-transform: initial;
  margin: 0;
  font-size: 18px;
  color: #fff;
}

.emvt-table-head .emvt-meta {
  color: #e9bc35;
  font-size: 13px;
  display: block;
  font-weight: bold;
  margin: 5px 0px 0px 0px;
  line-height: 13px;
}

.emvt-table-wrap {
  padding: 0px 0px 8px;
  overflow-x: auto;
  overflow-y: clip;
}

.emvt-table-wrap.is-animating {
  overflow-y: hidden;
}

.emvt-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 380px;
}

.emvt-table-wrap thead th {
  text-align: left;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  padding: 12px 10px 12px;
  background-color: #096cbb;
  transition: color 160ms ease, opacity 160ms ease;
  z-index: 10;
  position: relative;
}

.emvt-table-wrap thead th.is-active-votacion {
  background-color: #1578c7;
  opacity: 1;
}

.emvt-table-wrap tbody tr {
  background: #fff;
  transform-origin: center;
  transition: transform 420ms cubic-bezier(.2, .8, .2, 1), box-shadow 180ms ease, opacity 180ms ease;
}

.emvt-table-wrap tbody tr.is-entering {
  animation: rowEntraVotacion 280ms cubic-bezier(.2, .8, .2, 1);
}

.emvt-table-wrap tbody td {
  padding: 7px 10px;
  border-bottom: 1px dotted #ddd;
  vertical-align: middle;
  background: inherit;
  font-size: 16px;
  line-height: 24px;
}

.emvt-table-wrap tbody td i {
  display: inline-block;
  vertical-align: middle;
  font-size: 11px;
  line-height: 11px;
  padding: 3px 6px;
  background-color: #fff065;
  color: #333;
  font-style: normal;
  border-radius: 2px;
  margin-left: 5px;
}

.emvt-table-wrap tbody tr:hover td {
  background-color: #f7f7f7;
}

.emvt-table-wrap tbody td:nth-child(4) {
  border-left: 1px dotted #ddd;
}

.emvt-table-wrap thead th:nth-child(n+4),
.emvt-table-wrap tbody td:nth-child(n+4) {
  text-align: center;
  width: 15%;
}

.emvt-table-wrap tbody td:nth-child(n+4) {
  color: transparent;
}

.emvt-table-wrap tbody td img {
  width: 30px;
  vertical-align: middle;
}

.emvt-table-wrap tbody td:nth-child(2) {
  width: 30px;
  padding-right: 0px;
}

.emvt-table-wrap tbody td:nth-child(3) {
  font-size: 14px;
  width: 50px;
}

.emvt-table-wrap tbody td span {
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 25px;
  border-radius: 999px;
  font-size: 0rem;
  border: 1px solid transparent;
  white-space: nowrap;
}

.emvt-table-wrap tbody td span {
  background: rgba(123, 135, 148, 0.14);
  color: #52606d;
  border-color: rgba(123, 135, 148, 0.2);
}

.emvt-table-wrap tbody td[data-voto="si"] span {
  background-color: #1f9d55;
  border-color: #08602e;
}

.emvt-table-wrap tbody td[data-voto="no"] span {
  background-color: #d14343;
  border-color: #851616;
}

.emvt-table-wrap tbody td[data-voto="ab"] span {
  background-color: #ffd04d;
  border-color: #bf7304;
}

.emvt-empty {
  display: block;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  padding: 0 18px;
  text-align: center;
  color: #444;
  pointer-events: none;
  transition:
    max-height 240ms ease,
    opacity 180ms ease,
    transform 240ms ease,
    padding 240ms ease;
}

.emvt-empty.es-visible {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
  padding: 28px 18px 22px;
  pointer-events: auto;
}

@media (max-width: 980px) {
  .emvt-filtrosgrid {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }

  .emvt-filtrosgrid li {
    width: 33%;
  }

  .emvt-grafbarra {
    grid-template-columns: 80px 1fr 40px;
  }

  .emvt-sello-resultado {
    padding-right: 52px;
  }

}

@media (max-width: 640px) {
  .emvt-filtrosgrid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  #emvt-buscadornombres {
    top: -18px;
  }
}

@media (max-width: 480px) {

  #emolmltvot .emvt-votos li span:last-child {
    display: none;
  }

  .emvt-filtrosgrid li {
    width: 50%;
  }

}