
 .ux_tab_panel .tabs {
    overflow: auto;
    display: flex;
    border-bottom: 4px solid #ccc;
    width: 100%;
}

    .ux_tab_panel .tab {
      flex: 1;
      text-align: center;
      padding: 12px 0;
      cursor: pointer;
      background: #333;
      color: white;
      font-weight: bold;
      position: relative;
      border-right: 2px solid #fff;
    }

    .ux_tab_panel .tab:last-child {
      border-right: none;
    }

    .ux_tab_panel .tab.active {
      background: green;
      color: white;
    }

   .ux_tab_panel .tab.active::after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid green;
}
    .ux_tab_panel .tab-content {
      display: none;
      padding: 20px;
    }

    .ux_tab_panel .tab-content.active {
      display: block;
    }
.tabs.sticky {
    margin-top: 52px;
}
    @media(max-width: 767px)
    {
        .tabs.sticky {
            margin-top: 70px;
        }
    }
