/* OneTrust "Cookie settings" footer button (client snippet, NavigationFooter.ss).
   Styled to look like the sibling footer links. !important is required because
   the OneTrust SDK injects its own !important styles on #ot-sdk-btn on production.
   On mobile the footer nav collapses to the selectnav dropdown: the button is
   hidden and a matching "Cookie settings" option is added to that dropdown
   instead (see Page.php). */
#bottom_footer nav #ot-sdk-btn.ot-sdk-show-settings {
    -webkit-appearance: none !important;
    appearance: none !important;
    background: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    float: left !important;
    margin: 10px 25px 5px 0 !important;
    font-family: "PT Sans Narrow", sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: inherit !important;
    color: #fff !important;
    cursor: pointer !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    text-decoration: none !important;
}
#bottom_footer nav #ot-sdk-btn.ot-sdk-show-settings:hover {
    color: #fff !important;
    text-decoration: underline !important;
}
#bottom_footer nav #ot-sdk-btn.ot-sdk-show-settings:focus-visible {
    outline: 2px solid #fff !important;
    outline-offset: 2px !important;
}
/* Mobile: hide the button; the selectnav dropdown carries the "Cookie settings"
   option added in Page.php. */
@media screen and (max-width: 730px) {
    #bottom_footer nav #ot-sdk-btn.ot-sdk-show-settings {
        display: none !important;
    }
}
