::selection {
    color:#ffffff;
    background:#009aff;
}

html {
    background-color: #46348a;
    background-image:
        linear-gradient(-56deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 30%),
        linear-gradient(133deg, rgba(0,0,0,0.3) 20%, rgba(0,0,0,0) 50%),
        linear-gradient(to top, #46348A 0%, #5842AE 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body {
    position: relative;
    min-height: 100vh;
    height: auto;
    color: #ebebeb;
    font-size: 18px;
    font-family: "Verlag A", "Verlag B", sans-serif;
	font-weight: 400;
    font-style: normal;
    line-height: 26px;
    background-color: transparent;
}

body.menu-open {
    overflow-y: hidden;
}

@media (min-width: 480px) {
    body.menu-open {
        overflow-y: auto;
    }
}

@media (min-width: 64em) {
    body.menu-open {
        overflow: hidden;
    }
}

body::before {
    content: "";
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    padding-bottom: 66%;
    width: 69vw;
    height: 0;
    background-image: url(/includes/public/assets/shared/geometric-structure-top.svg);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}

body > .contentRender {
    position: relative;
    z-index: 2;
    height: 100%;
}

body .mfp-close:hover, body .mfp-arrow:hover, body .mfp-arrow:focus {
	background-color: transparent; /* foundation compatibility with magnific popup */
}

p { line-height: 1.4; }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Verlag A", "Verlag B", sans-serif;
	font-weight: 800;
    font-style: normal;
}

button {
    font-family: "Verlag A", "Verlag B", sans-serif;
}

a:hover, a:focus {
    color: inherit;
}

/* Skip links */
.skip-link[href] {
    z-index: 5000000;
    display: block;
    margin: 0;
    padding: 2rem 3rem;
    width: auto;
    height: auto;
    font-size: 1.75em;
    line-height: 1.1;
    color: #fff;
    text-align: center;
    border: 4px dashed #fff;
    background: #212121;
    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;
}



.root_panel > .footer_container,
.root_panel > .header_container {
    position: relative;
    z-index: 3;
}

.panel_page {
    position: relative;
    padding-bottom: 102px;
    min-height: 100vh;
}

@media (min-width: 40em) {
    .panel_page {
        padding-bottom: 72px;
    }   
}

.shared-play-button {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: inline-block;
    margin: 0;
    padding: 6px 24px;
    padding-right: 46px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    border-radius: 2px;
    border: 1px solid #d8d8d8;
    background-color: transparent;
    pointer-events: none;
}

.img-cont:hover .shared-play-button,
.img-cont .shared-play-button:active,
.img-cont .shared-play-button:focus,
.img-cont .shared-play-button:hover {
    background-color: #46348A;
}

.shared-play-button i {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
}

.panel_custom_header {
    background-color: #fff;
}

.panel_custom_header.add-padding {
    padding: 20px 0;
}

.panel_custom_header > .inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    width: 100%;
    padding: 0 16px;
    max-width: 1130px;
}

.panel_custom_header .controls {
    display: flex;
    align-items: center;
    margin-right: -16px;
}

.search-headerbox .search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 14px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #46348A;
    text-transform: uppercase;
    border-left: 1px solid #d8d8d8;
    border-right: 1px solid #d8d8d8;
    background: transparent;
    cursor: pointer;
}

.search-headerbox .search-toggle span {
    display: none;
}

@media (min-width: 40em) {
    .search-headerbox .search-toggle {
        border: none;
    }

    .search-headerbox .search-toggle span {
        display: block;
    }
}

.search-headerbox .search-form-container:not(.open) {
    display: none;
}

.search-headerbox .search-form-container {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

@media (min-width: 40em) {
    .search-headerbox .search-form-container {
        top: 50%;
        right: 16px;
        width: calc(100% - 240px);
        max-width: 822px;
        height: calc(100% - 20px);
        border-radius: 2px;
        background-color: #edeef5;
        overflow: hidden;
        transform: translateY(-50%);
    }
}

.search-headerbox form {
    position: relative;
    height: 100%;
}

.search-headerbox .search-input {
    position: relative;
    display: block;
    margin: 0;
    padding: 0 70px;
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-weight: 400;
    color: #797979;
    border: 10px solid transparent;
    background-color: transparent;
    box-shadow: none;
}

@media (min-width: 40em) {
    .search-headerbox .search-input {
        border: 5px solid transparent;
    }
}

.search-headerbox .search-input:focus {
    border-color: transparent;
    background-color: transparent;
}

.search-headerbox .search-submit {
    position: absolute;
    top: 50%;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 50px;
    height: 50px;
    border-radius: 2px;
    background-color: #46348A;
    transform: translateY(-50%);
}

.search-headerbox .search-close {
    position: absolute;
    top: 50%;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 50px;
    height: 50px;
    border: none;
    background: transparent;
    transform: translateY(-50%);
}

@media (min-width: 40em) {
    .search-headerbox .search-submit {
        width: 40px;
        height: 40px;
    }
    
    .search-headerbox .search-close {
        width: 40px;
        height: 40px;
    }
}

body:not(.crm-calendar-popup) .panel_page > .slideshow_container {
    min-height: 112px;
}

.panel_custom_footer {
    bottom: 0px;
    height: auto;
    width: 100%;
    background-color: #000;
    padding: 30px 16px;
    color: #fff;
}

.panel_custom_footer.alt {
    padding: 16px 4px;
    background-color: #32373C;
}

.panel_custom_footer .footer_inner_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    width: 100%;
    max-width: 1130px;
}

@media (max-width: 40em) {
    .panel_custom_footer .footer_inner_wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .panel_custom_footer.alt .footer_inner_wrapper {
        text-align: left;
        align-items: flex-start;
    }

    .panel_custom_footer .footer_inner_wrapper .footer_right_col {
        order: 1;
        margin-bottom: 16px;
    }

    .panel_custom_footer.alt .footer_inner_wrapper .footer_right_col {
        text-align: left;
    }

    .panel_custom_footer .footer_inner_wrapper .footer_left_col {
        order: 2;
    }
}

.panel_custom_footer .footer_inner_wrapper > * { padding: 0 16px; }

.panel_custom_footer .footer_inner_wrapper .footer_left_col {
    display: flex;
    flex-flow: column wrap;
    align-items: flex-start;
    justify-content: center;
}

.panel_custom_footer .footer_inner_wrapper .footer_right_col {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.panel_custom_footer .footer_right_col .logo + .logo {
    margin-left: 30px;
}

.footer-content {
    padding: 35px 0;
    background-color: #000;
    color: #fff;
}

.footer-content > .inner {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1140px;
}

.footer-content > .inner > * {
    margin-bottom: 40px;
}

.footer-content > .inner > *:last-child {
    margin-bottom: 0;
}

@media (min-width: 40em) {
    .footer-content {
        background-image: url(/includes/public/assets/shared/geometric-structure-top.png);
        background-position: top right;
        background-size: auto 319px;
        background-repeat: no-repeat;
    }

    .footer-content > .inner {
        display: flex;
    }

    .footer-content > .inner > * {
        flex: 1;
        margin: 0;
        padding: 0 20px;
    }

    @supports (display: grid) {
        .footer-content > .inner {
            display: grid;
            grid-template-columns: 177px 3fr 2fr 1fr;
            gap: 60px;
        }

        .footer-content > .inner > * {
            padding: 0;
        }
    }
}

@media (min-width: 64em) {
    @supports (display: grid) {
        .footer-content > .inner {
            gap: 100px;
        }
    }
}

.footer-content .logo {
    display: block;
    width: 100%;
}

.footer-content .nav-list a {
    display: block;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 800;
    color: #fff;
}

.footer-content .tertiary-container .nav-list a {
    display: block;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 400;
    color: #fff;
}

/* Mobile Bottom Fixed Container */
.panel_custom_footer .mobile-fixed {
    position: fixed;
    bottom: 0px;
    width: 100%;
    z-index: 9999;
}

/* DTN Mobile Footer Banner */
.panel_custom_footer.hasMobileAd {
    height: 150px;
}

.panel_custom_footer.hasMobileAd .mobileAd {
    display: block;
}

.panel_custom_footer .mobileAd {
    display: none; 
    width: 100%;
    height: 50px;
}

.panel_custom_footer .mobileAd #dtnContainer {
    padding: 0px;
    position: relative;
    margin: 0 auto;
    width: 320px;
    display: block;
}

.panel_custom_footer .mobileAd .banner-close {
    position: absolute;
    top: -18px;
    cursor: pointer;
    right: 0px;
    padding: 0px 3px;
    opacity: .75;
    color: white;
    background: #111;
    font-size: 12px;
}

.panel_custom_footer .mobileAd .fa {
    color: white;
}

.panel_custom_footer .footer_nav {
    width: 100%;
}

.panel_custom_footer .footer_nav .navFooter {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    margin: 0;
    font-size: 14px;
}

.panel_custom_footer.alt .footer_nav .navFooter {
    display: block;
}

@media (min-width: 40em) {
    .panel_custom_footer .footer_nav .navFooter {
        display: flex;
        justify-content: flex-start;
        margin-bottom: 16px;
    }   
}

.panel_custom_footer .footer_nav .navFooter > li {
    list-style: none;
    padding: 0 1rem 0 0;
}

.panel_custom_footer .footer_nav .navFooter > li a {
    color: #fff;
    letter-spacing: 1px;
}

.panel_custom_footer .copyright span {
    display: block;
    font-size: 11px;
    line-height: 1.6;
}

/* shared back button used in event/listing/offer/blog  */
.shared-back-button{
    display: none;
}

.panel-two-col {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 750px;
}

.panel-two-col > * {
    padding: 0 16px;
    width: 100%;
}

@media (min-width: 40em) {
    .panel-two-col.sidebarEven > * {
        flex: 1;
        max-width: 50%;
    }

    .panel-two-col.sidebarRight > .col-left {
        flex: 2;
        max-width: 66.666667%;
    }

    .panel-two-col.sidebarRight > .col-right {
        flex: 1;
        max-width: 33.333333%;
    }

    .panel-two-col.sidebarLeft > .col-left {
        flex: 1;
        max-width: 33.333333%;
    }

    .panel-two-col.sidebarLeft > .col-right {
        flex: 2;
        max-width: 66.66667%;
    }
}

.overlay_slide_content {
    margin-bottom: 32px;
}

.expanded .overlay_slide_content { margin-bottom: 50px; }

@media (min-width: 40em) {
    .overlay_slide_content {
        margin-bottom: 88px;
    }

    .expanded .overlay_slide_content { margin-bottom: 0; }
}

.overlay_slide_content .title {
    margin: 0 auto;
    padding: 0 32px;
    max-width: 590px;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.overlay_slide_content .title span {
    display: block;
}

.overlay_slide_content .title .middle {
    color: transparent;
    -webkit-text-stroke: 1.5px #fff;
    letter-spacing: 1px;
}

@media (min-width: 40em) {
    .overlay_slide_content .title {
        font-size: 60px;
    }
}

.panel_custom_slider_content .custom_slider_content_inner {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
}

.panel_custom_slider_content.expanded .custom_slider_content_inner {
    flex-direction: column;
}

@media (min-width: 1460px) {
    .panel_custom_slider_content .custom_slider_content_inner  .overlay_content_container {
        position: absolute;
        z-index: 1;
        top: 50%;
        left: 50%;
        width: 100%;
        max-width: 750px;
        transform: translate(-50%, -50%);
    }

    .panel_custom_slider_content.expanded .custom_slider_content_inner  .overlay_content_container {
        position: absolute;
        top: 0;
        left: 50%;
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 1410px;
        height: 100%;
        transform: translateX(-50%);
        pointer-events: none;
    }
}

.root_panel > .content > .contentRender_name_plugins_core_textbox {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 782px;
}

.root_panel > .content-white > .inner > .contentRender_name_plugins_core_textbox {
    margin: 0 auto 40px;
    padding: 0;
    max-width: 780px;
}

.animation-container {
    position: relative;
}

.animation-container canvas {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.animation-container .dom-overlay-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    pointer-events:none;
    overflow:hidden;
}

.lazy-picture > img {
    opacity: 0;
    transition: opacity 300ms cubic-bezier(0,0,0.3,1);
}

.lazy-picture > img.loaded {
    opacity: 1;
}

.outlined {
    -webkit-text-stroke: 1.5px #fff;
    letter-spacing: 1px;
    color: transparent;
}

.outlined-purple {
    -webkit-text-stroke: 1.5px #46348a;
    letter-spacing: 1px;
    color: transparent;
}

@media (min-width: 40em) {
    .outlined {
        -webkit-text-stroke: 1.5px #fff;
        letter-spacing: 1px;
    }
    
    .outlined-purple {
        -webkit-text-stroke: 1.5px #46348a;
        letter-spacing: 1px;
    }   
}

.root_panel > .content {
    margin-bottom: 40px;
}

.root_panel > .content-white {
    position: relative;
    z-index: 2;
    background-color: #fff;
}

.root_panel > .content-white > .inner {
    margin: 0 auto;
    padding: 40px 20px;
    max-width: 1140px;
    background-color: #fff;
}

@media (min-width: 64em) {
    .root_panel > .content-white {
        background-color: transparent;
        background-image: linear-gradient(to bottom, rgba(255,255,255,0) 107px, #fff 107px);
    }

    .root_panel > .content-white > .inner {
        padding: 107px 105px;
    }
}

.view-all-link {
	position: relative;
	display: inline-block;
	padding: 6px 24px;
	padding-right: 46px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #fff;
	border-radius: 2px;
	border: 1px solid #d8d8d8;
	background-color: transparent;
}

.view-all-link i {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.1);
}

.visitorsPluginContainer p {
    color: #000;
}

.visitorsPluginContainer a {
    font-weight: 600;
    color: #46348A;
    text-decoration: underline;
}

.visitorsPluginContainer button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    height: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 2px;
    background-color: #46348A;
}