.k-hfs-inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.k-hfs-right-wrapper, .k-hfs-left-wrapper {
    flex: 0 0 48%;
    max-width: 48%;
    display: flex;
    align-items: center;
}
/* .k-hfs-left-content-wrapper {
    display: none;
} */
.k-hfs-left-content-wrapper,
.k-hfs-right-content-wrapper {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.k-hfs-left-item-wrapper.active .k-hfs-left-content-wrapper,
.k-hfs-right-item-wrapper.active .k-hfs-right-content-wrapper {
  opacity: 1;
}

.k-hfs-left-heading-wrapper {
  cursor: pointer;
  user-select: none;
}
.k-hfs-left-heading-wrapper {
    padding: 12px;
    border-radius: 4px;
    border: 2px solid #004035;
    background: #004035;
    color: #fff;
    font-weight: 700;
}
.k-hfs-left-item-wrapper {
    margin-bottom: 12px;
}
.k-hfs-left-content-inner {
    padding: 12px;
    background: #c7fff565;
    border-radius: 0 0 4px 4px;
}