<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* GLIDE (NEWS CAROUSEL) */
div.glide {
    width: 100%;
    margin: 0 auto;
}

div.glide li.glide__slide {
    font-size: 0.875em;
    opacity: 0.5;
    -webkit-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}

div.glide li.glide__slide.glide__slide--active {
    opacity: 1;
}

div.glide li.glide__slide div.slide_content {
    position: relative;
}

div.glide li.glide__slide div.slide_content div.news_carousel_item {
    position: relative;
    overflow: hidden;
}

div.glide li.glide__slide div.slide_content div.news_carousel_item .item_background {
    width: 100%;
    object-fit: cover;
}

div.glide li.glide__slide div.slide_content div.news_carousel_item div.item_text_container {
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    padding: 1.5em 1.5em 0.5em 1.5em;
    text-align: left;
    color: white;
    background-color: rgba(0,0,0,0.65);
}

body.night_mode div.glide li.glide__slide div.slide_content div.news_carousel_item div.item_text_container {
    color: var(--text-default);
}

div.glide li.glide__slide div.slide_content div.news_carousel_item div.item_text_container h2 {
    margin-top: 0;
    font-weight: 500;
}

div.glide li.glide__slide div.slide_content div.news_carousel_item div.item_text_container a {
    text-decoration: none;
    color: #6cb7ff;
    font-weight: 500;
}

div.glide .glide__arrow {
    background-color: #45a3ff;
    border-radius: 50%;
    height: 4em;
    width: 4em;
    padding: 0 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: none;
    -webkit-box-shadow: 0 2px 3px rgba(0,0,0,0.2);
    box-shadow: 0 2px 3px rgba(0,0,0,0.2);
}

div.glide .glide__arrow:hover {
    border-color: dodgerblue;
    background-color: dodgerblue;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

div.glide .glide__arrow img {
    width: 2em;
    height: auto;
}

div.glide .glide__bullets {
    margin-bottom: -1em;
}

/* END GLIDE (NEWS CAROUSEL) */

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

    div.glide {
        width: 95%;
    }
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

    div.glide li.glide__slide div.slide_content div.news_carousel_item .item_background {
        width: 100%;
        height: auto;
    }

    .glide__arrow--left {
        left: -0.5em !important;
    }
    .glide__arrow--right {
        right: -0.5em !important;
    }

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

    div.glide .glide__arrow {
        top: calc(50% - 0.75em);
        height: 2.5em;
        width: 2.5em;
    }

    div.glide .glide__arrow img {
        width: 1.25em;
    }

    div.glide li.glide__slide div.slide_content div.news_carousel_item {
        height: auto;
    }

    div.glide li.glide__slide div.slide_content div.news_carousel_item div.item_text_container {
        position: relative;
        background-color: #464f5d;
    }

    div.glide .glide__bullets {
        margin-bottom: -0.5em;
    }

}</pre></body></html>