/* MAP-STAGE-REGION */

.difficulty--1 {
    color: #9E992B;
}

.difficulty--2 {
    color: var(--color-primary);
}

.difficulty--3 {
    color: #BE3A2F;
}

.actions-fixed {
    bottom: var(--spacing-default);
}

.actions-fixed__wrapper {
    box-shadow: var(--box-shadow);
}

/* LARGE ONLY */
@media (min-width: 64rem) {
    .actions-fixed__wrapper {
        padding: var(--spacing-default) calc(2 * var(--spacing-default));
    }
}

/* END LARGE ONLY */

/* SMALL ONLY */
@media (max-width: 63.9375rem) {
    .actions-fixed {
        width: calc(100% - calc(2 * var(--grid-container-padding-x)));
    }

    .actions-fixed__wrapper {
        padding: calc(var(--spacing-default) / 2);
    }
}

/* END SMALL ONLY */
/* END MAP-STAGE-REGION */