/* =====================
   Filters
===================== */

#filters {
    margin-bottom: 1.5rem;
}

/* =====================
   Grid
===================== */

.grid {
    display: block;
}

.element-item {
    border: 1px solid #fff;
    color: #fff;
}

/* Categorías */
.category1 { background: #00bcd4; }
.category2 { background: #8bc34a; }
.category3 { background: #ff9800; }

.element-item a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 5rem;
    padding: 1rem;
    color: inherit;
    text-decoration: none;
}

.element-item .name {
    font-size: 1.5rem;
    font-weight: 900;
}

/* =====================
   Buttons
===================== */

.button.btn {
    border-radius: 0;
    box-shadow: none;
    transition: background-color .2s ease, color .2s ease;
    margin-right: -6px;
    border: 1px solid #000000;
}

.button.btn.is-checked {
    background: #000;
    color: #fff;
}

.button.btn:not(.is-checked):hover {
    background: rgba(0,0,0,.5);
    color: #fff;
}