@-webkit-keyframes gradient_animation_basic {
  0% {
    background-position: 93% 0;
  }
  50% {
    background-position: 0 100%;
  }
  100% {
    background-position: 93% 0;
  }
}
@-moz-keyframes gradient_animation_basic {
  0% {
    background-position: 93% 0;
  }
  50% {
    background-position: 0 100%;
  }
  100% {
    background-position: 93% 0;
  }
}
@keyframes gradient_animation_basic {
  0% {
    background-position: 93% 0;
  }
  50% {
    background-position: 0 100%;
  }
  100% {
    background-position: 93% 0;
  }
}
.download-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 0.5rem;
}
@media screen and (max-width: 1023px) {
  .download-cards {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .download-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.download-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(22, 45, 60, 0.1);
  border-radius: 8px;
}
.download-card .preview {
  width: 100%;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  flex-grow: 1;
  border-radius: 4px;
  background-color: rgba(22, 45, 60, 0.05);
}
.download-card .preview img {
  width: 100%;
  max-width: 100%;
  pointer-events: none;
}
.download-card .interaction {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  padding-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .download-card .interaction {
    grid-template-columns: 1fr;
  }
}
.download-card a, .download-card a:link, .download-card a:active, .download-card a:visited {
  font-size: 14px;
  text-align: center;
  border: 1px solid #ebd37f;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
}
.download-card a span, .download-card a:link span, .download-card a:active span, .download-card a:visited span {
  font-size: 12px;
}
.download-card a::before, .download-card a::after, .download-card a:link::before, .download-card a:link::after, .download-card a:active::before, .download-card a:active::after, .download-card a:visited::before, .download-card a:visited::after {
  display: none;
}

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