/* ==========================================================
   Footer Provinces
   ========================================================== */

.footer-provinces-inner {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* ---------- Toggle ---------- */

.footer-provinces-toggle {
    width: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    outline: none;
    background: transparent;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-align: left;

    cursor: pointer;
    transition: color .2s ease;
}

.footer-provinces-toggle:hover {
    color: #e8e8e8;
}

/* ---------- Chevron ---------- */

.footer-provinces-icon {
    width: 9px;
    height: 9px;

    margin-right: 10px;

    border-right: 2px solid rgba(255,255,255,.75);
    border-bottom: 2px solid rgba(255,255,255,.75);

    transform: rotate(45deg);
    transform-origin: center;

    transition:
        transform .22s ease,
        border-color .22s ease;

    flex-shrink: 0;
}

.footer-provinces-toggle:hover .footer-provinces-icon {
    border-color: #ffffff;
}

.footer-provinces-icon.is-open {
    transform: rotate(-135deg);
}

/* ---------- Province List ---------- */

.footer-provinces-list {
    padding-top: 14px;

    display: flex;
    flex-wrap: wrap;

    gap: 8px 0;

    line-height: 1.8;
}

.footer-province-link {
    color: rgba(255,255,255,.65);
    font-size: 13px;
    text-decoration: none;

    transition: color .2s ease;
}

.footer-province-link:hover {
    color: #ffffff;
}

.footer-province-link:not(:last-child)::after {
    content: "•";
    margin: 0 10px;
    color: rgba(255,255,255,.35);
}

/* ==========================================================
   Mobile
   ========================================================== */

@media (max-width: 767px) {

    .footer-provinces-inner {
        padding: 16px 0;
    }

    .footer-provinces-toggle {
        font-size: 14px;
    }

    .footer-province-link {
        font-size: 12px;
    }

    .footer-province-link:not(:last-child)::after {
        margin: 0 7px;
    }
}
