/*
 * PAPELERA FIJA EN EL PANEL DE UBICACIONES
 *
 * Queda fuera de Todas/Favoritos y no participa
 * en el orden arrastrable de las ubicaciones.
 */

.location-fixed-section {
    position: sticky;
    z-index: 12;
    top: 0;

    display: grid;
    gap: 5px;

    margin: -1px 0 8px;
    padding: 5px;

    background:
        var(--cc-surface-1, var(--surface-blue, #edf7fd));

    border: 1px solid
        var(--cc-border, var(--border, #c9dce8));

    border-radius: 11px;

    box-shadow:
        0 5px 14px
        rgba(18, 48, 67, 0.08);
}


.location-fixed-heading {
    padding: 1px 7px 0;

    color:
        var(--cc-text-muted, var(--text-muted, #7890a0));

    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}


.location-fixed-button {
    width: 100%;
    min-height: 51px;
    margin: 0 !important;

    border-top-color:
        var(--cc-border, var(--border, #c9dce8))
        !important;
}


.location-fixed-button .location-symbol svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.location-fixed-section + .location-sections {
    top: 72px;
}


@media screen and (max-width: 760px) {
    .location-fixed-section {
        margin-bottom: 7px;
        padding: 5px;
    }

    .location-fixed-button {
        min-height: 57px;
    }

    .location-fixed-section + .location-sections {
        top: 78px;
    }
}
