#root app-dates-filter-coupon {
    display: flex;
    flex-direction: row;
    background-color: var(--c-primary-d);
    order-bottom: 1px solid var(--c-shade);
}
#root app-dates-filter-coupon .dates-filter {
    overflow: auto;
    display: flex;
    flex-direction: row;
    background-color:var(--c-primary-d);
    padding: 4px;
}

#root app-dates-filter-coupon .dates-filter li.selected {
    background-color: var(--c-emphasis);
    color: var(--c-text-light-e);
}
#root  app-dates-filter-coupon .dates-filter li {
    display: inline-flex;
    color: var(--c-text-light);
    padding: 4px 12px;
    border-radius: var(--r);
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    margin-right: 4px;
    width: 100%;
    height: 100%;
    background: var(--c-primary);
}

#root app-dates-filter-coupon .dates-filter li span {
    text-align: center;
    margin: auto;
    padding: 0;
    vertical-align: middle;
    white-space: nowrap;
    font-size: 1rem;
}