@media (min-width: 1024px) {
    .location-slider::-webkit-scrollbar {
        display: none;
    }

    .location-slider {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

.location-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 9999px;
    border: 1px solid #cbd5e1;
    background: #fff;

    font-size: 32px;
    font-weight: 700;
    line-height: 1;

    color: #0f172a;

    cursor: pointer;

    box-shadow:
        0 2px 8px rgba(0,0,0,.08),
        0 8px 24px rgba(0,0,0,.08);

    transition: all .15s ease;
}

.location-arrow-wrapper {
    display: none;
}

@media (min-width: 1024px) {
    .location-arrow-wrapper {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-left: auto;
    }
}