<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* LAYOUT STYLES
---------------------------------------------------------- */
body {
    position: initial !important;
    font-family: futura-pt, sans-serif;
    font-size: 1.25rem;
    line-height: normal;
    font-weight: 400;
    font-style: normal;
    background-image: url(/img/watermark_rings.svg);
    background-repeat: no-repeat;
    background-position-y: bottom;
}

main {
    min-height: 800px;
}


/* --- Footer --- */
footer h2 {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}
    footer h2 a {
        text-decoration: none;
    }
        footer h2 a:hover {
        }

footer ul {
    list-style-type: none;
}
    footer ul li {
/*        line-height: 1.75rem;*/
    }
    footer ul.social li {
        display: inline-block;
    }
        footer ul.social li a:hover {
            opacity: 0.75;
        }

footer button {
    /*    width: 25vw;*/
}

footer.copyright {
    background-color: #80298F;
    color: #fff;
    font-size: 1rem;
    line-height: normal;
}
/* --- End Footer --- */




/* GLOBAL FORMATTING STYLES
---------------------------------------------------------- */

/* Colours */
.purple {
    color: #80298F;
}

.blue {
    color: #0097D7; /* accessible blue */
}

.ltgrey {
    color: #F1F1F1;
}

.pink {
    color: #CF128C;
}

.dkblue {
    color: #1267CF;
}

.orange {
    color: #FF8C00;
}

.green {
    color: #7FC241;
}

.red {
    color: #EC2024;
}
.my-primary {
    background-color: var(--bs-purple); /*use palette variable*/
}



/* link styles */
a {
    color: #000000;
    text-decoration: underline;
    transition: .3s ease-in-out;
}
a:hover {
    color: #80298F;
}
    a .link-light {
        color: #fff;
        text-decoration: underline;
        transition: .3s ease-in-out;
    }
    a:hover .link-light {
        color: #fff;
        opacity: 0.8;
    }
a:focus {
/*    display: block;
    border: 1px solid red;*/
}
:focus-visible {
/*  outline: -webkit-focus-ring-color auto 5px;*/
/*    outline-color: black;
    outline-style: dotted;
    outline-width: thick;*/
}


/* heading styles */
/* Typescale - Major Third */
h1 {
    font-size: 3.815rem;
    line-height: 100%;
}

h2 {
    margin-bottom: 1rem;
    font-size: 3.052rem;
    font-weight: 600;
    line-height: 110%;
}

h3 {
    font-size: 2.441rem;
    font-weight: 600;
}

h4 {
    font-size: 1.953rem;
}

h5 {
    font-size: 1.563rem;
}

h6 {
    font-size: 1.25rem;
    font-weight: 700;
}


/* text formatting styles */
p:last-of-type {
    margin-bottom: 0;
}

.heading {
    font-size: 2rem;
    font-weight: 600;
}

.footnote {
    display: block;
    font-size: 1rem;
    line-height: 1rem;
}


/* button styles */
button, .btn {
    padding: 0.75rem 1rem;
    transition: .3s ease-in-out;
    background-color: #13b1e7;
    background-color: #0097D7; /* accessible blue */
    border: 0;
    border-radius: 0;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    text-decoration: none;
    line-height: normal;
}
/*buttons from CMS RTE*/
.btn a {
    transition: .3s ease-in-out;
    color: #fff;
    text-decoration: none;
}

button:hover,
.btn:hover,
.btn:hover a {
    background-color: #000000;
    color: #13b1e7;
}
/*prevents the inner part of the CMS button from showing briefly*/
.btn:hover a {
    transition: .5s ease-in-out;
}
.btn[disabled] {
    cursor: not-allowed !important;
    pointer-events: initial;
}
/* end buttons styles */


/* alert styles */
.alert {
    display: block;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-radius: 0;
    color: #000;
}
.alert-primary {
    background-color: rgba(128, 41, 143, 0.25);
}
.alert-secondary {
}
.alert-success {
    background-color: rgba(127, 194, 65, 0.25);
}
.alert-danger {
    background-color: rgba(236, 25, 36, 0.25);
}
.alert-warning {
    background-color: rgba(249, 161, 25, 0.25);
}
.alert-info {
    background-color: rgba(0, 151, 215, 0.25);
}
.alert-light {
    border: 1px solid #ccc;
}
.alert-dark {
    background-color: #000;
    color: #fff;
}


.text-primary {
    color: #80298F !important;
}
.text-success {
    color: #7FC241 !important;
}
.text-danger {
    color: #EC2024 !important;
}
.text-warning {
    color: #FF8C00 !important;
}
.text-info {
    color: #0097D7 !important;
}
.text-light {
    color: #FFF !important;
}

.bg-dark {
    background-color: #000000 !important;
}


hr {
    margin: 2.5rem 0;
}


p img {
    max-width: 100%;
    object-fit: contain;
}

/* --- end global styles --- */



/* FORM STYLES
---------------------------------------------------------- */
form h3 {
    margin-top: 2rem;
    font-size: 1.5rem;
    color: #80298F;
}



.form-group-range {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
    .form-group-range a {
        width: 40px;
    }

    @media screen and (min-width: 576px) {
        .form-group-range {
            justify-content: center;
        }
    }


.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    margin-top: 2rem !important;
}

.form-group-radio {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 1.5rem !important;
}


    @media screen and (min-width: 992px) {
        .form-group-radio {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-direction: row;
        }
            .form-group-radio.left {
                justify-content: flex-start;
            }
                .form-group-radio.left.down {
                    align-items: flex-start;
                    flex-direction: column;
                }
    }

input [type=text] {}

input[type=checkbox],
input[type=radio] {
    vertical-align: middle;
    position: relative;
    bottom: 2px;
    width: 30px;
    min-width: 30px;
    height: 30px;
}
input[type=radio] {
    margin: 0.5rem auto;
}

/* based on bootstrap class */
.form-control {
    height: 3.5rem;
    border-radius: 0;
    border: 1px solid #333;
    background-color: #fcfcfc;
}
textarea.form-control {
    height: unset;
}
.form-select {
    height: 3.5rem;
    border-radius: 0;
    border: 1px solid #333;
    background-color: #fcfcfc;
}
select {
    text-transform: capitalize;
}
label {
    position: relative;
    bottom: -10px;
    z-index: 1;
    margin-top: 1.5rem;
    background: white;
    background: linear-gradient(to bottom, white, white 61%, #fcfcfc 39%, #fcfcfc);
    color: #000;
    font-weight: 500;
    line-height: 1.25rem;
}

/* Select the first occurrence of the inner class within the outer class */
.form-container .form-group:first-child label:first-child {
    /* Your styles for the first occurrence of inner-class go here */
    margin-top: 0.5rem;
}

label.box {
    margin-top: 0.5rem;
    background: linear-gradient(to bottom, #f0f0f0, #f0f0f0 62%, white 38%, white);
}
label.checkbox,
label.radio {
    margin: 0 0 0 1rem;
    bottom: 0;
    background: none;
    font-weight: normal;
    line-height: 1.5rem;
}
label.outside {
    position: unset;
    bottom: 0;
    z-index: 1;
    margin-top: 1.5rem;
    background: unset;
}

/* margin above form buttons */
.button-link {
    margin-top: 2rem;
}


/* validation */
.form-control.input-validation-error,
.form-select.input-validation-error {
    border: 2px solid #EC2024;
}

.input-icon {
    position: relative;
}
    .input-icon i {
        position: absolute;
        right: 15px;
        top: 12px;
        font-size: 2rem;
    }


/* home page overrides */
#home .form-group-checkbox {
    margin-top: 1rem !important;
}
#home label.checkbox {
    font-size: 1rem;
    line-height: 1.25rem;
}
/* end */



/* --- end form styles --- */


/* CONTENT BLOCK STYLES
---------------------------------------------------------- */
/* Top Banner Message */
.banner-message {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #000;
    color: #fff;
    font-size: 0.975rem;
    font-weight: 400;
    text-align: center;
}

    .banner-message button {
        background-color: unset;
    }

@media screen and (min-width: 992px) {
    .banner-message {
        align-items: center;
    }
}
	 

/* Hero Banners */
.hero-banner {
    display: flex;
    justify-content: center;
    position: relative;
    background-color: #000; /* default colour */
}
    .hero-banner img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        object-position: center;

    }
.myaccount .hero-banner img {
/*    height: 125px;*/
    height: 300px;
}
    .hero-banner .title-container {
        position: absolute;
        align-self: center;
    }
.hero-banner h1 {
    margin: 0;
    color: #fff;
    font-size: 225%;
    text-transform: uppercase;
    font-weight: 700;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
    text-align: center;
    overflow-wrap: anywhere;
}

@media screen and (min-width: 576px) {
    .hero-banner h1 {
        font-size: 3.75rem;
    }
}
@media screen and (min-width: 992px) {
    .hero-banner img,
    .myaccount .hero-banner img,
    #membershipPurchase .hero-banner img,
    #buyTickets .hero-banner img,
    #shoppingCart .hero-banner img {
        height: 400px !important;
    }
}


/* Rich Text Editor */
.umb-block-list {}
    .umb-block-list p a.btn {
        margin: 0 0 1rem 0;
    }
    .umb-block-list p a.btn:last-of-type {
        margin: 0;
    }
@media screen and (min-width: 576px) {
    .umb-block-list p a.btn {
        margin: 0.25rem 0.75rem 0.75rem 0;
    }
}
@media screen and (min-width: 992px) {
    .umb-block-list p a.btn,
    .umb-block-list p a.btn:last-of-type {
        margin: 1rem 0.75rem 0 0;
    }
}


/* Accordions */
.accordion-item {
    border: 0;
    border-bottom: 3px solid #000;
}
    .accordion-item:last-of-type {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }
.accordion-button {
    padding: 2.25rem 0 1.25rem 0;
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: normal;
    justify-content: space-between;
}

button.accordion-button:hover {
    background-color: unset;
    color: #80298F;
}
.accordion-button:not(.collapsed) {
    color: #000;
    background-color: #fff;
    box-shadow: none;
}
.accordion-body {
    display: flex;
    flex-direction: column-reverse;
}
.accordion-text {}
.accordion-body img {
    width: 100%;
/*    padding-left: 0;*/
}

.accordion-button::after {
    border-style: solid;
    border-width: 2px 2px 0 0;
    content: '';
    display: inline-block;
    height: 0.45em;
    left: 0.5rem;
        left: -0.5rem;
    position: relative;
    top: 0.15em;
    transform: rotate(-45deg);
    vertical-align: middle;
    width: 0.45em;
}
.accordion-button::after {
    margin-left: 1rem;
    flex-shrink: 0;
    /*    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;*/
    content: "";
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e);
    background-image: none;
    /*    background-size: 1.25rem;*/
    transition: transform .2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e);
    background-image: none;
    transform: rotate(-225deg);
}


    @media screen and (min-width: 778px) {
        .accordion-body {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            width: 90%;
            margin: auto;
            padding: 1rem 0 3rem 0;
        }
            .accordion-body img {
                padding-left: 2rem;
            }
    }
@media screen and (min-width: 992px) {
        .accordion-body img {
            width: unset;
        }
}


/* Cards Row */
.cards-row-container .row &gt; div:last-child {
    /* Your styles here */
    margin-bottom: 0 !important;
}
.cards-row-container .col.fixed-width,
.cards-row-container .col.flex-width {
    flex: none;
}
.cards-row-container .card {
    border: 0;
    box-shadow: none;
}
.cards-row-container .img-wrapper {
    width: 100%;
    height: 280px !important;
    border: 1px solid rgba(0,0,0,.125);
    box-shadow: 0 0 10px #ccc;
}
    .cards-row-container .img-wrapper img {
        width: inherit;
        height: inherit;
        object-fit: cover;
    }
.cards-row-container h3 {
    text-transform: uppercase;
}


    @media screen and (min-width: 500px) and (max-width: 767px) {
        .cards-row-container .col.fixed-width,
        .cards-row-container .col.flex-width {
            max-width: 50%;
        }
    }
    @media screen and (min-width: 768px) {
        .cards-row-container .col.fixed-width {
            max-width: 33.3%;
        }
        .cards-row-container .col.flex-width {
            flex: 1 0 0%;
        }
    }


/* Testimonials */
.testimonial-container {
    padding: 2rem;
    background-image: url(/img/icon_quotes.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
    background-origin: content-box;
}
.testimonial-quotes {
    margin: auto;
    color: #fff;
    text-align: center;
}
.testimonial-container p {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 100;
}
.testimonial-container p strong {
    font-weight: 500;
}
.testimonial-container p:last-of-type {
    margin-bottom: 0;
}
.testimonial-container p.quote-name {
    font-size: 1.25rem;
    font-weight: 700;
}
.testimonial-container span.quote-title {
    font-size: 1.25rem;
    font-weight: 400;
}
@media screen and (min-width: 768px) {
    .testimonial-container {
        padding: 2rem 5rem;
    }
    .testimonial-quotes {
        max-width: 90%;
        margin: auto;
        padding: 1rem 3rem;
    }
}
@media screen and (min-width: 992px) {
    .testimonial {
        width: 75%;
    }
}


/* Carousel */
section.media-carousel {
    background-color: #eee;
}
    section.media-carousel .slider .slick-arrow {
        position: absolute;
        top: -3rem;
        border: none;
        width: 30px;
        height: 30px;
        margin: 15px 0;
        z-index: 1;
        cursor: pointer;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        background-image: url("/media/icons/arrow_right.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        text-indent: -9999px;
        overflow: hidden
    }
        section.media-carousel .slider .slick-arrow.slick-prev {
            right: 4rem;
            background-color: unset;
            -webkit-transform: scaleX(-1) translateY(-50%);
            transform: scaleX(-1) translateY(-50%);
        }

        section.media-carousel .slider .slick-arrow.slick-next {
            right: 0;
            background-color: unset;
        }


    section.media-carousel .media-carousel-content .slick-track p {
        width: 100%;
    }
    section.media-carousel .slider--media .tote {
        width: 80%;
    }
    section.media-carousel .slick-slide img {
        width: 100%;
        object-fit: cover;
        border: 3px solid white;
    }
    section.media-carousel figcaption {
        text-align: center;
    }

.media-carousel button.slick-next::after {
    border: solid 2px #333;
    border-width: 3px 3px 0 0;
    content: '';
    height: 1rem;
    left: 0.3rem;
    position: absolute;
    top: 0.15em;
    transform: rotate(-315deg);
    width: 1rem;
}

.media-carousel button.slick-prev::after {
    border: solid 2px #333;
    border-width: 3px 3px 0 0;
    content: '';
    height: 1rem;
    left: -0.3rem;
    position: absolute;
    top: 0.15em;
    transform: rotate(-315deg);
    width: 1rem;
}



/* CTA Last Content Block */
.cta-container {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    overflow: hidden; /* Ensure the image does not overflow */
    background-color: #000;
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%);
}
    .cta-container .content-container {
        z-index: 1;
        
        padding: 8rem 2rem 5rem 2rem;
        text-align: center;
    }
    .cta-container h2 {
        color: #fff;
        font-size: 3.052rem;
        font-weight: 700;
        letter-spacing: 0.05rem;
        filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
        text-align: center;
    }
    .cta-container p:last-of-type {
        margin-bottom: 0;
    }

    .cta-container span.btn {
        margin-top: 1rem;
    }
        .cta-container span.btn:hover{
            background-color: #ffffff !important;
            color: #0097D7;
        }
    .cta-container img {
        position: absolute;
        top: 0;
        left: 0;
        width: auto;
        height: 100%;
        object-fit: fill;
    }

        @media (min-width: 992px) {
            .cta-container .content-container {
                width: 80%;
                padding: 8rem 4rem 5rem 4rem;
            }
            .cta-container img {
                width: 100%;
                height: auto;
                object-fit: cover;
            }
        }
        @media (min-width: 1400px) {
            .cta-container .content-container {
                width: 60%;
            }
        }


    /* Two Column Content */
    .two-column-content-container.row {
        --bs-gutter-x: 0;
    }

    .two-column-content-container.img-position-right {
        flex-direction: row-reverse;
    }

    .two-column-content-container.row img {
        width: 100%;
        box-shadow: 0 0 10px #ccc;
        /*    clip-path: polygon(0 0, 100% 10%, 100% 90%, 0% 100%);*/
    }

    .two-column-content-container.row p:last-of-type {
        margin-bottom: 0;
    }

    section.container + section hr {
        margin: 0;
    }

    .container.my-3.my-lg-5.p-0.py-3.py-lg-5 + section.two-col-group,
    .container.my-3.my-lg-5.p-0.py-3.py-lg-5 + section.accordion-group {
        padding-top: 0 !important;
    }


    /*This will be for large screen sizes and up.
    If we need to support slightly smaller, bootstraps next
    breakpoint is 768px*/

    @media (min-width: 768px) and (max-width: 991px) {
        .column-two-thirds, .column-one-third, .column-one-half {
            flex: 0 0 auto;
            width: 50%;
        }
    }

    @media (min-width: 768px) {
        .column-one-third.text-column,
        .column-two-thirds.text-column,
        .column-one-half.text-column {
            padding-left: 2rem;
        }

        .img-position-right .column-one-third.text-column,
        .img-position-right .column-two-thirds.text-column,
        .img-position-right .column-one-half.text-column {
            padding-right: 2rem;
            padding-left: 0;
        }
    }

    @media (min-width: 992px) {
        .column-two-thirds,
        .img-position-right .column-one-third.text-column,
        .img-position-right .column-one-third {
            flex: 0 0 auto;
            width: 66.66666667%;
        }

        .column-one-third,
        .img-position-right .column-two-thirds {
            flex: 0 0 auto;
            width: 33.33333333%;
        }

        .column-one-half {
            flex: 0 0 auto;
            width: 50%;
        }
    }



    /* MISC STYLES
---------------------------------------------------------- */
    #amount {
        width: 200px;
        height: 30px;
        margin-left: 10px;
        display: none
    }

    #transfer {
        display: flex;
        justify-content: space-between;
    }

    .transfer-input {
        width: 100%;
        margin-left: 10px;
    }

    .title {
        font-size: 24px;
    }



    /* MY ACCOUNT PAGES
---------------------------------------------------------- */

    /* Validation Icons */
    .input-icon i.required-icon {
        display: none;
    }
    /* Selects all siblings that share the same parent as the .input-validation-error */
    .input-validation-error ~ i.required-icon {
        /* Styles for the .required-icon */
        display: inline !important;
    }

    .input-validation-error ~ .toggle-password {
        right: 60px;
    }


    /* Menu Column */
    body#myAccount .row.menu-container {
        flex-direction: column-reverse;
    }

    @media screen and (min-width: 576px) {
        body#myAccount .row.menu-container {
            flex-direction: unset;
        }
    }

    body#myAccount .menu {
        background-color: #f0f0f0;
    }

        body#myAccount .menu h3 {
            margin-bottom: 1.5rem;
            color: #80298F;
            font-size: 1.25rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05rem;
        }

        body#myAccount .menu ul {
            list-style: none;
            padding-left: unset;
        }

            body#myAccount .menu ul li {
                padding-bottom: 1rem;
            }

                body#myAccount .menu ul li a.partial-link.active {
                    font-weight: 600;
                    text-decoration: none;
                }

                    body#myAccount .menu ul li a.partial-link.active:hover {
                        cursor: default;
                        color: unset;
                    }

                body#myAccount .menu ul li .footnote {
                    margin-top: unset;
                    font-style: italic;
                }



    /* Content Column */
    body#myAccount p.heading {
        margin-bottom: 0.25rem;
        font-weight: 600;
    }

    body#myAccount .content-block {
    }

    body#myAccount .row-divider {
        border-bottom: 1px solid #ccc;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    body#myAccount #secondaryAccountDiv {
        margin-top: 2rem;
        padding-top: 3rem;
        border-top: 1px solid #000;
    }

    /* View Orders */
    body#myAccount .orders-container {
    }

        body#myAccount .orders-container .col-4 {
            font-size: 1rem;
        }

            body#myAccount .orders-container .col-4:last-child {
                text-align: right;
            }

    body#myAccount span.hide {
        display: none;
    }



    /* Mailing Preferences */
    body#myAccount label.checkbox {
        font-weight: normal;
    }

    body#myAccount .checkbox-container {
        margin-top: 1rem;
    }

    @media screen and (min-width: 575px) {
        body#myAccount span.hide {
            display: unset;
        }
    }

    @media screen and (min-width: 768px) {
        body#myAccount .orders-container .col-4 {
            font-size: unset;
        }
    }

    @media screen and (min-width: 992px) {
        body#myAccount .checkbox-group {
            display: flex;
            flex-wrap: wrap;
        }

        body#myAccount .checkbox-container {
            width: 50%;
            margin-top: 1.25rem;
        }
    }

    @media screen and (min-width: 1400px) {
        body#myAccount .checkbox-container {
            width: 33.3%;
        }
    }


/* PRESIDENTS CLUB / MEMBERSHIPS PAGES
---------------------------------------------------------- */
#membership h2 {
    font-size: 1.75rem;
    text-align: center;
}
#membership h3 {
    font-size: 1.35rem;
    color: #80298F;
    text-align: center;
}

#membership .gift-amount,
#membership .gift-total {
    font-size: 1.5rem;
    font-weight: 700;
}
#membership .gift-amount {
    width: 200px;
}

    @media screen and (min-width: 576px) {
        #membership .gift-amount {
            width: 300px;
            margin: 0;
        }
    }

    @media screen and (min-width: 768px) {
        #membership .gift-amount,
        #membership .gift-total {
            font-size: 2rem;
        }
    }

#membership .form-group-checkbox {
    justify-content: center;
}
#membership label.heading {
    margin-bottom: 1rem;
    background: none;
    font-size: 1.25rem;
    color: #80298F;
}

#donations .form-group-checkbox {
    justify-content: flex-start;
}



/* BECOME A MEMBER PAGES / BUY TICKETS / GIFTS / DONATIONS
---------------------------------------------------------- */
#membershipPurchase h2,
#membershipPurchase h3,
#buyTickets h2,
#buyTickets h3,
#gift-passes h2,
#gift-passes h3,
#donations h2,
#donations h3 {
    text-align: unset;
}
#membershipPurchase .hero-banner img,
#buyTickets .hero-banner img,
#shoppingCart .hero-banner img {
    height: 300px;
}
.outer-level-container {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
}
.level-container {
    display: flex;
    flex-wrap: wrap;
}
#donations #donation-amount .level-container {
    display: unset;
}
.level-box-container {
    width: 49%;
    margin-right: 2%;
}
#donations #donation-amount .level-box-container {
    display: flex;
    width: 100%;
}
.level-container .level-box-container:nth-child(even) {
    margin-right: 0;
}
button.level-box,
input.level-box {
    width: 100%;
    height: 125px;
    margin-bottom: 1rem;
    background-color: white;
    border: 2px solid #000;
    color: #000;
    text-transform: capitalize;
    letter-spacing: normal;
}
#gift-passes input.level-box,
#donations input.level-box {
    height: 75px;
    font-weight: 700;
    text-transform: uppercase;
}
#donations #donation-amount input.level-box {
    margin-right: 1rem;
}
    #donations #donation-amount input.level-box.other {
        margin-right: 0;
    }
#buyTickets button.level-box {
    height: unset;
    height: 75px;
}
button.level-box:hover,
input.level-box:hover {
    background-color: #000;
    color: #fff;
}
button.level-box.selected,
button.level-box.active,
.level-box.active {
    background-color: #000000;
    border-color: #000000;
    color: #FFFFFF;
}
button.level-box .title {
    font-size: unset;
}
button.level-box .subtitle {
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
}
#buyTickets button.level-box .subtitle {
    font-style: normal;
}
button.level-box .price {
    margin-top: 0.5rem;
    font-weight: 700;
}

button#customDate {
    position: relative;
}

#buyTickets .datepicker-native-input {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    opacity: 0;
}
    #buyTickets .datepicker-native-input::-webkit-calendar-picker-indicator {
        position: absolute;
        right: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        opacity: 0;
        cursor: pointer;
    }


#membershipPurchase #membership .option-group {
    justify-content: flex-start;
}

#buyTickets .tickets-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ccc;
}
#buyTickets .tickets-container:first-of-type {
    border-top: none;
}
    #buyTickets .tickets-container .price-type,
    #buyTickets .tickets-container .price {
        font-weight: 500;
    }
    #buyTickets .tickets-container button.level-box {
        width: unset;
        height: unset;
        margin-bottom: 0;
        background-color: #fcfcfc;
        border: 2px solid #000;
        font-size: 1rem;
        color: #000;
    }
    #buyTickets .tickets-container button.level-box:hover {
        width: unset;
        height: unset;
        background-color: #000;
        border: 2px solid #000;
        color: #fff;
    }
    #buyTickets .tickets-container button.level-box.quantity {
        border-left: 1px;
        border-right: 1px;
    }

    #buyTickets .tickets-container .containerMinMaxAdult {
        display: flex;
    }


#buyTickets .addons-container {
    border: 1px solid #000;
}
    #buyTickets .addons-container .details-container {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #ccc;
    }
        #buyTickets .addons-container .details-container img {
            width: 100%;
            min-width: 275px;
            height: 175px;
            object-fit: cover;
        }
    #buyTickets .addons-container .time-container {
        display: flex;
    }
    #buyTickets .addons-container .tickets-container:first-of-type {
        border-top: 1px solid #ccc;
    }

/*    #buyTickets .addons-container .tickets-container:last-of-type {
        justify-content: end;
    }*/
    #buyTickets .addons-container button.level-box {
        width: unset;
        height: unset;
        margin-bottom: 0;
        background-color: #fcfcfc;
        border: 2px solid #000;
        font-size: 1rem;
        color: #000;
    }
    #buyTickets .addons-container button.level-box.selected {
        width: unset;
        height: unset;
        margin-bottom: 0;
        background-color: #000;
        border: 2px solid #000;
        font-size: 1rem;
        color: #fff;
    }



/* SHOPPING CART
---------------------------------------------------------- */

.cart-main .shopping-cart {
    position: unset;
    width: 90%;
    height: auto;
}
    .cart-main .shopping-cart .price {
        font-size: 1rem;
    }

    .cart-main .shopping-cart .line-item.heading {
        font-size: 1.15rem;
    }
    .cart-main .shopping-cart .total.heading {
        font-size: 1.5rem;
    }
    .cart-main .shopping-cart .line-item .text {
        display: block;
        font-size: 1rem;
        line-height: 1rem;
    }
    .cart-main .shopping-cart .cart-button {
        margin-bottom: 0;
    }

    @media screen and (min-width: 768px) {
        .cart-main .shopping-cart {
            width: 60%;
        }
    }


.cart-main #buytickets.ga {
    display: flex;
    flex-direction: column;
}

.cart-main .shopping-cart #buytickets.ga .price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.5rem;
}

.cart-main .shopping-cart #buytickets.ga.line-item.heading {
    line-height: 1.5rem;
}


@media screen and (min-width: 768px) {
    #checkout .cart-main .shopping-cart {
        width: 100%;
    }
}



.shopping-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45px;
    background-color: #fff;
    border: 1px solid #ccc;
    z-index: 50;
    /*    overflow: hidden;*/
    transition: transform 0.3s ease;
}
    .shopping-cart.expanded {
        transform: translateY(-100%);
        transform: translateY(0);
        height: 100%;
        z-index: 100;
    }
@media screen and (max-width: 768px) {
    .shopping-cart {
        height: 150px;
    }
}
#expand-btn {
    padding: 0;
    background-color: #000000;
    font-size: 1rem;
}
.cart-header {
/*    font-size: 1rem;*/
}
.cart-body {
    height: 100%;
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.5rem;
    /*causing scroll bars to always show!*/
    /*overflow: scroll;*/
}

    .cart-body .timer {
        background-color: #eee;
        padding: 0.25rem 0.5rem;
        font-size: 1rem;
    }
    .cart-body .line-item {
        display: flex;
        justify-content: space-between;
    }
        .cart-body .line-item.heading {
            font-size: 1.25rem;
            line-height: 2.5rem;
            white-space: nowrap;
        }
    .cart-body .line-dotted {
        width: 50%;
        margin: 0 0.3rem 0.75rem 0.3rem;
        border-bottom: 2px dotted #ccc;
    }
    .cart-body .line {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid #333;
    }
    .cart-body .fa-pencil,
    .cart-body .fa-trash-can {
        font-size: 0.75rem;
    }
    .cart-button {
        margin-bottom: 5rem;
    }

    @media screen and (min-width: 576px) and (max-width: 767px) {
        #buyTickets .addons-container .details-container {
            flex-direction: row;
            }   
        }
    @media screen and (min-width: 576px) and (min-width: 992px) {
        .level-box-container {
            width: 32%;
        }
        #gift-passes .level-box-container {
            width: calc(100% / 5);
        }
        .level-container .level-box-container:nth-child(even) {
            margin-right: 2%;
        }
        .level-container .level-box-container:nth-child(3n+3) {
            margin-right: 0;
        }
        #gift-passes .level-container .level-box-container:nth-child(3n+3) {
            margin-right: 2%;
        }
        #buyTickets .addons-container .details-container {
            flex-direction: row;
        }
        #buyTickets .addons-container .details-container img {
            width: 175px;
        }
    }

    @media screen and (min-width: 768px) and (max-width: 991px) {
        .outer-level-container {
            flex-wrap: nowrap;
        }
        .level-box-container {
            width: 49%;
        }
        .level-container .level-box-container:nth-child(even) {
            margin-right: unset;
        }
        .level-container .level-box-container:nth-child(3n+3) {
            margin-right: auto;
        }
    }

    @media screen and (min-width: 768px) {
        .shopping-cart {
            position: sticky;
            top: 100px;
            width: unset;
            height: unset;
            margin-left: 3rem;
        }
        .cart-button {
            margin-bottom: unset;
        }
    }



/* CHECKOUT
---------------------------------------------------------- */

#checkout h4 {
    margin-bottom: 0;
}

/* Change Contact Information */
#checkout #collapseModifyContactInfo h2,
#checkout form#update-address-info h2 {
    font-size: 1.5rem;
    text-align: unset;
}
#checkout #collapseAddress button[aria-expanded="true"],
#checkout #collapseShipping button[aria-expanded="true"] {
    display: none;
}

#checkout .btn-link {
    padding: 0;
    background-color: unset;
    color: #13b1e7;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: normal;
    text-align: left;
}

#checkout .btn-outline {
    padding: 0.5rem 0.75rem;
    background: white;
    border: 2px solid #13b1e7;
    color: #13b1e7;
    font-size: 1rem;
}



/* CONFIRMATION PAGE
---------------------------------------------------------- */
#confirmation-page .heading {
    font-size: 1.25rem;
    font-weight: 600;
}
#confirmation-page p {
    margin-bottom: 0;
}

.product-title,
.totals-title {
    padding: 0.25rem 0.5rem;
    font-weight: bold;
    background-color: #800080; /* Purple color */
    color: white;
    text-transform: uppercase;
}
.totals-title {
    background-color: #000;
}

.product-title h4,
.totals-title h4 {
    margin-bottom: 0;
    font-size: 1.15rem;
}
.product-container,
.totals-container {
    display: flex; 
    justify-content: space-between;
}
.totals-container {
    justify-content: flex-end !important; 
    border-top: 1px solid #000;
}
.totals-container.no-line {
    border-top: 0;
}
.totals-container.double-line {
    border-top: 3px solid #000;
}
.totals-container .heading.large {
    font-size: 2rem !important;
}

.product-container .subheading {
    color: #666;
    font-size: 0.75rem; 
    text-transform:uppercase; 
    width: 20%;
}

.product-container .subheading.first,
.product-container .item.first {
    width: 100%;
}

.product-container .label,
.performance .label,
.totals-container .label {
    font-weight: 600;
}
.product-container.total {
    justify-content: flex-end;
    border-top: 1px solid #000;
}
.product-container .item {
    width: 20%;
    font-size: 1rem;
}

.totals-container .amount {
    width: auto;
}
.performance {
    border-bottom: 1px dotted #999;
}
.performance:last-of-type {
    border-bottom: 0;
}
.performance p {
    font-size: 1.15rem;
}

.payment-information {
    background-color: #f1f1f1;
}

@media screen and (min-width: 768px) {
.product-container .subheading.first,
.product-container .item.first {
    width: 20%;
}
}

@media screen and (min-width: 992px) {
    .totals-container .amount {
        width: 15%;
    }
    .product-container .item {
        font-size: 1.25rem;
    }
    .performance p {
        font-size: unset;
    }
}

@media print {
    body{
        background-color: white;
    }
    #site-header,
    #sidebar,
    .map-drawer,
    footer,
    .gtranslate_wrapper,
    .btn-print {
        display: none;
    }
    .print-hide {
        display: none !important;
    }
    .print-show {
        display: block !important;
    }
    .product-container .subheading.first,
    .product-container .item.first {
        width: 20%;
    }
    .product-title h4,
    .totals-title h4 {
        margin-top: 1rem;
        padding: 0;
        font-size: 1.5rem;
        color: #000;
        border-bottom: 1px solid #000;
    }
}



/* GIFT CERTIFICATES
---------------------------------------------------------- */
.gc-balance {
    display: flex;
    align-items: center;
    justify-content: center;
}
    .gc-balance label,
    .gc-balance input,
    .gc-balance button {
        width: max-content; /* Make each item span the full width of the container */
    }
    .gc-balance label {
        bottom: unset;
        margin: unset;
        color: #80298F;
        font-size: 1.35rem;
        font-weight: 600;
    }
    .gc-balance input {
        width: 40%;
    }

.gc-purchase label:first-of-type {
    margin-top: 0;
}

.gc-purchase p {
    font-weight: 600;
}

.gc-purchase .intro p {
    font-weight: 400;
}


/* DONATIONS
---------------------------------------------------------- */
#donation-amount label:first-of-type {
    margin-top: 0;
}
#donation-amount .form-control.other-amount {
    width: 100%;
    height: 75px;
    margin-left: 0;
    border: 2px solid #000;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
}









/* SITE SEARCH*/
#search-results .pager .page-number.active {
    text-decoration: none;
    background-color: #eee;
    border: none !important;
}

#search-results .pager .page-number.active:hover {
    cursor: default;
}

.sr-only {
    display: none !important;
}

/*Userway*/
.userway_buttons_wrapper {
    bottom: 13px !important;
    top: unset !important;
}</pre></body></html>