.ova-doc-single-attachments {
  width: 100%;
}

.ova-doc-single-attachments__title {
  margin: 0 0 22px;
}

.ova-doc-single-attachments__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ova-doc-single-attachments__item {
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 1px solid #e1e4e8;
  border-radius: 4px;
  background: #fff;
  transition: background-color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.ova-doc-single-attachments__item:hover {
  border-color: var(--primary, #41662f);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .07);
  transform: translateY(-1px);
}

.ova-doc-single-attachments__link {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 76px;
  gap: 18px;
  padding: 15px 20px;
  color: inherit;
  text-decoration: none;
}

.ova-doc-single-attachments__link:hover,
.ova-doc-single-attachments__link:focus {
  color: inherit;
  text-decoration: none;
}

.ova-doc-single-attachments__file-icon {
  display: inline-flex;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(65, 102, 47, .09);
  color: var(--primary, #41662f);
}

.ova-doc-single-attachments__file-icon i {
  font-size: 22px;
  line-height: 1;
}

.ova-doc-single-attachments__content {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.ova-doc-single-attachments__name {
  display: block;
  overflow-wrap: anywhere;
  color: var(--heading, #25282a);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
}

.ova-doc-single-attachments__type {
  display: block;
  color: #6d737b;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ova-doc-single-attachments__action-icon {
  display: inline-flex;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: var(--primary, #41662f);
  transition: transform .25s ease;
}

.ova-doc-single-attachments__item:hover .ova-doc-single-attachments__action-icon {
  transform: translateX(4px);
}

.ova-doc-single-attachments__notice {
  padding: 16px 18px;
  border: 1px dashed #c9ced6;
  background: #f7f8fa;
  color: #59616b;
  font-size: 14px;
}

@media (max-width: 767px) {
  .ova-doc-single-attachments__link {
    min-height: 68px;
    gap: 12px;
    padding: 13px 14px;
  }

  .ova-doc-single-attachments__file-icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .ova-doc-single-attachments__action-icon {
    flex-basis: 26px;
    width: 26px;
  }
}
