:root {
    --primary-light: #0049DB;
    --primary: #003399;
    --primary-dark: #001AFD;
    --secondary-light: #AC2069;
    --secondary: #911C58;
    --secondary-dark: #66133E;
    --black: #000000;
    --silver: #CBCBCB;
    --dark-gray: #333333;
    --light-gray-accent: #EEEEEE;
    --light-gray: #555555;
    --white: #FFFFFF;
    --max-width: 500px;
    --font-size: 14px;
    --tile-font-size: 12px;
    --default-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
    --error-color: #B22222;
    --background-color: var(--light-gray-accent);
}
/*Start CSS Reset Here - Neil G*/
::-ms-reveal {
    display: none;
}
.pb-3 {
    padding: unset !important;
}
h1 {
    line-height: normal;
}
/*End CSS Reset Here - Neil G*/

/*Start Shared CSS Here - Neil G*/
.centered {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    justify-content: center;
}
button:disabled {
    opacity: 50%;
    cursor: auto;
}
.text--light-gray{
    color: var(--light-gray);
}
.text--black {
    color: var(--black);
}
.text-bold{
    font-weight: bold;
}
.highlight {
    transition: background-color .2s ease-in;
    background: var(--primary-light);
    color: white;
    h2, h3, strong, a, p {
        color: white;
    }
    .cardContainer{
        background: var(--primary-light);
    }
}
/* Common styles for line clamp */
.line-clamp--one {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
}
.line-clamp--two {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}
.line-clamp--three {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
}
.card__promo--applied {
    /*box-shadow: var(--default-box-shadow);*/
    & .card__promo-header {

    }
    & .card__promo-description {
        margin: 10px 0 0 0;
    }
    & .button__promo-remove {
        margin: 10px 0 0px 0;
    }
    & .card__icon {
        margin-right: 10px;
    }
    & .container__button{
        margin-left: 20px;
    }
}
.card__promo--applied + .card__promo-example {
    margin-top: 40px;
}
.card__promo--applied + #QuantityPriceControlContainer {
    margin-top: 20px;
}
.img__radio-button{
    margin-right: 10px;
}
.card__upsell-header {
    margin-bottom: 15px;
}
.card__upsell-image {
    height: 70px;
    width: 70px;
    margin-right: 20px;
}
button[class*="row__radio-button"] + button[class*="row__radio-button"]{
    margin-top: 10px;
}
.twoFactor{
    & button{
        margin-top:15px;
    }
}
.phone.tile.icon.hoverable:hover > .tile-description-container {
    filter: grayscale(1) contrast(1000%) invert(1)
}

.phone.tile.icon.hoverable:hover > .tile-icon-container.primary-hover .tileIcon {
    filter: grayscale(1) contrast(1000%) invert(1)
}

.pageWrapper {
    background-color: var(--light-gray-accent);
    display: flex;
    flex-direction: column;
    /*height: 100vh;*/
}
.accountPage [type="checkbox"] {
    height: 25px;
    width: 25px;
}
[type="checkbox"] {
    height: 20px;
    width: 20px;
    margin-right: 15px;
}
[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
}

input[type=date]:required:invalid::-webkit-datetime-edit {
    color: transparent;
}

input[type=date]:focus::-webkit-datetime-edit {
    color: black !important;
}

.tile.icon.hoverable:hover  {
    color: #FFF;
    background-color: #003399;
    font-weight: bold;
    transition: background 250ms ease-in-out, transform 150ms ease;
    display: flex;
    height: 100%;
    justify-content: center;
}

    input[type=date]:focus + label {
        display: none;
    }

    input[type=date] + label {
        position: relative;
        top: -40px;
        height: 0px;
        pointer-events: none;
    }

    button {
        display: inline-block;
        border: 1px solid transparent;
        background-color: var(--background);
        color: #333333;
        text-align: center;
        transition: background 250ms ease-in-out, transform 150ms ease;
    }
    /* To make tile/promo icon switch to white */
    .tile.active img, .promo.active img, .accessibility.active img {
        filter: brightness(0) invert(1);
    }

    .promo.active {
        font-weight: bold;
        color: var(--white);
        background-color: var(--secondary);
    }

        .promo.active span, .promo.active p {
            font-weight: bold;
            color: var(--white);
        }

    @media(hover: hover) {
        .tile:hover {
            border: 1px solid var(--primary);
            color: var(--primary);
            font-weight: 500;
        }

        .accessibility:hover {
            font-weight: bold;
            outline: 1px solid var(--primary);
            color: var(--primary);
        }

            .accessibility:hover p {
                color: var(--primary)
            }

        .promo:hover {
            outline: 1px solid var(--secondary);
            font-weight: bold;
            color: var(--secondary);
        }

        .promo.active:hover {
            color: var(--white);
            background-color: var(--secondary-dark);
        }

        button.info:hover {
            background: var(--light-gray-accent);
        }
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}

.promo-loading-image {
    animation: spin 1s linear infinite;
}
.promo__text-applied {
    color: var(--secondary)
}
.container__promo-perf-message{
    margin-top: 20px;
    & img{
        margin-right: 5px;
    }
}

    .link {
        /*display: inline-block;*/
        border: none;
        padding: unset;
        text-decoration: none;
        background-color: var(--background);
        color: var(--primary-light);
        cursor: pointer;
        text-align: center;
        transition: background 250ms ease-in-out, transform 150ms ease;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

        .link:hover, a:hover {
            font-weight: bold;
            color: var(--primary);
        }

    /*Might be used the same as .link - Neil G*/
    a {
        color: var(--primary-light);
    }

    /*Style colors*/
    mdc-theme-primary {
        color: #6200ee;
    }

html, #root {
    background-color: var(--background);
    font-size: var(--font-size);
    position: relative;
    min-height: 100%;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    -webkit-touch-callout: none;
}


    .theme-dark {
        --dark-text: #292929;
        --light-text: #F9F8F8;
        --background: #2F4550;
        /*--light-background: #586F7C;*/
        --accent: #B8DBD9;
        --button-border: #B8DBD9;
    }

    .theme-light {
        --dark-text: #5E4B56;
        --light-text: #5E4B56;
        /*--dark-background: #DBE7E4;*/
        --background: #ffffff;
        --accent: #DBE7E4;
        --button-border: #5E4B56;
    }

.cardContainer, .cardSection {
    background-color: var(--white);
    box-shadow: var(--default-box-shadow);
    &:not(.header) {
        margin-bottom: 10px;
    }
    & > div {
        padding: 20px;
    }
}
.modal .cardContainer:last-child, .modal .cardSection:last-child{
    margin-bottom: unset;
}

    h1, h2, h3 {
        font-size: var(--font-size);
        margin: unset;
        padding: unset;
    }

    h2, h3 {
        font-weight: 700;
        color: var(--black);
    }

    .dayTile > div > button.link {
        width: inherit;
    }

    .rangeCellEmpty {
        background-color: var(--white);
        width: 100%;
    }

    .rangeStart {
        width: 100%;
        align-self: center;
        /*height: 100%;*/
        height: 100%;
        margin: 3px;
        display: flex;
        color: white;
        background-color: rgb(0, 73, 219);
        border-radius: 10px;
    }

        .rangeStart.extend {
            border-radius: 10px 0 0 10px;
            margin: 3px 0 3px 3px;
        }

    .rangeMiddle {
        width: 100%;
        align-self: center;
        margin: 3px 0px;
        height: 100%;
        display: flex;
        color: white;
        background-color: rgb(0, 73, 219);
        /* border-radius: 15px; */
    }

    .rangeEnd {
        width: 100%;
        align-self: center;
        height: 100%;
        margin: 3px 3px 3px 0;
        display: flex;
        color: white;
        background-color: rgb(0, 73, 219);
        border-radius: 0px 10px 10px 0px;
    }


    .paymentButtons button.active img {
        filter: brightness(0) invert(1);
    }

    .aboutLayoutContainer + .socialFooterContainer {
        display: none;
    }

    input::placeholder {
        padding-left: 10px;
    }

    input[type=date] {
        padding-left: 10px;
    }

    .ccApplied {
        font-size: 12px;
        color: var(--light-gray);
    }

    .popup-modal > div {
        width: 100%;
    }

    .ticketActions strong {
        color: var(--black);
    }

    .fee {
        font-size: 12px;
        color: var(--black);
        font-weight: normal;
    }

button.skip-main {
    left: -999px;
    position: absolute;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -999;
}

button.skip-main:focus, button.skip-main:active {
    color: #fff;
    /* background-color: var(--primary); */
    left: auto;
    top: auto;
    width: auto;
    height: auto;
    overflow: auto;
    margin: auto 0;
    padding: 5px;
    border-radius: 15px;
    /* border: 1px solid var(--primary); */
    text-align: center;
    /* font-size: 1.2em; */
    z-index: 999;
    position: relative;
}
.runTimeContainer {
    margin: 10px 0px;
}

#NavBarAreaContainer {
    /*height: 50px;*/
    position: sticky;
    top: 0px;
    z-index: 490;
}
.notification-bar {
    position: relative;
    z-index: 3;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.54);
    justify-content: space-between;
    display: flex;
    padding: 0 20px;
    width: 100%;
    background: rgb(255, 255, 255);
    min-height: 55px;
    /*box-shadow: var(--default-box-shadow);*/
    & .notification-icon{
        height: 20px;
        padding-right: 15px;
        & img{
            width: 20px;
        }
    }
    & .notification-text{
        padding-right: 10px;
        & .notification-subtitle{
            font-size: var(--font-size);
            font-weight: bold;
            overflow: hidden;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            text-overflow: ellipsis;
            white-space: normal;
        }
    }
}
.notification-modal{
    & .cardSection{
        margin: unset;
        padding: 20px;
        & .modalHeaderContainer{
            margin-bottom: 20px;
            & .modalTitleContainer{
                width: 100%;
                max-width: 100%;
                padding-right: 20px;
                margin: unset;
                & .modalTitleIconContainer{
                    align-items: center;
                    padding-right: 20px;
                    width: unset;
                    margin: unset;
                }
            }   
            & #closePopupModal{
                padding: unset;
                margin-bottom: unset;
            }
        }
        & .notification-modal-text{
            color: var(--light-gray)
        }
    }
}
    /*End Shared CSS Here - Neil G*/

    @media (min-width: 1px) and (max-width: 6000.99px) {
        /* Default values for mobile view*/
        #DefaultAreaContainer {
            width: 100%;
            flex-grow: 1;
            height: 100%;
            overflow: auto;
            margin-top: var(--header-height, 55px);
            &>div {
                display: flex;
                flex-direction: column;
                height: 100%;
                &>div:not(:has(> .header)):first-child {
                    display: flex;
                    flex: auto;
                    flex-direction: column;
                }
            }
        }
    #NavBarAreaContainer {
            width: 100%;
            /*flex-grow: 1;*/
            /*height: 100%;*/
            position: fixed;
            &>div {
                display: flex;
                flex-direction: column;
                height: 100%;
                &>div:first-child {
                    display: flex;
                    flex: auto;
                    flex-direction: column;
                }
            }
        }

.notification-bar:not(.hidden) + .headerBarContainer {
    top: 55px;
}

        #SidepaneAreaContainer {
            display: none;
            visibility: hidden;
        }

        #mainShowsContainer {
            background-color: white;
        }

        #modalHeaderContainer {
            padding: 0 20px;
        }

        #closePopupModal {
            margin: unset;
            margin-bottom: 23px;
            /*align-self: self-start;*/
        }

        

        .TitleLabel {
            padding-left: 20px;
        }

        .modal, .navModal {
            position: fixed;
            top: 0;
            left: unset;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            width: 100%;
            height: 100%;
            background: rgba(170, 170, 170, .50);
            z-index: 500;
        }
        .navModal {
            z-index: 502;
        }

        .menu.modal {
            margin-top: 55px;
        }

        /*.cardSection, #modalChildrenContainer > div:not(.modal) {
            background: white;
            padding: 20px;
            box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
            margin-Bottom: 10px;
        }*/

        .Slider {
            display: flex;
            overflow: hidden;
            padding: 5px 20px 10px 20px;
            margin: 0px 0px;
        }

        .flickity-prev-next-button {
            display: none;
        }

        .optContainerRight {
            display: flex;
            justify-content: space-between;
            white-space: nowrap;
            width: 35%;
        }

            .optContainerRight .td {
                text-align: right;
                padding: 10px 5px;
                width: 80%;
            }

                .optContainerRight .td:last-of-type {
                    font-size: 10px;
                }

        .optContainerLeft {
            display: flex;
            width: 50%;
        }

        .tsr.tile.icon {
            height: 60px;
            line-height: 12px;
            flex-direction: column;
            vertical-align: middle;
            text-align: center;
            border: 1px solid rgb(0, 73, 219);
            max-height: 60px;
            width: 108px;
            color: rgb(0, 73, 219);
            font-size: 12px;
            margin: 2px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .theaterAddress {
            margin: 0px;
            font-size: var(--font-size);
            line-height: 19px;
        }
        /*.modal {
        position: fixed;
        top: 0;
        left: unset;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 5002;
    }*/

        /*.flex-column > div {
            display: flex;*/
            /*padding-bottom: 3%;*/
        /*}*/
        /*#DataBoundFindTicketsHeaderImageContainer {
        display: none;
    }*/
        /* OrderDetailsSummary Styling */
        #orderDetailsSummaryText {
            padding-left: 20px;
        }

        #orderDetailsSummaryImage {
            box-sizing: border-box;
            float: left;
            width: 93px;
            height: auto;
        }

        #orderDetailsSummaryAlerts {
            padding-top: 15px;
            justify-content: space-between;
        }

        .PriceControlBubbleContainer {
            padding: 0 20px 0 20px;
        }

        #expandOrderDetails > * {
            padding: 10px 0;
        }


        #findMyOrderForm > div {
            padding-top: 1%;
        }

        #findOrderButton {
            margin-top: 2%;
        }

        .calendarContainer {
            margin: -20px;
        }

        .calendarHeader {
            height: 40px;
        }

        .calendarLabel {
            width: 100%;
        }

        .calendarPrevMonthButton {
            margin-left: 20px;
        }

        .calendarNextMonthButton {
            margin-right: 20px;
        }

        .calendarAlertContainer {
            padding: 20px;
            width: 100%;
            display: flex;
            background-color: var(--light-gray-accent);
        }

        .calendarAlertTextContainer {
            display: flex;
            padding-right: 20px;
            width: 100%;
        }

        .calendarAlertCloseIcon {
            margin: 0 0px 0 0 !important;
            padding: unset;
        }

        .calendarShowMoreDateTiles {
            align-items: center;
            width: 78px;
            height: 53px;
            border: 1px solid rgb(0, 73, 219);
            border-radius: 2px;
            margin: 2px;
            display: flex;
            justify-content: space-around;
            background-color: white;
            color: rgb(0, 73, 219);
        }

        .calendarPerfTile {
            height: 27px;
            width: 100%;
            border-radius: 2px;
            display: flex !important;
            flex-direction: column;
            overflow: hidden;
            justify-content: center;
            align-items: center;
        }

        #showMoreButton {
            align-items: center;
            padding: 0 2px;
        }

        .calendarPerfTileTextContainer {
            height: unset;
            /*padding: 0 3px 0 5px;*/
        }

        .expandedSection {
            width: 100%;
            display: flex;
            flex-direction: row;
            justify-content: space-around;
        }

            .expandedSection > div {
                width: inherit;
                display: inherit;
                justify-content: inherit;
                /*padding-right: 20px;*/
            }

        .calendarMessage {
            padding: 30px 0 10px;
            width: 100%;
            display: flex;
            text-align: center;
            justify-content: space-around;
        }

        .calendarMiddleSelectedTileMarker {
            height: 9px;
            width: 12px;
            margin: 0 auto;
            position: absolute;
            bottom: -3px;
        }

        .calendarBottomSelectedTileMarker {
            height: 9px;
            width: 12px;
            margin: 0 auto;
            position: absolute;
            bottom: 0px;
        }

        .expandWeekA {
            bottom: 30px;
        }

        div[id="dayBottomShow"], div[id="dayMiddleShow"] {
            margin: 0 0 1px 0;
        }

        .dayMiddle {
            min-height: 27px;
        }

        .dayBottom {
            min-height: 29px;
            padding-top: 2px;
        }

        .selectedOverlayDateTimeContainer {
            flex-direction: column;
            box-shadow: rgba(0, 0, 0, 0.25) 0px 1px 4px 0px;
            margin: 10px 0px;
            min-height: 61px;
            border: 1px solid rgb(204, 204, 204);
            background-color: white;
            display: flex;
            justify-content: space-between;
        }
        /* To make tile icon background switch to blue and text switch to white */
        button.tile.active:not(.promo):not(.accessibility):not([id*="menuOption"]) {
            background-color: var(--primary-light);
            color: var(--white);
            font-weight: 500;
        }
        /* To make tile icon switch to white */
        button.tile.active:not([id*="menuOption"]) img {
            filter: brightness(0) invert(1);
        }

        .hamburgerNav button.nav, button.nav.navAccountButton, .desktop {
            display: none !important;
        }

        .TSOS_Button_Remove {
            margin: unset !important;
        }
        /* To make tile icon background switch to darker blue on hover if active*/
        /*button.tile.active:hover:not(.promo):not(.accessibility) {
        background-color: var(--primary);
        color: var(--white);
        font-weight: 500;
    }*/
        .fadeOutHamburgerMenu {
            opacity: 0;
            display: none;
            transition: width 0.5s 0.5s, height 0.5s 0.5s, opacity 0.5s;
            pointer-events: none;
        }

        .fadeInHamburgerMenu {
            opacity: 1;
            display: flex;
            transition: width 0.5s, height 0.5s, opacity 0.5s 0.5s;
        }

        .promo.active span, .promo.active p {
            /*font-weight: bold;*/
            color: var(--white);
        }

        .promo.active {
            /*font-weight: bold;*/
            color: var(--white);
            background-color: var(--secondary);
        }

        .cardContainer button ~ .modal {
            margin-left: -20px;
        }

        .pricing .cardHeader.compact {
            border-bottom: 1px solid rgb(223, 223, 223);
            flex-direction: column;
        }

        .cardHeader {
            font-size: var(--font-size);
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 2%;
            /*padding-top: 4%,*/
        }

        .sectionHeaderLabel {
            font-size: var(--font-size);
            font-weight: bold
        }

        body {
            background-color: var(--background);
            font-family: 'Poppins', sans-serif !important;
            /*margin-bottom: 60px;*/
            /* max-width: 500px; */
            margin-left: auto;
            margin-right: auto;
            color: var(--black);
        }

        .top-pad {
            padding-top: 30px
        }

        .centered-column {
            display: inline-flex;
            justify-content: space-evenly;
            align-items: center
        }

        .askAQuestion {
            text-align: center !important;
            padding: 1% 0%;
            color: var(--primary-light);
            justify-content: center;
            display: flex;
            align-items: center;
            bottom: 0;
            width: 100%;
            white-space: nowrap;
            line-height: 60px;
        }

        .submit {
            background-color: var(--secondary);
            color: var(--white);
            font-size: var(--font-size);
            /*max-width: 80%;*/
            width: 100%;
            min-width: 64px;
            padding: 6px 16px;
            border-radius: 2px;
            /*outline: none;*/
            border: 0px
        }

            .submit:hover {
                background-color: var(--secondary-dark);
            }

        select {
            /*height: 56px;*/
            /*width: "28%"*/
        }

        /* Place the navbar at the bottom of the page, and make it stick */
        .navbar {
            background-color: white;
            border-top: gray solid thin;
            /*overflow: hidden;*/
            justify-content: space-evenly;
            flex-wrap: nowrap;
            position: fixed;
            padding: unset;
            bottom: 0;
            width: 100%;
            max-width: 500px
        }

            /* Style the links inside the navigation bar */
            .navbar button {
                border: none;
                float: left;
                display: block;
                color: black;
                text-align: center;
                padding-top: 5px;
                text-decoration: none;
                margin-inline: 5px;
                margin-bottom: 5px;
                background-color: white;
                /*font-size: 17px;*/
            }

                /* Change the color of links on hover */
                .navbar button:hover {
                    background-color: transparent;
                    color: black;
                }

                /* Add a color to the active/current link */
                .navbar button.active {
                    border-top: solid #AC2069 4px;
                }



        .card-mask {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(255, 255, 255, 0.82);
            z-index: 5001;
        }

        .modal-main {
            overflow-y: auto;
            position: fixed;
            background: white;
            width: 100%;
            max-width: 500px;
            height: 100%;
            padding-left: 5%;
            padding-right: 5%;
            /*top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);*/
        }

        .card-main {
            overflow-y: auto;
            /*position: fixed;*/
            background: white;
            /* width: 100%; */
            margin-top: 13%;
            /* height: 100%; */
            padding-left: 5%;
            margin-left: 5%;
            padding-right: 5%;
            border: dodgerblue thin solid;
            border-radius: 2%;
            margin-right: 5%;
        }

        .flex-column {
            display: flex;
            flex-direction: column
        }

        .flex-row {
            display: flex;
            flex-direction: row
        }

        .display-block {
            display: block;
        }

        .display-none {
            display: none;
        }

        .sr-only {
            position: absolute;
            left: -10000px;
            top: auto;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }

        button.cancel {
            display: inline-block;
            border: none;
            margin: 0px;
            text-decoration: none;
            background-color: var(--background);
            color: #ffffff;
            font-size: 1rem;
            cursor: pointer;
            text-align: center;
            filter: brightness(0.5);
            transition: background 250ms ease-in-out, transform 150ms ease;
            -webkit-appearance: none;
            -moz-appearance: none;
        }

            button.cancel:hover {
                background: var(--light-gray-accent);
            }

        .link {
            /*display: inline-block;*/
            border: none;
            padding: unset;
            text-decoration: none;
            background-color: var(--background);
            color: var(--primary-light);
            cursor: pointer;
            text-align: center;
            transition: background 250ms ease-in-out, transform 150ms ease;
            -webkit-appearance: none;
            -moz-appearance: none;
        }

        button.link:hover {
            font-weight: bold;
            color: var(--primary);
            /*background-color: var(--silver);*/
        }

        .menu.link.toggle {
            width: unset;
        }

        a {
            text-decoration: none;
            color: var(--primary-light);
        }

            a:hover {
                font-weight: bold;
                color: var(--primary);
                /*background-color: var(--silver);*/
            }

        button.link:active {
            background-color: var(--silver);
        }

        button.icon {
            display: inline-block;
            border: 1px solid transparent;
            padding: 0 5px;
            /*margin: 2%;*/
            /*margin: 0;*/
            text-decoration: none;
            background-color: var(--background);
            color: #333333;
            /*font-family: sans-serif;*/
            /*font-size: 1rem;*/
            cursor: pointer;
            text-align: center;
            /*filter: brightness(0.5);*/
            transition: background 250ms ease-in-out, transform 150ms ease;
            -webkit-appearance: none;
            -moz-appearance: none;
        }

            button.icon:hover:not(.tile) {
                /*background: var(--light-gray-accent);*/
                /*outline: 2px solid var(--primary);*/
                color: var(--primary) !important;
                font-weight: 500;
            }

        button > div > span::before {
            /*background: var(--light-gray-accent);*/
            border: 1px solid transparent;
            font-weight: 500;
        }

        @media(hover: hover) {
            button.tile:hover:not(.promo):not(.accessibility) {
                /*background: var(--light-gray-accent);*/
                border: 1px solid var(--primary);
                color: var(--primary);
                font-weight: 500;
            }

            button.tile.accessibility:hover {
                /*background: var(--light-gray-accent);*/
                outline: 1px solid var(--primary);
                /*color: var(--secondary);*/
                /*font-weight: 500;*/
            }
            /*button.tile.promo:hover {*/
            /*background: var(--light-gray-accent);*/
            /*outline: 1px solid var(--secondary);
    color: var(--secondary);
    font-weight: bold;
}*/
            button.info:hover, button.nav:hover {
                background: var(--light-gray-accent);
            }
        }

        button.info {
            border: none;
            text-decoration: none;
            background-color: var(--background);
            color: #333333;
            cursor: pointer;
            text-align: center;
            transition: background 250ms ease-in-out, transform 150ms ease;
            -webkit-appearance: none;
            -moz-appearance: none;
        }

        .modalHeaderContainer {
            height: 50px;
            width: 100%;
            background: white;
            top: 0;
            display: flex;
            justify-Content: space-between;
            z-index: 501;
        }


        .modalTitleContainer {
            display: flex;
            max-width: 75%;
        }


        .modalTitleCloseContainer {
            display: flex;
            padding-right: 5%
        }

        .bottomBorder {
            border-bottom: 1px solid rgb(170, 170, 170);
        }

        .modalTitleIconContainer {
            display: flex;
            margin-right: 5px;
            width: unset !important;
            align-self: center;
        }

            .modalTitleIconContainer img {
                width: 25px;
                height: 25px;
            }

        .closeModalButton {
            height: auto;
            width: 16px;
            align-Self: center;
        }

        .radioButton {
            background: unset;
            border: unset;
        }

        img[role='radio']:hover {
            /*border: 2px solid var(--primary-light);*/
            outline: 2px inset var(--primary-light);
            border-radius: 50%;
        }

        input[type=range]::-webkit-slider-thumb:hover {
            border: 8px solid var(--secondary);
        }

        input[type=checkbox]:hover {
            outline: 2px inset var(--primary-light);
        }

        /*RANGE SLIDER ON SHOW LIST FILTERS*/
        .range-slider {
            height: 10px;
            position: relative;
            background-color: #e1e9f6;
            border-radius: 2px;
        }

        .range-selected {
            height: 100%;
            position: absolute;
            border-radius: 5px;
            background-color: #0049DB;
        }

        .range-input {
            position: relative;
        }

            .range-input input {
                position: absolute;
                width: 100%;
                height: 5px;
                top: -7px;
                background: none;
                pointer-events: none;
                -webkit-appearance: none;
                -moz-appearance: none;
            }

                .range-input input::-webkit-slider-thumb {
                    height: 24px;
                    width: 24px;
                    border-radius: 50%;
                    border: 6px solid #911C58;
                    background-color: #fff;
                    pointer-events: auto;
                    -webkit-appearance: none;
                }

                .range-input input::-moz-range-thumb {
                    height: 15px;
                    width: 15px;
                    border-radius: 50%;
                    border: 3px solid #911C58;
                    background-color: #fff;
                    pointer-events: auto;
                    -moz-appearance: none;
                }

        .accessibleButtonName {
            position: absolute;
            color: transparent;
        }

        .filterRow {
            border: none;
            text-decoration: none;
            background-color: var(--background);
            color: var(--black);
            cursor: pointer;
            text-align: center;
            transition: background 250ms ease-in-out, transform 150ms ease;
            -webkit-appearance: none;
            -moz-appearance: none;
            width: 100%;
        }

        .calendarHeader {
            background: rgba(0, 51, 153, 1);
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
        }

        .calendarHeaderContentContainer {
            display: flex;
            width: 100%;
        }

        .calendarPrevMonthButton {
            padding: unset !important;
            /*margin-left: 20px;*/
            color: white;
            display: flex
        }


        .calendarNextMonthButton {
            padding: unset;
            /*margin-right: 20px;*/
            color: white;
            display: flex
        }

        .calendarLabel {
            /*width: 100%;*/
            height: 100%;
            float: left;
            color: white;
            font-size: 16px;
            display: flex;
        }


        .calendarLabelText {
            align-self: center;
            width: 100%;
            margin: 0;
            text-align: center;
            color: white;
            font-weight: 400;
        }

        calendarNavButton {
            border: none;
            align-self: center;
        }

        .expandedPerfSectionContainer {
            background: var(--light-gray-accent);
            width: 100%;
            display: flex;
            justify-content: start;
            align-items: center;
        }

        button.tile.calendarPerfTile {
            color: var(--primary-light);
            border: 1px solid var(--primary-light);
        }

        .promo p {
            color: var(--secondary);
        }

        #promoCodeModal:not(.active) div > span {
            color: var(--light-gray);
        }

        .promo:hover p {
            font-weight: bold;
            color: var(--secondary);
        }
        /*.promo.active span, .promo.active p {
    font-weight: bold;
    color: var(--white);
}*/
        /*.promo.active {
    font-weight: bold;
    color: var(--white);
    background-color: var(--secondary);
}*/


        .accessibility:not(p) {
            color: var(--light-gray) !important;
        }

        .accessibility:hover:not(p) {
            color: var(--primary) !important;
        }

        .accessibility p {
            color: var(--primary-light)
        }

        .accessibility.active :not(p) {
            color: var(--white);
            font-weight: bold;
        }

        .accessibility.active, .accessibility.active p {
            color: var(--white);
            background-color: var(--primary-light);
        }

            .accessibility.active:hover, .accessibility.active:hover p {
                color: var(--white);
                background-color: var(--primary);
            }

        .dayMiddle {
            /*border-left: 1px solid #d8d8d8;
    border-right: 1px solid #d8d8d8; */
            text-align: center;
            /*min-height: 27px;*/
            /*max-width: calc(100%/7);*/
            float: left;
            position: relative;
            background-color: white;
            color: #555555;
        }

        .dayBottom {
            /*border-left: 1px solid #d8d8d8;
    border-right: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;*/
            text-align: center;
            /*min-height: 27px;*/
            /*max-width: calc(100%/7);*/
            float: left;
            position: relative;
            background-color: white;
            color: #555555;
        }

        .showMoreDatesContainer {
            width: 100%;
            color: rgb(0, 73, 219);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        /*.calendarMessage {
    padding: 30px 0 10px;
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: space-around;
}
.calendarMiddleSelectedTileMarker {
    height: 9px;
    width: 12px;
    margin: 0 auto;
    position: relative;
    bottom: 13px;
}
calendarBottomSelectedTileMarker: {
    height: 9px;
    width: 12px;
    margin: 0 auto;
    position: absolute;
    bottom: 0.5px;
}*/
        .menuButtonAlignedText:only-child {
            margin: 0 5px 5px 5px;
        }

        #modalChildrenContainer > div:only-child {
            /*height: 100vh;*/
        }

        .hamburgerNav {
            align-items: center;
            display: flex;
            /*justify-content: space-evenly;*/
        }

        #telechargeLogo span {
            height: 34px;
            width: 102px;
        }

        button.nav {
            padding: unset;
            display: inline-block;
            border: 1px solid transparent;
            text-decoration: none;
            background-color: unset;
            font-size: var(--tile-font-size);
            cursor: pointer;
            text-align: center;
            transition: background 250ms ease-in-out, transform 150ms ease;
            -webkit-appearance: none;
            -moz-appearance: none;
        }

        #searchSiteButton {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

            #searchSiteButton img {
                cursor: pointer;
                height: auto;
                width: 26px;
                background-size: contain;
                float: right;
                border: none;
                margin: 14px 8px;
            }

        #feedbackImage {
            cursor: pointer;
            height: 24px;
            width: auto;
            background-size: contain;
            float: right;
            border: none;
            margin: 14px 8px;
        }

        .heroContainer {
            display: flex;
            justify-content: center;
        }

        .heroImage {
            height: 506px;
            background-position: top;
            position: inherit;
            margin: auto auto 20px auto;
            text-align: center;
            background-size: cover;
            background-repeat: no-repeat;
        }

        .heroText {
            display: flex;
            background-image: linear-gradient(rgba(0, 51, 153, 0.1) 54%, rgba(0, 51, 153, 0.75) 73%, rgba(0, 51, 153, 0.85) 75%);
            text-align: center;
            color: white;
            font-size: var(--font-size);
            position: absolute;
            flex-direction: column;
            align-items: center;
            justify-content: end;
            height: 506px;
            width: 100%;
        }

            .heroText > img {
                width: 149px;
                height: 50px;
            }

            .heroText > h1 {
                font-weight: 500;
                color: white;
                width: 280px;
                padding: 2%;
            }

            .heroText > a {
                color: white;
                text-decoration: none;
                font-size: var(--font-size);
                padding-bottom: 5%;
            }

                .heroText > a > img {
                    padding: 0px 0px 0px 3px;
                }
        #heroContentContainer {
            display: flex;
            width: 100%;
        }

        #heroText {
            display: flex;
            align-items: flex-start;
            flex-direction: column;
            width: 100%;
        }

        #heroCaptionContainer {
            display: flex;
            justify-content: '';
            padding: 10px 0;
        }

        #heroCaption {
            text-align: left;
            align-self: center;
        }

        #heroShowsText {
            color: white;
            height: 50px;
        }

        #heroLogo {
            align-self: center
        }

        #heroShowLogoTextContainer {
            text-align: left;
            display: flex;
            flex-direction: column;
            align-self: center;
        }

        #heroEventName {
            margin: 0;
            font-weight: 700;
        }

        #heroLocaleGenre {
            margin: 0;
        }

        #heroShowLogo {
            height: 80px;
            width: 80px;
            min-width: 80px;
            margin-left: 20px;
        }
        .carouselContainer {
            padding: unset;
        }

        .carouselHeader {
            display: flex;
            flex-direction: row;
        }

            .carouselHeader button.link {
                display: none;
            }

        .carouselShow {
            width: 133px;
            margin-right: 10px;
            text-align: center;
        }

            .carouselShow img {
                width: 133px;
                height: 200px;
            }

        .flickity-viewport {
            width: 100%;
        }

        .flickity-prev-next-button {
            display: none;
        }

        .advertisementFooter {
            padding-bottom: 5px;
        }

            .advertisementFooter a {
                margin: 20px;
            }

        .advertisementFooterContainer, .socialFooter {
            display: flex;
            flex-direction: column;
        }

            .socialFooter > div {
                display: flex;
                flex-direction: row;
                justify-content: center;
                & > div {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    & > a:not(:first-child){
                        padding: 0 0 0 5%
                    }
                }
            }

            .socialFooter > span > div[id="privacyPolicy"] {
                display: none;
            }

        .dealHeaderImage {
            width: 100%;
            text-align: center;
        }

            .dealHeaderImage > img {
                width: 100%;
            }

        .dealContainer {
            background: rgb(234, 234, 234);
            /*height: 100%;*/
            padding-bottom: 10px;
        }

            .dealContainer > div {
                display: flex;
                background: white;
                box-shadow: rgba(0, 0, 0, 0.25) 0px 1px 4px 0px;
                height: 100%;
                flex-direction: column;
                justify-content: space-between;
                padding: 0px;
            }

        .dealText {
            padding: 0px 20px;
            margin-bottom: 5%;
        }

        .dealImage + p {
            margin-bottom: 20px;
            padding-left: 20px;
            padding-right: 20px;
            color: #555555;
        }

        .indexSections {
            float: right;
            background: white;
            width: 75%;
            text-align: right;
            border-left: 1px solid rgb(234, 234, 234);
            height: 100%;
        }

            .indexSections button.link {
                text-align: end;
                width: 100%;
                padding: 10px 15px;
            }

        .menu.link {
            text-align: end;
            width: 100%;
            padding: 10px 15px;
        }

            .menu.link > div {
                text-align: right;
                /*font-weight: bold;*/
                font-style: normal;
                font-size: var(--font-size);
                /*color: rgb(0, 0, 0);*/
                text-decoration: none;
            }

        .pageContent {
            background: rgb(238, 238, 238);
            margin-bottom: 50px;
        }

        .menu-header {
            width: 100%;
            max-width: 500px;
            background: white;
            position: fixed;
            top: 55px;
            padding: 0px 20px 0px;
            border-bottom: 1px solid rgb(207, 207, 207);
            box-shadow: 0px 1px 8px -3px;
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            & ~.pageContent{
                padding: 50px 0px;
            }
        }


        .previewSelectedFilterLabel {
            color: var(--light-gray);
            font-size: var(--font-size);
            align-self: center;
            /*white-space: nowrap;*/
            padding: 2px 2px 2px 20px;
            margin: 0px;
            width: 70%;
            line-height: 12px;
            text-align: left;
        }

        .expandOrderDetails {
            width: 100%;
            margin-top: 20px;
        }

        .perfMessageContainer {
            display: flex;
            justify-content: space-between;
            margin: 0px auto;
            padding-top: 15px;
            & >div{
                display: flex;
                /*color: var(--black);*/
                align-items: center;
                font-size: 12px;
                color: var(--primary-light);
                justify-content: flex-start;
            }
        }
        .perfMessageContainer img {
            padding-right: 5px;
        }

.perfMessage {
    display: flex;
    font-size: 12px;
    color: var(--primary-light);
    text-align: left;
    vertical-align: middle;
    align-items: center;
}

        .selectedSeatsContainer {
            padding: 15px 0px;
            color: rgb(85, 85, 85);
        }

            .selectedSeatsContainer > div > div {
                width: 100%;
                margin: 10px 0px;
                display: flex;
                justify-content: space-between;
            }

        #loginContainer .inputContainer {
            padding: 1% 0px 5px;
            margin: unset;
        }

        #guestContainer > div {
            padding-top: 1%;
        }

        .inputContainer {
            width: 100%;
            margin: 0px;
        }

        .rowContainer {
            width: 100%;
            display: flex;
        }

            .rowContainer .inputContainer + .inputContainer {
                margin-left: 10px;
            }

            .rowContainer + .rowContainer {
                padding-top: 10px;
            }

        .create-account .rowContainer {
            flex-direction: column;
        }

        .emailTakenContainer {
            margin: 4% 0px 2px;
        }

        .addressFieldsContainer {
            margin: 4% 0%;
        }

        .phoneFieldsContainer {
            margin-bottom: 4%;
            width: 100%;
            display: inline-flex;
            flex-direction: column;
        }

        /*        .phoneFieldsContainer .inputContainer:not(:only-of-type):not(:last-child) {
            padding-right: 10px;
        }

    .addressFieldsContainer .rowContainer .inputContainer:not(:only-of-type):not(:last-child) {
        padding-right: 10px;
    }*/

        .addressFieldsContainer .rowContainer + span {
            padding-top: 6px;
        }

        .phoneFieldsContainer .dropdownContainer {
            display: flex;
            margin-bottom: 3px;
            height: 56px;
        }

            .phoneFieldsContainer .dropdownContainer .inputContainer:first-child {
                width: 35%;
            }

        .checkBoxRow {
            display: flex;
            align-items: center;
            margin-top: 3%;
        }
        /* Checkbox label changes color if checkbox is checked */
        input[type='checkbox'] + label {
            color: var(--light-gray)
        }

        input[type='checkbox']:checked + label {
            color: var(--black)
        }
        /*.inputContainer.confirmEmail {
    margin-bottom: 3%;
}*/
        .inputContainer > .select-wrap:not(:only-of-type):not(:last-child) {
            margin-right: 10px;
        }

        .dropdownContainer .inputContainer, .dropdownContainer + .inputContainer {
            margin: unset;
        }

        .selectedSeatTotal {
            font-size: 16px;
            color: var(--black);
        }

        .selectedSeatFees {
            margin: 0px;
            font-size: 10px;
            font-weight: 400;
            color: rgb(127, 127, 127);
        }

        /*#addressFields .Containercity {
        margin-top: 3%;
    }*/

        .showFilterHeaderContainer {
            margin: -54px 0px 0px;
            width: 100%;
            background: white;
            position: fixed;
            padding-top: 54px;
            box-shadow: 0px 2px 10px -5px;
            max-width: 500px;
        }

            .showFilterHeaderContainer .headerContainer {
                height: 40px;
                width: 100%;
                border-bottom: 1px solid rgb(224, 224, 224);
                display: flex;
                justify-content: space-around;
            }

        .info.search img {
            height: 27px;
        }

        .info.cancel img {
            height: 15px;
        }

        .filterRowHeaderContainer {
            width: 100%;
            height: 50px;
            display: flex;
            user-select: none;
            justify-content: space-between;
        }

        .filterOptionsContainer {
            height: 80px;
            display: table;
            table-layout: fixed;
            width: 90%;
            margin: 0px auto;
            border-spacing: 3px 15px;
        }

        .optionContainer {
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
        }

            .optionContainer > button.tile {
                vertical-align: middle;
                text-align: center;
                border: 1px solid rgb(0, 73, 219);
                height: 40px;
                color: rgb(0, 73, 219);
                width: 49%;
                margin: 0.5%;
            }

        .dateInputContainer {
            display: flex;
            padding: 0px 5% 3%;
            justify-content: center;
            margin: auto;
        }

            .dateInputContainer > div {
                max-width: 45%;
            }

                .dateInputContainer > div > input {
                    width: 100%;
                }

                .dateInputContainer > div:not(:last-of-type) {
                    padding-right: 2%;
                }

        .dayTile {
            border: 1px solid #d8d8d8;
            text-align: center;
            height: 70px;
            width: calc(100%/7);
            float: left;
            display: flex;
        }

        .daysTileContainer {
            height: 420px;
            background: rgb(241, 241, 241);
        }

        .orderDetailsContainer {
            display: flex;
            align-items: center;
        }

            .orderDetailsContainer div, .orderDetailsContainer h2 {
                margin: unset;
                padding: unset;
            }

        [class^="TSOS_Button_"] {
            padding: 0px;
            width: 100%;
            height: 40px;
            margin: 15px auto;
            color: white;
            border: none;
            user-select: none;
        }

        .creditCardFields {
            margin: 10px 0px;
        }

            .creditCardFields .creditCardInfo {
                display: flex;
                flex-direction: column;
                /*padding-top: 10px;*/
            }

                .creditCardFields .creditCardInfo > div:not(:last-child) {
                    margin-right: 10px;
                }

        .accountPage .creditCardContainer {
            display: flex;
            flex-direction: column;
            margin-top: 0px;
        }

        .saved-payment.tile {
            padding-right: 20px;
            width: unset;
            height: 90px;
            align-items: center;
        }

        .creditCardContainer {
            display: flex;
            flex-direction: column;
            margin-top: 15px;
        }


        button.payment {
            width: 100%;
            color: var(--primary-light);
            border: 1px solid var(--primary-light);
            font-weight: normal;
        }

            button.payment > div {
                width: 100%;
                text-align: center;
                display: flex;
                /*justify-content: center;*/
                height: 90px;
                align-items: center;
                box-shadow: rgba(0, 0, 0, 0.25) 0px 1px 4px 0px;
            }

        button.new.payment > div {
            justify-content: center;
        }

        button.new.payment img {
            height: 24px;
            width: 24px;
            margin: auto 0;
        }

        button.payment img {
            height: 15px;
            width: 20px;
            margin: auto 10px;
        }

            button.payment img + div {
                text-align: start;
            }

        button.payment + button.payment {
            margin-top: 10px;
        }

        #NonFreedomPayMethod h3 {
            margin: 15px 0 7px 0;
        }

        img[id="findTicketsHeaderImg"] {
            width: 100%;
        }

        .carousel.cardContainer > div {
            padding: 20px 0 0 0;
        }

        .orderDetailsPage .nav > div {
            height: unset !important;
        }

        .ticketActionsContainer {
            display: table;
            table-layout: fixed;
            padding-top: 8px;
            margin: 0px auto;
        }

        .ticketActions .buttonsContainer {
            justify-content: space-between;
            /* padding-left: 45%; */
            display: flex;
            align-items: center;
            flex-direction: column;
        }

            .ticketActions .buttonsContainer > div {
                display: flex;
                width: 50%;
                justify-content: center;
                /*padding-top: 20px;*/
            }

        .billingInfo .iconContainer {
            padding-right: 3%;
        }

        .orderDetailsPage .orderDetailsContainer + .perfDates {
            /*padding-top: 20px;*/
            display: none;
        }

        .orderDetailsPage .billingInfo .paymentContainer {
            display: flex;
            padding: 3%;
            align-items: center;
        }

        .ccCodes {
            display: flex;
            padding-top: 2%;
        }

        .accountPage .cardField {
            padding-bottom: 3%;
        }

            .accountPage .cardField .label {
                color: rgb(0, 0, 0);
                font-weight: 600;
            }

            .accountPage .cardField .value {
                color: rgb(0, 0, 0);
                width: 60%;
                display: flex;
                flex-direction: column;
            }

        #FindMyOrder {
            margin: 15px 0px;
        }

        /*AccountPage Styling*/
        .accountPage .tile-container .tile {
            padding-right: 20px;
            display: flex;
            /*width: 265px;
        height: 65px;
        align-items: center;*/
            border: 1px solid #CBCBCB;
        }

        .accountPage .phone.tile.icon {
            padding: 0 20px 0 20px;
            display: flex;
            /*width: 265px;*/
            height: 65px;
            align-items: center;
            border: 1px solid #CBCBCB;
        }

        .tile-icon-container {
            margin-right: 10px;
        }

        .accountPage .address.tile.icon {
            padding: 20px;
        }

        .tile-icon-container > img {
            height: unset !important;
            padding: unset !important;
        }

        .tile-description-container {
            display: flex;
            width: 100%;
            justify-content: space-between;
            align-items: center;
        }

        .accountPage .tile-container .tileDescription, .tileDescription .value > div {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
        }

            .accountPage .tile-container .tileDescription > .label {
                color: var(--black);
                font-size: 16px;
                font-weight: bold;
            }

            .accountPage .tile-container .tileDescription > .value {
                color: var(--light-gray);
                font-size: 16px;
            }

        .accountPage .submit {
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .accountPage .submit:not(:last-child) {
                margin-bottom: 20px;
            }

        .upComing-shows .tile {
            padding: unset;
            margin: 10px 0px;
            display: flex;
            height: 150px;
            background-color: var(--white);
            width: 100%;
            border: unset;
        }

        .upComing-show.tile .showImageContainer {
            padding-right: 10px;
            & .showImage{
            height: 150px;
        }
    }
    .upComing-show.tile .text-container {
        align-self: center;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        line-height: 18px;
    }
    .checkboxRow {
        display: flex;
        align-items: center;
        margin-top: 3%;
    }
    .checkBoxContainer {
        width: 20px;
        height: 20px;
        margin-right: 5%;
    }
    /*.emailCheckBoxes {
        width: inherit;
        height: inherit;
    }*/
    .innerPopup {
        width: inherit;
    }
    .accountPage .link-container {
        padding: 3% 0% 5%;
    }
    .input-error {
        padding: 10px 0 20px;
        font-size: 12px;
        color: #B22222;
    }
    .accountPage .tile-container .tile {
        padding-right: 20px;
        display: flex;
        /*width: 265px;
        height: 65px;
        align-items: center;*/
        border: 1px solid #CBCBCB;
    }
    .accountPage .tile.icon {
        padding: 10px 20px 10px 10px;
        display: flex;
        align-items: center;
        border: 1px solid #CBCBCB;
    }
    .ticket-info {
        color: var(--light-gray);
        text-align: start;
        font-size: 14px;
    }
    .ticket-info p {
        margin: unset;
    }
    .checkBox.rowContainer {
        flex-direction: column;
    }
.forgotPasswordContainer {
    background: white;
    box-shadow: var(--default-box-shadow);
}
.createAccountContainer, .forgotPasswordContainer {
    & .card-header{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        background: white;
        box-shadow: var(--default-box-shadow);
        & > div{
            display: flex;
            width: 500px;
            justify-content: space-between;
            align-items: center;
        }
        & button{
            padding: unset;
        }
    }
    & .card-body{
        padding: 0px 20px;
        & > form{
            padding: 1em 0 0 0;
        }
        & .createAccountWorkflowSubheader{
            padding: 0 0 1em 0;
            margin: unset;
        }
    }
}


.selected-donation.tile {
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

    .selected-donation .link-container {
        margin-left: auto;
    }

    .selected-donation .showImageContainer {
        height: 70px;
        width: 70px;
    }

    .selected-donation .showImage {
        height: inherit;
        width: inherit;
    }

    .donation .tile.icon {
        vertical-align: middle;
        text-align: center;
        border: 1px solid rgb(0, 73, 219);
        height: 60px;
        color: rgb(0, 73, 219);
        width: auto;
        background: white;
    }
    /*These might want to become default styles - Neil G*/
    .donation .cardHeader {
        margin-bottom: 20px;
        padding-bottom: 0px;
    }
    .donation .subtitle {
        margin-bottom: 20px;
        padding-bottom: 0px;
        color: var(--light-gray);
    }
    .donation .submit {
        margin: 20px 0px 0px 0px
    }
    .donation p {
        margin: unset;
    }
    .showTitleContainer {
        text-align: left;
        color: var(--black);
    }
    .accesibility-filter-button{
        padding: unset;
        margin-top: 10px;
    }

    .tsr-filter{
        &.ffa {
            & .expandedFilter{
                padding: 0px 20px;
                & .accesibility-filter-button{
                    padding: 20px;
                    & .accesibility-filter-icon{
                             margin: 0 10px 0 -10px;
                         }
                }
            }
        }
        & .expandedFilter{
            padding: 0px 20px;
            & .accesibility-filter-button{
                padding: 20px 20px 20px 0px;
                & .accesibility-filter-icon{
                    margin: 0 10px;
                }
            }
        }
        & .filterRow{
            padding: unset;
        }
    }
    .gift-card-payment, .gift-card-confirmation, .gift-card-personalize {
            & .orderDetailsContainer{
                align-items: center;
                width: unset;
            }
            & #orderDetailsSummaryImageContainer{
                /*margin-right: 20px;*/
            }
            & #orderDetailsSummaryText{
                width: 100%;
            }
            & .showImage{
                width: 40px;
                height: 37px;
            }
            & .rowContainer + .rowContainer{
                /*margin-top: 15px;*/
            }
            & .rowContainer{
                padding: unset;
                align-items: center;
                justify-content: space-between;
                & .label, .value{
                    font-weight: bold;
                } 
            }
            & .messages {
                & .messageRow + .messageRow{
                    margin-top: 15px;
                }
            }
            /*& .rowContainer:last-of-type {
                margin: 30px 0px;
            }*/
            & .block-divider{
                border-bottom: var(--silver) 1px solid;
                margin-top:10px;
                margin-bottom: 10px;
                padding: unset !important;
            }
            & .submit {
                /*width: 300px;*/
                margin: 15px auto 0px;
            }
            & #messageInput {
                margin: 10px 0;
            }
            & .charCount {
                margin-bottom: 5%;
                display: flex;
                color: var(--light-gray);
                justify-content: flex-end;
            }
        }
        .gift-card-personalize {
            & .rowContainer + .rowContainer{
                margin-top: 15px;
            }
        }
}

#privacyPolicyNavigationMenuLinks:last-child {
    margin-bottom: 30px;
}

#applyPromoCodeBtn {
    background-color: #931B54;
}

#applyPromoCodeBtn:hover {
    background-color: #66133B;
}
#applyPromoCodeBtn:disabled {
    background-color: #C98DA9;
}


#applyAmexFilterBtn {
    background-color: #931B54;
}

#applyAmexFilterBtn:hover {
    background-color: #66133B;
}

#applyAmexFilterBtn:disabled {
    background-color: #C98DA9;
}