@keyframes fadeInOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes autoplayLine {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
document-bundle {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}
document-bundle .bundle-title {
  margin: 0 0 1.125rem;
}
document-bundle single-document a {
  position: relative;
  display: flex;
  gap: 1.875rem;
  border: 0.0625rem solid #d4d4d4;
  padding: 1.375rem 2.0625rem;
  align-items: center;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
document-bundle single-document a .document-type {
  flex-basis: 1rem;
  min-width: 1rem;
}
document-bundle single-document a .document-type svg {
  display: block;
  width: 1.25rem;
}
document-bundle single-document a .document-type svg path {
  fill: var(--colorBlack);
}
document-bundle single-document a .document-title {
  flex-grow: 1;
  margin: 0;
}
document-bundle single-document a .document-download {
  color: var(--colorBlack);
  font-family: var(--fontScript);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 2.07;
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  document-bundle single-document a .document-download {
    display: none;
  }
}
document-bundle single-document a:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.375rem;
  background: var(--colorPrimary);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (hover: hover) {
  document-bundle single-document a:hover:before {
    opacity: 1;
  }
}
