@keyframes fadeInOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes autoplayLine {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.bundle-title {
  display: block;
  margin: 0 0 2rem;
}

document-bundle {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
}
@media screen and (max-width: 1200px) {
  document-bundle {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 960px) {
  document-bundle {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 540px) {
  document-bundle {
    grid-template-columns: 1fr;
  }
}
document-bundle single-document a {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1.5rem 1.5rem;
  align-items: center;
  border-radius: 1.5rem;
  text-align: center;
  border: 0.0625rem solid #D1D3D4;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
document-bundle single-document a .document-type {
  flex-basis: 2.5rem;
  min-width: 2.5rem;
}
document-bundle single-document a .document-type svg {
  display: block;
  width: auto;
  height: 2.5rem;
}
document-bundle single-document a .document-type svg path {
  fill: var(--colorPrimary);
}
document-bundle single-document a .document-title {
  flex-grow: 1;
  font-size: 1.125rem;
  font-family: var(--fontBold);
  color: var(--colorTertiary);
}
document-bundle single-document a .document-download {
  width: 100%;
  pointer-events: none;
}
@media (hover: hover) {
  document-bundle single-document a:hover .document-download {
    background: var(--colorTertiary) !important;
    color: #fff !important;
  }
}
