.homepage {
    --homepage-gap: 20px;
    background-color: #fff;
}

.homepage .well {
    border-radius: 0;
}

.homepage > .row,
.homepage-hero-split > .row {
    margin-left: calc(var(--homepage-gap) / -2);
    margin-right: calc(var(--homepage-gap) / -2);
}

.homepage > .row > [class*="col-"],
.homepage-hero-split > .row > [class*="col-"] {
    padding-left: calc(var(--homepage-gap) / 2);
    padding-right: calc(var(--homepage-gap) / 2);
}

.homepage-hero-split {
    background: transparent;
    box-shadow: none;
    margin-bottom: var(--homepage-gap);
}

.homepage-hero-grid,
.homepage-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--homepage-gap);
}

.homepage-hero-grid {
    margin-bottom: var(--homepage-gap);
}

.homepage-hero-panel {
    background-color: #fff;
    box-shadow: 0 0 2px 2px lightgray;
    overflow: hidden;
    position: relative;
}

.homepage-hero-carousel .homepage-hero-panel,
.homepage-hero-left .homepage-hero-panel {
    aspect-ratio: 3 / 1;
}

.homepage-hero-journal .homepage-hero-left .homepage-hero-panel {
    aspect-ratio: auto;
}

.homepage-hero-carousel #myCarousel,
.homepage-hero-left #myCarousel,
.homepage-hero-carousel .carousel-inner,
.homepage-hero-left .carousel-inner,
.homepage-hero-carousel .carousel-inner > .item,
.homepage-hero-left .carousel-inner > .item,
.homepage-hero-carousel .carousel-inner > .item > a,
.homepage-hero-left .carousel-inner > .item > a,
.homepage-hero-carousel .carousel-inner > .item > a > img,
.homepage-hero-left .carousel-inner > .item > a > img {
    width: 100%;
    height: 100%;
}

.homepage-hero-carousel .carousel-inner > .item > a,
.homepage-hero-left .carousel-inner > .item > a {
    display: block;
}

.homepage-hero-carousel .carousel-inner > .item > a > img,
.homepage-hero-left .carousel-inner > .item > a > img {
    display: block;
    object-fit: cover;
}

.homepage-hero-split #myCarousel {
    box-shadow: none !important;
    margin-bottom: 0 !important;
}

.homepage-hero-split .carousel img,
.homepage-hero-split .well img {
    width: 100%;
}

.homepage-hero-split .well {
    margin-bottom: 0;
    border: 0;
    box-shadow: none;
}

.homepage-hero-right .homepage-hero-panel,
.homepage-hero-right .embed-responsive,
.homepage-hero-video {
    background: #000;
}

.homepage-journal-card {
    display: block;
    position: relative;
    color: #fff;
}

.homepage-journal-card:hover,
.homepage-journal-card:focus {
    color: #fff;
    text-decoration: none;
}

.homepage-journal-frame {
    display: block;
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.homepage-journal .homepage-journal-frame {
    padding-bottom: 75%;
}

.homepage-journal-frame img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homepage-journal-fallback .homepage-journal-frame {
    background: linear-gradient(135deg, #006fb4, #004b7a);
}

.homepage-journal-fallback-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.homepage-journal-fallback-content .glyphicon {
    font-size: 36px;
}

.homepage-journal-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 5px 10px 10px;
    background: linear-gradient(rgba(55, 55, 55, 0.8), rgba(55, 55, 55, 0.8));
}

.homepage-journal-title {
    display: block;
    margin-bottom: 3px;
    font-size: 120%;
    font-weight: bold;
}

.homepage-journal-text {
    display: block;
    font-size: 90%;
}

.homepage-journal .homepage-journal-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.25;
    max-height: 2.5em;
}

.homepage-journal .homepage-journal-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
    max-height: 4.05em;
}

.homepage-journal .homepage-journal-text > * {
    display: contents;
}

.homepage-hero-cta {
    margin-top: 15px;
    padding-left: 25px;
    padding-right: 25px;
    background-color: #666;
    border: 0;
    border-radius: 0;
    color: #fff;
}

.homepage-hero-cta:hover,
.homepage-hero-cta:focus {
    background-color: #707070;
    color: #fff;
}

.homepage-hero-heading {
    color: #fff;
    font-size: 150%;
    margin: 0 0 15px;
    line-height: 1.2;
}

.homepage-hero-journal {
    background-color: #555;
    padding: 15px;
    box-shadow: 0 0 2px 2px #555;
}

.homepage-hero-journal .homepage-hero-panel {
    background: transparent;
    box-shadow: none;
    overflow: hidden;
}

.homepage-hero-journal .homepage-hero-cta {
    margin-top: 20px;
}

@media (min-width: 768px) {
    .homepage-hero-grid,
    .homepage-content-grid {
        grid-template-columns: minmax(0, 27fr) minmax(0, 16fr);
    }

    .homepage-hero-journal > .homepage-hero-media {
        display: flex;
        align-items: stretch;
    }

    .homepage-hero-journal > .homepage-hero-media:before,
    .homepage-hero-journal > .homepage-hero-media:after {
        display: none;
    }

    .homepage-hero-journal > .homepage-hero-media > [class*="col-"] {
        float: none;
        display: flex;
        flex-direction: column;
    }

    .homepage-hero-journal > .homepage-hero-media > .col-sm-6.homepage-hero-left {
        flex: 0 0 50%;
        max-width: 50%;
        padding-right: 7.5px;
    }

    .homepage-hero-journal > .homepage-hero-media > .col-sm-6.homepage-hero-right {
        flex: 0 0 50%;
        max-width: 50%;
        min-height: 0;
        padding-left: 7.5px;
    }

    .homepage-hero-journal .homepage-hero-cta {
        align-self: flex-start;
    }
}

@media (max-width: 767px) {
    .homepage-hero-split > .row > [class*="col-"] + [class*="col-"] {
        margin-top: var(--homepage-gap);
    }
}

.homepage-box {
    background-color: #fff;
    box-shadow: 0 0 2px 2px lightgray;
    padding: 15px;
    margin-bottom: var(--homepage-gap);
    border-radius: 0;
}

.homepage-footer {
    margin-top: 0;
}

.homepage-box h2 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #006FAD;
}

.homepage-box h2 a.small {
    color: #006FAD;
    font-size: 13px;
}

.homepage-box h2 a.small:hover,
.homepage-box h2 a.small:focus {
    color: black;
    text-decoration: none;
}

#homepage-news {
    scroll-margin-top: 12px;
}

.homepage-box h2 .small,
.homepage-box h2 .btn {
    font-weight: normal;
}

.homepage-news-toolbar {
    display: flex;
    align-items: center;
    margin: 8px 0 0;
    padding-top: 8px;
}

.homepage-news-pager {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
}

.homepage-news-page-label {
    flex: 1 1 auto;
    padding: 0 8px;
    text-align: center;
}

.homepage-box .list-group {
    margin-bottom: 0;
}

.homepage-box-footer {
    margin: 12px 0 0;
}

.homepage-box-footer a + a {
    margin-left: 12px;
}

.homepage-events h2 {
    color: #006FAD;
}

.homepage-events-icon {
    margin-right: 6px;
}

.homepage-event-row {
    position: relative;
    display: block;
    margin-top: 0;
    margin-bottom: 0;
    padding: 8px 18px 8px 0;
    color: inherit;
    text-decoration: none;
}

.homepage-event-row .media-left {
    padding-right: 8px;
}

.homepage-event-row .media-left,
.homepage-event-row .media-body {
    vertical-align: top;
}

.homepage-event-row:first-of-type {
    padding-top: 0;
}

.homepage-event-row:last-of-type {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

a.homepage-event-row:hover,
a.homepage-event-row:focus {
    text-decoration: none;
}

.homepage-event-date {
    display: block;
    width: 52px;
    padding: 8px 0;
    background-color: #eee;
    color: #006FAD;
    text-align: center;
    border-radius: 0;
}

.homepage-event-day,
.homepage-event-month {
    display: block;
    width: 100%;
    text-align: center;
}

.homepage-event-day {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.1;
}

.homepage-event-month {
    font-size: 11px;
    font-weight: bold;
    line-height: 1.2;
    text-transform: uppercase;
}

.homepage-event-title {
    display: block;
    font-weight: bold;
    color: #006FAD;
}

a.homepage-event-row:hover .homepage-event-title,
a.homepage-event-row:focus .homepage-event-title {
    text-decoration: underline;
}

.homepage-event-meta {
    display: block;
    position: relative;
    padding-left: 20px;
    font-size: 12px;
    line-height: 1.4;
}

.homepage-event-meta i {
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 14px;
    text-align: center;
    line-height: 1;
}

.homepage-event-meta-text {
    display: block;
}

.homepage-event-meta.text-muted,
.homepage-event-meta-text {
    color: #5D5E60;
}

.homepage-event-chevron {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -7px;
    color: #999;
}

.homepage-news-item {
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    padding: 8px 18px 8px 0;
}

.homepage-news-item .media-left {
    padding-right: 8px;
}

.homepage-news-item .media-left,
.homepage-news-item .media-body {
    vertical-align: top;
}

.homepage-news-item .media-body {
    min-height: 72px;
}

.homepage-content-main .homepage-news-item .media-body {
    position: relative;
    top: -4px;
}

.homepage-news-item:first-child {
    padding-top: 0;
}

.homepage-news-item:last-of-type {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.homepage-news-meta {
    margin: 0 0 2px;
}

.homepage-news-item .media-heading {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 2px;
    line-height: 1.25;
    min-height: 1.25em;
    max-height: 1.25em;
}

.homepage-news-thumb {
    width: 96px;
    height: 72px;
    max-width: 96px;
    object-fit: cover;
}

.homepage-news-snippet {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
    min-height: 2.7em;
    max-height: 2.7em;
}

.homepage-news-snippet > * {
    display: contents;
}

.homepage-news-chevron {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -7px;
    color: #999;
}

.homepage .newsLink {
    font-weight: bold;
    color: #5D5E60;
}

.homepage .newsLink:hover,
.homepage .newsLink:focus {
    color: #006FAD;
    text-decoration: none;
}

.homepage-app-row {
    display: flex;
    position: relative;
    align-items: center;
    overflow: hidden;
    padding: 5px 10px 5px 0;
    border-radius: 0;
}

.homepage-app-list .list-group-item {
    border: 0;
}

#quickAccessList > .homepage-app-row:first-child {
    padding-top: 0;
}

#quickAccessList > .homepage-app-row:last-child {
    padding-bottom: 0;
}

.homepage-app-row > .close {
    order: 3;
    float: none;
    margin-left: auto;
}

.homepage-app-handle {
    flex: 0 0 18px;
    margin-right: 8px;
    margin-top: 12px;
    color: #999;
    cursor: move;
}

.homepage-app-dragging {
    opacity: 0.5;
}

.homepage-app-editor {
    margin-top: 12px;
}

.homepage-app-catalog {
    max-height: 220px;
    overflow-y: auto;
    margin-top: 8px;
    margin-bottom: 8px;
}

.homepage-app-catalog-item {
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
}

.homepage-app-catalog-item .homepage-app-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    margin-top: 0;
    margin-right: 8px;
}

.homepage-app-catalog-item .homepage-app-icon i {
    font-size: 16px;
}

.homepage-app-catalog-item .homepage-app-icon i[class^="up-"],
.homepage-app-catalog-item .homepage-app-icon i[class*=" up-"] {
    font-size: 18px;
}

.homepage-app-catalog-item .homepage-app-icon.tileIconTight i {
    font-size: 20px;
}

.homepage-app-catalog-item .homepage-app-icon.tileIconTight i[class^="up-"],
.homepage-app-catalog-item .homepage-app-icon.tileIconTight i[class*=" up-"] {
    font-size: 22px;
}

.homepage-app-catalog-item .homepage-app-icon.tileIconTight i.icon-faceup {
    font-size: 26px;
}

.homepage-app-row.HasUpNetworkError {
    padding-left: 4px;
}

.homepage-app-row.HasUpNetworkError::after {
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 0;
    z-index: 1;
    width: 4px;
    background-color: #BA131D;
    content: "";
}

.homepage-app-icon {
    display: block;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    margin-top: 0;
    margin-right: 10px;
    background-color: #006FAD;
    color: #fff;
    line-height: 48px;
    text-align: center;
    border-radius: 0;
}

.homepage-app-icon i {
    display: inline;
    color: #fff;
    font-size: 28px;
    line-height: inherit;
}

.homepage-app-icon i:before {
    display: inline-block;
    line-height: inherit;
    vertical-align: top;
}

.homepage-app-icon i[class^="up-"],
.homepage-app-icon i[class*=" up-"] {
    font-family: "upFont";
    font-size: 32px;
}

.homepage-app-icon.tileIconTight i {
    font-size: 36px;
}

.homepage-app-icon.tileIconTight i[class^="up-"],
.homepage-app-icon.tileIconTight i[class*=" up-"] {
    font-size: 40px;
}

.homepage-app-icon.tileIconTight i.icon-faceup {
    font-size: 44px;
}

.homepage-app-icon.VeryDark {
    background-color: #071587;
}

.homepage-app-icon.Dark {
    background-color: #0A50C4;
}

.homepage-app-icon.Neutral {
    background-color: #006FAD;
}

.homepage-app-icon.Light {
    background-color: #0AB2C4;
}

.homepage-app-icon.VeryLight {
    background-color: #078770;
}

.homepage-app-icon.Other {
    background-color: #FF0000;
}

.homepage-app-text {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    padding: 5px 0;
}

.homepage-app-name {
    display: block;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
}

.homepage-app-desc,
.homepage-app-desc.text-muted {
    display: block;
    font-size: 12px;
    line-height: 1.35;
    margin-top: 2px;
    color: #5D5E60;
}

.homepage-app-chevron {
    flex: 0 0 auto;
    align-self: center;
    margin-left: 8px;
    color: #999;
}

a.homepage-app-row:hover,
a.homepage-app-row:focus {
    background-color: transparent;
}

a.homepage-app-row > * {
    position: relative;
    z-index: 1;
}

a.homepage-app-row:hover::before,
a.homepage-app-row:focus::before {
    position: absolute;
    top: 5px;
    right: 0;
    bottom: 5px;
    left: 0;
    z-index: 0;
    background-color: #f5f5f5;
    content: "";
}

#quickAccessList > .homepage-app-row:first-child:hover::before,
#quickAccessList > .homepage-app-row:first-child:focus::before {
    top: 0;
}

#quickAccessList > .homepage-app-row:last-child:hover::before,
#quickAccessList > .homepage-app-row:last-child:focus::before {
    bottom: 0;
}

#quickAccessList > .homepage-app-row.HasUpNetworkError:first-child::after {
    top: 0;
}

#quickAccessList > .homepage-app-row.HasUpNetworkError:last-child::after {
    bottom: 0;
}

.homepage-extra-cat {
    margin-bottom: 12px;
}

@media (max-width: 539px) {
    .homepage-extras .col-xs-6 {
        width: 100%;
    }

    .homepage-events h2 .homepage-events-all {
        display: table;
        float: none !important;
        margin: 14px 0 0 auto;
    }

    .homepage-events-title {
        display: block;
    }
}

.homepage #stagWidget .calendarList {
    max-height: 22em;
    overflow-y: auto;
    margin-bottom: 0;
}

.homepage #stagWidget .calendarItem {
    margin-bottom: 8px;
    word-wrap: break-word;
}

.incident-banner .incident-banner-maximize-icon {
    display: none;
}

.incident-banner-toggle[aria-expanded="false"] .incident-banner-minimize-icon {
    display: none;
}

.incident-banner-toggle[aria-expanded="false"] .incident-banner-maximize-icon {
    display: inline-block;
}

.incident-banner-count {
    margin-left: 5px;
}

.homepage-alerts-strip {
    background-color: #fff;
    box-shadow: 0 0 2px 2px lightgray;
    margin-bottom: var(--homepage-gap);
    border-left: 4px solid #006FAD;
}

.homepage-alerts-strip-incident {
    border-left-color: #c0392b;
}

.homepage-alerts-open {
    display: flex;
    align-items: flex-start;
    width: 100%;
    border: 0;
    background: transparent;
    color: #333;
    padding: 10px 12px;
    text-align: left;
}

.homepage-alerts-open:hover,
.homepage-alerts-open:focus {
    background-color: #f5f5f5;
}

.homepage-alerts-open:focus {
    outline: 2px solid #006FAD;
    outline-offset: -2px;
}

.homepage-alerts-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    color: #006FAD;
    font-size: 16px;
    line-height: 1;
}

.homepage-alerts-icon i {
    line-height: 1;
}

.homepage-alerts-strip-incident .homepage-alerts-icon {
    color: #c0392b;
}

.homepage-alerts-copy {
    flex: 1 1 auto;
    min-width: 0;
}

.homepage-alerts-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: #006FAD;
}

.homepage-alerts-strip-incident .homepage-alerts-title {
    color: #333;
}

.homepage-alerts-heading {
    line-height: 1;
}

.homepage-alerts-title .badge,
.homepage-alerts-title .homepage-alerts-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 14px;
    height: 14px;
    padding: 0 3px;
    font-size: 11px;
    line-height: 1;
    box-sizing: border-box;
    border-radius: 0;
}

.homepage-alerts-title .badge {
    background-color: #006FAD;
}

.homepage-alerts-strip-incident .homepage-alerts-title .badge {
    background-color: #c0392b;
}

.homepage-alerts-teasers {
    list-style: none;
    margin: 4px 0 0;
    padding: 0 0 0 24px;
    font-size: 13px;
    line-height: 1.35;
    color: #5D5E60;
}

.homepage-alerts-teasers li {
    position: relative;
    padding-left: 1em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.homepage-alerts-teasers li::before {
    content: "";
    position: absolute;
    top: 0.45em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: currentColor;
}

.homepage-alerts-teasers .homepage-alerts-teaser-incident {
    color: #c0392b;
}

.homepage-alerts-open[aria-expanded="true"] .homepage-alerts-teasers {
    display: none;
}

.homepage-alerts-chevron {
    flex: 0 0 auto;
    margin-top: 3px;
    margin-left: 8px;
    color: #999;
    transition: transform 0.15s ease;
}

.homepage-alerts-open[aria-expanded="true"] .homepage-alerts-chevron {
    transform: rotate(180deg);
}

.homepage-alerts-body {
    max-height: 70vh;
    overflow-y: auto;
    padding: 0 12px 12px;
    border-top: 1px solid #eee;
}

.homepage-alerts-body .panel {
    margin-top: 12px;
    margin-bottom: 15px;
}

.homepage-alerts-body .panel:last-child {
    margin-bottom: 0;
}

.homepage-alerts-body .panel-heading {
    font-weight: 700;
}

.homepage-alerts-body .alert-danger {
    margin-bottom: 0;
    border: 0;
    border-radius: 0;
}

.homepage-alerts-body .important-notice-separator {
    border-top: 1px solid #ddd;
    margin: 14px 0;
}

.homepage-alerts-body .alert-danger .important-notice-separator {
    border-top-color: #ebccd1;
}

.homepage-alerts-body .important-notice-item h4 {
    align-items: baseline;
    display: flex;
    gap: 12px;
    margin-top: 0;
    font-size: 16px;
    color: #006FAD;
}

.homepage-alerts-body .important-notice-title {
    flex: 1 1 auto;
    min-width: 0;
}

.homepage-alerts-body .important-notice-date {
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: normal;
    color: #5D5E60;
    white-space: nowrap;
}

.homepage-alerts-body .incident-banner-title {
    display: block;
    margin-bottom: 4px;
}

.homepage-alerts-body .incident-banner-body > :last-child,
.homepage-alerts-body .important-notice-item > :last-child {
    margin-bottom: 0;
}

.homepage-quick-access-defaults .list-group-item.homepage-app-row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.homepage-quick-access-defaults .homepage-app-icon {
    margin-top: 0;
}

.homepage-quick-access-defaults .homepage-app-handle,
.homepage-quick-access-defaults .apps-launcher-star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    margin-top: 0;
    margin-right: 0;
    line-height: 1;
}

.homepage-quick-access-defaults .homepage-app-handle {
    margin-left: auto;
}

.homepage-quick-access-defaults .homepage-app-handle .glyphicon,
.homepage-quick-access-defaults .apps-launcher-star .glyphicon {
    position: static;
    top: 0;
    line-height: 1;
}

.homepage-quick-access-defaults .apps-launcher-star {
    -webkit-appearance: none;
    appearance: none;
    align-self: center;
    background: transparent;
    border: 0;
    padding: 0;
    margin-left: 4px;
    color: #bbb;
    font-size: 14px;
}

.homepage-quick-access-defaults .apps-launcher-star.is-starred {
    color: #e6a100;
}

.homepage-quick-access-defaults .apps-launcher-star:hover,
.homepage-quick-access-defaults .apps-launcher-star:focus {
    color: #e6a100;
}

.homepage-quick-access-defaults .apps-launcher-star:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.homepage-quick-access-defaults .apps-launcher-section {
    margin-bottom: 16px;
}

.homepage-quick-access-defaults .apps-launcher-section-title {
    margin-top: 0;
    margin-bottom: 8px;
}

.notOnXs {
    display: block;
}

@media (max-width: 640px) {
    .notOnXs {
        display: none;
    }
}
