/* Form Pills */
form.centered {
    text-align: center !important;
}
form.centered label {
    font-size: 16px;
    font-weight: 700;
    margin-top: 5px;
    display: block;
}
.pill-group {
    display: flex;
    justify-content: center;
}
.pill-group .field {
    display: none !important;
}
.pill-group .pill {
    padding: 10px;
    min-width: 40px;
    line-height: 21px;
    color: #89C63B;
    border: 2px solid #89C63B;
    background-color: #F1F9EA;
    transition: 300ms all linear;
    cursor: pointer;
    text-align: center;
}
.pill-group .pill:not(:last-child) {
    border-right: none;
}
.pill-group .pill:first-of-type {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}
.pill-group .pill:last-child {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.pill-group .pill.selected {
    color: #F1F9EA;
    background-color: #89C63B;
}

.pill-group .pill:hover {
    color: #F1F9EA;
    background-color: rgba(137, 198, 59, 0.76);
}
.pill-group .pill.selected:hover {
    color: #F1F9EA;
    background-color: #89C63B;
}
/* Form Pills */
