/* Shared appearance for classifieds and the business directory. */
body .cf-load-more,
body .business-directory-copy .directory-load-more a {
    box-sizing: border-box;
    display: inline-flex;
    min-width: 190px;
    height: 3.2rem;
    padding: 0 1.2rem;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    border: 1px solid #d6e0e7;
    border-radius: 1rem;
    background: #fff;
    color: #40566a;
    font: 950 1rem/1.5 "Cairo", sans-serif;
    text-decoration: none;
    box-shadow: 0 12px 28px -22px #172b3e;
    cursor: pointer;
    transition: .2s;
}
body .cf-load-more > span,
body .business-directory-copy .directory-load-more a > b {font: inherit;color: inherit;}
body .cf-load-more > i,
body .business-directory-copy .directory-load-more a > i {
    display: block;
    width: 1em;
    height: 1em;
    flex: none;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v10M7 12h10'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}
body .cf-load-more > i::before,
body .business-directory-copy .directory-load-more a > i::before {content: none;}
body .cf-load-more:hover,
body .business-directory-copy .directory-load-more a:hover {transform:translateY(-2px);border-color:#d9784c;background:#fff;color:#c45e31;}
body .cf-load-more:disabled,
body .business-directory-copy .directory-load-more a[aria-busy=true] {cursor:wait;opacity:.6;transform:none;}
body .cf-load-more[hidden] {display:none;}
.dark body .cf-load-more,
.dark body .business-directory-copy .directory-load-more a {border-color:#ffffff14;background:#101d2a;color:#dbe5ed;}
