/* tabs */
.custom_content_wrapper.layout_tabs .tab-content
{
    display: none;
}
.custom_content_wrapper.layout_tabs .tab-wrapper-wide .tab-content.active
{
    display: flex;
}
/* end tabs */

/* call to action */
.custom_content_wrapper.layout_cta .cta-background
{
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    pointer-events: none;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.custom_content_wrapper.layout_cta .cta-background::after
{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    pointer-events: none;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,.2);
}
.custom_content_wrapper.layout_cta .cta_content_row
{
    /*min-height: 385px;*/
    align-content: center;
}
.custom_content_wrapper.layout_cta.cta-image-full > .row
{
    padding: 0;
    max-width: 100%;
}
.custom_content_wrapper.layout_cta.cta-image-right .cta-background
{
    width: 50%;
    right: 0;
    left: auto;
}
.custom_content_wrapper.layout_cta.cta-image-right .cta-content
{
    flex-basis: 50%;
}
.custom_content_wrapper.layout_cta.cta-image-left .cta-background
{
    width:50%;
    left: 0;
    right: auto;
}
.custom_content_wrapper.layout_cta.cta-image-left .row
{
    justify-content: flex-end;
}
.custom_content_wrapper.layout_cta.cta-image-left .cta-content
{
    flex-basis: 50%;
}
/* end call to action */

/* concertina */
/*.concertina-item:first-child
{
    border-top: 1px solid #707070;
}
.concertina-item
{
    border-bottom: 1px solid #707070;
}*/

.concertina-header
{
    padding: 31px 0 33px 0;
    cursor: pointer;
    position: relative;
}
.concertina-header::before
{
    content: "";
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
    user-select: none;
    width: 15px;
    height: 15px;
    transform: rotate(-45deg);
    transition: transform .15s ease;
    left: 10px;
    display: block;
    position: absolute;
}
.open .concertina-header::before
{
    transform: rotate(45deg) translateY(-5px);
}
.concertina-header h4
{
    margin: 0;
    font-size: 1.6em;
}

.concertina-content
{
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all .2s ease;
}
.concertina-content-inner
{
    padding: 40px 80px;
}
.open .concertina-content
{
    max-height: none;
    opacity: 1;
}
@media all and (max-width:768px)
{
    .concertina-content
    {
        padding: 20px;
    }
}
/* end concertina */



/* gallery row */
.layout_gallery_slider
{
    padding-top:  30px;
    padding-bottom:  20px;
}
.layout_gallery_slider .ld-fadey-slider
{
    box-shadow:  0 0 30px rgb(0 0 0 / 16%);
    height:  417px;
}
.layout_gallery_slider .gallery-slider .ld-fadey-slider+.ld-fadey-slider-nav-layer
{
    position: absolute;
    bottom: 0;
    right:  0;
    left:  0;
}
.gallery-slider .ld-fadey-slider-tabs
{
    text-align: left;
    margin: 0;
    bottom: 5px;
    left: 60px;
    right: 60px;
    width: auto;
    max-width: calc(100% - 120px);
}


/* nav menu overlay */
.widget_nav_menu.overlay-menu .overlay
{
    position: fixed;
    width: 100vw;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s ease, visibility .2s ease;
    background: rgba(29,42,48,.6);
    pointer-events: none;
    z-index: 998;
    top:0;
    left:0;
    right:0;
    bottom:0;
}
.widget_nav_menu.overlay-menu .menu-popup
{
    background: #1D2A30;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    height: 100vh;
    width: 80vw;
    max-height: 726px;
    max-width: 1172px;
    visibility: hidden;
    z-index: 9999;
    opacity: 0;
    transition: opacity .2s ease, visibility .2s ease;
}
.widget_nav_menu.overlay-menu.open .menu-popup, .widget_nav_menu.overlay-menu.open .overlay
{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.widget_nav_menu.overlay-menu .menu-btn {
    position:relative;
    user-select: none;
}
.widget_nav_menu.overlay-menu .menu-close
{
    cursor: pointer;
    user-select: none;
}
.widget_nav_menu.overlay-menu .row
{
    align-content: center;
    align-items: stretch;
}
/* end nav menu overlay */
