/**
 * This file will be included in header in every page after reboot.
 * It should be used for content that relates
 * to your site as a whole, it should not be used for plugin-specific css.
 */

html {
    overflow-y: scroll;
}

body>.contentRender {
    min-height: 100%;
    height: 100%;
}

/* This ensures that the page always has a scrollbar to ensure that some headers load correctly without FOUC */

html, body {
    height: 100%;
    font-family: var(--font-body);
    color: var(--black);
}

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

/* Skip links */

.skip-link[href] {
    z-index: 5000000;
    display: block;
    margin: 0;
    padding: var(--space-8) var(--space-12);
    width: auto;
    height: auto;
    font-size: var(--text-3xl);
    line-height: var(--leading-tight);
    color: var(--gray-100);
    text-align: center;
    border: 4px dashed var(--gray-100);
    background: var(--gray-900);
    opacity: 0;
    clip: auto;
    pointer-events: none;
    transition: opacity 200ms cubic-bezier(0, 0, 0.3, 1);
}

.skip-link[href]:focus {
    opacity: 1;
    pointer-events: all;
}

.panel-page.no-header .slideshow-container {
    height: 136px;
}

@media (min-width: 40em) {
    .panel-page.no-header .slideshow-container{
        height: 226px;
    }
}

@media (min-width: 64em) {
    .panel-page.no-header .slideshow-container {
        height: 405px;
    }
}

.panel-page.no-header .slideshow-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Set General max-width of site content */

.contentRender_name_plugins_core_textbox, 
.contentRender_name_plugins_nav_sitemap, 
.contentRender_name_plugins_search_results, 
.contentRender_name_plugins_common_button, 
.contentRender_name_plugins_collections_template_custom_list, 
.contentRender_name_plugins_collections_template_custom_contacts, 
.contentRender_name_plugins_blog_leisure_blog_posts, 
.contentRender_name_plugins_blog_articles_posts, 
.contentRender_name_plugins_crm_formbuilder, 
.contentRender_name_plugins_events_submitevent, 
.contentRender_name_plugins_crm_rfp, 
.contentRender_name_plugins_crm_rsvp {
    width: 100%;
    padding: 0 var(--space-5);
    margin: 0 auto;
}

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

.contentRender_name_plugins_nav_sitemap {
    margin-bottom: var(--space-10);
}

@media (min-width: 64em) {
    .contentRender_name_plugins_core_textbox, 
    .contentRender_name_plugins_search_results, 
    .contentRender_name_plugins_nav_sitemap, 
    .contentRender_name_plugins_collections_template_custom_list, 
    .contentRender_name_plugins_collections_template_custom_contacts, 
    .contentRender_name_plugins_crm_formbuilder, 
    .contentRender_name_plugins_events_submitevent, 
    .contentRender_name_plugins_crm_rfp, 
    .contentRender_name_plugins_crm_rsvp {
        max-width: var(--width-base);
    }
    .contentRender_name_plugins_nav_sitemap {
        margin-bottom: var(--space-16);
        max-width: 800px;
    }
    .contentRender_name_plugins_nav_sitemap .sitemap>ul {
        column-count: 2;
    }
    .contentRender_name_plugins_core_textbox, 
    .contentRender_name_plugins_common_button, 
    .contentRender_name_plugins_common_jumplist_outer, 
    .contentRender_name_plugins_collections_template_custom_contacts {
        max-width: 800px;
    }
    
    .panel-container.full-width .contentRender_name_plugins_core_textbox,
    .panel-container.full-width .contentRender_name_plugins_common_button, 
    .panel-container.full-width .contentRender_name_plugins_common_jumplist_outer, 
    .panel-container.full-width .contentRender_name_plugins_collections_template_custom_contacts {
        max-width: 100%;
    }
}

/* Panels */

.panel-page {
    position: relative;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto auto 1fr auto;
    min-height: 100%;
}

.panel-navigation-share {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: var(--width-base);
    padding: 0 24px 0 var(--space-5);
    margin: 0 auto;
    margin-bottom: 1px;
}

@media (min-width: 64em) {
    .panel-navigation-share {
        margin-bottom: 33px;
    }
}

.panel-navigation-share .navigation-container {
    display: none;
}

.panel-navigation-share .share-container {
    margin-left: auto;
}

.panel-intro {
    max-width: var(--width-comfortable);
    margin: 0 auto;
    margin-bottom: var(--space-16);
    padding: 0 var(--space-5);
}

.panel-social {
    max-width: var(--width-base);
    margin: 0 auto;
    padding: 0 var(--space-5);
}

.panel-social .title-container {
    text-align: center;
}

.panel-three-column, .panel-two-column {
    max-width: 800px;
    padding: 0;
    margin: 0 auto;
    margin-bottom: var(--space-8);
}

.panel-three-column :is(.left-container, .center-container, .right-container), .panel-two-column :is(.left-container, .right-container) {
    padding: 0 var(--space-5);
}

:is(.panel-intro, .panel-social, .panel-three-column, .panel-two-column) .contentRender_name_plugins_core_textbox {
    padding: 0;
}

.sv-col>.contentRender>.sv-panel {
    margin-left: calc(-1 * var(--space-5));
    margin-right: calc(-1 * var(--space-5));
}

@media (min-width: 64em) {
    .panel-navigation-share .navigation-container {
        display: block;
    }
    .panel-three-column, .panel-two-column {
        display: flex;
    }
    .panel-two-column.sidebar-left .left-container {
        order: 1;
        flex-basis: 40%;
    }
    .panel-two-column.sidebar-left .right-container {
        order: 2;
        flex-basis: 60%;
    }
    .panel-two-column.sidebar-right .left-container {
        order: 1;
        flex-basis: 60%;
    }
    .panel-two-column.sidebar-right .right-container {
        order: 2;
        flex-basis: 40%;
    }
    .panel-two-column.even :is(.left-container, .right-container) {
        flex-basis: 50%;
    }
    .panel-three-column>* {
        flex-basis: calc(100% / 3);
    }
}

/* Booking widget */

#widget-container-1975 #jrs-widget-1975 {
    width: calc(100% - 41px);
    margin: 0 19px var(--space-5);
}

#widget-container-1975 .jrs-select-1975 option {
    color: var(--gray);
}

@media (min-width: 64em) {
    #widget-container-1975 #jrs-widget-1975 {
        max-width: 1159px;
        margin: 0 auto var(--space-12);
    }
}

#jrs-button-1975 {
    transition: all ease 0.4s;
}

@media (hover: hover) {
    #jrs-button-1975:hover {
        background: #ffffff26;
        color: #fff;
    }
}

.panel_custom_two_col_sidebar_left.layout-panel {
    display: flex;
    flex-direction: row-reverse;
}

.panel_custom_two_col_sidebar_left.layout-panel .main_container {
    flex: 0 0 75%;
    flex: 0 1 75%;
    padding: 0 15px 0px 50px;
}

.sidebar_container {
    flex: 0 1 25%;
    padding: 0 15px;
}

@media (max-width: 640px) {
    .panel_custom_two_col_sidebar_left.layout-panel {
        flex-direction: column;
    }
    .panel_custom_two_col_sidebar_left.layout-panel .main_container {
        padding-left: 15px;
    }
}

.title-panel.custom-panel {
    max-width: 995px;
    margin: 0 auto;
    padding: 0 var(--space-5);
}

.title-panel.custom-panel .title, .title-panel .sidebtn {
    margin: 0 auto;
    text-align: center;
    width: 100%;
    display: block;
    font-weight: 600;
    font-size: 22px;
    line-height: 25px;
    letter-spacing: 0.1em;
    color: var(--black);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.title-panel .sidebtn {
    margin-bottom: 20px;
    color: var(--blue);
    text-decoration: underline;
}

.title-panel .preview {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.title-panel h1 {
    color: var(--blue) !important;
    font-size: 28px;
    line-height: 28px;
    margin: 0 0 30px;
    font-weight: 700;
    text-align: center;
}

.title-panel h5 {
    font-weight: 500;
    color: var(--blue);
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 5px;
}

@media (min-width: 40em) {
    .title-panel .contentRender_name_plugins_core_textbox {
        max-width: 995px;
        padding: 0;
        text-align: left;
    }
    .title-panel .preview {
        justify-content: flex-start;
    }
    .title-panel h1 {
        font-size: 55px;
        text-align: left;
    }
    .title-panel h5 {
        font-size: 32px;
        line-height: 34px;
    }
}

*:not(.contentRender_name_plugins_collections_template_custom_core_slider_4_across) + .contentRender_name_plugins_common_booking > div > div {
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
}