.hide {
    display: none;
}

.tabList-container::-webkit-scrollbar {
    display: none;
}

.tabList-container {
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 24px;
    overflow: auto;
    overflow-y: hidden;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;    /* Firefox */
}

ul[role="tablist"] {
    position: relative;
    z-index: 2;
    display: flex;
    gap:24px;
    flex-wrap: nowrap;
    margin-bottom: 24px;
    padding-bottom: 0;
}

li[role="tab"] {
	cursor: pointer;
    list-style-type: none;
    color:#000;
    border: 1px solid #000;
    border-radius:25px;
    padding: 2px 24px;
    white-space: nowrap;
}

li[role="tab"][aria-selected="true"]{
border-color:transparent;
    background:#55BB3E;
    color:#fff;
    
}
