/*! HTML5 Boilerplate v5.2.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

 /* this html bit is inherited from a legacy version of normalize.css */
html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
    font-family: sans-serif; /* 1 */
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
}


/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */




/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers:
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

/*
    a[href]:after {
        content: " (" attr(href) ")";
    }
*/

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
/*         border: 1px solid #999; */
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
/*         max-width: 100% !important; */
        max-width: 50% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
	p,
    h2,
    h3 {
        page-break-after: avoid;
    }
}


/* BBG CUSTOMIZATION */

button,
input,
optgroup,
select,
textarea {
    color: inherit; /* 1 */
    font: inherit; /* 2 */
    margin: 0; /* 3 */
}
/*!
 * Bootstrap Grid v5.0.2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container-sm, .container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container-md, .container-sm, .container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .container-lg, .container-md, .container-sm, .container {
        max-width: 960px;
    }
}

@media (min-width: 1100px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1055px;
    }

    /*@media (min-width: 1400px) {
        .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
            max-width: 1320px;
        }
    */
}


.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
}
.row > * {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

.col {
    flex: 1 0 0%;
}

.row-cols-auto > * {
    flex: 0 0 auto;
    width: auto;
}

.row-cols-1 > * {
    flex: 0 0 auto;
    width: 100%;
}

.row-cols-2 > * {
    flex: 0 0 auto;
    width: 50%;
}

.row-cols-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
}

.row-cols-4 > * {
    flex: 0 0 auto;
    width: 25%;
}

.row-cols-5 > * {
    flex: 0 0 auto;
    width: 20%;
}

.row-cols-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
}

@media (min-width: 576px) {
    .col-sm {
        flex: 1 0 0%;
    }

    .row-cols-sm-auto > * {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-sm-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-sm-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-sm-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-sm-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-sm-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-sm-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }
}
@media (min-width: 768px) {
    .col-md {
        flex: 1 0 0%;
    }

    .row-cols-md-auto > * {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-md-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-md-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-md-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-md-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-md-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-md-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }
}
@media (min-width: 992px) {
    .col-lg {
        flex: 1 0 0%;
    }

    .row-cols-lg-auto > * {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-lg-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-lg-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-lg-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-lg-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-lg-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-lg-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }
}
@media (min-width: 1200px) {
    .col-xl {
        flex: 1 0 0%;
    }

    .row-cols-xl-auto > * {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-xl-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-xl-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-xl-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-xl-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-xl-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-xl-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }
}
@media (min-width: 1400px) {
    .col-xxl {
        flex: 1 0 0%;
    }

    .row-cols-xxl-auto > * {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-xxl-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-xxl-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-xxl-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-xxl-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-xxl-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-xxl-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }
}
.col-auto {
    flex: 0 0 auto;
    width: auto;
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}

.col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}

.col-9 {
    flex: 0 0 auto;
    width: 75%;
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.offset-1 {
    margin-left: 8.33333333%;
}

.offset-2 {
    margin-left: 16.66666667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.33333333%;
}

.offset-5 {
    margin-left: 41.66666667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.33333333%;
}

.offset-8 {
    margin-left: 66.66666667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.33333333%;
}

.offset-11 {
    margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
    --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
    --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
    --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
    --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
    --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
    --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
    --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
    --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
    --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
    --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
    --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
    --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-sm-0 {
        margin-left: 0;
    }

    .offset-sm-1 {
        margin-left: 8.33333333%;
    }

    .offset-sm-2 {
        margin-left: 16.66666667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.33333333%;
    }

    .offset-sm-5 {
        margin-left: 41.66666667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.33333333%;
    }

    .offset-sm-8 {
        margin-left: 66.66666667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.33333333%;
    }

    .offset-sm-11 {
        margin-left: 91.66666667%;
    }

    .g-sm-0,
    .gx-sm-0 {
        --bs-gutter-x: 0;
    }

    .g-sm-0,
    .gy-sm-0 {
        --bs-gutter-y: 0;
    }

    .g-sm-1,
    .gx-sm-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-sm-1,
    .gy-sm-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-sm-2,
    .gx-sm-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-sm-2,
    .gy-sm-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-sm-3,
    .gx-sm-3 {
        --bs-gutter-x: 1rem;
    }

    .g-sm-3,
    .gy-sm-3 {
        --bs-gutter-y: 1rem;
    }

    .g-sm-4,
    .gx-sm-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-sm-4,
    .gy-sm-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-sm-5,
    .gx-sm-5 {
        --bs-gutter-x: 3rem;
    }

    .g-sm-5,
    .gy-sm-5 {
        --bs-gutter-y: 3rem;
    }
}
@media (min-width: 768px) {
    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-md-0 {
        margin-left: 0;
    }

    .offset-md-1 {
        margin-left: 8.33333333%;
    }

    .offset-md-2 {
        margin-left: 16.66666667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.33333333%;
    }

    .offset-md-5 {
        margin-left: 41.66666667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.33333333%;
    }

    .offset-md-8 {
        margin-left: 66.66666667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.33333333%;
    }

    .offset-md-11 {
        margin-left: 91.66666667%;
    }

    .g-md-0,
    .gx-md-0 {
        --bs-gutter-x: 0;
    }

    .g-md-0,
    .gy-md-0 {
        --bs-gutter-y: 0;
    }

    .g-md-1,
    .gx-md-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-md-1,
    .gy-md-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-md-2,
    .gx-md-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-md-2,
    .gy-md-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-md-3,
    .gx-md-3 {
        --bs-gutter-x: 1rem;
    }

    .g-md-3,
    .gy-md-3 {
        --bs-gutter-y: 1rem;
    }

    .g-md-4,
    .gx-md-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-md-4,
    .gy-md-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-md-5,
    .gx-md-5 {
        --bs-gutter-x: 3rem;
    }

    .g-md-5,
    .gy-md-5 {
        --bs-gutter-y: 3rem;
    }
}
@media (min-width: 992px) {
    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-lg-0 {
        margin-left: 0;
    }

    .offset-lg-1 {
        margin-left: 8.33333333%;
    }

    .offset-lg-2 {
        margin-left: 16.66666667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.33333333%;
    }

    .offset-lg-5 {
        margin-left: 41.66666667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.33333333%;
    }

    .offset-lg-8 {
        margin-left: 66.66666667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.33333333%;
    }

    .offset-lg-11 {
        margin-left: 91.66666667%;
    }

    .g-lg-0,
    .gx-lg-0 {
        --bs-gutter-x: 0;
    }

    .g-lg-0,
    .gy-lg-0 {
        --bs-gutter-y: 0;
    }

    .g-lg-1,
    .gx-lg-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-lg-1,
    .gy-lg-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-lg-2,
    .gx-lg-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-lg-2,
    .gy-lg-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-lg-3,
    .gx-lg-3 {
        --bs-gutter-x: 1rem;
    }

    .g-lg-3,
    .gy-lg-3 {
        --bs-gutter-y: 1rem;
    }

    .g-lg-4,
    .gx-lg-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-lg-4,
    .gy-lg-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-lg-5,
    .gx-lg-5 {
        --bs-gutter-x: 3rem;
    }

    .g-lg-5,
    .gy-lg-5 {
        --bs-gutter-y: 3rem;
    }
}
@media (min-width: 1200px) {
    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-xl-0 {
        margin-left: 0;
    }

    .offset-xl-1 {
        margin-left: 8.33333333%;
    }

    .offset-xl-2 {
        margin-left: 16.66666667%;
    }

    .offset-xl-3 {
        margin-left: 25%;
    }

    .offset-xl-4 {
        margin-left: 33.33333333%;
    }

    .offset-xl-5 {
        margin-left: 41.66666667%;
    }

    .offset-xl-6 {
        margin-left: 50%;
    }

    .offset-xl-7 {
        margin-left: 58.33333333%;
    }

    .offset-xl-8 {
        margin-left: 66.66666667%;
    }

    .offset-xl-9 {
        margin-left: 75%;
    }

    .offset-xl-10 {
        margin-left: 83.33333333%;
    }

    .offset-xl-11 {
        margin-left: 91.66666667%;
    }

    .g-xl-0,
    .gx-xl-0 {
        --bs-gutter-x: 0;
    }

    .g-xl-0,
    .gy-xl-0 {
        --bs-gutter-y: 0;
    }

    .g-xl-1,
    .gx-xl-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-xl-1,
    .gy-xl-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-xl-2,
    .gx-xl-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-xl-2,
    .gy-xl-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-xl-3,
    .gx-xl-3 {
        --bs-gutter-x: 1rem;
    }

    .g-xl-3,
    .gy-xl-3 {
        --bs-gutter-y: 1rem;
    }

    .g-xl-4,
    .gx-xl-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-xl-4,
    .gy-xl-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-xl-5,
    .gx-xl-5 {
        --bs-gutter-x: 3rem;
    }

    .g-xl-5,
    .gy-xl-5 {
        --bs-gutter-y: 3rem;
    }
}
@media (min-width: 1400px) {
    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-xxl-0 {
        margin-left: 0;
    }

    .offset-xxl-1 {
        margin-left: 8.33333333%;
    }

    .offset-xxl-2 {
        margin-left: 16.66666667%;
    }

    .offset-xxl-3 {
        margin-left: 25%;
    }

    .offset-xxl-4 {
        margin-left: 33.33333333%;
    }

    .offset-xxl-5 {
        margin-left: 41.66666667%;
    }

    .offset-xxl-6 {
        margin-left: 50%;
    }

    .offset-xxl-7 {
        margin-left: 58.33333333%;
    }

    .offset-xxl-8 {
        margin-left: 66.66666667%;
    }

    .offset-xxl-9 {
        margin-left: 75%;
    }

    .offset-xxl-10 {
        margin-left: 83.33333333%;
    }

    .offset-xxl-11 {
        margin-left: 91.66666667%;
    }

    .g-xxl-0,
    .gx-xxl-0 {
        --bs-gutter-x: 0;
    }

    .g-xxl-0,
    .gy-xxl-0 {
        --bs-gutter-y: 0;
    }

    .g-xxl-1,
    .gx-xxl-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-xxl-1,
    .gy-xxl-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-xxl-2,
    .gx-xxl-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-xxl-2,
    .gy-xxl-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-xxl-3,
    .gx-xxl-3 {
        --bs-gutter-x: 1rem;
    }

    .g-xxl-3,
    .gy-xxl-3 {
        --bs-gutter-y: 1rem;
    }

    .g-xxl-4,
    .gx-xxl-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-xxl-4,
    .gy-xxl-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-xxl-5,
    .gx-xxl-5 {
        --bs-gutter-x: 3rem;
    }

    .g-xxl-5,
    .gy-xxl-5 {
        --bs-gutter-y: 3rem;
    }
}
.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-grid {
    display: grid !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.d-none {
    display: none !important;
}

.flex-fill {
    flex: 1 1 auto !important;
}

.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    flex-direction: column-reverse !important;
}

.flex-grow-0 {
    flex-grow: 0 !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

.flex-shrink-1 {
    flex-shrink: 1 !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.justify-content-evenly {
    justify-content: space-evenly !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-baseline {
    align-items: baseline !important;
}

.align-items-stretch {
    align-items: stretch !important;
}

.align-content-start {
    align-content: flex-start !important;
}

.align-content-end {
    align-content: flex-end !important;
}

.align-content-center {
    align-content: center !important;
}

.align-content-between {
    align-content: space-between !important;
}

.align-content-around {
    align-content: space-around !important;
}

.align-content-stretch {
    align-content: stretch !important;
}

.align-self-auto {
    align-self: auto !important;
}

.align-self-start {
    align-self: flex-start !important;
}

.align-self-end {
    align-self: flex-end !important;
}

.align-self-center {
    align-self: center !important;
}

.align-self-baseline {
    align-self: baseline !important;
}

.align-self-stretch {
    align-self: stretch !important;
}

.order-first {
    order: -1 !important;
}

.order-0 {
    order: 0 !important;
}

.order-1 {
    order: 1 !important;
}

.order-2 {
    order: 2 !important;
}

.order-3 {
    order: 3 !important;
}

.order-4 {
    order: 4 !important;
}

.order-5 {
    order: 5 !important;
}

.order-last {
    order: 6 !important;
}

.m-0 {
    margin: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.m-auto {
    margin: auto !important;
}

.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
}

.mx-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
}

.mx-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
}

.mx-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
}

.mx-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}

.my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mt-auto {
    margin-top: auto !important;
}

.me-0 {
    margin-right: 0 !important;
}

.me-1 {
    margin-right: 0.25rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.me-4 {
    margin-right: 1.5rem !important;
}

.me-5 {
    margin-right: 3rem !important;
}

.me-auto {
    margin-right: auto !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

.ms-0 {
    margin-left: 0 !important;
}

.ms-1 {
    margin-left: 0.25rem !important;
}

.ms-2 {
    margin-left: 0.5rem !important;
}

.ms-3 {
    margin-left: 1rem !important;
}

.ms-4 {
    margin-left: 1.5rem !important;
}

.ms-5 {
    margin-left: 3rem !important;
}

.ms-auto {
    margin-left: auto !important;
}

.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
}

.px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
}

.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}

.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
}

.px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: 0.25rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pt-3 {
    padding-top: 1rem !important;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.pe-0 {
    padding-right: 0 !important;
}

.pe-1 {
    padding-right: 0.25rem !important;
}

.pe-2 {
    padding-right: 0.5rem !important;
}

.pe-3 {
    padding-right: 1rem !important;
}

.pe-4 {
    padding-right: 1.5rem !important;
}

.pe-5 {
    padding-right: 3rem !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.pb-3 {
    padding-bottom: 1rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

.ps-0 {
    padding-left: 0 !important;
}

.ps-1 {
    padding-left: 0.25rem !important;
}

.ps-2 {
    padding-left: 0.5rem !important;
}

.ps-3 {
    padding-left: 1rem !important;
}

.ps-4 {
    padding-left: 1.5rem !important;
}

.ps-5 {
    padding-left: 3rem !important;
}

@media (min-width: 576px) {
    .d-sm-inline {
        display: inline !important;
    }

    .d-sm-inline-block {
        display: inline-block !important;
    }

    .d-sm-block {
        display: block !important;
    }

    .d-sm-grid {
        display: grid !important;
    }

    .d-sm-table {
        display: table !important;
    }

    .d-sm-table-row {
        display: table-row !important;
    }

    .d-sm-table-cell {
        display: table-cell !important;
    }

    .d-sm-flex {
        display: flex !important;
    }

    .d-sm-inline-flex {
        display: inline-flex !important;
    }

    .d-sm-none {
        display: none !important;
    }

    .flex-sm-fill {
        flex: 1 1 auto !important;
    }

    .flex-sm-row {
        flex-direction: row !important;
    }

    .flex-sm-column {
        flex-direction: column !important;
    }

    .flex-sm-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-sm-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-sm-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-sm-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-sm-shrink-1 {
        flex-shrink: 1 !important;
    }

    .flex-sm-wrap {
        flex-wrap: wrap !important;
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-sm-start {
        justify-content: flex-start !important;
    }

    .justify-content-sm-end {
        justify-content: flex-end !important;
    }

    .justify-content-sm-center {
        justify-content: center !important;
    }

    .justify-content-sm-between {
        justify-content: space-between !important;
    }

    .justify-content-sm-around {
        justify-content: space-around !important;
    }

    .justify-content-sm-evenly {
        justify-content: space-evenly !important;
    }

    .align-items-sm-start {
        align-items: flex-start !important;
    }

    .align-items-sm-end {
        align-items: flex-end !important;
    }

    .align-items-sm-center {
        align-items: center !important;
    }

    .align-items-sm-baseline {
        align-items: baseline !important;
    }

    .align-items-sm-stretch {
        align-items: stretch !important;
    }

    .align-content-sm-start {
        align-content: flex-start !important;
    }

    .align-content-sm-end {
        align-content: flex-end !important;
    }

    .align-content-sm-center {
        align-content: center !important;
    }

    .align-content-sm-between {
        align-content: space-between !important;
    }

    .align-content-sm-around {
        align-content: space-around !important;
    }

    .align-content-sm-stretch {
        align-content: stretch !important;
    }

    .align-self-sm-auto {
        align-self: auto !important;
    }

    .align-self-sm-start {
        align-self: flex-start !important;
    }

    .align-self-sm-end {
        align-self: flex-end !important;
    }

    .align-self-sm-center {
        align-self: center !important;
    }

    .align-self-sm-baseline {
        align-self: baseline !important;
    }

    .align-self-sm-stretch {
        align-self: stretch !important;
    }

    .order-sm-first {
        order: -1 !important;
    }

    .order-sm-0 {
        order: 0 !important;
    }

    .order-sm-1 {
        order: 1 !important;
    }

    .order-sm-2 {
        order: 2 !important;
    }

    .order-sm-3 {
        order: 3 !important;
    }

    .order-sm-4 {
        order: 4 !important;
    }

    .order-sm-5 {
        order: 5 !important;
    }

    .order-sm-last {
        order: 6 !important;
    }

    .m-sm-0 {
        margin: 0 !important;
    }

    .m-sm-1 {
        margin: 0.25rem !important;
    }

    .m-sm-2 {
        margin: 0.5rem !important;
    }

    .m-sm-3 {
        margin: 1rem !important;
    }

    .m-sm-4 {
        margin: 1.5rem !important;
    }

    .m-sm-5 {
        margin: 3rem !important;
    }

    .m-sm-auto {
        margin: auto !important;
    }

    .mx-sm-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-sm-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }

    .mx-sm-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }

    .mx-sm-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mx-sm-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-sm-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-sm-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-sm-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-sm-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-sm-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-sm-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-sm-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-sm-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-sm-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-sm-0 {
        margin-top: 0 !important;
    }

    .mt-sm-1 {
        margin-top: 0.25rem !important;
    }

    .mt-sm-2 {
        margin-top: 0.5rem !important;
    }

    .mt-sm-3 {
        margin-top: 1rem !important;
    }

    .mt-sm-4 {
        margin-top: 1.5rem !important;
    }

    .mt-sm-5 {
        margin-top: 3rem !important;
    }

    .mt-sm-auto {
        margin-top: auto !important;
    }

    .me-sm-0 {
        margin-right: 0 !important;
    }

    .me-sm-1 {
        margin-right: 0.25rem !important;
    }

    .me-sm-2 {
        margin-right: 0.5rem !important;
    }

    .me-sm-3 {
        margin-right: 1rem !important;
    }

    .me-sm-4 {
        margin-right: 1.5rem !important;
    }

    .me-sm-5 {
        margin-right: 3rem !important;
    }

    .me-sm-auto {
        margin-right: auto !important;
    }

    .mb-sm-0 {
        margin-bottom: 0 !important;
    }

    .mb-sm-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-sm-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-sm-3 {
        margin-bottom: 1rem !important;
    }

    .mb-sm-4 {
        margin-bottom: 1.5rem !important;
    }

    .mb-sm-5 {
        margin-bottom: 3rem !important;
    }

    .mb-sm-auto {
        margin-bottom: auto !important;
    }

    .ms-sm-0 {
        margin-left: 0 !important;
    }

    .ms-sm-1 {
        margin-left: 0.25rem !important;
    }

    .ms-sm-2 {
        margin-left: 0.5rem !important;
    }

    .ms-sm-3 {
        margin-left: 1rem !important;
    }

    .ms-sm-4 {
        margin-left: 1.5rem !important;
    }

    .ms-sm-5 {
        margin-left: 3rem !important;
    }

    .ms-sm-auto {
        margin-left: auto !important;
    }

    .p-sm-0 {
        padding: 0 !important;
    }

    .p-sm-1 {
        padding: 0.25rem !important;
    }

    .p-sm-2 {
        padding: 0.5rem !important;
    }

    .p-sm-3 {
        padding: 1rem !important;
    }

    .p-sm-4 {
        padding: 1.5rem !important;
    }

    .p-sm-5 {
        padding: 3rem !important;
    }

    .px-sm-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .px-sm-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }

    .px-sm-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }

    .px-sm-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .px-sm-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    .px-sm-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }

    .py-sm-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .py-sm-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .py-sm-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .py-sm-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .py-sm-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .py-sm-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .pt-sm-0 {
        padding-top: 0 !important;
    }

    .pt-sm-1 {
        padding-top: 0.25rem !important;
    }

    .pt-sm-2 {
        padding-top: 0.5rem !important;
    }

    .pt-sm-3 {
        padding-top: 1rem !important;
    }

    .pt-sm-4 {
        padding-top: 1.5rem !important;
    }

    .pt-sm-5 {
        padding-top: 3rem !important;
    }

    .pe-sm-0 {
        padding-right: 0 !important;
    }

    .pe-sm-1 {
        padding-right: 0.25rem !important;
    }

    .pe-sm-2 {
        padding-right: 0.5rem !important;
    }

    .pe-sm-3 {
        padding-right: 1rem !important;
    }

    .pe-sm-4 {
        padding-right: 1.5rem !important;
    }

    .pe-sm-5 {
        padding-right: 3rem !important;
    }

    .pb-sm-0 {
        padding-bottom: 0 !important;
    }

    .pb-sm-1 {
        padding-bottom: 0.25rem !important;
    }

    .pb-sm-2 {
        padding-bottom: 0.5rem !important;
    }

    .pb-sm-3 {
        padding-bottom: 1rem !important;
    }

    .pb-sm-4 {
        padding-bottom: 1.5rem !important;
    }

    .pb-sm-5 {
        padding-bottom: 3rem !important;
    }

    .ps-sm-0 {
        padding-left: 0 !important;
    }

    .ps-sm-1 {
        padding-left: 0.25rem !important;
    }

    .ps-sm-2 {
        padding-left: 0.5rem !important;
    }

    .ps-sm-3 {
        padding-left: 1rem !important;
    }

    .ps-sm-4 {
        padding-left: 1.5rem !important;
    }

    .ps-sm-5 {
        padding-left: 3rem !important;
    }
}
@media (min-width: 768px) {
    .d-md-inline {
        display: inline !important;
    }

    .d-md-inline-block {
        display: inline-block !important;
    }

    .d-md-block {
        display: block !important;
    }

    .d-md-grid {
        display: grid !important;
    }

    .d-md-table {
        display: table !important;
    }

    .d-md-table-row {
        display: table-row !important;
    }

    .d-md-table-cell {
        display: table-cell !important;
    }

    .d-md-flex {
        display: flex !important;
    }

    .d-md-inline-flex {
        display: inline-flex !important;
    }

    .d-md-none {
        display: none !important;
    }

    .flex-md-fill {
        flex: 1 1 auto !important;
    }

    .flex-md-row {
        flex-direction: row !important;
    }

    .flex-md-column {
        flex-direction: column !important;
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-md-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-md-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-md-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-md-shrink-1 {
        flex-shrink: 1 !important;
    }

    .flex-md-wrap {
        flex-wrap: wrap !important;
    }

    .flex-md-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-md-start {
        justify-content: flex-start !important;
    }

    .justify-content-md-end {
        justify-content: flex-end !important;
    }

    .justify-content-md-center {
        justify-content: center !important;
    }

    .justify-content-md-between {
        justify-content: space-between !important;
    }

    .justify-content-md-around {
        justify-content: space-around !important;
    }

    .justify-content-md-evenly {
        justify-content: space-evenly !important;
    }

    .align-items-md-start {
        align-items: flex-start !important;
    }

    .align-items-md-end {
        align-items: flex-end !important;
    }

    .align-items-md-center {
        align-items: center !important;
    }

    .align-items-md-baseline {
        align-items: baseline !important;
    }

    .align-items-md-stretch {
        align-items: stretch !important;
    }

    .align-content-md-start {
        align-content: flex-start !important;
    }

    .align-content-md-end {
        align-content: flex-end !important;
    }

    .align-content-md-center {
        align-content: center !important;
    }

    .align-content-md-between {
        align-content: space-between !important;
    }

    .align-content-md-around {
        align-content: space-around !important;
    }

    .align-content-md-stretch {
        align-content: stretch !important;
    }

    .align-self-md-auto {
        align-self: auto !important;
    }

    .align-self-md-start {
        align-self: flex-start !important;
    }

    .align-self-md-end {
        align-self: flex-end !important;
    }

    .align-self-md-center {
        align-self: center !important;
    }

    .align-self-md-baseline {
        align-self: baseline !important;
    }

    .align-self-md-stretch {
        align-self: stretch !important;
    }

    .order-md-first {
        order: -1 !important;
    }

    .order-md-0 {
        order: 0 !important;
    }

    .order-md-1 {
        order: 1 !important;
    }

    .order-md-2 {
        order: 2 !important;
    }

    .order-md-3 {
        order: 3 !important;
    }

    .order-md-4 {
        order: 4 !important;
    }

    .order-md-5 {
        order: 5 !important;
    }

    .order-md-last {
        order: 6 !important;
    }

    .m-md-0 {
        margin: 0 !important;
    }

    .m-md-1 {
        margin: 0.25rem !important;
    }

    .m-md-2 {
        margin: 0.5rem !important;
    }

    .m-md-3 {
        margin: 1rem !important;
    }

    .m-md-4 {
        margin: 1.5rem !important;
    }

    .m-md-5 {
        margin: 3rem !important;
    }

    .m-md-auto {
        margin: auto !important;
    }

    .mx-md-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-md-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }

    .mx-md-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }

    .mx-md-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mx-md-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-md-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-md-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-md-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-md-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-md-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-md-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-md-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-md-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-md-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-md-0 {
        margin-top: 0 !important;
    }

    .mt-md-1 {
        margin-top: 0.25rem !important;
    }

    .mt-md-2 {
        margin-top: 0.5rem !important;
    }

    .mt-md-3 {
        margin-top: 1rem !important;
    }

    .mt-md-4 {
        margin-top: 1.5rem !important;
    }

    .mt-md-5 {
        margin-top: 3rem !important;
    }

    .mt-md-auto {
        margin-top: auto !important;
    }

    .me-md-0 {
        margin-right: 0 !important;
    }

    .me-md-1 {
        margin-right: 0.25rem !important;
    }

    .me-md-2 {
        margin-right: 0.5rem !important;
    }

    .me-md-3 {
        margin-right: 1rem !important;
    }

    .me-md-4 {
        margin-right: 1.5rem !important;
    }

    .me-md-5 {
        margin-right: 3rem !important;
    }

    .me-md-auto {
        margin-right: auto !important;
    }

    .mb-md-0 {
        margin-bottom: 0 !important;
    }

    .mb-md-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-md-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-md-3 {
        margin-bottom: 1rem !important;
    }

    .mb-md-4 {
        margin-bottom: 1.5rem !important;
    }

    .mb-md-5 {
        margin-bottom: 3rem !important;
    }

    .mb-md-auto {
        margin-bottom: auto !important;
    }

    .ms-md-0 {
        margin-left: 0 !important;
    }

    .ms-md-1 {
        margin-left: 0.25rem !important;
    }

    .ms-md-2 {
        margin-left: 0.5rem !important;
    }

    .ms-md-3 {
        margin-left: 1rem !important;
    }

    .ms-md-4 {
        margin-left: 1.5rem !important;
    }

    .ms-md-5 {
        margin-left: 3rem !important;
    }

    .ms-md-auto {
        margin-left: auto !important;
    }

    .p-md-0 {
        padding: 0 !important;
    }

    .p-md-1 {
        padding: 0.25rem !important;
    }

    .p-md-2 {
        padding: 0.5rem !important;
    }

    .p-md-3 {
        padding: 1rem !important;
    }

    .p-md-4 {
        padding: 1.5rem !important;
    }

    .p-md-5 {
        padding: 3rem !important;
    }

    .px-md-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .px-md-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }

    .px-md-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }

    .px-md-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .px-md-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    .px-md-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }

    .py-md-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .py-md-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .py-md-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .py-md-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .py-md-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .py-md-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .pt-md-0 {
        padding-top: 0 !important;
    }

    .pt-md-1 {
        padding-top: 0.25rem !important;
    }

    .pt-md-2 {
        padding-top: 0.5rem !important;
    }

    .pt-md-3 {
        padding-top: 1rem !important;
    }

    .pt-md-4 {
        padding-top: 1.5rem !important;
    }

    .pt-md-5 {
        padding-top: 3rem !important;
    }

    .pe-md-0 {
        padding-right: 0 !important;
    }

    .pe-md-1 {
        padding-right: 0.25rem !important;
    }

    .pe-md-2 {
        padding-right: 0.5rem !important;
    }

    .pe-md-3 {
        padding-right: 1rem !important;
    }

    .pe-md-4 {
        padding-right: 1.5rem !important;
    }

    .pe-md-5 {
        padding-right: 3rem !important;
    }

    .pb-md-0 {
        padding-bottom: 0 !important;
    }

    .pb-md-1 {
        padding-bottom: 0.25rem !important;
    }

    .pb-md-2 {
        padding-bottom: 0.5rem !important;
    }

    .pb-md-3 {
        padding-bottom: 1rem !important;
    }

    .pb-md-4 {
        padding-bottom: 1.5rem !important;
    }

    .pb-md-5 {
        padding-bottom: 3rem !important;
    }

    .ps-md-0 {
        padding-left: 0 !important;
    }

    .ps-md-1 {
        padding-left: 0.25rem !important;
    }

    .ps-md-2 {
        padding-left: 0.5rem !important;
    }

    .ps-md-3 {
        padding-left: 1rem !important;
    }

    .ps-md-4 {
        padding-left: 1.5rem !important;
    }

    .ps-md-5 {
        padding-left: 3rem !important;
    }
}
@media (min-width: 992px) {
    .d-lg-inline {
        display: inline !important;
    }

    .d-lg-inline-block {
        display: inline-block !important;
    }

    .d-lg-block {
        display: block !important;
    }

    .d-lg-grid {
        display: grid !important;
    }

    .d-lg-table {
        display: table !important;
    }

    .d-lg-table-row {
        display: table-row !important;
    }

    .d-lg-table-cell {
        display: table-cell !important;
    }

    .d-lg-flex {
        display: flex !important;
    }

    .d-lg-inline-flex {
        display: inline-flex !important;
    }

    .d-lg-none {
        display: none !important;
    }

    .flex-lg-fill {
        flex: 1 1 auto !important;
    }

    .flex-lg-row {
        flex-direction: row !important;
    }

    .flex-lg-column {
        flex-direction: column !important;
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-lg-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-lg-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1 !important;
    }

    .flex-lg-wrap {
        flex-wrap: wrap !important;
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-lg-start {
        justify-content: flex-start !important;
    }

    .justify-content-lg-end {
        justify-content: flex-end !important;
    }

    .justify-content-lg-center {
        justify-content: center !important;
    }

    .justify-content-lg-between {
        justify-content: space-between !important;
    }

    .justify-content-lg-around {
        justify-content: space-around !important;
    }

    .justify-content-lg-evenly {
        justify-content: space-evenly !important;
    }

    .align-items-lg-start {
        align-items: flex-start !important;
    }

    .align-items-lg-end {
        align-items: flex-end !important;
    }

    .align-items-lg-center {
        align-items: center !important;
    }

    .align-items-lg-baseline {
        align-items: baseline !important;
    }

    .align-items-lg-stretch {
        align-items: stretch !important;
    }

    .align-content-lg-start {
        align-content: flex-start !important;
    }

    .align-content-lg-end {
        align-content: flex-end !important;
    }

    .align-content-lg-center {
        align-content: center !important;
    }

    .align-content-lg-between {
        align-content: space-between !important;
    }

    .align-content-lg-around {
        align-content: space-around !important;
    }

    .align-content-lg-stretch {
        align-content: stretch !important;
    }

    .align-self-lg-auto {
        align-self: auto !important;
    }

    .align-self-lg-start {
        align-self: flex-start !important;
    }

    .align-self-lg-end {
        align-self: flex-end !important;
    }

    .align-self-lg-center {
        align-self: center !important;
    }

    .align-self-lg-baseline {
        align-self: baseline !important;
    }

    .align-self-lg-stretch {
        align-self: stretch !important;
    }

    .order-lg-first {
        order: -1 !important;
    }

    .order-lg-0 {
        order: 0 !important;
    }

    .order-lg-1 {
        order: 1 !important;
    }

    .order-lg-2 {
        order: 2 !important;
    }

    .order-lg-3 {
        order: 3 !important;
    }

    .order-lg-4 {
        order: 4 !important;
    }

    .order-lg-5 {
        order: 5 !important;
    }

    .order-lg-last {
        order: 6 !important;
    }

    .m-lg-0 {
        margin: 0 !important;
    }

    .m-lg-1 {
        margin: 0.25rem !important;
    }

    .m-lg-2 {
        margin: 0.5rem !important;
    }

    .m-lg-3 {
        margin: 1rem !important;
    }

    .m-lg-4 {
        margin: 1.5rem !important;
    }

    .m-lg-5 {
        margin: 3rem !important;
    }

    .m-lg-auto {
        margin: auto !important;
    }

    .mx-lg-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-lg-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }

    .mx-lg-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }

    .mx-lg-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mx-lg-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-lg-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-lg-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-lg-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-lg-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-lg-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-lg-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-lg-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-lg-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-lg-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-lg-0 {
        margin-top: 0 !important;
    }

    .mt-lg-1 {
        margin-top: 0.25rem !important;
    }

    .mt-lg-2 {
        margin-top: 0.5rem !important;
    }

    .mt-lg-3 {
        margin-top: 1rem !important;
    }

    .mt-lg-4 {
        margin-top: 1.5rem !important;
    }

    .mt-lg-5 {
        margin-top: 3rem !important;
    }

    .mt-lg-auto {
        margin-top: auto !important;
    }

    .me-lg-0 {
        margin-right: 0 !important;
    }

    .me-lg-1 {
        margin-right: 0.25rem !important;
    }

    .me-lg-2 {
        margin-right: 0.5rem !important;
    }

    .me-lg-3 {
        margin-right: 1rem !important;
    }

    .me-lg-4 {
        margin-right: 1.5rem !important;
    }

    .me-lg-5 {
        margin-right: 3rem !important;
    }

    .me-lg-auto {
        margin-right: auto !important;
    }

    .mb-lg-0 {
        margin-bottom: 0 !important;
    }

    .mb-lg-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-lg-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-lg-3 {
        margin-bottom: 1rem !important;
    }

    .mb-lg-4 {
        margin-bottom: 1.5rem !important;
    }

    .mb-lg-5 {
        margin-bottom: 3rem !important;
    }

    .mb-lg-auto {
        margin-bottom: auto !important;
    }

    .ms-lg-0 {
        margin-left: 0 !important;
    }

    .ms-lg-1 {
        margin-left: 0.25rem !important;
    }

    .ms-lg-2 {
        margin-left: 0.5rem !important;
    }

    .ms-lg-3 {
        margin-left: 1rem !important;
    }

    .ms-lg-4 {
        margin-left: 1.5rem !important;
    }

    .ms-lg-5 {
        margin-left: 3rem !important;
    }

    .ms-lg-auto {
        margin-left: auto !important;
    }

    .p-lg-0 {
        padding: 0 !important;
    }

    .p-lg-1 {
        padding: 0.25rem !important;
    }

    .p-lg-2 {
        padding: 0.5rem !important;
    }

    .p-lg-3 {
        padding: 1rem !important;
    }

    .p-lg-4 {
        padding: 1.5rem !important;
    }

    .p-lg-5 {
        padding: 3rem !important;
    }

    .px-lg-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .px-lg-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }

    .px-lg-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }

    .px-lg-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .px-lg-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    .px-lg-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }

    .py-lg-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .py-lg-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .py-lg-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .py-lg-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .py-lg-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .py-lg-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .pt-lg-0 {
        padding-top: 0 !important;
    }

    .pt-lg-1 {
        padding-top: 0.25rem !important;
    }

    .pt-lg-2 {
        padding-top: 0.5rem !important;
    }

    .pt-lg-3 {
        padding-top: 1rem !important;
    }

    .pt-lg-4 {
        padding-top: 1.5rem !important;
    }

    .pt-lg-5 {
        padding-top: 3rem !important;
    }

    .pe-lg-0 {
        padding-right: 0 !important;
    }

    .pe-lg-1 {
        padding-right: 0.25rem !important;
    }

    .pe-lg-2 {
        padding-right: 0.5rem !important;
    }

    .pe-lg-3 {
        padding-right: 1rem !important;
    }

    .pe-lg-4 {
        padding-right: 1.5rem !important;
    }

    .pe-lg-5 {
        padding-right: 3rem !important;
    }

    .pb-lg-0 {
        padding-bottom: 0 !important;
    }

    .pb-lg-1 {
        padding-bottom: 0.25rem !important;
    }

    .pb-lg-2 {
        padding-bottom: 0.5rem !important;
    }

    .pb-lg-3 {
        padding-bottom: 1rem !important;
    }

    .pb-lg-4 {
        padding-bottom: 1.5rem !important;
    }

    .pb-lg-5 {
        padding-bottom: 3rem !important;
    }

    .ps-lg-0 {
        padding-left: 0 !important;
    }

    .ps-lg-1 {
        padding-left: 0.25rem !important;
    }

    .ps-lg-2 {
        padding-left: 0.5rem !important;
    }

    .ps-lg-3 {
        padding-left: 1rem !important;
    }

    .ps-lg-4 {
        padding-left: 1.5rem !important;
    }

    .ps-lg-5 {
        padding-left: 3rem !important;
    }
}
@media (min-width: 1200px) {
    .d-xl-inline {
        display: inline !important;
    }

    .d-xl-inline-block {
        display: inline-block !important;
    }

    .d-xl-block {
        display: block !important;
    }

    .d-xl-grid {
        display: grid !important;
    }

    .d-xl-table {
        display: table !important;
    }

    .d-xl-table-row {
        display: table-row !important;
    }

    .d-xl-table-cell {
        display: table-cell !important;
    }

    .d-xl-flex {
        display: flex !important;
    }

    .d-xl-inline-flex {
        display: inline-flex !important;
    }

    .d-xl-none {
        display: none !important;
    }

    .flex-xl-fill {
        flex: 1 1 auto !important;
    }

    .flex-xl-row {
        flex-direction: row !important;
    }

    .flex-xl-column {
        flex-direction: column !important;
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-xl-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-xl-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-xl-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-xl-shrink-1 {
        flex-shrink: 1 !important;
    }

    .flex-xl-wrap {
        flex-wrap: wrap !important;
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-xl-start {
        justify-content: flex-start !important;
    }

    .justify-content-xl-end {
        justify-content: flex-end !important;
    }

    .justify-content-xl-center {
        justify-content: center !important;
    }

    .justify-content-xl-between {
        justify-content: space-between !important;
    }

    .justify-content-xl-around {
        justify-content: space-around !important;
    }

    .justify-content-xl-evenly {
        justify-content: space-evenly !important;
    }

    .align-items-xl-start {
        align-items: flex-start !important;
    }

    .align-items-xl-end {
        align-items: flex-end !important;
    }

    .align-items-xl-center {
        align-items: center !important;
    }

    .align-items-xl-baseline {
        align-items: baseline !important;
    }

    .align-items-xl-stretch {
        align-items: stretch !important;
    }

    .align-content-xl-start {
        align-content: flex-start !important;
    }

    .align-content-xl-end {
        align-content: flex-end !important;
    }

    .align-content-xl-center {
        align-content: center !important;
    }

    .align-content-xl-between {
        align-content: space-between !important;
    }

    .align-content-xl-around {
        align-content: space-around !important;
    }

    .align-content-xl-stretch {
        align-content: stretch !important;
    }

    .align-self-xl-auto {
        align-self: auto !important;
    }

    .align-self-xl-start {
        align-self: flex-start !important;
    }

    .align-self-xl-end {
        align-self: flex-end !important;
    }

    .align-self-xl-center {
        align-self: center !important;
    }

    .align-self-xl-baseline {
        align-self: baseline !important;
    }

    .align-self-xl-stretch {
        align-self: stretch !important;
    }

    .order-xl-first {
        order: -1 !important;
    }

    .order-xl-0 {
        order: 0 !important;
    }

    .order-xl-1 {
        order: 1 !important;
    }

    .order-xl-2 {
        order: 2 !important;
    }

    .order-xl-3 {
        order: 3 !important;
    }

    .order-xl-4 {
        order: 4 !important;
    }

    .order-xl-5 {
        order: 5 !important;
    }

    .order-xl-last {
        order: 6 !important;
    }

    .m-xl-0 {
        margin: 0 !important;
    }

    .m-xl-1 {
        margin: 0.25rem !important;
    }

    .m-xl-2 {
        margin: 0.5rem !important;
    }

    .m-xl-3 {
        margin: 1rem !important;
    }

    .m-xl-4 {
        margin: 1.5rem !important;
    }

    .m-xl-5 {
        margin: 3rem !important;
    }

    .m-xl-auto {
        margin: auto !important;
    }

    .mx-xl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-xl-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }

    .mx-xl-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }

    .mx-xl-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mx-xl-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-xl-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-xl-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-xl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-xl-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-xl-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-xl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-xl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-xl-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-xl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-xl-0 {
        margin-top: 0 !important;
    }

    .mt-xl-1 {
        margin-top: 0.25rem !important;
    }

    .mt-xl-2 {
        margin-top: 0.5rem !important;
    }

    .mt-xl-3 {
        margin-top: 1rem !important;
    }

    .mt-xl-4 {
        margin-top: 1.5rem !important;
    }

    .mt-xl-5 {
        margin-top: 3rem !important;
    }

    .mt-xl-auto {
        margin-top: auto !important;
    }

    .me-xl-0 {
        margin-right: 0 !important;
    }

    .me-xl-1 {
        margin-right: 0.25rem !important;
    }

    .me-xl-2 {
        margin-right: 0.5rem !important;
    }

    .me-xl-3 {
        margin-right: 1rem !important;
    }

    .me-xl-4 {
        margin-right: 1.5rem !important;
    }

    .me-xl-5 {
        margin-right: 3rem !important;
    }

    .me-xl-auto {
        margin-right: auto !important;
    }

    .mb-xl-0 {
        margin-bottom: 0 !important;
    }

    .mb-xl-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-xl-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-xl-3 {
        margin-bottom: 1rem !important;
    }

    .mb-xl-4 {
        margin-bottom: 1.5rem !important;
    }

    .mb-xl-5 {
        margin-bottom: 3rem !important;
    }

    .mb-xl-auto {
        margin-bottom: auto !important;
    }

    .ms-xl-0 {
        margin-left: 0 !important;
    }

    .ms-xl-1 {
        margin-left: 0.25rem !important;
    }

    .ms-xl-2 {
        margin-left: 0.5rem !important;
    }

    .ms-xl-3 {
        margin-left: 1rem !important;
    }

    .ms-xl-4 {
        margin-left: 1.5rem !important;
    }

    .ms-xl-5 {
        margin-left: 3rem !important;
    }

    .ms-xl-auto {
        margin-left: auto !important;
    }

    .p-xl-0 {
        padding: 0 !important;
    }

    .p-xl-1 {
        padding: 0.25rem !important;
    }

    .p-xl-2 {
        padding: 0.5rem !important;
    }

    .p-xl-3 {
        padding: 1rem !important;
    }

    .p-xl-4 {
        padding: 1.5rem !important;
    }

    .p-xl-5 {
        padding: 3rem !important;
    }

    .px-xl-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .px-xl-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }

    .px-xl-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }

    .px-xl-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .px-xl-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    .px-xl-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }

    .py-xl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .py-xl-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .py-xl-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .py-xl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .py-xl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .py-xl-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .pt-xl-0 {
        padding-top: 0 !important;
    }

    .pt-xl-1 {
        padding-top: 0.25rem !important;
    }

    .pt-xl-2 {
        padding-top: 0.5rem !important;
    }

    .pt-xl-3 {
        padding-top: 1rem !important;
    }

    .pt-xl-4 {
        padding-top: 1.5rem !important;
    }

    .pt-xl-5 {
        padding-top: 3rem !important;
    }

    .pe-xl-0 {
        padding-right: 0 !important;
    }

    .pe-xl-1 {
        padding-right: 0.25rem !important;
    }

    .pe-xl-2 {
        padding-right: 0.5rem !important;
    }

    .pe-xl-3 {
        padding-right: 1rem !important;
    }

    .pe-xl-4 {
        padding-right: 1.5rem !important;
    }

    .pe-xl-5 {
        padding-right: 3rem !important;
    }

    .pb-xl-0 {
        padding-bottom: 0 !important;
    }

    .pb-xl-1 {
        padding-bottom: 0.25rem !important;
    }

    .pb-xl-2 {
        padding-bottom: 0.5rem !important;
    }

    .pb-xl-3 {
        padding-bottom: 1rem !important;
    }

    .pb-xl-4 {
        padding-bottom: 1.5rem !important;
    }

    .pb-xl-5 {
        padding-bottom: 3rem !important;
    }

    .ps-xl-0 {
        padding-left: 0 !important;
    }

    .ps-xl-1 {
        padding-left: 0.25rem !important;
    }

    .ps-xl-2 {
        padding-left: 0.5rem !important;
    }

    .ps-xl-3 {
        padding-left: 1rem !important;
    }

    .ps-xl-4 {
        padding-left: 1.5rem !important;
    }

    .ps-xl-5 {
        padding-left: 3rem !important;
    }
}
@media (min-width: 1400px) {
    .d-xxl-inline {
        display: inline !important;
    }

    .d-xxl-inline-block {
        display: inline-block !important;
    }

    .d-xxl-block {
        display: block !important;
    }

    .d-xxl-grid {
        display: grid !important;
    }

    .d-xxl-table {
        display: table !important;
    }

    .d-xxl-table-row {
        display: table-row !important;
    }

    .d-xxl-table-cell {
        display: table-cell !important;
    }

    .d-xxl-flex {
        display: flex !important;
    }

    .d-xxl-inline-flex {
        display: inline-flex !important;
    }

    .d-xxl-none {
        display: none !important;
    }

    .flex-xxl-fill {
        flex: 1 1 auto !important;
    }

    .flex-xxl-row {
        flex-direction: row !important;
    }

    .flex-xxl-column {
        flex-direction: column !important;
    }

    .flex-xxl-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-xxl-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-xxl-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-xxl-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-xxl-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-xxl-shrink-1 {
        flex-shrink: 1 !important;
    }

    .flex-xxl-wrap {
        flex-wrap: wrap !important;
    }

    .flex-xxl-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-xxl-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-xxl-start {
        justify-content: flex-start !important;
    }

    .justify-content-xxl-end {
        justify-content: flex-end !important;
    }

    .justify-content-xxl-center {
        justify-content: center !important;
    }

    .justify-content-xxl-between {
        justify-content: space-between !important;
    }

    .justify-content-xxl-around {
        justify-content: space-around !important;
    }

    .justify-content-xxl-evenly {
        justify-content: space-evenly !important;
    }

    .align-items-xxl-start {
        align-items: flex-start !important;
    }

    .align-items-xxl-end {
        align-items: flex-end !important;
    }

    .align-items-xxl-center {
        align-items: center !important;
    }

    .align-items-xxl-baseline {
        align-items: baseline !important;
    }

    .align-items-xxl-stretch {
        align-items: stretch !important;
    }

    .align-content-xxl-start {
        align-content: flex-start !important;
    }

    .align-content-xxl-end {
        align-content: flex-end !important;
    }

    .align-content-xxl-center {
        align-content: center !important;
    }

    .align-content-xxl-between {
        align-content: space-between !important;
    }

    .align-content-xxl-around {
        align-content: space-around !important;
    }

    .align-content-xxl-stretch {
        align-content: stretch !important;
    }

    .align-self-xxl-auto {
        align-self: auto !important;
    }

    .align-self-xxl-start {
        align-self: flex-start !important;
    }

    .align-self-xxl-end {
        align-self: flex-end !important;
    }

    .align-self-xxl-center {
        align-self: center !important;
    }

    .align-self-xxl-baseline {
        align-self: baseline !important;
    }

    .align-self-xxl-stretch {
        align-self: stretch !important;
    }

    .order-xxl-first {
        order: -1 !important;
    }

    .order-xxl-0 {
        order: 0 !important;
    }

    .order-xxl-1 {
        order: 1 !important;
    }

    .order-xxl-2 {
        order: 2 !important;
    }

    .order-xxl-3 {
        order: 3 !important;
    }

    .order-xxl-4 {
        order: 4 !important;
    }

    .order-xxl-5 {
        order: 5 !important;
    }

    .order-xxl-last {
        order: 6 !important;
    }

    .m-xxl-0 {
        margin: 0 !important;
    }

    .m-xxl-1 {
        margin: 0.25rem !important;
    }

    .m-xxl-2 {
        margin: 0.5rem !important;
    }

    .m-xxl-3 {
        margin: 1rem !important;
    }

    .m-xxl-4 {
        margin: 1.5rem !important;
    }

    .m-xxl-5 {
        margin: 3rem !important;
    }

    .m-xxl-auto {
        margin: auto !important;
    }

    .mx-xxl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-xxl-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }

    .mx-xxl-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }

    .mx-xxl-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mx-xxl-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-xxl-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-xxl-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-xxl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-xxl-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-xxl-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-xxl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-xxl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-xxl-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-xxl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-xxl-0 {
        margin-top: 0 !important;
    }

    .mt-xxl-1 {
        margin-top: 0.25rem !important;
    }

    .mt-xxl-2 {
        margin-top: 0.5rem !important;
    }

    .mt-xxl-3 {
        margin-top: 1rem !important;
    }

    .mt-xxl-4 {
        margin-top: 1.5rem !important;
    }

    .mt-xxl-5 {
        margin-top: 3rem !important;
    }

    .mt-xxl-auto {
        margin-top: auto !important;
    }

    .me-xxl-0 {
        margin-right: 0 !important;
    }

    .me-xxl-1 {
        margin-right: 0.25rem !important;
    }

    .me-xxl-2 {
        margin-right: 0.5rem !important;
    }

    .me-xxl-3 {
        margin-right: 1rem !important;
    }

    .me-xxl-4 {
        margin-right: 1.5rem !important;
    }

    .me-xxl-5 {
        margin-right: 3rem !important;
    }

    .me-xxl-auto {
        margin-right: auto !important;
    }

    .mb-xxl-0 {
        margin-bottom: 0 !important;
    }

    .mb-xxl-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-xxl-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-xxl-3 {
        margin-bottom: 1rem !important;
    }

    .mb-xxl-4 {
        margin-bottom: 1.5rem !important;
    }

    .mb-xxl-5 {
        margin-bottom: 3rem !important;
    }

    .mb-xxl-auto {
        margin-bottom: auto !important;
    }

    .ms-xxl-0 {
        margin-left: 0 !important;
    }

    .ms-xxl-1 {
        margin-left: 0.25rem !important;
    }

    .ms-xxl-2 {
        margin-left: 0.5rem !important;
    }

    .ms-xxl-3 {
        margin-left: 1rem !important;
    }

    .ms-xxl-4 {
        margin-left: 1.5rem !important;
    }

    .ms-xxl-5 {
        margin-left: 3rem !important;
    }

    .ms-xxl-auto {
        margin-left: auto !important;
    }

    .p-xxl-0 {
        padding: 0 !important;
    }

    .p-xxl-1 {
        padding: 0.25rem !important;
    }

    .p-xxl-2 {
        padding: 0.5rem !important;
    }

    .p-xxl-3 {
        padding: 1rem !important;
    }

    .p-xxl-4 {
        padding: 1.5rem !important;
    }

    .p-xxl-5 {
        padding: 3rem !important;
    }

    .px-xxl-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .px-xxl-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }

    .px-xxl-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }

    .px-xxl-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .px-xxl-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    .px-xxl-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }

    .py-xxl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .py-xxl-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .py-xxl-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .py-xxl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .py-xxl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .py-xxl-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .pt-xxl-0 {
        padding-top: 0 !important;
    }

    .pt-xxl-1 {
        padding-top: 0.25rem !important;
    }

    .pt-xxl-2 {
        padding-top: 0.5rem !important;
    }

    .pt-xxl-3 {
        padding-top: 1rem !important;
    }

    .pt-xxl-4 {
        padding-top: 1.5rem !important;
    }

    .pt-xxl-5 {
        padding-top: 3rem !important;
    }

    .pe-xxl-0 {
        padding-right: 0 !important;
    }

    .pe-xxl-1 {
        padding-right: 0.25rem !important;
    }

    .pe-xxl-2 {
        padding-right: 0.5rem !important;
    }

    .pe-xxl-3 {
        padding-right: 1rem !important;
    }

    .pe-xxl-4 {
        padding-right: 1.5rem !important;
    }

    .pe-xxl-5 {
        padding-right: 3rem !important;
    }

    .pb-xxl-0 {
        padding-bottom: 0 !important;
    }

    .pb-xxl-1 {
        padding-bottom: 0.25rem !important;
    }

    .pb-xxl-2 {
        padding-bottom: 0.5rem !important;
    }

    .pb-xxl-3 {
        padding-bottom: 1rem !important;
    }

    .pb-xxl-4 {
        padding-bottom: 1.5rem !important;
    }

    .pb-xxl-5 {
        padding-bottom: 3rem !important;
    }

    .ps-xxl-0 {
        padding-left: 0 !important;
    }

    .ps-xxl-1 {
        padding-left: 0.25rem !important;
    }

    .ps-xxl-2 {
        padding-left: 0.5rem !important;
    }

    .ps-xxl-3 {
        padding-left: 1rem !important;
    }

    .ps-xxl-4 {
        padding-left: 1.5rem !important;
    }

    .ps-xxl-5 {
        padding-left: 3rem !important;
    }
}
@media print {
    .d-print-inline {
        display: inline !important;
    }

    .d-print-inline-block {
        display: inline-block !important;
    }

    .d-print-block {
        display: block !important;
    }

    .d-print-grid {
        display: grid !important;
    }

    .d-print-table {
        display: table !important;
    }

    .d-print-table-row {
        display: table-row !important;
    }

    .d-print-table-cell {
        display: table-cell !important;
    }

    .d-print-flex {
        display: flex !important;
    }

    .d-print-inline-flex {
        display: inline-flex !important;
    }

    .d-print-none {
        display: none !important;
    }
}

/*# sourceMappingURL=bootstrap-grid.css.map */

/* BOOTSTRAP SPACING UTILITIES */


.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.w-auto {
    width: auto !important;
}

.mw-100 {
    max-width: 100% !important;
}

.vw-100 {
    width: 100vw !important;
}

.min-vw-100 {
    min-width: 100vw !important;
}

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.h-100 {
    height: 100% !important;
}

.h-auto {
    height: auto !important;
}

.mh-100 {
    max-height: 100% !important;
}

.vh-100 {
    height: 100vh !important;
}

.min-vh-100 {
    min-height: 100vh !important;
}

.text-white {
    color: #fff !important;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.text-center {
    text-align: center !important;
}

/* Float utilities */

.float-start {
    float: left !important;
}

.float-end {
    float: right !important;
}

.float-none {
    float: none !important;
}


@media (min-width: 768px) {
    .float-md-start {
        float: left !important;
    }

    .float-md-end {
        float: right !important;
    }

    .float-md-none {
        float: none !important;
    }
}

/* Float utilities */

.float-start {
    float: left !important;
}

.float-end {
    float: right !important;
}

.float-none {
    float: none !important;
}


@media (min-width: 768px) {
    .float-md-start {
        float: left !important;
    }

    .float-md-end {
        float: right !important;
    }

    .float-md-none {
        float: none !important;
    }
}
/* This style has been superseded by the 'offscreen' class */

span.screenReader{
    position: absolute;
    left: -10em;
    top: -10em;
}


/* Skip to Main Content link on every page */

a.skipToMainContent {
    color:#4c8cd1;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-self: center;
}

a.skipToMainContent:hover {
    color:#4c8cd1;
    background-color: #4c8cd1;
    white-space: nowrap;
    border-top: none;
}
/* visually hidden until focused for keyboard nav */
    a.skipToMainContent {
       position:absolute;
        z-index: -2;
}
    a.skipToMainContent:focus,
    a.skipToMainContent:active {
        position: absolute;
        height: 60px;
        width: 100%;
        z-index: 100;
        align-items: center;
        color: #414141;
        background-color: white;
        border: 5px solid yellowgreen;
        white-space: nowrap;
    }

    header nav > ul > li:focus-within .skipToMainContent {
        outline: 0;
        color: #7ac142;
        background-color: #fff;
        border-top: 3px solid #7ac142;
    }
/* left skip nav for left nav */

@media (max-width: 1029px) {
    a.skipToMainContentLeftNav {
        display: none;
    }
}

@media (min-width: 1029px) {

    a.skipToMainContentLeftNav {
        display: block;
        width: 21.6%;
        color: #fff;
        margin-right: 4.56%;
        margin-top: 5px;
    }

    a.skipToMainContentLeftNav:focus,
    a.skipToMainContentLeftNav:active {
        color: #414141;
        background-color: white;
        outline: 5px solid #7ac142;
    }
}

/* 2020 Accessible Carousel */

/* ------------------ example styles ------------------ */
.relative { position: relative; }
.mod--hidden { overflow: hidden; }

.invisible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.news-carrousel__container {
    white-space: nowrap;
}
.news-carrousel__control__list {
    position: absolute;
    list-style-type: none;
    top: 100%;
    right: 0;
    left: 0;
    margin-top: -0.5em;
    padding-left: 0;
    text-align: center;
}
.news-carrousel__control__list__item {
    display: inline-block;
    margin: 0 .5em;
}
.news-carrousel__control__list__link {
    display: inline-block;
    width: 1em;
    height: 1em;
    background: #fff;
    border: 1px solid #3ba72a;
    border-radius: 1em;
    cursor: pointer;
}

.news-carrousel__button-container {
    position: absolute;
}
.news-carrousel__button__previous {
    top: 50%;
    margin-top: -18px;
    left: 0;
}
.news-carrousel__button__next {
    top: 50%;
    margin-top: -18px;
    right: 0;
}
.news-carrousel__button__button {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}

/* only for minimalist example */
.carrousel__content[aria-hidden=true] {
    display: none;
}
/* ------------------ State rules ------------------ */
.news-carrousel__control__list__link:focus,
.news-carrousel__control__list__link:hover,
.news-carrousel__control__list__link:active,
.news-carrousel__control__list__link[aria-selected=true] {
    background: #7ac142;
}
.news-carrousel__control__list__link:focus,
.news-carrousel__control__list__link:hover,
.news-carrousel__control__list__link:active {
    outline: none;
}

/* ------------------ transition fade ------------------ */
.fade .carrousel__content {
    animation:         fadein 1s;
    white-space: normal;
}
.fade .carrousel__content[aria-hidden=true] {
    animation:         fadeout 1s;
}
.fade .carrousel__content[aria-hidden=true] {
    display: none;
}

@keyframes fadeout {
    0%   { opacity: 1; }
    100% { opacity: 0; }
}
@keyframes fadein {
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

/* ------------------ BBG Customizations ------------------ */

#entry_homepage {
    margin-top: 40px;
}
.news-carrousel {
    border-bottom: 5px solid #7ac142;
}

.js-carrousel__content {
    /*min-height: 43vh;*/
    height: 400px;
}

.js-carrousel__imagecontainer {
    width: 100%;
    height: 400px;
}

.js-carrousel__content img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
    -o-object-position: top;
       object-position: top;
}

.js-carrousel__container > :not(:first-child) {
    visibility: hidden;
}
.js-carrousel__container.mod--hidden.news-carrousel__container.fade > :not(:first-child){
    visibility: visible;
}

.news-carrousel__control__list:focus-within {
    background-color: #4c8cd1;

}

.js-carrousel__control__list {
    padding-top: 6px;
    width: 100%;
    margin-top: 5px;
}

.slider-content {
    position: absolute;
    text-align: right;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.slider-content h2 {
    font-size: 42px;
    font-weight: normal;
    font-family: ff-kievit-slab-web, serif;
    color:white;
    background-color: transparent;
    text-transform: initial;
    letter-spacing: initial;
    margin-bottom: 15px;
}
.slider-content a {
    font-size: 15px;
    letter-spacing: 2px;
    padding: 8px 40px;
    margin-top: 10px;
    background-color: #fb8120;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block; }

.slider-content a:hover {
    text-decoration: none;
    background-color: #ec781d; }

/* carousel desktop styles */

@media (min-width: 600px) {

    /* Hide control list on desktop */

    .js-carrousel__control__list {
        display: none;
    }

    .js-carrousel__content {
        /*min-height: 43vh;*/
        height: 550px;
    }

    .js-carrousel__imagecontainer {

        height: 550px;
    }

    .slider-content {

        top: 25%;
        right: 13%;
        padding: 50px;
    }

}

/* carousel mobile styles */

@media (max-width: 600px) {
    .slider-content a {
        padding: 10px;
        font-size: 12px;
    }

    .slider-content h2 {
        font-size: 26px;
        line-height: 32px;
        text-align: left;
        margin: 0;
    }

    .slider-content {
        text-align: left;
        width: 100%;
        bottom: 0;
        max-height: 250px;
        padding: 20px 48px;
    }

    .news-carrousel__button__previous {
        display: none;
    }

    .news-carrousel__button__next {
        display: none;
    }
}

/* ultra small device styles */

@media (max-width: 320px) {
    .js-carrousel__imagecontainer {
        height: 280px;
    }
}



[data-contrast-mode="high"] #bottom-footer {
    background-color: #f6f6f6;
    color: #000;
}

[data-contrast-mode="high"] #bottom-footer a {
    color: #000;
}

[data-contrast-mode="high"] footer {
    background-color: #fff;
    color: #000;
}

[data-contrast-mode="high"] footer a {
    color: #000;
}
[data-contrast-mode="high"] .learnmore,
[data-contrast-mode="high"] h2,
[data-contrast-mode="high"] h3,
[data-contrast-mode="high"] h4,
[data-contrast-mode="high"] footer section h3,
[data-contrast-mode="high"] a
{
    color: #000;
}

[data-contrast-mode="high"] .green-button,
[data-contrast-mode="high"] .blue-button,
[data-contrast-mode="high"] .secondary-button,
[data-contrast-mode="high"] .submit-comment-form button,
[data-contrast-mode="high"] .slider-content a,
[data-contrast-mode="high"] section.related-materials .stay-up-to-date-related form button,
[data-contrast-mode="high"] #livingcollectionssearch button
{
    color: #000;
    background-color: #fff;
    border: 2px solid #000;
}

[data-contrast-mode="high"] header nav
{
    color: #000;
    background-color: #fff;
}

[data-contrast-mode="high"] .nav_container {
    background-color: white;
}

[data-contrast-mode="high"]  .emergency-header-message
{
    background-color: #f6f6f6;
}

[data-contrast-mode="high"]  .emergency-header-message a,
[data-contrast-mode="high"]  .emergency-header-message p
{
    color: #000;
}

[data-contrast-mode="high"] .hero-image .hero-text {

    background-color: #000;
    color: #fff;
}
[data-contrast-mode="high"] .slider-content div
{
    color: #fff;
    background-color: #000;
}

[data-contrast-mode="high"] .slider-content h2
{
    color: #fff;
}

[data-contrast-mode="high"] .hero-image a
{
    color: #fff;
}
/* navigation bar */

[data-contrast-mode="high"]  a.screenReader:hover,
[data-contrast-mode="high"]  a.screenReader
{
    color: #fff;
    background-color: #fff;
}

[data-contrast-mode="high"] header nav>ul>li>a:focus
{
    background-color: #000;
    color: #fff;
}

[data-contrast-mode="high"] header nav>ul>li>a
{
    color: #000;
}

/* pib page */

[data-contrast-mode="high"] .pibfilter-column .selected {
    background-color: #000;
}

/* text should never actually be in uppercase */

.text-uppercase {
    text-transform: uppercase;
}

/**
 * Accordion container element
 */
.accordion {
    list-style: none;
    margin: 0;
    padding: 0;
}

.accordion > li {
    margin: 0;
}


/**
 * Add zero-width space. needed to ensure Safari + VO respect list semantics.
 * Set the before content to position absolute to negate any visible space
 * the before content could add to the document.
 */
.accordion > li:before {
    content: "\200B";
    position: absolute;
}

/**
 * Accordion Heading
 */
.accordion__heading {
    font-size: inherit;
    font-weight: bold;
    margin: -1px 0 10px;
    font-family: 'ff-kievit-web', sans-serif;

}

.accordion__trigger {
    -webkit-appearance: none;
    background-color: #fff;
    border-radius: 0;
    box-shadow: none;
    color: #000;
    cursor: pointer;
    display: block;
    font-size: inherit;
    margin: 0;
    padding: 5px 5px 5px 40px;
    border: 5px solid #ddd;
    position: relative;
    text-align: left;
    width: 100%;
    z-index: 2;
}

.accordion__trigger:before {
    border-left: .4em solid transparent;
    border-right: .4em solid transparent;
    border-top: .5em solid #000;
    bottom: 0;
    content: '';
    height: 0;
    margin: auto;
    position: absolute;
    left: 10px;
    top: 0;
    transition: transform .2s ease-in-out;
    transform-origin: center center;
    transform: rotate(0deg);
    width: 0;
}

.accordion__trigger:hover:after,
.accordion__trigger:focus:after,
.accordion__trigger[aria-expanded="true"]:before {
    border-top-color: #000;
}

.accordion__trigger[aria-expanded="true"]:before {
    transform: rotate(180deg);
}

/**
 * This is needed to allow a double tap iOS 11
 * Safari + VO to function correctly, if there
 * are multiple elements (wrapper spans) to layout
 * text nodes within the accordion button.
	-- This is not needed if a button only contains text
	   and no other child nodes wrapping the text --
.accordion__trigger > * {
	pointer-events: none;
}
 */

.accordion__trigger:hover {
    border: 5px solid #7ac142;
}

.accordion__trigger:focus {
    color: #000;
    outline: none;
    border: 5px solid #ddd;
}

.accordion__trigger:focus {
    border: 5px solid #7ac142;
}

.accordion__trigger[aria-disabled="true"]:hover {
    background-color: #1b75bc;
    color: #fff;
    cursor: not-allowed;
}

.accordion__trigger[aria-disabled="true"]:focus {
    background-color: #0a2a42;
}

.accordion__panel {
    background-color: inherit;
    max-height: 0;
    overflow: hidden;
    padding: 0.001em 1.25em;
    position: relative;
    visibility: hidden;
    z-index: 1;
}

.accordion__panel--transition {
    transition:
            max-height .2s ease-in-out,
            padding-top .2s ease-in-out,
            padding-bottom .2s ease-in-out;
}

.accordion__panel > :last-child {
    margin-bottom: 0;
}

.accordion__panel[aria-hidden="false"] {
    max-height: 2500vh;
    overflow: auto;
    padding: 1.25em;
    visibility: visible;
}

.accordion__trigger[aria-expanded="true"] {
    border: 5px solid #ddd;
}

.accordion__trigger[aria-expanded="true"]:focus {
    border: 5px solid #7ac142;
}

/* end accordion styles */

/*------------------------------------*\
  #BOX-SIZING
\*------------------------------------*/

*,
*:before,
*:after {
    box-sizing: border-box;
}

div, span, section, article, p, a, input, h1, h2, h3, h4, h5, h6, aside, textarea {
    box-sizing: border-box; }


/*------------------------------------*\
  #BODY
\*------------------------------------*/

body {
    font-size: 17px;
    margin: 0;
    font-family: 'ff-kievit-web', sans-serif;
    -webkit-font-smoothing: antialiased; }

/* Switch out ampersand for Kievit */
body {
    font-feature-settings: "ss03"; }

hr {
    margin: 40px 0;
    background-color: #7ac142;
    height: 5px;
    width: 100%;
    border: 0; }

section article {
    margin-bottom: 40px;
    }


/*------------------------------------*\
  #FONTS
\*------------------------------------*/


/* Book version, not bold or italic */
@font-face {
    font-family: 'ff-kievit-web';
    src: url(/assets/fonts/KievitWeb-Book.woff2?bb31a9ba5f59ef5298dc3f629f871bfa) format('woff2'),
    url(/assets/fonts/KievitWeb-Book.woff?354e136c6730e532523128423a7c9a53) format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Book italic */

@font-face {
    font-family: 'ff-kievit-web';
    src: url(/assets/fonts/KievitWeb-BookIta.woff2?ee79256281132bfa884c13444a274729) format('woff2'),
    url(/assets/fonts/KievitWeb-BookIta.woff?d813b356ec03af19587429971825dd91) format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

/* Book bold */

@font-face {
    font-family: 'ff-kievit-web';
    src: url(/assets/fonts/KievitWeb-Bold.woff2?9d54d85c7acb2d112405f2e15c5bc01d) format('woff2'),
    url(/assets/fonts/KievitWeb-Bold.woff?81e8c8b8d1dae3490e18385019cf655f) format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Book bold AND italic */

@font-face {
    font-family: 'ff-kievit-web';
    src: url(/assets/fonts/KievitWeb-BoldIta.woff2?6cdd7a63bca379c0b93e24570fd4a68c) format('woff2'),
    url(/assets/fonts/KievitWeb-BoldIta.woff?e2855ecfb09931b9592124842abf7e0e) format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

/* Slab regular */

@font-face {
    font-family: 'ff-kievit-slab-web';
    src: url(/assets/fonts/KievitSlabWeb.woff2?ea4f7003b6f9a3a7666844aa6f249398) format('woff2'),
    url(/assets/fonts/KievitSlabWeb.woff?a7deaad03ec43055f232ef30017c1e9a) format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Slab italic */

@font-face {
    font-family: 'ff-kievit-slab-web';
    src: url(/assets/fonts/KievitSlabWeb-Italic.woff2?9941c720e4fae821e159fbbc8407f32b) format('woff2'),
    url(/assets/fonts/KievitSlabWeb-Italic.woff?7dbb96d8eab3d9e04a96bffaeb0cf4bb) format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}



/*------------------------------------*\
  #HEADINGS
\*------------------------------------*/

h1, h2, h3, h4, h5 {
    margin: 0; }

h1 {
    font-family: 'ff-kievit-slab-web', serif;
    font-size: 42px;
    line-height: 52px;
    font-weight: normal; }

/* these visual styles allow us to maintain
   correct header nesting for accessibility while
   still having visually pleasing styles.
 */

h2.visual-h1,  h3.visual-h1, h4.visual-h1 {
    font-family: 'ff-kievit-slab-web', serif;
    font-size: 42px;
    line-height: 52px;
    font-weight: normal; }

h2 {
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px; }

/* need this to unset some h1 styles on visual-h3 on garden stories page */
h2.visual-h3{
    text-transform: unset;
    letter-spacing: unset;
}

.with-left-nav h2.visual-h3, .with-left-nav h2.visual-h4 {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
    margin-bottom: 0;
    text-transform: initial;
    letter-spacing: normal;
}

h1.visual-h2,  h3.visual-h2, h4.visual-h2 {
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

h3 {
    font-family: 'ff-kievit-slab-web', serif;
    font-weight: normal;
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 6px; }

h1.visual-h3,  h2.visual-h3, h4.visual-h3 {
    font-family: 'ff-kievit-slab-web', serif;
    font-weight: normal;
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 6px; }

h4 {
    margin-bottom: 6px; }

h1.visual-h4,  h2.visual-h4, h3.visual-h4 {
    font-family: 'ff-kievit-web', sans-serif;
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 6px;
}

.article-container .visual-h3 a {
    color: #000;
    padding-bottom: .7em;
    font-weight: 400;
}

.article-container .visual-h3 {
    padding-bottom: .7em;
}





/*------------------------------------*\
  #PARAGRAPHS
\*------------------------------------*/

p {
    margin: 0 0 15px 0;
    font-size: 17px;
    line-height: 27px;
}





/*------------------------------------*\
  #TEXTFORMATTING
\*------------------------------------*/

.small {
    font-size: 13px;
}

.footnote {
    font-family: 'ff-kievit-slab-web', serif;
    font-size: 14px;
    margin-top: 10px;
}

.callout-block {
    background: rgba(76, 140, 209, 0.2);
    padding: 15px;
    margin-bottom: 15px;
}

/*RX edit to create green callout-block*/
.callout-block-green {
    background-color: #F4FAF0;
    padding: 15px;
}

.callout-block-brown {
    background-color: #4d4d4d;
    padding: 15px;
    color: #fff;
}

/* Selection (highlighted) styles */
::-moz-selection {
    color: white;
    background: #4c8cd1;
}

::selection {
    color: white;
    background: #4c8cd1;
}




/*------------------------------------*\
  #LISTS
  #BULLETS
\*------------------------------------*/

ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 27px; }

.bbg_list li {
    margin: 4px 0; }

.bbg_list ul li {
    margin: 4px 0 4px 30px; }


ol.bbg_list, ul.bbg_list {
    padding-left: 30px;
    margin: 0 0 15px 0;}

ol.bbg_list li {
    list-style-type: decimal; }

ul.bbg_list li {
    list-style-type: disc; }

/*RX edit to make all OLs conform to new style*/
ol {
    padding-left: 30px;
    margin: 0 0 15px 0;
}

ol li {
    list-style-type: decimal; }

.bbg_list.no_bullet li {
    list-style-type: none;
}

/*------------------------------------*\
  #ELEMENTS
\*------------------------------------*/

.pagination li {
    cursor: pointer;
    display: inline-block;
    border: 1px solid #eee;
    background-color: #eee;
    text-align: center;
    margin: 0 2px; }
.pagination li:hover {
    background-color: #ddd; }
.pagination li:hover a {
    text-decoration: none; }
.pagination li a {
    color: black;
    font-weight: normal;
    padding: 8px 15px;
    display: block;
    width: 100%;
    height: 100%; }
.pagination li.selected {
    background-color: white; }

.other-ampersand {
    font-feature-settings: "c2sc", "smcp"; }





/*------------------------------------*\
  #TABLES
\*------------------------------------*/
.bbg_table thead {
    font-weight: bold;
    background-color: #f6f6f6; }
.bbg_table td {
    padding: 10px;
    border: 1px solid #eee; }

/* Responsive table, non-responsive part. Responsive part around line 2548 */
/*
Generic Styling, for Desktops/Laptops
*/
table.responsive {
    width: 100%;
    border-collapse: collapse;
    font-size: 17px;
}
/* Zebra striping */
table.responsive tr:nth-of-type(odd) {
    background: #eee;
}
table.responsive th {
    background: #ffffff;
    color: black;
    font-weight: bold;
}
table.responsive th, table.responsive td {
    padding: 6px;
    border: 1px solid #ccc;
    text-align: left;
}

/* this is a generic style for tables that can be collapsed on mobile */

.narrow {
    width: 100%;
    border-collapse: collapse;
    font-size: 17px;
}
/* Zebra striping */
.narrow tr:nth-of-type(odd) {
    background: #eee;
}
.narrow th {
    background: #ffffff;
    color: black;
    font-weight: bold;
}
.narrow th, .narrow td {
    padding: 6px;
    border: 1px solid #ccc;
    text-align: left;
}





/*------------------------------------*\
  #LINKS
\*------------------------------------*/

a {
    color: #7ac142;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}



h3 a {
    color: black;
    font-weight: normal;
}

h3 a:hover {
    color: #7ac142;
    text-decoration: none;
}

.with-left-nav h3 a:hover {
    color: #7ac142;
    text-decoration: none; }





/*------------------------------------*\
  #LINKS ON ARTICLES PAGES
\*------------------------------------*/

.articles a {
    color: black; /* change from green to black on articles pages */
    cursor: pointer;
    font-weight: normal;

}

.articles a:hover {
    text-decoration: underline;
    text-decoration-color: #7ac142;
}

.regular-link-style a {
    color: #7ac142;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
}

.regular-link-style a:hover {
    text-decoration: underline;
}









/*------------------------------------*\
  #SPACING UTILITIES
\*------------------------------------*/

.img-responsive {
    max-width: 100%;
}

.short-margin-bottom {
    margin-bottom: 0.7em;
}

.medium-margin-bottom {
    margin-bottom: 1.4em;
}

.long-margin-bottom {
    margin-bottom: 2.0em;
}

.short-margin-top {
    margin-top: 0.7em;
}

.medium-margin-top {
    margin-top: 1.4em;
}

.long-margin-top {
    margin-top: 2.0em;
}

/* indent on line wrap, no p margin - added by Eliz */
.wrap-indent {
    margin: 0 0 0 0;
    padding-left: 1em;
    text-indent: -1em;
}

/*------------------------------------*\
  #FOOTER
\*------------------------------------*/

footer {
    font-size: 15px;
    overflow: hidden;
    margin-top: 70px;
    border-top: 5px solid #7ac142;
    padding-top: 45px;
    clear: both;
    /*background-color: #666666;*/
    background-color: #4D4D4D; /*darker grey for higher contrast and accessibility*/
    color: white;
}

footer a {
    font-weight: normal;
}

footer section {
    float: left;
    width: 20.5%;
    margin-right: 6%;
}

footer section a {
    color: white;
    text-decoration: underline;
    font-weight: normal;
}

footer section h3 {
    font-family: 'ff-kievit-web', sans-serif;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 22px;
    color: #7ac142;
}

footer section p {
    font-size: 15px;
    line-height: 22px;
}

footer a.green-button {
    margin-top: 10px;
}

footer #bottom-footer {
    margin-top: 35px;
    padding: 20px 0;
    background-color: #4c8cd1;
    color: white;
}

footer #bottom-footer a {
    color: white;
    font-weight: normal;
    border-right: 1px solid white;
    padding-right: 20px;
    margin-right: 20px;
}

.footer-link-list li {
    margin-bottom: 8px;
}

/*------------------------------------*\
  #Text formatting like small-caps
\*------------------------------------*/

.small-caps {
    font-variant: small-caps;
}

/*------------------------------------*\
  #PULLQUOTE
\*------------------------------------*/

.article-body p.pullquote, .nonquote {
    font-weight: 100;
    font-size: 2rem;
    line-height: 1.4;
    position: relative;
    margin: 1rem 1rem;
}
/* silly hack using linear gradient because we can't reuse :before and :after */
.article-body p.pullquote {
    background-image: linear-gradient(to left, #7ac142 100%,#7ac142 100%),
    linear-gradient(to left, #7ac142 100%,#7ac142 100%);
    background-size: 50% 1px;
    background-position: 50% 0%, 50% 100%;
    background-repeat: no-repeat;
    padding: 30px 0;
    margin: 40px 0;
}

p.pullquote:before,
p.pullquote:after {
    font-size: 2rem;
    width: 4rem;
    height: 4rem;
}

p.pullquote:before {
    content: '“';
    left: -5rem;
    top: -1rem;
    margin-left: -.4em;
}

p.pullquote:after {
    content: '”';
    right: -5rem;
    bottom: 1rem;
}


/*------------------------------------*\
  #ARTICLE PAGE SPECIFIC CSS
\*------------------------------------*/


.article-page .article-topics span {
    font-size: 14px;
}

.back-to-stories {
    white-space: nowrap;
}

.garden-stories-img {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
}




.special-series-card {
    position: relative;
    border: 5px solid transparent;
}

.special-series-card img {
    border-radius: 10px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(128, 128, 128, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    opacity: 1;
    transition: opacity 0.3s;
    border-radius: 15px;
}

.card-title{
    font-weight: bolder;
    font-size: 2rem;
    font-family: 'ff-kievit-web', sans-serif;
}


.special-series-card:hover {
    border: 5px solid #7ac142;
    border-radius: 15px;
}

.special-series-card:hover .card-title {
    text-decoration: underline;
}



.garden-stories-featured-article-headline {
    font-size: 2.1em;
    line-height: 1.1;
}

.garden-stories-featured-article-description {
    font-size: 1.2em;
}






/*------------------------------------*\
  #BANNER
\*------------------------------------*/

.collection-banner {
    color: black;
    text-decoration: none;
    font-weight: normal;
    transition: color 0.2s ease, -webkit-text-decoration 0.2s ease;
    transition: color 0.2s ease, text-decoration 0.2s ease;
    transition: color 0.2s ease, text-decoration 0.2s ease, -webkit-text-decoration 0.2s ease;
}

.collection-banner:hover {
    color: #7ac142;
    text-decoration: underline;
}


@media screen and (max-width:650px) {
    .article-headline{
        font-size: 2em;
    }
}

/* Stop ad tracking pixel images from causing blank space under the footer */

body > img {
    position: absolute;
    height: 0;
}
/* BLACKBAUD RENXT EMBEDDED DONATION FORMS */

#bboxdonation_BBEmbeddedForm,
#bboxmembership_BBEmbeddedForm,
#bboxevent_BBEmbeddedForm
{
    padding: 0;
}

#bboxdonation_btnSubmit,
#bboxdonation_btnSecurePayment,
#bboxmembership_btnSubmit,
#bboxevent_btnSubmit {
    border-radius: 0;
    background-color: #7ac142;
    box-shadow: none;
    font-size: 18px;
    text-transform: uppercase;
}

/* credit card / debit toggle styling */

#bboxdonation_payment_lblChoiceCredit,
#bboxdonation_payment_lblChoiceDirectDebit,
#bboxmembership_payment_lblChoiceCredit,
#bboxmembership_payment_lblChoiceDirectDebit {
    border-radius: 0;
    padding: 5px 15px;
}

#bboxdonation_payment_divPaymentChoiceDirectDebit .BBFormRadioPaymentSelected,
#bboxdonation_payment_lblChoiceCredit.BBFormRadioPaymentSelected,
#bboxmembership_payment_lblChoiceDirectDebit.BBFormRadioPaymentSelected,
#bboxmembership_payment_lblChoiceCredit.BBFormRadioPaymentSelected
{
    background: #4c8cd1;
    padding: 5px 15px;
    border: 1px solid #4c8cd1;
    border-radius: 0;
}

#bboxdonation_payment_lblChoiceCredit.BBFormRadioPaymentNotSelected,
#bboxdonation_payment_divPaymentChoiceDirectDebit .BBFormRadioPaymentNotSelected,
#bboxmembership_payment_BBFormPaymentChoiceCredit.BBFormRadioPaymentNotSelected,
#bboxmembership_payment_divPaymentChoiceDirectDebit .BBFormRadioPaymentNotSelected {
    background: #fff;
    padding: 5px 15px;
    border: 1px solid #ccc;
    color: #666;
}

/* make headings look like our headings */
#bboxdonation_BBEmbeddedForm .BBFormSectionHeading,
#bboxmembership_BBEmbeddedForm .BBFormSectionHeading,
#bboxevent_BBEmbeddedForm .BBFormSectionHeading
{
    padding: 10px 10px 10px 0;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
    border-top: 5px solid #7ac142;
    border-bottom: 0;
}
/* special styles for header of event form */
#bboxevent_BBEmbeddedForm #bboxevent_lblEventName {
    display:block;
    padding-top: 40px;
    margin-top: 70px;
}

/* hide designation section */
#bboxdonation_designation_divSection {
    display: none;
}

/* make giving levels bbg blue */
#bboxdonation_gift_rdlstGivingLevels .BBFormRadioLabelGivingLevelSelected {
    background-color: #4c8cd1;
}

#bboxdonation_gift_rdlstGivingLevels .BBFormRadioLabelGivingLevel {
    border-radius: 0;
    border: 1px solid #4c8cd1;;
}

/* make form errors pretty */

#divClientError.BBFormErrorBlock {
    background-color: #f4faf0;
    border-radius: 0;
    border: 0;
}

/* hide recurrence / tribute headings */

.BBFormSectionRecurrenceInfo .BBFormSectionHeading {
    display: none;
}

.BBDFormSectionTributeInfo .BBFormSectionHeading {
    display: none;
}

/* hide event date/time and built-in title on event form */
#bboxevent_BBEmbeddedForm .BBFormEventDate,
#bboxevent_BBEmbeddedForm .BBFormEventTime,
#bboxevent_BBEmbeddedForm #bboxevent_lblEventName {
    display: none;
}

/* For Blackbaud membership donation form only! */

#bboxmembership_divForm .BBMembershipOptionWrapper {
    border-radius: 0;
    background: none;
}

#bboxmembership_divForm  .BBWrapMembershipTitle {
    font-size: 20px;
}

/* high contrast form styling */
[data-contrast-mode="high"] #bboxdonation_btnSubmit,
[data-contrast-mode="high"] #bboxdonation_btnSecurePayment,
[data-contrast-mode="high"] #bboxmembership_btnSubmit,
[data-contrast-mode="high"]  #bboxmembership_divForm  .BBLinkJoinMembershipButton {
    background-color: #fff;
    color: #000;
    border: 2px solid #000;
}

/* credit card / direct debit buttons, selected */
[data-contrast-mode="high"]  #bboxmembership_payment_lblChoiceCredit.BBFormRadioPaymentSelected,
[data-contrast-mode="high"]  #bboxmembership_payment_lblChoiceDirectDebit.BBFormRadioPaymentSelected,
[data-contrast-mode="high"]  #bboxdonation_payment_lblChoiceCredit.BBFormRadioPaymentSelected,
[data-contrast-mode="high"]  #bboxdonation_payment_lblChoiceDirectDebit.BBFormRadioPaymentSelected {
    background-color: #000;
    color: #fff;
    border-color: #000;
}
/* credit card / direct debit buttons, not selected */
[data-contrast-mode="high"]  #bboxdonation_payment_lblChoiceCredit.BBFormRadioPaymentNotSelected,
[data-contrast-mode="high"]  #bboxdonation_payment_lblChoiceDirectDebit.BBFormRadioPaymentNotSelected {
    background-color: #fff;
    border-color: #000;
}


#bboxmembership_divForm  .BBLinkJoinMembershipButton {
    border-radius: 0;
    background-image: none;
    background-color: #7ac142;
    box-shadow: none;
    font-size: 14px;
    text-transform: uppercase;
    color: white;
    font-weight: 700;
}

#bboxmembership_divForm  .BBLinkGiveMembershipButton {
    color: black;
}

#bboxmembership_payment_divProcessedByBlackbaud,
#bboxdonation_payment_divProcessedByBlackbaud,
#bboxevent_payment_divProcessedByBlackbaud
{
    display: none;
}

.BBCCreditType {
    display: none;
}

#bboxmembership_lnkChangeMembership {
    color: #111111;
    text-decoration: underline;
    text-decoration-color: #7ac142;
}


#reCAPTCHADisclosure p{
    font-size: 12px;
    padding-top: 20px;
}

/* style loading screen a bit */

@keyframes shine {
    to {
        background-position-x: -200%;
    }
}

#bbox-msg-wrapper {
    background: #eee;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
    height: 600px;
    max-width: 700px;
    text-align: center;
}

#bbox-msg-wrapper img {
    margin-top:40px;
}

/* President's Circle unlock form */

#circle-locked { display: none }

/* Overrides on Hepdata matching gift form on /support/join and /support/donate  */

#skipnavigation #edl-template p {
    font-family: ff-kievit-web,sans-serif;
}

#skipnavigation #edl-template .edl-search-header {
    background-color: #fff;
    color: #000;
    text-transform: uppercase;
}
#skipnavigation #edl-template .edl-search-header p {
    font-size: 20px !important;
    letter-spacing: 2px !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
}
#skipnavigation #edl-template .edl-search-body {
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
}

#skipnavigation #edlsearch .edl-search-outer {
    box-shadow: initial !important;

}

#skipnavigation #edlsearch h2 {
    border-top: none;
}

#skipnavigation #edlsearch .volunteer-program {
    display: none !important;
}

#skipnavigation #edlsearch .edl-search-inner button {
    font-family: ff-kievit-web,sans-serif !important;
}

#skipnavigation #edlsearch {
    max-width: 100%;
}

/* President's Circle Page */

#entry_presidentscircle #bboxdonation_gift_rdlstGivingLevels .BBFormRadioLabelGivingLevelSelected .BBFormRadioDescription {
    font-weight: bold;
    color: #fff;
}

#entry_presidentscircle #bboxdonation_gift_rdlstGivingLevels .BBFormRadioDescription {
    font-weight: bold;
    color: #3c3c3c;
    font-size: 19px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#entry_presidentscircle #bboxdonation_gift_rdlstGivingLevels label {
    min-width: 120px;
}

#entry_presidentscircle #bboxdonation_gift_rdlstGivingLevels .BBFormRadioAmount {
    font-size: 18px;
    font-weight: bold;
}

/**************************\
  Basic Modal Styles
\**************************/

.modal {
    font-family: -apple-system,BlinkMacSystemFont,avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif;
}

.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 50; /* override */
}

.modal__container {
    background-color: #fff;
    padding: 30px;
    max-width: 500px;
    max-height: 100vh;
    border-radius: 4px;
    overflow-y: auto;
    box-sizing: border-box;
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal__title {
    margin-top: 0;
    margin-bottom: 0;
    font-family: ff-kievit-web, sans-serif;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 2px;
    font-size: 18px;
    text-transform: uppercase;
    box-sizing: border-box;
}

.modal__close {
    background: transparent;
    border: 0;
}

.modal__header .modal__close:before { content: "\2715"; }

.modal__content {
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: rgba(0,0,0,.8);
}

.modal__btn {
    font-size: .875rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    background-color: #e6e6e6;
    color: rgba(0,0,0,.8);
    border-radius: 0;
    border-style: none;
    border-width: 0;
    cursor: pointer;
    -webkit-appearance: button;
    text-transform: none;
    overflow: visible;
    line-height: 1.15;
    margin: 0;
    will-change: transform;
    -moz-osx-font-smoothing: grayscale;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: transform .25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
    transform: scale(1.05);
}

.modal__btn-primary {
    background-color: #4c8cd1;
    color: #fff;
    margin-right: 8px;
}


/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes mmfadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes mmslideIn {
    from { transform: translateY(15%); }
    to { transform: translateY(0); }
}

@keyframes mmslideOut {
    from { transform: translateY(0); }
    to { transform: translateY(-10%); }
}

.micromodal-slide {
    display: none;
}

.micromodal-slide.is-open {
    display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
    animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
    animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
    animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
    animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
    will-change: transform;
}
/*------------------------------------*\
  #PLANTS IN BLOOM CALENDAR
\*------------------------------------*/
#bloom-calendar {
    text-align: center;
    float: right;
    border: 2px solid #e5e5e5;
    padding: 15px 15px;
    margin-left: 20px;
    margin-bottom: 20px;
}

#bloom-calendar a {
    display: block;
}

#bloom-calendar p {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    width: 100%;
}





/*------------------------------------*\
  #PLANTS IN BLOOM LIGHTBOX
\*------------------------------------*/
/* PiB Lightbox */
/*
.lb-outerContainer { border-radius: 0; }
.lb-dataContainer { background-color: white; }
.lb-container { padding: 15px; }
.lb-data .lb-details  { width: 100%; }
.lb-data .lb-caption { font-weight: normal; color: black; padding: 15px; display: block!important;}
.lb-close { background: url(/img/new-site-images/img/close.png) top right no-repeat; width: 30px; height: 30px; z-index: 999; opacity: 1; padding: 20px; background-size: 50%; background-position: center; background-color: black; border-radius: 200%; top: -14px; position: absolute; right: -20px; }
.lb-data .lb-number { display: none!important; }
.lb-data .lb-details p { float: left; width: 75%; }
*/

.lb-outerContainer {
    border-radius: 0;
}

.lb-dataContainer {
    background-color: white;
}

.lb-container {
    padding: 15px;
}

.lb-data .lb-details {
    width: 100%;
}

.lb-data .lb-caption {
    color: black;
    padding: 15px;
    display: block;
}

.lb-close {
    color: #fff;
    width: 40px;
    height: 40px;
    z-index: 999;
    opacity: 1;
    padding: 7px;
    background-size: 50%;
    background-position: center;
    background-color: black;
    border-radius: 100%;
    top: -14px;
    position: absolute;
    right: -20px;
}

.lb-close i {
    font-size: 1.7em;
}

.lb-data .lb-number {
    display: none !important;
}

.lb-data .lb-details p {
    float: left;
    width: 75%;
}







/*------------------------------------*\
  #PLANTS IN BLOOM RESPONSIVE TABLE

  Tablet styles for plants in bloom table
\*------------------------------------*/

@media (max-width: 800px) {

    /* Label the table data, this is what makes the table responsive */
    .pib-bloomtable td:nth-of-type(1):before { content: "Collection"; }
    .pib-bloomtable td:nth-of-type(2):before { content: "JAN"; }
    .pib-bloomtable td:nth-of-type(3):before { content: "FEB"; }
    .pib-bloomtable td:nth-of-type(4):before { content: "MAR"; }
    .pib-bloomtable td:nth-of-type(5):before { content: "APR"; }
    .pib-bloomtable td:nth-of-type(6):before { content: "MAY"; }
    .pib-bloomtable td:nth-of-type(7):before { content: "JUN"; }
    .pib-bloomtable td:nth-of-type(8):before { content: "JUL"; }
    .pib-bloomtable td:nth-of-type(9):before { content: "AUG"; }
    .pib-bloomtable td:nth-of-type(10):before { content: "SEP"; }
    .pib-bloomtable td:nth-of-type(11):before { content: "OCT"; }
    .pib-bloomtable td:nth-of-type(12):before { content: "NOV"; }
    .pib-bloomtable td:nth-of-type(13):before { content: "DEC"; }
}






/*------------------------------------*\
  #PLANTS IN BLOOM FILTERS
\*------------------------------------*/

#plantsinbloomfilter {
    clear: both;
}

.pibfilter-container {
    margin-top: 20px;
}
.pibfilter-column {
    padding: 0;
    margin: 0;
    text-align: center;
}

.pibfilter-column a {
    border: 5px solid #ddd;
    color: #000;
}

.pibfilter-column a:hover {
    border: 5px solid #7ac142;
}

.pibfilter-column .selected {
    background-color: #7ac142;
    border: 5px solid #7ac142;
    color: #fff;
}

@media screen and (min-width: 430px) {

    .pibfilter-column {
        display: flex;
        justify-content: space-around;
    }

}

.pibfilter-column a {
    flex: 1 1 auto;
}

@media screen and (max-width: 429px) {
    .pibfilter-column .button {
        width: 100%;
    }
}

@media screen and (min-width: 430px) {
    .pibfilter-column .button {
        width: 100vh;
    }
}

@media screen and (min-width: 640px) {
    .pibfilter-column .button {
        width: calc(50vw - 4em);
    }
}
@media screen and (min-width: 960px) {
    .pibfilter-column .button {
        width: calc(25vw - 4em);
    }
}

.pibfilter-column a:focus {
    outline: 5px solid #000;
}


/* wayward styles for pib page which were hiding in a template variable */

#entry_pib #featured-pib {
    display: inline-block;
    width: 100%;
    padding: 2px 0;
    line-height: 27px;
}

#entry_pib #gardening_articles-latest-posts ul li > a,  #entry_pib #garden_news-latest-posts ul li > a {
    margin-right: 5%;
    float: left;
}

/* NOT ON MY PHONE! */
@media (min-width: 601px) {
    #entry_pib section > .photo {
        float: left;
        width: 45%;
        margin-right: 5%;
    }

    #entry_pib section > div.content {
        width: 50%;
        float: left;
    }

    #entry_pib section#gardening-projects > h2,  #entry_pib section#plants > h2 {
        border-top: none;
    }

    #entry_pib section#gardening_articles-latest-posts ul li > a,  #entry_pib section#garden_news-latest-posts ul li > a {
        width: 25%;
    }
}

/* ONLY ON MY PHONE! */
@media (max-width: 600px) {

    #entry_pib section#gardening_articles-latest-posts ul li > a,  #entry_pib section#garden_news-latest-posts ul li > a {
        width: 40%;
    }

}

/*------------------------------------*\
  #CALENDAR
\*------------------------------------*/

.event-tag {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: normal;
    display: inline-block;
    line-height: 1.4
}

.event-tag a {
    color: inherit;
    font-weight: inherit;
}

.feature-flag {
    font-weight: bold;
    font-size: 14px;
    position: absolute;
    background-color: #fb8120;
    color: white;
    text-transform: uppercase;
    margin-top: -2px;
    margin-left: -7px;
    padding: 2px 8px 0;
    display: block;
}

.feature-flag::before {
    content: "";
    border-top: 0 solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 7px solid #a7591a;
    position: absolute;
    bottom: -7px;
    left: 0;
    display: inline-block; }

.event-information {
    margin-bottom: 0;
    padding-left: 20px;
    position: relative;
    font-size: 13px;
    line-height: 17px;
    font-weight: bold; }

.event-information i {
    position: absolute;
    top: 0;
    left: 0; }

/*RX edit: Make one-of-two-column-wide-images generic*/
/* Page: Events */
.event-filters {
    overflow: hidden;
    /*text-align: center;*/
    margin-bottom: 20px;
}

.event-filters a.green-button, .event-filters button.green-button, .pib-filters button.green-button {
    display: inline-block;
    vertical-align: top;
}


/* MA: new calendar layout 11/16 */
.event-filters .filters-mobile {
    display: none;
}

.event-filters {
    padding: 0 0 0 10%;
    border: 1px solid #d1d1d1;
}

.event-filters > ul, .event-filters > div ul, .event-filters #datePicker {
    margin: 1.3em 2.3em;
}


/* Calendar cells need to maintain a min width to avoid smooshing */
.event-filters table tr td {
    min-width: 21px;
}

.ui-menu-item.ui-state-focus {
    border: 0;
}

.calendar-date-picker {
    font-variant-numeric: lining-nums;
}

.calendar-date-picker th, .calendar-date-picker tr {
    text-align: center;
}

.calendar-overall-header th, .calendar-week-header th {
    text-align: center;
}


.event-filters .filters-desktop {
    float:left;
    margin: 1.3em 2.3em;
}


.thumbnail-list-item > .event-date {
    font-size: 13px;
    line-height: 17px;
    font-weight: bold;
}

.thumbnail-list > .event-blurb {
    margin-top: 10px;
    font-size: 17px;
}

/* keyboard nav styles */

.thumbnail-list > li > a {
    color: #000;
    font-weight: initial;
}
.thumbnail-list > li > a:hover {
    text-decoration-color: #7ac142;
}


.thumbnail-list > li > a:first-child {
    color: black;
    font-weight: normal;
    display: inline-block;
    outline: none;

}

.thumbnail-list > li > a:first-child:hover {
    color: initial;
    font-weight: normal;
    text-decoration-color: #7ac142;
}

.thumbnail-list > li:focus-within > a:first-child {
    outline: 5px solid #7ac142;
}

/* this style might be too overzealous in being applied */
.thumbnail-list > li:focus-within > h2 + a {
    outline: 5px solid #7ac142;
    display: block;
    min-height: 170px;
}
.thumbnail-list > li.dontmiss-event {
    background-color: #f6f6f6;
    padding: 20px;
}

.thumbnail-list > li.dontmiss-event > h2 {
    margin-top: 20px;
}


/* responsive styles */

@media (max-width: 650px) {
    /* version with no link */
    .thumbnail-list > li > img:first-child {
        width: 100%;
        margin-bottom: 20px;
        float: left; /* this is to make the featured flag display correctly on events */
    }
    /* version with link */
    .thumbnail-list > li > a:first-child > img:first-child {
        width: 100%;
        margin-bottom: 20px;
        float: left; /* this is to make the featured flag display correctly on events */
    }

}

@media (min-width: 650px) {
    .thumbnail-list > li > img:first-child {
        width: 260px;
        float: left;
    }

    .thumbnail-list > li > a > img:first-child {
        width: 260px;
        float: left;
    }

}

@media (max-width: 650px) {

    .thumbnail-list li .video-meta-wrapper {
        margin-bottom: 10px;
    }

}

@media (min-width: 650px) {
    .thumbnail-list li .video-meta-wrapper {
        width: 267px;
        height: 177px;
        float: left;
    }
}
@media (min-width: 650px) {
    .thumbnail-list .thumbnail-list-item {
        max-width: 476px;
        margin-left: 300px;
        width: initial;
    }
}


/* three-across, then two-across thumbnail with text below */

.thumbnail-list-horizontal li h3 {
    color: #000;
}

.thumbnail-list-horizontal li p {
    color: #000;
    font-weight: normal;
}

.thumbnail-list-horizontal img {
    max-width: 100%;
    margin-bottom: 20px; /* remove the .education-section ul li img style and replace with this one */
}

.thumbnail-list-horizontal a {
    display: block;
}


@media (max-width: 600px) {

    .event-filters {
        border: 0;
        padding: 0;
    }
    .calendar-date-picker {
        width: 80%;
        margin: 0 auto;

    }

    #eventFilter select {
        width: 100%;
        margin-bottom: 15px;
        min-height: 30px;
    }

    .event-filters .filters-mobile {
        display: block;
    }

    .event-filters .filters-desktop{
        display: none;
    }

}

/* RX Additions for new cal layout 11/29 */

#datePeriod li {
    line-height: 24px;
}

#eventType li {
    line-height: 24px;
}

.current {
    color: black;
    font-weight: normal;
}



/*------------------------------------*\
  #ADD TO CALENDAR LINK
\*------------------------------------*/
/* foldout add-to-calendar link */
/* add to calendar feature */

.categoryList {
    line-height: 20px;
}

.categoryList li {
    display: inline-block; }

.categoryList .separator {

}

.offscreen {
    clip: rect(1px 1px 1px 1px); /* IE 6/7 */
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap; /* added line */
    width: 1px;
}



/*------------------------------------*\
  #CALENDAR EMBED
  #.image-list-square wraps the event photo-and-content-modules like on /visit/tours
\*------------------------------------*/

/* small tweak for the calendar version  of this style */

.image-list-square li:focus-within {
    outline: 5px solid #7ac142;
}

.image-list-square a:focus {
    outline: none;
}

/* no divider lines on home page */
#entry_homepage .image-list-square li {
    border-top: 0;
}

.image-list-square li {
    display: block;
    padding: 10px 0;
    margin: 10px 0;
    min-height: 130px;
    border-top: 1px solid #d1d1d1; }

.image-list-square li a p,  .image-list-square li a h3 , .image-list-square li a .event-tag {
    color: #000;
    font-weight: 400;}

.image-list-square li a .event-description p {
    font-size: 13px;
    line-height: 17px;
    color: #000;
    font-weight: bold;
}
.image-list-square li a:hover h3,
.image-list-square li a:hover .event-tag,
.image-list-square li a:hover .event-description p
{
    text-decoration: underline;
    text-decoration-color: #7ac142;
}
.image-list-square li a:hover p {
    text-decoration: underline;
}
.image-list-square li.firstevent {
    border-top: 0; }

.image-list-square li > a > img {
    float: left;
    width: 120px;
    margin-right: 15px;
}

.image-list-square .event-description,
.image-list-square .thumbnail-list-item
{
    margin-left: 140px;
}
.image-list-square .event-tag {
    display: block;
}



.image-list-square .content {
    width: 60%;
    float: left; }

.image-list-square > li:first-child {
    border-top: 0; }

.image-list-square-min li .image-information {
    margin-bottom: 10px; }


/* Lightscape calendar that shows on bbg.org/lightscape */

.calendar-date-picker tr, .calendar-date-picker th {

}

.cal-disabled {
    color: #ccc;
}

[data-contrast-mode=high] .cal-disabled {
    color: #000;
}

.cal-peak {
    background-color: #227de0;
    color: #fff;
    width: 25px;
    height: 25px;
    font-size: 15px;
    line-height: 1.8em;
    border-radius: 50%;
    margin: 0 auto;
}

[data-contrast-mode=high] .cal-peak {
    color: #000;
}

.cal-offpeak {
    background-color: #BF19ff;
    color: white;
    width: 25px;
    height: 25px;
    font-size: 15px;
    line-height: 1.8em;
    border-radius: 50%;
    margin: 0 auto;
}

[data-contrast-mode=high] .cal-offpeak {
    color: #000;
}

.avail-offpeak {color: #BF19ff;}

/* This is used to indicate the date of the Lightscape 21+ night */
.cal-special {
    background-color: #F98835;
    color: #fff;
    width: 25px;
    height: 25px;
    font-size: 15px;
    line-height: 1.8em;
    border-radius: 50%;
    margin: 0 auto;
}

[data-contrast-mode=high] .cal-special {
    color: #000;
}

.avail-special {color: #F98835;}


/* This is used to indicate the date of the Lightscape Benefit */
.cal-green {
    background-color: #7ac145;
    color: #fff;
    width: 25px;
    height: 25px;
    font-size: 15px;
    line-height: 1.8em;
    border-radius: 50%;
    margin: 0 auto;
}

[data-contrast-mode=high] .cal-green {
    color: #000;
}

.cal-valuenight {
    background-color: #d32149;
    color: white;
    width: 25px;
    height: 25px;
    font-size: 15px;
    line-height: 1.8em;
    border-radius: 50%;
    margin: 0 auto;
}

.avail-valuenight {color: #d32149;}

.avail-peak {color: #227de0;}

.peak-calendar tbody td {
    /* border: 1px solid #ccc; */

}

.peak-calendar td > div {

}

.peak-calendar th {
    padding: 5px 10px;
}

/* Continuing Education class listing page toggle */

.button-education {
    border: none;
    margin-right: 5px;
    padding: 3px 6px;

}

.button-education:hover {
    color: #fff;
    background-color: #7ac142;
}

.button-education.active {
    color: #fff;
    background-color: #4c8cd1;
}

/* high contrast version */
[data-contrast-mode="high"] .button-education.active {
    border: 2px solid black;
    color: white;
    background: black;
}

[data-contrast-mode="high"] .button-education {
    border: 2px solid black;
    background: #fff;
}

[data-contrast-mode="high"] .button-education:hover {
    border: 2px solid #4c8cd1;
    background: #fff;
    color:black;
}

[data-contrast-mode="high"] .feature-flag {
    background: #000;
}

[data-contrast-mode="high"] .feature-flag:before {
    border-right: 7px solid #000;
}

/*------------------------------------*\
  #CHERRIES
  #LEARN MORE ABOUT CHERRIES ARTICLES SECTION
\*------------------------------------*/

.one-of-two-cols .cherry-page-sidebar ul li {
    margin-bottom: 40px;
    min-height: 75px;
}

.one-of-two-cols .cherry-page-sidebar a {
    display: block;
}

.one-of-two-cols .cherry-page-sidebar a:focus {
    outline: 5px solid #7ac142;
}

.one-of-two-cols .cherry-page-sidebar a h3 {
    color:#000;
}

.one-of-two-cols .cherry-page-sidebar a:hover h3 {
    color: #7ac142;
    text-decoration: underline;
}

.one-of-two-cols .cherry-page-sidebar ul li a {
    text-decoration: none;
}

.one-of-two-cols .cherry-page-sidebar article img, .one-of-two-cols .cherry-page-sidebar ul li img, #bloom-latest-posts ul li img {
    width: 25%;
    margin-right: 5%;
    float: left; }
.one-of-two-cols .cherry-page-sidebar article h3, .one-of-two-cols .cherry-page-sidebar ul li h3, #bloom-latest-posts ul li h3 {
    width: 70%;
    float: left; }

.one-of-two-cols .cherry-page-sidebar.gardening-article-aside {
    width: 100%;
    margin-left: 0;}




/*------------------------------------*\
  #CHERRIES
  #CHERRYWATCH

  live cherrywatch.css
\*------------------------------------*/

p #cherriesupdated, #cherriesupdated  {
    font-style: italic;
}

#cherry_list_nav, .list_toggle {
    display:none;
}

ul.cherryhighlights li a {
    font-size: 11px;
}

/*Font for desktop rollover cherry name - RX*/
.cherry-font {
    font-family: 'ff-kievit-slab-web', serif;
    font-weight: normal;
    font-size: 17px;
    line-height: 21px;
}

.cherry-calendar > li {
    margin-bottom: 15px;
}

.cherry-calendar > li a.photo {
    display: none;
}

.cherry-calendar > li div.content {
    width: 100%;
}





/*------------------------------------*\
  #CHERRIES
  #CHERRY
  #MAP
\*------------------------------------*/

#cherrymap {
    display: inline-block;
    width: auto;
    height: auto;
    background: none;
    max-width: 100%;
    position: relative;
    top: 0;
    left: 0;
}

#cherrymap > img {
    width: 100%;
}

#cherrymap .location {
    display:block;
    position:absolute;
    width:14px;
    height:14px;
    outline:none;
    text-decoration:none;
}

.tooltip-container {
    max-width: 250px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.tooltip-header {
    display: none;
}

/* tooltips */
.tooltip-content {
    z-index: 10;
    visibility: hidden;
    padding: 12px;
    width: auto;
    background: #fff;
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tooltip-content .treename {
    color: #000;
}

.tooltip-content img {
    margin-bottom: 10px;
}


/* default arrow styles */
[data-popper-arrow] {
    position: absolute;
    width: 14px;
    height: 14px;
    pointer-events: none;
}

/* arrow element */
[data-popper-arrow]::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: #fff;
    transform: rotate(45deg);
    opacity: 0;
}

/* show the arrow when tooltip is visible */
.tooltip-content[data-show] [data-popper-arrow]::before {
    opacity: 1;
}


/* top arrow */
.tooltip-content[data-show][data-popper-placement^="top"] [data-popper-arrow] {
    bottom: -5px;
}

/* bottom arrow */
.tooltip-content[data-show][data-popper-placement^="bottom"] [data-popper-arrow] {
    top: -5px;
}

/* left placement */
.tooltip-content[data-show][data-popper-placement^="left"] [data-popper-arrow] {
    right: -5px;
}

/* right placement */
.tooltip-content[data-show][data-popper-placement^="right"] [data-popper-arrow] {
    left: -5px;
}



/* used for legend on cherry watch map */
.image_caption {
    font-family: ff-kievit-slab-web,serif;
    font-size: 14px;
}

#entry_cherries span.tooltip:hover span img {
    display: block;
    max-width: 100px;
    margin: 0 0 10px 0;
    min-width: 100px;
}

#entry_cherries span.tooltip:hover a {
    text-decoration: none;
}

#entry_cherries .feature-flag {
    display: none;
}

.module-photo img {
    height: auto;
}

#cherrymap .bloom0, #icon0 {
    background: url('/assets/img/icons-map/cherry-prebloom.svg');
}

#cherrymap .bloom1, #icon1 {
    background: url('/assets/img/icons-map/cherry-firstbloom.svg');
}

#cherrymap .bloom2, #icon2 {
    background: url('/assets/img/icons-map/cherry-peakbloom.svg');
}

#cherrymap .bloom3, #icon3 {
    background: url('/assets/img/icons-map/cherry-postbloom.svg');
}

#cherrymap .bloom0, #cherrymap .bloom1, #cherrymap .bloom2, #cherrymap .bloom3, #icon0, #icon1, #icon2, #icon3  {
    background-size: 100%;
    background-repeat: no-repeat;
    display: block;
    width: 15px;
    height: 15px;

}

#entry_homepage #cherrymap .bloom0, #entry_homepage #cherrymap .bloom1, #entry_homepage #cherrymap .bloom2, #entry_homepage #cherrymap .bloom3  {
    width: 11px;
    height: 11px;
}

#cherriesonhomepage {
    margin-bottom: 20px;
}

#icon0, #icon1, #icon2, #icon3  {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: text-top;
    margin-top: 3px;
    margin-right: 3px;

}
div.hlegend #icon0, div.hlegend #icon1, div.hlegend #icon2, div.hlegend #icon3 {
    margin: 0 3px 4px 5px;
    display: inline-block;
}

/*Spacing for video title, to eliminate extra space below social icons - RX*/
.cherry-video-title{
    margin-top:30px !important;
}

/*For first ad in right sidebar, eliminate heavy green stroke - RX*/
.ad-no-top-bar {
    border-top:1px !important;
}

#featured-cultivar .feature-flag {
    line-height: 27px;
}

/* responsive styles for cherry page */
@media (hover: none) {
    #cherrymap a.location {
        cursor: default;
    }

    #cherrymap .bloom0, #cherrymap .bloom1, #cherrymap .bloom2, #cherrymap .bloom3, #icon0, #icon1, #icon2, #icon3  {
        display: block;
        width: 10px;
        height: 10px;
    }

    .tooltip-content {
        font-size: 0.8rem;
        max-width: 200px;
    }

    .tooltip-content .treename{
        font-size: 0.9rem;
    }

    .tooltip-header {
        display: flex;
        justify-content: flex-end;
        padding-bottom: 5px;
    }

    /* close button styles (only for mobile & tablets) */
    .tooltip-close {
        font-size: 12px;
        color: #666;
        cursor: pointer;
        transition: color 0.3s ease;
    }
}

/*------------------------------------*\
  #INPUTS
\*------------------------------------*/


input[type=text], input[type=email] {
    font-family: 'ff-kievit-web', sans-serif;
    -webkit-appearance: none;
    border-radius: 0;
}

textarea, input[type=submit] {
    font-family: 'ff-kievit-web', sans-serif;
    -webkit-appearance: none;
    border-radius: 0;
}





/*------------------------------------*\
  #EMAIL INPUTS
\*------------------------------------*/
.email-signup input[type=email] {
    border: 0;
    color: black;
    background-color: white;
    padding: 8px;
}

.email-signup input[type=text] {
    border: 0;
    color: black;
    background-color: white;
    padding: 8px;
}





/*------------------------------------*\
  #FORM CONTAINERS

  .form-container isn't active but some of these classes are still present in older events and entries
\*------------------------------------*/

/* Google Forms: JR */
.form-container {
    position: relative;
    padding-bottom: 100%;
    height: 1590px;
    overflow: hidden;
}
.form-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.form-container-events {
    position: relative;
    padding-bottom: 100%;
    height: 1000px;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll; }


.form-container-events iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.form-container-gardening {
    position: relative;
    padding-bottom: 100%;
    height: 1420px;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;  }

.form-container-gardening iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.form-container-grasses {
    position: relative;
    padding-bottom: 100%;
    height: 1750px;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;  }


.form-container-grasses iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.form-container-xlong {
    position: relative;
    padding-bottom: 100%;
    height: 2500px;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll; }


.form-container-xlong iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.form-container-commercial {
    position: relative;
    padding-bottom: 100%;
    height: 3200px;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;  }


.form-container-commercial iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }


.form-container-short{
    position: relative;
    padding-bottom: 80%;
    height: 400px;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;  }


.form-container-short iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/*added by eliz for medium-length option */

.form-container-medium {
    position: relative;
    padding-bottom: 100%;
    height: 1200px;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;  }

.form-container-medium iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.form-container-500 {
    position: relative;
    padding-bottom: 90%;
    height: 450px;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;  }

.form-container-500 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }





/*------------------------------------*\
  #EMAIL FORM
\*------------------------------------*/

/* full email form */

@media only screen and (min-width:600px) {

    .email-signup-form label {
        float:left;
        width: 40%;
        text-align: right;
        margin-top: 10px;
        padding: 8px;
        height: 20px;
    }

    .email-signup-form input {
        width: 60%;
        float: left;
        margin-top: 10px;
    }

    .email-signup-form .button {
        margin-left: 40%;
        margin-top: 10px;
    }

}

.email-signup-form input {
    margin-bottom: 10px;
}


/* inline email form */

.signup-inline input, .signup-inline button {
    height: 42px;

}

.signup-inline #emailinline {
    height: 42px;
    width: 75%;

}

/* 2022 inline signup with flexbox */

.email-signup-inline input[name="email"] {
    margin: 8px 0;
}



a.keyboardstyle:focus {
    outline: 5px solid #7ac142;
    display: block;
}


/*------------------------------------*\
  #DESKTOP
  #SEARCH
\*------------------------------------*/

#search-container {
    overflow: inherit;
    display: none; }


#desktop_search {
    width: 465px;
    background-color: rgba(76, 140, 209, 0.8);
    position: absolute;
    z-index: 999;
    padding: 20px 0 20px 20px;
    right: 0; }

#desktop_search .close-search {
    opacity: .6;
    margin-top: -7px;
    float: right;
    color: white;
    font-size: 30px;
    text-decoration: none;}
#desktop_search .close-search:hover {
    opacity: 1;
    text-decoration: none; }
#desktop_search input[type=text] {
    width: 66%;
    float: left;
    border: 5px solid transparent;
    padding: 8px 10px;
    height: 40px;
}

#desktop_search input[type=text]:focus {
    outline: 5px solid #7ac142;
}

#desktop_search input[type=submit] {
    height: 40px;
    border: 5px solid #fff;
    margin: 0 10px;
    border-radius: 0;
    width: 125px;
    background: transparent;
    color: white;
    text-transform: uppercase;
    padding: 9px 14px 8px 14px;
    font-size: 12px;
    font-weight: bold;
}
#desktop_search input[type=submit]:focus {
    outline: 5px solid #7ac142;
}
#desktop_search input[type=submit]:hover {
    background-color: white;
    color: #4c8cd3; }





/*------------------------------------*\
  #ICONS
  styling for icons that change when search bar is open
\*------------------------------------*/
.trigger-search i {
    width: 15px;
    text-align: center;
}

.trigger-search .fa-times {
    font-size: 1.3em;
}

#mobile-search .fa-times {
    font-size: 1.3em;
}


/*------------------------------------*\
  #SEARCH BAR on plant collections page
\*------------------------------------*/

/* search bar on living collections page */
#livingcollectionssearch .input-group {
    border: 1px solid #ccc;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

@media only screen and (min-width:40em) {
    #livingcollectionssearch .input-group {
        max-width: 60%;
    }
}

#livingcollectionssearch input {
    font-family: 'ff-kievit-web', sans-serif;
    font-size: 20px;
    height: 45px;
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    margin-bottom: 0;
    background-color: #fdfdfd;
}

#livingcollectionssearch button {
    font-size: 12px;
    font-weight: bold;
    background-color: #7ac142;
    display: inline-block;
    height:100%;
    padding: 0 20px;
    color: white;
    text-transform: uppercase;
    border: none;
}

/*Festival Pages: new description list style RX*/
dl.festival {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    overflow: hidden;
}
dl.festival dt, dl.festival dd {
    border-top: 1px solid #ddd;
    padding-top: 15px;
    padding-bottom: 10px;
}
dl.festival dt {
    width: 30%;
    float: left;
}
dl.festival dd {
    width: 70%;
    float: left;
    padding-left: 0;
    margin-left: 0;
}


.comments {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid black; }
.comments ul li {
    padding: 30px;
    border: 1px solid black;
    margin-bottom: 1.0em; }
.comments .commenter {
    font-size: 18px;
    font-weight: bold; }
.comments .date-posted {
    font-size: 13px;
    color: #999;
    font-weight: bold;
    margin-left: 20px; }
.comments h2 {
    border-top: 0;
    padding-top: 0;
    margin-top: 0; }
.comments p {
    width: 100%;
    font-size: 13px;
    line-height: 21px;
    margin-bottom: 0; }

/*------------------------------------*\
  #COMMENTS
  Comment form and comments themselves
\*------------------------------------*/

.submit-comment-form h3 {
    font-size: 17px;
    text-transform: uppercase;
    font-family: 'ff-kievit-web', sans-serif;
    font-weight: bold;
    margin-top: 40px;
    letter-spacing: 2px; }
.submit-comment-form p.comment-rules {
    margin-bottom: 30px;
    font-size: 13px;
    line-height: 21px;
    font-style: italic;
    width: 100%; }
.submit-comment-form input, .submit-comment-form textarea {
    background-color: #dedbd6;
    padding: 10px;
    margin-bottom: 15px; }
.submit-comment-form input[type=text] {
    float: left;
    width: 48%;
    margin-right: 4%; }
.submit-comment-form input[type=email] {
    float: left;
    width: 48%;
    margin-right: 0; }
.submit-comment-form textarea {
    width: 100%;
    border: 0; }
.submit-comment-form button {
    border: 0;
    color: white;
    background-color: #4c8cd1; }


/*------------------------------------*\
  #BUTTONS
\*------------------------------------*/

a.button, input[type=submit], button {
    transition: all .5s ease; }

.button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Buttons */
.button {
    padding: 8px 15px;
    font-size: 12px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: bold;
    min-width: 90px;
    margin-right: 10px;
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: 1px;
    background-color: transparent;
    text-decoration: none;
    line-height: 27px;
}

.button:hover {
    text-decoration: none !important; }

.green-button {
    color: white;
    background-color: #7ac142;
    border: 2px solid #7ac142;}

.green-button:hover {
    color: white;
    background-color: #67a437;
    text-decoration: none !important; }

.blue-button {
    color: #ffffff;
    background-color: #4c8cd1;
    border: 2px solid #4c8cd1; }

.blue-button:hover {
     color: #4c8cd1;
     background-color: #ffffff;
     border: 2px solid #4c8cd1;
     text-decoration: none !important; }

.secondary-button, a.secondary-button {
    color: #7ac142;
    background-color: white;
    border: 2px solid #7ac142;
}

.secondary-button.active {
    color: white;
    background-color: #7ac142;
    text-decoration: none;}

.secondary-button:hover, a.secondary-button:hover {
    color: white;
    background-color: #7ac142;
    text-decoration: none !important;
}

.garden-stories .secondary-button,
.garden-stories a.secondary-button {
    color: black;
    background-color: white;
    border: 2px solid black;
    line-height: 18px;
    display: inline-block;
    text-align: center;
}

.garden-stories .secondary-button.active {
    color: white;
    background-color: black;
    text-decoration: none;
}

.garden-stories .secondary-button:hover,
.garden-stories a.secondary-button:hover {
    color: white;
    background-color: black;
    text-decoration: none !important;
}

/*------------------------------------*\
  #SOCIAL BUTTONS
\*------------------------------------*/


.social-buttons {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.social-buttons li {
    display: inline-block;
}

.social-buttons a {
    text-decoration: none;
}

.social-buttons .footer-bg {
    color: #ffffff;
}

footer .social-buttons a:hover .footer-bg {
    color: #e0e0e0;
}

footer .social-buttons .fa-inverse {
    color: #4d4d4d;
}

footer .social-buttons a:hover .fa-inverse {
    color: #000000;
}

.social-buttons .article-bg {
    color: #5f5f5f;
}

.social-buttons a:hover .article-bg {
    color: #e0e0e0;
}

.social-buttons a:hover .fa-inverse {
    color: #5f5f5f;
}

/* override for irregularly spaced icons */

footer .social-buttons li:last-child {
    margin-left: 3px;
}




/*------------------------------------*\
  #Related content - social buttons
\*------------------------------------*/
section.related-materials .social-buttons li a {
    opacity: .5; }

section.related-materials .social-buttons li a:hover {
    opacity: .8; }


/* Showclix integration to show sold out nights */

.avail-good {color: #7ac145}
.avail-med {color: #fb8120}
.avail-bad {color: #ed1c24}

.avail-reserved {color: #4d4d4d}

.button-orange { background-color: #fb8120 !important ; border-color: #fb8120 !important}
.button-red {background-color: #ed1c24 !important ; border-color: #ed1c24 !important}
.button-gray {background-color: #4d4d4d !important ; border-color: #4d4d4d !important;   cursor: not-allowed; pointer-events: all !important; color: white }

/*------------------------------------*\
  # discovery carts - sold out buttons
\*------------------------------------*/


.avail-good-bg {
    background-color: #7ac145;
    color: white;
}

.avail-med-bg {
    background-color: #fb8120;
    color: white;
    border: 2px solid #fb8120;
}

.avail-med-bg:hover {
    background-color: #e7741d;
    border: 2px solid #fb8120;
    text-decoration: none;
}

.avail-bad-bg {
    background-color: #ed1c24;
    color: white;
    border: 2px solid #ed1c24;
}

.avail-bad-bg:hover {
    background-color: #c01b20;
    border: 2px solid #ed1c24;
    text-decoration: none;
}


.sold-out {
    background-color: gray;
    color: white;
    border: 2px solid gray;
    pointer-events: none;
}

.registration-closed {
    background-color: gray;
    color: white;
    border: 2px solid gray;
}

.registration-closed:hover {
    background-color: gray;
    color: white;
    border: 2px solid gray;
    cursor: default;
}

#showclix_timechooser a.button {
    width: 95px;
    white-space: nowrap;
}

/* Show Waitlist Only classes toggle */

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    margin-right: 10px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #4c8cd1;
}

input:focus + .slider {
    box-shadow: 0 0 1px #4c8cd1;
}

input:checked + .slider:before {
    transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* adding default select */

.form-select {
    padding: 11px 6px;
    border-radius: 0;
    border-color: #7ac142;
    border-width: 2px;
    height: 47px;
    margin-right: 2px;
}
/*------------------------------------*\
  #HEADER
\*------------------------------------*/

.container-no-float {
    height: 100%;
    box-sizing: border-box;
    padding: 0 20px;
    width: 100%;
    max-width: 1095px;
    margin: 0 auto;
    position: relative;
}





/*------------------------------------*\
  #EMERGENCY BANNER NOTICE
\*------------------------------------*/

#emergencybanner {
    display:none;
}

.emergency-header-message p{
    text-align: center;
    padding: 10px;
    color: #ffffff;
    margin: 0;
    font-weight: bold;

}
.emergency-header-message p a {
    color: #fff;
}

.emergency-header-message {
    background-color: #4D4D4D;
}

.emergency-header-message .closeheader {
    background: transparent;
    border: none;
    font-size: 25px;
    position: absolute;
    right: 0;
    padding: 0 10px 10px 10px;
}
.emergency-header-message .closeheader  {
    color: #fff;
}

.emergency-header-message .closeheader:hover {
    color: #000;
}

#emergencybannerdismiss:hover {
   cursor:pointer;
   color: #7ac142;
}




/*------------------------------------*\
  #ALERTS
\*------------------------------------*/


/* HOME PAGE 2021 */

.home-covid-icons {
    max-width: 400px;
}

.home-covid-icons img {
    max-width: 60%;
}






/*------------------------------------*\
  #NAVIGATION
  #MENU
  #rewrite of meanmenu
\*------------------------------------*/

.nav_container {
    background-color: #4c8cd1;
    height: 3.75em;
    padding: .25em;
    position: relative;
}

@media screen and (max-width: 992px) {
    #main_navigation_ul.is-active {
        width: 100vw;
        display: flex;
        flex-direction: column;
        background-color: #4c8cd1;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 199;
        color: #fff;
    }


    /*The "visit" in the small white box that appears under nav*/
    #main_navigation_ul.is-active h2 {
        color: black;
    }

    #main_navigation_ul .submenu-active {
        display: block;
    }
}


/*FLEX CONTAINER - PARENT OF BURGER, LOGO, NAV AND SEARCH ICON*/
.nav_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

#bbg-logo-mobile {
    width: 7.5em;
    height: 2.76em;
}

#bbg-logo-desktop img:focus {
    outline: 5px solid #3BA72A;
}

#menu-button {
    text-align: center;
    font-size: 20px;
    background-color: #4c8cd1;
    color: #fff;
    border: none;
    padding: 16px;
}

#search-button {
    text-align: center;
    font-size: 20px;
    background-color: #4c8cd1;
    color: #fff;
    border: none;
    border-top: 3px solid transparent;
    padding: 16px;
}

#main_navigation_ul {
    display: none
}

/* MENU ITEM NAMES - a tag and button are wrapped around span inside li */
.menu-item-name {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    padding: .5em 5%;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, .5);
}

.menu-item-name a {
    display: flex;
    align-self: center;
}

header nav > ul li a {
    color: white;
}

#main_navigation_ul button {
    border: none;
    background: transparent;
    text-decoration: none;
}

button#menu-button {
    width: 33px;
}

#close-menu-icon,
#hamburger-mobile-icon,
#close-search-icon {
    display: none;
}



/*HIDES PLUS AND MINUS ICONS*/
.open-submenu,
.close-submenu {
    display: none;
}

/*PLUS AND MINUS ICONS*/
.open-submenu.is-active,
.close-submenu.is-active {
    border: none;
    cursor: pointer;
    display: block;
    font-size: 2.5em;
    left: auto;
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, .1);
}

/*SMALL VISIT MENU UNDER NAV*/
.nav_container .mobile-visit {
    padding: 20px;
    background-color: white;
    display: flex;
    flex-direction: column;
    border-bottom: 5px solid #4c8cd1;
}

.mobile-visit a {
    margin-bottom: 10px;
    text-decoration: underline;
    float: none;
    color: black;
    padding: 0;
    width: 100%;
    font-weight: normal;
}

/*HIDES SUBMENUS UNTIL WE ADD THE 'is-active' CLASS*/
.submenu ul {
    display: none;
}

/* TARGETING MENU ITEM NAMES OF ALL SUBMENUS ON EACH LEVEL */
.submenu ul li,
.submenu ul li ul li {
    /*opacity: .75;*/
    text-shadow: none;
    visibility: visible;
}

/* MOBILE - TARGETING MENU ITEM LINK OF ALL SUBMENUS ON EACH LEVEL */
.submenu ul li a {
    padding: .5em 5%;
}

.submenu ul li ul li a {
    padding: .5em 10%;
}


/* SEARCH */
.header-search-container {
    color: black;
    background: #4c8cd1;
    padding: .25em 0;
    display: flex;
    flex-direction: column;
}

.search-elements {
    display: none;
}

.search-elements.is-active {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

/*FLEX PARENT*/
.search-elements form {
    display: flex;
    width: 100vw;
}

/*FLEX children*/
.search-elements input {
    flex-grow: 1;
}

.search-elements button {
    flex-shrink: 0;
}


#search-input {
    width: 66%;
    float: left;
    border: 5px solid transparent;
    padding: 8px 10px;
    height: 40px;
}

#search-submit {
    height: 40px;
    border: 5px solid #fff;
    margin: 0 10px;
    border-radius: 0;
    width: 125px;
    background: 0 0;
    text-transform: uppercase;
    padding: 9px 14px 8px 14px;
    font-size: 12px;
    font-weight: 700;
    color: white;
}

#search-submit:hover {
    background-color: #fff;
    color: #4c8cd3;
}

.search-elements input:focus {
    outline: 5px solid #7ac142;
}

/*fixes icons within 20px width so the mobile logo doesn't move*/
#search-icon-toggle {
    width:20px;
}

/* DESKTOP STYLES - SCREENS BIGGER THAN 992*/
@media screen and (min-width: 992px) {
    /*PARENT FLEX OF WHOLE HEADER DESKTOP ROW*/
    .nav_container {
        justify-content: center;
        flex-direction: row-reverse;
        padding: 0 10%;
        /*gap: 2%;*/
    }

    .submenu-btn {
        display: none;
    }

    /* keyboard styles - top level nav */

    #main_navigation_ul > li > span > a:focus {
        color: #fff;
    }

    #main_navigation_ul > li > .menu-item-name a:focus {
        background-color: #7ac142;
        border-top: 3px solid #fff;
        color: #fff;
        padding: 17px 15px;
    }

    #main_navigation_ul > li:focus-within > span > a {
        color: #7ac142;
        border-top: 3px solid #7ac142;
        padding: 17px 15px;
    }

    #main_navigation_ul > li > ul > li a:focus{
        box-shadow: -5px -5px 0px 0px rgba(122,193,66,1) inset, 5px 5px 0px 0px rgba(122,193,66,1) inset;
        -webkit-box-shadow: -5px -5px 0px 0px rgba(122,193,66,1) inset, 5px 5px 0px 0px rgba(122,193,66,1) inset;
        -moz-box-shadow: -5px -5px 0px 0px rgba(122,193,66,1) inset, 5px 5px 0px 0px rgba(122,193,66,1) inset;
        outline: none;
        border-bottom: 3px solid transparent;
    }

    /*logo container*/
    #nav-logo-container-anchor{
        position: relative;
        z-index: 99;
        order: 3;
        top: 66px;
    }

    /*ordering the children bc they're not in this order in the html*/
    #main-nav{
        order: 2;
    }

    #search-button {
        order:1;
    }

    .header-search-container{
        padding: 0;
        flex-direction: row;
    }

    /*use desktop logo*/
    #bbg-logo-desktop {
        background-color: #fff;

    }

    a#nav-logo-container-anchor:focus{
        border: 5px solid #7ac142;
    }

    #main_navigation_ul{
        padding-left:90px;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
    }

    #main-bbg-nav-logo img{
        margin: 18px 6px 5px 6px;
    }

    /*hide stuff from mobile html*/
    #menu-button,
    .nav_container .mobile-visit,
    .close-submenu.is-active,
    .open-submenu.is-active{
        display:none;
    }

    #main_navigation_ul button{
        padding: 0;
    }




    /* hover + focus desktop menu */
    header nav{
        font-size: 16px;
    }
    header nav > ul li ul {
        display: none;
    }

    .menu-item-name{
        display: flex;
        flex-direction: row;
        padding: 0;
        margin: 0;
    }
    header nav > ul > li > .menu-item-name {
        /* Arthur's edit - borders outside of anchor element */
        border-left: 1px solid rgba(0,0,0,.1);
        border-right: 1px solid rgba(255,255,255,.2);
        border-top: none;
    }
    header nav > ul > li > .menu-item-name:focus,
    header nav > ul > li > .menu-item-name:hover {
        /* Arthur's edit - borders outside of anchor element */
        border-left: 1px solid transparent;
        border-right: 1px solid transparent;
        border-top: none;
    }

    header nav > ul li a {
        color: white;
        padding: 17px 15px;
        text-decoration: none;
        white-space: nowrap;
    }

    header > nav > ul > li > .menu-item-name > a {
        border-top: 3px solid transparent;
    }

    header > nav > ul > li > .menu-item-name > a:hover {
        border-top: 3px solid #7ac142;
        text-decoration: none;
        padding: 18px 15px 16px 15px;
    }

    header nav > ul li:hover ul,
    header nav > ul li:focus ul,
    header nav>ul>li:focus-within > ul {
        display: block;
        position: absolute;
        z-index: 2;
        background-color: #fff;
        width: 252px;
        border-right: 1px solid #ddd;
        border-left: 1px solid #ddd;
        margin-left: 1px;
    }


    /*FOR CHROME 59 and older*/
    header nav > ul li.submenu:hover ul,
    header nav > ul li.submenu.focus-within ul{
        display: block;
        position: absolute;
        z-index: 200;
        background-color: #fff;
        width: 252px;
        border-right: 1px solid #ddd;
        border-left: 1px solid #ddd;
        margin-left: 1px;
    }

    nav ul li li ul li {
      display:none;
    }

    header nav>ul>li:focus-within .menu-item-name {

    }

    header nav>ul>li:focus-within a {
        outline: none;
        color: #000;
        background-color: #fff;
    }

    header nav>ul>li:focus-within a.screenReader {
        outline: none;
        color: #7ac142;
        background-color: #fff;
        border-top: 3px solid #7ac142;
        padding: 17px 15px;
    }

    header nav > ul li ul li .menu-item-name {
        border-top: 1px solid #ddd;
    }

    header nav > ul li ul li a {
        min-width: 250px;
        text-align: left;
        color: #000;
        font-weight: 400;
        border-bottom: 3px solid transparent;

        text-decoration: none;
        justify-content: flex-start;
    }

    header nav > ul li ul li a:hover{
        background-color: #f6f6f6;
        border-bottom: 3px solid #7ac142;
        text-decoration: none;
    }

    .submenu ul li a:focus {
        border-bottom: 3px solid transparent;
        text-decoration: none;
        color: #000;
    }
    .submenu ul li a:hover{
        border-bottom: 3px solid #7ac142;
        text-decoration: none;
        color: #000;
    }
    .submenu ul li .menu-item-name a:hover {
        background-color: #f6f6f6;
    }


    header nav > ul > li a:hover {
        outline: 0;
        color: #7ac142;
        background-color: #fff;
    }

    [data-contrast-mode=high] header nav > ul > li a:hover {
        color: #000;
    }

    [data-contrast-mode=high] #search-button:hover {
        color: #000;
    }

    [data-contrast-mode=high] header {
        color: #000;
        background-color: #fff;
    }

    [data-contrast-mode=high] #search-button {
        color: #000;
        background-color: #fff;
    }

    /*desktop search*/
    .header-search-container {
        padding: 0;
    }

    .search-elements.is-active {
        width: 465px;
        background-color: rgba(76,140,209,.8);
        position: absolute;
        z-index: 9;
        padding: 20px 0 20px 20px;
        top: 3.75em;
        right: 3em;
    }

    #search-icon-toggle {
        width:33px;
    }

    #search-button:hover{
        outline: 0;
        color: #7ac142;
        background-color: #fff;
        border-top: 3px solid #7ac142;
    }
}


/* MOBILE HIGH CONTRAST STYLES */
@media screen and (max-width: 992px) {
    [data-contrast-mode=high] header nav > ul > li a:hover {
        color: #000;
    }
    [data-contrast-mode=high] .nav_container {
        color: #000;
        background-color: #fff;
    }

    [data-contrast-mode=high] #menu-button {
        color: #000;
        background-color: #fff;
    }

    [data-contrast-mode=high] #search-button {
        color: #000;
        background-color: #fff;
    }

    [data-contrast-mode=high] #search-submit {
        color: #000;
        background-color: #fff;
    }
    [data-contrast-mode=high] #main_navigation_ul  {
        color: #000;
        background-color: #fff;
    }

    [data-contrast-mode=high] #nav-logo-container-anchor img {
        filter: invert();
    }
    /* @TODO this should not be visible until invoked */
    [data-contrast-mode=high] .header-search-container  {
        background-color: #000;
    }

}

/* fixes the header running out of margin and the logo getting squished */
@media screen and (min-width:992px) and (max-width:1048px){
    .menu-item-name a{
        font-size: .8em;
        padding: 1.2em 0.5em;
    }
}


/* PRINT STYLE */
@media print {
    /* styles here */
}

/*------------------------------------*\
#HOMEPAGE
\*------------------------------------*/

.one-of-three-cols {
    width: 30.3%;
    margin-right: 4.5%;
    float: left;
}

.two-of-three-cols {
    float: left;
    width: 65.20%;
    margin-right: 4.5%;
}

.half-of-two-of-three-cols {
    width: 46.50%;
    margin-right: 4%;
    float: left;
}

.one-of-two-cols {
    width: 47%;
    margin-right: 6%;
    float: left;
}

/* MA: first heading of first section should not have the green border */
section:first-of-type > h2:first-of-type, main h2.article-category {
    margin-top: 0;
    padding-top: 0;
    border-top: 0; }





/*------------------------------------*\
  #HOMEPAGE
  ##WHAT TO SEE & WHAT TO DO SECTION
\*------------------------------------*/

.whats-new {
    padding-top: 20px;
    background-color: #f6f6f6;
    border-top: 5px solid #7ac142;
}

.whats-new div img {
    margin-bottom: 20px;
    width: 100%;
}

.whats-new  h3 {
    color: #000;
}

.whats-new > a:hover h3,
.whats-new > a:hover span
{
    text-decoration-color: #7ac142;
    text-decoration: underline;
}

.whats-new a {
    display: block;
}

.whats-new a:focus {
    outline: 5px solid #7ac142;
}
/* event listing on home page */





/*------------------------------------*\
  #HOMEPAGE
  ##PLAN A VISIT & ADMISSION COLUMN
\*------------------------------------*/

@media only screen and (max-width: 600px) {

    .home-admission-block {
        margin-bottom: 30px;
    }

    #entry_homepage .home-pib {
        margin-top: 30px;
    }

    #entry_homepage .desktop-only {
        display: none;
    }

}

.home-admission-block {
    margin-bottom: 40px;
}

@media only screen and (min-width: 600px) {

    #entry_homepage .mobile-only {
        display: none;
    }

    .home-covid-icons img {
        max-width: 250px;
    }

    #entry_homepage .home_plan_visit {

        max-height: 280px;
    }

}

#entry_homepage .home_plan_visit {
    margin-bottom: 40px;
}

#entry_homepage dd, #entry_homepage dt {
    padding: 4px 0;
}





/*------------------------------------*\
  #HOMEPAGE
  ##PLANTS IN BLOOM SECTION
\*------------------------------------*/

.home-pib a {
    display:block;
}

.home-pib img {
    width: 100%;
}

.home-pib a:focus {
    outline: 5px solid #7ac142;
}




/*------------------------------------*\
  #HOMEPAGE
  ##CHERRYWATCH SECTION - not currently in use
\*------------------------------------*/

.home-cherrywatch a {
    display: block;
}

.home-cherrywatch a:focus {
    outline: 5px solid #7ac142;
}





/*------------------------------------*\
  #HOMEPAGE
  ##PLANTS & GARDENS BLOG SECTION
\*------------------------------------*/

.home-article-list {
    margin-top: 0;
}

.home-article-list ul li {
    margin-bottom: 40px;
    min-height: 75px;
}

.home-article-list a {
    display: inline-block;
    width: 100%;
}

.home-article-list a:focus {
    outline: 5px solid #7ac142;
}

.home-article-list a h3 {
    color:#000;
}

.home-article-list a:hover h3 {
    color: #7ac142;
    text-decoration: underline;
}

.home-article-list ul li a {
    text-decoration: none;
}

.home-article-list ul li img {
    width: 78px;

    float: left; }
.home-article-list ul li h3 {
    margin-left: 90px;
 }

.home-article-list.gardening-article-aside {
    width: 100%;
    margin-left: 0;}

#entry_homepage .home-article-list li:last-child {
    margin-bottom: 10px ;
}

#entry_homepage .home-article-list .readmore {
    margin-bottom: 2em;
}

#hp-upcoming-events .readmore {
    display: inline-block;
    margin-bottom: 2em;
}

#entry_homepage .home-bordertop {
    border-top: 5px solid #7ac142;
    padding-top: 30px;
}

/* two-column on tablet */

@media only screen and (max-width:64em) and (min-width:37.5em) {

    #entry_homepage .home-bordertop {
        border-top: none;
        padding-top: 0;
    }
}

/* not really homepage but bold style on visit page for today's hours */
#entry_visit #todaysHoursTag {
    font-weight: bold;
}





/*------------------------------------*\
  #HEROIMAGE
\*------------------------------------*/

.hero-image, .garden-stories-container {
    height: 400px;
    width: 100%;
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    background-size: cover;
}

.hero-image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-image h1, .hero-image .hero-text {
    font-family: 'ff-kievit-slab-web', serif;
    font-size: 42px;
    line-height: 52px;
    color: white;
    padding: 20px 40px;
    background-color: rgba(0, 0, 0, 0.4);
    border-bottom: 5px solid #7ac142;
    position: absolute;
    bottom: 0;
    left: 0;
    margin-left: 27%;
    width: 73%;
    z-index: 10;
}

.hero-image h1 a, .hero-text a {
    text-decoration: none;
    color: white;
    font-weight: normal;}


/* Hero text responsive styles */
@media (min-width: 600px) and (max-width: 1024px) {
    .hero-image .hero-text {
        margin-left: 30px;
    }
}

@media (max-width: 600px) {
    .hero-image .hero-text {
        width: 100%;
        margin: 0;
    }
}

/* prevents dragging of hero images to desktop */

.no-select {
    user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}




/*------------------------------------*\
  #HEROIMAGE for GARDEN STORIES
\*------------------------------------*/

/* removing the position absolute on garden stories pages */
.garden-stories-container img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    top: 0;
    left: 0;
}

.garden-stories-text-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.garden-stories-text-gray-box {
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.garden-stories-text {
    color: white;
    font-size: 3.2em;
    padding: 20px 40px;
    text-align: center;
    font-family: 'ff-kievit-slab-web', serif;
}






/*------------------------------------*\
  #IMAGES
\*------------------------------------*/

figure {
    margin: 0;
    position: relative;
}

figure.image-fullwidth {
    width: 100%;
    margin: 30px 0;
}

figure.image-fullwidth img {
    width: 100%;
}

.article-container article figure.image-left {
    width: 250px;
    float: left;
    margin-right: 25px;
    margin-bottom: 0;
}

.article-container article figure.image-left img {
    width: 100%;
}

/* make Flickr image containers the right size and do not reflow
the page when they are loaded
 */
.placeholder_4x3 {
    aspect-ratio: 4/3;
}

#diningimage, #weddingsimage, #corporateventsimage, .one-of-twocolumn-wide-image {
    margin-bottom: 30px;
    width: 100%;
}


/* make article images stay inside the container */
.article-container article img {
    max-width: 100%;
}

/* allowing images to be added via the wysiwyg with no image-fullwidth class */

.article-container article figure {
    margin-bottom: 30px;
}



/*------------------------------------*\
  #CAPTIONS
\*------------------------------------*/
figcaption {
    font-family: 'ff-kievit-slab-web', serif;
    font-size: 14px;
    margin-top: 10px;
}

/* fake figcaption style for photo credits */
.photo-caption {
    text-align: right;
    font-style: italic;
    font-family: 'ff-kievit-slab-web', serif;
    font-size: 14px;
}

/* fake figcaption style for image credits at bottom of page */
.image_credit {
    margin-top: 2em;
    font-style: italic;
    font-family: ff-kievit-slab-web,serif;
    font-size: 14px;
}

.image-description .attribution {
    display: none;
}
.pib-image-caption .image-description .attribution {
    display: inline-block;
}

.lightbox-gallery-caption {
    display: none;
}





/*------------------------------------*\
  #LIGHTBOX
\*------------------------------------*/


/* Arthur's new Bootstrap based galleries 2023 */

.bbg-gallery {
    margin-bottom: 2em;
}

.bbg-lightbox-link {
    position: relative;
}
.bbg-gallery img {
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
    height: auto;
}
.bbg-gallery .lightbox-open {
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 10px 30px 30px;
    background: linear-gradient(225deg, rgba(0,0,0,0.5) 50%, rgba(255,255,255,0) 50%);
}

.bbg-gallery .feature-flag {
    padding: 6px 8px 4px 8px;
}

@media (max-width: 576px) {

    /* Disable lightbox on mobile */
    a.bbg-lightbox-link {
        pointer-events: none;
        touch-action: none;
        cursor: default;
    }

}





/*------------------------------------*\
  #LIGHTBOX
  #inline images
\*------------------------------------*/

.inline-lightbox-wrapper figcaption{
    margin-bottom: 1em;
}
.inline-lightbox .lightbox-open {
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 10px 30px 30px;
    background: linear-gradient(225deg, rgba(0,0,0,0.5) 50%, rgba(255,255,255,0) 50%);
}


/*------------------------------------*\
  #IMAGES ON ARTICLE PAGES
\*------------------------------------*/

/*RX added font-decoration:none so that it doesn't get underlined*/
.article-container img.left-align {
    float: left;
    margin-right: 5%; }

/* in-line image on gardening articles like /gardening/article/japanese_garden_tools */
.garden-article-image-left{
    width:44%;
    float:left;
    margin:1% 4% 1% 0;
}





/*------------------------------------*\
  #PHOTOSET
\*------------------------------------*/

.photoset {
    overflow: hidden; }





/*------------------------------------*\
  #GREENEST BLOCK
\*------------------------------------*/

#greenest-block figure.image-fullwidth {
    margin: 30px 0 5px 0;
}

/* Related handbook embed. MA */
.single .handbook-image-list li {
    margin: 0;
    padding: 0;
    display: flex;
}

.content a.green-button.button {
    width: 150px;
}

/*------------------------------------*\
  #BLOG POST LISTS

  class is referenced in article-index.html
\*------------------------------------*/

.image-list-blog-ally li {
    display: block;
}

.image-list-blog-ally a {
    display: inline-block;
}

.image-list-blog-ally h2 {
    color: #000;
}

.image-list-blog-ally a:focus {
    outline: 5px solid #7ac142;
}

.image-list-blog-ally li {
    display: inline-block;
    padding: 10px 0;
    margin: 10px 0;
    border-top: 1px solid #d1d1d1; }
.image-list-blog-ally li a p,  .image-list-blog-ally li a h3 {
    color: #000;
    font-weight: 400;}
.image-list-blog-ally li a:hover h3 {
    text-decoration: underline;
    color: #7ac142;
}
.image-list-blog-ally li a:hover p,
.image-list-blog-ally li a:hover .learnmore{
    text-decoration: underline;
}
.image-list-blog-ally li.firstevent {
    border-top: 0; }
.image-list-blog-ally img {
    float: left;
    max-width: 35%;
    margin-right: 5%; }

.image-list-blog-ally .content {
    width: 60%;
    float: left; }

.image-list-blog-ally > li:first-child {
    border-top: 0; }

.image-list-blog-ally-min li .image-information {
    margin-bottom: 10px; }

/* mobile styles */
@media (max-width: 650px) {

    .image-list-blog-ally img {
        max-width: 100%;
        padding-bottom: 20px;
    }
    .image-list-blog-ally .content {
        width: 100%;
    }
}





/*------------------------------------*\
  #INLINE RIGHT IMAGE
  #Handbook inline image
  used to format in-line image here: support/save_the_sunlight_oppose_rezoning
  and in handbooks:  handbook/green_roofs
\*------------------------------------*/

.videoWrapper{
    position:relative;
    padding-bottom:56.25%;
    padding-top:25px;
    height:0;
    overflow:hidden;
    margin-bottom:4%;
}

.float-md-end figure { display: table; }
.float-md-end figcaption { display: table-caption; caption-side: bottom ; }

.videoWrapper iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}


/* Preserve a 66% aspect ratio on responsive video embeds. Thanks to http://fettblog.eu/blog/2013/06/16/preserving-aspect-ratio-for-embedded-iframes/ */
.aspect-ratio-embed {
    padding-bottom: 66%; /* this is the desired ratio ! */
    position: relative;
    width: 100%;
    height: 0;
}

.aspect-ratio-embed iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0; top: 0;
}

/* Press image sets, adjusts spacing of the MB display */

#press-image-set abbr[title] {
    border: 0;
    cursor: inherit;
    text-decoration: none;
}

#press-image-set abbr:before {
    content: "\00a0 ";
}



/*------------------------------------*\
  #NATURAL ATTRACTIONS - HABITAT HOVER IMAGES
\*------------------------------------*/

    .habitat-image-container {
        position: relative;
    }

    .habitat-image-container img {
        width: 100%;
        height: 100%;
        display: block;
    }

    .habitat-image-container .hover-img {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .habitat-image-container:hover .hover-img {
        opacity: 1;
    }

    /* disable hover effect on mobile devices - hover was clashing with habitat link */
    @media (max-width: 991px) {
        .habitat-image-container .hover-img {
            opacity: 0 !important; /* hide hover image */
        }

        .habitat-image-container:hover .hover-img {
            opacity: 0; /* disable hover effect */
        }
    }

/* this is extending the audio on the player on the page on mobile (just keeping all Pollinator Lounge css together) */
    @media (max-width: 635px) {
        .pollinators-section audio {
            width: 95%;
        }
    }


/* override browser bolding h4 in glightbox */
.gslide-title {
    font-weight: normal;
}



/*------------------------------------*\
  #LAYOUT
\*------------------------------------*/
.content_container {
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 20px;
    width: 100%;
    max-width: 1095px;
    margin: 0 auto;
    position: relative;
}



/*------------------------------------*\
  #COLUMNS
\*------------------------------------*/
.last-column, .related-materials aside:nth-child(2) {
    margin-right: 0 !important; }


/* uneven one of two column style */

@media (min-width: 601px) {

    .one-of-two-cols-uneven {
        width: 62%;
        margin-right: 6%;
        float: left;
    }

    .one-of-two-cols-uneven.last-column {
        width: 31.9%;
        margin-right: 0;
        float: left;
    }

}

/*------------------------------------*\
  #COLUMNS
  #THREE-COLUMN INLINE BULLETED TEXT (like on /collections/gardens/celebrity_path)
\*------------------------------------*/
.gardens-three-column-section{
    overflow:auto;}
.gardens-three-column{
    float:left;
    width:28%;
    margin-right:4%;}
.gardens-three-column-last{
    float:left;
    width:28%;
    margin-right:0;}





/*------------------------------------*\
  #COLUMNS
  #two-column callout (ex: /gardening/article/how_to_grow_ferns)
\*------------------------------------*/
.callout-block-two-column {
    overflow: auto;
    background: rgba(76, 140, 209, 0.2);
    padding: 15px;
    margin-bottom: 15px;
}

ul.articles-columns-two {
    float: left;
    width: 45%;
    padding-right: 5%;
    margin: 0;
}

.clear {
    clear: both;
}




/*------------------------------------*\
  #COLUMNS
  #two-column image-and-content module
  #You May Also Be Interested (/support/corporate) In or About Person block (visit/event/shinnecock_plant_oral_history_tour)
\*------------------------------------*/
.thumbnail-list > li {
    min-height: 195px;
    margin-top: 5px; /* for outline to display */
    margin-bottom: 20px;
}

.thumbnail-list > li:not(:last-child) {
    padding: 0 0 20px 0;
    border-bottom: 1px solid #d1d1d1;
}






/*------------------------------------*\
  #FEATURES
  #left menu on content pages
\*------------------------------------*/

.left-nav .expanded .active {
    font-weight: bold;
}

.left-nav > a {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 5px 0;
    padding: 10px;
    display: block;
    color: #000;
    text-decoration: none;
}

.left-nav > ul > li > a {
    font-family: 'ff-kievit-slab-web', serif;
    line-height: 27px;
}

.left-nav a:focus {
    outline: 5px solid #7ac142;
}

.left-nav {
    width: 21.6%;
    float: left;
    margin-right: 4.56%; }
.left-nav .selected > a {
    font-weight: bold;
    color: #000;
}
.left-nav li a, .link-heading {
    font-weight: normal;
    color: black;
    text-decoration: none;
}

.left-nav li a:hover {
    text-decoration: underline;
    color: #7ac142;
}

.left-nav > ul > li a:focus {
    outline: 5px solid #7ac142;

}
.left-nav > ul > li > a {
    font-size: 15px;
    padding: 10px 0 10px 10px;
    display: block;
    border-bottom: 3px solid transparent;
}
.left-nav > ul > li.selected > a {
}

.left-nav > ul > li > ul > li {
    font-size: 13px;
    line-height: 22px;
    margin-left: 15px;
}

.left-nav > ul > li > ul > li > a {
    border-bottom: 3px solid transparent;
    display: block;
    padding: 6px;
}

.left-nav > ul > li > ul > li.selected a {
    color: #000; }

.left-nav .view-more {
    text-decoration: underline;
}

main.with-left-nav {
    width: 73.84%;
    float: left;
}

.with-left-nav h2, section#greenButton, .article-body h2 {
    border-top: 5px solid #7ac142;
    padding-top: 40px;
    margin-top: 70px; }

.with-left-nav a, #entry_homepage.content_container a, .related-materials a {
    text-decoration: none; }
.with-left-nav a:hover, #entry_homepage.content_container a:hover, .related-materials a:hover {
    text-decoration: underline; }

.article-container figure, .article-container p {
    width: 82.4%; }

.gardening-article-container figure, .gardening-article-container p {
    width: 100%; }

img.person-photo {
    float: left;
    margin: 0 1em 0.2em 0;
}





/*------------------------------------*\
  #FEATURES
  #share prompt next to social buttons
\*------------------------------------*/
.share-this-article {
    font-family: 'ff-kievit-web', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
    font-weight: bold;
    display: inline-block;
    margin-right: 14px;
    position: relative;
    top: 2px;
}





/*------------------------------------*\
  #HOURS & ADMISSIONS
  #table

\*------------------------------------*/

/* relates to Ticket Prices table on this page  */

dt, dd {
    margin: 0;
    border-top: 1px solid #ddd;
}

dt.no-border, dd.no-border {
    border: none; }


dl.inline-definition {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

#entry_homepage #admission-info p {
    margin: 0 0 5px 0;
}

/* definition lists on hours page */

.inline-definition dt, .inline-definition dd {
    padding-top: 15px;
    padding-bottom: 10px;
}






/*------------------------------------*\
  #GARDENING/HOW-TOS PAGE
  #MAIN FEATURE IMAGE + BLURB
\*------------------------------------*/

/* gardening how to article page */

@media (min-width: 601px) {
    .featured-howto > .photo {
        float: left;
        width: 45%;
        margin-right: 5%;
    }

    .featured-howto .content {
        width: 50%;
        float: left;
    }

}




/*------------------------------------*\
  #Two-up Article Modules (example: /collections/gardens/childrens_garden)
\*------------------------------------*/

.twoup-article-teaser {
    border-top: 5px solid #7ac142;
    border-left: 1px solid #7ac142;
    border-right: 1px solid #7ac142;
    border-bottom: 1px solid #7ac142;
    margin-bottom: 30px;
}

.twoup-article-teaser .module-content {
    background-color: #fff;
}

.twoup-article-teaser .module-card {
    height: 200px;
}

.twoup-article-teaser img {
    -o-object-fit: cover;
       object-fit: cover; /* also try 'contain' and 'cover' */
    width: 100%;
    height: 100%;
}

.twoup-article-teaser .blue-button {
    margin-top: 10px;
}

.twoup-article-teaser .blue-button span {
    color: #4c8cd1;
    background-color: white;
    border-radius: 200%;
    padding: 8px 6px 3px 8px;
    margin-left: 10px;
}

.twoup-article-teaser a {
    color: #000;
    font-weight: initial;
}
/* end new two-up style */






/*------------------------------------*\
  #TOURS & SUGGESTED ITINERARIES PAGE
  #SUGGESTED ITINERARIES SECTION
\*------------------------------------*/

.visit-suggested-itineraries p {
    color: #000;
    font-weight: initial;
}

.visit-suggested-itineraries h3 {
    color: #000;
}

.visit-suggested-itineraries a:hover h3 {
    color: #7ac142;
    text-decoration: underline;
    text-decoration-color: #7ac142;
}

.visit-suggested-itineraries a:hover .learnmore,
.visit-suggested-itineraries a:hover p {
    text-decoration: underline;
    text-decoration-color: #7ac142;
}

.visit-suggested-itineraries li:focus-within {
    outline: 5px solid #7ac142;
}

.visit-suggested-itineraries a {
    outline: none;
}







/*------------------------------------*\
  #GARDENING/ARTICLE

  gardening how-to article layout
\*------------------------------------*/

/* Page: Gardening Article */
main.with-left-nav.gardening-article-container {
    width: 47.3%;
    float: left;
}

.byline {
    margin-top: 10px;
    display: block;
    font-family: 'ff-kievit-slab-web', serif;
    font-size: 14px;
    margin-bottom: 40px; }

#breadcrumbs a {
    display: inline-block; }

.article-breadcrumbs a, .article-breadcrumbs {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: normal;
    color: black;
    font-size: 12px;
    margin-bottom: 5px;
    line-height: 14px;
}

.about-author p {
    font-style: italic;
    font-size: 15px;
    line-height: 22px;
    margin-top: 2em;
}

.about-author p em, p.about-author p i {
    font-style: normal;
}

.related-blog-posts-article {
    border-top: 1px solid black;
    padding-top: 40px;
    margin-top: 60px;
}

.related-blog-posts-article h3 {
    font-family: 'ff-kievit-web', sans-serif;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase; }

.related-blog-posts-article .related-blog-post {
    width: 29.3%;
    margin-right: 6%; }

/* MA: hide the whole box if there are no related articles */
aside.related-blog-posts-article:empty {
    display: none;
}

.gardening-article-container .related-blog-posts-article article {
    width: 47%; }


.gardening-article-container .related-blog-posts-article article:last-of-type, .event-container .related-blog-posts-article article:last-of-type {
    margin-right: 0;
}

/*------------------------------------*\
  #COMMUNITY

/*------------------------------------*\
  #HANDBOOK table of contents unordered list
\*------------------------------------*/

ul.bbg_handbook{
    padding-left:30px;
    margin:0;
    width:82.4%;}
ul.bbg_handbook li {
    list-style-type: none; }


/*------------------------------------*\
  #LINES
\*------------------------------------*/
/* overrides to show rules at top or bottom if necessary */

.hairline-top > li:first-child {
    border-top: 1px solid #d1d1d1;
    padding: 20px 0 20px 0;
}

/* thin gray hairline on non-li */
.hr-hairline {
    border-top: 1px solid #d1d1d1;
    height: 0;
    background-color: transparent;
    border-bottom: none;
    padding: 10px 0 10px 0;
    margin: 0;
}

.hairline-bottom > li:last-child {
    border-bottom: 1px solid #d1d1d1;
}

/* Column helper classes */

@media (min-width: 768px) {
    .column-two {
        -moz-column-count: 2;
             column-count: 2;
    }
}


/* Lightscape table styles */

table {
    caption-side: bottom;
    border-collapse: collapse;
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

.table {
    --bs-table-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: #212529;
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: #212529;
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: #212529;
    --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    vertical-align: top;
    border-color: #dee2e6;
}
.table > :not(caption) > * > * {
    padding: 0.5rem 0.5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > tbody {
    vertical-align: inherit;
}
.table > thead {
    vertical-align: bottom;
}
.table > :not(:last-child) > :last-child > * {
    border-bottom-color: currentColor;
}

.caption-top {
    caption-side: top;
}

.table-sm > :not(caption) > * > * {
    padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
    border-width: 1px 0;
}
.table-bordered > :not(caption) > * > * {
    border-width: 0 1px;
}

.table-borderless > :not(caption) > * > * {
    border-bottom-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color);
}

.table-active {
    --bs-table-accent-bg: var(--bs-table-active-bg);
    color: var(--bs-table-active-color);
}

.table-hover > tbody > tr:hover {
    --bs-table-accent-bg: var(--bs-table-hover-bg);
    color: var(--bs-table-hover-color);
}

.font-numeric {
    font-variant-numeric: lining-nums;
}



@media only screen and (max-width:40em) {
    .vidheader {
        height: 30vh;
    }
}

/* LIGHTSCAPE VIDEO HEADER */

.vidheader {
    position: relative;
    background-color: black;
    height: 65vh;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
}

.vidheader video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
}

.vidheader .container {
    position: relative;
    z-index: 2;
}



.vidheader .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0;
    z-index: 1;
}

/* hide desktop header on mobile */
@media screen {
    @media (max-width: 1024px) {
        #desktop-video {
            display: none;
        }
        #mobile-video {
            height: 177.77777778vh;
            width: 56.25vw;
        }
    }
}

/* show mobile header on mobile */
@media screen {
    @media (min-width: 1024px) {
        #mobile-video {
            display: none;
        }
        #desktop-video {
            height: 56.25vw;
            width: 177.77777778vh;
        }
    }
}


/* vimeo version */

.vimeo-wrapper iframe {
    box-sizing: border-box;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
}

/* placeholder image */

.vimeo-wrapper img {
    box-sizing: border-box;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
}

@media screen {
    @media (min-width: 1024px) {
        .vimeo-wrapper img {
            height: 56.25vw;
            width: 177.77777778vh;
        }
    }

    @media (max-width: 1024px) {
        #mobile-video {
            height: 177.77777778vh;
            width: 56.25vw;
        }
    }
}


.lightscapelogocontainer {
    background-color: rgba(0,0,0,0.6);
    max-width: 620px;
    margin: 0 auto;
    padding: 25px;
}

.lightscapelogocontainer .button {
    font-size: 17px;
}

#lightscapeLodgeDatePicker {
    padding: 11px 6px;
    border-radius: 0;
    border-color: #7ac142;
    border-width: 2px;
    height: 47px;
    margin-right: 2px;
}

/* Lightscape calendar date toggle on mobile */

.lightscapeButtons button {
    background: #fff;
    border: 2px solid #ccc;
    padding: 5px 10px;

}

.lightscapeButtons button:hover {
    background: #fff;
    border: 2px solid #000;
    padding: 5px 10px;

}


.lightscapeButtons button.active {
    background: #227de0;
    color: white;
    border: 2px solid #227de0;
    padding: 5px 10px;

}
/*------------------------------------*\
  #MAP CANVAS
\*------------------------------------*/

#map-canvas {
    width: 100%;
    height: 400px;
    margin-bottom: 30px; }

/*------------------------------------*\
  #MAP
  #gardens and collections page
\*------------------------------------*/

@media (min-width: 700px) {

    .gardens-map-key ol {
        width: 79%;
        -moz-column-count: 3;
             column-count: 3;
        float: left;

    }
    .gardens-map-key ol li {
        max-width: 140px;
    }
}

@media only screen and (max-width:43.75em) and (min-width:31.25em) {

    .gardens-map-key ol {
        -moz-column-count: 2;
             column-count: 2;
        width: 100%;
    }
    .gardens-map-key ol li {
        max-width: 180px;
    }
}

@media (max-width: 500px) {
    .gardens-map-key ol {
        width: 100%;
        -moz-column-count: 1;
             column-count: 1;
    }
}

/*------------------------------------*\
  #MAP
  #GREENEST BLOCK
\*------------------------------------*/

.bbg-map-popup {
    text-align: center;
}
.bbg-map-popup span {
    font-family: 'ff-kievit-web', sans-serif;
    font-weight: bold;
    font-size: 18px;
}

.bbg-map-popup {
    font-size: 14px;
}





/*------------------------------------*\
  #MAP
  #OPENLAYERS
\*------------------------------------*/

/* OpenLayers map styling */


/* mobile units in vh to fit screen correctly */
@media only screen and (max-width: 768px) {
    .map {
        height: 400px;
        width: 100%;
    }
}

/* desktop override */
@media only screen and (min-width: 768px) {
    .map {
        height: 400px;
        width: 100%;
    }
}



/* position the rotate control lower than usual */
.map .ol-rotate {
    top: 0.5em;
}

.map .ol-full-screen {
    top: 3em;
}
.popover-body {
    font-family: ff-kievit-web,sans-serif;
}

.map .ol-locate {
    right: 0.5em;
    bottom: 0.5em;
}

.map .locate-active {
    color: #7fff00;
}

.map-headline {
    font-size: 17px;
    font-weight: bold;
}

/* Openlayers 2023 vector based garden map and legend */

.gardenmap-legend .col {
    font-size: 15px;
}

.gardenmap-legend a {
    display: block;
    height: 100%;
    width: 100%;
}

#gardenmap_cancel_selection i {
    font-size: 24px;
    vertical-align: middle;
    display: inline-block;
    margin-left: 6px;
}

.gardenmap-pathwrapper {
    display: inline-block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    border-radius: 15px;

    background-color: #B2D235;
    color: white;
    text-align: center;
    font-size: 1em;
    margin-right: 10px;
}

.gardenmap-legend img {
    margin-right: 3px;
}

.gardenmap-legend-link {
    background-color: #4c8cd1;
}

.gardenmap-description {
    font-weight: initial;
}

.gardenmap-legend-link {
    color: white;
    padding: 10px;
}

.gardenmap-legend-moretext {
    font-weight: bold;
    text-decoration: underline;
}

.gardenmap-legend-link a {
    color: white;
    width:100%;
    height:100%;
}


/*------------------------------------*\
  #UNEVEN COLUMN SETTINGS
  #two-column desktop layout or single column flex layout
  #this uneven style is for pages like the cherries page
\*------------------------------------*/

@media (min-width: 601px) {
    #entry_cherries .one-of-two-cols {
        width: 62%;
    }

    #entry_cherries .one-of-two-cols.last-column {
        width: 31.9%;
    }

    #entry_kids_and_families .one-of-two-cols {
        width: 62%;
    }

    #entry_kids_and_families .one-of-two-cols.last-column {
        width: 31.9%;
    }

    .flexbox .flexpage > section, .flexbox .one-of-two-cols section#hp-garden-news-blog {
        width: 100%;
    }

    .flexbox .one-of-two-cols > section, .flexbox .one-of-two-cols section#hp-garden-news-blog {
        float: none;
    }

    .no-flexbox section {
        clear: both;
    }
}





/*------------------------------------*\
  #TABLET STYLES
\*------------------------------------*/
@media (max-width: 1028px) {

    #mobile-search {
        display: inline-block;
        position: absolute;
        width: 30px;
        height: 30px;
        top: 13px;
        right: 19px;
        color: #fff;
        font-size: 33px;
    }

    #mobile_search {
        display: none; }

    .two-of-three-cols {
        width: 100%;
        float: none;
        margin-right: 0; }

    #search {
        width: 100%;
        top: 68px; }

    .lightbox-gallery aside div {
        padding-left: 0; }

    #hp-pib {
        margin-top: 30px; }

    .with-left-nav figure, .with-left-nav p {
        width: 100%; }

    .article-module-1 {
        width: 54.91%; }

    .article-module-2, .article-module-1:nth-of-type(2) {
        width: 37.57%; }

    .left-nav {
        display: none; }

    main.with-left-nav {
        width: 100%; }

    main.with-left-nav.gardening-article-container {
        float: none;
        margin-left: 10%;
        width: 75%; }

    main.article-container {
        float: none;
        margin-left: 10%;
        width: 75%; }

    .one-of-three-cols {
        width: 100%;
        float: none;
        margin-top: 60px; }

    #hp-garden-news-blog {
        width: 47.75%;
        float: left; }

    #search {
        display: none; }

    .gardening-aside-wrapper {
        float: left;
        width: 47.7%;
        margin-right: 4.5%; }

    .gardening-article-aside #gardening-howtos li, .gardening-article-aside #gardening-more-blog li {
        float: left;
        width: 47%;
        margin-right: 5%; }

    .gardening-article-aside #gardening-howtos li:nth-child(2n), .gardening-article-aside #gardening-more-blog li:nth-child(2n) {
        margin-right: 0; }

    .gardening-article-aside #gardening-more-blog, .gardening-article-aside #gardening-howtos {
        clear: both; }

    /* Garden Articles: JR */
    .garden-article-image-left{
        width:28%;}
    /* Handbooks: JR */
}


/*do not apply mobile styles to printed pages AM 6-22/2018 */
@media not print{
    @media (max-width: 800px) {
        /* Garden Articles: JR */
        .garden-article-image-left{
            width:38%;}
        /*Holiday Tree Key: JRO*/
        .holiday-tree-column-two{
            width:36%;
            margin-right:7%;}
        .holiday-tree-column-one{
            width:36%;  }
        /* Greenbridge: JRO */
        .greenest-right-column{
            width:62%;}

        /* Responsive table, responsive part */
        /* Force table to not be like tables anymore */
        table.responsive, table.responsive thead, table.responsive tbody, table.responsive th, table.responsive td, table.responsive tr {
            display: block;
        }

        /* Hide table headers (but not display: none;, for accessibility) */
        table.responsive thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

        table.responsive tr { border: none; }

        table.responsive td {
            /* Behave  like a "row" */
            border: none;
            border-bottom: 1px solid #ccc;
            position: relative;
            padding-left: 50%;
        }

        table.responsive td:before {
            /* Now like a table header */
            position: absolute;
            /* Top/left values mimic padding */
            top: 6px;
            left: 6px;
            width: 45%;
            padding: 0 10px 0 0;
            white-space: nowrap;
            text-align: left;
        }

        /* 	make first line of each entry bold */
        table.responsive td:nth-of-type(1){
            font-weight: bold;
        }

        /*  making ui-selectmenu work with new jquery-ui version AM 11/30/18  */
        .datepicker .ui-selectmenu-button{
            padding-bottom: 12px;
        }
        .ui-selectmenu-text{
            margin-left: 12px;
            margin-top: 8px;
        }
        /* 	end ui-selectmenu changes	 */
    }
}

/*------------------------------------*\
  #MOBILE STYLES
\*------------------------------------*/
@media not print {

    @media (max-width: 600px) {
        .content_container {
            padding-left: 10px;
            padding-right: 10px; }

        .slide {
            height: 300px; }

        .hero-image {
            max-height: 43vh;
            background-position: center;
        }

        .hero-image {
            margin-bottom: 30px;
            height: 400px;
            clear: both; }

        .left-nav {
            display: none; }

        main.with-left-nav {
            width: 100%; }

        .with-left-nav figure, .with-left-nav p {
            width: 100%; }

        /* Footer */
        footer section {
            width: 100%;
            float: none;
            margin-bottom: 30px;
            border-bottom: 1px solid #a3a3a3;
            padding-bottom: 30px; }

        /* Homepage */
        .half-of-two-of-three-cols {
            width: 100%;
            float: none; }

        .last-column, .related-materials aside:nth-child(2) {
            margin-bottom: 0 !important;
            padding-bottom: 0 !important;
            border-bottom: 0 !important; }

        .one-of-three-cols {
            width: 100%;
            float: none;
            margin-top: 0; }

        #hp-pib, #hp-garden-news-blog {
            width: 100%;
            /*margin-top: 60px; }*/
        }

        .one-of-two-cols {
            float: none;
            width: 100%;
            overflow: hidden;
            margin-right: 0; }

        figcaption.default-hero {
            float: none;
        }

        .hero-image .hero-text, .hero-image h1 {
            font-size: 26px;
            line-height: 32px; }

        h2 {
            font-size: 18px; }

        p {
            font-size: 17px;
            line-height: 27px; }

        .article-module-1 {
            width: 100%;
            margin-right: 0; }
        .article-module-1:nth-of-type(2) {
            width: 100%;
            margin-right: 0; }

        .article-module-2 {
            width: 100%;
            margin-right: 0; }

        .article-module-1 {
            margin-bottom: 30px; }

        .with-left-nav h2, .with-left-nav .one-of-two-cols.last-column h2 {
            padding-top: 20px;
            margin-top: 40px; }

        .with-left-nav .one-of-two-cols.last-column h2 {
            border-top: 5px solid #7ac142;}

        .related-materials {
            margin-top: 40px;
            padding-top: 30px; }

        footer #bottom-footer {
            text-align: center; }

        .pagination li a {
            padding: 6px 10px; }

        /* Japanese Garden */

        main.with-left-nav, .hero-image h1 {
            margin-left: 0; }

        /* Education */
        .education-section ul.two-columns li {
            width: 100%;
            margin-right: 0;
            margin-bottom: 30px; }

        .education-section .more-resources {
            margin-top: 30px; }

        /* Greenbridge: JRO */
        .mbb-box{
            padding-top:0;
            line-height:13px;}
        .greenest-left-column img{
            float:none;
            margin:0 auto;
            display:block;}
        .sponsorship img{
            width:90%;
            margin-bottom:5%;}

        /* Subgarden Pages */
        .gardens-three-column{
            width:100%;}
        .gardens-three-column-last{
            width:100%;}

        /*Holiday Tree Key: JRO*/
        .holiday-tree-column-one{
            float:none;
            clear:both;
            margin:0 auto !important;
            width:60%;}
        .holiday-tree-column-two{
            float:none;
            clear:both;
            margin-right:auto;
            margin-left:auto;
            margin-top:10%;
            width:60%;}
        .holiday-left{
            width:100%;
            float:none;
            clear:both;}
        .holiday-left img{
            margin:0 auto;
            display:block;}

        footer #bottom-footer a {
            display: block;
            border-right: 0;
            padding-right: 0;
            margin-right: 0; }

        #bloom-calendar {
            float: none;
            margin-left: 0; }

        footer .last-column button span {
            display: none; }

        #social-buttons a {
            margin-right: 8px; }

        #bloom-calendar {
            display: none; }

        /* Gardening Article */
        .gardening-article-aside {
            width: 100%;
            margin: 30px 0 0 0; }

        .share-this-article {
            float: none; }

        main.with-left-nav.gardening-article-container, main.article-container {
            margin: 0;
            width: 100%; }

        .gardening-article-aside #gardening-howtos li, .gardening-article-aside #gardening-more-blog li {
            float: none;
            width: 100%;
            margin-right: 0; }
        .gardening-article-aside #gardening-howtos li:nth-child(2n), .gardening-article-aside #gardening-more-blog li:nth-child(2n) {
            margin-right: 0; }

        .with-left-nav .comments h2 {
            margin-top: 0;
            padding-top: 0; }

        .gardening-article-container .related-blog-posts-article article, .event-container .related-blog-posts-article article {
            width: 100%;
            margin-bottom: 1.5em; }


        /*Garden Article Img: JRO*/
        .garden-article-image-left{
            width:100%;
            margin:0 0 4% 0;}
        .garden-article-mobile-image{
            margin:0 auto;
            width:68%;}

        .module-photo img {
            height: 100%;
            max-height: 100%; }

        img.person-photo {
            float: none;
            margin: 0.4em;}

        /* .gardening-article-container .related-blog-posts-article article:nth-of-type(2) {
           display: none; } */
        /* Hero Images for Mobile */
        .default-hero {
            background-image: url("/img/uploads/hero/_mobile_hero_regular/lab-building_4446115550.jpg");
        }

        .japanese-garden {
            background-image: url("/img/new-site-images/placeholder-img/japanese-garden-mobile.png"); }

        .homepage-slider {
            background-image: url("/img/new-site-images/placeholder-img/Support-A-Greener-Garden-mobile.jpg");
        }

        .pib-hero {
            background-image: url("/img/new-site-images/placeholder-img/pib-mobile.png");
        }

        /*RX edit: New Hero Images for Mobile*/
        .visit-tours-hero {
            background-image: url("/img/new-site-images/visit/tours_itineraries_hero_mobile.jpg");
        }

        ul#howtos-index > li a.photo, ul.article-index-list > li a.photo {
            min-height: 0;
            width: 100%;
            margin-bottom: 0.7em;
        }

    }
} 	    /*end @media not print  AM */

/* used for bbg print logo div in header.html */
.onlyForPrint{
    display: none;
}

/* added by AM 6/2018 */
@media print{

    /* displays bbg print logo div in header.html */
    .onlyForPrint{
        display: block;
        margin: 20px 20px 20px 20px;

    }

    /*  Display the print logo image */
    .print-bbg-logo {
        display: block;
        filter: invert(1);
        padding: 0;
    }

    .print-bbg-logo {
        width: 2in;


    }

    nav,
    footer,
    aside,
    .related-materials,
    .submit-comment-form,
    .share-this-article,
    .social-buttons,
    .social-buttons-grey,
    .social-icons,
    .zoom-photo,
    .zoom-bg,
    .comments,
    .feature-flag {
        display: none;}

    .hero-image{
        position:relative;
        left: -9999px;
        height: 100px;
        margin-bottom: 10px;
    }
    .hero-image .container-no-float{
        position: relative;
        left: 9999px;
    }
    .hero-image h1{
        /* 		border-bottom: none !important; */
        font-size: 45px;
        margin-left: 2%;
        width: 100%;
    }

    .content_container {
        width: 90%;
        margin-left: 10px;
    }

    .callout-block .callout-block-green{
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    figcaption.default-hero {
        display: none !important;
    }

    figure.image-fullwidth img{
        width: 75%;
    }

    /* Event Calendar */
    .event-filters{
        display: none !important;
    }
    p.printURL  a[href]:after {
        content: " (bbg.org" attr(href) ")" !important;
        word-wrap: break-word;
        hyphens: auto;
    }
    .printH1-WithOut-GreenRule{
        border-bottom: none !important;
    }



    /* 	Gardening How-To and Blog articles */
    main.with-left-nav.gardening-article-container {
        width: 95%;
    }

    .printWith-H2-Styling{
        font-size: 20px !important;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 25px;
        font-family: 'ff-kievit-web', sans-serif;
    }

    /* Home page */
    .flexslider{
        display: none;
    }

    /* Plants in Bloom */
    .accordion:not(#bloom_times) .content{
        display: block !important;
        height: auto !important;
    }

    /*Adding page margins for all pages */
    @page {
        margin: 2cm;
    }

}
/* 	end added by AM 6/2018 */
/*------------------------------------*\
  #ULs do not need the bbg_list class in the articles section
  /article/ask_a_gardener_spring_edition
\*------------------------------------*/

.article-body ul {
    margin: 0 0 15px 0;
}

.article-body ul:not(.thumbnail-list) li {
    list-style-type: disc;
    margin: 4px 0 4px 30px;
}

.article-body ul.thumbnail-list {
    padding-left: 0;
}

/* larger body font size on articles */

.article-body p {
    font-size: 18px;
}

.article-body ul,
.article-body ol {
    font-size: 18px; 
}

/* special series promo boxes */

.border-top, .border-bottom {
    border-top: 1px solid #4D4D4D;
    border-bottom: 1px solid #4D4D4D;
}

/*------------------------------------*\
  #HOlIDAY TREE

  /gardening/article/holidaytree
\*------------------------------------*/
.holiday-tree-section{
    display:block;}
.holiday-image{
    border:2px solid #7ac142;
    padding:4% 12%;}
.holiday-tree-column-one{
    float:left;
    width:40%;}
.holiday-tree-column-two{
    float:right;
    width:40%;
    margin-right:1%;}
.holiday-left{
    float:left;
    margin:0 5% 5% 0;}


/*------------------------------------*\
  #FOR THE BIRDS STYLES
\*------------------------------------*/

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* For the Birds hero image, Natural Attractions hero */
.ftb-header, .pollinator-header, .pollinator-lounge {

    /* Position and center the image to scale nicely on all screens */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

@media only screen and (max-width: 600px) {
    .ftb-header {
        /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
        background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("https://www.bbg.org/img/uploads/inline/heron-tall.jpg");

        /* Set a specific height */
        height: 100%;
    }

    .pollinator-header {
        /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
        background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("https://www.bbg.org/img/uploads/inline/natural-attractions_EP_44235550064_tall.jpg");

        /* Set a specific height */
        height: 100%;
    }


    .pollinator-lounge {
        /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
        background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("https://www.bbg.org/img/custom/pollinatorlounge/hero_mobile.jpg");

        /* Set a specific height */
        height: 100%;
    }

}

@media only screen and (min-width: 600px) {
    .ftb-header {
        /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
        background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("https://www.bbg.org/img/uploads/inline/heron-wide.jpg");

        /* Set a specific height */
        height: 65vh;
    }

    .pollinator-header {
        /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
        background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("https://www.bbg.org/img/uploads/inline/natural-attractions_EP_44235550064_wide.jpg");

        /* Set a specific height */
        height: 65vh;
    }
    .pollinator-lounge {
        /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
        background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("https://www.bbg.org/img/custom/pollinatorlounge/hero_desktop_img.jpg");

        /* Set a specific height */
        height: 65vh;
    }


}

/*------------------------------------*\
  #POWER OF TREES STYLES
\*------------------------------------*/

/* For the Birds hero image */
.power_of_trees-header {

    /* Position and center the image to scale nicely on all screens */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

@media only screen and (max-width: 600px) {
    .power_of_trees-header {
        /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
        background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("https://www.bbg.org/img/uploads/inline/Power_of_Trees_Illustration_MJ_tall.jpg");

        /* Set a specific height */
        height: 100%;
    }

}

@media only screen and (min-width: 600px) {
    .power_of_trees-header {
        /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
        background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("https://www.bbg.org/img/uploads/inline/Power_of_Trees_Illustration_MJ.jpg");

        /* Set a specific height */
        height: 65vh;
    }

}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.feature_page h2.noborder {
    border-top: none;
}

.feature_page h2 {
    border-top: 5px solid #7ac142;
    padding-top: 40px;
    margin-top: 70px;
}





/*------------------------------------*\
  #TREE TOUR
\*------------------------------------*/

#tour-container {
    min-height: 170px;
    padding-bottom: 25px;
}

#entry_tree_tour .leaflet-popup-content img {
    margin: 0 auto;

}


@media only screen and (max-width:600px) {

    #entry_tree_tour #map-canvas {
        height: 370px;
    }

}

@media only screen and (min-width:600px) {

    #entry_tree_tour #map-canvas {
        height: 400px;
    }

}


#tour-container img {
    max-width: 100%;

}

@media only screen and (max-width:600px) {

    .leaflet-popup-content img {display: none;}

}

.leaflet-popup-content img {

    width: 130px;
    height: 130px;
    margin: 0 auto;
}

.leaflet-bar-part .fa-map-marker {
    margin-left: -7px;
    font-size: 20px;
}






/*------------------------------------*\
  #MEMBER LOOKUP TOOL page styles
\*------------------------------------*/

.member-lookup , .member-email-submit {
    margin: 20px 0;
}

.member-lookup input {
    width: 100%;
    padding: 8px;
}

.member-lookup button, #member-email-submit button {
    margin-top: 20px;
}

#member-email-submit input, #member-email-submit button, #member-email-submit label  {
    display: none;
}
.member-lookup  input[type=text], .member-email-submit input[type=text]{
    border: 1px solid #ccc;
}

.member-email-submit input[type=email] {
    border: 1px solid #ccc;
    padding: 8px;
    width: 100%;
}

input[name="memberemail"], input[name="memberid"] {
    margin-bottom: 20px;
}

.messages .fa-2x {
    text-align: center;
}

.icon-access {
    width: 36px;
    height: 36px;
    margin-right: 5px;
}

.icon-inline {
    display: inline-block;
}
/* override for overzealous article styles */
.article-container article .icon-inline {
    display: inline-block;
}







/*------------------------------------*\
  # /BRAND

   styles for bbg.org/about/brand
\*------------------------------------*/

.brand-container {
    float:left;
    height: 380px;
}

.brand-item {
    width: 170px;
    height: 240px;
    margin-right: 20px;
    padding: 200px 20px 20px 20px;
    background-image: url("/img/uploads/about/brand_white_bg.svg");
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
}

.brand-desc {
    font-size: 17px;
    padding-top: 10px;
    font-feature-settings: "tnum";
    font-variant-numeric: lining-nums;
}

.brand-logo-container {
    float: left;
    width: 350px;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 20px;

}

.brand-logo-container p {
    margin-top: 1em;
}

.brand-logo-container img {
    padding: 3em;
}

.learnmore {
    color: #7ac142;
    font-weight: bold;
}

/* Dining at the Garden page */

dl.cafe-menu dt {
    font-size: 17px;
    width: 100%;
    margin: 0;
    font-weight: bold;
    border: none;
}

dl.cafe-menu dd {
    font-family: 'ff-kievit-slab-web', serif;
    margin: 0;
    padding: 0 0 15px 0;
    border: none;

}

dl.cafe-menu {
    margin: 0;
}

.cafe-menu-inline li {
    font-family: ff-kievit-slab-web,serif;
    padding: 0;
    line-height: 1.4;
    margin-bottom: 12px;
}

/*------------------------------------*\
  #Blog posts sidebar for articles
\*------------------------------------*/

.sidebar_link_list li {
    margin-bottom: 6px;
    font-size: 15px;
}

.sidebar_link_list li a {
    color: black;
    font-weight: 400;
    display: block;

}

.sidebar_link_list li a:hover {
    text-decoration: underline;

}
/*------------------------------------*\
  #Related Materials: wraps the two-column related articles module above the footer
\*------------------------------------*/

.related-materials {
    margin-top: 40px;
    padding-top: 60px;
    border-top: 1px solid #666;
}

section.related-materials h3 {
    font-family: 'ff-kievit-web', sans-serif;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 22px;
    letter-spacing: 2px;
    font-size: 18px;
    text-transform: uppercase;
}

section.related-materials p {
    font-size: 13px;
    line-height: 18px;
}


section.related-materials img {
    max-width: 141px;
    width: 100%;
}

.related-materials .gardens-and-conservatories img,
.related-materials .related-blog-post img{
    max-width: 100%;
}

/* this is needed so images are small enough to say in row */
.related-materials .plants-in-bloom-related img{
    max-width: 120px;
}

section.related-materials img.left-align {
    float: left;
    margin-right: 5%;
}




/*------------------------------------*\
  #Related content widget
  Garden Stories module (like on /gardening)
\*------------------------------------*/

.related-blog-post {
    margin-bottom: 0;
    float: left;
    position: relative;
}

.related-blog-post h4,
.fluid-in-page-promo h4 {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    padding: 6px 8px;
    /* makes the background only as wide as the text */
    display: inline-block;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
}

.related-blog-post a:hover h4,
.related-blog-post a:focus h4 {
    color: #7ac142;
    background: #fff;
}


.fluid-in-page-promo a, .fluid-in-page-promo h4 {
    display: block;
}


/*------------------------------------*\
  #Related content
  .become-member-related wraps the left content box in the related content module that appears above the footer.
  It wraps the FAQ box at bottom of /bloom and Adult Classes callout at bottom of /membership_faqs
\*------------------------------------*/

.single{
    padding: 10px 0;
}

/* make long related modules not wrap past image edge */
.become-member-related .handbook {
    margin-left: 164px;
}

.become-member-related a {
    color: #000;
    font-weight: initial;
    display: block;
}

.become-member-related a:focus {
    outline: 5px solid #7ac142;
}






/*------------------------------------*\
  #Related content
  .footer-module-multi = Gardens and Conservatories

\*------------------------------------*/

/*.footer-module-multi img, section.related-materials .plants-in-bloom-related img {*/
/*    max-width: 120px !important;*/
/*}*/





/*------------------------------------*\
  #Related content
  Plants in bloom related materials module that shows 4 square images
\*------------------------------------*/

.plants-in-bloom-related h3 {
    color: #000;
}

.plants-in-bloom-related a {
    display: block;
}

.plants-in-bloom-related a:hover .view-all,
.plants-in-bloom-related a:hover h3
{
    text-decoration: underline;
    color: #7ac142;
}

.plants-in-bloom-related a:focus {
    outline: 5px solid #7ac142;
}




/*------------------------------------*\
  #Related content
  Stay up to date on events email form (like on /visit/cafe)
\*------------------------------------*/

section.related-materials .stay-up-to-date-related input[type=email] {
    border: 2px solid #e5e5e5;
    height: 47px;
}

#iframe_video{
    aspect-ratio: 16 / 9;
    height: 100%;
    width: 100%;
}

.li_wrapping_iframe {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

/*!* iframe on left side of li *!*/
.li_wrapping_iframe .div_wrapping_iframe{
    width: 264px;
}

.li_wrapping_iframe .div_wrapping_iframe iframe{
    width: 264px;
    height: 100%;
}

/* text box inside li_wrapping_iframe */
.li_wrapping_iframe .thumbnail-list-item{
    max-width: 476px;
    margin-left: 35px;
}

@media screen and (max-width: 650px) {
    .li_wrapping_iframe{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    /* iframe */
    .li_wrapping_iframe .div_wrapping_iframe,
    .li_wrapping_iframe .div_wrapping_iframe iframe{
        aspect-ratio: 16 / 9;
        height: 100%;
        width: 100%;
        padding-bottom: 2px;
    }
    /* text */
    .li_wrapping_iframe .thumbnail-list-item{
        width: 100%;
        margin-left: 0px;
    }
}




.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  backface-visibility: hidden;
  outline: none;
}

.glightbox-container.inactive {
  display: none;
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.glightbox-container .gslider {
  transition: transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex !important;
  justify-content: center;
  align-items: center;
  transform: translate3d(0, 0, 0);
}

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}

.glightbox-container .gslide-inner-content {
  width: 100%;
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}

.glightbox-container .ginner-container.desc-bottom,
        .glightbox-container .ginner-container.desc-top {
  flex-direction: column;
}

.glightbox-container .ginner-container.desc-left,
        .glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.gslide iframe,
    .gslide video {
  outline: none !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
}

.gslide:not(.current) {
  pointer-events: none;
}

.gslide-image {
  align-items: center;
}

.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: none;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}

.desc-top .gslide-image img,
        .desc-bottom .gslide-image img {
  width: auto;
}

.desc-left .gslide-image img,
        .desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-image img.zoomable {
  position: relative;
}

.gslide-image img.dragging {
  cursor: grabbing !important;
  transition: none;
}

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}

.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
  display: none;
}

.gslide-video .gvideo-wrapper {
  width: 100%;
        /* max-width: 160vmin; */
  margin: auto;
}

.gslide-video::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing::before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
  margin: auto;
}

.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}

.gslide-inline .dragging {
  cursor: grabbing !important;
  transition: none;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}

.gslide-media {
  display: flex;
  width: auto;
}

.zoomed .gslide-media {
  box-shadow: none !important;
}

.desc-top .gslide-media,
    .desc-bottom .gslide-media {
  margin: 0 auto;
  flex-direction: column;
}

.gslide-description {
  position: relative;
  flex: 1 0 100%;
}

.gslide-description.description-left,
    .gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom,
    .gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.gslide-description p {
  margin-bottom: 12px;
}

.gslide-description p:last-child {
  margin-bottom: 0;
}

.zoomed .gslide-description {
  display: none;
}

.glightbox-button-hidden {
  display: none;
}


/*
 * Description for mobiles
 * something like facebook does the description
 * for the photos
*/

.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 19px 11px;
  max-width: 100vw !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
}

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}

.gdesc-open .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 0.4;
}

.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 1;
}

.greset {
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000;
  will-change: opacity;
}

.glightbox-mobile .goverlay {
  background: #000;
}

.gprev,
.gnext,
.gclose {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.gprev svg,
.gnext svg,
.gclose svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}

.gprev.disabled,
.gnext.disabled,
.gclose.disabled {
  opacity: 0.1;
}

.gprev .garrow,
.gnext .garrow,
.gclose .garrow {
  stroke: #fff;
}

.gbtn.focused {
  outline: 2px solid #0f3d81;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gnext,
    .glightbox-closing .gprev,
    .glightbox-closing .gclose {
  opacity: 0 !important;
}


/*Skin */

.glightbox-clean .gslide-description {
  background: #fff;
}

.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}

.glightbox-clean .gslide-title {
  font-size: 1em;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}

.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  line-height: 1.4em;
}

.glightbox-clean .gslide-video {
  background: #000;
}

.glightbox-clean .gprev,
    .glightbox-clean .gnext,
    .glightbox-clean .gclose {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
}

.glightbox-clean .gprev path,
.glightbox-clean .gnext path,
.glightbox-clean .gclose path {
  fill: #fff;
}

.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}

.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}

.glightbox-clean .gclose:hover {
  opacity: 1;
}


/*CSS Animations*/

.gfadeIn {
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  animation: gzoomOut 0.5s ease;
}

@keyframes lightboxLoader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes gslideInLeft {
  from {
    opacity: 0;
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    transform: translate3d(60%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}

@keyframes gzoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}

@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    flex-direction: row;
  }
  .glightbox-container .ginner-container.desc-top .gslide-description {
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image,
                .glightbox-container .ginner-container.desc-top .gslide-image img {
    order: 1;
  }
  .glightbox-container .ginner-container.desc-left .gslide-description {
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    order: 1;
  }
  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }
  .gslide-image img.zoomable {
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: grab;
  }
  .gslide-inline {
    max-height: 95vh;
  }
  .gslide-external {
    max-height: 100vh;
  }
  .gslide-description.description-left,
    .gslide-description.description-right {
    max-width: 275px;
  }
  .glightbox-open {
    height: auto;
  }
  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }
  .glightbox-clean .gslide-media {
    box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
  }
  .glightbox-clean .description-left .gdesc-inner,
.glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
  .glightbox-clean .gprev,
    .glightbox-clean .gnext,
    .glightbox-clean .gclose {
    background-color: rgba(0, 0, 0, 0.32);
  }
  .glightbox-clean .gprev:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gclose:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .glightbox-clean .gprev {
    top: 45%;
  }
  .glightbox-clean .gnext {
    top: 45%;
  }
}

@media (min-width: 992px) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}

@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
}

.gdesc-inner p {
  font-weight: normal;
}
.ol-box {
  box-sizing: border-box;
  border-radius: 2px;
  border: 1.5px solid rgb(179,197,219);
  background-color: rgba(255,255,255,0.4);
}

.ol-mouse-position {
  top: 8px;
  right: 8px;
  position: absolute;
}

.ol-scale-line {
  background: rgba(0,60,136,0.3);
  border-radius: 4px;
  bottom: 8px;
  left: 8px;
  padding: 2px;
  position: absolute;
}
.ol-scale-line-inner {
  border: 1px solid #eee;
  border-top: none;
  color: #eee;
  font-size: 10px;
  text-align: center;
  margin: 1px;
  will-change: contents, width;
  transition: all 0.25s;
}
.ol-scale-bar {
  position: absolute;
  bottom: 8px;
  left: 8px;
}
.ol-scale-step-marker {
  width: 1px;
  height: 15px;
  background-color: #000000;
  float: right;
  z-Index: 10;
}
.ol-scale-step-text {
  position: absolute;
  bottom: -5px;
  font-size: 12px;
  z-Index: 11;
  color: #000000;
  text-shadow: -2px 0 #FFFFFF, 0 2px #FFFFFF, 2px 0 #FFFFFF, 0 -2px #FFFFFF;
}
.ol-scale-text {
  position: absolute;
  font-size: 14px;
  text-align: center;
  bottom: 25px;
  color: #000000;
  text-shadow: -2px 0 #FFFFFF, 0 2px #FFFFFF, 2px 0 #FFFFFF, 0 -2px #FFFFFF;
}
.ol-scale-singlebar {
  position: relative;
  height: 10px;
  z-Index: 9;
  box-sizing: border-box;
  border: 1px solid black;
}

.ol-unsupported {
  display: none;
}
.ol-viewport, .ol-unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.ol-selectable {
  -webkit-touch-callout: default;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
.ol-grabbing {
  cursor: grabbing;
}
.ol-grab {
  cursor: move;
  cursor: grab;
}
.ol-control {
  position: absolute;
  background-color: rgba(255,255,255,0.4);
  border-radius: 4px;
  padding: 2px;
}
.ol-control:hover {
  background-color: rgba(255,255,255,0.6);
}
.ol-zoom {
  top: .5em;
  left: .5em;
}
.ol-rotate {
  top: .5em;
  right: .5em;
  transition: opacity .25s linear, visibility 0s linear;
}
.ol-rotate.ol-hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s linear, visibility 0s linear .25s;
}
.ol-zoom-extent {
  top: 4.643em;
  left: .5em;
}
.ol-full-screen {
  right: .5em;
  top: .5em;
}

.ol-control button {
  display: block;
  margin: 1px;
  padding: 0;
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: inherit;
  text-align: center;
  height: 1.375em;
  width: 1.375em;
  line-height: .4em;
  background-color: rgba(0,60,136,0.5);
  border: none;
  border-radius: 2px;
}
.ol-control button::-moz-focus-inner {
  border: none;
  padding: 0;
}
.ol-zoom-extent button {
  line-height: 1.4em;
}
.ol-compass {
  display: block;
  font-weight: normal;
  font-size: 1.2em;
  will-change: transform;
}
.ol-touch .ol-control button {
  font-size: 1.5em;
}
.ol-touch .ol-zoom-extent {
  top: 5.5em;
}
.ol-control button:hover,
.ol-control button:focus {
  text-decoration: none;
  background-color: rgba(0,60,136,0.7);
}
.ol-zoom .ol-zoom-in {
  border-radius: 2px 2px 0 0;
}
.ol-zoom .ol-zoom-out {
  border-radius: 0 0 2px 2px;
}


.ol-attribution {
  text-align: left;
  bottom: .5em;
  left: .5em;
  max-width: calc(100% - 1.3em);
  display: flex;
  flex-flow: row;
  align-items: center;
}
.ol-attribution a {
  color: rgba(0,60,136,0.7);
  text-decoration: none;
}
.ol-attribution ul {
  margin: 0;
  padding: 1px .5em;
  color: #000;
  text-shadow: 0 0 2px #fff;
  font-size: 12px;
}
.ol-attribution li {
  display: inline;
  list-style: none;
}
.ol-attribution li:not(:last-child):after {
  content: " ";
}
.ol-attribution img {
  max-height: 2em;
  max-width: inherit;
  vertical-align: middle;
}
.ol-attribution button {
  flex-shrink: 0;
}
.ol-attribution.ol-collapsed ul {
  display: none;
}
.ol-attribution:not(.ol-collapsed) {
  background: rgba(255,255,255,0.8);
}
.ol-attribution.ol-uncollapsible {
  bottom: 0;
  right: 0;
  border-radius: 4px 0 0;
}
.ol-attribution.ol-uncollapsible img {
  margin-top: -.2em;
  max-height: 1.6em;
}
.ol-attribution.ol-uncollapsible button {
  display: none;
}

.ol-zoomslider {
  top: 4.5em;
  left: .5em;
  height: 200px;
}
.ol-zoomslider button {
  position: relative;
  height: 10px;
}

.ol-touch .ol-zoomslider {
  top: 5.5em;
}

.ol-overviewmap {
  left: 0.5em;
  bottom: 0.5em;
}
.ol-overviewmap.ol-uncollapsible {
  bottom: 0;
  left: 0;
  border-radius: 0 4px 0 0;
}
.ol-overviewmap .ol-overviewmap-map,
.ol-overviewmap button {
  display: block;
}
.ol-overviewmap .ol-overviewmap-map {
  border: 1px solid #7b98bc;
  height: 150px;
  margin: 2px;
  width: 150px;
}
.ol-overviewmap:not(.ol-collapsed) button {
  bottom: 2px;
  left: 2px;
  position: absolute;
}
.ol-overviewmap.ol-collapsed .ol-overviewmap-map,
.ol-overviewmap.ol-uncollapsible button {
  display: none;
}
.ol-overviewmap:not(.ol-collapsed) {
  background: rgba(255,255,255,0.8);
}
.ol-overviewmap-box {
  border: 2px dotted rgba(0,60,136,0.7);
}

.ol-overviewmap .ol-overviewmap-box:hover {
  cursor: move;
}

.fa {
  font-family: var(--fa-style-family, "Font Awesome 6 Pro");
  font-weight: var(--fa-style, 900); }

.fas,
.fass,
.far,
.fasr,
.fal,
.fasl,
.fat,
.fast,
.fad,
.fadr,
.fadl,
.fadt,
.fasds,
.fasdr,
.fasdl,
.fasdt,
.fab,
.fa-solid,
.fa-regular,
.fa-light,
.fa-thin,
.fa-brands,
.fa-classic,
.fa-duotone,
.fa-sharp,
.fa-sharp-duotone,
.fa {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto; }

.fas::before,
.fass::before,
.far::before,
.fasr::before,
.fal::before,
.fasl::before,
.fat::before,
.fast::before,
.fad::before,
.fadr::before,
.fadl::before,
.fadt::before,
.fasds::before,
.fasdr::before,
.fasdl::before,
.fasdt::before,
.fab::before,
.fa-solid::before,
.fa-regular::before,
.fa-light::before,
.fa-thin::before,
.fa-brands::before,
.fa-classic::before,
.fa-duotone::before,
.fa-sharp::before,
.fa-sharp-duotone::before,
.fa::before {
  content: var(--fa); }

.fad::after,
.fa-duotone.fa-solid::after,
.fa-duotone::after,
.fadr::after,
.fa-duotone.fa-regular::after,
.fadl::after,
.fa-duotone.fa-light::after,
.fadt::after,
.fa-duotone.fa-thin::after,
.fasds::after,
.fa-sharp-duotone.fa-solid::after,
.fa-sharp-duotone::after,
.fasdr::after,
.fa-sharp-duotone.fa-regular::after,
.fasdl::after,
.fa-sharp-duotone.fa-light::after,
.fasdt::after,
.fa-sharp-duotone.fa-thin::after {
  content: var(--fa--fa); }

.fa-classic.fa-duotone {
  font-family: 'Font Awesome 6 Duotone'; }

.fass,
.fa-sharp {
  font-weight: 900; }

.fad,
.fa-duotone {
  font-weight: 900; }

.fasds,
.fa-sharp-duotone {
  font-weight: 900; }

.fa-classic,
.fas,
.fa-solid,
.far,
.fa-regular,
.fal,
.fa-light,
.fat,
.fa-thin {
  font-family: 'Font Awesome 6 Pro'; }

.fa-duotone,
.fad,
.fadr,
.fadl,
.fadt {
  font-family: 'Font Awesome 6 Duotone'; }

.fa-brands,
.fab {
  font-family: 'Font Awesome 6 Brands'; }

.fa-sharp,
.fass,
.fasr,
.fasl,
.fast {
  font-family: 'Font Awesome 6 Sharp'; }

.fa-sharp-duotone,
.fasds,
.fasdr,
.fasdl,
.fasdt {
  font-family: 'Font Awesome 6 Sharp Duotone'; }

.fa-1x {
  font-size: 1em; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-6x {
  font-size: 6em; }

.fa-7x {
  font-size: 7em; }

.fa-8x {
  font-size: 8em; }

.fa-9x {
  font-size: 9em; }

.fa-10x {
  font-size: 10em; }

.fa-2xs {
  font-size: 0.625em;
  line-height: 0.1em;
  vertical-align: 0.225em; }

.fa-xs {
  font-size: 0.75em;
  line-height: 0.08333em;
  vertical-align: 0.125em; }

.fa-sm {
  font-size: 0.875em;
  line-height: 0.07143em;
  vertical-align: 0.05357em; }

.fa-lg {
  font-size: 1.25em;
  line-height: 0.05em;
  vertical-align: -0.075em; }

.fa-xl {
  font-size: 1.5em;
  line-height: 0.04167em;
  vertical-align: -0.125em; }

.fa-2xl {
  font-size: 2em;
  line-height: 0.03125em;
  vertical-align: -0.1875em; }

.fa-fw {
  text-align: center;
  width: 1.25em; }

.fa-ul {
  list-style-type: none;
  margin-left: var(--fa-li-margin, 2.5em);
  padding-left: 0; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  left: calc(-1 * var(--fa-li-width, 2em));
  position: absolute;
  text-align: center;
  width: var(--fa-li-width, 2em);
  line-height: inherit; }

.fa-border {
  border-color: var(--fa-border-color, #eee);
  border-radius: var(--fa-border-radius, 0.1em);
  border-style: var(--fa-border-style, solid);
  border-width: var(--fa-border-width, 0.08em);
  padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); }

.fa-pull-left {
  float: left;
  margin-right: var(--fa-pull-margin, 0.3em); }

.fa-pull-right {
  float: right;
  margin-left: var(--fa-pull-margin, 0.3em); }

.fa-beat {
  animation-name: fa-beat;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out); }

.fa-bounce {
  animation-name: fa-bounce;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); }

.fa-fade {
  animation-name: fa-fade;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); }

.fa-beat-fade {
  animation-name: fa-beat-fade;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); }

.fa-flip {
  animation-name: fa-flip;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out); }

.fa-shake {
  animation-name: fa-shake;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear); }

.fa-spin {
  animation-name: fa-spin;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 2s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear); }

.fa-spin-reverse {
  --fa-animation-direction: reverse; }

.fa-pulse,
.fa-spin-pulse {
  animation-name: fa-spin;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, steps(8)); }

@media (prefers-reduced-motion: reduce) {
  .fa-beat,
  .fa-bounce,
  .fa-fade,
  .fa-beat-fade,
  .fa-flip,
  .fa-pulse,
  .fa-shake,
  .fa-spin,
  .fa-spin-pulse {
    animation-delay: -1ms;
    animation-duration: 1ms;
    animation-iteration-count: 1;
    transition-delay: 0s;
    transition-duration: 0s; } }

@keyframes fa-beat {
  0%, 90% {
    transform: scale(1); }
  45% {
    transform: scale(var(--fa-beat-scale, 1.25)); } }

@keyframes fa-bounce {
  0% {
    transform: scale(1, 1) translateY(0); }
  10% {
    transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); }
  30% {
    transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); }
  50% {
    transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); }
  57% {
    transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); }
  64% {
    transform: scale(1, 1) translateY(0); }
  100% {
    transform: scale(1, 1) translateY(0); } }

@keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4); } }

@keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    transform: scale(1); }
  50% {
    opacity: 1;
    transform: scale(var(--fa-beat-fade-scale, 1.125)); } }

@keyframes fa-flip {
  50% {
    transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } }

@keyframes fa-shake {
  0% {
    transform: rotate(-15deg); }
  4% {
    transform: rotate(15deg); }
  8%, 24% {
    transform: rotate(-18deg); }
  12%, 28% {
    transform: rotate(18deg); }
  16% {
    transform: rotate(-22deg); }
  20% {
    transform: rotate(22deg); }
  32% {
    transform: rotate(-12deg); }
  36% {
    transform: rotate(12deg); }
  40%, 100% {
    transform: rotate(0deg); } }

@keyframes fa-spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.fa-rotate-90 {
  transform: rotate(90deg); }

.fa-rotate-180 {
  transform: rotate(180deg); }

.fa-rotate-270 {
  transform: rotate(270deg); }

.fa-flip-horizontal {
  transform: scale(-1, 1); }

.fa-flip-vertical {
  transform: scale(1, -1); }

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  transform: scale(-1, -1); }

.fa-rotate-by {
  transform: rotate(var(--fa-rotate-angle, 0)); }

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em; }

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: var(--fa-stack-z-index, auto); }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: var(--fa-inverse, #fff); }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-arrow-up-long { --fa: "\f176"; --fa--fa: "\f176\f176"; }
.fa-bars { --fa: "\f0c9"; --fa--fa: "\f0c9\f0c9"; }
.fa-calendar-alt { --fa: "\f073"; --fa--fa: "\f073\f073"; }
.fa-calendar-days { --fa: "\f073"; --fa--fa: "\f073\f073"; }
.fa-chain { --fa: "\f0c1"; --fa--fa: "\f0c1\f0c1"; }
.fa-check { --fa: "\f00c"; --fa--fa: "\f00c\f00c"; }
.fa-check-circle { --fa: "\f058"; --fa--fa: "\f058\f058"; }
.fa-circle { --fa: "\f111"; --fa--fa: "\f111\f111"; }
.fa-circle-check { --fa: "\f058"; --fa--fa: "\f058\f058"; }
.fa-close { --fa: "\f00d"; --fa--fa: "\f00d\f00d"; }
.fa-envelope { --fa: "\f0e0"; --fa--fa: "\f0e0\f0e0"; }
.fa-expand { --fa: "\f065"; --fa--fa: "\f065\f065"; }
.fa-link { --fa: "\f0c1"; --fa--fa: "\f0c1\f0c1"; }
.fa-location { --fa: "\f601"; --fa--fa: "\f601\f601"; }
.fa-location-crosshairs { --fa: "\f601"; --fa--fa: "\f601\f601"; }
.fa-location-dot { --fa: "\f3c5"; --fa--fa: "\f3c5\f3c5"; }
.fa-long-arrow-up { --fa: "\f176"; --fa--fa: "\f176\f176"; }
.fa-magnifying-glass { --fa: "\f002"; --fa--fa: "\f002\f002"; }
.fa-map-marker-alt { --fa: "\f3c5"; --fa--fa: "\f3c5\f3c5"; }
.fa-multiply { --fa: "\f00d"; --fa--fa: "\f00d\f00d"; }
.fa-navicon { --fa: "\f0c9"; --fa--fa: "\f0c9\f0c9"; }
.fa-pencil { --fa: "\f303"; --fa--fa: "\f303\f303"; }
.fa-pencil-alt { --fa: "\f303"; --fa--fa: "\f303\f303"; }
.fa-remove { --fa: "\f00d"; --fa--fa: "\f00d\f00d"; }
.fa-search { --fa: "\f002"; --fa--fa: "\f002\f002"; }
.fa-spinner { --fa: "\f110"; --fa--fa: "\f110\f110"; }
.fa-times { --fa: "\f00d"; --fa--fa: "\f00d\f00d"; }
.fa-xmark { --fa: "\f00d"; --fa--fa: "\f00d\f00d"; }

.sr-only,
.fa-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0; }

.sr-only-focusable:not(:focus),
.fa-sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0; }

.fab,
.fa-brands {
  font-weight: 400;
}

:root, :host {
  --fa-style-family-brands: 'Font Awesome 6 Brands';
  --fa-font-brands: normal 400 1em/1 'Font Awesome 6 Brands'; }

@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/assets/fonts/vendor/@awesome.me/kit-4a32c2acde/icons/webfa-brands-400.woff2?4b5bb7cab174405a16c1aaacd4e8da77) format("woff2"), url(/assets/fonts/vendor/@awesome.me/kit-4a32c2acde/icons/webfa-brands-400.ttf?928f815a1c8603b7a80407822fd555af) format("truetype"); }

.fa-bluesky { --fa: "\e671"; --fa--fa: "\e671\e671"; }
.fa-facebook-f { --fa: "\f39e"; --fa--fa: "\f39e\f39e"; }
.fa-flickr { --fa: "\f16e"; --fa--fa: "\f16e\f16e"; }
.fa-instagram { --fa: "\f16d"; --fa--fa: "\f16d\f16d"; }
.fa-tiktok { --fa: "\e07b"; --fa--fa: "\e07b\e07b"; }
.fa-x-twitter { --fa: "\e61b"; --fa--fa: "\e61b\e61b"; }

/*!
 * Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-classic: 'Font Awesome 6 Pro';
  --fa-font-regular: normal 400 1em/1 'Font Awesome 6 Pro'; }

@font-face {
  font-family: 'Font Awesome 6 Pro';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/assets/fonts/vendor/@awesome.me/kit-4a32c2acde/icons/webfa-regular-400.woff2?531bdd85c79ad7df3a7589a9fbd92df4) format("woff2"), url(/assets/fonts/vendor/@awesome.me/kit-4a32c2acde/icons/webfa-regular-400.ttf?af0bef7b5597c90d9eb02682676e5249) format("truetype"); }

.far,
.fa-regular {
  font-weight: 400; }

/*!
 * Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-classic: 'Font Awesome 6 Pro';
  --fa-font-solid: normal 900 1em/1 'Font Awesome 6 Pro'; }

@font-face {
  font-family: 'Font Awesome 6 Pro';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(/assets/fonts/vendor/@awesome.me/kit-4a32c2acde/icons/webfa-solid-900.woff2?2701111f91b32b208ec3194a706b9585) format("woff2"), url(/assets/fonts/vendor/@awesome.me/kit-4a32c2acde/icons/webfa-solid-900.ttf?e79420379d24f33ada31ed898fe69f91) format("truetype"); }

.fas,
.fa-solid {
  font-weight: 900; }


/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::-moz-selection {
	background: transparent;
}
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(/undefined/vendor/leaflet/dist/layers.png?416d91365b44e4b4f4777663e6f009f3);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(/undefined/vendor/leaflet/dist/layers-2x.png?8f2c4d11474275fbc1614b9098334eae);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(/undefined/vendor/leaflet/dist/marker-icon.png?2b3e1faf89f94a4835397e7a43b4f77d);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;
	transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}

.leaflet-control-locate a {
  cursor: pointer;
}
.leaflet-control-locate a .leaflet-control-locate-location-arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 7px;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="black" d="M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z"/></svg>');
}
.leaflet-control-locate a .leaflet-control-locate-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 7px;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="black" d="M304 48a48 48 0 1 1-96 0 48 48 0 0 1 96 0zm-48 368a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm208-208a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM96 256a48 48 0 1 0-96 0 48 48 0 0 0 96 0zm13 99a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm294 0a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM109 61a48 48 0 1 0 0 96 48 48 0 0 0 0-96z"/></svg>');
  animation: leaflet-control-locate-spin 2s linear infinite;
}
.leaflet-control-locate.active a .leaflet-control-locate-location-arrow {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="rgb(32, 116, 182)" d="M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z"/></svg>');
}
.leaflet-control-locate.following a .leaflet-control-locate-location-arrow {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="rgb(252, 132, 40)" d="M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z"/></svg>');
}

.leaflet-touch .leaflet-bar .leaflet-locate-text-active {
  width: 100%;
  max-width: 200px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding: 0 10px;
}
.leaflet-touch .leaflet-bar .leaflet-locate-text-active .leaflet-locate-icon {
  padding: 0 5px 0 0;
}

.leaflet-control-locate-location circle {
  animation: leaflet-control-locate-throb 4s ease infinite;
}

@keyframes leaflet-control-locate-throb {
  0% {
    stroke-width: 1;
  }
  50% {
    stroke-width: 3;
    transform: scale(0.8, 0.8);
  }
  100% {
    stroke-width: 1;
  }
}
@keyframes leaflet-control-locate-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=L.Control.Locate.css.map */

.splide__container{box-sizing:border-box;position:relative}.splide__list{backface-visibility:hidden;display:-ms-flexbox;display:flex;height:100%;margin:0!important;padding:0!important}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide:not(.is-overflow) .splide__pagination{display:none}.splide__progress__bar{width:0}.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{backface-visibility:hidden;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}.splide__slide img{vertical-align:bottom}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{overflow:hidden;position:relative;z-index:0}@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__arrow{-ms-flex-align:center;align-items:center;background:#ccc;border:0;border-radius:50%;cursor:pointer;display:-ms-flexbox;display:flex;height:2em;-ms-flex-pack:center;justify-content:center;opacity:.7;padding:0;position:absolute;top:50%;transform:translateY(-50%);width:2em;z-index:1}.splide__arrow svg{fill:#000;height:1.2em;width:1.2em}.splide__arrow:hover:not(:disabled){opacity:.9}.splide__arrow:disabled{opacity:.3}.splide__arrow:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide__arrow--prev{left:1em}.splide__arrow--prev svg{transform:scaleX(-1)}.splide__arrow--next{right:1em}.splide.is-focus-in .splide__arrow:focus{outline:3px solid #0bf;outline-offset:3px}.splide__pagination{bottom:.5em;left:0;padding:0 1em;position:absolute;right:0;z-index:1}.splide__pagination__page{background:#ccc;border:0;border-radius:50%;display:inline-block;height:8px;margin:3px;opacity:.7;padding:0;position:relative;transition:transform .2s linear;width:8px}.splide__pagination__page.is-active{background:#fff;transform:scale(1.4);z-index:1}.splide__pagination__page:hover{cursor:pointer;opacity:.9}.splide__pagination__page:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__pagination__page:focus{outline:3px solid #0bf;outline-offset:3px}.splide__progress__bar{background:#ccc;height:3px}.splide__slide{-webkit-tap-highlight-color:rgba(0,0,0,0)}.splide__slide:focus{outline:0}@supports(outline-offset:-3px){.splide__slide:focus-visible{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide__slide:focus-visible{border:3px solid #0bf}}@supports(outline-offset:-3px){.splide.is-focus-in .splide__slide:focus{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide.is-focus-in .splide__slide:focus{border:3px solid #0bf}.splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus{border-color:#0bf}}.splide__toggle{cursor:pointer}.splide__toggle:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__toggle:focus{outline:3px solid #0bf;outline-offset:3px}.splide__track--nav>.splide__list>.splide__slide{border:3px solid transparent;cursor:pointer}.splide__track--nav>.splide__list>.splide__slide.is-active{border:3px solid #000}.splide__arrows--rtl .splide__arrow--prev{left:auto;right:1em}.splide__arrows--rtl .splide__arrow--prev svg{transform:scaleX(1)}.splide__arrows--rtl .splide__arrow--next{left:1em;right:auto}.splide__arrows--rtl .splide__arrow--next svg{transform:scaleX(-1)}.splide__arrows--ttb .splide__arrow{left:50%;transform:translate(-50%)}.splide__arrows--ttb .splide__arrow--prev{top:1em}.splide__arrows--ttb .splide__arrow--prev svg{transform:rotate(-90deg)}.splide__arrows--ttb .splide__arrow--next{bottom:1em;top:auto}.splide__arrows--ttb .splide__arrow--next svg{transform:rotate(90deg)}.splide__pagination--ttb{bottom:0;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;left:auto;padding:1em 0;right:.5em;top:0}
/* Font Awesome Subsetted Kit */
/* leaflet for some maps */
/* Splide carousels */
