.monkey-tab-control {
    display: flex;
    margin-bottom: 18px;
}

.monkey-tab {
    display: none;
}

.monkey-tab-control li {
    font-weight: 600;
    color: #fff;
    padding: 6px 12px;
    border-radius: 40px;
    background: #7986cb;
    font-size: 14px;
    margin-right: 5px;
    cursor: pointer;

}

.monkey-tab-control li.active {
    color: #fff;
    padding: 6px 12px;
    box-shadow: rgb(0 0 0 / 16%) 0px 3px 6px, rgb(0 0 0 / 23%) 0px 3px 6px;
    transition: all 0.2s, box-shadow 0.01s;
    cursor: pointer;
       background-image: linear-gradient(to bottom, #5c6bc0 0%, #002260 100%);
}


