/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v2.0.0
* Docs at http://ramseyinhouse.github.io/scut
*/
.sn_docs__title {
  margin-bottom: 2.5rem;
}
.sn_docs__filter {
  margin-bottom: 2rem;
}
.sn_docs__list {
  border-top: 1px solid #e9ecef;
}
.sn_docs__empty {
  color: #6c757d;
  padding: 3rem 0rem;
  text-align: center;
}

.sn_doc__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0rem;
  border-bottom: 1px solid #e9ecef;
  text-decoration: none;
  color: #212529;
  transition: color 0.35s ease;
}
.sn_doc__item:hover {
  color: #004a94;
}
.sn_doc__item__icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  background: rgba(0, 74, 148, 0.08);
  color: #004a94;
  font-size: 1.25rem;
  transition: all 0.35s ease;
}
.sn_doc__item:hover .sn_doc__item__icon {
  background: #004a94;
  color: #fff;
}
.sn_doc__item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.sn_doc__item__title {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sn_doc__item__title {
  font-size: 1rem;
}
@media only screen and (min-width: 48em) {
  .sn_doc__item__title {
    font-size: 1rem;
  }
}
.sn_doc__item__category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #004a94;
}
.sn_doc__item:hover .sn_doc__item__category {
  color: #ce000c;
}
.sn_doc__item__date {
  font-size: 0.8125rem;
  color: #adb5bd;
}
.sn_doc__item__download {
  flex-shrink: 0;
  color: #ced4da;
  font-size: 1.125rem;
  transition: color 0.35s ease;
}
.sn_doc__item:hover .sn_doc__item__download {
  color: #004a94;
}