.ova-sev-info .title {
  position: relative;
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  padding: 13px 39px;
  background: var(--primary);
}
.ova-sev-info .title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50px;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 10px solid var(--primary);
}
.ova-sev-info .info {
  margin: 0;
  padding: 35px 30px;
  background-color: #fff;
  max-height: 480px;
  border: 2px solid var(--primary);
  overflow: auto;
  /* scrollbar */
}
.ova-sev-info .info::-webkit-scrollbar {
  width: 3px;
  background: #e5e5e5;
}
.ova-sev-info .info::-webkit-scrollbar-thumb {
  width: 3px;
  background: var(--primary);
}
.ova-sev-info .info .list-item:not(:last-child) {
  margin-bottom: 15px;
}
.ova-sev-info .info .list-item .label {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}
.ova-sev-info .info .list-item .value {
  font-size: 16px;
  line-height: 1.4;
  color: var(--heading);
  font-weight: bold;
}
.ova-sev-info .info .list-item a.link-value {
  position: relative;
}
.ova-sev-info .info .list-item a.link-value::after {
  transition: all 0.3s ease;
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
}
.ova-sev-info .info .list-item a.link-value:hover::after {
  transition: all 0.3s ease;
  width: 100%;
}