.mobile-toggle-tab-nav {
  display: none;
}
.mobile-toggle-widget {
  width: 100%;
  .mobile-toggle-tab-nav {
    img {
      @media (min-width: 767px) {
        display: none !important;
      }
    }
  }
  @media (max-width: 767px) {
    border-bottom: 1px solid #0d0d0d;
    border-top: 1px solid #0d0d0d;
    max-height: 44px;
    overflow: hidden;
    transition: 0.5s ease-in-out;
    .mobile-toggle-tab-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 44px;
      padding: 0 20px;
      width: 100%;
      color: #237660;
      font-family: Poppins;
      font-size: 16px;
      font-style: normal;
      font-weight: 700;
      line-height: 125%;
      img {
        width: 15px;
        height: 15px;
        margin: 0 !important;
      }
    }
    &.open {
      max-height: 1000px;
    }
  }
  &:has(+ .mobile-toggle-widget) {
    border-bottom: 0 !important;
  }
}
