@-webkit-viewport {
    width: device-width;
    zoom: 1.0;
}
@-moz-viewport {
    width: device-width;
    zoom: 1.0;
}
@-ms-viewport {
    width: device-width;
    zoom: 1.0;
}
@-o-viewport {
    width: device-width;
    zoom: 1.0;
}
@viewport {
    width: device-width;
    zoom: 1.0;
}

/*  ------------------------------------------------------
    Variables for easy find and replace
    - - - - - - - - - - - - - - - - - - - - - - - - - - -


    $link:                  #e85505;
    $link-hover:            #ae550d;

    grey-01: #525252
    grey-02: #484848
    grey-03: #4A4A4A

    purple: #8A5997
    purple-dark: #744B7F

    orange: #E37C2F
    orange-dark: #C06927

    blue: #26A2B3
    blue-dark: #028293

    green: #B4BB30
    green-dark: #989E28


-------------------------------------------------------- */

:root {
    /* colours */
    --color-white: #ffffff;
    --color-grey-005: #F5F5F5;
    --color-grey-01: #E9E9E9;
    --color-grey-02: #d9d9d9;
    --color-grey-03: #c0c0c0;
    --color-grey-04: #a1a1a2;
    --color-grey-05: #848485;
    --color-grey-06: #686869;
    --color-grey-07: #4d4d4e;
    --color-grey-08: #343435;
    --color-grey-09: #1d1d1e;
    --color-black: #000000;
    --color-text: #000000;

    /* fonts */
    --mega-font-size: 4.8rem;
    --body-font-size: 1.5rem;
    --large-font-size: 1.5rem;
    --centi-font-size: 1.3rem;

    /* font weight */
    --font-light: 300;
    --font-normal: 400;
    --font-bold: 700;

    /* sections */
    --section-small: 24px;
    --section: 40px;
    --section-large: 56px;

    /* container */
    --default-container: 88vw;
    --default-container-gutter: 6vw;

    --small-container: 88vw;
    --small-container-gutter: 6vw;
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    :root {
        /* sections */
        --section-small: 40px;
        --section: 56px;
        --section-large: 88px;

        --body-font-size: 1.6rem;
        --large-font-size: 1.8rem;
    }
}

/* BP custom max small container */
@media screen and (min-width: 56em) { /* 896px */
    :root {
        /* container */
        --small-container: 800px;
        --small-container-gutter: calc(50vw - (var(--small-container) / 2));
    }
}

/* BP custom max container */
@media screen and (min-width: 72.75em) { /* 1164px */
    :root {
        /* container */
        --default-container: 1024px;
        --default-container-gutter: calc(50vw - (var(--default-container) / 2));
    }
}


/*  ------------------------------------------------------
    Table of Contents for search based navigation
    - - - - - - - - - - - - - - - - - - - - - - - - - - -

    **** Box Model Reset

    **** Typography
    ---- Fonts
    ---- Headings
    ---- Lists
    ---- Breadcrumbs
    ---- Blockquotes
    ---- HR
    ---- Text level elements
    ---- Links
    ---- Txt Helpers


    **** Design Patterns
    ---- Background colours
    ---- Buttons
    ---- Animations
    ---- Decals & motifs
    ---- Highlight
    ---- Site Messages
    ---- Icon sprite
    ---- Search Paginate


    **** Images


    **** Forms
    ---- Form Errors
    ---- Submit Bar
    ---- Search Form
    ---- Search pagination
    ---- Captcha


    **** Tables
    ---- Default
    ---- Form tables
    ---- Clean table
    ---- No Styles Table
    ---- Elected Table
    ---- meeting records tables


    **** Helper classes
    ---- Clearfix
    ---- Hiding classes
    ---- Pseudo elements
    ---- Floats and positioning


    **** Template Layout
    ---- Container
    ---- Simple content alignment classes
    ---- Sections
    ---- Content Box
    ---- Header
    ---- Footer
    ---- Magnific Popup


    **** Widgets
    ---- Catch all
    ---- Related Links
    ---- Simple Image Gallery
    ---- Children Page Gallery
    ---- Sponsors module
    ---- Order Form
    ---- Videos
    ---- Directory Documents

    **** Print styles

-------------------------------------------------------- */

/* ------------------------------------------------------
**** Box Model Reset
------------------------------------------------------ */

html {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
*, *:before, *:after {
    -webkit-box-sizing: inherit;
            box-sizing: inherit;
}

/* ------------------------------------------------------
**** Breakpoints
------------------------------------------------------ */

/* BP Smaller */
@media screen and (min-width: 35em) { /* 560px */

}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */

}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */

}

/* BP large */
@media only screen and (min-width: 80em) { /* 1280px */

}

/* BP xlarge */
@media screen and (min-width: 90em) {/* 1440px */

}

/* BP xxlarge */
@media screen and (min-width: 100em) {/* 1600px */

}

/* BP bigBoi */
@media screen and (min-width: 120em) {/* 1920px */

}

/* ------------------------------------------------------
**** Typography
------------------------------------------------------ */

html {
    font-size: 62.5%;
}

body {
    line-height: 1.466;
    font-size: 1.5em;
    color: var(--color-text);
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: var(--font-normal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    body {
        font-size: 1.6em;
    }
}

/* ---- Fonts ---- */


/*
 * Roboto - From Google Fonts
 * font-family: 'Roboto', Helvetica, Arial, sans-serif;
 *
 * Weights: 300, 400, 700
 *
 *
 * Strayhorn fonts.com font
 * font-family: "Strayhorn MT W01 Bold", serif;

 * font-family:'Strayhorn MT W01 Bold';
 * font-family:'Strayhorn MT W00 Regular';
 */


/* ---- Headings ---- */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin: 0 0 1.8rem 0;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: var(--font-light);
    color: var(--color-black, #000);
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
    font-weight: 400;
    line-height: 1;
}

p + h1,
p + h2,
p + h3,
p + h4,
p + h5,
p + h6 {
    margin-top: 3rem;
}


h1, .h1 {
    font-size: 3.5rem;
}

h2, .h2 {
    font-size: 3.0rem;
}

h3, .h3 {
    font-size: 2.5rem;
}

h4, .h4 {
    font-size: 2.0rem;
}

h5, .h5 {
    font-size: 1.8rem;
}

h6, .h6 {
    font-size: 1.8rem;
    font-weight: 700;
}

p,
ol,
ul,
dl,
address {
    margin: 0 0 1.8rem;
}

small {
    font-size: 1.5rem;
}


@media screen and (max-width: 37.5em) { /* 600px */
    h3,
    .h3,
    h4,
    .h4,
    h5,
    .h5,
    h6,
    .h6 {
        margin-bottom: 0.8rem;
    }

    p,
    ol,
    ul,
    dl,
    address {
        margin: 0 0 1.2rem;
    }

}



/* ---- Lists ---- */
ul,
ol {
    padding: 0 0 0 2rem;
    list-style-type: disc;
}

li ul,
li ol {
    margin: 1rem 0;
}

ol {
    list-style-type: none;
    counter-reset: item;
}

ol ul {
    list-style-type: disc;
}

ol > li {
    display: table;
    counter-increment: item;
    margin-bottom: 0.6em;
}

ol > li:before {
    content: counters(item, ".") ". ";
    display: table-cell;
    padding-right: 0.6em;
}

li ol > li {
    margin: 0;
}

li ol > li:before {
    content: counters(item, ".") " ";
}


/* - Links list - */
.linklist {
    list-style-type: none;
    padding-left: 0;
}

.linklist a {
    text-decoration: none;
}

.linklist a:before {
    content: "\003e\00a0";
    display: inline-block;
}

.linklist a:hover,
.linklist a:focus {
    text-decoration: underline;
}


/* ---- Breadcrumbs ---- */
.breadcrumb {
    list-style: none;
    margin: 0 0 1.8rem;
    padding: 0 0 5px 0;
    color: var(--color-grey-06);
}
.breadcrumb > li {
    display: inline;
}
.breadcrumb > li:before {
    content: "\00a0/\00a0";
}
.breadcrumb > li:first-child:before {
    content: none;
}
.breadcrumb a:hover,
.breadcrumb a:focus,
.breadcrumb a:active {
    color: var(--color-black);
}


/* ---- Blockquotes ---- */
blockquote {
    position: relative;
    margin: 2rem 0;
    padding: 2rem 4rem;
	font-size: 2rem;
	color: #484848;
	font-style: italic;
    position: relative;
}

blockquote:before,
blockquote > *:last-child:after {
	opacity: .4;
	position: absolute;
	font-size: 3.2em;
	line-height: 1;
	width: 36px;
	height: 30px;
	overflow: hidden;
	display: block;
}

blockquote:before {
	content: '\201C';
    top: 0.2em;
    left: 0.1em;
}

blockquote:after {
	content: none;
}

blockquote > *:last-child:after {
	content: '\201D';
    display: inline-block;
    bottom: 0.2em;
    margin-left: -0.1em;
}

blockquote.blockquote--left {
	float: left;
	width: 38%;
	margin-left: 0px;
	margin-right: 10px;
}

blockquote.blockquote--right {
	float: right;
	width: 38%;
	margin-right: 0px;
	margin-left: 10px;
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    .blockquote--left {
        float: left;
        width: 45%;
        margin-left: 0px;
        margin-right: 20px;
        clear: right;
    }

    .blockquote--right {
        float: right;
        width: 45%;
        margin-left: 20px;
        margin-right: 0px;
        clear: left;
    }
}


/* ---- HR ---- */
hr {
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 2em 0;
    padding: 0;
}

/* ---- Text level elements ---- */
abbr[title] {
    border-bottom: 1px dotted #c6bfbf;
    cursor: help;
}

b, strong {
    font-weight: bold;
    font-weight: 700;
}

dfn {
    font-style: italic;
}

ins {
    background-color: #f6f6f6;
    color: #4A4A4A;
    text-decoration: none;
}

mark {
    background-color: #f6f6f6;
    color: #4A4A4A;
    font-style: italic;
    font-weight: bold;
    font-weight: 700;
}

pre,
code,
kbd,
samp {
    font-family: 'Monaco', 'Courier New', monospace;
    color: #473f3f;
    background: #efefef;
    background: rgba(0, 0, 0, .07);
    padding: 0 2px;
    margin: 0 -2px;
}

pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -.5em;
}

sub {
    bottom: -.25em;
}

/* ---- Links ---- */
a {
    color: inherit;
    word-break: break-word;
}

a:hover,
a:active,
a:focus {
    color: #028293;
}

/* Address `outline` inconsistency between Chrome and other browsers. */
a:focus {
    outline: thin dotted;
}

/* Improve readability when focused and also mouse hovered in all browsers. */
a:active,
a:hover {
    outline: 0;
}

/* Include file type and size in document links */
a.document::after {
    content: " (" attr(data-ext) " " attr(data-size) ")";
}

/* ---- Txt Helpers ---- */
.txt-uppercase {
    text-transform: uppercase;
}

.subtitle {
    font-weight: 700;
    color: #525252;
    font-size: 1.6rem;
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .subtitle {
        font-size: 1.8rem;
    }
}

.section-title {
    padding-bottom: 54px;
}

.section-title span {
    position: relative;
    padding-bottom: 27px;
    color: #26A2B3;
    font-family: 'Strayhorn MT W00 Regular', 'Strayhorn MT W01 Bold', serif;
}

.section-title span:before {
    content: "\00a0";
    position: absolute;
    right: 100%;
    bottom: 0;
    width: 800px;
    height: 10px;
    background-color: #26A2B3;

}

.section-title span:after {
    content: "\00a0";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 9px;
    height: 1px;
    background-color: #979797;
}

/* title center */
.section-title--center {
    padding-bottom: 54px;
    padding-top: 54px;
    margin-bottom: 0;
    text-align: center;
    line-height: 36px;
}

.section-title--center span {
    position: relative;
    display: inline-block;
    line-height: 36px;
}

.section-title--center span:before {
    content: "\00a0";
    position: absolute;
    right: 0;
    top: -54px;
    left: 0;
    height: 6px;
    background-color: #26A2B3;
}

/* section title with cta link */


.section-title-w-btn .section-title {
    padding-bottom: 24px;
}

.section-title-w-btn__btn {
    padding-bottom: 16px;
}

@media screen and (min-width: 48em) { /* 768px */
    .section-title-w-btn {
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        margin-bottom: 24px;
    }
    .section-title-w-btn__btn {
        padding-left: 30px;
    }

}



/* ------------------------------------------------------
**** Design Patterns
------------------------------------------------------ */

/* ---- Background colours ---- */

/* White */
.bg-white {
    background-color: var(--color-white);
}

/* Lightest grey */
.bg-grey-01 {
    background-color: var(--color-grey-01);
}

/* Light grey */
.bg-grey-02 {
    background-color: var(--color-grey-02);
}

/* Dark Grey */
.bg-dark {
    background-color: var(--color-grey-07);
}

/* Black */
.bg-black {
    background-color: var(--color-black);
}

/* ---- reverse text ---- */
.reverse-text {
    color: #ffffff;
}

.reverse-text a {
    color: inherit;
}

.reverse-text a:hover,
.reverse-text a:focus,
.reverse-text a:active {
    color: inherit;
}

.reverse-text h1,
.reverse-text .h1,
.reverse-text h2,
.reverse-text .h2,
.reverse-text h3,
.reverse-text .h3,
.reverse-text h4,
.reverse-text .h4,
.reverse-text h5,
.reverse-text .h5 {
    color: inherit;
}

/* ---- Buttons ---- */
.button {
    display: inline-block;
    margin-bottom: 0;
    white-space: nowrap;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    color: var(--color-black);
    background-color: transparent;
    text-decoration: none;
    border-radius: 0;
    border: 2px solid var(--color-black);
    text-transform: none;
    outline: none;
    opacity: 1;
    position: relative;
    font-weight: 700;
    font-family: 'Strayhorn MT W00 Regular', 'Strayhorn MT W01 Bold', serif;
    line-height: 1.2;
    -webkit-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

.button:hover,
.button:focus,
.button:active {
    background-color: #028293;
    border-color: #028293;
    color: #fff;
}

.button {
    font-size: 1.5rem;
    padding: 12px 18px 12px;
}



/* Small */
.button.button-small {
    font-size: 1.5rem;
    padding: 8px 10px 8px;
}

.button.button-wide {
    padding-left: 24px;
    padding-right: 24px;
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    /* Regular */
    .button {
        padding: 12px 18px 12px;
    }

    .button.button-wide {
        padding-left: 32px;
        padding-right: 32px;
    }
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    /* Large */
    .button.button-large {
        font-size: 1.8rem;
        padding: 14px 32px;
    }
}

.button--tag {
    background: #8d8d8d;
    color: #fff;
    border: 0;
    font-size: 1.4rem;
    padding: 8px 12px 8px 12px;
    border-radius: 2px;
    position: relative;
    text-transform: none;
}

.button--tag:hover,
.button--tag:focus,
.button--tag:active {
    background-color: #484848;
    color: #fff;
}


/* Primary -- purple */
.button--primary {
    border-color: #028293;
    background-color: #028293;
    color: #fff;
}

.button--primary:hover,
.button--primary:focus,
.button--primary:active {
    border-color: #508C94;
    background-color: #508C94;
    color: #fff;
}

.button--overlay {
    border-color: #028293;
    background-color: #028293;
    color: #fff;
}

.button--overlay:hover,
.button--overlay:focus,
.button--overlay:active {
    border-color: #508C94;
    background-color: #508C94;
    color: #fff;
    /* box-shadow: 0 0 10px rgba(0,0,0,0.1), 0 0 36px rgba(0,0,0,0.2); */
}

.button-white-outline {
    border-color: var(--color-white);
    background-color: transparent;
    color: var(--color-white);
}

.button-white-outline:hover,
.button-white-outline:focus,
.button-white-outline:active {
    border-color: var(--color-grey-07);
    background-color: var(--color-grey-07);
    color: var(--color-white);
}

/* Block */
.button--block {
    display: block;
    width: 100%;
}

.button--overlay {
    display: block;
    width: 100%;
}

/* BP large */
@media only screen and (min-width: 80em) { /* 1280px */
    .button--overlay {
        color: #fff;
        background-color: transparent;
        border-color: #fff;
    }

    .button--overlay:hover,
    .button--overlay:focus {
        color: #028293;
        background-color: #fff;
        border-color: #fff;
    }
}

/* Disabled/unavailable button style */
.button[disabled],
.button-disabled,
.button-disabled:hover,
.button-disabled:focus,
.button-disabled:active {
    opacity: 0.4;
    cursor: default;
    -webkit-box-shadow: none;
            box-shadow: none;
}

/* Firefox: Get rid of the inner focus border */
.button::-moz-focus-inner {
    padding: 0;
    border: 0;
}


/* ---- Animations ---- */

/* ---- Decals & motifs ---- */

/* ---- Highlight ---- */
.highlight,
.highlight--right,
.highlight--left {
    margin: 0 0 1.5rem;
    background: #F2F2F2;
	padding: 20px 30px;
	margin-bottom: 15px;
    clear: both;
}

.highlight *:last-child,
.highlight--right *:last-child,
.highlight--left *:last-child {
    margin-bottom: 0;
}

.mainbar .highlight h4 {
    color: #323232;
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    .highlight--left {
        float: left;
        width: 45%;
        margin-right: 20px;
        clear: right;
    }

    .highlight--right {
        float: right;
        width: 45%;
        margin-left: 20px;
        clear: left;
    }
}

.expando-opener-heading {
    margin-bottom: 0;
    position: relative;
    padding-left: 32px;
    transition:
        color 200ms ease-in-out;
}

h3.expando-opener-heading {
    font-size: 2.4rem;
}

h3.expando-opener-heading {
    font-size: 2rem;
}

.expando-opener-heading:hover,
.expando-opener-heading:hover,
.expando-opener-heading:focus,
.expando-opener-heading:focus {
    color: #26A2B3;
}

/* toggle icon */
.expando-opener-heading:after,
.expando-opener-heading:before {
    content: "\00a0";
    position: absolute;
    background-color: #525252;
    transition:
        background-color 200ms ease-in-out,
        top 200ms ease-in-out,
        left 200ms ease-in-out,
        transform 200ms ease-in-out;
}

.expando-opener-heading:after {
    height: 20px;
    width: 3px;
    top: calc(50% - 9.5px);
    left: 9px;
}
.expando-opener-heading:before {
    top: calc(50% - 1.5px);
    left: 0;
    height: 3px;
    width: 20px;
}

.expando-opener-heading.expanded:after,
.expando-opener-heading.expanded:before {
    transform: rotate(-45deg);
}

.expando-opener-heading:hover:after,
.expando-opener-heading:hover:before,
.expando-opener-heading:focus:after,
.expando-opener-heading:focus:before {
    background-color: #028293;
}

/* content */
.expando {
    margin-top: 12px;
}

/* close button */
.expando-closer-link {
    position: relative;
    padding-left: 20px;
}

.expando-closer-link:after,
.expando-closer-link:before {
    content: "\00a0";
    position: absolute;
    background-color:#26A2B3;
    transition: all 200ms ease-in-out;
    transform: rotate(-45deg);
}

.expando-closer-link:after {
    height: 16px;
    width: 2px;
    top: calc(50% - 8px);
    left: 7px;
}
.expando-closer-link:before {
    top: calc(50% - 1px);
    left: 0;
    height: 2px;
    width: 16px;
}

.expando-closer-link:hover:after,
.expando-closer-link:hover:before,
.expando-closer-link:focus:after,
.expando-closer-link:focus:before {
    background-color: #028293;
}

/* ---- Site Messages ---- */
ul.messages {
    list-style: none;
    margin: 16px 0 25px;
    padding: 0;
    background: none;
    border: 0px;
}

ul.messages li {
    margin: 0 0 15px;
    padding: 10px 20px;
    vertical-align: bottom;
    text-align: left;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.2em;
}

ul.messages .error {
    background: #E04D4D !important;
    border-left: 4px solid #B72323;
    color: #FFF !important;
}

ul.messages .confirm {
    color: #FFF !important;
    background: #6DBB5A !important;
    border-left: 4px solid #439230;
}

ul.messages a {
    color: #FFF;
}


/* ---- Icon sprite ---- */



/* ---- Search Paginate ---- */



/* Pagination for search rsults */

.search-paginate {
    padding-top: 12px;
    padding-bottom: 16px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 16px;
    position: relative;
}

.search-paginate .page-prev {
    float: left;
}

/* weird hack to get around not being able to hide empty paginate bar */
.search-paginate .page-next::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid var(--color-grey-02);
}

.search-paginate .page {
    border: 1px #DDD solid;
    background: #FFF;
    text-decoration: none;
    padding: 8px 5px 5px;
    margin: 0 3px;
    min-width: 40px;
    display: inline-block;
    display: inline-grid;
    justify-content: center;
    align-items: center;
}

.search-paginate .page-next {
    float: right;
}

@media screen and (max-width: 35em) { /* 560px */

    .search-paginate {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        margin: 0 -6px;
    }

    .search-paginate .page-next,
    .search-paginate .page-prev {
        flex: 1 0 50%;
        padding: 8px 6px;
    }

    .search-paginate .page-prev {
        order: 1;
        text-align: left;
    }

    .search-paginate .page-next {
        order: 2;
        text-align: right;
    }

    .search-paginate .page {
        order: 3;
        margin: 6px;
    }
}


/* ------------------------------------------------------
**** Images
------------------------------------------------------ */

img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

/* ------------------------------------------------------
**** Forms
------------------------------------------------------ */
/* ---- Form Placeholder ---- */
::-webkit-input-placeholder {
    color: var(--color-grey-05);
}

::-moz-placeholder {
    color: var(--color-grey-05);
}

:-ms-input-placeholder {
    color: var(--color-grey-05);
}

:-moz-placeholder {
    color: var(--color-grey-05);
}

.placeholder-text {
    color: var(--color-grey-05);
}

/* ---- Base Styles ---- */
/* all */
input,
textarea,
select {
    margin-bottom: 1.8rem;
    border: 2px solid #D4D3D4;
    border-radius:0;
    background-color:#F0F0F0;
    height: 44px;
    font-size: 1.6rem;
    line-height: 18px;
    padding: 9px 8px 9px;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 400;
}

select {
    padding-right: 50px;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-repeat: no-repeat;
    background-position: center right 12px;
    background-size: 16px auto;
    background-image: url(../images/icon_arrow-down.svg);
}

.field-element input.textbox,
.field-element select,
.field-element textarea {
    border: 2px solid #D4D3D4;
    border-radius:0;
    background-color:#F0F0F0;
    height: 44px;
}

.field-element .field-label,
.field-element .fieldset__legend {
    font-weight: bold;
}

form[action*="subscribe_action"] .field-element input.textbox,
form[action*="subscribe_action"] .field-element select,
form[action*="subscribe_action"] .field-element textarea {
    width: 100%;
}

textarea,
.field-element textarea {
    height: auto;
    min-height: 44px;
}

/* dropdown overrides */
.field-element--dropdown .field-input {
    height: 44px;
}
.field-element--dropdown.field-element--error select,
.field-element--dropdown select {
    height: 42px;
}
.field-element--dropdown select {
    border: none;
}

.field-element {
    margin-bottom: 1.8rem;
}


.form-section {
    background-color: var(--color-grey-01);
}

.form-section :where(th,td) {
    padding-top: 12px;
    padding-bottom: 12px;
}

.form-section :where(th:first-child,td:first-child) {
    padding-left: 24px;
}

.form-section :where(th:last-child,td:last-child) {
    padding-right: 24px;
}

form[action*="/subscriber"] :where(th) {
    padding-left: 24px;
    max-width: 62px;
}

.form-section input,
.form-section textarea,
.form-section select {
    margin-bottom: 0;
}
.form-section td input,
.form-section td textarea,
.form-section td select {
    width:100%;
}

.form-section th span.s {
    font-size: 1.3rem;
    font-weight: normal;
}

.form-section :where(input),
.form-section :where(textarea),
.form-section :where(select) {
    background-color: #ffffff;
}


/* ---- Radio and Checkbox Inputs ---- */

.checkbox-list .check {
    width: 40px;
}
.check input[type="checkbox"],
.radio input[type="radio"] {
    margin-bottom: 0;
    height: 1em;
    width: 1em;
}


.field-element--checkboxboollist .fieldset-input,
.field-element--checkboxset .fieldset-input,
.field-element--multiradio .fieldset-input {
    background-color: transparent;
    padding: 0 6px;
    margin-bottom: 0;
}

.field-element input[type="checkbox"],
.field-element input[type="radio"] {
    border:0;
    clip:rect(0 0 0 0);
    height:1px;
    margin:-1px;
    overflow:hidden;
    padding:0;
    position:absolute;
    width:1px
}

.field-element input[type="checkbox"].focusable:active,
.field-element input[type="checkbox"].focusable:focus,
.field-element input[type="radio"].focusable:active,
.field-element input[type="radio"].focusable:focus {
    clip:auto;
    height:auto;
    margin:0;
    overflow:visible;
    position:static;
    width:auto
}

.field-element input[type="checkbox"]+label,
.field-element input[type="radio"]+label,
.field-element--small input[type="checkbox"]+label,
.field-element--small input[type="radio"]+label {
    padding-left:32px;
    position:relative;
    cursor:pointer;
    display:inline-block;
}

.field-element input[type="checkbox"]+label:before,
.field-element input[type="radio"]+label:before,
.field-element--small input[type="checkbox"]+label:before,
.field-element--small input[type="radio"]+label:before {
    content:" ";
    display:inline-block;
    width:24px;
    height:24px;
    margin-right:12px;
    position:relative;
    top:4px;
    background-color:#F0F0F0;
    border:2px solid #D4D3D4;
    margin-left:-32px;
}

.field-element input[type="radio"]+label:before,
.field-element--small input[type="radio"]+label:before {
    border-radius:12px;
}

.field-element input[type="checkbox"]:checked+label:after,
.field-element input[type="radio"]:checked+label:after,
.field-element--small input[type="checkbox"]:checked+label:after,
.field-element--small input[type="radio"]:checked+label:after {
    content:" ";
    position:absolute;
    left:1px;
    top:6px;
}

.field-element input[type="checkbox"]:checked + label:after,
.field-element--small input[type="checkbox"]:checked + label:after {
    content:"\00a0";
    background-image:url(../images/2019/form_icons/icon_form_tick-md.svg);
    background-position:left top;
    background-repeat:no-repeat;
    background-size:90%;
    width:24px;
    height:24px;
}

.field-element input[type="radio"]:checked + label:after,
.field-element--small input[type="radio"]:checked + label:after {
    left: 7px;
    top: 11px;
    width: 10px;
    height: 10px;
    border-radius:5px;
    background:#5B5859;
}

.field-element--white input[type="checkbox"] + label:before,
.field-element--white input[type="radio"] + label:before {
    background-color:#fff;
}

.fieldset--multiradio:focus-within {
    outline:#636363 auto 5px;
}

.field-element input[type="checkbox"]:focus + label {
    outline:#636363 auto 5px;
    outline-offset: -3px;
}

/* Datepicker styles */

.field-element--datepicker input {
    background-image: url(../images/icon_form_datepicker.svg);
    background-repeat: no-repeat;
    background-position: center right 8px;
    width: 100%;
}

.daterangepicker .calendar th,
.daterangepicker .calendar td {
    padding: 4px 8px;
}
.daterangepicker .calendar th {
    background-repeat: no-repeat;
    background-position: center center;
}

.daterangepicker .calendar th.prev {
    background-image: url(../images/icon_form_arrow-left.svg);
}

.daterangepicker .calendar th.next {
    background-image: url(../images/icon_form_arrow-right.svg);
}


/* Hidden labels */
.field-element--hidden-label .field-label,
.field-element--hidden-label .fieldset__legend {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* ---- Color - White ---- */
.bg-grey-01 input,
.bg-grey-01 textarea,
.bg-grey-01 select,
.bg-grey-01 input[type="submit"],
.fields--white input,
.fields--white textarea,
.fields--white select,
.fields--white input[type="submit"] {
    border: 2px solid #D4D3D4;
    background-color:#fff;
}

/* ---- borderless ---- */

.fields--borderless input,
.fields--borderless textarea,
.fields--borderless select,
.field-element--borderless input,
.field-element--borderless input.textbox,
.field-element--borderless textarea,
.field-element--borderless select {
    border: 0px;
    background-color:#fff;
}

/* ---- Required / field info ---- */
.field-info,
span.field-info {
    color: #E37C2F;
}



.submit-bar a + input[type="submit"] {
    margin-left: 32px;
}

/* ---- Form Errors ---- */


/* Field info */
.form-section span.field-info {
    color: #028293;
}
.form-section span.field-info:before {
    content: "\2039\00a0";
}

.form-section span.field-info,
.form-section span.field-error {

    padding: 0;
    margin: 0;
    font-size: 1.3rem;
    /* vertical-align: middle;
    text-transform: uppercase; */
}

.form-section span.field-error {
    color: #D20000;
    font-weight: bold;
    display: block;
}

/* ---- disabled ---- */
.textbox[disabled],
select[disabled],
button[disabled] {
    cursor:not-allowed;
}

/* ---- Submit Bar ---- */
input[type="submit"] {
    display: inline-block;
    margin-bottom: 0;
    white-space: nowrap;
    text-align: center;
    cursor: pointer;
    background-color: transparent;
    text-decoration: none;
    border-radius: 0;
    outline: none;
    -webkit-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

/* ---- Inline forms ---- */
.form--inline,
.form--inline form {
    box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    margin-left: -6px;
    margin-right: -6px;
}

.form--inline > *,
.form--inline form > *  {
    box-sizing: border-box;
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;

    margin-left: 6px;
    margin-right: 6px;
}

/* inline form no spacing */
.form--inline-sans-space,
.form--inline-sans-space form {
    margin-left: 0;
    margin-right: 0;
}

.form--inline-sans-space > *,
.form--inline-sans-space form > *  {
    margin-left: 0;
    margin-right: 0;
}

/* ---- Search Form ---- */

/* ---- Search results ---- */

.search-result {
    padding: 25px 0 15px;
    border-bottom: 1px solid rgb(200,200,200);
}

.search-result h3 {
   margin: 0;
}


/* ---- Search pagination ---- */
/* ---- Captcha ---- */


/* ------------------------------------------------------
**** Tables
------------------------------------------------------ */

.x-scroll-wrap {
    overflow-x: auto;
}

/* ---- Default ---- */

table {
    border-collapse: collapse;
    border: none;
    margin: 15px 0 30px 0;
    width: 100%;
}
/* responsive table, might require tbody to work */
.responsive-table {
    display: block;
    overflow-x: scroll;
}

th,
td {
    padding: 5px 10px;
    border: 1px solid #e5e5e4;
}

th,
thead td {
    background: #E9E9E9;
    font-weight: 700;
}

table caption {
	background-color: #e5e5e4;
	padding: 5px 0;
	text-align: center;
	font-weight: bold;
}

/* ---- Form tables ---- */
form th,
form td {
	border: none;
}

.event-form {
	background-color: #EAEAEA;
	border: 1px solid #D1D1D1;
	padding: 20px;
	margin: 0 0 20px 0;
}

/* ---- Clean table ---- */
.clean th,
.clean td {
	border: none;
}


/* ---- No Styles Table ---- */
.table--unstyled {
    border-collapse: separate !important;
    border: none !important;
    background: none !important;
    min-width: 0 !important;
}

.table--unstyled th,
.table--unstyled thead td,
.table--unstyled td {
    padding: 0 !important;
    border: 0 !important;
    background: none !important;
}


/* ---- Elected Table ---- */
.elected {
	width: auto;
	margin-bottom: 10px;
}

.elected td {
	border: none;
	padding-left: none;
}

.elected h4 a:link,
.elected h4 a:visited {
	text-decoration: none;
}


/* ---- meeting records tables ---- */

.table--meeting-records tbody {
    display: table-row-group;
}

@media only screen and (max-width: 600px) {

    .table--meeting-records,
    .table--meeting-records tbody,
    .table--meeting-records tr {
        display: block;
        border: none;
    }
    .table--meeting-records thead,
    .table--meeting-records th {
        display: none;
    }
    .table--meeting-records tr {
        display: table;
        width: 100%;
    }
    .table--meeting-records tr.table--meeting-records__first-row {
        display: none;
    }
    .table--meeting-records td {
        display: block;
        border-top: 0px;
        /*padding: 0;*/
        /*width: 100%;*/
    }
    .table--meeting-records td:first-child {
        background: #e5e5e4;
    }

    .table--meeting-records tbody tr {
        margin-bottom: 20px;
    }


}




/* ------------------------------------------------------
**** Helper classes
------------------------------------------------------ */

/* ---- Clearfix ---- */
.clear {
    height: 0;
    clear: both;
    display: block;
}

.-clearfix:before,
.-clearfix:after {
    content: " ";
    display: table;
}

.-clearfix:after {
    clear: both;
}


/* ---- Hiding classes ---- */
.-ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
}

.-ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

.-hidden {
    display: none !important;
    visibility: hidden;
}

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

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

.-invisible {
    visibility: hidden;
}

/* ---- Pseudo elements ---- */

/* ---- Floats and positioning ---- */

.left,
.center,
.right {
    margin: 30px auto;
    display: block;
}

/* BP Smaller */
@media screen and (min-width: 35em) { /* 560px */
    .left {
        margin: 0 30px 30px 0;
        float: left;
    }

    .right {
        margin: 0 0 30px 30px;
        float: right;
    }
}


/* ------------------------------------------------------
**** Template Layout
------------------------------------------------------ */
* {
    margin: 0;
}

html,
body {
    background: #FFF;
    height: 100%;
}

#wrap {
    width: 100%;
    position: relative;
    overflow-x: hidden;
}


/* ---- Container ---- */
.container {
    width: var(--default-container);
    margin-inline: auto;
}

/* ---- Simple content alignment classes ---- */

/* ---- Margin & padding classes ---- */
.mb-0 {
    margin-bottom: 0;
}

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


/* ---- Sections ---- */
.section {
    padding-top: 36px;
    padding-bottom: 36px;
}

/* Small */
.section--small {
    padding-top: 18px;
    padding-bottom: 18px;
}

/* Large */
.section--large {
    padding-top: 54px;
    padding-bottom: 54px;
}

/* No padding */
.section--0 {
    padding-top: 0;
    padding-bottom: 0;
}

/* top only */
.section--t {
    padding-top: 36px;
    padding-bottom: 0;
}

.section--t-lg {
    padding-top: 54px;
    padding-bottom: 0;
}

/* bottom only */
.section--b {
    padding-top: 0;
    padding-bottom: 36px;
}

.section--b-lg {
    padding-top: 0;
    padding-bottom: 54px;
}

.section--content {
    padding-top: 24px;
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .section--small {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .section--large {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    /* none */
    .section--0 {
        padding-top: 0;
        padding-bottom: 0;
    }

    /* top only */
    .section--t {
        padding-top: 72px;
        padding-bottom: 0;
    }

    .section--t-lg {
        padding-top: 108px;
        padding-bottom: 0;
    }

    /* bottom only */
    .section--b {
        padding-top: 0;
        padding-bottom: 72px;
    }

    .section--b-lg {
        padding-top: 0;
        padding-bottom: 108px;
    }

    /* breakpoint specific */
    .section-sm {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .section--large-sm {
        padding-top: 108px;
        padding-bottom: 108px;
    }

    .section--0-sm {
        padding-top: 0;
        padding-bottom: 0;
    }

    .section--vw-sm {
        padding-top: 4vw;
        padding-bottom: 4vw;
    }

    .section--content {
        padding-top: 40px;
    }
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    /* breakpoint specific */
    .section-md {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .section--large-md {
        padding-top: 108px;
        padding-bottom: 108px;
    }

    .section--0-md {
        padding-top: 0;
        padding-bottom: 0;
    }
}

/* BP xxlarge */
@media screen and (min-width: 100em) {/* 1600px */
    /* bottom only */
    .section--b--xxl {
        padding-top: 0;
        padding-bottom: 72px;
    }

    .section--b-lg--xxl {
        padding-top: 0;
        padding-bottom: 108px;
    }
}


/* -- Section CTA-- */
.section__cta {
    text-align: center;
    margin-bottom: 0;
}

.section__cta .button {
    width: 100%;
    display: block;
}

/* BP Smaller */
@media screen and (min-width: 35em) { /* 560px */
    .section__cta .button {
        width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .section .section__cta {
        padding-top: 36px;
    }

    .section--large .section__cta {
        padding-top: 54px;
    }
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    .section .section__cta {
        padding-top: 72px;
    }

    .section--large .section__cta {
        padding-top: 90px;
    }

}

.page-header {
    text-align: center;
    margin-bottom: 1em;
}

.page-title {
    font-family: 'Strayhorn MT W00 Regular', 'Strayhorn MT W01 Bold', serif;
    margin-bottom: 0;
}

@media screen and (min-width: 48em) { /* 768px */
    .page-header {
        margin-bottom: 24px;
    }
}

/* ---- Page template styles ---- */
/* mainbar */

.mainbar table + h2,
.mainbar table + h3,
.mainbar table + h4 {
    margin-top: 3rem;
}

/* Sidebar */
.sidebar h2,
.sidebar h3 {
    font-family: 'Strayhorn MT W01 Bold',serif;
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .sidebar {
        padding-right: calc(18px + 1rem);
    }

    .sidebar--right {
        padding-right: 1rem;
    }
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    .sidebar {
        padding-right: calc(30px + 1rem);
    }

    .sidebar--right {
        padding-right: 1rem;
    }
}


/* ---- Content Box ---- */


/* ---- Header ---- */
.header {
    display: none;
}

.header > .container {
    padding-block: var(--section) 1em;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
}

.header__logo {
    align-self: center;
    display: block;
    margin-inline: auto;
    width: min(50vw, 600px);
}

.header__subtitle {
    font-family: 'Strayhorn MT W00 Regular', serif;
    font-style: italic;
    font-size: var(--large-font-size);
    color: var(--color-grey-07);
    flex: 1 1 auto;
    margin-bottom: 0;
    text-align: center;
    /* height: 27px; */
}

.header__row {
    position: relative;
    display: flex;
    flex-direction: row;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    /* width: 100%; */
    align-items: flex-end;
    /* Ensure the text is centered even though there's the header actions on the right hand side */
    padding-inline: 116px
}

.header__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 1em;
    margin-right: -116px;
    width: 116px;
    justify-content: flex-end;
}

.header__actions__item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    color: var(--color-black);
}

.header__actions__item img {
    width: 32px;
}

.header__actions__item__label {
    font-size: var(--centi-font-size);
    /* line up the label bottom with the header subtitle */
    margin-top: 3px;
    line-height: 24px;
}

.primary-nav {
    margin-top: 2em;
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    .header {
        display: block;
    }
}

/* ---- Banner ---- */
.banner__container {
    position: relative;
    padding-bottom: 1em;

}

.banner__title {
    text-align: center;
    border-top: 1px solid var(--color-text, #000);
    border-bottom: 1px solid var(--color-text, #000);
}

.banner__img {
    margin-bottom: 1em;
}

.feature-gallery {
    padding-top: 1em;
    padding-bottom: var(--section-small);
}

/* ---- Event Landing page ---- */

/* ---- Event promos ---- */

/* ---- volunteer vacancy single page ---- */

/* ---- Facilities  ---- */

/* ---- Elected  ---- */

/* ---- Newsletter ---- */
.newsletter-signup {
    text-align: center;
    padding-block: 2em 1.5em;
}

.newsletter-signup .container {
    max-width: 380px;
}

.newsletter-signup__title {
    font-family: 'Strayhorn MT W00 Regular', serif;
    font-size: var(--mega-font-size);
    line-height: 1;
    margin-bottom: 1.2rem;
}

.newsletter-signup__subtitle {

}

.newsletter-signup__form {
    box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    gap: 8px;
    align-items: stretch;
    margin-bottom: 24px;
}

.newsletter-signup__form input[type="text"] {
    font-family: 'Strayhorn MT W00 Regular', serif;
    -webkit-appearance: none;
    background-color: #fff;
    display: block;
    width: 100%;
    outline: none;
    border: none;
    font-size: 1.5rem;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    line-height: 1.2;
    margin-bottom: 0;
}

/* BP Smaller */
@media screen and (min-width: 35em) { /* 560px */
    .newsletter-signup__form input[type="text"] {
        font-size: 1.8rem;
        padding-top: 18px;
        padding-left: 18px;
        padding-right: 18px;
        padding-bottom: 18px;
    }

    .newsletter-signup__form input[type="submit"] {
        font-size: 1.8rem;
        padding-block: 8px;
    }
}


/* ---- Social List  ---- */
.social-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.social-list__title {
    font-family: 'Strayhorn MT W00 Regular', serif;
    text-transform: lowercase;
    font-style: italic;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

/* ---- Footer ---- */

.footer > .container {
    display: grid;
}

.section--footer p {
    margin-bottom: 0;
}

.footer__link-list {
    margin-bottom: 0.4em;
}

.footer__link-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
/* footer contact */
.footer__contact {
    padding-top: var(--section);
}

.footer__technical-links {
    align-self: end;
    color: var(--color-grey-05);
}


/* footer socials */
.footer__social {
    margin: 0;
    padding-left: 0;
    list-style-type: none;
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 29px repeat(auto-fill, minmax(20px, 1fr));
    gap: 8px;
    -webkit-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    margin-bottom: 1.5em;
}

.footer__social li {
    display: block;
}

.footer__social a {
    display: grid;
    place-content: center;
}

.footer__contact h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer__contact p {
    font-size: 1.5rem;
    line-height: 1.75;
}

.footer__contact .col--contact {
    position: relative;
}

.link--icon {
    display: block;
    line-height: 32px;
    text-decoration: none;
    color: inherit;
}

.link--icon .icon {
    display: block;
    background-color: #8D8D8D;
    border-radius: 16px;
    width: 32px;
    height: 32px;
    margin-right: 8px;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    float: left;
    -webkit-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

.icon--email {
    background-image: url(../images/icon_email.svg);
}

.icon--feedback {
    background-image: url(../images/icon_feedback.svg);
}

.icon--phone {
    background-image: url(../images/icon_phone.svg);
}

.link__text {
    text-decoration: underline;
}

.link--icon:hover .icon,
.link--icon:focus .icon,
.link--icon:active .icon {
    background-color: #028293;
}

.footer__parent-logo {
    display: block;
    margin-inline: auto;
}

.footer__parent-logo svg {
    display: block;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.footer__contact__grid {
    display: grid;
    gap: 1rem;
}

/* BP MAX Smaller */
@media screen and (max-width: 47.9375em) { /* 767px */
    .section--contact:before {
        content: "\00a0";
        position: absolute;
        background-color: rgba(0,0,0,0.2);
        top: 0;
        left: 0;
        right: 0;
        height: 160px;
        z-index: 1;
    }
}

/* BP small */
@media screen and (min-width: 35em) { /* 560px */
    .footer > .container {
        grid-template-columns: 1fr 170px;
        gap: 1rem;
    }

    .footer__technical-links {
        grid-column: 1;
    }

    .footer__parent-logo {
        grid-row: 1 / 3;
        grid-column: 2;
        align-self: end;
        margin-right: 0;
    }
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .footer__contact__grid {
        display: grid;
        gap: 1rem;
        grid-template-columns: 1fr 1fr;
    }

    .col--contact {
        grid-column: 1 / 3;
    }

    .footer__social {
        margin-bottom: 1.5em;
    }

    .footer__link-list li {
        display: inline-block;
    }

    .footer__link-list li:after {
        content: "\00a0\00a0\002f\00a0\00a0";
    }

    .footer__link-list li:last-child:after {
        content: none;
    }

    .footer__parent-logo {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .footer__copyright {
        display: inline-block;
        margin-top: 1.8rem;
    }
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    .footer > .container {
        grid-template-columns: 3fr 1fr;
    }

    .footer__contact__grid {
        grid-template-columns: minmax(200px, 1fr) minmax(160px, 1fr) minmax(200px, 1fr);
    }

    .col--contact {
        grid-column: auto;
    }

    .footer__contact .col--contact:before {
        content: "\00a0";
        position: absolute;
        top: 0;
        bottom: 0;
        left: -32px;
        width: 1px;
        background-color: #979797;
    }

    .footer__contact .col--address p {
        margin-bottom: 1em;
    }
}

/* BP large */
@media only screen and (min-width: 80em) { /* 1280px */
    .footer__contact .col--contact:before {
        left: -40px;
    }

    .footer__social {
        margin-bottom: 0;
    }

    .footer__mod {
        display: inline-block;
        float: right;
    }
    .footer__link-list a {
        text-decoration: none;
    }

    .footer__link-list a:hover,
    .footer__link-list a:focus,
    .footer__link-list a:active {
        text-decoration: underline;
    }
}


/* ---- Magnific Popup ---- */
.mfp-image-holder .mfp-content {
    max-width: 1000px;
}

.mfp-ajax-holder .mfp-content {
    background-color: #fff;
    margin: 0 auto;
    padding: 50px;
    max-width: 700px;
}


/* ------------------------------------------------------
**** Widgets
------------------------------------------------------ */
/* ---- Catch all ---- */
.sidebar .widget {
    margin-bottom: 25px;
}

.sidebar > .widget > .widget-title:first-child {
    padding-top: 48px;
    padding-bottom: 3px;
    border-bottom: 1px #e5e5e4 solid;
    margin-bottom: 27px;
}

/* Boxes in the sidebar */
.sidebar-box {
	background: #E9E9E9;
	padding: 15px;
	margin: 15px 0;
}

.sidebar-box h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.sidebar-box h3 {
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 10px 0;
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    .sidebar-box {
        margin-right: -37px;
    }
}

/* ---- Related Links ---- */
.widget-RelatedLinks ul {
    padding-left: 0;
    margin-left: 0;
    list-style-type: none;
}

.widget-RelatedLinks .widget-title {
	margin: 0;
	color: #525252;
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 2rem;
}

.widget-RelatedLinks li {
    display: block;
}

.widget-RelatedLinks li a {
    position: relative;
    padding: 0;
    margin-top: 7px;
    margin-bottom: 7px;
	display: inline-block;
	text-decoration: none;
    font-size: 1.6rem;
    color: #4A4A4A;
    line-height: 1.2;
}

.widget-RelatedLinks > ul > li > a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: transparent;
    -webkit-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
}

.widget-RelatedLinks li a:focus,
.widget-RelatedLinks li a:hover,
.widget-RelatedLinks li a:active {
    color: #4A4A4A;
}

.widget-RelatedLinks > ul > li > a:focus:before,
.widget-RelatedLinks > ul > li > a:hover:before,
.widget-RelatedLinks > ul > li > a:active:before {
    background-color: #028293;
}

/* Second level links */
.widget-RelatedLinks ul .on ul {
    position: relative;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    margin: 0;
}

.widget-RelatedLinks ul .on ul.depth2 {
    padding-bottom: 8px;
}

.widget-RelatedLinks .on ul li a {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    padding-left: 24px;
    font-size: 1.4rem;
    color: #525252;
    position: relative;
}
.widget-RelatedLinks .on ul li a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 24px;
    right: 0;
    height: 1px;
    -webkit-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
}

.widget-RelatedLinks .on ul .on a,
.widget-RelatedLinks .on ul li a:hover,
.widget-RelatedLinks .on ul .on a:hover {
    color: #000;
}

.widget-RelatedLinks .on ul li a:hover:before,
.widget-RelatedLinks .on ul .on a:hover:before,
.widget-RelatedLinks .on ul li a:focus:before,
.widget-RelatedLinks .on ul .on a:focus:before {
    background-color: #26A2B3;
}

.widget-RelatedLinks .on ul .depth3 a {
    padding: 0 0 0 48px;
    font-size: 1.4rem;
    color: #525252;
    position: relative;
}

.widget-RelatedLinks ul .on ul.depth3 {
    padding-bottom: 4px;
}

.widget-RelatedLinks .on ul .depth3 a:before {
    left: 48px;
}
.widget-RelatedLinks .on ul .depth3 a:after {
    content: "\2022";
    position: absolute;
    top: calc(50% - 0.5em);
    left: 32px;
}

.widget-RelatedLinks .on ul .depth3 a:hover:before,
.widget-RelatedLinks .on ul .depth3.on a:hover:before,
.widget-RelatedLinks .on ul .depth3 a:focus:before,
.widget-RelatedLinks .on ul .depth3.on a:focus:before {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
    color: #744B7F;
}



/* ---- Simple Image Gallery ---- */
.widget-ImageGallery {
	margin: 20px 0;
}

.widget-ImageGallery img {
	display: block;
}

.widget-ImageGallery .image-wide {
	float: left;
	margin-right: 5px;
	margin-bottom: 5px;
}

.widget-ImageGallery .image-gallery-thumb img {
	width: 100%;
}

.widget-ImageGallery .image-wide p {
    text-align: center;
}

.widget-ImageGallery .image-tall {
	margin-bottom: 5px;
}

.widget-ImageGallery .image-tall img {
    display: inline;
    vertical-align: middle;
    margin-right: 5px;
}

.widget-ImageGallery .image-tall span {
    vertical-align: middle;
}

.widget-ImageGallery .image-tall-compact {
	float: left;
	margin-right: 5px;
	margin-bottom: 5px;
}

/* -- Wide -- */
.widget-ImageGallery.orientation-wide .image-gallery-thumb {
    margin: 0 3% 3% 0;
    width: 31.3333%;
}

.widget-ImageGallery.orientation-wide .image-gallery-thumb:nth-child(5n+5) {
    margin-right: 3%;
}

.widget-ImageGallery.orientation-wide .image-gallery-thumb:nth-child(3n+3) {
    margin-right: 0;
}

@media screen and (max-width: 850px) {
    .widget-ImageGallery.orientation-wide .image-gallery-thumb {
        margin: 0 3% 3% 0;
        width: 31.3333%;
    }
    .widget-ImageGallery.orientation-wide .image-gallery-thumb:nth-child(3n+3) {
        margin-right: 0;
    }
}
@media screen and (max-width: 650px) {
    .widget-ImageGallery.orientation-wide .image-gallery-thumb {
        margin: 0 3% 3% 0;
        width: 31.3333%;
    }
    .widget-ImageGallery.orientation-wide .image-gallery-thumb:nth-child(3n+3) {
        margin-right: 0;
    }
}

@media screen and (max-width: 500px) {
    .widget-ImageGallery.orientation-wide .image-gallery-thumb {
        width: 48.5%;
    }
    .widget-ImageGallery.orientation-wide .image-gallery-thumb:nth-child(3n+3) {
        margin-right: 3%;
    }
    .widget-ImageGallery.orientation-wide .image-gallery-thumb:nth-child(2n+2) {
        margin-right: 0;
    }
}

/* ---- Image Gallery - Version 2 ---- */
.widget-Gallery .g2-thumb,
.widget-GalleryPreview .g2-thumb {
	float: left;
	margin: 5px 15px 10px 0;
	width: 150px;
	background: #CCC;
	height: 220px;
}

.widget-Gallery .g2-thumb a.thum,
.widget-GalleryPreview .g2-thumb a.thum {
    display: block;
    text-decoration: none;
    color: #000;
}

.widget-Gallery .g2-thumb a.thum img,
.widget-GalleryPreview .g2-thumb a.thum img {
    display: block;
}

.widget-Gallery .g2-thumb .name,
.widget-GalleryPreview .g2-thumb .name {
    padding: 5px 10px;
    color: #000;
    text-align: center;
}

.widget-Gallery .g2-thumb .name a,
.widget-GalleryPreview .g2-thumb .name a {
    text-decoration: none;
    color: #000;
}

.g2popup .large {
    float: left;
    width: 645px;
    height: 500px;
    margin: 0;
    padding: 0;
}

#facebox .g2popup .large img {
    display: block;
    margin: 0 auto;
}

.g2popup .side {
    float: left;
    width: 200px;
    margin: 0;
    padding: 0;
}

.g2popup .rating {
    padding: 12px 9px;
    background: #e7e7e7;
}

.g2popup .rating b {
    font-size: 30px;
    vertical-align: middle;
}

.g2popup .rating span {
    font-size: 12px;
    vertical-align: middle;
}

.widget-GalleryPreview {
	padding-bottom: 20px;
	padding-top: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #E5E5E4;
	border-top: 1px solid #E5E5E4;
}

.widget-GalleryPreview .show-all {
    text-align: right;
    font-weight: bold;
    text-decoration: none;
    padding-right: 60px;
    margin: 0 0 0 0;
}

.widget-GalleryPreview .show-all a:link,
.widget-GalleryPreview .show-all a:visited,
.widget-GalleryPreview .show-all a:hover {
    font-weight: bold;
    text-decoration: none;
}


/* ---- Children Page Gallery ---- */
.widget-EventCategoryGallery,
.widget-ChildrenGallery {
	margin: 36px -9px;
    box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.pg-link {
    position: relative;
    text-decoration: none;
    padding: 0 9px;
    margin-bottom: 27px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.pg-item {
    position: relative;
	margin: 0;
    text-decoration: none;
    overflow: hidden;
}

@supports(display: block) {
    .pg-item {
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
        -ms-flex: 0 1 auto;
        -webkit-box-flex: 0;
        flex: 0 1 auto;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.pg-item .pg-image,
.pg-item .pg-no-image {
    display: block;
}

.pg-item .pg-no-image {
    background: #CCC;
    aspect-ratio: 730/633;
}

.pg-item h3 {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 0;
    padding-right: 0;
    color: #028293;
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.pg-link:hover .pg-item h3,
.pg-link:focus .pg-item h3 {
    color: #525252;
}

.pg-item h4:hover,
.pg-link:hover .pg-item h4 {
    color: #525252;
}

.pg-item h4 span {
    text-decoration: underline;
}

.pg-item-mod3 {
    border: none;
}

.pg-image {
    transform-origin: bottom center;
    transition: all 250ms ease-in-out;
    opacity: 1;
}

.pg-link:hover .pg-image,
.pg-link:focus .pg-image {
    transform: scale(1.05);
    opacity: 0.9;
}

.pg-spacer {
	clear: both;
	display: block;
	border: none;
	border-top: 1px #e5e5e4 solid;
	height: 1px;
	margin: 2px 0;
}

/* BP Smaller */
@media screen and (min-width: 35em) { /* 560px */
    .pg-link {
        -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
        max-width: 33.333%;
    }
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .wide .pg-link {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    .pg-item h3 {
        font-size: 1.6rem;
    }

    .pg-link {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }
}

/* BP large */
@media only screen and (min-width: 80em) { /* 1280px */
    .pg-item {
        width: 100%;
    }

    .pg-item img,
    .pg-item h3 {
        position: relative;
        z-index: 1;
    }

    .pg-link:hover .pg-item:before,
    .pg-link:focus .pg-item:before {
        width: 100%;
        opacity: 1;
    }
}

/* ---- Social Feed ---- */
/* NOTE: please review - does anyone know where this is being used?*/
.mainbar .widget-Social {
	width: 300px;
	height: 300px;
	float: right;
	overflow-y: auto;
}

.sidebar .widget-Social {
	height: 300px;
	overflow-y: auto;
}

.widget-Social .feed-post {
	padding: 12px;
	border-bottom: 1px #CCC dashed;
}

.widget-Social .feed-img {
	margin-right: 10px;
	float: left;
}

.widget-Social .feed-txt {
	width: 200px;
	line-height: 1.4em;
	float: left;
}

.feed-facebook h3 {
	background: url('../images/icon_fb.png') #3B5998 right 4px no-repeat;
	padding: 4px 0 4px 10px;
	color: #fff;
}

.feed-twitter h3 {
	background: url('../images/icon_tw.png') #3B5998 right 4px no-repeat;
	padding: 4px 0 4px 10px;
	color: #fff;
}

/* ---- Social Hub ---- */
.item-author {
    float: left;
}

.item-meta {
    width: 25%;
    text-align: right;
    position: static;
    right: auto;
    top: auto;
    float: right;
    padding-top: 12px;
}

.item .post-url {
    position: absolute;
    top: 10px;
    bottom: 10px;
    width: 80px;
    right: 10px;
    color: #fff;
    background-color:#8A5997;
    border-color:#8A5997;
    -webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}

.item:hover .post-url {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.item .post-url:hover,
.item .post-url:focus,
.item .post-url:active {
    color:#fff;
    background-color: #484848;
    border-color: #484848;
}

/* ---- Share links / Share bar ---- */
.share-bar {
    border-bottom: 1px #e5e5e4 solid;
    padding-top: 5px;
    margin-top: 36px;
    margin-bottom: 9px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.share-btn {
    margin-bottom: 5px;
    margin-top: 5px;
}

.share-btn a {
    display: inline-block;
    margin-bottom: 0;
    white-space: nowrap;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    color: #4A4A4A;
    text-decoration: none;
    border-radius: 0;
    background-color: transparent;
    border-radius: 3px;
    border: none;
    outline: none;
    opacity: 1;
    position: relative;
    font-size: 1.5rem;
    -webkit-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    padding-right: 0;
    padding-left:  0;
}

.share-btn a:hover,
.share-btn a:focus,
.share-btn a:active {
    color: #000;
}

.share-btn a span {
    display: inline-block;
    padding-top: 8px;
    padding-bottom: 7px;
    padding-right: 2px;
}

.share-btn a img {
    display: inline-block;
    vertical-align: text-bottom;
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .share-btn {
        margin-top: 0;
        margin-bottom: 0;
    }
}

.email-share {
    margin: 0 0 20px 0;
    padding: 10px 20px;
    background-color: #E9E9E9;
}

.email-share *:last-child{
    margin-bottom: 0;
}
/* ---- Product List ---- */
.widget-ProductList table {
	width: 100%;
}

/* ---- Articles ---- */
.article {
	padding: 8px 0;
	margin: 8px 0;
	border-bottom: 1px solid #C9C9C9;
}

.article-search-link {
    padding: 16px 0;
    border-top: 1px solid #C9C9C9;
    border-bottom: 1px solid #C9C9C9;
}

@media screen and (min-width: 64em ) { /* 1024 */
    .article {
        padding: 20px 0;
        margin: 20px 0;
    }

    .article-search-link {
        float: right;
        border: 0;
        margin-left: 20px;
    }
}


.article-search-box {
	clear: both;
	background: #f8f8f8;
	border: 1px solid #CCC;
	padding: 10px 15px;
}

.article-search-box p {
	float: left;
	margin-right: 10px;
}

/* ---- Events ---- */
.module-search-title {
    margin-bottom: 8px;
    font-size: 1.5rem;
}

@media screen and (min-width: 64em ) { /* 1024 */
    .module-search-title {
        margin-bottom: 0px;
    }

}

/* ---- Blog Hub ---- */
/* This is drenched in isotope and it's awful */
#blog-posts {

}

.blog-post-preview {

}

@media screen and (min-width: 35em ) { /* 560px */
    #blog-posts {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        grid-gap: 1.5em;
    }
}

/* ---- Blog List ---- */
.search_results,
.widget-BlogsList > div:first-child {
    display: grid;
    grid-gap: 1.5em;
}

.search_results {
    grid-gap: 2em;
}

.blog-separate {
    display: block;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid var(--color-grey-02);
}


.blog-item {
    display: flex;
    flex-direction: column;
}

.blog-item .author {
    display: none;
}

.blog-post__description {
    order: 2;
}

.blog-item .details {
    margin-bottom: 1em;
}

.blog-item .details .date {
    margin: 0;
}

.blog-post__read-more-link {
    display: none;
}

.blog-post-featured-img {
    order: -1;
}

.blog-item .blog-image {
    display: none;
}

.blog-item .blog-tools,
.blog-item .clear {
    display: none;
}


@media screen and (min-width: 35em ) { /* 560px */
    .blog-item {
        display: grid;
        column-gap: 1em;
        grid-auto-columns: 1fr 2fr;
        grid-template-rows: auto auto auto 1fr;
    }

    :where(.blog-item) > :where(.blog-post-featured-img) ~ * {
        grid-column: 2;
    }

    .blog-item .blog-post-featured-img {
        grid-column: 1;
        grid-row-start: 1;
        grid-row: span 4;
        margin-bottom: 0;
    }
}

@media screen and (min-width: 62em ) { /* 992px */
    .blog-item {
        column-gap: 2em;
    }
}

/* ---- Posts Gallery ---- */
.posts-gallery,
#blog-posts {
    display: grid;
    grid-gap: 6vw;
}

.posts-gallery__item {
    /* border-bottom: 1px solid var(--color-grey-01);
    padding-bottom: 1em; */
    text-decoration: none;
    color: var(--color-text);
    transition: 300ms ease-in-out;
    transition-property: background, outline;
    outline: 6px solid transparent;
    cursor: pointer;
}

.posts-gallery__item:hover,
.posts-gallery__item:focus,
.posts-gallery__item:active {
    color: currentColor;
    background-color: var(--color-grey-005);
    outline: 12px solid var(--color-grey-005);

}

.posts-gallery__picture,
.blog-post-featured-img {
    display: block;
    margin-bottom: 1em;
    overflow: hidden;
}

.posts-gallery__item:hover .posts-gallery__image,
.posts-gallery__item:active .posts-gallery__image,
.posts-gallery__item:focus .posts-gallery__image {
    transform: scale(1.05);
}

.posts-gallery__image,
.blog-post-featured-img,
.posts-gallery__image--fallback {
    background-color: var(--color-grey-01);
    width: 100%;
    object-fit: cover;
    transition: transform 300ms ease-in-out;
    transform: scale(1);
}

.posts-gallery__image--fallback {
    aspect-ratio: 16/12;
    background-image: url(../images/logo.svg);
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
}

.posts-gallery__title,
.blog-item h3 {
    font-family: 'Strayhorn MT W00 Regular', serif;
    font-weight: bold;
    font-size: calc(var(--body-font-size) * 1.25);
    line-height: 1.2;
    margin-bottom: 0.5em;
}

.blog-title-link,
.posts-gallery__title a {
    text-decoration: none;
    color: inherit;
}

.posts-gallery__title a:hover,
.posts-gallery__title a:active,
.posts-gallery__title a:focus {
    color: var(--color-grey-08);
}

.posts-gallery__footer {
    display: block;
    margin-top: auto;
}

.posts-gallery__footer p {
    margin-bottom: 0;
}

:where(.posts-gallery__footer) > * {
    flex: 0 0 auto;
}

.posts-gallery__date {
    display: inline;
}

.posts-gallery__date:after {
    content: "\2002•\2002";
}


.posts-gallery__category {
    display: inline;
}

:where(.posts-gallery__category) > a {
    display: inline;
    margin-right: 0.5em;
}

:where(.posts-gallery__category) > a:last-child {
    margin-right: 0;
}

:where(.posts-gallery__category) > a:hover {
    text-decoration-style: dotted;
    color: var(--color-black);
}

:where(.posts-gallery__category) > a:focus,
:where(.posts-gallery__category) > a:active {
    text-decoration-style: dashed;
    color: var(--color-black);
}


.posts-gallery__category__tag {
    padding: 0 2px;
}

.posts-gallery__category__tag::before {
    content: ' • ';
    padding: 0 4px 0 0;
}
.posts-gallery__category__tag:first-child:before {
    content: unset;
}



@media screen and (min-width: 35em ) { /* 560px */
    .posts-gallery,
    #blog-posts {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        grid-gap: 1.5em;
    }
}

@media screen and (min-width: 48em ) { /* 768px */
    .posts-gallery__item {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        font-size: 1.6rem;
    }

    .posts-gallery__description {
        margin-bottom: 1.6rem;
    }
}

/* ---- Posts Feature Gallery ---- */
.posts-feature-gallery {
    display: grid;
    grid-gap: 6vw;
}

@media screen and (min-width: 48em ) { /* 768px */
    .posts-feature-gallery {
        display: grid;
        gap: 1.5em;
        grid-template-columns: 1fr 1fr;
    }

    .posts-feature-gallery__item--1 {
        grid-column: 1 / 3;
    }

    .posts-feature-gallery__item--1 .posts-gallery__image {
        /* aspect-ratio: 16/9; */
    }

    .posts-feature-gallery__item--1 .posts-gallery__title {
        font-size: calc(1.6rem * 2);
    }

    .posts-feature-gallery__item--1 .posts-gallery__title {
        margin-bottom: 1.6rem;
    }
}

@media screen and (min-width: 62em ) { /* 992px */
    .posts-feature-gallery {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-flow: dense;
    }

    .posts-feature-gallery .posts-gallery__description {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .posts-feature-gallery__item--1 {
        grid-column: 1 / -1;
        grid-row: 1 / 1;

        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 1.5em;
        align-items: center;

    }

    .posts-feature-gallery__item--1 .posts-gallery__picture {

        margin: 0;
    }

    .posts-feature-gallery__item--1 .posts-gallery__textarea {
        padding-right: 2em;
    }

    .posts-feature-gallery__item--1 .posts-gallery__image {
        aspect-ratio: initial;

    }
/*
    .posts-feature-gallery__item--1 .posts-gallery__title,
    .posts-feature-gallery__item--1 .posts-gallery__description,
    .posts-feature-gallery__item--1 .posts-gallery__footer {
        grid-column: 2;
    } */
}

/* ---- Pagination ---- */
.pagination {
    display: flex;
    justify-content: center;
}

.pagination :first-child {
    margin-left: 0;
}

.page,
.page-next,
.page-prev {
    border: 1px solid var(--color-black);
    text-decoration: none;
    height: 48px;
    display: grid;
    place-items: center;
    margin-left: -1px;
    font-weight: bold;
    transition:
        background-color 250ms ease,
        border 250ms ease,
        color 250ms ease;
}

.page {
    width: 48px;
}

.page-next,
.page-prev {
    padding-inline: 0.75em;
}

.page.on {
    background-color: var(--color-black);
    color: var(--color-white);
}

.page:hover,
.page:focus,
.page-next:hover,
.page-next:focus,
.page-prev:hover,
.page-prev:focus {
    background-color: var(--color-grey-08);
    border-color: var(--color-grey-08);
    color: var(--color-white);
}

/* ---- Single blog post ---- */
.blog-post-header {
    width: var(--small-container);
    margin: auto;
    text-align: left;
}

.blog-post-header .page-title {
    text-align: left;
}

.blog-post-cat-list {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 8px;
}

.blog-post-cat-list__item::after {
    color: var(--color-grey-03);
    content: '|';
    margin-left: 8px;
}

.blog-post-cat-list__item:first-child:after,
.blog-post-cat-list__item:last-child:after {
    content: unset;
}

.blog-post-cat-list a:hover,
.blog-post-cat-list a:focus,
.blog-post-cat-list a:active {
    text-decoration-style: dotted;
    color: var(--color-black);
}


.blog-post {
    width: var(--small-container);
    margin-inline: auto;
    display: grid;
}

.blog-post__details {
    margin-bottom: 1em;
    grid-row: 1;
}

.blog-post__details p {
    display: inline;
}

.blog-post__tags {
    display: none;
}

/* ---- widget-EventGallery ---- */

/* ---- event template ---- */

/* ---- event catagories ---- */

/* ---- event list ---- */

/* ---- Artists ---- */

/* ---- Artists Sidebar ----- */

/* ---- Job Search ---- */

/* ---- Tags ---- */

/* ---- Sponsors module ---- */

/* ---- Recycling guide ---- */

/* ---- Directions map ---- */

/* ---- Content Blocks ---- */

/* ---- Videos ---- */

/* ---- Directory Documents ---- */

/* ------------------------------------------------------
**** Add-on styles
------------------------------------------------------ */

/* ---- slick slider ---- */

/* ---- recaptcha ---- */

/* ---- TinyMCE Templates ---- */

/* These styles are for client use in the TinyMCE Template system */
/* prefixed with ct- (content template) to avoid clashing with skin template columns */

/* ------------------------------------------------------
**** Print styles
------------------------------------------------------ */

@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        -webkit-box-shadow: none !important;
                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 for images, or javascript/internal links */

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

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

    thead {
        display: table-header-group; /* h5bp.com/t */
    }

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

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

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
