<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * It's okay to remove the `outline` from `:hover` and `:active` but never `:focus`
 */
#skip-links:hover,
#skip-links:active {
  outline: none;
}

/* Using CSS similar to dxp button for cohesive styling */
#skip-links {
    font-family: MarkForMC-Med,-apple-system,system-ui,BlinkMacSystemFont,Segoe UI,Roboto,Arial,sans-serif;
    font-size: 1.35rem;
    color: #cf4500;
    background-color: #fff;
    border-bottom: 3.5px solid #ff4500;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    width: 100%;
    line-height: 1.43rem;
    font-weight: 400;

    left: 50%;
    padding: 17px;
    position: absolute;
    z-index: 1000;
    transition: transform 0.2s;
    transform: translate(-50%, 0%) translateY(-100%);
    margin: auto;
}

#skip-links:focus {
    transform: translate(-50%, 0%) translateY(0%);
}</pre></body></html>