:root {
  --pdfd-primary-color:#c79f62;
  --pdfd-secondary-color:#666;
  --pdfd-light-color:#e5e5e5;
  --pdfd-dark-color:#333;
  --pdfd-black-color:#000;
  --pdfd-white-color:#fff;
}

/*================body============*/
.pdf-download {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
.pdf-download a {
  text-decoration: none;
  color: var(--pdfd-primary-color);
  font-weight: bold;
}
.pdf-download h1 {
  color: var(--pdfd-dark-color);
}
.pdf-download .button, .pdf-download .download-btn {
  background-color: var(--pdfd-primary-color);
  padding: 0.1em 0.5em;
  border-radius: 0.25em;
  color: var(--pdfd-white-color);
  font-weight: normal;
}
.pdf-download .download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.pdf-download .pdf-viewer {
  margin: 0.5em 0;
  width: 100%;
  height: 1024px;
}
.pdf-download .archive {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 992px) {
  .pdf-download .archive {
    flex-direction: row;
  }
}
.pdf-download .archive [data-tab-content] {
  display: none;
  transition: all 0.5s;
}
.pdf-download .archive .active[data-tab-content] {
  display: block;
  transition: all 0.5s;
}
.pdf-download .archive .tabs {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  background-color: var(--pdfd-light-color);
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-right: 1em;
  overflow-y: scroll;
}
@media (min-width: 992px) {
  .pdf-download .archive .tabs {
    width: 10%;
    height: 500px;
  }
}
.pdf-download .archive .tabs .tab {
  cursor: pointer;
  padding: 0.5em;
  text-align: center;
  font-weight: bold;
  color: var(--pdfd-secondary-color);
  transition: all 0.5s;
}
.pdf-download .archive .tabs .tab.active {
  color: var(--pdfd-primary-color);
}
.pdf-download .archive .tabs .tab:hover {
  color: var(--pdfd-primary-color);
}
.pdf-download .archive .tabs-content {
  width: 100%;
}
@media (min-width: 992px) {
  .pdf-download .archive .tabs-content {
    width: 90%;
  }
}
.pdf-download .archive .tabs-content table {
  text-align: left;
  border-collapse: collapse;
  transition: all 0.5s;
  border: 0;
  width: 100%;
}
.pdf-download .archive .tabs-content table th {
  background-color: var(--pdfd-light-color);
  padding: 0.5em;
  border: 0;
  border-bottom: 1px solid var(--pdfd-secondary-color);
  color: var(--pdfd-dark-color);
}
.pdf-download .archive .tabs-content table td {
  padding: 0.5em;
  color: var(--pdfd-secondary-color);
  font-weight: bold;
  border: 0;
}
.pdf-download .archive .tabs-content table tr:nth-child(odd) {
  background-color: var(--pdfd-light-color);
  border: 0;
}

/*==================footer pagination================*/
.pagination {
  display: flex;
  justify-content: space-between;
  margin: 1rem 0;
}

/*# sourceMappingURL=style.css.map */
