.gericht-interactive-list .menu-wrapper .menu-content {
  display: none;
  -webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}


.sf-menu>.menu-item>.iqonic-megamenu-container a {
  padding: 0;
}

.gericht-interactive-list .menu-item-inner {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  align-items: center;
}

.gericht-interactive-list .menu-wrapper .menu-content.active {
  display: block;
  -webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.gericht-interactive-list .menu-item{
  margin-bottom: 20px;
}

.gericht-interactive-list .menu-item:last-child {
  margin-bottom: 0;
}

.gericht-interactive-list .menu-item .menu-name{
  font-size: 20px;
  font-family: var(--global-font-family);
  font-weight: var(--font-weight-medium);
  color: var(--global-font-color);
  background-color: transparent;
  padding: 8px 27px 8px 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-left: 1px solid transparent;
  transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  -webkit-transition: all .5s ease-in-out;
}

.gericht-interactive-list .menu-item .menu-name:hover , 
.gericht-interactive-list .menu-item.active .menu-name{
  padding-left: 27px;
  background-color: var(--color-theme-secondary);
  color: var(--color-theme-primary);
  border-left: 1px solid currentColor;
}


.gericht-interactive-list .menu-item-list{
  padding-right: 50px;
  margin-right: 35px;
  border-right: 1px solid var(--border-color);
}

.gericht-interactive-list .menu-count{
  font-size: var(--font-size-xs);
  transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  -webkit-transition: all .5s ease-in-out;
}

.fade-in {
  -webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

/* ----------------------------------------
 * animation fade-in
 * ----------------------------------------*/
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*==================
responsive
=====================*/
@media (max-width: 767px){
  .gericht-interactive-list .menu-list-wrapper{
    margin-top: 50px;
  }
}