:root {
    /*=============================*/
    /*=====----- GENERAL -----=====*/
    /*=============================*/

    --green-misty: #e4f1da;
    --green-grass: #79c150;
    --green-grass-ada: #60a239;
    --green-grass-alt: #97cf77;
    --green-treetop: #538544;
    --green-shade: #325729;
    --green-dark: #143610;
    --blue-sky: #9bd2d6;
    --blue-light: #d4eded;
    --blue-faded: #f1f9f9;
    --gold: #b88d33;
    --gold-8: #f8f3ea;

    --sw-body-bg: var(--white);
    --sw-text-color: var(--green-dark);
    --sw-light-text-color: var(--white);

    --sw-key-color: var(--green-shade); /* site's most prominent color */
    --sw-key-color-hover: var(--green-shade);

    --sw-selected-color: var(--green-treetop); /* used for tabs and checkboxes, like in LEO index */

    --sw-alert-color: var(--gold); /* used primarily for badges, as in LEO index tripbuilder 💗 icon and the facility search compare toggle badge */

    --sw-focus-color: var(--sw-key-color); /* used for focus outlines */
    --sw-light-focus-color: var(--white); /* used for focus outlines against dark backgrounds */

    /* Used for scrollbars in LEO/Quickview */
    --sw-scrollbar-track-color: var(--white);
	--sw-scrollbar-thumb-color: var(--green-shade);
	--sw-scrollbar-thumb-hover: var(--green-shade);
	--sw-scrollbar-thumb-active: var(--sw-key-color);

    /*=============================*/
    /*=====----- BUTTONS -----=====*/
    /*=============================*/
    
    /*----- primary button -----*/

    --sw-button-primary-bg: var(--green-dark);
    --sw-button-primary-color: var(--white);

    --sw-button-primary-bg-hover: var(--green-dark);
    --sw-button-primary-color-hover: var(--white);

    /*----- secondary button -----*/

    --sw-button-secondary-bg: var(--green-grass);
    --sw-button-secondary-color: var(--green-dark);
    
    --sw-button-secondary-bg-hover: var(--green-grass);
    --sw-button-secondary-color-hover: var(--green-dark);

    /*----- tertiary button -----*/

    --sw-button-tertiary-bg: var(--blue-sky);
    --sw-button-tertiary-color: var(--green-dark);
    
    --sw-button-tertiary-bg-hover: var(--blue-sky);
    --sw-button-tertiary-color-hover: var(--green-dark);

    /*----- border button -----*/

    --sw-button-border-bg: var(--green-dark);
    --sw-button-border-color: var(--white);

    --sw-button-border-bg-hover: var(--green-dark);
    --sw-button-border-color-hover: var(--white);

    /*===========================*/
    /*=====----- LINKS -----=====*/
    /*===========================*/

    --sw-link-color: var(--green-dark);
    --sw-system-link-color: var(--white); /* used for Media Gallery content section, which has a dark background */

    --sw-link-hover-color: var(--green-dark);
    --sw-system-link-hover-color: var(--white); /* used for Media Gallery content section, which has a dark background */

    /*===========================*/
    /*=====----- ICONS -----=====*/
    /*===========================*/

    --sw-icon-color: var(--gold);
    --sw-light-icon-color: var(--white);
    --sw-icon-bg: var(--green-grass); /* used for social media icon backgrounds where applicable */

    /*===============================*/
    /*=====----- MINI DATE -----=====*/
    /*===============================*/

    --sw-mini-date-bg: var(--green-shade);
    --sw-mini-date-color: var(--white);

    /*================================*/
    /*=====----- CONTAINERS -----=====*/
    /*================================*/

    --sw-container-bg: var(--green-misty);
    --sw-container-border-color: var(--green-dark);

    /*=================================*/
    /*=====----- COLLECTIONS -----=====*/
    /*=================================*/

    --sw-collections-widget-header-border-color: var(--blue-light);
    --sw-collections-title-color: var(--green-dark); /* used for both widget and slide titles */
    --sw-collections-text-color: var(--sw-text-color); /* used for widget and slide descriptions */
    --sw-collections-minor-text-color: var(--green-treetop); /* used for info flags, like blog categories */

    --sw-collections-text-color-light: var(--white); /* used for text that overlaps images */
    --sw-collections-minor-text-color-light: var(--white);

    --sw-collections-view-all-color: var(--green-dark);
    --sw-collections-view-all-bg: var(--green-grass);
    --sw-collections-view-all-color-hover: var(--green-dark);
    --sw-collections-view-all-bg-hover: var(--green-grass);

    --sw-collections-read-more-color: var(--green-dark);
    --sw-collections-read-more-bg: var(--green-grass);
    --sw-collections-read-more-color-hover: var(--green-dark);
    --sw-collections-read-more-bg-hover: var(--green-grass);

    --sw-collections-qv-button-color: var(--sw-collections-text-color);
    --sw-collections-qv-button-color-hover: var(--sw-collections-minor-text-color);
}

@media (min-width: 1024px) {
    :root {
        /*===========================*/
        /*=====----- LINKS -----=====*/
        /*===========================*/
        --sw-system-link-color: var(--sw-link-color); /* used for Media Gallery content section, which has a light background at this breakpoint */

        --sw-system-link-hover-color: var(--sw-link-hover-color); /* used for Media Gallery content section, which has a light background at this breakpoint */
    }
}