.btn-ifos-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .5rem 1rem;
    border: 1px solid var(--ifos-yellow, #f5c518);
    border-radius: var(--ifos-radius-sm, .25rem);
    background-color: var(--ifos-yellow, #f5c518);
    color: var(--ifos-text-dark, #1b2b3c);
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.25rem;
    text-decoration: none;
    box-shadow: none;
    cursor: pointer;
    transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.btn-ifos-primary:hover {
    border-color: var(--ifos-yellow-hover, #dfb313);
    background-color: var(--ifos-yellow-hover, #dfb313);
    color: var(--ifos-text-dark, #1b2b3c);
    text-decoration: none;
}

.btn-ifos-primary:focus,
.btn-ifos-primary:focus-visible {
    color: var(--ifos-text-dark, #1b2b3c);
    outline: none;
}

.btn-ifos-primary:disabled,
.btn-ifos-primary[aria-disabled="true"] {
    opacity: .55;
    cursor: not-allowed;
}
