select {
  padding: 12px 6px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  font-size: var(--font-normal);
  line-height: 12px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  background-color: var(--bg-transparent);
  color: var(--text-dark);
  border: 1px solid var(--theme-primary-semi-transparent);
}

select:hover {
  cursor: pointer;
}

form {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  margin-bottom: 64px;
}



.download-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: var(--font-medium);
}

.download-item {
  border-top: 1px solid var(--bg-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.download-item h4 {
  font-size: 1.4rem;
  color: var(--text-light)
}

.download-item a {
  font-weight: bold;
  color: var(--text-light);
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.3s ease;
}

.download-item a:hover {
  color: var(--theme-primary);
}

.download-item a::after {
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c87ac' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M12 5l7 7-7 7'/></svg>");
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 4px;
  vertical-align: middle;
}


.download-type-navigation {
  background-color: var(--theme-primary-transparent);
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 0 20px;
}

.download-type-navigation a {
  text-decoration: none;
  transition: color 0.3s ease;
  color: var(--text-neutral);
}

.download-type-navigation a:hover {
  color: var(--theme-primary);
}

.download-type-navigation a.active {
  font-weight: 600;
  color: var(--text-neutral);
}

@media (max-width: 600px) {
  .download-item {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 400px) {
  .download-filters-form {
    flex-direction: column;
    align-items: start;
  }

  .download-filters-form select {
    width: 100%;
  }
}