.ova-button-download .button-content {
  display: inline-block;
  position: relative;
}
.ova-button-download .button-content:hover .title-icon {
  background-color: #48DCA8;
  border-radius: 28px 28px 0 0;
}
.ova-button-download .button-content:hover .dropdown-items {
  display: block;
}
.ova-button-download .button-content .title-icon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  background-color: var(--primary);
  border-radius: 28px;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ova-button-download .button-content .title-icon .title {
  margin: 0;
  margin-right: 15px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}
.ova-button-download .button-content .title-icon i {
  color: #fff;
}
.ova-button-download .button-content .dropdown-items {
  display: none;
  position: absolute;
  width: 100%;
  background-color: var(--primary);
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
}
.ova-button-download .button-content .dropdown-items ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ova-button-download .button-content .dropdown-items ul .language-item {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  border-top: 1px solid #DCDCE7;
}
.ova-button-download .button-content .dropdown-items ul .language-item a, .ova-button-download .button-content .dropdown-items ul .language-item span {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 10px 0;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ova-button-download .button-content .dropdown-items ul .language-item a:hover, .ova-button-download .button-content .dropdown-items ul .language-item span:hover {
  background-color: #48DCA8;
}
.ova-button-download .button-content .dropdown-items ul .language-item span {
  cursor: pointer;
}