.webfx-locations-list {
    justify-content: center;
}

/* Locations shortcode load more button; markup has no .btn/.load-more__btn classes */
.webfx-load-more {
    position: relative;
    display: block;
    margin: 20px auto 0;
    padding: 17px 25px;
    border: 0;
    border-radius: var(--btn-border-radius);
    background: var(--primary-color);
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25em;
    letter-spacing: var(--letter-spacing);
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
}

.webfx-load-more[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (min-width: 768px) {
    .webfx-load-more {
        font-size: 18px;
        line-height: 1.222em;
        padding: 21px 35px;
    }
}

@media (min-width: 1025px) {
    .webfx-load-more:hover {
        background: var(--primary-hover);
    }
}
