.button {
    cursor: pointer;
    display: inline-grid;
    padding: 0.7rem 1.3rem !important;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--c-blue-80) !important;
    background-color: var(--c-green-60);
    border: none;
    outline: none;
    background-image: none !important;
    font-family: Roboto Condensed, Arial, sans-serif;
    font-size: .875rem;
    font-weight: 700;
    line-height: 1;
    min-width: 44px;
    height: 44px;
    grid-auto-flow: column;
    column-gap: var(--space-8);
    justify-content: center;
    align-items: center;
    align-content: center;
}

.button:hover,
.button:focus {
    background-color: var(--c-green-50) !important;
}

@media screen {
    .print-only {
        display: none !important;
    }
}

@media print {
    .no-print {
        display: none !important;
    }

    .grid {
        display: block !important;
    }
}