/* Colors */

:root {
    --light-blue: ;
    --blue: #004C97;
    --blue-rgb: 0, 76, 151;
    --uhc-blue: #002677;
    --light-green: #00AB4E;
    --green: #009639;
    --green-rgb: 0, 150, 57;
    --dark-green: #00782E;

    --yellow: #FFCE34;

    --bs-body-color: #000000;
    --bs-primary-text-emphasis: #FFFFFF;
    --bs-accordion-active-color: #FFFFFF;
    --bs-accordion-active-bg: #004C97;
    --bs-primary-bg-subtle: #004C97;
    --bs-accordion-btn-active-icon: 
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(0, 76, 151, 0.25);

    --bs-gray-100: #f8f9fa;
	--bs-gray-150: #f1f3f5;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
}

.bg-blue {
    background-color: var(--blue);
}

.text-blue {
    color: var(--blue);
}

.bg-green {
    background-color: var(--green);
}

.text-green {
    color: var(--green);
}

.border-top-green-4 {
    border-top: 4px solid var(--green);
}

.bg-gray-gradient {
    /* background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 1) 50%, rgba(233, 236, 239, 1) 100%); */
	background: linear-gradient(
	  180deg,
	  rgba(255, 255, 255, 1) 0%,       /* stays pure white */
	  rgba(245, 247, 248, 1) 100%      /* lighter bottom gray */
	);
}

.bg-gray-200 {
    background: var(--bs-gray-200);
}

.bg-gray-150 {
    background: var(--bs-gray-150);
}

.bg-gray-100 {
    background: var(--bs-gray-100);
}


/* Fonts */

@font-face {
    font-family: 'Brando Sans';
    src: url('/assets/fonts/Brando Sans LF Text.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Brando Sans Bold';
    src: url('/assets/fonts/Brando Sans LF Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Brando Sans', sans-serif;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .display-1, .display-2, .display-3, .display-4 {
    font-family: 'Brando Sans Bold', sans-serif;
}

#main_content a:not(.btn) {
    font-family: 'Brando Sans Bold', sans-serif;
    color: var(--blue);
    text-decoration: none;
}

#main_content a:not(.btn):hover,
#main_content a:not(.btn):focus,
#main_content a:not(.btn):target,
#main_content a:not(.btn):active {
    color: var(--uhc-blue);
    text-decoration: underline;
}

.link-blue {
    font-family: 'Brando Sans Bold', sans-serif;
    color: var(--blue);
    text-decoration: none;
}

.link-blue:hover,
.link-blue:focus,
.link-blue:target,
.link-blue:active {
    color: var(--uhc-blue);
    text-decoration: underline;
}

.eyebrow {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: .25rem;
}

.lead {
    font-weight: inherit;
}

.font-12px {
    font-size: 12px !important;
}

/* ul li::marker {
    color: var(--green);
} */

ul.red-bullets li::marker {
    color: var(--bs-danger);
}

.allowed-list i {
    color: var(--green);
}

/* .allowed-list li::marker {
    color: var(--green);
} */

.prohibited-list i {
    color: var(--bs-danger);
}

.prohibited-list li::marker {
    color: var(--bs-danger);
}

@media (min-width: 1200px) {
    .allowed-list ul,
    .prohibited-list ul {
        margin-bottom: 0;
    }
}


/* Utilities */

:target {
    scroll-margin-top: calc(121px + 3rem);
}

@media (max-width: 1199.98px) {
    :target {
        scroll-margin-top: calc(130px + 3rem);
    }
}

.g-12px {
    --bs-gutter-x: .75rem;
    --bs-gutter-y: .75rem;
}

.pt-12px {
    padding-top: .75rem;
}

.no-last-p-margins p:last-child {
    margin-bottom: 0;
}

.no-last-margins *:last-child {
    margin-bottom: 0;
}

.favicon {
    width: 35px;
}

.t-auto {
    top: auto;
}

.mb-n2 {
    margin-bottom: -.5rem;
}

.ratio iframe {
    border-radius: var(--bs-border-radius);
}

.nav-white a {
    color: var(--bs-white) !important;
}

.nav-blue a {
    color: var(--blue) !important;
}

.nav-green a {
    color: var(--green) !important;
}

.link-green-hover:hover {
    color: var(--green) !important;
    text-decoration-color: RGBA(var(--green-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.bg-cover {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}

.bg-contain {
    -webkit-background-size: contain !important;
    -moz-background-size: contain !important;
    -o-background-size: contain !important;
    background-size: contain !important;
}

.bg-ob-cover {
    width: 100% !important;
    height: 100% !important;
    -webkit-object-fit: cover !important;
    -moz-object-fit: cover !important;
    -o-object-fit: cover !important;
    object-fit: cover !important;
}

ul.list-columns {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    column-gap: 1.5rem;
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
}

@media (min-width: 576px) {
    ul.list-columns {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }
}

@media (min-width: 992px) {
    ul.list-columns {
        columns: 3;
        -webkit-columns: 3;
        -moz-columns: 3;
    }
}

@media (min-width: 1200px) {
    ul.list-columns {
        columns: 4;
        -webkit-columns: 4;
        -moz-columns: 4;
    }
}

ul.list-columns-footer {
    font-size: 14px;
    list-style-type: none;
    margin: 0;
    padding: 0;
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
    column-gap: 1.5rem;
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
}

@media (min-width: 576px) {
    ul.list-columns-footer {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }
}

.divider {
    display: flex;
}

.divider:before,
.divider:after {
    content: "";
    flex: 1;
}

.line {
    align-items: center;
    margin: 0 -1.5rem;
}

.line:before,
.line:after {
    height: 1px;
    margin: 0 1.5rem;
}

.double:before,
.double:after {
    height: 5px;
    box-shadow: 0 -0.5px 0 var(--bs-black), 0 0.5px 0 var(--bs-black);
    border-width: 0;
}


/* Banners */

.bg-banner {
    position: relative;
    display: flex;
    min-height: 600px;
    height: auto;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    color: var(--bs-white);
    overflow: hidden;
}

.bg-banner .container,
.bg-banner .container-fluid {
    position: relative;
    z-index: 2;
    align-self: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.bg-banner .bg-banner-overlay {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(-270deg, rgba(0, 76, 151, 1) 0%, rgba(0, 76, 151, 0) 100%);
}

.bg-banner .bg-banner-overlay.reverse {
    background: linear-gradient(-270deg, rgba(0, 76, 151, 0) 0%, rgba(0, 76, 151, 1) 100%);
}

.bg-banner h2 {
    color: var(--bs-white);
}

@media (max-width: 991.98px) {
    .bg-banner .bg-banner-overlay {
        background: linear-gradient(-270deg, rgba(0, 76, 151, 1) 0%, rgba(0, 76, 151, .5) 100%);
    }

    .bg-banner .bg-banner-overlay.reverse {
        background: linear-gradient(-270deg, rgba(0, 76, 151, .5) 0%, rgba(0, 76, 151, 1) 100%);
    }
}


/* Line Clamping */

.line-clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clamp-one {
    line-clamp: 1;
    -webkit-line-clamp: 1;
}

.clamp-two {
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.clamp-three {
    line-clamp: 3;
    -webkit-line-clamp: 3;
}

.clamp-four {
    line-clamp: 4;
    -webkit-line-clamp: 4;
}

.clamp-five {
    line-clamp: 5;
    -webkit-line-clamp: 5;
}

.clamp-six {
    line-clamp: 6;
    -webkit-line-clamp: 6;
}


/* Navigation */

#main_navbar {
    padding-top: .75rem;
    padding-bottom: .75rem;
    background-color: var(--bs-white);
    border-bottom: 1px solid var(--bs-border-color);
}

/* #main_navbar .nav-item {
    border-left: 1px solid var(--bs-black);
} */

a.navbar-brand {
    padding: 0;
}

a.navbar-brand img.main {
    margin-right: 16px;
}

a.navbar-brand img.sub {
    margin-left: 16px;
}

#main_navbar .nav-link {
    font-family: 'Brando Sans Bold', sans-serif;
    font-size: 14px;
    color: var(--blue);
    padding: 14.5px;
}

#main_navbar .nav-link:hover,
#main_navbar .nav-link:focus,
#main_navbar .nav-link:target,
#main_navbar .nav-link:active {
    color: var(--uhc-blue);
}

#main_navbar .dropdown.show .nav-link {
    color: var(--uhc-blue);
}

.dropdown-toggle::after {
    display: inline-block;
    vertical-align: .1em;
    content: "\f078";
    font: var(--fa-font-solid);
    font-size: 12px;
    border: 0;
    transform: rotate(0deg);
    transition: all .3s ease;
}

.dropdown-toggle.show:after {
    transform: rotate(-180deg);
}

#main_navbar .dropdown-menu {
    min-width: 225px;
    padding: 12px;
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-gray-300);
}

#main_navbar .dropdown-item {
    font-family: 'Brando Sans Bold', sans-serif;
    color: var(--blue);
    font-size: 14px;
    padding: 12px;
    border-radius: var(--bs-border-radius);
}

#main_navbar .dropdown-item:hover,
#main_navbar .dropdown-item:focus,
#main_navbar .dropdown-item:target,
#main_navbar .dropdown-item:active {
    background-color: var(--bs-white);
    color: var(--uhc-blue);
}

.logo-divider {
    position: absolute;
    display: inline-block;
    width: 1px;
    height: 70px;
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
}

@media (min-width: 1200px) {
    #nav_logos .nav-link {
        padding: 0;
        margin-left: 1rem;
    }

    a.navbar-brand img.main {
        width: 150px;
        height: 70px;
    }

    a.navbar-brand img.sub {
        width: 85px;
        height: 50px;
    }

    .cta-nav-item {
        margin-left: 16px;
    }
}

@media (max-width: 1199.98px) {
    a.navbar-brand img.main {
        width: 130px;
        height: 61px;
    }
    a.navbar-brand img.sub {
        width: 75px;
        height: 45px;
    }

    .logo-divider {
        height: 61px;
    }

    #nav_links {
        border-top: var(--bs-border-color);
    }

    #nav_links .nav-item {
        display: block;
        width: 100%;
    }

    #nav_logos {
        flex-direction: row;
        justify-content: center;
    }

    .dropdown .dropdown-toggle:after {
        font-size: 1rem;
        position: absolute;
        right: 21px;
        top: 17px;
    }
}

.navbar-toggler {
    border: 0;
}


/* Buttons */

.btn {
    font-family: 'Brando Sans Bold', sans-serif;
    padding: .5rem 1rem;
}

.btn-green {
    background-color: var(--green);
    color: var(--bs-white);
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-white);
}

.btn-green:hover,
.btn-green:focus,
.btn-green:target,
.btn-green:active {
    background-color: var(--light-green) !important;
    color: var(--bs-white) !important;
    border: var(--bs-border-width) var(--bs-border-style) var(--light-green) !important;
}

.btn-green.border-0 {
    border: 0 !important;
}


/* Hero */

#hero {
    position: relative;
    background-color: var(--blue);
    color: var(--bs-white) !important;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    min-height: 450px;
    min-height: calc(90vh - 121px);
    height: auto;
    display: flex;
}

#hero .overlay {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(-270deg, rgba(0,76,151,1) 0%, rgba(0,76,151,0) 100%);
}

#hero .container,
#hero .container-fluid {
    position: relative;
    z-index: 2;
    align-self: center;
}

#hero h1 {
    color: var(--bs-white) !important;
    line-height: .85;
    margin-bottom: 1rem;
}

#hero h1 span {
    font-family: 'Brando Sans', sans-serif;
    font-size: 60%;
}

#hero .date {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

#hero .eyebrow {
    font-size: 12px;
    margin-bottom: .75rem;
}

#hero .sponsor-overlay {
    position: relative;
    display: flex;
    justify-self: end;
    align-self: center;
    margin-right: 12px;
    border-radius: var(--bs-border-radius);
    background-color: var(--bs-white);
}

#hero .sponsor-overlay img {
    padding: 16px;
}

@media (max-width: 991.98px) {
    #hero .overlay {
        background: linear-gradient(-270deg, rgba(0, 76, 151, 1) 0%, rgba(0, 76, 151, .5) 100%);
    }
}


/* Hero Video */

.hero-video {
    overflow: hidden;
}

.hero-video .hero-video_iframe {
    position: absolute;
    z-index: -2;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    overflow: hidden;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    background-color: var(--bs-transparent);
    background-repeat: no-repeat;
    background-position: 0% 50%;
}

.hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

.hero-video iframe {
    width: 100vw;
    height: 56.25vw;
    /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
    min-height: 100vh;
    min-width: 177.77vh;
    /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-paused-cover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,76,151,.95), rgba(0,76,151,.95));
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.1s ease;
}

.video-paused .video-paused-cover {
    opacity: 1;
}

#video_container {
    user-select: none !important;
    pointer-events: none !important;
}

#video_container iframe {
    user-select: none !important;
    pointer-events: none !important;
}

.video-pp-btn {
    background-color: var(--bs-transparent);
    color: var(--bs-white) !important;
    border: 0;
    align-self: center;
    bottom: 3px;
    position: absolute;
    text-align: center;
    left: auto;
    right: 0;
    padding: 15px;
    z-index: 100;
    line-height: 1;
}


/* Clock */

.breitling-watch {
    width: 100px;
    position: relative;
    padding: 12px;
}

.breitling-watch::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/cdn/Breitling-Watch-Face-Black.svg');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.breitling-watch.white::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/cdn/Breitling-Watch-Face-White.svg');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.clock {
    font-family: monospace;
    --analog-clock-bg: var(--bs-black);
    --analog-clock-c: var(--bs-white);
    --analog-clock-indices-c: var(--bs-white);
    --analog-clock-second: var(--yellow);
    --analog-clock-fw: 900;
    --analog-clock-fs: 14cqi;
}

.breitling-watch.white .clock {
    --analog-clock-bg: var(--bs-white);
    --analog-clock-c: var(--bs-black);
    --analog-clock-indices-c: var(--bs-black);
    --analog-clock-second: var(--yellow);
}

.clock::part(numerals) {
    margin: 2px 3px 5px 3px;
}

.clock::part(hours) {
    --_w: 4cqi;
    --_h: 20%;
}

.clock::part(minutes) {
    --_w: 4cqi;
    --_h: 35%;
}


/* Swipers */

.swiper {
    padding: 0 12px;
    margin: 0 -12px;
    overflow: hidden !important;
}

.swiper-button-prev,
.swiper-button-next {
    font-weight: 700;
    margin-top: -18px;
    width: 36px;
    height: 36px;
    color: var(--green);
    background-color: var(--bs-white);
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    padding: 15px;
    transition: all .3s ease;
}

.swiper-button-prev {
    left: 12px;
}

.swiper-button-next {
    right: 12px;
}

.swiper-button-prev.flush {
    left: 0;
}

.swiper-button-next.flush {
    right: 0;
}

.swiper-button-prev.inset {
    left: 24px;
}

.swiper-button-next.inset {
    right: 24px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 16px;
}

.swiper-sponsors .swiper-wrapper,
.swiper-images .swiper-wrapper {
    transition-timing-function: linear;
}


/* Subpages */

.subpage-banner {
    position: relative;
    display: flex;
    min-height: 400px;
    height: auto;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    color: var(--bs-white);
}

.subpage-banner h1 {
    color: var(--bs-white);
}

.subpage-banner p {
    margin-bottom: 0;
}

.subpage-banner a:not(.btn) {
    color: var(--bs-gray-100) !important;
}

.subpage-banner .container,
.subpage-banner .container-fluid {
    position: relative;
    z-index: 2;
    align-self: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.subpage-banner .subpage-banner-overlay {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(-270deg, rgba(0, 76, 151, 1) 0%, rgba(0, 76, 151, 0) 100%);
}

@media (max-width: 991.98px) {
    .subpage-banner {
        min-height: 300px;
    }

    .subpage-banner .subpage-banner-overlay {
        background: linear-gradient(-270deg, rgba(0, 76, 151, 1) 0%, rgba(0, 76, 151, .5) 100%);
    }
}


/* Sidebar */

.sidebar {
    top: calc(121px + 3rem);
    z-index: 1019;
}

.alpha-jumps {
    font-weight: 700;
    list-style: none;
    padding: 1rem;
    counter-reset: alpha;
    line-height: 1.5;
}

.alpha-jumps a {
    font-family: monospace !important;
    color: var(--blue);
    text-decoration: none;
}

.alpha-jumps a:hover,
.alpha-jumps a:focus,
.alpha-jumps a:target,
.alpha-jumps a:active {
    color: var(--green) !important;
}

@media (min-height: 768px) {
    .alpha-jumps li a::before {
        counter-increment: alpha;
        content: counter(alpha, upper-alpha);
    }
}

@media (max-height: 767.98px) {
    .alpha-jumps li {
        visibility: hidden;
        height: 0;
    }

    .alpha-jumps li:nth-of-type(2n + 1) {
        visibility: visible;
        height: auto;
    }

    .alpha-jumps li:nth-of-type(2n + 1) a::before {
        counter-increment: alpha;
        content: counter(alpha, upper-alpha) "-";
    }

    .alpha-jumps li:nth-of-type(2n + 1) a::after {
        counter-increment: alpha;
        content: counter(alpha, upper-alpha);
    }

    .alpha-jumps li:nth-last-of-type(2) a::after {
        content: "Z";
    }
}

.alpha-jumps li.skip-count {
    visibility: hidden;
    height: 0;
}

#alpha_content h2 {
    margin-top: 3rem;
}


/* Accordions */

.accordion-button span.subtext {
    font-family: 'Brando Sans', sans-serif;
    font-size: 12px;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-button.collapsed::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}


/* Cards */

.card {
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-gray-300);
}


/* Tickets */

.ticket-logo-col {
    min-width: 200px;
}


/* Tables */

table {
    color: var(--black);
}

thead {
    background-color: var(--blue);
    color: var(--white);
}

.table-bordered thead td,
.table-bordered thead th {
    border-bottom-width: 1px;
}

.past-results-table {
    margin-bottom: 0;
}

table .year {
    width: 55px;
    text-align: center;
}

table .placement {
    width: 45px;
    text-align: center;
}

table td.placement {
    text-align: center;
}

table .winner {
    min-width: 150px;
}

table td.winner {
    line-height: 1.15;
    vertical-align: middle;
}

table .player {
    min-width: 150px;
}

table td.player {
    line-height: 1.15;
    vertical-align: middle;
}

table .round {
    width: 40px;
    text-align: center;
}

table .total {
    width: 55px;
    text-align: center;
}

table .purse {
    width: 100px;
}

table .recap {
    width: 80px;
    text-align: center;
}

table .recap-results {
    width: 145px;
    text-align: center;
}

table .scoreboard {
    width: 110px;
    text-align: center;
}

table td.recap-results,
table td.recap,
table td.scoreboard {
    padding: 0;
}

table .recap-results a,
table .recap a table .scoreboard a {
    display: block !important;
    padding: .75rem;
    text-decoration: none !important;
    transition: all .3s ease;
}

table .recap-results a:hover,
table .recap-results a:focus,
table .recap-results a:target,
table .recap-results a:active,
table .recap a:hover,
table .recap a:focus,
table .recap a:target,
table .recap a:active,
table .scoreboard a:hover,
table .scoreboard a:focus,
table .scoreboard a:target,
table .scoreboard a:active {
    background-color: var(--gray-200);
}

@media (max-width: 1199.98px) {
    .past-results-table {
        font-size: 14px;
    }
}

@media (max-width: 991.98px) {
    .past-results-table {
        font-size: 12px;
    }
}


/* Forms */

.input-group-text {
    background-color: var(--blue);
    color: var(--bs-white);
    border: 1px solid var(--blue);
}


/* Alerts */

.alert {
    border-radius: 0;
}


/* Modals */

.modal-content {
    border-bottom: 4px solid var(--green);
}

.modal .floating-close {
    padding: 12px;
    display: block;
    position: absolute;
    z-index: 1051;
    top: 0;
    right: 0;
    left: auto;
    margin: 0;
    transition: all .3s ease;
}

/* Definitions (Know as you go) */
dt {
	margin-bottom:0px !important;
}

dd p:first-child {
	margin-top:0px;
}


/* Footer */

footer a:not(.btn) {
    font-family: 'Brando Sans Bold', sans-serif;
    color: var(--blue);
    text-decoration: none;
}

footer a:not(.btn):hover,
footer a:not(.btn):focus,
footer a:not(.btn):target,
footer a:not(.btn):active {
    color: var(--uhc-blue);
    text-decoration: underline;
}


/* Scroll Top Button */

.scroll-top {
    visibility: hidden;
    opacity: 0;
    cursor: pointer;
    position: fixed;
    z-index: 10;
    top: auto;
    right: 12px;
    bottom: 12px;
    left: auto;
    text-align: center;
    background-color: var(--bs-body-bg);
    color: var(--green);
    width: 36px;
    height: 36px;
    line-height: 36px;
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: all .3s ease;
}

.scroll-top.show {
    visibility: visible;
    opacity: 1;
}

/* Remove bullets and default UL padding */
.list-columns-vertical .cms-list {
    list-style: none;
    margin: 0;
    padding-left: 0;
    column-gap: 1.25rem;        /* space between columns */
    column-fill: balance;        /* balance columns when possible */
    columns: 1;                  /* xs: 1 column */
}
.list-columns-vertical .cms-list li {
    margin-bottom: 0;
}

/* large left-right padding */
@media (min-width: 992px) { /* lg and up */
    .lg-super-padding {
        padding-left: 6rem;   /* adjust as needed */
        padding-right: 6rem;
    }
}

/* Bootstrap-ish breakpoints */
@media (min-width: 576px) {
    .list-columns-vertical .cms-list { columns: 2; }
}
@media (min-width: 768px) {
    .list-columns-vertical .cms-list { columns: 3; }
}
@media (min-width: 992px) {
    .list-columns-vertical .cms-list { columns: 4; } /* lg: 4 cols */
}

/* Prevent items from breaking between columns and add spacing */
.list-columns-vertical .cms-list > li {
    -webkit-column-break-inside: avoid;
    break-inside: avoid;
    margin-bottom: 0.5rem;
}