/* pills design */
.ebg-v2-pills-container {
    margin-top: 8px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.ebg-v2-pill {
    font-family: "Roboto", sans-serif !important;
    border-radius: 100px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 10px;
    line-height: 10px;
    letter-spacing: 0.4px;
    color: var(--ebg-brand-primary-navy) !important;
    height: 20px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    text-wrap: nowrap;
}

.ebg-v2-pill-icon {
    width: 12px;
    height: 12px;
    margin-right: 4px;
    background-size: contain;
}

.ebg-v2-pill-with-background {
    background-color: var(--ebg-brand-primary-light-highlight);
}

.ebg-v2-pill-with-border {
    min-height: 18px;
    border: 1px solid var(--accent);
    box-shadow: 0px 1px 4px 0px var(--accent-shadow);
}

.ebg-v2-pill-with-icon-2 {
    padding-left: 24px;
    background-size: 12px;
    background-position: 8px 50%;
    background-repeat: no-repeat;
}
.ebg-v2-pill-with-icon-2 svg {
    color: blue;
}

.ebg-v2-pill-no-shadow {
    box-shadow: none;
}

.ebg-v2-pill-accent-one {
    background-color: var(--ebg-brand-secondary-2);
    border-color: var(--ebg-brand-secondary-1);
}
