/* SIMPLE RULES THAT CAN BE APPLIED TO ANY ELEMENT */
/* These are often considered default by Hare Software */

/* basic styling classes */
.center {
    text-align: center;
}

.bold {
    font-weight: bold;
}

.no-margin {
    margin: 0 !important;
}

.hidden {
    display: none !important;
}

.inactive {
    color: var(--text-inactive);
}

/* divider */
.divider {
    width: 100%;
    height: 2px;
    background-color: var(--gray);
}

/* span */
.official, .basic-card .official {
    font-family: "Adamina", Times, serif; !important;
}

.large, .basic-card .large {
    font-weight: bold;
    font-size: 2rem;
}