.dsvy-ihbox-style-3 .dsvy-ihbox-headingicon {
  display: flex;
  align-items: center;
}
.dsvy-ihbox-style-3 .dsvy-ihbox-icon-wrapper {
  font-size: 50px;
  line-height: 50px;
  color: var(--dsvy-colza-global-color);
}
.dsvy-ihbox-style-3 .dsvy-element-title {
  font-size: 19px;
  line-height: 24px;
  margin-bottom: 0;
}
.dsvy-ihbox-style-3 .dsvy-ihbox-contents {
  padding-left: 20px;
}
.dsvy-ihbox-style-3:hover .dsvy-ihbox-icon-wrapper {
  animation: ts-bounce 500ms ease-in-out 50ms;
}
@keyframes ts-bounce {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}
