.layoutjsContainer,
.layoutjs {
    --font-family-display: var(--font-display);
    --font-family-body: var(--font-body);
    --text-color: var(--sw-text-color);
    --tertiary-color: var(--gray-100);
    --tertiary-color-hover: var(--gray-200);
    --accent-color: var(--secondary-color-700);
    --accent-color-secondary: var(--primary-color-600);
    --alert-color: var(--tertiary-color-900);
    --alert-color-secondary: var(--tertiary-color-300);
    --alert-color-tertiary: var(--secondary-color-700);
    --box-shadow: var(--shadow);
    --settings-font-family-display: var(--font-family-display);
    --settings-font-family-body: var(--font-family-body);
    --settings-color: var(--primary-color);
    --settings-secondary-color: var(--secondary-color);
    --settings-accent-color: var(--accent-color);
    --settings-bg-color: var(--white);
    --filter-font-family-display: var(--font-family-displauy);
    --filter-font-family-body: var(--font-family-body);
    --filter-color: var(--primary-color);
    --filter-bg-color: var(--primary-color);
    --filter-accent-color: var(--secondary-color);
    --filter-secondary-color: var(--primary-color);
    --filter-tertiary-color: var(--tertiary-color);
    --filter-shadow: var(--box-shadow);
    --content-font-family-display: var(--font-body-bold);
    --content-font-family-body: var(--font-family-body);
    --content-primary-color: var(--text-color) ;
    --content-secondary-color: var(--secondary-color);
    --content-tertiary-color: var(--tertiary-color);
    --content-tertiary-color-hover: var(--tertiary-color-hover);
    --content-accent-color: var(--accent-color);
    --content-enabled-color: var(--accent-color-secondary);
    --content-alert-color: var(--alert-color);
    --content-alert-bg-color: var(--alert-color-secondary);
    --content-alert-accent-color: var(--alert-color-tertiary);
    --datepicker-accent-primary: var(--white);
    --datepicker-accent-secondary: var(--primary-color-900);
    --datepicker-accent-tertiary: var(--primary-color-700);
    --datepicker-text-color-primary: var(--gray-700);
    --datepicker-text-color-secondary: var(--gray-300);
    --datepicker-selected: var(--datepicker-accent-primary);
    --datepicker-in-range: var(--datepicker-accent-tertiary);
    --datepicker-selected-text: var(--datepicker-text-color-secondary);
    --datepicker-text: var(--datepicker-text-color-primary);
    --datepicker-in-range-border: var(--datepicker-accent-secondary);
    --datepicker-disabled: var(--datepicker-text-color-secondary);
    --datepicker-hovered-in-range: var(--datepicker-accent-tertiary);
    --compare-menu-cta-bg-color: var(--primary-color-100);
    --compare-menu-cta-bg-color-hover: var(--primary-color-200);
    --compare-menu-cta-text-color: var(--primary-color-700);
    --refine-bg-color: var(--sw-key-color);
}

.layoutjs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: var(--space-16); /* height to leave enough room for loading spinner */
    margin-top: var(--space-5);

    .layout-container {
        width: 100%;
        flex: 1;

        .layout {
            width: 100%;
            position: relative;
        }
    }
}

@media screen and (min-width: 64em) {
    .layoutjs .layout-container {
        width: 100%;
        flex: 1;

        .layout {
            padding: 0 var(--space-5);
        }
    }
}

/* filters & sort */
.layoutjs {
    .settings {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
        font-family: var(--font-header);
        font-size: var(--text-base);
        font-weight: 700;
        line-height: var(--leading-tight);
        padding: var(--space-5) var(--space-5) 0;
        background: var(--settings-bg-color);
        color: var(--settings-color);

        a {
            color: var(--settings-color);
        }

        > div:not(.pager-section) {
            width: 50%;

            a {
                line-height: normal;
                font-size: 12px;
            }

            .highlight a {
                font-family: var(--font-body);
                color: var(--refine-bg-color);
                background-color: transparent;
                text-decoration: none;
                padding: 17px 23px;
                font-weight: normal;
                display: flex;
                justify-content: center;

                i {
                    &::before {
                        margin: 0 5px 0 0;
                    }
                }
            }  

            ul li a span.sr-only {
                position: relative;
            }
        } 

        .filter-mobile {
            display: flex;
        }

        .view {
            width: 50%;

            ul li {
                display: flex;
                margin: 0;
            }

            .highlight a {
                background-color: var(--light-blue) !important;
                color: var(--white) !important;
                width: 100%;
            }
        }

        .highlight a:hover {
            color: var(--white);
        }

        div ul li:hover a {
            background: var(--refine-bg-color);
            color: var(--white);
        }
    }

    .filterPane {
        display: none;
    
        &.mobileFilterActive {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            top: 0;
            z-index: 10000;
            display: block;
            width: 100%;
            overflow-y: auto;
            background-color: var(--refine-bg-color);
            padding: var(--space-5);
    
            div:not(.pager) ul li a span.sr-only {
                position: relative;
            }
    
            div[data-type="daterange"] div.datepicker-cont {
                max-width: 330px;
                border: 1px solid var(--white);
                padding: 15px;
            }
    
            .sort {
                padding: 15px 0;
                background: none;
    
                li {
                    margin: 0 0 15px 0;
    
                    &:last-child {
                        display: none;
                    }
    
                    a {
                        font-family: var(--content-font-family-body);
                        font-size: var(--text-lg);
                        font-weight: 500;
                        line-height: 1;
                        padding: 10px 15px 6px;
                        margin-right: 15px;
                        height: 40px;
                        color: var(--white);
                        cursor: pointer;
                        border-radius: var(--rounded-full);
                        border: 1px solid var(--white);
                        white-space: nowrap;
                        display: block;
                    }
                }
    
                .settings-label {
                    color: var(--white);
                    margin: 0 0 25px 0px;
                }
            }
        }
    
        a {
            color: var(--secondary-color-700);
        }

        .filter {
            &.channel {
                display: none;
            }

            .keyword-input {
                display: flex;
                max-width: 225px;
                position: relative;
            }

            &[data-type="daterange"] {
                margin: 0 0 var(--space-2) 0;
            }

            .keyword .filterLabel {
                display: none;
            }

            &[data-type="keyword"] input,
            &[data-type="number"] input {
                display: flex;
                align-items: center;
                flex: 1;
                font-family: var(--filter-font-family-body);
                font-size: var(--text-sm);
                font-weight: 400;
                line-height: var(--leading-none);
                padding: 0;
                margin: 0;
                background: var(--gray-100);
                max-width: calc('100% - 44px');
                border: none;
                text-indent: var(--space-2);
                height: 44px;

                &::placeholder {
                    font-family: var(--filter-font-family-body);
                    font-size: var(--text-base);
                    padding-left: 10px;
                    font-weight: 400;
                    line-height: var(--leading-none);
                    color: var(--filter-btn-color);
                    line-height: 44px;
                }
            }

            &[data-type="keyword"] button {
                width: 44px;
                height: 44px;
                padding: 0;
                color: var(--black);
                font-size: 1.3rem;
                position: absolute;
                right: 0;
                background-color: var(--gray-100);
            }

            &[data-type="toggle"] {
                background: var(--primary-color);
                padding: 0 15px;

                .toggle {

                    input:checked + .toggle-decorator {
                        background-color: var(--filter-accent-color);
                    }

                    input:checked + .toggle-decorator::after {
                        left: 50%;
                    }

                    .toggle-decorator {
                        position: relative;
                        display: block;
                        padding: 2px;
                        width: 4em;
                        height: calc(2em + 4px);
                        border-radius: var(--rounded-full);
                        background-color: var(--filter-accent-color);
                        transition: all .4s ease;
                        outline: 0;
                        cursor: pointer;
                        user-select: none;
        
                        &::after {
                            content: "";
                            position: relative;
                            left: 0;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            width: 50%;
                            height: 100%;
                            font-size: var(--text-xs);
                            border-radius: 50%;
                            box-shadow: var(--filter-toggle-shadow);
                            background-color: var(--filter-tertiary-color);
                            transition: all .2s ease;
                        }

                        &.has-label::after {
                            content: attr(data-label);
                        }
                    }
                }
            }

            &[data-type="checkbox"] {
                label .custom-checkbox i {
                    opacity: 0;
                    font-size: var(--text-xs);
                }

                input[type="checkbox"]:checked + label .custom-checkbox {
                    background-color: var(--white);
                    border: 3px solid var(--white);
                    color: var(--secondary-color-700);

                    i {
                        opacity: 1;
                    }
                }

                li {
                    position: relative;
                    display: flex;
                    align-items: baseline;
                    margin-left: var(--space-6);
                    margin-bottom: var(--space-4);
                    cursor: pointer;
                    color: var(--white);
                }

                .custom-checkbox {
                    position: absolute;
                    top: 0;
                    left: -25px;
                    display: flex;
                    justify-content: center;
                    width: 14px;
                    height: 14px;
                    align-items: center;
                    border: 1px solid var(--white);
                    color: var(--white);
                    border-radius: var(--rounded-sm);
                    font-size: var(--text-xs);

                    .expander {
                        cursor: pointer;
                        margin: 0 0 15px 0;
                    }
                }
            }

            &[data-type="select"] select {
                width: 100%;
                padding: 5px;
            }

            fieldset.channel {
                display: none;
            }

            /*&[data-type="daterange"], daterange block has to be visible on event redefine search.*/ 
            &[data-type="select"] {
                display: none;
            }
        }

        .sort {
            background: var(--white);

            .settings-label {
                color: var(--text-color);
            }

            li {
                display: inline-block;
                margin-right: var(--space-3);
            }
        }

        .sort .settings-label,
        .filter .filterLabel,
        .form-label {
            display: inline-block;
            font-family: var(--filter-font-family-display);
            font-size: var(--text-base);
            font-weight: 600;
            line-height: var(--leading-tight);
            color: white;
            margin: 0;
            margin-bottom: var(--space-2);
            padding: 0;
            background-color: transparent;
        }

        .filter .filterLabel {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: var(--space-3);

            i {
                font-size: var(--text-sm);
            }
        }

        [data-type="toggle"]:has(input:checked) ~ [data-type="daterange"],
        [data-type="toggle"]:has(input:checked) ~ [data-type="select"] {
            display: block;
        }
    }

    .settings ul,
    .filterPane ul {
        list-style: none;
        margin: 0;
        line-height: 1;
    }

    .filter-mobile {
        a, 
        a:not([href]):not([class]) {
            font-family: var(--font-body);
            color: var(--white);
            background: var(--light-blue);
            padding: 17px 23px;
            font-size: 12px;
            font-weight: normal;
            display: flex;
            flex-wrap: wrap;
            line-height: normal;
            width: 100%;
            text-transform: uppercase;
            display: flex;
            justify-content: center;
        }

        a i {
            color: var(--white);
            margin: 0 5px 0 0;;
        }
    }

    .rss-link {
        text-align: right;
        margin: 0 auto;

        a {
            color: var(--white);
        }
    }

    .filterPane .highlight a,
    .datepicker-cont .quicklinks button.highlight,
    .filterPane .filter[data-type="checkbox"] .expander {
        color: var(--white);

        .fa-chevron-up , .fa-chevron-down {
            font-size: var(--text-sm);
            margin-left: 10px;
        }
    }

    .sort,
    .filterPane .filter,
    .datepicker-cont .quicklinks button,
    .filterPane .filter[data-type="checkbox"] .expander {
        font-family: var(--filter-font-family-body);
        font-size: var(--text-base);
        font-weight: 400;
        line-height: var(--leading-none);
        padding: 0;
        background-color: inherit;
        border: none;
    }

    .rss-link,
    .filterPane .sort,
    .filterPane .filter,
    .filterPane .quicklinks {
        margin-bottom: var(--space-8);
    }

    .mobileHeader button,
    .layoutjs .filterPane .filter[data-type="keyword"] button {
        font-family: var(--filter-font-family-body);
        font-size: var(--text-base);
        font-weight: 400;
        line-height: var(--leading-none);
        color: var(--black);
        margin: 0;
        padding: var(--space-3) var(--space-5);
        background-color: var(--filter-accent-color);
        border: none;
    }
}

@media screen and (min-width: 64em) {
    .layoutjs {
        .filterPane {
            position: sticky;
            display: block;
            top: 0;
            width: 283px;
            min-width: 283px;
            padding: var(--space-5) var(--space-4);
            max-height: 100vh;
            overflow: auto;
            background-color: var(--refine-bg-color);

            .btn-bg button {
                display: flex;
                justify-content: space-between;
                align-items: center;
                font-family: var(--filter-font-family-body);
                font-size: var(--text-base);
                font-weight: 400;
                line-height: var(--leading-none);
                margin: 0;
                background-color: transparent;
                border: 2px solid var(--white);
                color: var(--white);
                padding: var(--space-4) 21px var(--space-4) 23px;

                i {
                    font-size: 12px;
                    margin-top: 3px;
                    margin-left: var(--space-10);
                }
            }
        }

        .settings {
            justify-content: flex-start;
            align-items: start;
            background: var(--white);
            padding: 0 0 var(--space-5) 0;
            margin-left: var(--space-5);

            > div {
                position: relative;
                display: flex;
                flex-wrap: wrap;
                text-align: center;
                justify-content: center;
                align-items: baseline;

                &.sort li {
                    &:last-child {
                        display: none;
                    }

                    .highlight {
                        a {
                            background: var(--refine-bg-color);
                            color: var(--white);
                            border-bottom: none;
                        }
    
                        &:hover a {
                            color: var(--white);
                            background: var(--refine-bg-color);
                            cursor: pointer;
                        }
                    }
                }

                &:not(.pager-section) {
                    & ul {
                        & li {
                            margin-right: var(--space-6);

                            & a {
                                display: flex;
                                flex-direction: row;
                                align-items: center;
                                color: var(--text-color) !important;
                                font-size: var(--text-base);
                                
                                i {
                                    display: flex;
                                    align-items: center;
                                    justify-content: center;
                                    height: 50px;
                                    width: 50px;
                                    background: url('../svg/index_icon_bg.svg') no-repeat center center;
                                    background-size: contain;
                                    color: var(--text-color);
                                    margin-right: 8px;
                                    font-size: var(--text-xl);
                                }
                            }

                            &.highlight, &:hover {  
                                a {
                                    color: var(--text-color) !important;
                                    padding: 0;
                                    background: transparent !important;

                                    i {
                                        background: url('../svg/btn_1.svg') no-repeat center center;
                                        background-size: contain;

                                        &::before {
                                            color: var(--white);
                                            font-size: var(--text-xl);
                                            margin: 0;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }

            .settings-label,
            .settings div:not(.pager) ul li a,
            .settings div:not(.pager) .highlight a,
            .settings .map-btn {
                font-family: var(--font-body);
                font-weight: 400;
                line-height: 1;
                padding: 17px;
                margin-right: var(--space-2);
                text-transform: capitalize;
                border-bottom: none;
                font-size: var(--text-lg);
            }

            ul {
                display: flex;
                align-items: center;

                li {
                    display: flex;

                    &:last-child {
                        margin-right: 0;
                    }

                    a {
                        margin-right: var(--space-2);
                    }
                }
            }

            ul li a,
            .map-btn span {
                font-family: var(--font-body);
                color: var(--text-color);
                font-weight: 400;
                line-height: 1;
                padding: 15px;
                text-transform: capitalize;
                border-bottom: none;
                font-size: var(--text-lg);
                padding: 0;
            }

            .map-btn {
                > span {
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    font-size: var(--text-base);
                    color: var(--text-color);

                    > i {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        height: 50px;
                        width: 50px;
                        background: url('../svg/index_icon_bg.svg') no-repeat center center;
                        background-size: contain;
                        color: var(--text-color);
                        margin-right: 8px;
                        font-size: var(--text-xl);
                    }
                }

                &:hover {
                    > span {
                        color: var(--text-color);

                        > i {
                            background: url('../svg/btn_1.svg') no-repeat center center;
                            background-size: contain;
                            color: var(--white);
                        }
                    }
                }
            }

            .settings-label {
                margin-right: 0;
                height: auto;
            }

            .view .settings-label, 
            .sort .settings-label {
                padding-left: 0;
                position: relative;
                font-size: var(--text-base);
                color: var(--text-color);
                font-weight: bold;
                margin-right: 15px;
            }

            .map-btn {
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 0;
                font-family: var(--font-header);
                background: transparent;
                margin-right: 35px;

                &:hover {
                    cursor: pointer;
                }
            }

            .highlight {
                border-bottom: none;
            }
        }
    }
}

/* Pager */
.layoutjs {
    .pager-section {
        margin: 0 auto;
        width: 100%;

        ul li:hover a {
            background: transparent;
        }
    }

    .pager {
        margin: var(--space-6) auto 11px;
        height: auto;
        width: 100%;

        ul {
            display: flex;
            justify-content: center;
            align-items: center;
            list-style: none;
            margin: 0;

            li {
                font-family: var(--content-font-family-body);
                font-size: var(--text-base);
                font-weight: 400;
                line-height: var(--leading-none);
                color: var(--content-primary-color);
                margin: 0 var(--space-2);

                a {
                    display: inline;
                    padding: 0;

                    i {
                        &::before {
                            font-size: 20px;
                            color: var(--content-primary-color);

                            &:hover {
                                color: var(--primary-color);
                            }
                        }
                    }
                }

                &:hover a {
                    background: transparent;
                }

                &:not(.highlight, .info) {
                    display: none;
                }

                &:not(.highlight) .teal-arrow {
                    display: none;
                }

                &.highlight {
                    cursor: pointer;

                    .gray-arrow {
                        display: none;
                    }
                }

                img {
                    width: 15px;
                    padding: 0;
                    box-sizing: content-box;
                    margin: 0 auto;

                    &.white-arrow {
                        display: none;
                    }

                    &.teal-arrow {
                        background: var(--primary-color-700);
                        border-radius: var(--rounded-circle);
                    }
                }
            }
        }
    }
}

@media (hover: hover) {
    .layoutjs .pager-section div.pager ul li:hover a {
        background-color: transparent;
    }
}

@media screen and (min-width: 64em) {
    .layoutjs {
        .pager-section {
            margin: 0 0 0 auto;
            width: auto;

            ul {
                li.highlight {
                    position: relative;
                    width: 50px;
                    height: 50px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    flex-shrink: 0;
                    padding: 0;
                    margin: 0 var(--space-3);
                    background-color: var(--arrow-bg-color);
                    border: .0938rem solid #DADADE;
                    border-radius: var(--rounded-circle);
                    box-shadow: 0px 1px 3px 0px #0000001A;
                    font-size: var(--text-xl);
                    color: var(--arrow-color);
                    pointer-events: all;
                    transition: color var(--transition-appendix),
                    background-color var(--transition-appendix);

                    &:hover {
                        i {
                            &::before {
                                color: var(--sw-key-color);
                            }
                        }
                    }
                }
            }
        }

        div.pager {
            margin: 0;
            width: auto;

            ul {
                justify-content: flex-end;
                padding: 0;

                li a,
                .highlight a {
                    border: none;
                    padding: 0;
                    margin: 0;
                }
            }
        }

        .layout .pager {
            margin: var(--space-10) auto var(--space-5);
        }
    }
}

/* Date picker */
.layoutjs {
    .datepicker-cont {
        max-width: 300px;

        .datepicker-trigger {
            color: var(--filter-tertiary-color);
            margin-bottom: var(--space-4);
            padding: var(--space-3) var(--space-5);
            text-align: center;

            > span {
                font-family: var(--filter-font-family-body);
                font-size: var(--text-base);
                font-weight: 400;
                line-height: var(--leading-none);
            }
        }

        .quicklinks {
            display: flex;
            justify-content: space-between;

            button {
                margin: 0;
                padding: 5px var(--space-2);
                color: var(--white);
                transition: all 0.3s;

                &.highlight,
                &:hover {
                    color: var(--black);
                    background: var(--white);
                }
            }
        }
    }

    .asd__wrapper {
        max-width: 300px;

        .asd__inner-wrapper {
            margin-left: -300px !important;
        }

        .asd__month {
            max-width: 300px;
        }

        .asd__month-name {
            font-family: var(--filter-font-family-body);
            font-size: var(--text-lg);
            font-weight: 700;
            line-height: var(--leading-none);
            color: var(--white);
        }

        .asd__day-title {
            font-family: var(--filter-font-family-body);
            font-size: var(--text-sm);
            font-weight: 400;
            line-height: var(--leading-normal);
            color: var(--white);
            width: 38px;
        }

        .asd__day-button {
            font-family: var(--filter-font-family-body);
            font-size: var(--text-sm);
            font-weight: 400;
            line-height: var(--leading-normal);
        }

        /*.asd__day.asd__day--enabled.asd__day--selected {
            color: var(--black) !important;
            border: 1px double var(--black) !important;
        } */       
    }

    .asd__days-legend {
        max-width: 243px;
    }
}

@media screen and (min-width: 64em) {
    .layoutjs .asd__wrapper,
    .layoutjs .asd__wrapper .asd__month {
        max-width: 243px;
    }

    .layoutjs .asd__wrapper .asd__inner-wrapper {
        margin-left: -243px !important;
    }
}

/* mobile header */
.layoutjs .mobileHeader {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-5);

    .mobileTitle {
        flex: 1;
        text-align: center;
        font-family: var(--filter-font-family-body);
        font-size: var(--text-lg);
        font-weight: 700;
        line-height: var(--leading-none);
        color: var(--white);
    }

    button.applyButton {
        color: var(--text-color);
        background: var(--white);
    }

    button.resetButton {
        background-color: var(--white);
    }
}

/* Two-Stage Filter Styles */
.layoutjs [data-type="twostage"] {
    .stage-one {
        display: flex;
        justify-content: space-between;
        margin: 0;
        margin-bottom: var(--space-1);
        padding: var(--space-2);
        width: 100%;
        text-align: left;
        color: inherit;
        background: transparent;
        color: var(--white);

        &[disabled] {
            pointer-events: none;
            cursor: default;
            opacity: 0.7;
        }

        &.locked {
            pointer-events: none;
        }

        i {
            margin-left: var(--space-3);
        }

        + .filter {
            padding-left: 6px;
        }
    }
}

/* Map */
.layoutjs .layout-container {
    &.map-open {
        .layout {
            flex: 3
        }

        .map {
            position: sticky; /* Avoid any ancestor element with overflow property except "overflow: visible" */
            flex: 2;
            top: 0;
            height: 100vh;
        }
    }

    .content-map-wrapper {
        display: flex;
    }

    .map {
        width: 100%;
        margin: 0 0 var(--space-5);

        .gMapHolder {
            height: auto;
            min-height: 500px;
        }

        .panSearch {
            position: absolute;
            top: var(--space-24);
            padding: var(--space-4);
            border-radius: var(--rounded-full);
            box-shadow: var(--shadow);
            z-index: 9;
            font-family: var(--filter-font-family-body);
            font-size: var(--text-base);
            font-weight: 400;
            line-height: var(--leading-none);
            color: var(--content-tertiary-color);
            margin: 0;
            background-color: var(--primary-color);
            border: none;
            left: 50%;
            transform: translateX(-50%);
        }
    }
}

@media screen and (min-width: 64em) {
    .layoutjs .layout-container .map {
        margin: 0;

        .gMapHolder {
            height: calc(100vh - 120px);
        }
    }

    body.headerPinned .layoutjs .layout-container .map .gMapHolder {
        margin: 120px 0 0;
    }
}

/* List items */
.layoutjs .content {
    padding: var(--space-5);

    &.convention-content {
        padding: 0;
    }

    .fa-spinner {
        position: absolute;
        top: 50px; /* match bottom margin of .layout container to leave room */
        left: calc(50% - 30px);
    }

    .no-results {
        margin-top: var(--space-20);
        text-align: center;
    }

    .item {
        position: relative;
        display: flex;
        align-items: stretch;
        flex-wrap: wrap;
        margin-bottom: var(--space-5);
        box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.10);

        &:last-of-type {
            margin-bottom: 0;
        }

        .image {
            position: relative;
            width: 100%;

            a {
                position: relative;
                display: block;
                height: 100%;
            }

            .thumb {
                display: block;
                width: 100%;
                height: auto;
                object-fit: cover;
            }

            .mini-date-container {
                position: absolute;
                top: 0;
                right: 0;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                background-color: var(--content-accent-color);
                color: var(--content-tertiary-color);
                padding: var(--space-1) var(--space-4);
                pointer-events: none;
                padding: 15px 27px 30px;
                border-radius: 0 0 45px 45px;

                .month {
                    font-family: var(--filter-font-family-body);
                    font-size: var(--text-base);
                    font-weight: 400;
                    line-height: var(--leading-none);
                    text-transform: uppercase;
                    transform: rotate(-90deg);
                }

                .day {
                    font-family: var(--filter-font-family-body);
                    font-size: var(--text-4xl);
                    font-weight: 700;
                    line-height: var(--leading-none);
                }
            }

            .featured {
                position: absolute;
                bottom: 0;
                left: 0;
                display: flex;
                align-items: center;
                font-family: var(--filter-font-family-body);
                font-size: var(--text-sm);
                font-weight: 600;
                line-height: var(--leading-none);
                letter-spacing: 2px;
                text-transform: uppercase;
                width: 100%;
                background: rgba(0, 0, 0, 0.65);
                color: var(--content-tertiary-color);
                padding: var(--space-1) var(--space-2);
                height: 32px;
            }
        }

        .date-sub-container {
            color: var(--text-color-alt);
            margin: 0 0 10px 0;
            font-family: var(--font-reg);
        }

        .date-container span {
            font-size: var(--text-lg);
            font-family: var(--filter-font-family-body);
        }

        .tripbuilder {
            position: absolute;
            top: 13px;
            right: 12px;
            width: auto;
            height: auto;
            display: block;
            padding: 7px 7px 6px 5px;
            margin: 0;
            font-size: var(--space-6);
            line-height: 1;
            background: var(--white);
            border: none;
            border-radius: var(--rounded-circle);

            a {
                display: flex;
                align-items: center;
                font-size: var(--text-xl);
                position: relative;
                text-decoration: none;
                cursor: pointer;
            }

            span {
                color: var(--text-color);
                font-size: var(--text-lg);
                font-family: var(--font-body);
                padding: 0 0 0 10px;
            }

            .addTrip:before {
                display: block;
                font-family: var(--fa-6-family, 'Font Awesome 5 Free');
                content: '\f004';
                color: var(--sw-key-color);
                font-weight: 400;
                margin: 2px 0 0 2px;
            }

            .removeTrip:before {
                display: block;
                font-family: var(--fa-6-family, 'Font Awesome 5 Free');
                content: '\f004';
                color: var(--sw-key-color);
                font-weight: 900;
                margin: 2px 0 0 2px;
            }
        }

        .top-info {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 12px;

            
            .locations {
                font-size: var(--text-sm);
                font-family: var(--font-reg);
                color: #333033;

                a {
                    color: #333033;
                }
            }
            

            .top-info-upper {
                flex: 1;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
            }
        }

        &[data-type="offers"] .top-info {
            gap: 0;
        }

        .info {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex: 1;
            padding: var(--space-4) var(--space-4) var(--space-5) var(--space-4);

            h4,
            h4 a {
                font-family: var(--font-bold);
                font-size: 1.375rem;
                line-height: normal;
                color: var(--text-color-alt);
                margin-bottom: var(--space-2);
                -webkit-hyphens: auto;
                word-break: break-word;
                hyphens: auto;
                margin: 0 0 var(--space-4);

                span {
                    display: inline-block;
                    font-family: var(--content-font-family-body);
                    font-size: var(--text-xl);
                    font-weight: 700;
                    line-height: var(--leading-normal);
                    color: var(--text-color-alt);
                    margin-bottom: var(--space-2);
                }
            }
        }

        .info-list {
            font-family: var(--content-font-family-body);
            font-size: var(--text-base);
            font-weight: 400;
            line-height: var(--leading-snug);
            list-style: none;
            margin: 0;
            margin-bottom:var(--space-4);
            color: var(--content-primary-color);
            display: flex;
            flex-direction: column;
            flex-grow: 1;

            > li {
                display: flex;
                gap: var(--space-1);
                align-items: flex-end;
                line-height: var(--leading-tight);
                font-size: var(--text-lg);
                margin: auto 0 0;

                &.description {
                    margin: 0 0 15px;
                }

                > i {
                    color: var(--text-color);
                    margin-right: 10px;
                    min-width: 18px;
                    width: 18px;
                }

                &.offer-description {
                    margin: 0 0 15px;
                    font-family: var(--font-reg);
                }

                &.offer-description p {
                    font-family: var(--font-reg);
                }

                &.offer-description strong {
                    font-family: var(--font-body);
                }

                &.locations {
                    text-transform: capitalize;
                    margin: var(--space-3) 0 var(--space-3) 0;
                    > div {
                        display: flex;
                        gap: var(--space-2);
                
                        a {
                            color: var(--text-color);
                        }
                    }
                }

                &.date-container {
                    margin: var(--space-5) 0 0;
                }

                &.booking-dates {
                    display: none;

                    dl {
                        display: flex;
                        gap: var(--space-2);
                        display: grid;
                        grid-template-columns: repeat(2, auto);
                        grid-template-rows: repeat(2, auto);
                        justify-content: start;
                    }

                    dt {
                        font-weight: 700;
                    }

                    dd {
                        &.open ul {
                            height: auto;
                        }

                        ul {
                            height: calc(var(--leading-tight) * var(--text-base));
                            overflow: hidden;

                            li {
                                white-space: nowrap;
                            }
                            
                        }
                    }

                    button {
                        grid-column: 2;
                        padding: 0;
                        font-weight: 400;
                        text-align: left;
                        color: var(--primary-color-700);
                        background: transparent;
                        white-space: nowrap;
                    }
                }

                &.offers {
                    margin-bottom: var(--space-3);

                    > div {
                        width: 100%;
                    }

                    a {
                        display: block;
                        color: var(--primary-color);
                        transition: var(--transition-appendix);
                        font-weight: 600;
                        font-size: var(--text-base);
                        padding-left: var(--space-px);

                        &:hover {
                            color: var(--black);
                        }

                        i {
                            margin-right: 6px;
                        }
                    }
                }

                &.distance {
                    padding-left: var(--space-6);
                }
            }

            &.meetingfacility-list {
                max-width: 320px;

                li {
                    display: flex;
                    align-items: baseline;
                    justify-content: space-between;
                    gap: var(--space-5);
                    padding-left: var(--space-6);
                    color: var(--content-primary-color);
    
                    &:first-child {
                        display: block;
                        padding-left: 0;
                        color: inherit;
                    }
    
                    span {
                        font-weight: 700;
                    }
                }
            }
        }

        .description p {
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            word-break: break-word;
            font-family: var(--font-reg);
        }

        .offer-description div {
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            word-break: break-word;
        }

        .actionButtons {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: flex-start;
            width: 100%;
            gap: var(--space-px);

            .actionButton {
                font-size: var(--text-sm);
                height: 100%;
                align-items: center;
                justify-content: center;
                display: flex;
                color: var(--white);
                background: #BA1658;
                padding: 14px 20px 14px 25px;
                font-weight: 400;
                text-decoration: none;
                border-bottom: none;
                text-align: center;
                text-transform: uppercase;
                border-radius: 24px;
                letter-spacing: 0.1em;
                gap: var(--space-2);
                line-height: 1;

                i {
                    font-size: 11px;
                    font-weight: 400;
                }
            }

            &.events-list-btn {
                justify-content: flex-start;
            }
        }

        .qv-btn {
            color: var(--sw-text-color);
            transition: var(--transition-appendix);
            display: inline-flex;
            align-items: baseline;
            flex-direction: row-reverse;
            gap: var(--space-1);
            margin: 0 auto 0 0;
            padding: 0;
            background: transparent;
            font-size: var(--text-sm);
            font-family: var(--font-bold);
            text-transform: uppercase;
            letter-spacing: 0.1em;

            i {
                font-weight: 400;
            }
        }

        .bottom-actions {
            display: flex;
            gap: var(--space-3) var(--space-5);
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;

            .actions  {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: space-between;
                align-items: flex-end;
                width: 100%;

                div.bookingElements {
                    display: flex;
                    flex-direction: row;
                    flex-wrap: wrap;
                    justify-content: space-between;
                    align-items: flex-end;
                    width: 100%;
                    width: 48%;
                }
            }
        }

        &.convention-item {
            &:nth-child(even) .info {
                background-color: var(--content-bg-color);
            }

            .info {
                h4 {
                    font-family: var(--content-font-family-body);
                    font-size: var(--text-lg);
                    font-weight: 700;
                    line-height: var(--leading-normal);
                    color: var(--content-primary-color);
                    margin-bottom: 0;
                }

                .host {
                    font-family: var(--content-font-family-body);
                    font-size: var(--text-base);
                    font-weight: 700;
                    line-height: var(--leading-normal);
                    color: var(--content-accent-color);
                    margin-bottom: var(--space-2);
                }

                h6 {
                    display: block;
                    font-family: var(--content-font-family-body);
                    font-size: var(--text-base);
                    font-weight: 700;
                    line-height: var(--leading-normal);
                    color: var(--content-primary-color);
                }
            }

            .attendance {
                display: flex;
                justify-content: space-between;

                span {
                    margin-left: auto;
                }
            }
            
        }

        .guidePrice {
            margin-bottom: var(--space-4);
            align-self: flex-start;

            > div {
                display: flex;
                flex-wrap: wrap;
                justify-content: flex-start;
                align-items: flex-end;
                width: 100%;
            }

            .guidePriceMaxWrapper > div {
                display: flex;
                flex-wrap: wrap;
                justify-content: flex-start;
                align-items: flex-end;
                width: 100%;
            }

            .guidePriceMin {
                display: flex;
                flex-wrap: wrap;
                width: 100%;

                .price-tag {
                    display: flex;
                    flex-wrap: wrap;
                    width: 100%;
                }
            }

            .guidePriceMax {
                .max-price {
                    font-size: var(--text-2xl);
                    font-weight: 700;
                    line-height: 1.25;
                }

                .price-tag {
                    margin: 0 10px 0 0;
                }
            }
        }

        .pricing-info {
            width: 100%;
            margin-bottom: var(--space-4);

            .intro {
                display: none;
            }
        }

        .check-availability {
            display: flex;
            justify-content: center;
            font-size: var(--text-sm);
            text-transform: uppercase;
            padding: 11px var(--space-6);
            color: var(--white);
            font-weight: bold;
            background-color: var(--pink-90);
            border-radius: var(--rounded-full);
            width: 100%;
            max-width: 150px;
            margin-right: auto;
        }

        .price-amount {
            font-size: var(--text-2xl);
            font-weight: 700;
            line-height: var(--leading-none);
        }

        .currency-wrapper {
            display: flex;
        }

        .min-price {
            font-size: var(--text-2xl);
            font-weight: 700;
            line-height: var(--leading-none);
        }
    }

    .headers,
    .item.convention-item {
        position: relative;
        display: flex;
        align-items: stretch;
        flex-wrap: wrap;
        margin: 0 auto;
        max-width: var(--width-base);
        font-size: var(--text-base);
        box-shadow: none;
    }

    .item.convention-item .info {
        display: grid;
        gap: var(--space-5);
    }

    .headers {
        display: none;
        padding: var(--space-5);
        font-weight: 700;
    }

    &.grid .item {
        .info {
            padding: var(--space-3) var(--space-5);
            gap: var(--space-3);
        }

        .actions .actionButtons {
            flex-direction: row;
            justify-content: space-between;
            align-items: flex-start;
            gap: var(--space-px);
        }
    }

    &.list .item {
        .info {
            flex: 1 1 100%;

            .actionButtons {
                grid-column: 2;
            }
        }

        .tripbuilder {
            position: absolute;
            top: 13px;
            right: 12px;
            width: auto;
            height: auto;
            display: block;
            padding: 7px 7px 6px 5px;
            margin: 0;
            font-size: var(--space-6);
            line-height: 1;
            background: var(--white);
            border: none;
            border-radius: var(--rounded-circle);
    
            .addTrip:after {
                display: none;
            }
    
            span {
                font-size: var(--text-base);
                font-family: var(--font-family-body);
                position: relative;
                top: -3px;
                padding: 0 0 0 10px;
            }
        }

        .pricing-info {
            display: grid;
            gap: var(--space-8);

            .intro {
                display: block;
            }
        }

        .price-amount {
            display: block;
        }

        .bottom-actions {
            flex-direction: column;
            position: relative;

            .actions {
                display: flex;
                flex-direction: column;
                flex-wrap: wrap;
                justify-content: flex-end;
                align-items: flex-end;
                height: 100%;
            }
        }
    }
}

.availabilitySearch .layoutjs .content .item {
    .info-list > li.booking-dates,
    .bottom-actions .actions div.bookingElements {
        display: flex;
    }
    
    .guidePrice {
        display: none !important;
    }
}

@media (hover: hover) {
    .layoutjs .content .item .tripbuilder a:hover,
    .layoutjs .content .item .info h4:hover,
    .layoutjs .content .item .info h4 a:hover,
    .layoutjs .content .item .actions .qv-btn:hover,
    .layoutjs .content .item .actions .actionButton:hover {
        text-decoration: none; /*reboot.css override*/
    }
}

@media (min-width: 375px) {
    .layoutjs .content.list .item .info {
        flex: 1;
    }
}

@media screen and (min-width: 40em) {
    .layoutjs .content{
        .item {
            .bottom-actions {
                align-items: flex-end;
            }
        }

        &.list .item {
            .info {
                flex-direction: column;
            }

             .guidePrice {
                display: flex;
                flex-direction: column;
                flex-wrap: wrap;
                justify-content: space-between;
                align-items: flex-start;
                width: 100%;
                max-width: 260px;
            }

            .pricing-info {
                display: flex;
                flex-wrap: wrap;
                gap: var(--space-8);
                justify-content: flex-end;
                align-items: flex-start;
            }

            .price-amount {
                font-size: var(--text-5xl);
            }

            .bottom-actions {
                width: 100%;
                align-self: flex-end;
            }

            .min-price {
                font-size: var(--text-5xl);
            }
        }
    }
}

@media screen and (min-width: 64em) {
    .layoutjs {
        .settings {
            > div:not(.pager-section) {
                width: auto;
            }

            div.sort {
                span.settings-label {
                    padding-right: 0;
                    margin-right: 5px;
                }
            }
        }
    }

    .layoutjs .content {
        margin: var(--space-5) 0;
        padding: 0;

        .headers {
            position: sticky;
            z-index: 1;
            top: 0;
            display: grid;
            gap: var(--space-5);
            grid-template-columns: 4fr 3fr 3fr 2fr;
            background-color: var(--content-tertiary-color);
        }

        .item {
            .top-info {
                flex: 1;
            }

            .info {
                padding: var(--space-5) var(--space-8);
            }

            .actionButtons {
                align-items: flex-end;
            }

            .qv-btn,
            .actionButton {
                min-width: unset;
            }

            .bottom-actions .actions div.bookingElements {
                width: 100%;
            }
        }

        &.list {
            .item {
                .image {
                    flex: 0 1 30%;
                    width: auto;
                }

                .info {
                    display: grid;
                    grid-template-columns: 1fr minmax(0, 315px);
                    padding: var(--space-5);
                    column-gap: var(--space-8);

                    h4,
                    h4 a {
                        font-size: var(--text-4xl);
                        line-height: var(--leading-normal);
                    }
                }
            }
        }

        &.grid {
            display: flex;
            flex-flow: wrap row;
            justify-content: space-between;

            .item {
                flex: 0 0 30%;
                flex-direction: column;
                flex-wrap: nowrap;

                .info {
                    h4, h4 a {
                        font-size: 24px;
                    }    
                }
            }

            @supports (display: grid) {
                display: grid;
                grid-gap: var(--space-5);
                grid-template-columns: repeat(auto-fill, minmax(259px, 1fr));
        
                .item {
                    margin-bottom: 0;
                }
            }
        }

        &.convention-item .info {
            grid-template-columns: 4fr 3fr 3fr 2fr;

            h6 {
                display: none;
            }
        }
    }
}

@media (min-width: 90em) {
    .layoutjs .content.list .item .top-info {
        gap: var(--space-5);
    }

    .layoutjs .layout-container.map-open .layout .content.list .item .top-info {
        grid-template-columns: none;
    }
}

/* Click To Compare Styles */
.layoutjs {
    .compare {
        position: relative;
    
        .compare-toggle {
            position: relative;
            margin: 0;
            padding: 0;
            width: 32px;
            height: 32px;
            font-size: var(--text-xl);
            color: var(--content-enabled-color);
            border-radius: var(--rounded-lg);
            background-color: transparent;
            cursor: pointer;
    
            &.badged::after {
                content: attr(data-count);
                position: absolute;
                z-index: 1;
                top: 0;
                right: 0;
                padding: 3px var(--space-1);
                font-size: var(--text-sm);
                font-weight: 600;
                color: var(--content-alert-color);
                border-radius: var(--rounded-md);
                background-color: var(--content-alert-bg-color);
                transform: translateX(25%);
            }
    
            &[disabled] {
                color: var(--content-color);
                pointer-events: none;
            }
    
            &:hover,
            &:focus {
                background-color: var(--content-primary);
            }
    
            &.open {
                color: var(--content-enabled-color);
            }
        }
    }

    .compare-click-outside {
        position: fixed;
        z-index: 10;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .click-to-compare-menu {
        position: absolute;
        z-index: 10;
        top: calc(100% + var(--space-5));
        right: 0;
        margin-bottom: var(--space-8);
        padding-top: var(--space-4);
        width: var(--width-fullscreen);
        max-width: 288px;
        border-radius: var(--rounded-md);
        box-shadow: var(--shadow-md), var(--shadow-2xl);
        background-color: var(--content-tertiary-color);
        overflow: hidden;

        > * {
            display: block;
            margin: 0;
            padding: 0 var(--space-6);
        }

        .compare-title {
            margin-bottom: var(--space-3);
            font-size: var(--text-lg);
            font-weight: 600;
            line-height: 1.1;
            line-height: var(--leading-normal);
            text-align: left;
        }

        .compare-actions {
            display: flex;
            justify-content: flex-end;
            padding: var(--space-3);
            background-color: var(--content-tertiary-color);
        }

        .compare-clear {
            margin: 0;
            margin-right: var(--space-6);
            padding: 0;
            background: transparent;
            color: var(--content-tertiary-color);
            transition: none;
        }

        .compare-link {
            padding: var(--space-1) var(--space-4);
            line-height: var(--leading-normal);
            color: var(--compare-menu-cta-text-color);
            border-radius: var(--rounded-full);
            background-color: var(--compare-menu-cta-bg-color);
        }

        .compare-chits {
            margin-bottom: var(--space-3);
            padding: 0 var(--space-3);
        }

        .compare-chit {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            margin: 0;
            margin-bottom: var(--space-2);
            padding: var(--space-2) var(--space-3);
            width: 100%;
            font-size: var(--text-sm);
            text-align: left;
            color: var(--content-primary-color);
            border-radius: var(--rounded-md);
            border: none;
            background-color: transparent;

            &:hover {
                background-color: var(--content-tertiary-color-hover);
            }

            .fa {
                display: block;
                margin-left: var(--space-6);
                color: var(--content-secondary-color);
            }
        }
    }

    .click-to-compare {
        display: flex;
        align-items: baseline;
        margin: 0;
        padding: 0;
        text-align: left;
        color: inherit;
        font-weight: bold;
        text-transform: capitalize;
        background-color: transparent;

        .fas {
            margin-right: var(--space-1);
            color: var(--content-accent-color);
            width: 18px;
        }

        &.compare-remove .fas {
            color: var(--content-enabled-color);
        }
    }
}

@media (min-width: 40em) {
    .layoutjs .click-to-compare-menu {
        max-width: 420px;
    }
}

@media (hover: hover) {
    .layoutjs .click-to-compare-menu .compare-link:hover {
        background-color: var(--compare-menu-cta-bg-color-hover);
    }
}

/* Tripadvisor */
div.tripadvisor-snippet {
    .content.grid & {
        display: none;
    }

    h4 {
        font-size: var(--text-base) !important;
        margin: 0 !important;
    }

    .reviews-rating-line > a {
        display: inline-block;
    }

    .reviews-rating-line-text {
        display: inline-block;
        vertical-align: top;
    }
}

/* Download */
.layoutjs .download {
    display: flex;
    align-items: baseline;
    margin: 0;
    margin-left: auto;
    font-size: var(--text-base);
    padding: var(--space-1) var(--space-4);
    color: var(--content-tertiary-color);
    border-radius: var(--rounded-full);
    background-color: var(--content-accent-color);

    i {
        width: 18px;
    }

    .text {
        display: none;
        flex: 1;
    }
}

@media (min-width: 64em) {
    .layoutjs .download {
        i {
            margin-right: var(--space-1);

            .text {
                display: inline-block;
                white-space: nowrap;
            }
        }
    }
}

.infoWindow {
    .more-details {
        position: absolute;
        bottom: 0;
        left: 0;

        a {
            background: var(--primary-color-700);
            color: var(--white);
            padding: 10px;
            font-size: var(--text-xl);
            position: absolute;
            bottom: 0;
            left: 0;
            display: inline-flex;
        }
    }

    .listing-image {
        position: relative;

        img {
            height: auto;
            width: 100%;
            display: block
        }
    }

    h3 {
        pointer-events: none;
        font-weight: 400;
        font-size: 1.375rem;
    }

    .shared-detail & {
        .listing-image,
        .more-details {
            display: none;
        }
    }
}

.gm-style .gm-style-iw-c {
    max-width: 328px !important;
}

.gm-style .gm-style-iw-c > button img {
    width: 25px !important;
    height: 25px !important;
    margin: var(--space-2);
    position: relative;
    top: 5px;
    right: 16px;
}

.contentRender_name_plugins_common_events_index .layoutjs .filterPane .filter[data-type="checkbox"].regions span:not(.custom-checkbox){
    display: none;
}

.award-best-bark{
    width: 60px;
    height: 60px;
    background-image: url('../png/icon_bestbark.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}