.basic-button-container.dashboard {
    display: flex;
    flex-wrap: wrap;

    column-gap: 1rem;
    row-gap: 1rem;
    margin-bottom: 1rem;

    width: 100%;
}

.basic-button.dashboard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    width: 100%;
    height: 100%;
    margin: 0;
}

.basic-button-a.dashboard {
    flex-basis: 30%;
    flex-grow: 1;

    max-width: 33%;
}

/* buttons with images */
.basic-button.dashboard img {
    flex: 0 0 auto;
    width: 100%;
    padding: 2rem;
}

.basic-button.dashboard .label {
    flex: 1 1 auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* sm screen */
@media only screen and (max-width: 992px) {

}

/* xs screen */
@media only screen and (max-width: 768px) {
    .basic-button-a.dashboard {
        flex-basis: 100%;
        max-width: 100%;
    }

    .basic-button.dashboard img {
        padding: 1.5rem;
    }
}

/* xxs screen */
@media only screen and (max-width: 500px) {
    .basic-button.dashboard img {
        padding: 1rem;
    }
}