@charset "UTF-8";
.documents-filter mark {
  background: none;
  padding: 0;
  color: hsl(12, 93%, 61%);
}
.documents-filter .documents-buttons {
  margin: 0 auto;
}
.documents-filter .documents-buttons .dropdown-toggle {
  white-space: normal;
  width: 100%;
  min-width: 13rem;
}
@media (min-width: 576px) {
  .documents-filter .documents-buttons .dropdown-toggle {
    width: auto;
  }
}
.documents-filter .documents-buttons .dropdown-menu {
  margin-top: 2.7rem;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0.5rem 0;
}
.documents-filter .documents-buttons .dropdown-menu::-webkit-scrollbar {
  width: 8px;
}
.documents-filter .documents-buttons .dropdown-menu::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}
.documents-filter .documents-buttons .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0);
}
.documents-filter .documents-buttons .dropdown-menu .searchbar {
  margin: 0.25rem 0.5rem 0.5rem;
}
.documents-filter .documents-buttons .cross-link {
  position: relative;
  align-self: center;
  display: none;
  width: 2rem;
  height: 2rem;
  border-radius: 100%;
  background-color: hsl(12, 93%, 61%);
  border: none;
  cursor: pointer;
  flex: 0 0 auto;
  padding: 0;
  justify-content: center;
}
.documents-filter .documents-buttons .cross-link.active {
  display: inline-flex;
}
.documents-filter .documents-buttons .cross-link:hover {
  background-color: hsl(12, 97%, 50%);
}
.documents-filter .documents-buttons .cross-link::after {
  font-weight: 400;
  font-size: 2.5rem;
  content: "×";
  line-height: 2rem;
  color: #fff;
  z-index: 2;
}
.documents-filter .documents-count {
  z-index: 5;
}
.documents-filter .documents-count hr {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0 1rem;
  padding: 0;
  z-index: 0;
  opacity: 0.15;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.documents-filter .spinner-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.7);
}
.documents-filter .spinner-wrapper .spinner {
  margin: 0 auto;
  position: relative;
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: hsl(12, 93%, 61%);
  animation: spin 1s ease-in-out infinite;
}
.documents-filter .document-table {
  width: 100%;
}
.documents-filter .document-table .document-table-header {
  font-weight: bold;
  text-transform: uppercase;
  background-color: hsl(12, 93%, 61%);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
}
.documents-filter .document-table .document-table-header-cell,
.documents-filter .document-table .document-table-cell {
  padding: 0.4rem 0.5rem;
}
.documents-filter .document-table .document-table-row.even {
  background-color: hsl(240, 9%, 96%);
}
.documents-filter .document-table .document-table-row.odd {
  background-color: rgba(243.882, 243.882, 245.718, 0.25);
}
.documents-filter .document-table .document-table-row .document-table-cell {
  vertical-align: middle;
  padding: 0.5rem 1rem;
}
@media (max-width: 767.98px) {
  .documents-filter .document-table .document-table-row .document-table-cell {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.documents-filter .document-table .document-table-row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  .documents-filter .document-table .document-table-row .document-table-cell {
    flex: 1 1 100%;
  }
}
@media (max-width: 767.98px) {
  .documents-filter .document-table .document-table-row .document-table-cell {
    flex: 1 1 100%;
  }
}
@media (max-width: 991.98px) {
  .documents-filter .document-table .document-table-header-cell {
    flex: 1 1 100%;
    padding: 0.5rem;
  }
}