.ova-doc-items .document-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.ova-doc-items .document-list .item {
  transition: all 0.3s linear;
  background: #f3f4f7;
  padding: 40px 30px 40px 30px;
}
.ova-doc-items .document-list .item:hover {
  transition: all 0.3s linear;
  background: var(--primary);
}
.ova-doc-items .document-list .item:hover .loader {
  border-color: #fff;
  border-bottom-color: var(--primary);
}
.ova-doc-items .document-list .item:hover .view i {
  color: #fff;
}
.ova-doc-items .document-list .item:hover .date, .ova-doc-items .document-list .item:hover .title {
  color: #fff;
}
.ova-doc-items .document-list .item-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.ova-doc-items .document-list .view i {
  font-size: 24px;
  color: var(--primary);
  transition: all 0.3s linear;
}
.ova-doc-items .document-list .loader {
  border-color: var(--primary);
  border-bottom-color: transparent;
}
.ova-doc-items .document-list .date {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
}
.ova-doc-items .document-list .title {
  margin: 0;
  position: relative;
  font-size: 20px;
  color: var(--heading);
  font-weight: 800;
  transition: all 0.3s linear;
}
.ova-doc-items .document-list .title:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: all 0.3s linear;
}
.ova-doc-items .document-list .title:hover:after {
  width: 100%;
}
.ova-doc-items .document-list .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  font-size: 24px;
  color: var(--primary);
  transition: all 0.3s linear;
}