.tag {
    border-radius: 0.6rem;
    padding: 0.3rem 0.7rem;
    font-family: "Ubuntu";
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.9rem;
    text-align: center;
    white-space: nowrap;
    position: absolute;
    right: 16px;
    z-index: 1;
    transition: opacity 0.3s;
}
.tag__primary {
    background-color: #9ade19;
    color: #fff !important;
}
.tag__secondary {
    color: #9ade19 !important;
    background-color: rgba(154, 222, 25, 0.1);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    font-size: 1.6rem;
    line-height: 2.4rem;
}
.tag__secondary:hover {
    color: #ffffff !important;
    background-color: #9ade19;
}
.tag__tertiary {
    background: #03274f;
    color: #fff !important;
}
.tag__quaternary {
    background-color: #9ade19;
    color: #03274f;
}
.tag__medium {
    padding: 0.2rem 1.15rem;
    border-radius: 0.8rem;
    margin-bottom: 0.4rem;
    line-height: 2.9rem;
    display: inline-block;
}
.tag__medium:hover {
    color: white;
}
.tag__quaternary:hover {
    color: #03274f;
}
@media (min-width: 992px) {
    .tag__secondary {
        font-size: 1.4rem;
    }
}

.tag--inline {
    position: relative;
    right: auto;
}

.select__open .tag,
.select:hover .tag {
    opacity: 0;
}