/**
 * FE Open Event — North Lindsey College Stylesheet
 * 
 * NLC brand variant. Same structure as the Doncaster version
 * but with NLC colours: navy #025577, magenta #c9002f,
 * teal accent #00c4cc matching current marketing materials.
 */


/* ===== VARIABLES — NLC BRAND ===== */
:root {
    --feoe-navy: #025577;
    --feoe-magenta: #c9002f;
    --feoe-teal: #00c4cc;
    --feoe-blue: #025577;
    --feoe-dark-blue: #013d55;
    --feoe-light-grey: #f4f7f9;
    --feoe-white: #ffffff;
    --feoe-text-dark: #1e2d3a;
    --feoe-text-muted: #4a5e6d;
}


/* ===== SCOPED BASE ===== */

.feoe-hero,
.feoe-stats-banner,
.feoe-audience,
.feoe-experience,
.feoe-subjects,
.feoe-testimonials,
.feoe-practical,
.feoe-faq,
.feoe-registration,
.feoe-final-cta {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--feoe-text-dark);
    box-sizing: border-box;
}

.feoe-hero *,
.feoe-stats-banner *,
.feoe-audience *,
.feoe-experience *,
.feoe-subjects *,
.feoe-testimonials *,
.feoe-practical *,
.feoe-faq *,
.feoe-registration *,
.feoe-final-cta * {
    box-sizing: border-box;
}

.feoe-hero h1,
.feoe-hero h2,
.feoe-hero h3,
[class^="feoe-"] h1,
[class^="feoe-"] h2,
[class^="feoe-"] h3 {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    color: var(--feoe-navy);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0;
    text-transform: uppercase;
}

[class^="feoe-"] h1 {
    font-size: clamp(3rem, 7vw, 5rem);
}

[class^="feoe-"] h2 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    margin-bottom: 1rem;
}

[class^="feoe-"] h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: none;
}

[class^="feoe-"] a {
    color: var(--feoe-navy);
    text-decoration: none;
}

[class^="feoe-"] a:hover {
    text-decoration: underline;
}

[class^="feoe-"] img {
    max-width: 100%;
    height: auto;
}


/* ===== UTILITIES ===== */
.feoe-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.feoe-container--narrow {
    max-width: 900px;
}

.feoe-text-center {
    text-align: center;
}

.feoe-section-subtitle {
    font-size: 1.3rem;
    color: var(--feoe-text-muted);
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.5;
    text-transform: none;
}


/* ===== BUTTONS ===== */
.feoe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.feoe-btn:hover {
    text-decoration: none;
}

.feoe-btn--primary {
    background: var(--feoe-navy);
    color: var(--feoe-white) !important;
    border-color: var(--feoe-navy);
}

.feoe-btn--primary:hover {
    background: var(--feoe-dark-blue);
    border-color: var(--feoe-dark-blue);
}

.feoe-btn--lime {
    background: var(--feoe-teal);
    color: var(--feoe-white);
    border-color: var(--feoe-teal);
}

.feoe-btn--lime:hover {
    background: #00a8af;
    border-color: #00a8af;
}

.feoe-btn--white-outline {
    background: transparent;
    color: var(--feoe-white);
    border-color: rgba(255,255,255,0.5);
}

.feoe-btn--white-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--feoe-white);
}

.feoe-btn--white {
    background: var(--feoe-white);
    color: var(--feoe-navy);
    border-color: var(--feoe-white);
}

.feoe-btn--white:hover {
    background: #f0f0f0;
}

.feoe-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}


/* ===== ICONS ===== */
.feoe-hero .icon,
[class^="feoe-"] .icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    flex-shrink: 0;
}

[class^="feoe-"] .icon--lg {
    width: 32px;
    height: 32px;
}

[class^="feoe-"] .icon--xl {
    width: 40px;
    height: 40px;
}


/* ===== STICKY REGISTER CTA ===== */
.feoe-sticky-cta {
    position: fixed;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.feoe-sticky-cta--visible {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 769px) {
    .feoe-sticky-cta {
        right: 2rem;
        bottom: 2rem;
        transform: translateY(20px);
    }

    .feoe-sticky-cta--visible {
        transform: translateY(0);
    }

    .feoe-sticky-cta__desktop {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 0.5rem;
    }

    .feoe-sticky-cta__btn {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 1.5rem;
        background: var(--feoe-teal);
        color: var(--feoe-white) !important;
        font-size: 1.2rem;
        font-weight: 800;
        border-radius: 50px;
        text-decoration: none;
        box-shadow: 0 4px 20px rgba(0, 196, 204, 0.4);
        transition: all 0.2s ease;
        font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }

    .feoe-sticky-cta__btn:hover {
        background: #00a8af;
        box-shadow: 0 6px 25px rgba(0, 196, 204, 0.5);
        text-decoration: none;
    }

    .feoe-sticky-cta__btn .icon {
        width: 20px;
        height: 20px;
    }

    .feoe-sticky-cta__date {
        font-size: 1rem;
        color: var(--feoe-text-muted);
        background: var(--feoe-white);
        padding: 0.35rem 0.75rem;
        border-radius: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .feoe-sticky-cta__mobile {
        display: none;
    }
}

@media (max-width: 768px) {
    .feoe-sticky-cta {
        left: 0;
        right: 0;
        bottom: 0;
        transform: translateY(100%);
    }

    .feoe-sticky-cta--visible {
        transform: translateY(0);
    }

    .feoe-sticky-cta__desktop {
        display: none;
    }

    .feoe-sticky-cta__mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.75rem 1rem;
        background: var(--feoe-white);
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    }

    .feoe-sticky-cta__info {
        display: flex;
        flex-direction: column;
        gap: 0.1rem;
    }

    .feoe-sticky-cta__title {
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--feoe-navy);
        line-height: 1.2;
    }

    .feoe-sticky-cta__subtitle {
        font-size: 1rem;
        color: var(--feoe-text-muted);
    }

    .feoe-sticky-cta__mobile .feoe-btn {
        padding: 0.75rem 1.25rem;
        font-size: 1rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    body.feoe-sticky-active {
        padding-bottom: 80px;
    }
}


/* ===== HERO ===== */
.feoe-hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(160deg, #011e2e 0%, var(--feoe-navy) 40%, var(--feoe-dark-blue) 100%);
}

.feoe-hero__video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.feoe-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feoe-hero__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgba(1, 30, 46, 0.92) 0%, rgba(2, 85, 119, 0.85) 40%, rgba(1, 61, 85, 0.88) 100%);
    z-index: 2;
}

.feoe-hero__video-controls {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 20;
}

.feoe-hero__video-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}

.feoe-hero__video-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

.feoe-hero__video-btn .icon {
    width: 20px;
    height: 20px;
}

.feoe-hero__video-btn .icon-play {
    display: none;
}

.feoe-hero__video-btn.paused .icon-pause {
    display: none;
}

.feoe-hero__video-btn.paused .icon-play {
    display: block;
}

.feoe-hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--feoe-white);
    padding: 4rem 0;
    width: 100%;
}

.feoe-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 196, 204, 0.15);
    border: 1px solid rgba(0, 196, 204, 0.5);
    border-radius: 50px;
    color: var(--feoe-teal);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: none;
}

.feoe-hero__title {
    color: var(--feoe-white) !important;
    margin-bottom: 1.5rem !important;
    text-transform: uppercase;
}

.feoe-hero__subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.5;
    color: var(--feoe-white);
    text-transform: none;
}

.feoe-hero__details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    margin-bottom: 3rem;
}

.feoe-hero__detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--feoe-white);
}

.feoe-hero__detail .icon {
    color: var(--feoe-teal);
}


/* ===== COUNTDOWN ===== */
.feoe-countdown {
    margin-bottom: 3rem;
}

.feoe-countdown__label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.6;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--feoe-white);
}

.feoe-countdown__timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.feoe-countdown__block {
    text-align: center;
}

.feoe-countdown__number {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--feoe-teal);
    line-height: 1;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.feoe-countdown__unit {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
    margin-top: 0.25rem;
    font-weight: 600;
    color: var(--feoe-white);
}

.feoe-countdown__separator {
    font-size: 2.5rem;
    opacity: 0.3;
    align-self: flex-start;
    color: var(--feoe-white);
}


/* ===== STATS BANNER ===== */
.feoe-stats-banner {
    background: linear-gradient(90deg, var(--feoe-navy) 0%, var(--feoe-dark-blue) 100%);
    padding: 2.5rem 0;
    border-top: 4px solid var(--feoe-teal);
}

.feoe-stats-banner__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .feoe-stats-banner__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.feoe-stats-banner__item {
    text-align: center;
    color: var(--feoe-white);
}

.feoe-stats-banner__number {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--feoe-white);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.feoe-stats-banner__number span {
    color: var(--feoe-teal);
}

.feoe-stats-banner__label {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-top: 0.25rem;
    font-weight: 500;
}


/* ===== AUDIENCE SWITCHER ===== */
.feoe-audience {
    padding: 5rem 0;
    background: var(--feoe-light-grey);
}

.feoe-audience__tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.feoe-audience__tab-list {
    display: inline-flex;
    background: var(--feoe-white);
    border-radius: 12px;
    padding: 0.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.feoe-audience__tab {
    padding: 0.875rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--feoe-text-dark);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.feoe-audience__tab--active[data-audience="student"] {
    background: var(--feoe-navy);
    color: var(--feoe-white);
}

.feoe-audience__tab--active[data-audience="parent"] {
    background: var(--feoe-magenta);
    color: var(--feoe-white);
}

.feoe-audience__panel {
    display: none;
    background: var(--feoe-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.feoe-audience__panel--active {
    display: block;
}

.feoe-audience__grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .feoe-audience__grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.feoe-audience__content h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem !important;
    text-transform: none;
}

.feoe-audience__content[data-audience="student"] h3 {
    color: var(--feoe-navy) !important;
}

.feoe-audience__content[data-audience="parent"] h3 {
    color: var(--feoe-magenta) !important;
}

.feoe-audience__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feoe-audience__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feoe-audience__list .icon {
    color: var(--feoe-teal);
    margin-top: 0.2rem;
}

.feoe-audience__image {
    border-radius: 12px;
    overflow: hidden;
    min-height: 300px;
    background-size: cover;
    background-position: center;
}


/* ===== EXPERIENCE ===== */
.feoe-experience {
    padding: 5rem 0;
    background: var(--feoe-white);
}

.feoe-experience__grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .feoe-experience__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feoe-experience__card {
    background: var(--feoe-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
}

.feoe-experience__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.feoe-experience__card-image {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.feoe-experience__card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 85, 119, 0.85) 0%, transparent 100%);
}

.feoe-experience__card-body {
    padding: 1.5rem;
}

.feoe-experience__card-title {
    margin-bottom: 0.75rem !important;
    font-size: 1.4rem;
    text-transform: none;
}

.feoe-experience__card-text {
    color: var(--feoe-text-muted);
}


/* ===== SUBJECT AREAS ===== */
.feoe-subjects {
    padding: 5rem 0;
    background: var(--feoe-light-grey);
}

.feoe-subjects__content {
    margin-bottom: 1rem;
}

.feoe-subjects__cta {
    text-align: center;
    margin-top: 2.5rem;
}


/* ===== TESTIMONIALS ===== */
.feoe-testimonials {
    padding: 5rem 0;
    background: linear-gradient(160deg, #011e2e 0%, var(--feoe-navy) 40%, var(--feoe-dark-blue) 100%);
}

.feoe-testimonials h2 {
    color: var(--feoe-white) !important;
}

.feoe-testimonials .feoe-section-subtitle {
    color: var(--feoe-white);
    opacity: 0.8;
}

.feoe-testimonials__grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .feoe-testimonials__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feoe-testimonial-card {
    background: var(--feoe-white);
    border-radius: 16px;
    overflow: hidden;
}

.feoe-testimonial-card__video {
    position: relative;
    height: 180px;
    background: var(--feoe-light-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.feoe-testimonial-card__video iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.feoe-testimonial-card__body {
    padding: 1.5rem;
}

.feoe-testimonial-card__quote {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--feoe-text-dark);
    font-size: 1.2rem;
}

.feoe-testimonial-card__name {
    font-weight: 700;
    color: var(--feoe-navy);
}

.feoe-testimonial-card__course {
    color: var(--feoe-text-muted);
}


/* ===== PRACTICAL INFO ===== */
.feoe-practical {
    padding: 5rem 0;
    background: var(--feoe-light-grey);
}

.feoe-practical__grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .feoe-practical__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feoe-practical__card {
    background: var(--feoe-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border-top: 4px solid var(--feoe-teal);
}

.feoe-practical__card h3 {
    margin-bottom: 1.5rem !important;
    color: var(--feoe-navy) !important;
    font-size: 1.5rem;
    text-transform: none;
}

.feoe-practical__card p {
    margin-bottom: 0.75rem;
}

.feoe-practical__card strong {
    color: var(--feoe-navy);
}

.feoe-practical__checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feoe-practical__checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
}

.feoe-practical__checklist li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.feoe-practical__checklist .icon {
    color: var(--feoe-teal);
    margin-top: 0.2rem;
}


/* ===== FAQ ===== */
.feoe-faq {
    padding: 5rem 0;
    background: var(--feoe-light-grey);
}

.feoe-faq__list {
    background: var(--feoe-white);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    overflow: hidden;
}

.feoe-faq__item {
    border-bottom: 1px solid #e5e7eb;
}

.feoe-faq__item:last-child {
    border-bottom: none;
}

.feoe-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--feoe-navy);
    transition: background 0.2s ease;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    line-height: 1.4;
}

.feoe-faq__question:hover {
    background: var(--feoe-light-grey);
}

.feoe-faq__question .icon {
    color: var(--feoe-teal);
    transition: transform 0.3s ease;
}

.feoe-faq__item--open .feoe-faq__question .icon {
    transform: rotate(180deg);
}

.feoe-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.feoe-faq__item--open .feoe-faq__answer {
    max-height: 500px;
}

.feoe-faq__answer-inner {
    padding: 0 2rem 1.5rem;
    color: var(--feoe-text-muted);
    line-height: 1.6;
}

.feoe-faq__more {
    text-align: center;
    margin-top: 2rem;
    color: var(--feoe-text-muted);
}

.feoe-faq__more a {
    font-weight: 700;
}


/* ===== REGISTRATION / RSVP ===== */
.feoe-registration {
    padding: 5rem 0;
    background: linear-gradient(160deg, #011e2e 0%, var(--feoe-navy) 40%, var(--feoe-dark-blue) 100%);
}

.feoe-registration__card {
    background: var(--feoe-white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    padding: 3rem;
}

@media (max-width: 640px) {
    .feoe-registration__card {
        padding: 2rem;
    }
}

.feoe-registration__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.feoe-registration__header h2 {
    color: var(--feoe-navy) !important;
}

.feoe-registration__header p {
    color: var(--feoe-text-muted);
    font-size: 1.25rem;
    text-transform: none;
}

/* ETP RSVP form overrides */
.feoe-registration__card .tribe-tickets__rsvp {
    border: none;
    box-shadow: none;
    padding: 0;
}

.feoe-registration__card .tribe-tickets__rsvp-wrapper {
    border: none;
}

.feoe-registration__card .tribe-common .tribe-common-b1,
.feoe-registration__card .tribe-common .tribe-common-b2 {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 1.2rem;
}

.feoe-registration__card .tribe-tickets__form-submit .tribe-common-c-btn {
    background: var(--feoe-teal);
    border-color: var(--feoe-teal);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border-radius: 6px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.feoe-registration__card .tribe-tickets__form-submit .tribe-common-c-btn:hover {
    background: #00a8af;
    border-color: #00a8af;
}


/* ===== FINAL CTA ===== */
.feoe-final-cta {
    padding: 4rem 0;
    background: var(--feoe-teal);
    text-align: center;
}

.feoe-final-cta h2 {
    color: var(--feoe-white) !important;
    margin-bottom: 0.75rem !important;
}

.feoe-final-cta p {
    color: var(--feoe-white);
    opacity: 0.9;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-transform: none;
}


/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .feoe-hero {
        min-height: 85vh;
    }

    .feoe-hero__content {
        padding: 3rem 0;
    }

    .feoe-hero__details {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .feoe-audience__panel {
        padding: 1.5rem;
    }

    .feoe-audience__grid {
        gap: 2rem;
    }

    .feoe-experience__grid,
    .feoe-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .feoe-practical__grid {
        grid-template-columns: 1fr;
    }

    .feoe-faq__question {
        padding: 1.25rem 1.5rem;
    }

    .feoe-faq__answer-inner {
        padding: 0 1.5rem 1.25rem;
    }

    [class^="feoe-"] h1 {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }
}.tribe-accessible-hidden,.tribe-js .tribe-accessible-js-hidden{clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}
:root{--tec-color-text-primary:#141827;--tec-featured-event-bg:#0ea0d7;--tec-twentynineteen-font--body:"NonBreakingSpaceOverride","Hoefler Text","Baskerville Old Face",garamond,"Times New Roman",serif;--tec-twentynineteen-font--heading:-apple-system,blinkmacsystemfont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;--tec-twentynineteen-font--code:menlo,monaco,consolas,lucida console,monospace;--tec-twentynineteen-font--pre:"Courier 10 Pitch",courier,monospace}.tribe-events-event-cost{align-items:center;display:flex;float:none;margin:0 0 15px}.tribe-events-event-cost span{border:1px solid #ddd;display:block;font-style:normal;font-weight:700;line-height:1;padding:8px 12px;text-align:center;text-overflow:ellipsis}.tribe-events-event-cost .tribe-out-of-stock,.tribe-events-event-cost .tribe-tickets-left{background:#f0f0f0;border-left:none;color:#727272;font-style:italic;font-weight:400}.tribe-events-event-cost .tribe-ticket-cost{margin:0}.tribe-button,a.tribe-button,button.tribe-button,input.tribe-button{border-radius:3px;line-height:1;margin:10px;padding:9px 12px}.tribe-button.sold-out,a.tribe-button.sold-out,button.tribe-button.sold-out,input.tribe-button.sold-out{background:none;border:none;color:#a00}.tribe-button.sold-out:hover,a.tribe-button.sold-out:hover,button.tribe-button.sold-out:hover,input.tribe-button.sold-out:hover{cursor:default}#tribe-events,#tribe-events-pg-template,.tribe-events-pg-template{background-color:var(--tec-color-background-events);padding:40px 20px 20px}#tribe-events-pg-template,.tribe-events-pg-template{margin:0 auto;max-width:1200px}.tribe-events-after-html{clear:both}#tribe-events .tribe-events-content p,.tribe-events-after-html p,.tribe-events-before-html p{line-height:1.7;margin:0 0 10px}#tribe-events-pg-template .tribe-events-content h1,#tribe-events-pg-template .tribe-events-content h2,#tribe-events-pg-template .tribe-events-content h3,#tribe-events-pg-template .tribe-events-content h4,#tribe-events-pg-template .tribe-events-content h5,#tribe-events-pg-template .tribe-events-content h6,.tribe-events-after-html h1,.tribe-events-after-html h2,.tribe-events-after-html h3,.tribe-events-after-html h4,.tribe-events-after-html h5,.tribe-events-after-html h6,.tribe-events-before-html h1,.tribe-events-before-html h2,.tribe-events-before-html h3,.tribe-events-before-html h4,.tribe-events-before-html h5,.tribe-events-before-html h6{line-height:1.7;margin:24px 0}#tribe-events-pg-template .tribe-events-content h1,.tribe-events-after-html h1,.tribe-events-before-html h1{font-size:21px;line-height:1.5}#tribe-events-pg-template .tribe-events-content h2,.tribe-events-after-html h2,.tribe-events-before-html h2{font-size:18px;line-height:1.6}#tribe-events-pg-template .tribe-events-content h3,.tribe-events-after-html h3,.tribe-events-before-html h3{font-size:16px;line-height:1.8}#tribe-events-pg-template .tribe-events-content h4,.tribe-events-after-html h4,.tribe-events-before-html h4{font-size:14px;line-height:1.8}#tribe-events-pg-template .tribe-events-content h5,.tribe-events-after-html h5,.tribe-events-before-html h5{font-size:13px;line-height:1.8}#tribe-events-pg-template .tribe-events-content h6,.tribe-events-after-html h6,.tribe-events-before-html h6{font-size:12px;line-height:1.8}#tribe-events-pg-template .tribe-events-content ul,.tribe-events-after-html ul,.tribe-events-before-html ul{list-style:disc outside}#tribe-events-pg-template .tribe-events-content ol,.tribe-events-after-html ol,.tribe-events-before-html ol{list-style:decimal outside}#tribe-events-pg-template .tribe-events-content ol li,#tribe-events-pg-template .tribe-events-content ul li,.tribe-events-after-html ol li,.tribe-events-after-html ul li,.tribe-events-before-html ol li,.tribe-events-before-html ul li{line-height:1.7;margin:0 0 20px}.tribe-events-back{margin:0 0 20px}.events-list .tribe-events-back.tribe-events-loop{margin:0 auto 20px}.tribe-embed a,.tribe-events-event-meta a,.tribe-events-single a{color:var(--tec-color-link-accent);-webkit-text-decoration:none;text-decoration:none}.tribe-events-adv-list-widget .tribe-events-widget-link a,.tribe-events-adv-list-widget .tribe-events-widget-link a:hover,.tribe-events-back a,.tribe-events-back a:hover,.tribe-events-list-widget .tribe-events-widget-link a,.tribe-events-list-widget .tribe-events-widget-link a:hover,ul.tribe-events-sub-nav a,ul.tribe-events-sub-nav a:hover{-webkit-text-decoration:none;text-decoration:none}#tribe-events .tribe-events-button,.tribe-events-button{background-color:#666;background-image:none;border:0;border-radius:3px;box-shadow:none;color:#fff;cursor:pointer;*display:inline;display:inline-block;font-size:11px;font-weight:700;letter-spacing:1px;line-height:normal;padding:6px 9px;text-align:center;-webkit-text-decoration:none;text-decoration:none;text-transform:uppercase;vertical-align:middle;zoom:1}.tribe-events-button.tribe-active{background-color:#666;color:#fff}#tribe-events .tribe-events-button:hover,.tribe-events-button.tribe-active:hover,.tribe-events-button.tribe-inactive,.tribe-events-button:hover{background-color:#ddd;color:#444;-webkit-text-decoration:none;text-decoration:none}.tribe-events-cal-links a{clear:both;color:#fff;font-size:10px;font-weight:400;line-height:18px;margin-top:21px;padding:0 6px;-webkit-text-decoration:none;text-decoration:none}.tribe-events-cal-links a:not(:last-of-type){margin-right:9px}.tribe-events-event-meta .tribe-events-gmap,.tribe-events-event-meta-desc .tribe-events-gmap{white-space:nowrap}.event .entry-title{color:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;padding:inherit}.updated-info{height:0;text-indent:-9999px}.tribe-events-event-image{margin:0 0 20px;text-align:center}.tribe-events-event-image img{height:auto;max-width:100%}.tribe-events-schedule .tribe-events-schedule__datetime{color:var(--tec-color-text-event-date);display:inline-block;font-size:1.2em;font-style:normal;font-weight:700;line-height:normal;margin-bottom:0}.tribe-events-event-schedule-details{display:inline}.events-archive .entry-content,.events-archive .entry-header{width:98%}.events-archive footer.entry-header,.events-archive footer.entry-meta,.events-archive header.entry-header,.events-archive header.entry-meta,.events-archive span.edit-link,.single-tribe_events footer.entry-header,.single-tribe_events footer.entry-meta,.single-tribe_events header.entry-header,.single-tribe_events header.entry-meta,.single-tribe_organizer footer.entry-header,.single-tribe_organizer footer.entry-meta,.single-tribe_organizer header.entry-header,.single-tribe_organizer header.entry-meta,.single-tribe_venue footer.entry-header,.single-tribe_venue footer.entry-meta,.single-tribe_venue header.entry-header,.single-tribe_venue header.entry-meta{display:none}.tribe-events-notices{background:#d9edf7;border:1px solid #bce8f1;border-radius:4px;color:#3a87ad;margin:10px 0 18px;padding:8px 35px 8px 14px;text-shadow:0 1px 0 #fff}div.tribe-events-notices>ul,div.tribe-events-notices>ul>li{list-style:none;margin:0;padding:0}#tribe-events-content p.tribe-events-promo{color:#999;font-size:12px}#tribe-events-content p.tribe-events-promo a{color:#666}.clearfix,.tribe-clearfix{zoom:1}.clearfix:after,.clearfix:before,.tribe-clearfix:after,.tribe-clearfix:before{content:"";display:table}.clearfix:after,.tribe-clear,.tribe-clearfix:after{clear:both}.tribe-events-visuallyhidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.tribe-hide-text{overflow:hidden;text-indent:100%;white-space:nowrap}.tribe-events-error{display:none}.tribe-events-multi-event-day{color:#0f81bb}#tribe-events-content .tribe-events-abbr{border-bottom:0;cursor:default}.tribe-events-spinner{height:32px;margin-left:-16px;width:32px}.tribe-events-spinner-medium{height:24px;width:24px}.tribe-events-spinner-small{height:16px;margin-left:-8px;width:16px}*+html .events-archive .tribe-events-page-title{padding-bottom:30px}*+html .events-archive .tribe-events-list .tribe-events-page-title{padding-bottom:0}*+html #tribe-events-header{margin-bottom:30px}.tribe-events-page-title{clear:none;font-size:24px;font-weight:400;margin-bottom:.5em;position:relative;text-align:center;z-index:0}.tribe-events-filter-view.events-list .tribe-events-page-title{float:none;width:100%}.tribe-events-page-title a{color:#000}.tribe-events-page-title a:focus,.tribe-events-page-title a:hover{color:#333;-webkit-text-decoration:underline;text-decoration:underline}#tribe-events-footer,#tribe-events-header{clear:both;margin-bottom:.5em}#tribe-events-footer .tribe-events-sub-nav,#tribe-events-header .tribe-events-sub-nav{line-height:normal;list-style-type:none;margin:0;overflow:hidden;padding:0;text-align:center}#tribe-events-footer .tribe-events-sub-nav li,#tribe-events-header .tribe-events-sub-nav li{*display:inline;display:inline-block;margin:0;vertical-align:middle;zoom:1}#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-previous,#tribe-events-footer .tribe-events-sub-nav li,#tribe-events-header .tribe-events-sub-nav .tribe-events-nav-previous,#tribe-events-header .tribe-events-sub-nav li{float:left;margin-right:5px;text-align:left}#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-next,#tribe-events-header .tribe-events-sub-nav .tribe-events-nav-next{float:right;margin-left:5px;text-align:right}#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-left,#tribe-events-header .tribe-events-sub-nav .tribe-events-nav-left{float:left;text-align:left}#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-right,#tribe-events-header .tribe-events-sub-nav .tribe-events-nav-right{float:right;text-align:right}.tribe-events-ajax-loading{background:#666;border-radius:5px;box-shadow:none;display:none;left:50%;margin-left:-27px;padding:15px;position:absolute;top:150px;z-index:10}.tribe-events-ajax-loading.tribe-events-active-spinner,.tribe-events-ajax-loading.tribe-events-active-spinner img,.tribe-events-loading .tribe-events-ajax-loading{display:block}#tribe-events-header{position:relative}#tribe-events-footer{margin-bottom:1em}.events-list #tribe-events-footer,.tribe-events-day #tribe-events-footer,.tribe-events-map #tribe-events-footer{clear:both;margin:1.25em 0 18px}.tribe-events-map #tribe-events-header{margin:1em 0}.single-tribe_events #tribe-events-header{margin:1em 0 20px}.single-tribe_events #tribe-events-footer li,.single-tribe_events #tribe-events-header li{width:48%}#tribe-events-content .tribe-events-nav-date{padding-top:16px}select.tribe-events-dropdown{font-size:11px;margin:33px 9px 0 0;width:auto}#tribe-events-events-picker,#tribe-events-picker{display:inline}#tribe-events-content{margin-bottom:48px;padding:2px 0;position:relative}#tribe-events-content.tribe-events-list{padding:0}.tribe-events-othermonth .tribe-events-month-event-title,.tribe-events-othermonth div[id*=tribe-events-daynum-]{-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";filter:alpha(opacity=40);-khtml-opacity:.4;opacity:.4}#tribe-events-content.tribe-events-list{margin-bottom:60px}.tribe-events-list .tribe-events-loop .tribe-event-featured{background:var(--tec-featured-event-bg);margin-bottom:2rem;padding:0 1.5rem 1rem}.tribe-events-list .tribe-events-loop .tribe-event-featured.tribe-events-first{padding-top:0}.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-event-image{display:block;float:none;margin:0 -1.5rem;width:auto}.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-list-event-title{display:inline-block;margin-top:1.5rem}.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-list-event-title a{color:#fff}.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-event-meta{background-color:initial;color:#ffffffb3;font-weight:400}.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-content{color:#ffffffe6}.tribe-events-list .tribe-events-loop .tribe-event-featured a{color:#ffffffb3}.tribe-events-list .tribe-events-loop .tribe-event-featured a:active,.tribe-events-list .tribe-events-loop .tribe-event-featured a:hover{color:#ffffffe6}.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-event-cost{align-items:center;display:flex;float:none;margin:30px 0}.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-event-cost span{background:#ffffff1a;border:0;color:#fff;display:block;font-style:normal;font-weight:700;line-height:1;padding:10px;text-align:center;text-overflow:ellipsis}.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-event-cost .ticket-cost{background:#fff3}.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-event-cost .tribe-tickets-left{font-style:italic;font-weight:400;margin-left:1px}.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-event-cost .tribe-out-of-stock{background:#f0f0f0;border-left:none;color:#727272;font-style:italic;font-weight:400}.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-event-cost .tribe-ticket-cost{margin:0}.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-event-cost .tribe-button{color:#000;font-weight:700}.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-event-cost .tribe-button:hover{color:var(--tec-featured-event-bg)}.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-event-cost .tribe-button:active{color:#000}.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-button{background:#fff;color:var(--tec-featured-event-bg)}.tribe-events-list .tribe-events-loop .tribe-events-event-image{float:left;margin:0 3% 0 0;width:30%}.tribe-events-list .tribe-events-loop .tribe-events-content{width:100%}.tribe-events-list .tribe-events-list-event-title{border:none;display:inline-block;font-size:1.4em;letter-spacing:0;line-height:1.4em;margin:0;padding:0;text-transform:none}.tribe-events-list .type-tribe_events{border-bottom:1px solid #ddd;margin:0;padding:2.25em 0}.tribe-events-list .type-tribe_events.tribe-events-first{padding-top:0}.tribe-events-list .type-tribe_events.tribe-event-end-month{border-bottom:0;padding-bottom:0}.tribe-events-list .tribe-events-event-image{display:inline-block;float:left;margin:0 3% 0 0}.tribe-events-list .tribe-events-event-image img{height:auto;margin:0;padding:0;width:100%}.tribe-events-list .tribe-events-event-image+div.tribe-events-content{display:block;float:none;position:relative}.tribe-events-list .tribe-events-event-image+div.tribe-events-content.tribe-events-list-event-description{position:static}.tribe-events-list .tribe-events-loop .tribe-events-event-meta .recurringinfo{*display:inline;display:inline-block;zoom:1}.tribe-events-list .tribe-events-loop .tribe-events-event-meta .event-is-recurring{position:relative}.tribe-events-list .tribe-events-loop .tribe-events-event-meta .tribe-events-content{padding:0;width:100%}.tribe-events-list .time-details,.tribe-events-list .tribe-events-venue-details{display:block;line-height:1.2;margin:0}.tribe-events-list .time-details{margin:0 0 8px}.tribe-events-list .tribe-events-venue-details{margin:15px 0}.tribe-events-event-details .tribe-events-event-meta address.tribe-events-address{font-family:inherit;font-size:inherit;font-style:normal;line-height:inherit}.tribe-events-list-separator-year{color:#ccc;display:block;font-size:38px;font-weight:700;padding:1em 2.25em 0;text-align:center}.tribe-events-list-separator-month{background-color:#eee;display:block;font-size:14px;font-weight:700;margin:2.5em 0 0;padding:6px 10px;text-transform:uppercase}.tribe-events-list-separator-month+.type-tribe_events.tribe-events-first{padding-top:2.25em}.tribe-events-loop{clear:both}.tribe-events-loop .type-tribe_events.tribe-events-last{border-bottom:0}.tribe-events-loop .tribe-events-content{float:left;padding:0 5% 0 0;width:60%}.tribe-events-loop .tribe-events-event-meta{border:0;clear:both;float:none;font-size:14px;font-weight:700;line-height:1.5;margin:5px 0 15px;overflow:visible}.tribe-events-event-meta address.tribe-events-address{display:inline;font-family:inherit;font-size:inherit;font-style:normal;line-height:inherit;margin-right:10px}.single-tribe_venue .tribe-events-loop .tribe-events-content p{margin:0}.events-archive h3 .published,.single-tribe_venue h3 .published{font-size:18px;font-style:italic;margin-top:0;text-transform:none}.tribe-events-event-day,.tribe-events-event-meta-desc{color:#333}.venue-address{margin-top:1em}.venue-address>*{display:block;margin-top:.5em}.single-tribe_events .tribe-events-single-event-title{color:var(--tec-color-text-event-title);font-size:1.7em;line-height:1;margin:0;padding:0}.single-tribe_events .tribe-events-single-event-recurrence-description{align-items:center;display:flex;font-size:1em;margin:.5em 0 1.5em}.single-tribe_events .tribe-events-single-event-recurrence-description>img{height:1em}.single-tribe_events .tribe-events-single-event-recurrence-description>a{color:#009fd4;font-size:.8125em}.single-tribe_events .tribe-events-single-event-recurrence-description>*{margin-right:.4375em}#tribe-events-content .tribe-events-single-event-description .attachment-post-thumbnail{display:block;margin-left:auto;margin-right:auto;text-align:center}.single-tribe_events .tribe-events-single-event-description a{color:var(--tec-color-link-primary)}.tribe-events-meta-group .tribe-events-single-section-title{font-size:1.4em;font-weight:700;margin:20px 0 10px}.tribe-events-meta-group a{color:var(--tec-color-link-accent)}.tribe-events-meta-group+.tribe-events-single-section-title{margin-top:0}.tribe-events-event-meta .tribe-events-meta-group address.tribe-events-address{display:block;margin:0}#eventbrite-embed{margin:24px 0;min-height:225px;width:100%}.eventbrite-ticket-embed{margin:0 0 30px}.tribe-events-schedule{margin:20px 0 0;vertical-align:middle}.single-tribe_events .tribe-events-schedule .recurringinfo,.single-tribe_events .tribe-events-schedule .tribe-events-cost,.single-tribe_events .tribe-events-schedule .tribe-events-divider{font-size:1.2em}.single-tribe_events .tribe-events-schedule h3{*display:inline;display:inline-block;font-size:1.2em;margin:0;padding:0;vertical-align:middle;white-space:nowrap;zoom:1}.single-tribe_events .tribe-events-schedule .tribe-events-cost{vertical-align:initial}.single-tribe_events .tribe-events-event-image{clear:both;margin-bottom:30px;text-align:center}.single-tribe_events .tribe-events-cal-links{clear:both}.single-tribe_events .tribe-events-event-meta{background:#e5e5e5;border:1px solid #eee;margin:30px 0}.single-tribe_events .tribe-events-venue-map{background:#eee;border:1px solid #ddd;border-radius:3px;display:inline-block;float:right;margin:20px 4% 2% 0;padding:5px;vertical-align:top;width:90%;zoom:1}.single-tribe_events .tribe-events-meta-group+.tribe-events-meta-group+.tribe-events-meta-group-gmap{clear:both;display:block;float:none;width:auto}.single-tribe_events .tribe-events-meta-group+.tribe-events-meta-group+.tribe-events-meta-group-gmap .tribe-events-venue-map{float:none;width:100%}.single-tribe_events .secondary .tribe-events-venue-map{width:58%}@media screen and (max-width:767px){.single-tribe_events .secondary .tribe-events-venue-map{width:90%}}.single-tribe_events .sidebar .secondary .tribe-events-venue-map{width:100%}.single-tribe_events .tribe-events-event-meta{font-size:13px}.single-tribe_events .tribe-events-event-meta dl{margin:0}.single-tribe_events #tribe-events-content .tribe-events-event-meta dt{clear:left;font-weight:700;line-height:1;list-style:none}.single-tribe_events #tribe-events-content .tribe-events-event-meta dd{float:none;line-height:1.5;list-style:none;margin:0 0 10px;padding:0}.single-tribe_events #tribe-events-content .tribe-events-event-meta .tribe-events-meta-list{list-style:none;margin:0;padding:0}.single-tribe_events #tribe-events-content .tribe-events-event-meta .tribe-events-meta-item{list-style:none;margin:0 0 10px;padding:0}.single-tribe_events #tribe-events-content .tribe-events-event-meta .tribe-events-meta-label{clear:left;display:block;font-weight:700;line-height:1}.single-tribe_events #tribe-events-content .tribe-events-event-meta .tribe-events-meta-value{display:block;line-height:1.5}.tribe-events-event-meta .column,.tribe-events-event-meta .tribe-events-meta-group{box-sizing:border-box;display:inline-block;float:left;margin:0 0 20px;padding:0 4%;text-align:left;vertical-align:top;width:33.3333%;zoom:1}#tribe-events-content .tribe-events-event-meta dd span.adr{display:block}.single-tribe_events .tribe-events-content{max-width:100%;padding:0;width:100%}.sidebar.single-tribe_events .tribe-events-content{padding:0}.tribe-events-day .tribe-events-day-time-slot .tribe-events-day-time-slot-heading{background-color:#eee;font-size:14px;font-weight:700;margin:2.5em 0 0;padding:6px 10px;text-transform:uppercase}.tribe-events-day .tribe-events-day-time-slot .type-tribe_events{margin-left:5%}.tribe-events-day .tribe-event-featured{background:var(--tec-featured-event-bg);margin-bottom:2rem;padding:0 1.5rem 1rem}.tribe-events-day .tribe-event-featured .tribe-events-content{display:block;float:none;width:auto}.tribe-events-day .tribe-event-featured.tribe-events-first{padding-top:0}.tribe-events-day .tribe-event-featured .tribe-events-event-image{display:block;float:none;margin:0 -1.5rem;width:auto}.tribe-events-day .tribe-event-featured .tribe-events-list-event-title{display:inline-block;margin-top:1.5rem}.tribe-events-day .tribe-event-featured .tribe-events-list-event-title a{color:#fff}.tribe-events-day .tribe-event-featured .tribe-events-event-meta{background-color:initial;color:#ffffffb3;font-weight:400}.tribe-events-day .tribe-event-featured .tribe-events-content{color:#ffffffe6}.tribe-events-day .tribe-event-featured a{color:#ffffffb3}.tribe-events-day .tribe-event-featured a:active,.tribe-events-day .tribe-event-featured a:hover{color:#ffffffe6}.tribe-events-day .tribe-event-featured .tribe-events-event-cost{align-items:center;display:flex;float:none;margin:30px 0}.tribe-events-day .tribe-event-featured .tribe-events-event-cost span{background:#ffffff1a;border:0;color:#fff;display:block;font-style:normal;font-weight:700;line-height:1;padding:10px;text-align:center;text-overflow:ellipsis}.tribe-events-day .tribe-event-featured .tribe-events-event-cost .ticket-cost{background:#fff3}.tribe-events-day .tribe-event-featured .tribe-events-event-cost .tribe-tickets-left{font-style:italic;font-weight:400;margin-left:1px}.tribe-events-day .tribe-event-featured .tribe-events-event-cost .tribe-out-of-stock{background:#f0f0f0;border-left:none;color:#727272;font-style:italic;font-weight:400}.tribe-events-day .tribe-event-featured .tribe-events-event-cost .tribe-ticket-cost{margin:0}.tribe-events-day .tribe-event-featured .tribe-events-event-cost .tribe-button{color:#000;font-weight:700}.tribe-events-day .tribe-event-featured .tribe-events-event-cost .tribe-button:hover{color:var(--tec-featured-event-bg)}.tribe-events-day .tribe-event-featured .tribe-events-event-cost .tribe-button:active{color:#000}.tribe-events-day .tribe-event-featured .tribe-button{background:#fff;color:var(--tec-featured-event-bg)}.tribe-events-day .type-tribe_events{margin-left:0}.tribe-events-day .tribe-events-event-image{display:inline-block;float:left;margin:0 3% 0 0;width:30%}.tribe-events-day .tribe-events-content{display:inline-block;float:right;padding:0;width:67%}@media screen and (min-width:44.375em){.tribe-events-day .tribe-events-content{margin-left:0;margin-right:0}}#tribe-events-content table.tribe-events-calendar{border-collapse:collapse;clear:both;font-size:12px;margin:12px 0 .6em;overflow:visible;table-layout:fixed;width:100%}#tribe-events-content table.tribe-events-calendar .type-tribe_events.tribe-event-featured{background:var(--tec-featured-event-bg);margin:0;padding:6px calc(5% + 8px)}.events-archive.events-gridview #tribe-events-content table.tribe-events-calendar .type-tribe_events.tribe-event-featured{margin:0;padding:6px calc(5% + 8px)}#tribe-events-content table.tribe-events-calendar .type-tribe_events.tribe-event-featured .tribe-events-month-event-title a{color:#fff}#tribe-events-content table.tribe-events-calendar .type-tribe_events.tribe-event-featured .tribe-events-month-event-title a:active,#tribe-events-content table.tribe-events-calendar .type-tribe_events.tribe-event-featured .tribe-events-month-event-title a:hover{color:#eee}#tribe-events-content .tribe-events-calendar td,#tribe-events-content table.tribe-events-calendar{border:1px solid #bbb}#tribe-events-content .tribe-events-calendar td{box-sizing:border-box;color:#114b7d;font-size:12px;height:145px;padding:0 0 .5em;vertical-align:top;width:14.28%}.tribe-events-calendar div[id*=tribe-events-daynum-],.tribe-events-calendar div[id*=tribe-events-daynum-] a{background-color:#f5f5f5;color:#333;font-size:11px;font-weight:700}.tribe-events-calendar td.tribe-events-present div[id*=tribe-events-daynum-],.tribe-events-calendar td.tribe-events-present div[id*=tribe-events-daynum-]>a{background-color:#666;color:#fff}.tribe-events-calendar td.tribe-events-past div[id*=tribe-events-daynum-],.tribe-events-calendar td.tribe-events-past div[id*=tribe-events-daynum-]>a{color:#999}.recurring-info-tooltip,.tribe-events-calendar .tribe-events-tooltip,.tribe-events-shortcode.view-week .tribe-events-tooltip,.tribe-events-week .tribe-events-tooltip{background-color:#f9f9f9;border:1px solid #666;bottom:30px;color:#333;display:none;left:3px;line-height:1.4;position:absolute;width:320px;z-index:1001}.tribe-events-tooltip .tribe-events-arrow{background-image:url(/wp-content/plugins/the-events-calendar/build/css/images/tribe-tooltips.89088c70.png);background-position:0 0;background-repeat:no-repeat;background-size:44px 19px;bottom:-11px;display:block;height:11px;left:20px;position:absolute;width:18px}.recurring-info-tooltip,.tribe-events-calendar .tribe-events-right .tribe-events-tooltip,.tribe-events-shortcode.view-week .tribe-events-right .tribe-events-tooltip,.tribe-events-week .tribe-events-right .tribe-events-tooltip{left:auto;right:3px}.tribe-events-right .tribe-events-tooltip .tribe-events-arrow{left:auto;right:30px}.tribe-events-tooltip ol,.tribe-events-tooltip ul{margin-left:1.6em}.tribe-events-tooltip .tribe-events-event-body .tribe-events-event-thumb img{max-height:150px;max-width:150px}.tribe-events-tooltip.tribe-events-tooltip-flipdown:before{border:10px solid;border-color:#0000 #0000 #666;content:" ";display:block;height:0;left:17px;position:absolute;top:-21px;width:0;z-index:2}.tribe-events-tooltip.tribe-events-tooltip-flipdown .tribe-events-arrow{display:none}.tribe-events-right .tribe-events-tooltip.tribe-events-tooltip-flipdown:before{left:auto;right:43px}@media screen{#tribe-events-content .tribe-events-tooltip ol,#tribe-events-content .tribe-events-tooltip ul{margin-left:1.6em}}.recurringinfo{*display:inline;display:inline-block;position:relative;zoom:1}.event-is-recurring{color:#000000b3;font-style:normal;font-weight:500;position:relative}.event-is-recurring:hover{color:#000}.tribe-event-featured .event-is-recurring{color:#ffffffb3}.tribe-event-featured .event-is-recurring:hover{color:#fff}.tribe-event-featured .event-is-recurring div{color:#000000b3}.recurring-info-tooltip.tribe-events-tooltip{left:10px;padding-bottom:.8em;width:200px}.events-archive.events-gridview #tribe-events-content table .type-tribe_events{border-bottom:1px solid #e7e7e7;margin:0 5%;padding:6px 8px}.events-archive.events-gridview #tribe-events-content table .tribe-events-last{border-bottom:0}.tribe-events-viewmore{border-top:1px solid #e7e7e7;font-weight:700;line-height:1;margin:0 5%;padding:9px 8px}.tribe-events-calendar td .tribe-events-viewmore a{font-size:90%;white-space:nowrap}.tribe-events-calendar td div[id*=tribe-events-daynum-]{line-height:1.2;padding:6px 9px}.tribe-events-calendar td a{font-size:91.7%}.tribe-events-calendar th{background-color:#ddd;color:#333;height:10px;letter-spacing:1px;padding:4px 0;text-align:center;text-transform:uppercase;width:14.28%}.tribe-events-calendar div[id*=tribe-events-daynum-],.tribe-events-calendar div[id*=tribe-events-event-]{margin:0;position:relative}.tribe-events-calendar div[id*=tribe-events-event-] h3.tribe-events-month-event-title a{font-size:100%}#tribe-events-content .tribe-events-calendar div[id*=tribe-events-event-] h3.tribe-events-month-event-title{font-family:sans-serif;font-size:98%;font-weight:400;line-height:1.25;margin:0;overflow:hidden;padding:3%;text-transform:none}#tribe-events-content .tribe-events-tooltip h4{background-color:#666;color:#fff;font-size:12px;font-weight:400;letter-spacing:1px;line-height:24px;margin:0;min-height:24px;padding:0 6px}.tribe-events-tooltip .tribe-events-event-body{font-size:11px;font-weight:400;padding:3px 6px 6px}.tribe-events-tooltip .duration{font-style:italic;margin:3px 0}.tribe-events-tooltip:not(.tribe-event-featured) .tribe-events-event-thumb{padding:5px 5px 5px 0}.tribe-events-tooltip.tribe-event-featured .tribe-events-event-thumb{padding:2px 0 8px}.tribe-events-tooltip .tribe-events-event-thumb{float:left}.tribe-events-tooltip .tribe-events-event-thumb img{box-shadow:none}.tribe-events-tooltip p.entry-summary{font-size:11px;line-height:1.5;padding:0}#tribe-mobile-container{display:none}.tribe-events-list-widget .tribe-list-widget{margin-left:0}.tribe-events-list-widget .tribe-events-list-widget-events{list-style:none;margin-bottom:1.25rem;padding:0 1.5rem}.tribe-events-list-widget .tribe-event-title{margin-bottom:.25rem;margin-top:0}.tribe-events-list-widget .duration{font-weight:700}.tribe-events-list-widget .tribe-event-featured{background:var(--tec-featured-event-bg);padding-bottom:.75rem}.tribe-events-list-widget .tribe-event-featured .tribe-event-title{margin-top:.75rem}.tribe-events-list-widget .tribe-event-featured .tribe-event-title a{color:#fff}.tribe-events-list-widget .tribe-event-featured .tribe-event-image{line-height:0;margin-left:-1.5rem;margin-right:-1.5rem;overflow:hidden}.tribe-events-list-widget .tribe-event-featured .tribe-event-duration{color:#fff}.datepicker table tr td span,.datepicker td{border-radius:0}.datepicker td{border-top:1px solid #ededed}.datepicker td,.datepicker th{word-break:normal}.datepicker table tr td span.active.active,.datepicker table tr td.active.active{background:#666}.datepicker table tr td span.active.active:hover,.datepicker table tr td.active.active:hover{background:#dadada;color:inherit}body.admin-bar .datepicker{margin-top:32px}@media screen and (max-width:782px){body.admin-bar .datepicker{margin-top:46px}}#tribe-events-bar{clear:none;height:auto;margin-bottom:30px;min-width:220px;position:relative;width:100%}#tribe-events-bar *{box-sizing:border-box}#tribe-bar-form{background:#f5f5f5;margin:0;position:relative;width:100%}#tribe-bar-form input{font-size:15px;margin:0 4px 0 0}#tribe-bar-form input[type=text]{background:0;border:none;border-bottom:1px dashed #b9b9b9;border-radius:0;box-shadow:none;font-style:italic;font-weight:400;height:auto;line-height:1;padding:5px;width:100%}#tribe-bar-form input[type=text]:focus{border-bottom:none;outline:1px dashed #b9b9b9}#tribe-bar-form .tribe-bar-submit input[type=submit]{-webkit-appearance:button;background:#666;background-image:none;border:none;border-radius:0;color:#fff;font-size:13px;height:auto;letter-spacing:0;line-height:2;padding:10px;width:100%}#tribe-bar-form label{display:block;font-size:11px;font-weight:700;line-height:1;margin:0 0 5px;padding:0;text-transform:uppercase}#tribe-bar-form .tribe-bar-filters{float:left;margin:0;position:relative;width:100%}#tribe-bar-form .tribe-bar-filters-inner{margin:0}#tribe-bar-form .tribe-bar-views-inner label{padding:0 15px;text-align:left}#tribe-bar-filters-wrap{position:relative}input[name*=tribe-bar-]::-webkit-input-placeholder{color:#5f5f5f;font-style:italic;font-weight:400;line-height:1.3}input[name*=tribe-bar-]:-moz-placeholder{color:#5f5f5f;font-style:italic;font-weight:400;line-height:1.3}.tribe-event-placeholder{color:#5f5f5f;font-style:italic;font-weight:400;line-height:1.3}#tribe-bar-dates .select2-choice{border-bottom:1px dashed #b9b9b9}.tribe-bar-date-filter{float:left;margin-bottom:0;padding:15px;width:25%}.tribe-bar-search-filter{float:left;margin-bottom:0;padding:15px;width:33.3333%}.tribe-bar-submit{float:left;margin-bottom:0;margin-left:16.6667%;padding:15px;width:25%}@media screen and (max-width:767px){.tribe-bar-submit{margin-left:0}}.tribe-bar-submit input[type=submit]:hover{background:#999;color:#fff}.tribe-bar-views-inner{background:#e0e0e0;margin:0;padding:16px 0}#tribe-bar-views-toggle{background:#0000;border:0;color:#333;display:block;font-family:inherit;font-size:16px;font-weight:400;line-height:1;padding:6px 15px;position:relative;text-align:left;text-transform:none;width:100%}#tribe-bar-views-toggle:focus,#tribe-bar-views-toggle:hover{background:#cacaca}#tribe-bar-views-toggle:after{border:8px solid #88b7d500;border-top-width:8px;content:" ";height:0;pointer-events:none;position:absolute;right:15px;top:10px;width:0}.tribe-bar-views-open #tribe-bar-views-toggle:after{border-bottom-color:inherit;border-top-color:#0000;top:0}.tribe-bar-collapse #tribe-bar-views-toggle{padding:10px 14px}.tribe-bar-collapse #tribe-bar-views-toggle:after{top:14px}#tribe-bar-views .tribe-bar-views-list{background:#e0e0e0;border-radius:0 0 3px 3px;display:none;left:0;margin:0;padding:5px 0 0;position:absolute;top:auto;width:100%;z-index:2}#tribe-bar-views .tribe-bar-views-option{color:#444;display:block;line-height:14px;margin:0;padding:6px 15px}#tribe-bar-views .tribe-bar-views-option:hover{background:#cacaca;cursor:pointer}#tribe-bar-views .tribe-bar-views-option:focus{outline:auto}#tribe-bar-views .tribe-bar-views-option:last-child{border-radius:0 0 3px 3px}#tribe-bar-views .tribe-bar-views-option.tribe-bar-active{background:#cacaca}#tribe-bar-views .tribe-bar-settings{display:none}#tribe-bar-form.tribe-bar-mini *{font-size:12px}#tribe-bar-form.tribe-bar-mini label{font-size:11px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#tribe-bar-form.tribe-bar-mini .tribe-bar-submit input[type=submit]{-webkit-appearance:button;font-size:11px;padding:10px 5px}#tribe-bar-form.tribe-bar-mini .tribe-bar-date-filter,#tribe-bar-form.tribe-bar-mini .tribe-bar-search-filter,#tribe-bar-form.tribe-bar-mini .tribe-bar-submit{padding:10px}#tribe-bar-form.tribe-bar-mini .tribe-bar-views-list .tribe-bar-views-option a{padding:4px 15px}#tribe-bar-form.tribe-bar-mini .tribe-bar-views-inner{padding:12px 0}#tribe-bar-form.tribe-bar-mini .tribe-bar-views-inner label{padding:0 10px}#tribe-bar-form.tribe-bar-full.tribe-events-bar--has-views #tribe-bar-filters-wrap,#tribe-bar-form.tribe-bar-mini.tribe-events-bar--has-views #tribe-bar-filters-wrap{float:left;width:83.3333%}#tribe-bar-form.tribe-bar-full.tribe-events-bar--has-filters #tribe-bar-views,#tribe-bar-form.tribe-bar-mini.tribe-events-bar--has-filters #tribe-bar-views{float:left;position:relative;width:16.6667%}#tribe-bar-collapse-toggle{background:#f5f5f5;border:0;color:#333;display:none;font-size:13px;font-weight:700;line-height:28px;padding:15px;position:relative;text-align:left;text-transform:uppercase;width:100%}#tribe-bar-collapse-toggle:focus,#tribe-bar-collapse-toggle:hover{background:#666;color:#fff;cursor:pointer}#tribe-bar-collapse-toggle.tribe-bar-filters-open span.tribe-bar-toggle-arrow:after{border-bottom-color:inherit;border-top-color:#0000;top:0}#tribe-bar-collapse-toggle span.tribe-bar-toggle-arrow{display:inline-block;margin:0 4px;position:absolute;right:10px}#tribe-bar-collapse-toggle span.tribe-bar-toggle-arrow:after{border:8px solid #88b7d500;border-top-width:8px;content:" ";height:0;pointer-events:none;position:absolute;right:0;top:10px;width:0}#tribe-bar-form.tribe-bar-collapse{background:#0000}#tribe-bar-form.tribe-bar-collapse #tribe-bar-collapse-toggle{display:block}#tribe-bar-form.tribe-bar-collapse .tribe-bar-filters{background:#f5f5f5;box-shadow:0 0 5px #0003;display:none;float:none;left:auto;overflow:hidden;padding-top:5px;position:absolute;right:auto;width:100%;z-index:21}#tribe-bar-form.tribe-bar-collapse .tribe-bar-filters-inner>div{width:100%}#tribe-bar-form.tribe-bar-collapse #tribe-bar-views{margin-top:10px}#tribe-bar-form.tribe-bar-collapse .tribe-bar-views-inner{padding:10px 0 0}.tribe-bar-disabled{float:right;position:relative;z-index:101}.tribe-bar-disabled .tribe-events-page-title{clear:none;line-height:45px;margin:0;text-align:left}.tribe-bar-disabled #tribe-events-bar{float:none;min-width:0;width:auto}.tribe-bar-disabled #tribe-bar-form{border-radius:3px;width:auto}.tribe-bar-disabled #tribe-bar-filters-wrap{float:left;min-width:120px;width:auto}.tribe-bar-disabled .tribe-bar-filters .tribe-bar-date-filter{padding:5px 10px}.tribe-bar-disabled #tribe-bar-form label{font-size:10px}.tribe-bar-disabled #tribe-bar-form .tribe-bar-filters input[type=text]{border:none;display:block;font-size:13px;line-height:1;margin:10px 0 0;padding:3px 0 0;width:100px}.tribe-bar-disabled #tribe-bar-form #tribe-bar-views{float:right;font-size:16px;left:50%;min-width:130px;padding:0;right:auto;width:50%}.tribe-bar-disabled .tribe-bar-views-inner{border-radius:0 3px 3px 0;min-width:100px;padding:5px 0 0;position:relative}.tribe-bar-disabled #tribe-bar-views .tribe-bar-views-list,.tribe-bar-disabled #tribe-bar-views .tribe-bar-views-list .tribe-bar-views-option{margin:0}.tribe-bar-disabled #tribe-bar-views .tribe-bar-views-list .tribe-bar-views-option a{margin:0;padding:4px 10px}.tribe-bar-disabled #tribe-bar-views .select2-container .select2-choice{font-size:13px;height:auto;line-height:18px}.tribe-bar-disabled .tribe-select2-results-views.select2-drop .select2-results li{padding:0 10px}.tribe-bar-disabled #tribe-bar-collapse-toggle,.tribe-bar-disabled .tribe-bar-submit{display:none}.tribe-bar-disabled .tribe-bar-date-filter,.tribe-events-uses-geolocation .tribe-bar-disabled .tribe-bar-date-filter{width:auto}.tribe-bar-views span[class^=tribe-icon-]{background-position:0 50%;background-repeat:no-repeat;display:inline-block;min-height:16px;padding-left:24px}.tribe-bar-views span.tribe-icon-month,.tribe-bar-views span[class^=tribe-icon-]{background-image:url(/wp-content/plugins/the-events-calendar/build/css/images/icon-month.4bd122e0.png);background-size:15px 16px}.tribe-bar-views span.tribe-icon-list{background-image:url(/wp-content/plugins/the-events-calendar/build/css/images/icon-list.f50b2672.png);background-size:15px 10px}.tribe-bar-views span.tribe-icon-week{background-image:url(/wp-content/plugins/the-events-calendar/build/css/images/icon-week.06a048ab.png);background-size:15px 16px}.tribe-bar-views span.tribe-icon-day{background-image:url(/wp-content/plugins/the-events-calendar/build/css/images/icon-day.0dccdb67.png);background-size:15px 16px}.tribe-bar-views span.tribe-icon-photo{background-image:url(/wp-content/plugins/the-events-calendar/build/css/images/icon-photo.c0d461ab.png);background-size:15px 14px}.tribe-bar-views span.tribe-icon-map{background-image:url(/wp-content/plugins/the-events-calendar/build/css/images/icon-map.7dcb54ab.png);background-position:2px 50%;background-size:12px 16px}.tribe-events-week.tribe-theme-parent-twentyfourteen #masthead,.tribe-events-week.tribe-theme-twentyfourteen #masthead{z-index:1001}.tribe-theme-parent-twentyfourteen #tribe-events-pg-template #tribe-events,.tribe-theme-twentyfourteen #tribe-events-pg-template #tribe-events{padding:20px}.tribe-theme-parent-twentyfourteen #tribe-bar-views .tribe-bar-views-list,.tribe-theme-twentyfourteen #tribe-bar-views .tribe-bar-views-list{z-index:3}@media screen and (min-width:1000px){.tribe-theme-parent-twentyfourteen #tribe-events-pg-template,.tribe-theme-twentyfourteen #tribe-events-pg-template{padding-left:220px}}#tribe-events-content .tribe-updated{display:inherit}@media screen and (max-width:400px){.list-view.events-archive .site-content .type-page .entry-content{display:initial}}.tribe-theme-parent-twentyfifteen,.tribe-theme-twentyfifteen{--tec-color-background-events:var(--tec-color-background)}.tribe-theme-parent-twentyfifteen #tribe-events,.tribe-theme-twentyfifteen #tribe-events{background-color:var(--tec-color-background-events);margin:0 8.333%;padding-top:8.333%}.tribe-theme-parent-twentyfifteen .tribe-events-single-event-title,.tribe-theme-twentyfifteen .tribe-events-single-event-title{font-size:39px}.tribe-theme-parent-twentyfifteen.events-single.tribe-events-page-template #tribe-events-pg-template,.tribe-theme-twentyfifteen.events-single.tribe-events-page-template #tribe-events-pg-template{padding-top:8.3333%}.tribe-theme-parent-twentyfifteen.events-single.tribe-events-page-template #tribe-events-content,.tribe-theme-twentyfifteen.events-single.tribe-events-page-template #tribe-events-content{padding:8.3333% 10%}.tribe-theme-parent-twentyfifteen.single-tribe_events #tribe-events,.tribe-theme-twentyfifteen.single-tribe_events #tribe-events{background-color:var(--tec-color-background-events)}.tribe-theme-parent-twentyfifteen.single-tribe_events #tribe-events .tribe_events,.tribe-theme-twentyfifteen.single-tribe_events #tribe-events .tribe_events{box-shadow:none;margin-left:0;margin-right:0;padding-top:0}.tribe-theme-parent-twentyfifteen.single-tribe_events #tribe-events .tribe-events-schedule .tribe-events-schedule__datetime,.tribe-theme-twentyfifteen.single-tribe_events #tribe-events .tribe-events-schedule .tribe-events-schedule__datetime{display:inline-block;font-size:1.2em;margin:0}.tribe-theme-parent-twentyfifteen.single-tribe_events #tribe-events p a,.tribe-theme-twentyfifteen.single-tribe_events #tribe-events p a{color:var(--tec-color-link-primary)}.tribe-theme-parent-twentyfifteen.single-tribe_events .tribe-events-single,.tribe-theme-twentyfifteen.single-tribe_events .tribe-events-single{box-shadow:none;margin:0}.tribe-theme-parent-twentyfifteen.tribe-events-week .tribe-events-grid .hentry,.tribe-theme-twentyfifteen.tribe-events-week .tribe-events-grid .hentry{margin-left:0;margin-right:0}.tribe-theme-parent-twentyfifteen .tribe-events-list-widget .type-tribe_events,.tribe-theme-twentyfifteen .tribe-events-list-widget .type-tribe_events{border-top:1px solid #3333331a;box-shadow:none;margin-left:0;margin-right:0}.tribe-theme-parent-twentyfifteen .tribe-events-list-widget .entry-title,.tribe-theme-twentyfifteen .tribe-events-list-widget .entry-title{font-size:22px;line-height:1.4545}.tribe-theme-parent-twentyfifteen.tribe-events-page-template #tribe-events-content-wrapper,.tribe-theme-twentyfifteen.tribe-events-page-template #tribe-events-content-wrapper{padding:3.333%}.tribe-theme-parent-twentyfifteen .tribe-events-list .type-tribe_events,.tribe-theme-parent-twentyfifteen .tribe-events-list .type-tribe_events.tribe-events-first,.tribe-theme-twentyfifteen .tribe-events-list .type-tribe_events,.tribe-theme-twentyfifteen .tribe-events-list .type-tribe_events.tribe-events-first{padding:8.333% 10%}.tribe-theme-parent-twentyfifteen .tribe-events-list .time-details,.tribe-theme-parent-twentyfifteen .tribe-events-list .tribe-events-venue-details,.tribe-theme-twentyfifteen .tribe-events-list .time-details,.tribe-theme-twentyfifteen .tribe-events-list .tribe-events-venue-details{line-height:1.6}.tribe-theme-parent-twentyfifteen .tribe-events-day-time-slot .type-tribe_events,.tribe-theme-twentyfifteen .tribe-events-day-time-slot .type-tribe_events{margin-left:0}.tribe-theme-parent-twentyfifteen .type-tribe_events a.more-link,.tribe-theme-twentyfifteen .type-tribe_events a.more-link{display:none}.tribe-theme-parent-twentyfifteen .datepicker.dropdown-menu,.tribe-theme-twentyfifteen .datepicker.dropdown-menu{max-width:340px}.tribe-theme-parent-twentyfifteen .datepicker.dropdown-menu table,.tribe-theme-parent-twentyfifteen .datepicker.dropdown-menu table.table-condensed,.tribe-theme-twentyfifteen .datepicker.dropdown-menu table,.tribe-theme-twentyfifteen .datepicker.dropdown-menu table.table-condensed{border-left-width:0;border-top-width:0}.tribe-theme-parent-twentyfifteen .tribe-events-calendar td a,.tribe-theme-parent-twentyfifteen .tribe-events-nav-next a,.tribe-theme-parent-twentyfifteen .tribe-events-nav-previous a,.tribe-theme-parent-twentyfifteen ul.tribe-bar-views-list li a,.tribe-theme-twentyfifteen .tribe-events-calendar td a,.tribe-theme-twentyfifteen .tribe-events-nav-next a,.tribe-theme-twentyfifteen .tribe-events-nav-previous a,.tribe-theme-twentyfifteen ul.tribe-bar-views-list li a{border-bottom:none}.tribe-theme-parent-twentyfifteen.events-archive .entry-footer,.tribe-theme-parent-twentyfifteen.single-tribe_events .entry-footer,.tribe-theme-twentyfifteen.events-archive .entry-footer,.tribe-theme-twentyfifteen.single-tribe_events .entry-footer{display:none}.tribe-theme-parent-twentysixteen table.tribe-events-calendar,.tribe-theme-twentysixteen table.tribe-events-calendar{table-layout:auto}.tribe-theme-parent-twentysixteen .tribe-events-single-section-title:first-child,.tribe-theme-twentysixteen .tribe-events-single-section-title:first-child{margin-top:20px}.tribe-theme-parent-twentysixteen .tribe-events-content.entry-summary,.tribe-theme-twentysixteen .tribe-events-content.entry-summary{font-size:inherit;margin-bottom:0;margin-top:5px}.tribe-theme-parent-twentysixteen.events-archive .entry-content,.tribe-theme-parent-twentysixteen.events-archive .entry-header,.tribe-theme-twentysixteen.events-archive .entry-content,.tribe-theme-twentysixteen.events-archive .entry-header{width:auto}.tribe-theme-parent-twentysixteen .datepicker table,.tribe-theme-twentysixteen .datepicker table{border:0;width:auto}.tribe-theme-parent-twentysixteen .entry-content a,.tribe-theme-twentysixteen .entry-content a{box-shadow:none}.tribe-theme-parent-twentysixteen .tribe-events-list-event-title,.tribe-theme-twentysixteen .tribe-events-list-event-title{clear:none}.tribe-theme-twentyseventeen .entry-content a{box-shadow:none}.tribe-theme-twentyseventeen.single-tribe_events .single-featured-image-header{display:none}.tribe-theme-twentyseventeen.page-template-twenty-seventeen.blog:not(.has-sidebar) #primary article{width:100%}.tribe-theme-twentynineteen .tribe-events-tooltip h3.entry-title:before,.tribe-theme-twentynineteen h1.tribe-events-page-title:before,.tribe-theme-twentynineteen h2.tribe-events-day-time-slot-heading:before,.tribe-theme-twentynineteen h2.tribe-events-list-separator-month:before{content:none}.tribe-theme-twentynineteen #tribe-bar-form label{font-family:var(--tec-twentynineteen-font--heading)}.tribe-theme-twentynineteen .tribe-bar-views-inner{padding:19px 0}.tribe-theme-twentynineteen #tribe-events .tribe-events-button{font-family:var(--tec-twentynineteen-font--heading)}.tribe-theme-twentynineteen.single-tribe_events .tribe-events-event-meta{background:none;border:0}.tribe-theme-twentynineteen.single-tribe_events .tribe-events-event-meta .tribe-events-meta-label,.tribe-theme-twentynineteen.single-tribe_events .tribe-events-event-meta dt{font-family:var(--tec-twentynineteen-font--heading)}.tribe-theme-twentynineteen.single-tribe_events .tribe-events-event-meta .tribe-events-meta-group{padding-left:0}.tribe-theme-twentynineteen.single-tribe_events .tribe-events-event-meta .tribe-events-meta-group:last-of-type{padding-right:0}.tribe-theme-twentynineteen.single-tribe_events .tribe-events-event-meta .tribe-events-meta-group .tribe-events-single-section-title{font-size:1.7em}.tribe-theme-twentynineteen.single-tribe_events.tribe-events-page-template #tribe-events-content{padding-left:calc(10% + 60px);padding-right:calc(10% + 60px)}.tribe-theme-twentynineteen.single-tribe_events.tribe-events-page-template .tribe-events-single>.entry{margin-top:2rem}.tribe-theme-twentynineteen .tribe-events-schedule{margin-bottom:.75em;margin-top:1.5em}.tribe-theme-twentynineteen .tribe-events-schedule h2{margin-top:0}.tribe-theme-twentynineteen .tribe-events-loop .tribe-events-event-meta{font-size:.9rem}.tribe-theme-twentynineteen #tribe-bar-views-toggle,.tribe-theme-twentynineteen .tribe-bar-views-option{font-family:var(--tec-twentynineteen-font--heading);font-size:.75rem}.tribe-theme-twentynineteen .tribe-events-tooltip .tribe-event-duration{font-family:var(--tec-twentynineteen-font--body);font-size:.85rem}.tribe-theme-twentynineteen .tribe-events-tooltip .tribe-event-description{font-family:var(--tec-twentynineteen-font--body);font-size:.65rem}.tribe-theme-twentynineteen .tribe-events-tooltip h3.entry-title{font-size:1rem}.tribe-theme-twentytwenty .tribe-events-tooltip h3.entry-title{font-size:2.4rem;margin:0}@media (-o-min-device-pixel-ratio:2/1),(-webkit-min-device-pixel-ratio:2),(min--moz-device-pixel-ratio:2),(min-device-pixel-ratio:2){.tribe-events-tooltip .tribe-events-arrow{background-image:url(/wp-content/plugins/the-events-calendar/build/css/images/tribe-tooltips@2x.2551ccda.png)}#tribe-bar-filters .tribe-bar-button-search .tribe-bar-btn-small{background-image:url(/wp-content/plugins/the-events-calendar/build/css/images/icon-search@2x.3419cb76.png)}#tribe-events-bar .tribe-bar-button-settings span{background-image:url(/wp-content/plugins/the-events-calendar/build/css/images/icon-gear@2x.5f34e663.png)}#tribe-events-bar [class^=tribe-bar-button-]:after{background-image:url(/wp-content/plugins/the-events-calendar/build/css/images/select2x2.688bccf9.png)}.tribe-bar-views span[class^=tribe-icon-]{background-image:url(/wp-content/plugins/the-events-calendar/build/css/images/icon-month@2x.65d104db.png)}.tribe-bar-views span.tribe-icon-list{background-image:url(/wp-content/plugins/the-events-calendar/build/css/images/icon-list@2x.19b336e7.png)}.tribe-bar-views span.tribe-icon-month{background-image:url(/wp-content/plugins/the-events-calendar/build/css/images/icon-month@2x.65d104db.png)}.tribe-bar-views span.tribe-icon-week{background-image:url(/wp-content/plugins/the-events-calendar/build/css/images/icon-week@2x.01274969.png)}.tribe-bar-views span.tribe-icon-day{background-image:url(/wp-content/plugins/the-events-calendar/build/css/images/icon-day@2x.dd22efdb.png)}.tribe-bar-views span.tribe-icon-photo{background-image:url(/wp-content/plugins/the-events-calendar/build/css/images/icon-photo@2x.e898714f.png)}.tribe-bar-views span.tribe-icon-map{background-image:url(/wp-content/plugins/the-events-calendar/build/css/images/icon-map@2x.97fa2308.png)}}.screen-reader-text{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;position:absolute!important;width:1px;word-wrap:normal!important}
.tribe-section-s{padding:5px 0}.tribe-section-s:first-of-type{padding-top:0}.tribe-section-s:last-of-type{padding-bottom:0}.tribe-section-m{padding:10px 0}.tribe-section-m:first-of-type{padding-top:0}.tribe-section-m:last-of-type{padding-bottom:0}.tribe-section-l{padding:20px 0}.tribe-section-l:first-of-type{padding-top:0}.tribe-section-l:last-of-type{padding-bottom:0}:root{--tec-featured-event-bg:#0ea0d7;--tec-twentynineteen-font--body:"NonBreakingSpaceOverride","Hoefler Text","Baskerville Old Face",garamond,"Times New Roman",serif;--tec-twentynineteen-font--heading:-apple-system,blinkmacsystemfont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;--tec-twentynineteen-font--code:menlo,monaco,consolas,lucida console,monospace;--tec-twentynineteen-font--pre:"Courier 10 Pitch",courier,monospace}.tribe-events-user-recurrence-toggle{clear:both;display:block;font-size:12px;font-style:italic;margin-bottom:15px;text-align:center}.tribe-events-user-recurrence-toggle label:hover{cursor:pointer}.tribe-events-user-recurrence-toggle input{margin-right:5px}.tribe-events-grid{border:1px solid #bbb;font-size:12px;margin:0 auto .6em;position:relative;width:100%}.tribe-events-grid,.tribe-events-grid *{box-sizing:border-box}.tribe-events-grid .tribe-scroller{height:500px;overflow:hidden;position:relative;width:100%}.tribe-events-grid .tribe-scroller>.scroller-content{bottom:0;left:0;overflow:scroll;overflow-x:hidden;position:absolute;right:0;top:0}.tribe-events-grid .tribe-scroller>.scroller-content:focus{outline:thin dotted}.tribe-events-grid .tribe-scroller>.scroller-content::-webkit-scrollbar{display:none}.tribe-events-grid .tribe-scroller>.scroller-pane{background:#00000040;border-radius:5px;bottom:0;opacity:.01;position:absolute;right:0;top:0;transition:.2s;visibility:hidden\9;width:10px;z-index:1000}.tribe-events-grid .tribe-scroller>.scroller-pane>.scroller-slider{background:#444;background:#00000080;border-radius:3px;margin:0 1px;position:relative}.tribe-events-grid .scroller-pane.active,.tribe-events-grid .tribe-scroller:hover>.scroller-pane{opacity:.99;visibility:visible\9}.tribe-events-grid .has-scrollbar>.scroller-content::-webkit-scrollbar{display:block}.tribe-events-grid .tribe-grid-content-wrap .column{border-left:1px solid #bbb;display:inline-block;float:left;text-align:center;vertical-align:top;width:14.2857%;zoom:1}.tribe-events-grid .type-tribe_events{padding:4px}.tribe-events-grid .type-tribe_events.hentry{box-shadow:none}.tribe-events-grid div[id*=tribe-events-event-]{visibility:hidden}.page .tribe-events-grid .type-tribe_events h3.entry-title,.tribe-events-grid .type-tribe_events h3.entry-title{color:#333;font-size:12px;height:100%;letter-spacing:0;line-height:1.25;margin:0;overflow:hidden;padding:4px 6px;text-align:left;text-transform:none}.page .tribe-events-grid .type-tribe_events a,.tribe-events-grid .type-tribe_events a{color:#333;display:block;font-size:12px;height:100%;line-height:1.25;outline:none;overflow:hidden;padding:0;width:100%}.tribe-events-grid .tribe-grid-content-wrap .column{position:relative}.tribe-grid-header{background-color:#ddd;border-bottom:1px solid #bbb}.tribe-grid-header .column{letter-spacing:1px;padding:1em 0;text-align:center;text-transform:uppercase}.tribe-grid-header .column a{color:#333;font-weight:700}.tribe-week-grid-wrapper{height:500px;overflow-y:scroll;position:relative}.scroller-pane.flashed{opacity:.99;visibility:visible\9}.tribe-grid-body{overflow:visible;position:relative}.tribe-grid-body .tribe-events-week-hourly-single{margin:4px}.tribe-grid-body .type-tribe_events{height:100%;width:100%}.tribe-grid-body div[id*=tribe-events-event-]{font-weight:700;line-height:1.25;position:absolute;width:94%;z-index:3}.tribe-grid-body div[id*=tribe-events-event-]:hover{background:#dddddde6;border-color:#aaa;z-index:4}.tribe-week-grid-hours{background-color:#fff;position:relative;z-index:20}.tribe-events-grid .column.first,.tribe-week-grid-hours{border-left:0;float:left;margin-right:-40px;width:40px}.tribe-events-grid .column.first div,.tribe-week-grid-hours div{font-size:10px;font-weight:700;height:60px;line-height:1.25;position:relative;text-align:center;text-transform:uppercase}.tribe-grid-content-wrap{float:left;padding-left:40px;width:100%}.tribe-grid-allday .tribe-events-week-allday-single,.tribe-grid-body .tribe-events-week-hourly-single{background-color:#e6e6e6;background-color:#ddddddbf;border:1px solid #ccc;border-radius:3px;cursor:pointer;width:100%}.tribe-grid-allday .column{padding:4px}.tribe-grid-allday .tribe-events-week-allday-single:hover,.tribe-grid-body .type-tribe_events .tribe-events-week-hourly-single:hover{background-color:#e2e2e2;background-color:#ddddddd9}.tribe-grid-allday{background-color:#f9f9f9;border-bottom:1px solid #bbb;position:relative}.tribe-grid-allday .column{min-height:60px}.tribe-grid-allday .column.first{top:0}.tribe-grid-allday .type-tribe_events{margin:0;position:relative}.tribe-grid-allday .type-tribe_events h3.entry-title{padding:0}.tribe-grid-allday .type-tribe_events h3.entry-title a.url{display:inline-block;overflow:hidden;padding:8px 6px;position:relative;text-overflow:ellipsis;white-space:nowrap;z-index:1;zoom:1}.tribe-grid-allday .type-tribe_events.tribe-dayspan2>div{width:200%}.tribe-grid-allday .type-tribe_events.tribe-dayspan3>div{width:300%}.tribe-grid-allday .type-tribe_events.tribe-dayspan4>div{width:400%}.tribe-grid-allday .type-tribe_events.tribe-dayspan5>div{width:500%}.tribe-grid-allday .type-tribe_events.tribe-dayspan6>div{width:600%}.tribe-grid-allday .type-tribe_events.tribe-dayspan7>div{width:700%}.tribe-events-grid div[id*=tribe-events-tooltip-]{text-align:left}.tribe-week-grid-wrapper div[id*=tribe-events-tooltip-]{cursor:default!important}.tribe-grid-body .tribe-events-tooltip .tribe-events-event-body{position:relative}.tribe-grid-body .tribe-events-tooltip .tribe-events-arrow{background-position:-33px 0;bottom:auto;height:18px;left:-11px;top:6px;width:11px}.tribe-grid-body .tribe-events-right .tribe-events-tooltip .tribe-events-arrow{background-position:-20px 0;left:auto;right:-11px}.tribe-events-grid .tribe-grid-header .tribe-week-today{background-color:#666;color:#fff}.tribe-week-grid-outer-wrap{position:relative;z-index:2}.tribe-week-grid-inner-wrap{position:absolute;width:100%}.tribe-week-grid-block{height:60px;margin:0;padding:0}.tribe-week-grid-block div{border-bottom:1px dotted #ddd;border-top:1px solid #ddd;height:30px;margin-bottom:30px}.tribe-events-photo-grid-sizer{width:32%}#tribe-events-content.tribe-events-list{padding:1px 0}.tribe-events-photo-gutter-sizer{width:2%}.isotope,.isotope .isotope-item{transition-duration:.2s}#tribe-events-photo-events{transition-property:height}#tribe-events-photo-events.isotope{opacity:0}#tribe-events-photo-events .isotope-item{transition:.2s ease-in}#tribe-events-photo-events.photo-hidden{opacity:0}#tribe-events-photo-events .tribe-events-photo-event{border-bottom:0;box-sizing:border-box;margin-bottom:20px;padding:0;width:32%}#tribe-events-photo-events .tribe-events-photo-event:after,#tribe-events-photo-events .tribe-events-photo-event:before{content:"";display:table}#tribe-events-photo-events .tribe-events-photo-event:after{clear:both}#tribe-events-photo-events .tribe-event-featured .tribe-events-photo-event-wrap{color:#eee}#tribe-events-photo-events .tribe-event-featured .tribe-events-list-event-title{margin-top:0}#tribe-events-photo-events .tribe-event-featured .tribe-events-event-image{margin:0}.type-tribe_events.tribe-events-photo-event .tribe-events-photo-event-wrap{border:1px solid;border-color:#eee #eee #ddd}.tribe-mobile #tribe-events-photo-events,.tribe-mobile #tribe-events-photo-events.photo-hidden{opacity:1!important}.photo-loader{left:50%;position:absolute;top:200px}.tribe-events-photo-event{padding:4%;position:relative;transition:.1s ease-in}.tribe-events-photo-event-wrap{background:#fafafa}.tribe-events-photo-event-wrap:hover{background:#fff;box-shadow:0 0 10px #0000001a}.tribe-event-featured .tribe-events-photo-event-wrap{background:#0c4e67;color:#fff}.tribe-event-featured .tribe-events-photo-event-wrap a{color:#fff}.tribe-events-list .tribe-events-loop .tribe-events-photo-event .entry-title a{transition:.2s ease-in}.tribe-events-list .tribe-events-loop .tribe-events-photo-event .tribe-events-event-image{float:none;margin:0;width:100%}.tribe-events-list .tribe-events-loop .tribe-events-photo-event .tribe-events-event-cost{display:none}.tribe-events-list .tribe-events-loop .tribe-events-photo-event .date-divider{padding:0 5px}.tribe-events-list .tribe-events-loop .tribe-events-photo-event .tribe-events-event-details{float:none;padding:15px;word-wrap:break-word}.tribe-events-list .tribe-events-loop .tribe-events-photo-event .tribe-events-list-event-description{float:none;margin-top:10px}.tribe-events-list .tribe-events-loop .tribe-events-photo-event .tribe-events-event-meta .recurringinfo{display:block;margin:8px 0 0}.tribe-events-list .tribe-events-loop .type-tribe_events .tribe-events-event-meta{margin:0 0 8px;padding-right:0}.tribe-events-loop .tribe-events-photo-event .time-details,.tribe-events-photo #tribe-events-content .tribe-events-list-event-description p{margin-bottom:0}.tribe-events-photo #tribe-events-content .tribe-events-list-event-description p{line-height:1.45}.tribe-events-photo #tribe-events-content .tribe-events-list-event-description p.tribe-event-categories{font-size:13px;margin-top:1em}.tribe-events-loop .tribe-events-photo-event .recurringinfo .tribe-events-divider{display:none}.tribe-events-list #tribe-events-photo-events .tribe-events-event-details .tribe-events-list-event-title{font-size:1.2em;line-height:1.2;margin-bottom:10px;padding-right:0}.tribe-events-photo .tribe-events-ical{clear:both}#tribe-geo-map-wrapper{background:#eee;border:1px solid #ddd;margin-bottom:20px;padding:2px;position:relative;z-index:2}#tribe-geo-map{height:400px;position:relative;width:100%;z-index:3}#tribe-geo-map label{display:inline;width:auto}#tribe-geo-map img{max-width:none}#tribe-geo-options{background:#fff;border:1px solid #b9b9b9;margin-top:12px;padding:10px;position:absolute;top:auto;z-index:9999}#tribe-geo-options:after,#tribe-geo-options:before{border-bottom:8px solid #b9b9b9;border-left:8px solid #0000;border-right:8px solid #0000;content:"";height:0;left:10px;position:absolute;top:-9px;width:0;z-index:9999}#tribe-geo-options:after{border-bottom-color:#fff;top:-8px}.tribe-bar-collapse #tribe-geo-options{left:auto;position:relative;top:auto}.tribe-bar-collapse #tribe-geo-options:after,.tribe-bar-collapse #tribe-geo-options:before{display:none}#tribe-geo-options .tribe-events-map-event-title,#tribe-geo-results .tribe-events-map-event-title{color:#222;font-size:18px;font-weight:700;line-height:1em;margin:0 0 6px;padding:0}#tribe-geo-options{display:none;margin-bottom:20px}.tribe-geo-option-link{border-bottom:1px solid #eee;color:#444;display:block;padding:3px 6px;-webkit-text-decoration:none;text-decoration:none;transition:.1s ease-in-out}.tribe-geo-option-link:hover{background:#f5f5f5}.tribe-geo-option-link:focus,.tribe-geo-option-link:hover{-webkit-text-decoration:none;text-decoration:none}.tribe-geo-option-link.tribe-option-loaded:hover,.tribe-option-loaded{background:#666;color:#fff}.tribe-bar-collapse .tribe-geo-option-link{padding:10px}.timer{color:red;margin:20px 0;text-align:center;width:100%}#tribe-geo-results .tribe-event-featured{color:#ffffffb3}#tribe-geo-results .tribe-event-featured .tribe-event-title a,#tribe-geo-results .tribe-event-featured .tribe-events-list-event-title a,#tribe-geo-results .tribe-event-featured .tribe-events-title a{color:#fff}#tribe-geo-results .tribe-event-featured .tribe-events-duration,#tribe-geo-results .tribe-event-featured .tribe-events-event-meta{color:#ffffffb3;font-weight:400}#tribe-geo-results .tribe-event-featured .tribe-events-content{color:#ffffffe6}#tribe-geo-results .tribe-event-featured a{color:#ffffffb3}#tribe-geo-results .tribe-event-featured a:active,#tribe-geo-results .tribe-event-featured a:hover{color:#ffffffe6}#tribe-geo-results #tribe_events_filters_wrapper{display:none}#tribe-geo-results #tribe-events-content{float:none;width:100%}#tribe-geo-results .tribe-event-featured .tribe-events-map-event-title{margin-top:1.5rem}.tribe-events-distance{background-color:#666;border-radius:3px;color:#fff;display:inline-block;font-size:14px;font-weight:700;margin:2.5em 0 1em;padding:6px 10px}#tribe-geo-loading{background:#fff3;background:#fff;display:none;height:100%;left:0;position:absolute;top:0;transition:all 1s linear;width:100%;z-index:4}#tribe-geo-loading img{left:50%;margin:-16px 0 0 -16px;position:absolute;top:50%}.tribe-events-venue .tribe-events-map-wrap{background:#eee;border:1px solid #ddd;border-radius:3px;float:right;margin:5px 0 30px 30px;padding:5px;width:50%}.tribe-events-venue h3.tribe-events-upcoming{font-size:1.3em;margin-bottom:30px}.tribe-events-venue .tribe-events-user-recurrence-toggle{display:none}.tribe-events-venue .tribe-events-event-meta{border:0}.tribe-events-venue .tribe-events-venue-meta{border-bottom:1px solid #ddd;margin:0 0 30px;padding:0 0 30px}#tribe-events-content.tribe-events-venue{padding:0}.tribe-events-venue-meta h2.entry-title{display:inline;font-size:1.4em;line-height:1.4;margin:0;padding:0}.tribe-events-venue-meta address{font-style:normal;font-weight:700;margin:0}.tribe-events-venue address.venue-address{display:block}.tribe-events-venue address.venue-address span{line-height:1;margin:5px 0}.tribe-events-venue address.venue-address span.tel,.tribe-events-venue address.venue-address span.url{display:block}.tribe-events-venue .tribe-venue-description{margin:3% 0 0}#tribe-events-content.tribe-events-organizer{padding:0}.single-tribe_organizer .tribe_organizer h2.entry-title{font-size:1.6em;margin:0 0 .5em;padding:0}.tribe-events-organizer .tribe-events-event-meta{border:0}.tribe-events-organizer .tribe-events-organizer-meta{border-bottom:1px solid #ddd;margin-bottom:30px;padding-bottom:30px}.tribe-events-organizer address.organizer-address{font-style:normal;font-weight:700;margin-bottom:1.25em;word-wrap:break-word}.tribe-events-organizer address.organizer-address span{line-height:1;white-space:pre}.tribe-events-organizer .tribe-organizer-description{margin-bottom:1em}.tribe-events-organizer .tribe-events-divider{margin:0 10px}.tribe-events-organizer .tribe-events-user-recurrence-toggle{display:none}.related-events-title{font-size:18px;line-height:1.4}ul.related-events{display:block;margin:0}ul.related-events li{display:block;float:left;list-style-type:none;min-width:160px;position:relative;vertical-align:text-bottom}.related-event-date{font-size:.75em;text-transform:uppercase}.tribe-events-related-events-title{font-size:1.4em;margin-bottom:2%}.post .tribe-events-single ul.tribe-related-events,.tribe-events-single ul.tribe-related-events{border:none;margin:0 0 8%;padding:0}.tribe-events-single ul.tribe-related-events li{float:left;font-size:.9em;font-weight:400;list-style:none;margin:0 4% 2% 0;padding:0;width:29.3333%}.tribe-events-single ul.tribe-related-events li .date-divider{padding:0 5px}.tribe-events-single ul.tribe-related-events li .tribe-related-event-info{padding:8%}.tribe-events-single ul.tribe-related-events .tribe-related-events-thumbnail img{border:none;height:auto;margin:0;max-width:100%;padding:0;width:100%}.tribe-events-single ul.tribe-related-events .tribe-related-events-title{font-size:16px;line-height:1.5;margin:0 0 10px}.tribe-events-single ul.tribe-related-events .recurringinfo{display:block;margin:4% 0}.tribe-events-single ul.tribe-related-events .recurringinfo .tribe-events-divider{display:none}.tribe-events-week.tribe-theme-twentythirteen .tribe-grid-content-wrap .hentry{padding:4px}.tribe-theme-twentyfifteen #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-list-event-title{line-height:1.2}.tribe-theme-twentyfifteen #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-list-event-title a{border:0;-webkit-text-decoration:none;text-decoration:none}.tribe-theme-twentyfifteen #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-event-meta{line-height:1.2;margin:10px 0}.tribe-theme-twentyfifteen #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-list-photo-description{font-size:.9em;line-height:1.5}.tribe-theme-twentyfifteen #tribe-events .tribe-events-venue-meta .tribe-events-event-meta{font-size:14px;line-height:1.3;margin-top:10px}.tribe-theme-twentyfifteen #tribe-events .tribe-events-venue-meta .tribe-events-map-wrap{margin-bottom:20px}.tribe-theme-twentyfifteen #tribe-events .tribe-events-venue-meta .tribe-events-event-meta .venue-address .location{display:block;margin:10px 0 5px}.tribe-theme-twentyfifteen #tribe-events .tribe-events-venue-meta .tribe-events-event-meta .venue-address .tel{margin:5px 0 8px}.tribe-theme-twentyfifteen #tribe-events .tribe-events-venue-meta .tribe-venue-description{clear:both;display:block;float:left;padding-left:0;padding-right:0}.tribe-theme-twentyfifteen.single-tribe_events #tribe-events .tribe-events-venue-meta{float:left}.tribe-theme-twentysixteen .tribe-grid-body div[id*=tribe-events-event-]{z-index:80}.tribe-theme-twentysixteen .tribe-grid-body div[id*=tribe-events-event-]:hover{z-index:81}.tribe-theme-twentysixteen .tribe-grid-body .tribe-events-tooltip p:last-child{margin-bottom:0}.tribe-theme-twentysixteen .tribe-events-grid a:hover{color:#fff}.tribe-theme-twentysixteen .tribe-events-list-photo-description ol,.tribe-theme-twentysixteen .tribe-events-list-photo-description ul{margin-left:1.25em}.tribe-events-list-photo-description,.tribe-theme-twentysixteen .tribe-events-list-photo-description{width:100%}.tribe-theme-twentynineteen .tribe-events-grid .column.first div,.tribe-theme-twentynineteen .tribe-grid-allday .column.first,.tribe-theme-twentynineteen .tribe-grid-header .column span,.tribe-theme-twentynineteen .tribe-week-grid-hours div{font-family:var(--tec-twentynineteen-font--heading)}.tribe-theme-twentynineteen .tribe-events-list #tribe-events-photo-events .tribe-events-event-details .tribe-events-list-event-title{font-size:1.1rem}.tribe-theme-twentynineteen #tribe-geo-options .tribe-events-map-event-title,.tribe-theme-twentynineteen #tribe-geo-results .tribe-events-map-event-title{font-size:1.4rem}.tribe-bar-geoloc-filter,.tribe-events-uses-geolocation .tribe-bar-date-filter,.tribe-events-uses-geolocation .tribe-bar-search-filter,.tribe-events-uses-geolocation .tribe-bar-submit{float:left;margin-bottom:0;padding:15px;width:25%}.tribe-events-uses-geolocation .tribe-bar-submit{margin-left:0}.tribe-bar-mini .tribe-bar-geoloc-filter,.tribe-events-uses-geolocation .tribe-bar-mini .tribe-bar-date-filter,.tribe-events-uses-geolocation .tribe-bar-mini .tribe-bar-search-filter,.tribe-events-uses-geolocation .tribe-bar-mini .tribe-bar-submit{padding:10px}.tribe-events-shortcode .tribe-bar-search-filter{width:25%}.tribe-events-shortcode .tribe-bar-submit{float:left;margin-bottom:0;margin-left:0;padding:10px;width:25%}.tribe-events-shortcode .tribe-events-month table .type-tribe_events{border-bottom:1px solid #e7e7e7;margin:0 5%;padding:6px 8px}.tribe-events-shortcode .tribe-events-month table .tribe-events-last{border-bottom:0}.elementor-editor-active .tribe-events-schedule .recurringinfo .tribe-events-divider{display:none}
/*!
 * jQuery UI CSS Framework 1.8.23
 *
 * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Theming/API
 */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden { display: none; }
.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
.ui-helper-clearfix:before, .ui-helper-clearfix:after { content: ""; display: table; }
.ui-helper-clearfix:after { clear: both; }
.ui-helper-clearfix { zoom: 1; }
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }


/* Interaction Cues
----------------------------------*/
.ui-state-disabled { cursor: default !important; }


/* Icons
----------------------------------*/

/* states and images */
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }


/*!
 * jQuery UI CSS Framework 1.8.23
 *
 * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Theming/API
 *
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana,Arial,sans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=03_highlight_soft.png&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=01_flat.png&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=02_glass.png&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=02_glass.png&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=02_glass.png&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=02_glass.png&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=02_glass.png&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=01_flat.png&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=01_flat.png&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
 */


/* Component containers
----------------------------------*/
.ui-widget { font-family: Verdana,Arial,sans-serif; font-size: 1.1em; }
.ui-widget .ui-widget { font-size: 1em; }
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif; font-size: 1em; }
.ui-widget-content { border: 1px solid #aaaaaa; background: #ffffff url(/wp-content/plugins/the-events-calendar/vendor/jquery/smoothness/images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x; color: #222222; }
.ui-widget-content a { color: #222222; }
.ui-widget-header { border: 1px solid #aaaaaa; background: #cccccc url(/wp-content/plugins/the-events-calendar/vendor/jquery/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x; color: #222222; font-weight: bold; }
.ui-widget-header a { color: #222222; }

/* Interaction states
----------------------------------*/
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #d3d3d3; background: #e6e6e6 url(/wp-content/plugins/the-events-calendar/vendor/jquery/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #555555; }
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555; text-decoration: none; }
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #999999; background: #dadada url(/wp-content/plugins/the-events-calendar/vendor/jquery/smoothness/images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #212121; }
.ui-state-hover a, .ui-state-hover a:hover { color: #212121; text-decoration: none; }
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #aaaaaa; background: #ffffff url(/wp-content/plugins/the-events-calendar/vendor/jquery/smoothness/images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #212121; }
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121; text-decoration: none; }
.ui-widget :active { outline: none; }

/* Interaction Cues
----------------------------------*/
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight  {border: 1px solid #fcefa1; background: #fbf9ee url(/wp-content/plugins/the-events-calendar/vendor/jquery/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png) 50% 50% repeat-x; color: #363636; }
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }
.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a; background: #fef1ec url(/wp-content/plugins/the-events-calendar/vendor/jquery/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x; color: #cd0a0a; }
.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a; }
.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a; }
.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
.ui-priority-secondary, .ui-widget-content .ui-priority-secondary,  .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }

/* Icons
----------------------------------*/

/* states and images */
.ui-icon { width: 16px; height: 16px; background-image: url(/wp-content/plugins/the-events-calendar/vendor/jquery/smoothness/images/ui-icons_222222_256x240.png); }
.ui-widget-content .ui-icon {background-image: url(/wp-content/plugins/the-events-calendar/vendor/jquery/smoothness/images/ui-icons_222222_256x240.png); }
.ui-widget-header .ui-icon {background-image: url(/wp-content/plugins/the-events-calendar/vendor/jquery/smoothness/images/ui-icons_222222_256x240.png); }
.ui-state-default .ui-icon { background-image: url(/wp-content/plugins/the-events-calendar/vendor/jquery/smoothness/images/ui-icons_888888_256x240.png); }
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(/wp-content/plugins/the-events-calendar/vendor/jquery/smoothness/images/ui-icons_454545_256x240.png); }
.ui-state-active .ui-icon {background-image: url(/wp-content/plugins/the-events-calendar/vendor/jquery/smoothness/images/ui-icons_454545_256x240.png); }
.ui-state-highlight .ui-icon {background-image: url(/wp-content/plugins/the-events-calendar/vendor/jquery/smoothness/images/ui-icons_2e83ff_256x240.png); }
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(/wp-content/plugins/the-events-calendar/vendor/jquery/smoothness/images/ui-icons_cd0a0a_256x240.png); }

/* positioning */
.ui-icon-carat-1-n { background-position: 0 0; }
.ui-icon-carat-1-ne { background-position: -16px 0; }
.ui-icon-carat-1-e { background-position: -32px 0; }
.ui-icon-carat-1-se { background-position: -48px 0; }
.ui-icon-carat-1-s { background-position: -64px 0; }
.ui-icon-carat-1-sw { background-position: -80px 0; }
.ui-icon-carat-1-w { background-position: -96px 0; }
.ui-icon-carat-1-nw { background-position: -112px 0; }
.ui-icon-carat-2-n-s { background-position: -128px 0; }
.ui-icon-carat-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -64px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -64px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-off { background-position: -96px -144px; }
.ui-icon-radio-on { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; -khtml-border-top-left-radius: 4px; border-top-left-radius: 4px; }
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; -khtml-border-top-right-radius: 4px; border-top-right-radius: 4px; }
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; -khtml-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; }
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; -khtml-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }

/* Overlays */
.ui-widget-overlay { background: #aaaaaa url(/wp-content/plugins/the-events-calendar/vendor/jquery/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); }
.ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #aaaaaa url(/wp-content/plugins/the-events-calendar/vendor/jquery/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -khtml-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; }/*!
 * jQuery UI Resizable 1.8.23
 *
 * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Resizable#theming
 */
.ui-resizable { position: relative;}
.ui-resizable-handle { position: absolute;font-size: 0.1px; display: block; }
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}/*!
 * jQuery UI Selectable 1.8.23
 *
 * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Selectable#theming
 */
.ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }
/*!
 * jQuery UI Accordion 1.8.23
 *
 * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Accordion#theming
 */
/* IE/Win - Fix animation bug - #4615 */
.ui-accordion { width: 100%; }
.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; }
.ui-accordion .ui-accordion-li-fix { display: inline; }
.ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
.ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; }
.ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; }
.ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; }
.ui-accordion .ui-accordion-content-active { display: block; }
/*!
 * jQuery UI Autocomplete 1.8.23
 *
 * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Autocomplete#theming
 */
.ui-autocomplete { position: absolute; cursor: default; }	

/* workarounds */
* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */

/*
 * jQuery UI Menu 1.8.23
 *
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Menu#theming
 */
.ui-menu {
	list-style:none;
	padding: 2px;
	margin: 0;
	display:block;
	float: left;
}
.ui-menu .ui-menu {
	margin-top: -3px;
}
.ui-menu .ui-menu-item {
	margin:0;
	padding: 0;
	zoom: 1;
	float: left;
	clear: left;
	width: 100%;
}
.ui-menu .ui-menu-item a {
	text-decoration:none;
	display:block;
	padding:.2em .4em;
	line-height:1.5;
	zoom:1;
}
.ui-menu .ui-menu-item a.ui-state-hover,
.ui-menu .ui-menu-item a.ui-state-active {
	font-weight: normal;
	margin: -1px;
}
/*!
 * jQuery UI Button 1.8.23
 *
 * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Button#theming
 */
.ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; text-decoration: none !important; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */
.ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */
button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */
.ui-button-icons-only { width: 3.4em; } 
button.ui-button-icons-only { width: 3.7em; } 

/*button text element */
.ui-button .ui-button-text { display: block; line-height: 1.4;  }
.ui-button-text-only .ui-button-text { padding: .4em 1em; }
.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; }
.ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; }
.ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; }
.ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; }
/* no icon support for input elements, provide padding by default */
input.ui-button { padding: .4em 1em; }

/*button icon element(s) */
.ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { position: absolute; top: 50%; margin-top: -8px; }
.ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; }
.ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; }
.ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
.ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }

/*button sets*/
.ui-buttonset { margin-right: 7px; }
.ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; }

/* workarounds */
button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */
/*!
 * jQuery UI Dialog 1.8.23
 *
 * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Dialog#theming
 */
.ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; }
.ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative;  }
.ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; } 
.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
.ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
.ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
.ui-draggable .ui-dialog-titlebar { cursor: move; }
/*!
 * jQuery UI Slider 1.8.23
 *
 * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Slider#theming
 */
.ui-slider { position: relative; text-align: left; }
.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; }

.ui-slider-horizontal { height: .8em; }
.ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
.ui-slider-horizontal .ui-slider-range-min { left: 0; }
.ui-slider-horizontal .ui-slider-range-max { right: 0; }

.ui-slider-vertical { width: .8em; height: 100px; }
.ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
.ui-slider-vertical .ui-slider-range-min { bottom: 0; }
.ui-slider-vertical .ui-slider-range-max { top: 0; }/*!
 * jQuery UI Tabs 1.8.23
 *
 * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Tabs#theming
 */
.ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
.ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }
.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; }
.ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; }
.ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; }
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }
.ui-tabs .ui-tabs-hide { display: none !important; }
/*!
 * jQuery UI Datepicker 1.8.23
 *
 * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Datepicker#theming
 */
.ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; }
.ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; height: 2em;}
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; }
.ui-datepicker .ui-datepicker-prev { left:2px; }
.ui-datepicker .ui-datepicker-next { right:2px; }
.ui-datepicker .ui-datepicker-prev-hover { left:1px; }
.ui-datepicker .ui-datepicker-next-hover { right:1px; }
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px;  }
.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; position: relative; top: -1px;}
.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
.ui-datepicker select.ui-datepicker-month, 
.ui-datepicker select.ui-datepicker-year { width: 49%;}
.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0;  }
.ui-datepicker td { border: 0; padding: 1px; }
.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi { width:auto; }
.ui-datepicker-multi .ui-datepicker-group { float:left; }
.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
.ui-datepicker-row-break { clear:both; width:100%; font-size:0em; }

/* RTL support */
.ui-datepicker-rtl { direction: rtl; }
.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
.ui-datepicker-rtl .ui-datepicker-group { float:right; }
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }

/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
.ui-datepicker-cover {
    position: absolute; /*must have*/
    z-index: -1; /*must have*/
    filter: mask(); /*must have*/
    top: -4px; /*must have*/
    left: -4px; /*must have*/
    width: 200px; /*must have*/
    height: 200px; /*must have*/
}/*!
 * jQuery UI Progressbar 1.8.23
 *
 * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Progressbar#theming
 */
.ui-progressbar { height:2em; text-align: left; overflow: hidden; }
.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }
/*!
 * Datepicker for Bootstrap v1.10.0 (https://github.com/uxsolutions/bootstrap-datepicker)
 *
 * Licensed under the Apache License v2.0 (https://www.apache.org/licenses/LICENSE-2.0)
 */.datepicker-dropdown:after,.datepicker-dropdown:before{content:'';border-top:0;display:inline-block;position:absolute}.datepicker{padding:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;direction:ltr}.datepicker-inline{width:220px}.datepicker-rtl{direction:rtl}.datepicker-rtl.dropdown-menu{left:auto}.datepicker-rtl table tr td span{float:right}.datepicker-dropdown{top:0;left:0}.datepicker-dropdown:before{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid rgba(0,0,0,.2)}.datepicker-dropdown:after{border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff}.datepicker-dropdown.datepicker-orient-left:before{left:6px}.datepicker-dropdown.datepicker-orient-left:after{left:7px}.datepicker-dropdown.datepicker-orient-right:before{right:6px}.datepicker-dropdown.datepicker-orient-right:after{right:7px}.datepicker-dropdown.datepicker-orient-bottom:before{top:-7px}.datepicker-dropdown.datepicker-orient-bottom:after{top:-6px}.datepicker-dropdown.datepicker-orient-top:before{bottom:-7px;border-bottom:0;border-top:7px solid #999}.datepicker-dropdown.datepicker-orient-top:after{bottom:-6px;border-bottom:0;border-top:6px solid #fff}.datepicker table{margin:0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.datepicker td>button,.datepicker th>button{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;border:none;height:100%;text-align:center;width:100%}.table-striped .datepicker table tr td,.table-striped .datepicker table tr th{background-color:transparent}.datepicker table tr td button.day.focused,.datepicker table tr td button.day:hover{background:#eee;cursor:pointer}.datepicker table tr td button.new,.datepicker table tr td button.old,.datepicker table tr td span.new,.datepicker table tr td span.old,.datepicker-grid>button.new,.datepicker-grid>button.old{color:#999}.datepicker table tr td button.disabled,.datepicker table tr td button.disabled:hover,.datepicker table tr td span.disabled,.datepicker table tr td span.disabled:hover,.datepicker-grid>button:disabled{background:0 0;color:#999;cursor:default}.datepicker table tr td button.highlighted{background:#d9edf7;border-radius:0}.datepicker table tr td button.today,.datepicker table tr td button.today.disabled,.datepicker table tr td button.today.disabled:hover,.datepicker table tr td button.today:hover{background-color:#fde19a;background-image:-moz-linear-gradient(to bottom,#fdd49a,#fdf59a);background-image:-ms-linear-gradient(to bottom,#fdd49a,#fdf59a);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fdd49a),to(#fdf59a));background-image:-webkit-linear-gradient(to bottom,#fdd49a,#fdf59a);background-image:-o-linear-gradient(to bottom,#fdd49a,#fdf59a);background-image:linear-gradient(to bottom,#fdd49a,#fdf59a);background-repeat:repeat-x;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);color:#000}.datepicker table tr td button.today.active,.datepicker table tr td button.today.disabled,.datepicker table tr td button.today.disabled.active,.datepicker table tr td button.today.disabled.disabled,.datepicker table tr td button.today.disabled:active,.datepicker table tr td button.today.disabled:hover,.datepicker table tr td button.today.disabled:hover.active,.datepicker table tr td button.today.disabled:hover.disabled,.datepicker table tr td button.today.disabled:hover:active,.datepicker table tr td button.today.disabled:hover:hover,.datepicker table tr td button.today.disabled:hover[disabled],.datepicker table tr td button.today.disabled[disabled],.datepicker table tr td button.today:active,.datepicker table tr td button.today:hover,.datepicker table tr td button.today:hover.active,.datepicker table tr td button.today:hover.disabled,.datepicker table tr td button.today:hover:active,.datepicker table tr td button.today:hover:hover,.datepicker table tr td button.today:hover[disabled],.datepicker table tr td button.today[disabled]{background-color:#fdf59a}.datepicker table tr td button.today:hover:hover{color:#000}.datepicker table tr td button.today.active:hover{color:#fff}.datepicker table tr td button.range,.datepicker table tr td button.range.disabled,.datepicker table tr td button.range.disabled:hover,.datepicker table tr td button.range:hover{background:#eee;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.datepicker table tr td button.range.today,.datepicker table tr td button.range.today.disabled,.datepicker table tr td button.range.today.disabled:hover,.datepicker table tr td button.range.today:hover{background-color:#f3d17a;background-image:-moz-linear-gradient(to bottom,#f3c17a,#f3e97a);background-image:-ms-linear-gradient(to bottom,#f3c17a,#f3e97a);background-image:-webkit-gradient(linear,0 0,0 100%,from(#f3c17a),to(#f3e97a));background-image:-webkit-linear-gradient(to bottom,#f3c17a,#f3e97a);background-image:-o-linear-gradient(to bottom,#f3c17a,#f3e97a);background-image:linear-gradient(to bottom,#f3c17a,#f3e97a);background-repeat:repeat-x;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.datepicker table tr td button.range.today.active,.datepicker table tr td button.range.today.disabled,.datepicker table tr td button.range.today.disabled.active,.datepicker table tr td button.range.today.disabled.disabled,.datepicker table tr td button.range.today.disabled:active,.datepicker table tr td button.range.today.disabled:hover,.datepicker table tr td button.range.today.disabled:hover.active,.datepicker table tr td button.range.today.disabled:hover.disabled,.datepicker table tr td button.range.today.disabled:hover:active,.datepicker table tr td button.range.today.disabled:hover:hover,.datepicker table tr td button.range.today.disabled:hover[disabled],.datepicker table tr td button.range.today.disabled[disabled],.datepicker table tr td button.range.today:active,.datepicker table tr td button.range.today:hover,.datepicker table tr td button.range.today:hover.active,.datepicker table tr td button.range.today:hover.disabled,.datepicker table tr td button.range.today:hover:active,.datepicker table tr td button.range.today:hover:hover,.datepicker table tr td button.range.today:hover[disabled],.datepicker table tr td button.range.today[disabled]{background-color:#f3e97a}.datepicker table tr td button.selected,.datepicker table tr td button.selected.disabled,.datepicker table tr td button.selected.disabled:hover,.datepicker table tr td button.selected:hover{background-color:#9e9e9e;background-image:-moz-linear-gradient(to bottom,#b3b3b3,grey);background-image:-ms-linear-gradient(to bottom,#b3b3b3,grey);background-image:-webkit-gradient(linear,0 0,0 100%,from(#b3b3b3),to(grey));background-image:-webkit-linear-gradient(to bottom,#b3b3b3,grey);background-image:-o-linear-gradient(to bottom,#b3b3b3,grey);background-image:linear-gradient(to bottom,#b3b3b3,grey);background-repeat:repeat-x;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.datepicker table tr td button.selected.active,.datepicker table tr td button.selected.disabled,.datepicker table tr td button.selected.disabled.active,.datepicker table tr td button.selected.disabled.disabled,.datepicker table tr td button.selected.disabled:active,.datepicker table tr td button.selected.disabled:hover,.datepicker table tr td button.selected.disabled:hover.active,.datepicker table tr td button.selected.disabled:hover.disabled,.datepicker table tr td button.selected.disabled:hover:active,.datepicker table tr td button.selected.disabled:hover:hover,.datepicker table tr td button.selected.disabled:hover[disabled],.datepicker table tr td button.selected.disabled[disabled],.datepicker table tr td button.selected:active,.datepicker table tr td button.selected:hover,.datepicker table tr td button.selected:hover.active,.datepicker table tr td button.selected:hover.disabled,.datepicker table tr td button.selected:hover:active,.datepicker table tr td button.selected:hover:hover,.datepicker table tr td button.selected:hover[disabled],.datepicker table tr td button.selected[disabled]{background-color:grey}.datepicker table tr td button.active,.datepicker table tr td button.active.disabled,.datepicker table tr td button.active.disabled:hover,.datepicker table tr td button.active:hover,.datepicker table tr td span.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active:hover,.datepicker-grid>button.active,.datepicker-grid>button.active:hover{background-color:#006dcc;background-image:-moz-linear-gradient(to bottom,#08c,#04c);background-image:-ms-linear-gradient(to bottom,#08c,#04c);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#04c));background-image:-webkit-linear-gradient(to bottom,#08c,#04c);background-image:-o-linear-gradient(to bottom,#08c,#04c);background-image:linear-gradient(to bottom,#08c,#04c);background-repeat:repeat-x;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.datepicker table tr td button.active.active,.datepicker table tr td button.active.disabled,.datepicker table tr td button.active.disabled.active,.datepicker table tr td button.active.disabled.disabled,.datepicker table tr td button.active.disabled:active,.datepicker table tr td button.active.disabled:hover,.datepicker table tr td button.active.disabled:hover.active,.datepicker table tr td button.active.disabled:hover.disabled,.datepicker table tr td button.active.disabled:hover:active,.datepicker table tr td button.active.disabled:hover:hover,.datepicker table tr td button.active.disabled:hover[disabled],.datepicker table tr td button.active.disabled[disabled],.datepicker table tr td button.active:active,.datepicker table tr td button.active:hover,.datepicker table tr td button.active:hover.active,.datepicker table tr td button.active:hover.disabled,.datepicker table tr td button.active:hover:active,.datepicker table tr td button.active:hover:hover,.datepicker table tr td button.active:hover[disabled],.datepicker table tr td button.active[disabled]{background-color:#04c}.datepicker table tr td span{display:block;width:23%;height:54px;line-height:54px;float:left;margin:1%;cursor:pointer;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.datepicker .datepicker-switch:hover,.datepicker .next:hover,.datepicker .prev:hover,.datepicker table tr td span.focused,.datepicker table tr td span:hover,.datepicker tfoot tr th:hover,.datepicker-grid>button.focused,.datepicker-grid>button:hover{background:#eee}.datepicker-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:4px;padding:4px}.datepicker-grid>button{display:flex;align-items:center;justify-content:center;width:100%;height:100%;min-height:54px;cursor:pointer;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;background:0 0;border:none;padding:0;margin:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;font:inherit;color:inherit;text-align:center}.datepicker table tr td span.active.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled.disabled,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active.disabled:hover.active,.datepicker table tr td span.active.disabled:hover.disabled,.datepicker table tr td span.active.disabled:hover:active,.datepicker table tr td span.active.disabled:hover:hover,.datepicker table tr td span.active.disabled:hover[disabled],.datepicker table tr td span.active.disabled[disabled],.datepicker table tr td span.active:active,.datepicker table tr td span.active:hover,.datepicker table tr td span.active:hover.active,.datepicker table tr td span.active:hover.disabled,.datepicker table tr td span.active:hover:active,.datepicker table tr td span.active:hover:hover,.datepicker table tr td span.active:hover[disabled],.datepicker table tr td span.active[disabled]{background-color:#04c}.datepicker-grid>.century,.datepicker-grid>.decade,.datepicker-grid>.month,.datepicker-grid>.year{width:auto}.datepicker .datepicker-switch{width:145px}.datepicker .datepicker-switch button,.datepicker .next button,.datepicker .prev button,.datepicker tfoot tr th button,.input-append.date .add-on,.input-prepend.date .add-on{cursor:pointer}.datepicker .next.disabled,.datepicker .prev.disabled{visibility:hidden}.datepicker .cw{font-size:10px;width:12px;padding:0 2px 0 5px;vertical-align:middle}.input-append.date .add-on i,.input-prepend.date .add-on i{margin-top:3px}.input-daterange input{text-align:center}.input-daterange input:first-child{-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.input-daterange input:last-child{-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0}.input-daterange .add-on{display:inline-block;width:auto;min-width:16px;height:20px;padding:4px 5px;font-weight:400;line-height:20px;text-align:center;text-shadow:0 1px 0 #fff;vertical-align:middle;background-color:#eee;border:1px solid #ccc;margin-left:-5px;margin-right:-5px}.datepicker.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;float:left;display:none;min-width:160px;list-style:none;background-color:#fff;border:1px solid rgba(0,0,0,.2);-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;color:#333;font-size:13px;line-height:20px}
.tribe-events-back{margin:0 0 20px}.events-list .tribe-events-back.tribe-events-loop{margin:0 auto 20px}.tribe-events-read-more{display:block}.event .entry-title{line-height:inherit;padding:inherit}.updated-info{height:0;text-indent:-9999px}.tribe-events-event-schedule-details{display:inline}.events-archive .entry-content,.events-archive .entry-header{width:98%}.events-archive span.edit-link{display:none}.tribe-events-notices{background:#d9edf7;border:1px solid #bce8f1;border-radius:4px;color:#3a87ad;margin:10px 0 18px;padding:8px 35px 8px 14px;text-shadow:0 1px 0 #fff}div.tribe-events-notices>ul,div.tribe-events-notices>ul>li{list-style:none;margin:0;padding:0}.clearfix:after,.clearfix:before,.tribe-clearfix:after,.tribe-clearfix:before{content:"";display:table}.clearfix:after,.tribe-clearfix:after{clear:both}.clearfix,.tribe-clearfix{zoom:1}.tribe-clear{clear:both}.tribe-events-visuallyhidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.tribe-hide-text{overflow:hidden;text-indent:100%;white-space:nowrap}.tribe-events-error{display:none}.tribe-events-multi-event-day{color:#0f81bb}#tribe-events-content .tribe-events-abbr{border-bottom:0;cursor:default}.tribe-events-spinner{height:32px;margin-left:-16px;width:32px}.tribe-events-spinner-medium{height:24px;margin-left:-12px;width:24px}.tribe-events-spinner-small{height:16px;margin-left:-8px;width:16px}*+html .events-archive .tribe-events-page-title{padding-bottom:30px}*+html .events-archive .tribe-events-list .tribe-events-page-title{padding-bottom:0}*+html #tribe-events-header{margin-bottom:30px}.tribe-events-page-title{position:relative;text-align:center;z-index:0}.tribe-events-filter-view.events-list .tribe-events-page-title{float:none;width:100%}.tribe-events-page-title a{color:#000}.tribe-events-page-title a:focus,.tribe-events-page-title a:hover{color:#333;-webkit-text-decoration:underline;text-decoration:underline}#tribe-events-footer,#tribe-events-header{margin-bottom:.5em;overflow:hidden}#tribe-events-footer .tribe-events-sub-nav,#tribe-events-header .tribe-events-sub-nav{line-height:normal;list-style-type:none;margin:0;overflow:hidden;text-align:center}#tribe-events-footer .tribe-events-sub-nav li,#tribe-events-header .tribe-events-sub-nav li{display:inline-block;margin:0;vertical-align:middle;zoom:1}#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-previous,#tribe-events-header .tribe-events-sub-nav .tribe-events-nav-previous{margin-right:5px}#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-next,#tribe-events-header .tribe-events-sub-nav .tribe-events-nav-next{margin-left:5px}#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-left,#tribe-events-header .tribe-events-sub-nav .tribe-events-nav-left{text-align:left}#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-right,#tribe-events-header .tribe-events-sub-nav .tribe-events-nav-right{text-align:right}.tribe-events-ajax-loading{box-shadow:none;display:none;left:50%;position:absolute}.tribe-events-loading .tribe-events-ajax-loading{display:block}#tribe-events-footer{margin-bottom:1em}.events-list #tribe-events-footer,.tribe-events-day #tribe-events-footer,.tribe-events-map #tribe-events-footer{margin:1.25em 0 18px}.single-tribe_events #tribe-events-header,.tribe-events-map #tribe-events-header{margin:24px 0 14px}.single-tribe_events #tribe-events-footer li,.single-tribe_events #tribe-events-header li{padding-bottom:10px;width:48%}#tribe-events-content ul.tribe-events-sub-nav{list-style-type:none;margin:0;overflow:hidden;text-align:center}#tribe-events-content ul.tribe-events-sub-nav li{display:inline-block;margin:0;vertical-align:middle;zoom:1}#tribe-events-content ul.tribe-events-sub-nav li.tribe-events-nav-prev{margin-right:5px}#tribe-events-content ul.tribe-events-sub-nav li.tribe-events-nav-next{margin-left:5px}#tribe-events-content li.tribe-events-nav-date{padding-top:16px}select.tribe-events-dropdown{font-size:11px;margin:33px 9px 0 0;width:auto}#tribe-events-events-picker,#tribe-events-picker{display:inline}.tribe-events-day .tribe-events-day-time-slot .tribe-events-day-time-slot-heading{font-size:14px;font-weight:700;margin:2.5em 0 0;text-transform:uppercase}.tribe-events-day .tribe-events-day-time-slot .type-tribe_events{margin-left:5%}#tribe-events-content{margin-bottom:48px;padding:2px 0;position:relative}#tribe-events-content.tribe-events-list{margin-bottom:60px;padding:0}.tribe-events-list .type-tribe_events.tribe-events-first{padding-top:0}.tribe-events-list .type-tribe_events .tribe-events-list-event-title{line-height:1.2;padding:0}.tribe-events-loop .tribe-events-event-meta{border:0;clear:both;float:none;font-size:1.2em;font-weight:400;line-height:1.5;margin:0 0 15px;overflow:visible;padding:0}.tribe-events-list .tribe-events-loop .tribe-events-event-meta .recurringinfo{display:inline-block;white-space:pre;zoom:1}.tribe-events-event-meta address.tribe-events-address{display:inline}.tribe-events-list .tribe-events-loop .tribe-events-event-meta .event-is-recurring{position:relative}.tribe-events-list .time-details,.tribe-events-list .tribe-events-venue-details{display:block;line-height:1.2;margin:0}.tribe-events-list .time-details{margin:0 0 8px}.tribe-events-loop{clear:both}.tribe-events-loop .type-tribe_events.tribe-events-last{border-bottom:0}.tribe-events-list .tribe-events-loop .tribe-events-content{clear:both;padding:0;width:100%}.events-archive h3 .published,.single-tribe_venue h3 .published{font-style:italic;margin-top:0;text-transform:none}.tribe-events-loop .tribe-events-event-meta dl{margin:0}.tribe-events-loop .tribe-events-event-meta dt{font-weight:700;padding-right:12px;width:auto}.tribe-events-loop .tribe-events-event-meta dd{margin-bottom:.25em;margin-left:6.5em}.single-tribe_events #tribe-events-content{padding:0}.single-tribe_events .tribe-events-schedule .recurringinfo,.single-tribe_events .tribe-events-schedule .tribe-events-cost{margin-right:10px}#tribe-events-content .tribe-events-single-event-description img.attachment-post-thumbnail{display:block;margin-left:auto;margin-right:auto;text-align:center}.tribe-events-meta-group+.tribe-events-single-section-title{margin-top:0}#eventbrite-embed{margin:24px 0;min-height:225px;width:100%}.eventbrite-ticket-embed{margin:0 0 30px}.tribe-events-list .type-tribe_events.tribe-event-end-month{border-bottom:0;padding-bottom:0}.single-tribe_events .tribe-events-cal-links,.single-tribe_events .tribe-events-schedule .tribe-events-schedule__datetime{display:inline-block;vertical-align:middle;zoom:1}.single-tribe_events .tribe-events-cal-links{margin:0 0 20px}.single-tribe_events .tribe-events-event-image{clear:both;margin-bottom:30px;text-align:center}.single-tribe_events .tribe-events-event-meta{margin:30px -4% 30px 0;width:100%}.single-tribe_events .tribe-events-meta-group .tribe-events-venue-map{float:none;margin:0;width:100%}.tribe-events-event-meta:first-child{border-top:1px solid #bbb}.single-tribe_events .tribe-events-event-meta dl{margin:0}.tribe-events-event-meta dt{clear:left;font-weight:700}#tribe-events-content .tribe-events-event-meta dd span.adr{display:block}.tribe-events-event-meta .tribe-events-meta-label{clear:left;font-weight:700}#tribe-events-content .tribe-events-event-meta .tribe-events-meta-value span.adr{display:block}.single-tribe_events .tribe-events-single-event-description{margin-bottom:30px;padding:0;width:auto}#tribe-events-content table.tribe-events-calendar{border-collapse:collapse;clear:both;font-size:12px;margin:0 0 .6em}#tribe-events-content .tribe-events-calendar td,#tribe-events-content table.tribe-events-calendar{border:1px solid #bbb}.tribe-events-calendar div[id*=tribe-events-daynum-],.tribe-events-calendar div[id*=tribe-events-daynum-] a{font-size:11px;font-weight:700}#tribe-events-content .tribe-events-calendar td{font-size:12px;height:145px;padding:0 0 .5em;position:relative;vertical-align:top;width:14.28%}.recurring-info-tooltip,.tribe-events-calendar .tribe-events-tooltip,.tribe-events-shortcode.view-week .tribe-events-tooltip,.tribe-events-week .tribe-events-tooltip{background-color:#f9f9f9;border:1px solid #666;bottom:30px;color:#333;display:none;left:3px;line-height:1.4;position:absolute;width:320px;z-index:1001}.tribe-events-tooltip .tribe-events-arrow{background-image:url(/wp-content/plugins/the-events-calendar/build/css/images/tribe-tooltips.89088c70.png);background-position:0 0;background-repeat:no-repeat;background-size:44px 19px;bottom:-11px;display:block;height:11px;left:20px;position:absolute;width:18px}.recurring-info-tooltip,.tribe-events-calendar .tribe-events-right .tribe-events-tooltip,.tribe-events-shortcode.view-week .tribe-events-right .tribe-events-tooltip,.tribe-events-week .tribe-events-right .tribe-events-tooltip{left:auto;right:3px}.tribe-events-right .tribe-events-tooltip .tribe-events-arrow{left:auto;right:30px}.tribe-events-tooltip.tribe-events-tooltip-flipdown .tribe-events-arrow{top:-11px;transform:rotate(180deg)}.recurringinfo{display:inline-block;zoom:1}.event-is-recurring,.recurringinfo{position:relative}.recurring-info-tooltip.tribe-events-tooltip{left:10px;max-width:320px;padding-bottom:.8em;width:200px}.events-archive.events-gridview #tribe-events-content table .type-tribe_events{border-bottom:1px solid #e7e7e7;margin:0 5%;padding:6px 8px}.events-archive.events-gridview #tribe-events-content table .tribe-events-last{border-bottom:0}.tribe-events-viewmore{font-weight:700;line-height:1;margin:0 5%;padding:6px 8px}.tribe-events-calendar th{height:10px;letter-spacing:1px;padding:4px 0;text-align:center;text-transform:uppercase;width:250px}.tribe-events-calendar td div[id*=tribe-events-daynum-]{line-height:1.2;padding:6px 9px}.tribe-events-calendar td a{font-size:69.6%;word-wrap:break-word}.tribe-events-calendar div[id*=tribe-events-daynum-],.tribe-events-calendar div[id*=tribe-events-event-]{margin:0;position:relative}#tribe-events-content .tribe-events-calendar div[id*=tribe-events-event-] h3.entry-title{font-size:91.7%;font-weight:400;letter-spacing:0;line-height:1.5;margin:0;padding:0;text-transform:none}.tribe-events-calendar div[id*=tribe-events-event-] h3.entry-title a{font-size:100%}#tribe-events-content .tribe-events-tooltip h4.entry-title{font-size:12px;font-weight:400;letter-spacing:1px;line-height:24px;margin:0;min-height:24px;padding:0 6px}.tribe-events-tooltip .tribe-events-event-body{font-size:11px;font-weight:400;padding:3px 6px 6px}.tribe-events-tooltip .duration{font-style:italic;margin:3px 0}.tribe-events-tooltip .tribe-events-event-thumb{float:left;padding:5px 5px 5px 0}.tribe-events-tooltip p.entry-summary{font-size:11px;line-height:1.5;padding:0}.tribe-events-adv-list-widget ol,.tribe-events-list-widget ol{list-style-type:square;margin-bottom:0;margin-left:0}.singular.page li.type-tribe_events,.tribe-events-adv-list-widget li,.tribe-events-list-widget li{margin:6px 0;padding:0 0 10px}.tribe-events-adv-list-widget li p.entry-title.summary,.tribe-events-list-widget li p.entry-title.summary{font-size:100%;margin-bottom:0;padding:0}#tribe-bar-views .tribe-bar-view-select,#tribe-bar-views .tribe-bar-view-select~.tribe-select2{display:none}.tribe-has-settings #tribe-bar-dates{margin-left:-331px}.tribe-has-settings #tribe-bar-views{margin-left:-142px;width:142px}.tribe-has-settings #tribe-bar-views .select2-container .select2-choice{border-bottom-right-radius:0;border-top-right-radius:0}.tribe-has-settings #tribe-bar-views .select2-container .select2-choice div{background:#0000;background-image:none;border-left:0;border-radius:0;filter:none}#tribe-events-bar .tribe-bar-settings{overflow:hidden}#tribe-events-bar .tribe-bar-button-settings span{background-image:url(/wp-content/plugins/the-events-calendar/build/css/images/icon-gear.087d3c38.png);background-position:50% 50%;background-repeat:no-repeat;background-size:14px 14px;display:inline-block;float:left;height:100%;position:relative;width:14px}#tribe-bar-views .tribe-bar-drop-content button{width:100%}#tribe-events-bar .tribe-bar-button-settings{border-left-color:#0000;border-radius:0 4px 4px 0;float:left;margin-left:-1px}.tribe-bar-settings .tribe-bar-drop-content{padding:10px 12px 4px;right:-5px;width:285px}.tribe-bar-full #tribe-bar-views .tribe-bar-view-select,.tribe-bar-full #tribe-bar-views .tribe-bar-view-select~.tribe-select2{display:none}.tribe-bar-full #tribe-bar-views ul.tribe-bar-view-list,.tribe-bar-mini #tribe-bar-views .tribe-bar-view-select,.tribe-bar-mini #tribe-bar-views .tribe-bar-view-select~.tribe-select2{display:block}.tribe-bar-mini #tribe-bar-views ul.tribe-bar-view-list{display:none}.tribe-theme-twentyfifteen .datepicker.dropdown-menu{max-width:340px}.tribe-theme-twentyfifteen #tribe-events table.tribe-events-calendar{table-layout:auto}.tribe-theme-twentyfifteen .datepicker.dropdown-menu table,.tribe-theme-twentyfifteen .datepicker.dropdown-menu table.table-condensed{border-left-width:0;border-top-width:0}.tribe-theme-twentysixteen table.tribe-events-calendar{table-layout:auto}.screen-reader-text{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;position:absolute!important;width:1px;word-wrap:normal!important}
.tribe-mobile #main{padding-top:0}a.tribe-events-gmap{display:block}#tribe-events-content{width:100%}.tribe-events-day .tribe-events-day-time-slot .tribe-events-day-time-slot-heading{margin-top:2em}.tribe-events-day .tribe-events-day-time-slot .type-tribe_events{margin-left:0}#tribe-events #tribe-events-footer,#tribe-events #tribe-events-header{padding:0}#tribe-events-footer,#tribe-events-header{position:relative}.events-list #tribe-events-footer,.single-tribe_events #tribe-events-footer,.tribe-events-day #tribe-events-footer,.tribe-events-map #tribe-events-footer,.tribe-events-photo #tribe-events-footer{border-top:0}#tribe-events-footer:after,#tribe-events-footer:before,#tribe-events-header:after,#tribe-events-header:before{background-color:#fff;content:"";display:block;height:100%;position:absolute;top:0;width:1px;z-index:1}#tribe-events-footer:before,#tribe-events-header:before{right:50%}#tribe-events-footer:after,#tribe-events-header:after{left:50%}#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-next,#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-previous,#tribe-events-header .tribe-events-sub-nav .tribe-events-nav-next,#tribe-events-header .tribe-events-sub-nav .tribe-events-nav-previous{box-sizing:border-box;display:block;margin:0;width:50%}.tribe-events-notices+#tribe-events-header{display:none}.tribe-events-sub-nav li a{background:#666;color:#fff;display:block;padding:10px 20px;position:relative;white-space:normal}.tribe-events-sub-nav li a:hover,.tribe-events-sub-nav li a:visited{color:#fff}.tribe-events-sub-nav .tribe-events-nav-left a span{content:"\ab";display:block;left:10px;position:absolute;top:10px}.tribe-events-sub-nav .tribe-events-nav-right a span{content:"\00BB";display:block;position:absolute;right:10px;top:10px}.tribe-events-list .tribe-events-event-image{float:left;margin:0 3% 0 0}.tribe-events-list .tribe-events-event-image img{max-height:400px;width:auto}.tribe-events-list .tribe-events-event-image+div.tribe-events-content{float:none;position:relative;width:100%}.tribe-events-list .tribe-events-event-image+div.tribe-events-content.tribe-events-list-event-description{position:static}.tribe-events-list .tribe-events-loop .tribe-events-event-meta .recurringinfo{display:block;margin:4px 0 0}.tribe-events-list .tribe-events-loop .tribe-events-event-meta .recurringinfo .tribe-events-divider{display:none}.tribe-events-list .time-details,.tribe-events-list .tribe-event-schedule-details{margin-bottom:0;padding:0 12px}.tribe-events-list .tribe-events-venue-details{border-top:1px solid #eee;margin-top:12px;padding:8px 12px 0}#tribe-events .tribe-events-loop .tribe-events-content{margin:0;padding:0}.tribe-events-loop .tribe-events-event-meta{background:#fafafa;border:1px solid #eee;margin-top:12px;padding:12px 0 15px}.tribe-events-list-separator-year{display:none}.tribe-events-list-separator-month{margin:36px 0 0}.tribe-events-event-cost .tribe-out-of-stock,.tribe-events-event-cost .tribe-tickets-left{font-size:12px;line-height:15px;white-space:nowrap}.single-tribe_events .tribe-events-schedule{background:#fafafa;border:1px solid #eee;margin:18px 0 8px;padding:12px}.single-tribe_events .tribe-events-schedule .tribe-events-cost,.single-tribe_events .tribe-events-schedule h3{display:block;font-size:15px;font-weight:400;line-height:1.25;margin:0}.single-tribe_events .tribe-events-schedule h3{margin-bottom:2px;white-space:normal}.single-tribe_events .tribe-events-schedule .recurringinfo .tribe-events-divider,.single-tribe_events .tribe-events-schedule .tribe-events-divider{display:none}.single-tribe_events .tribe-events-event-image{margin-bottom:10px}.single-tribe_events .tribe-events-cal-links{margin-bottom:30px}.single-tribe_events .tribe-events-cal-links a{margin-top:15px}.single-tribe_events .tribe-events-event-meta{margin:15px 0 20px;padding:4% 0}.single-tribe_events .tribe-events-venue-map{display:block;float:none;margin:5px auto 0;width:90%}#tribe-events div.tribe-events-single-event-description{margin-bottom:10px;padding:0}.tribe-events-meta-group .tribe-events-single-section-title{margin-top:0}.tribe-events-event-meta .tribe-events-meta-group{margin-bottom:0}.tribe-events-event-meta .column,.tribe-events-event-meta .tribe-events-meta-group{float:none;width:100%}.tribe-events-calendar .tribe-events-has-events:after{background-color:#333;border-radius:50%;content:"";display:block;height:8px;margin:5px auto;padding:0;width:8px}.tribe-events-calendar .tribe-events-has-events.tribe-events-othermonth:after{-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";filter:alpha(opacity=40);-moz-opacity:.4;-khtml-opacity:.4;opacity:.4}#tribe-mobile-container{display:block;margin:0 auto 10px}#tribe-mobile-container .type-tribe_events{margin-bottom:0;padding:20px 0 16px}#tribe-mobile-container .type-tribe_events~.type-tribe_events{border-top:1px solid #ddd;padding:15px 0}#tribe-mobile-container .type-tribe_events h4{font-size:1.25em;line-height:1.35;margin:0 0 2px}#tribe-mobile-container .type-tribe_events .time-details{font-size:13px;font-weight:700;margin:0 0 2px}#tribe-mobile-container .type-tribe_events .tribe-events-event-image{float:left;margin:5px 15px 10px 0;width:25%}#tribe-mobile-container .type-tribe_events .tribe-events-event-image a{display:block}#tribe-mobile-container .type-tribe_events .entry-summary.description{margin-bottom:0;padding:0}#tribe-mobile-container .type-tribe_events .tribe-events-read-more{display:inline-block;margin-top:8px}.tribe-mobile-day-heading{font-size:16px;margin-bottom:10px}.tribe-events-calendar td.tribe-events-has-events:hover{cursor:pointer}#tribe-events-content .tribe-events-calendar td{height:45px;padding:0}.tribe-events-calendar td .tribe-events-viewmore,.tribe-events-calendar td .type-tribe_events{display:none}.tribe-events-calendar td div[id*=tribe-events-daynum-],.tribe-events-calendar td div[id*=tribe-events-daynum-] a{background:none;font-size:16px;line-height:1;margin-top:6px;padding:0;text-align:center}.tribe-events-calendar .mobile-active.tribe-events-past div[id*=tribe-events-daynum-],.tribe-events-calendar .mobile-active.tribe-events-past div[id*=tribe-events-daynum-]>a{color:#fff}.tribe-events-calendar .mobile-active div[id*=tribe-events-daynum-],.tribe-events-calendar .mobile-active div[id*=tribe-events-daynum-] a,.tribe-events-calendar .tribe-events-past.tribe-events-has-events:after,.tribe-events-calendar td.mobile-active{background-color:#999;color:#fff}.tribe-events-calendar .mobile-active.tribe-events-has-events:after,.tribe-events-calendar .tribe-events-present.tribe-events-has-events:after{background:#fff}.tribe-events-calendar .tribe-events-present,.tribe-events-calendar .tribe-events-present.mobile-active div[id*=tribe-events-daynum-],.tribe-events-calendar .tribe-events-present.mobile-active div[id*=tribe-events-daynum-] a,.tribe-events-calendar td.tribe-events-present.mobile-active{background-color:#666}#tribe-mobile-container .tribe-events-viewmore{border-top:1px solid #ddd;margin:5px 0 0;padding:15px 0 5px}.tribe-bar-disabled{float:none;width:100%}.tribe-bar-disabled #tribe-bar-views .tribe-bar-views-list{padding:0}#tribe-events-pg-template{background-color:var(--tec-color-background-events);padding:40px 20px 20px}#tribe-events-content,#tribe-events-content.tribe-events-list{margin-bottom:20px}.tribe-events-promo{margin-top:10px;text-align:center}#tribe-events-footer~a.tribe-events-ical.tribe-events-button{border-radius:0;display:block;float:none;font-size:12px;font-weight:400;height:32px;line-height:32px;margin:0 auto 10px;padding:0 10px;text-align:center}.tribe-theme-twentyfourteen .entry-content .tribe-events-calendar th,.tribe-theme-twentyfourteen .tribe-events-calendar th{border-width:0;padding:3px}.tribe-theme-twentyfourteen #tribe-events-pg-template{padding-left:0;padding-right:0;padding-top:0}.tribe-theme-twentyfourteen #tribe-events-bar{margin-bottom:10px}.tribe-theme-twentyfourteen.events-archive .entry-content{width:90%}.tribe-is-responsive.tribe-mobile .tribe-events-page-title{margin-top:.5em}.tribe-theme-twentyfifteen{--tec-color-background-events:var(--tec-color-background)}.tribe-theme-twentyfifteen #tribe-events{margin-left:0;margin-right:0}.tribe-theme-twentyfifteen #tribe-bar-views .tribe-bar-views-list .tribe-bar-views-option a{padding-left:6px;padding-right:6px}.tribe-theme-twentysixteen #tribe-events-pg-template{padding-top:0}
.tec-tickets-seating__iframe-container{width:100%}.tec-tickets-seating__iframe-container #tec-tickets-seating-iframe-map-edit{height:740px}.tec-tickets-seating__iframe{border:none;min-height:740px;width:100%}.firebase-emulator-warning{display:none}.event-tickets .tec-tickets-seating__information{border-bottom:1px solid var(--tec-color-border-secondary);border-top:1px solid var(--tec-color-border-secondary);font-size:var(--tec-font-size-3);font-weight:var(--tec-font-weight-bold);margin:0;padding:20px 0}.event-tickets .tec-tickets-seating__inventory{color:var(--tec-color-text-secondary);font-family:var(--tec-font-family-sans-serif);font-size:var(--tec-font-size-1);line-height:1;margin:var(--tec-spacer-0) 0;margin-left:10px}.event-tickets .tec-tickets-seating__action{display:flex;flex-direction:row-reverse;padding:10px 0}.event-tickets .tec-tickets-seating__action .tribe-common-c-btn.tribe-common-c-btn--small.sold-out-button{background-color:#bababa;color:#fff}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal{height:calc(100vh - 160px);padding:0;width:80vw}@media screen and (max-width:960px){.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal{border-radius:0;height:100%;max-height:100%;width:100vw}}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal div[role=document]{align-items:flex-start;display:flex;flex-direction:column;height:100%;max-height:100%}@media screen and (max-width:960px){@supports (height:100dvh){.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal div[role=document]{height:100dvh;max-height:100dvh}}}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__close-button.tribe-modal__close-button{right:var(--tec-dialog-padding-side);top:var(--tec-dialog-padding-top)}@media screen and (max-width:960px){.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__close-button.tribe-modal__close-button{display:none}}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content{display:flex;flex-direction:row;gap:0;height:100%;padding:0}@media screen and (max-width:960px){.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content{flex-direction:column}}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__iframe-container{display:flex;flex-grow:1}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__iframe-container .tec-tickets-seating__iframe{height:100%;min-height:0}@media screen and (max-width:960px){.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__iframe-container{flex-direction:column;height:60%}}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container{position:relative}@media screen and (max-width:960px){.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container{width:100%}}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar{align-items:flex-start;display:flex;flex-direction:column;flex-shrink:0;font-family:var(--tec-font-family-sans-serif);gap:0;height:100%;justify-content:flex-start;padding:var(--tec-dialog-padding);position:relative;width:330px}@media screen and (max-width:960px){.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar{background-color:#fff;bottom:0;box-shadow:0 -4px 10px 0 #0003;gap:0;height:100%;left:0;position:relative;transition:all .2s ease-in-out;width:100%}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar.tec-tickets-seating__modal-sidebar-open{bottom:0;height:81vh}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar.tec-tickets-seating__modal-sidebar-open .tec-tickets-seating__sidebar-header .tec-tickets-seating__sidebar-arrow{transform:rotate(180deg)}}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__sidebar-header{display:flex;flex-direction:column;width:100%}@media screen and (max-width:960px){.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__sidebar-header{align-items:center;flex-direction:row;gap:var(--tec-spacer-1);justify-content:space-between;margin-bottom:var(--tec-spacer-1)}}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__sidebar-header .tec-tickets-seating__title{border-bottom:1px solid var(--tec-color-border-secondary);color:var(--tec-color-text-primary);font-size:var(--tec-font-size-7);font-weight:var(--tec-font-weight-regular);line-height:var(--tec-line-height-3);margin-bottom:var(--tec-spacer-3);padding:var(--tec-spacer-5) 0 var(--tec-spacer-1) 0;text-align:left;width:100%}@media screen and (max-width:960px){.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__sidebar-header .tec-tickets-seating__title{border-bottom:0;font-size:var(--tec-font-size-4);margin-bottom:0;padding:0;width:auto}}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__sidebar-header .tec-tickets-seating__sidebar-arrow{align-items:center;display:none;height:34px;justify-content:center;transform:rotate(0deg);transition:transform .15s ease-in-out;width:34px}@media screen and (max-width:960px){.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__sidebar-header .tec-tickets-seating__sidebar-arrow{display:flex}}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__sidebar-header .tec-tickets-seating__sidebar-arrow .dashicons.dashicons-arrow-up-alt2{color:var(--tec-color-text-primary-light);display:none}@media screen and (max-width:960px){.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__sidebar-header .tec-tickets-seating__sidebar-arrow .dashicons.dashicons-arrow-up-alt2{display:block}}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__tickets-wrapper{flex:1;margin-right:-5px;margin-top:var(--tec-spacer-3);overflow-y:scroll;position:relative;width:100%}@media screen and (max-width:960px){.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__tickets-wrapper{margin-top:0}}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__tickets-wrapper::-webkit-scrollbar{width:3px}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__tickets-wrapper::-webkit-scrollbar-track{background-color:initial}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__tickets-wrapper::-webkit-scrollbar-thumb{background:var(--tec-color-border-secondary);border-radius:2px}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__tickets-wrapper .tec-tickets-seating__ticket-rows{left:0;padding-right:5px;position:absolute;right:0;top:0;width:100%}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__tickets-wrapper .tec-tickets-seating__ticket-rows .tec-tickets-seating__ticket-row{border-color:var(--tec-color-border-secondary);border-style:solid;border-width:0 0 1px;display:flex;flex-direction:row;gap:var(--tec-spacer-1);justify-content:space-between;padding:var(--tec-spacer-2) 0 var(--tec-spacer-3) 0}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__tickets-wrapper .tec-tickets-seating__ticket-rows .tec-tickets-seating__ticket-row .tec-tickets-seating__seat-color{background:#d02697;border-radius:4px;height:20px;width:20px}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__tickets-wrapper .tec-tickets-seating__ticket-rows .tec-tickets-seating__ticket-row .tec-tickets-seating__label{display:flex;flex-direction:column;flex-grow:0.8;font-weight:var(--tec-font-weight-bold);padding:0 74px 0 0}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__tickets-wrapper .tec-tickets-seating__ticket-rows .tec-tickets-seating__ticket-row .tec-tickets-seating__label .tec-tickets-seating__ticket-name{color:var(--tec-color-text-primary);font-size:var(--tec-font-size-2);line-height:var(--tec-line-height-3);text-align:left}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__tickets-wrapper .tec-tickets-seating__ticket-rows .tec-tickets-seating__ticket-row .tec-tickets-seating__label .tec-tickets-seating__seat-label{color:var(--tec-color-text-secondary);font-size:var(--tec-font-size-1);line-height:var(--tec-line-height-1);text-align:left}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__tickets-wrapper .tec-tickets-seating__ticket-rows .tec-tickets-seating__ticket-price{font-weight:var(--tec-font-weight-bold)}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__empty-tickets-message{color:var(--tec-color-text-secondary);font-size:var(--tec-font-size-1);font-style:italic;font-weight:var(--tec-font-weight-bold);margin:var(--tec-spacer-6) 0;text-align:center;width:100%}@media screen and (max-width:960px){.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__empty-tickets-message{margin:var(--tec-spacer-3) 0 0}}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__empty-tickets-message.tec-tickets-seating__empty-tickets-message-hidden{display:none}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__sidebar-footer{display:flex;flex-direction:column;gap:var(--tec-spacer-3);margin-top:var(--tec-spacer-3);width:100%}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__sidebar-footer .tec-tickets-seating__total{display:flex;flex-direction:row;font-weight:var(--tec-font-weight-bold);gap:var(--tec-spacer-1);justify-content:space-between}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__sidebar-footer .tec-tickets-seating__total.tec-tickets-seating__total-hidden{display:none}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__sidebar-footer .tec-tickets-seating__total .tec-tickets-seating__total-text{flex-basis:74%;text-align:left}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__sidebar-footer .tec-tickets-seating__total .tec-tickets-seating__total-price{flex-basis:26%;text-align:right}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__sidebar-footer .tec-tickets-seating__sidebar-controls{display:flex;flex-direction:row;gap:var(--tec-spacer-4);justify-content:flex-end}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__sidebar-footer .tec-tickets-seating__sidebar-controls .tec-tickets-seating__sidebar-control{font-weight:var(--tec-font-weight-bold)}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__sidebar-footer .tec-tickets-seating__sidebar-controls .tec-tickets-seating__sidebar-control--cancel{color:var(--tec-color-text-primary-light)}.tribe-common .tribe-dialog__wrapper.tec-tickets-seating__modal .tribe-dialog__content.tribe-modal__content .tec-tickets-seating__modal-sidebar_container .tec-tickets-seating__modal-sidebar .tec-tickets-seating__sidebar-footer .tec-tickets-seating__sidebar-controls .tec-tickets-seating__sidebar-control--confirm{width:auto}
#adminmenu .menu-icon-tribe_events div.wp-menu-image.svg{background-size:18px}#wpadminbar #wp-admin-bar-tribe-events .ab-group-container>.ab-submenu{padding:0}#wpadminbar #wp-admin-bar-tribe-events #wp-admin-bar-tribe-events-group{padding-bottom:0}#wpadminbar #wp-admin-bar-tribe-events #wp-admin-bar-tribe-events-settings-group{padding-top:0}#wpadminbar #wp-admin-bar-tribe-events .tec-events-logo.svg{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9IiNhN2FhYWQiIHZpZXdCb3g9IjAgMCAxMy4yNCAxNS40Ij48ZyBkYXRhLW5hbWU9IkxheWVyIDIiPjxwYXRoIGQ9Im0xMi44OSA2LjEtMS4zNS0zLjl2LS4wNmExLjg1IDEuODUgMCAwIDAtMi40LTEuMDhsLS43My4yNkw4IC4yOUEuNDUuNDUgMCAwIDAgNy40NyAwYS40My40MyAwIDAgMC0uMjUuMjMuNDUuNDUgMCAwIDAtLjAyLjM3bC4zNyAxLTQuODIgMS43OS0uMzYtMXYtLjA1YS40NC40NCAwIDAgMC0uNTYtLjIyLjQ0LjQ0IDAgMCAwLS4yNi41N2wuMzYgMS0uNzYuMzFBMS44NiAxLjg2IDAgMCAwIC4xMSA2LjMzTDMuMTkgMTVhLjY2LjY2IDAgMCAwIC42MS40LjYuNiAwIDAgMCAuMjMgMGwzLjM3LTEuMjdoLjFhNSA1IDAgMCAwIDItMi40N2MuMTEtLjI0LjIxLS40OS4zMS0uNzdsLjI3LS43Mi4wNy0uMTlhNC4zIDQuMyAwIDAgMCAyLS4zOSAzLjEzIDMuMTMgMCAwIDEtMS43MiAyLjMuNDMuNDMgMCAwIDAtLjI1LjIzLjQ1LjQ1IDAgMCAwIDAgLjM0LjQyLjQyIDAgMCAwIC4yMy4yNi40NS40NSAwIDAgMCAuMzQgMGMyLjM4LS44NSAyLjk3LTQuMDggMi4xNC02LjYybS0uNTYgMS44MWEuOC44IDAgMCAxLS4yNS41OEEyLjg1IDIuODUgMCAwIDEgMTAgOWMtLjM5IDAtLjUxLjIyLS42OC42N2wtLjMyLjg1Yy0uMS4yNi0uMTkuNDktLjI5LjcxYTQuMyA0LjMgMCAwIDEtMS41OSAybC0zLjE4IDEuMjFMMS43IDguMTJsOS43NC0zLjQ2LjYzIDEuODJhNS4xIDUuMSAwIDAgMSAuMjYgMS4zNXYuMDdaIiBkYXRhLW5hbWU9IkxheWVyIDEiIHN0eWxlPSJmaWxsLXJ1bGU6ZXZlbm9kZCIvPjwvZz48L3N2Zz4=)!important;background-position:0 6px;background-repeat:no-repeat;background-size:17px;float:left;height:30px;width:24px}
#tribe-events-header .tribe-events-sub-nav li a{display:none}.tribe-events-list .tribe-events-loop .tribe-events-event-meta .recurringinfo{display:block;padding:0}.single-tribe_events .tribe-events-schedule .recurringinfo{display:block;margin:2px 0 0}.tribe-events-schedule{margin:18px 0}.single-tribe_events .tribe-events-event-image{margin-bottom:10px}.tribe-events-list-separator-month{margin:20px 0}#tribe-mobile-container .type-tribe_events~.type-tribe_events{border-top:1px dotted #2f2f2f}.tribe-events-calendar thead th{padding:7px 1em}#tribe-events-content .tribe-events-calendar td{transition:none}#tribe-events-content .tribe-events-calendar td:hover{background:none;box-shadow:none}#tribe-events-content .tribe-events-calendar td.tribe-events-othermonth:hover{background:#f9f9f9}.tribe-events-calendar td.tribe-events-past div[id*=tribe-events-daynum-],.tribe-events-calendar td.tribe-events-past div[id*=tribe-events-daynum-]>a{background:none;color:#999}.tribe-events-calendar td div[id*=tribe-events-daynum-],.tribe-events-calendar td div[id*=tribe-events-daynum-] a{background:none;color:#333;padding:0}#tribe-mobile-container .tribe-events-viewmore{border-top:1px dotted #2f2f2f}.tribe-events-calendar div[id*=tribe-events-daynum-] a:hover{color:#333}.tribe-events-calendar .mobile-active.tribe-events-past div[id*=tribe-events-daynum-],.tribe-events-calendar .mobile-active.tribe-events-past div[id*=tribe-events-daynum-]>a{color:#fff}#tribe-events-content .tribe-events-calendar .mobile-active:hover,#tribe-events-content .tribe-events-calendar td.tribe-events-othermonth.mobile-active,#tribe-events-content .tribe-events-calendar td.tribe-events-othermonth.mobile-active div[id*=tribe-events-daynum-],#tribe-events-content .tribe-events-calendar td.tribe-events-othermonth.mobile-active div[id*=tribe-events-daynum-] a,.tribe-events-calendar .mobile-active div[id*=tribe-events-daynum-],.tribe-events-calendar .mobile-active div[id*=tribe-events-daynum-] a,.tribe-events-calendar td.mobile-active{background-color:#21759b;color:#fff}.tribe-events-calendar .tribe-events-present.tribe-events-has-events:after{background:#333}.tribe-events-calendar .mobile-active.tribe-events-has-events:after{background-color:#fff}#tribe-events-content .tribe-events-calendar td.tribe-events-present:hover,.tribe-events-calendar td.tribe-events-present,.tribe-events-calendar td.tribe-events-present div[id*=tribe-events-daynum-],.tribe-events-calendar td.tribe-events-present div[id*=tribe-events-daynum-]>a{background-color:#dedede;color:#333}#tribe-events-content .tribe-events-calendar td.tribe-events-present.mobile-active:hover,.tribe-events-calendar td.tribe-events-present.mobile-active,.tribe-events-calendar td.tribe-events-present.mobile-active div[id*=tribe-events-daynum-],.tribe-events-calendar td.tribe-events-present.mobile-active div[id*=tribe-events-daynum-] a{background-color:#21759b;color:#fff}.tribe-theme-twentyfourteen #tribe-events-pg-template{padding-left:0;padding-right:0}.tribe-theme-twentyfourteen #tribe-events-pg-template #tribe-events{padding:10px}
#wp-admin-bar-promoter-admin-bar a.ab-item{align-items:center;display:flex;flex-wrap:wrap}#wp-admin-bar-promoter-admin-bar a.ab-item .promoter-admin-bar__icon{flex:none;height:20px;margin-right:5px;width:20px}#wp-admin-bar-promoter-admin-bar a.ab-item .promoter-admin-bar__text{flex:none}#wp-admin-bar-promoter-admin-bar:focus .promoter-admin-bar__icon svg path,#wp-admin-bar-promoter-admin-bar:hover .promoter-admin-bar__icon svg path{fill:#00b9eb}
.tribe-events .tribe-events-virtual-hybrid-event__icon-svg:hover circle,.tribe-events .tribe-events-virtual-hybrid-event__icon-svg:hover ellipse,.tribe-events .tribe-events-virtual-hybrid-event__icon-svg:hover path,.tribe-events .tribe-events-virtual-virtual-event__icon-svg:hover circle,.tribe-events .tribe-events-virtual-virtual-event__icon-svg:hover ellipse,.tribe-events .tribe-events-virtual-virtual-event__icon-svg:hover path{opacity:var(--tec-opacity-icon-hover);stroke:currentcolor}.tribe-events .tribe-events-calendar-month__multiday-event--past .tribe-events-virtual-hybrid-event,.tribe-events .tribe-events-calendar-month__multiday-event--past .tribe-events-virtual-virtual-event{opacity:.64}.tribe-events .tribe-events-pro-map__event-card .tribe-events-virtual-hybrid-event,.tribe-events .tribe-events-pro-map__event-card .tribe-events-virtual-virtual-event{font-size:var(--tec-font-size-0);line-height:var(--tec-line-height-2)}.tribe-events .tribe-events-pro-map__event-tooltip .tribe-events-virtual-hybrid-event,.tribe-events .tribe-events-pro-map__event-tooltip .tribe-events-virtual-virtual-event,.tribe-events.tribe-common--breakpoint-medium .tribe-events-pro-map__event-card .tribe-events-virtual-hybrid-event,.tribe-events.tribe-common--breakpoint-medium .tribe-events-pro-map__event-card .tribe-events-virtual-virtual-event{font-size:var(--tec-font-size-1);line-height:var(--tec-line-height-0)}
.tribe-events-virtual-link-button{background-color:#21759b;border-radius:3px;-webkit-text-decoration:none;text-decoration:none;transition:all .2s cubic-bezier(.55,.085,.68,.53)}.tribe-events-virtual-link-button:hover{background-color:#156287}.tribe-events-virtual-link-button:focus{background-color:#156287;box-shadow:0 0 0 2px var(--tec-color-background),0 0 0 4px var(--tec-color-border-active);outline:none}.tribe-events-virtual-link-button__label{color:#fff;font-size:var(--tec-font-size-2);font-weight:var(--tec-font-weight-bold);line-height:var(--tec-line-height-3)}.tec-events-virtual-single-api-details .tec-events-virtual-single-api-details__meta-group,.tribe-events-virtual-single-zoom-details .tec-events-virtual-single-api-details__meta-group{margin:20px 0}@media (max-width:768px){.tec-events-virtual-single-api-details .tec-events-virtual-single-api-details__meta-group,.tribe-events-virtual-single-zoom-details .tec-events-virtual-single-api-details__meta-group{margin:0 0 10px}}.tec-events-virtual-single-api-details__phone-number,.tec-events-virtual-single-api-details__video-link{color:#21759b;font-weight:var(--tec-font-weight-bold);line-height:var(--tec-line-height-0);transition:all .2s cubic-bezier(.55,.085,.68,.53)}.tec-events-virtual-single-api-details__phone-number:focus,.tec-events-virtual-single-api-details__phone-number:hover,.tec-events-virtual-single-api-details__video-link:focus,.tec-events-virtual-single-api-details__video-link:hover{color:#156287}.tec-events-virtual-meetings-api__phone-list-item-pin,.tec-events-virtual-single-api-details__api-id,.tec-events-virtual-single-api-details__api-password{font-size:var(--tec-font-size-0);line-height:var(--tec-line-height-2)}.tribe-events-hybrid-single-marker,.tribe-events-virtual-single-marker{background-color:var(--tec-color-background-secondary);border-radius:19px;font-size:var(--tec-font-size-2);font-weight:var(--tec-font-weight-bold);line-height:var(--tec-line-height-3);padding:var(--tec-spacer-1) var(--tec-spacer-3)}.tribe-events-virtual-event .tribe-events-back{margin-top:var(--tec-spacer-1)}@media (min-width:768px){.tribe-events-virtual-event .tribe-events-back{margin-top:0}}.tribe-events-virtual-event .tribe-events-schedule h2{margin-top:0}@media (min-width:768px){.tribe-events-virtual-event .tribe-events-schedule h2{margin-top:var(--tec-spacer-1)}}.tribe-events-virtual-single-youtube__embed-wrap{margin-bottom:24px}.tribe-events-virtual-single-youtube__embed{height:0;margin:0;padding-bottom:56.25%;position:relative;width:100%}.tribe-events-virtual-single-youtube__embed iframe{height:100%;left:0;max-height:100%;position:absolute;top:0;width:100%}.tribe-events-virtual-single-youtube__chat-wrap{margin:0;position:relative}.tribe-events-virtual-single-youtube__chat-embed{width:100%}
.tribe-events .tribe-events-virtual-hybrid-event,.tribe-events .tribe-events-virtual-virtual-event{align-items:center;display:flex}.tribe-events .tribe-events-virtual-hybrid-event__icon,.tribe-events .tribe-events-virtual-virtual-event__icon{display:inline-block;line-height:0;margin-right:var(--tec-spacer-1)}.tribe-events .tribe-events-virtual-hybrid-event__icon-svg{height:12px}.tribe-events .tribe-events-virtual-virtual-event__icon-svg{height:10px}.tribe-events .tribe-events-calendar-day .tribe-events-virtual-hybrid-event,.tribe-events .tribe-events-calendar-day .tribe-events-virtual-virtual-event,.tribe-events .tribe-events-calendar-latest-past .tribe-events-virtual-hybrid-event,.tribe-events .tribe-events-calendar-latest-past .tribe-events-virtual-virtual-event,.tribe-events .tribe-events-calendar-list .tribe-events-virtual-hybrid-event,.tribe-events .tribe-events-calendar-list .tribe-events-virtual-virtual-event{margin:var(--tec-spacer-1) 0;order:3}.tribe-events.tribe-common--breakpoint-medium .tribe-events-calendar-day .tribe-events-virtual-hybrid-event,.tribe-events.tribe-common--breakpoint-medium .tribe-events-calendar-day .tribe-events-virtual-virtual-event,.tribe-events.tribe-common--breakpoint-medium .tribe-events-calendar-latest-past .tribe-events-virtual-hybrid-event,.tribe-events.tribe-common--breakpoint-medium .tribe-events-calendar-latest-past .tribe-events-virtual-virtual-event,.tribe-events.tribe-common--breakpoint-medium .tribe-events-calendar-list .tribe-events-virtual-hybrid-event,.tribe-events.tribe-common--breakpoint-medium .tribe-events-calendar-list .tribe-events-virtual-virtual-event{margin-bottom:var(--tec-spacer-3) 0}.tribe-events .tribe-events-calendar-day .tribe-events-virtual-hybrid-event:last-child,.tribe-events .tribe-events-calendar-day .tribe-events-virtual-virtual-event:last-child,.tribe-events .tribe-events-calendar-latest-past .tribe-events-virtual-hybrid-event:last-child,.tribe-events .tribe-events-calendar-latest-past .tribe-events-virtual-virtual-event:last-child,.tribe-events .tribe-events-calendar-list .tribe-events-virtual-hybrid-event:last-child,.tribe-events .tribe-events-calendar-list .tribe-events-virtual-virtual-event:last-child{margin-bottom:0}.tribe-events .tribe-events-calendar-month .tribe-events-virtual-hybrid-event,.tribe-events .tribe-events-calendar-month .tribe-events-virtual-virtual-event,.tribe-events .tribe-events-calendar-month__calendar-event-tooltip .tribe-events-virtual-hybrid-event,.tribe-events .tribe-events-calendar-month__calendar-event-tooltip .tribe-events-virtual-virtual-event{display:inline-block;line-height:0}.tribe-events .tribe-events-calendar-month__multiday-event .tribe-events-virtual-hybrid-event,.tribe-events .tribe-events-calendar-month__multiday-event .tribe-events-virtual-virtual-event{flex:none}.tribe-events .tribe-events-calendar-month-mobile-events .tribe-events-virtual-hybrid-event,.tribe-events .tribe-events-calendar-month-mobile-events .tribe-events-virtual-virtual-event{margin-top:var(--tec-spacer-0)}.tribe-events .tribe-events-calendar-month .tribe-events-virtual-hybrid-event__icon,.tribe-events .tribe-events-calendar-month .tribe-events-virtual-virtual-event__icon,.tribe-events .tribe-events-calendar-month__calendar-event-tooltip .tribe-events-virtual-hybrid-event__icon,.tribe-events .tribe-events-calendar-month__calendar-event-tooltip .tribe-events-virtual-virtual-event__icon{margin-right:var(--tec-spacer-0)}.tribe-events .tribe-events-calendar-month-mobile-events .tribe-events-virtual-hybrid-event__icon,.tribe-events .tribe-events-calendar-month-mobile-events .tribe-events-virtual-virtual-event__icon{margin-right:var(--tec-spacer-1)}.tribe-events .tribe-events-calendar-month .tribe-events-virtual-virtual-event__icon-svg{width:16px}.tribe-events .tribe-events-calendar-month .tribe-events-virtual-hybrid-event__text,.tribe-events .tribe-events-calendar-month .tribe-events-virtual-virtual-event__text,.tribe-events .tribe-events-calendar-month__calendar-event-tooltip .tribe-events-virtual-hybrid-event__text,.tribe-events .tribe-events-calendar-month__calendar-event-tooltip .tribe-events-virtual-virtual-event__text{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.tribe-events .tribe-events-pro-summary .tribe-events-virtual-hybrid-event,.tribe-events .tribe-events-pro-summary .tribe-events-virtual-virtual-event{display:inline-block}.tribe-events .tribe-events-pro-summary .tribe-events-virtual-hybrid-event__icon,.tribe-events .tribe-events-pro-summary .tribe-events-virtual-virtual-event__icon{margin-right:0}.tribe-events .tribe-events-pro-summary .tribe-events-virtual-hybrid-event__icon-svg,.tribe-events .tribe-events-pro-summary .tribe-events-virtual-virtual-event__icon-svg{height:10px}.tribe-events .tribe-events-pro-summary .tribe-events-virtual-hybrid-event__text,.tribe-events .tribe-events-pro-summary .tribe-events-virtual-virtual-event__text{display:none}.tribe-events .tribe-events-pro-photo__event.tribe-events-hybrid-event,.tribe-events .tribe-events-pro-photo__event.tribe-events-virtual-event{position:relative}.tribe-events .tribe-events-pro-photo .tribe-events-virtual-hybrid-event,.tribe-events .tribe-events-pro-photo .tribe-events-virtual-virtual-event{align-items:center;background-color:var(--tec-color-background);border-radius:13px;display:flex;height:26px;justify-content:center;left:calc(var(--tec-grid-gutter-small-half) + var(--tec-spacer-2));position:absolute;top:var(--tec-spacer-2);width:37px}.tribe-events.tribe-common--breakpoint-medium .tribe-events-pro-photo .tribe-events-virtual-hybrid-event,.tribe-events.tribe-common--breakpoint-medium .tribe-events-pro-photo .tribe-events-virtual-virtual-event{left:calc(var(--tec-grid-gutter-half) + var(--tec-spacer-2))}.tribe-events .tribe-events-pro-photo .tribe-events-virtual-hybrid-event__icon,.tribe-events .tribe-events-pro-photo .tribe-events-virtual-virtual-event__icon{margin-right:0}.tribe-events .tribe-events-pro-photo .tribe-events-virtual-hybrid-event__text,.tribe-events .tribe-events-pro-photo .tribe-events-virtual-virtual-event__text{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.tribe-events .tribe-events-pro-map .tribe-events-virtual-hybrid-event,.tribe-events .tribe-events-pro-map .tribe-events-virtual-virtual-event,.tribe-events .tribe-events-pro-map__event-tooltip .tribe-events-virtual-hybrid-event,.tribe-events .tribe-events-pro-map__event-tooltip .tribe-events-virtual-virtual-event{margin-top:var(--tec-spacer-1);order:5}.tribe-events .tribe-events-pro-week-grid .tribe-events-virtual-hybrid-event,.tribe-events .tribe-events-pro-week-grid .tribe-events-virtual-virtual-event,.tribe-events .tribe-events-pro-week-grid__event-tooltip .tribe-events-virtual-hybrid-event,.tribe-events .tribe-events-pro-week-grid__event-tooltip .tribe-events-virtual-virtual-event{display:inline-block;line-height:0}.tribe-events .tribe-events-pro-week-grid__multiday-event .tribe-events-virtual-hybrid-event,.tribe-events .tribe-events-pro-week-grid__multiday-event .tribe-events-virtual-virtual-event{flex:none}.tribe-events .tribe-events-pro-week-mobile-events .tribe-events-virtual-hybrid-event,.tribe-events .tribe-events-pro-week-mobile-events .tribe-events-virtual-virtual-event{margin-bottom:var(--tec-spacer-1)}.tribe-events .tribe-events-pro-week-grid .tribe-events-virtual-hybrid-event__icon,.tribe-events .tribe-events-pro-week-grid .tribe-events-virtual-virtual-event__icon,.tribe-events .tribe-events-pro-week-grid__event-tooltip .tribe-events-virtual-hybrid-event__icon,.tribe-events .tribe-events-pro-week-grid__event-tooltip .tribe-events-virtual-virtual-event__icon{margin-right:var(--tec-spacer-0)}.tribe-events .tribe-events-pro-week-grid .tribe-events-virtual-hybrid-event__text,.tribe-events .tribe-events-pro-week-grid .tribe-events-virtual-virtual-event__text,.tribe-events .tribe-events-pro-week-grid__event-tooltip .tribe-events-virtual-hybrid-event__text,.tribe-events .tribe-events-pro-week-grid__event-tooltip .tribe-events-virtual-virtual-event__text{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.tribe-events #tribe-filter-VirtualEvents span{white-space:normal}
.tribe-events .tribe-events-virtual-hybrid-event__icon-svg:hover circle,.tribe-events .tribe-events-virtual-hybrid-event__icon-svg:hover ellipse,.tribe-events .tribe-events-virtual-hybrid-event__icon-svg:hover path,.tribe-events .tribe-events-virtual-virtual-event__icon-svg:hover circle,.tribe-events .tribe-events-virtual-virtual-event__icon-svg:hover ellipse,.tribe-events .tribe-events-virtual-virtual-event__icon-svg:hover path{opacity:var(--tec-opacity-icon-hover);stroke:currentcolor}.tribe-events .tribe-events-calendar-month__multiday-event--past .tribe-events-virtual-hybrid-event,.tribe-events .tribe-events-calendar-month__multiday-event--past .tribe-events-virtual-virtual-event{opacity:.64}.tribe-events .tribe-events-pro-map__event-card .tribe-events-virtual-hybrid-event,.tribe-events .tribe-events-pro-map__event-card .tribe-events-virtual-virtual-event{font-size:var(--tec-font-size-0);line-height:var(--tec-line-height-2)}.tribe-events .tribe-events-pro-map__event-tooltip .tribe-events-virtual-hybrid-event,.tribe-events .tribe-events-pro-map__event-tooltip .tribe-events-virtual-virtual-event,.tribe-events.tribe-common--breakpoint-medium .tribe-events-pro-map__event-card .tribe-events-virtual-hybrid-event,.tribe-events.tribe-common--breakpoint-medium .tribe-events-pro-map__event-card .tribe-events-virtual-virtual-event{font-size:var(--tec-font-size-1);line-height:var(--tec-line-height-0)}
#dashboard_right_now a.tec-tickets-attendees-count:before,#dashboard_right_now span.tec-tickets-attendees-count:before{content:"\f307"}
:root{--tec-grid-gutter:48px;--tec-grid-gutter-negative:calc(var(--tec-grid-gutter)*-1);--tec-grid-gutter-half:calc(var(--tec-grid-gutter)/2);--tec-grid-gutter-half-negative:calc(var(--tec-grid-gutter-half)*-1);--tec-grid-gutter-small:42px;--tec-grid-gutter-small-negative:calc(var(--tec-grid-gutter-small)*-1);--tec-grid-gutter-small-half:calc(var(--tec-grid-gutter-small)/2);--tec-grid-gutter-small-half-negative:calc(var(--tec-grid-gutter-small-half)*-1);--tec-grid-gutter-page:42px;--tec-grid-gutter-page-small:19.5px;--tec-grid-width-default:1176px;--tec-grid-width-min:320px;--tec-grid-width:calc(var(--tec-grid-width-default) + var(--tec-grid-gutter-page)*2);--tec-grid-width-1-of-2:50%;--tec-grid-width-1-of-3:33.333%;--tec-grid-width-1-of-4:25%;--tec-grid-width-1-of-5:20%;--tec-grid-width-1-of-7:14.285%;--tec-grid-width-1-of-8:12.5%;--tec-grid-width-1-of-9:11.111%;--tec-spacer-0:4px;--tec-spacer-1:8px;--tec-spacer-2:12px;--tec-spacer-3:16px;--tec-spacer-4:20px;--tec-spacer-5:24px;--tec-spacer-6:28px;--tec-spacer-7:32px;--tec-spacer-8:40px;--tec-spacer-9:48px;--tec-spacer-10:56px;--tec-spacer-11:64px;--tec-spacer-12:80px;--tec-spacer-13:96px;--tec-spacer-14:160px;--tec-z-index-spinner-container:100;--tec-z-index-views-selector:30;--tec-z-index-dropdown:30;--tec-z-index-events-bar-button:20;--tec-z-index-search:10;--tec-z-index-filters:9;--tec-z-index-scroller:7;--tec-z-index-week-event-hover:5;--tec-z-index-map-event-hover:5;--tec-z-index-map-event-hover-actions:6;--tec-z-index-multiday-event:5;--tec-z-index-multiday-event-bar:2;--tec-color-text-primary:#141827;--tec-color-text-primary-light:#1418279e;--tec-color-text-secondary:#5d5d5d;--tec-color-text-disabled:#d5d5d5;--tec-color-text-events-title:var(--tec-color-text-primary);--tec-color-text-event-title:var(--tec-color-text-events-title);--tec-color-text-event-date:var(--tec-color-text-primary);--tec-color-text-secondary-event-date:var(--tec-color-text-secondary);--tec-color-icon-primary:#5d5d5d;--tec-color-icon-primary-alt:#757575;--tec-color-icon-secondary:#bababa;--tec-color-icon-active:#141827;--tec-color-icon-disabled:#d5d5d5;--tec-color-icon-focus:#334aff;--tec-color-icon-error:#da394d;--tec-color-event-icon:#141827;--tec-color-event-icon-hover:#334aff;--tec-color-accent-primary:#334aff;--tec-color-accent-primary-hover:#334affcc;--tec-color-accent-primary-active:#334affe6;--tec-color-accent-primary-background:#334aff12;--tec-color-accent-secondary:#141827;--tec-color-accent-secondary-hover:#141827cc;--tec-color-accent-secondary-active:#141827e6;--tec-color-accent-secondary-background:#14182712;--tec-color-button-primary:var(--tec-color-accent-primary);--tec-color-button-primary-hover:var(--tec-color-accent-primary-hover);--tec-color-button-primary-active:var(--tec-color-accent-primary-active);--tec-color-button-primary-background:var(--tec-color-accent-primary-background);--tec-color-button-secondary:var(--tec-color-accent-secondary);--tec-color-button-secondary-hover:var(--tec-color-accent-secondary-hover);--tec-color-button-secondary-active:var(--tec-color-accent-secondary-active);--tec-color-button-secondary-background:var(--tec-color-accent-secondary-background);--tec-color-link-primary:var(--tec-color-text-primary);--tec-color-link-accent:var(--tec-color-accent-primary);--tec-color-link-accent-hover:#334affcc;--tec-color-border-default:#d5d5d5;--tec-color-border-secondary:#e4e4e4;--tec-color-border-tertiary:#7d7d7d;--tec-color-border-hover:#5d5d5d;--tec-color-border-active:#141827;--tec-color-background:#fff;--tec-color-background-events:#0000;--tec-color-background-transparent:#fff9;--tec-color-background-secondary:#f7f6f6;--tec-color-background-messages:#14182712;--tec-color-background-secondary-hover:#f0eeee;--tec-color-background-error:#da394d14;--tec-color-box-shadow:rgba(#000,0.14);--tec-color-box-shadow-secondary:rgba(#000,0.1);--tec-color-scroll-track:rgba(#000,0.25);--tec-color-scroll-bar:rgba(#000,0.5);--tec-color-background-primary-multiday:#334aff3d;--tec-color-background-primary-multiday-hover:#334aff57;--tec-color-background-secondary-multiday:#1418273d;--tec-color-background-secondary-multiday-hover:#14182757;--tec-color-accent-primary-week-event:#334aff1a;--tec-color-accent-primary-week-event-hover:#334aff33;--tec-color-accent-primary-week-event-featured:#334aff0a;--tec-color-accent-primary-week-event-featured-hover:#334aff24;--tec-color-background-secondary-datepicker:var(--tec-color-background-secondary);--tec-color-accent-primary-background-datepicker:var(--tec-color-accent-primary-background);--tec-border-radius-default:4px;--tec-border-width-week-event:2px;--tec-box-shadow-default:0 2px 5px 0 var(--tec-color-box-shadow);--tec-box-shadow-tooltip:0 2px 12px 0 var(--tec-color-box-shadow);--tec-box-shadow-card:0 1px 6px 2px var(--tec-color-box-shadow);--tec-box-shadow-multiday:16px 6px 6px -2px var(--tec-color-box-shadow-secondary);--tec-form-color-background:var(--tec-color-background);--tec-form-color-border-default:var(--tec-color-text-primary);--tec-form-color-border-active:var(--tec-color-accent-secondary);--tec-form-color-border-secondary:var(--tec-color-border-tertiary);--tec-form-color-accent-primary:var(--tec-color-accent-primary);--tec-form-box-shadow-default:var(--tec-box-shadow-default);--tec-opacity-background:0.07;--tec-opacity-select-highlighted:0.3;--tec-opacity-icon-hover:0.8;--tec-opacity-icon-active:0.9;--tec-opacity-default:1;--tec-outline-width-default:2px;--tec-outline-style-default:solid;--tec-outline-color-default:var(--tec-color-border-active,#1a202c);--tec-outline-offset-default:2px;--tec-outline-active-default:var(--tec-outline-width-default) var(--tec-outline-style-default) var(--tec-outline-color-default);--tec-transition:all 0.2s ease;--tec-transition-background-color:background-color 0.2s ease;--tec-transition-color-border-color:color 0.2s ease,border-color 0.2s ease;--tec-transition-transform:transform 0.2s ease;--tec-transition-border-color:border-color 0.2s ease;--tec-transition-color:color 0.2s ease;--tec-transition-opacity:opacity 0.2s ease;--tec-font-family-sans-serif:"Helvetica Neue",Helvetica,-apple-system,BlinkMacSystemFont,Roboto,Arial,sans-serif;--tec-font-weight-regular:400;--tec-font-weight-bold:700;--tec-font-size-0:11px;--tec-font-size-1:12px;--tec-font-size-2:14px;--tec-font-size-3:16px;--tec-font-size-4:18px;--tec-font-size-5:20px;--tec-font-size-6:22px;--tec-font-size-7:24px;--tec-font-size-8:28px;--tec-font-size-9:32px;--tec-font-size-10:42px;--tec-line-height-0:1.38;--tec-line-height-1:1.42;--tec-line-height-2:1.5;--tec-line-height-3:1.62}#tribe-events-pg-template{background-color:var(--tec-color-background-events)}.tribe-events-single{-webkit-font-smoothing:antialiased}.tribe-events-after-html p,.tribe-events-before-html p{line-height:1.7}.tribe-events-back a,.tribe-events-back a:visited{color:var(--tec-color-text-primary);font-family:var(--tec-font-family-sans-serif);font-size:var(--tec-font-size-3);font-weight:var(--tec-font-weight-bold);-webkit-text-decoration:none;text-decoration:none}.tribe-events-notices{border-bottom:1px solid var(--tec-color-border-secondary);box-shadow:none}.tribe-events-notices ul{list-style:none;text-align:left;text-transform:none}.tribe-events-single-event-title{color:var(--tec-color-text-primary);color:var(--tec-color-text-event-title);font-family:var(--tec-font-family-sans-serif);font-size:var(--tec-font-size-7);font-weight:var(--tec-font-weight-bold);line-height:var(--tec-line-height-1);text-transform:none}@media (min-width:768px){.tribe-events-single-event-title{font-size:var(--tec-font-size-10);line-height:var(--tec-line-height-0)}}.tribe-events-schedule{background-color:initial;border:0}.tribe-events-schedule .tribe-events-schedule__datetime{color:var(--tec-color-text-primary);color:var(--tec-color-text-event-date);font-family:var(--tec-font-family-sans-serif);font-size:var(--tec-font-size-3);font-weight:var(--tec-font-weight-bold);font-weight:var(--tec-font-weight-regular);line-height:var(--tec-line-height-2);text-transform:none}@media (min-width:768px){.tribe-events-schedule .tribe-events-schedule__datetime{font-size:var(--tec-font-size-3);line-height:var(--tec-line-height-3)}}.tribe-events-schedule .recurringinfo,.tribe-related-event-info .recurringinfo{background-color:var(--tec-color-background-secondary);border-radius:40px;color:var(--tec-color-text-primary);font-family:var(--tec-font-family-sans-serif);font-size:var(--tec-font-size-1);font-weight:var(--tec-font-weight-bold);line-height:var(--tec-line-height-0);text-transform:none}.tribe-events-schedule .recurringinfo .event-is-recurring,.tribe-related-event-info .recurringinfo .event-is-recurring{letter-spacing:-9999px}.tribe-events-schedule .recurringinfo a,.tribe-related-event-info .recurringinfo a{color:var(--tec-color-accent-primary);font-weight:var(--tec-font-weight-regular);letter-spacing:normal;line-height:20px;-webkit-text-decoration:none;text-decoration:none}.tribe-events-schedule .recurringinfo{background-color:var(--tec-color-background-secondary);border-radius:40px;color:var(--tec-color-text-primary);font-family:var(--tec-font-family-sans-serif);font-size:var(--tec-font-size-1);font-weight:var(--tec-font-weight-bold);line-height:var(--tec-line-height-0);text-transform:none}@media (min-width:768px){.tribe-events-schedule .recurringinfo{font-size:var(--tec-font-size-2);line-height:var(--tec-line-height-3)}.tribe-events-schedule .recurringinfo .event-is-recurring{letter-spacing:normal}}.tribe-events-schedule .tribe-events-cost{color:var(--tec-color-text-primary);font-family:var(--tec-font-family-sans-serif);font-size:var(--tec-font-size-3);font-weight:var(--tec-font-weight-bold);line-height:var(--tec-line-height-2);text-transform:none;text-transform:uppercase}@media (min-width:768px){.tribe-events-schedule .tribe-events-cost{font-size:var(--tec-font-size-3);line-height:var(--tec-line-height-3)}}.tribe-events-content{color:var(--tec-color-text-primary);font-family:var(--tec-font-family-sans-serif)}.tribe-events-content h2,.tribe-events-content h3,.tribe-events-content h4,.tribe-events-content h5,.tribe-events-content h6{color:var(--tec-color-text-primary);font-family:var(--tec-font-family-sans-serif);font-weight:var(--tec-font-weight-bold);letter-spacing:normal;text-transform:none}.tribe-events-content ol,.tribe-events-content p,.tribe-events-content ul{font-size:var(--tec-font-size-3);line-height:var(--tec-line-height-3)}@media (min-width:768px){.tribe-events-content ol,.tribe-events-content p,.tribe-events-content ul{font-size:var(--tec-font-size-4);line-height:var(--tec-line-height-2)}}.tribe-events-content ol,.tribe-events-content ul{list-style-position:inside}.tribe-events-content ul{list-style-type:disc}.tribe-events-content a{border-bottom:1px solid var(--tec-color-link-accent);color:var(--tec-color-link-primary);transition:var(--tec-transition-color)}.tribe-events-content a:active,.tribe-events-content a:focus,.tribe-events-content a:hover{border-bottom:1px solid;color:var(--tec-color-link-accent)}.tribe-events-content a{-webkit-text-decoration:none;text-decoration:none}.tribe-events-content pre{background-color:var(--tec-color-background-secondary);font-size:var(--tec-font-size-3);line-height:var(--tec-line-height-3)}.tribe-events-content blockquote{quotes:auto}.tribe-events-content blockquote:before{content:open-quote}.tribe-events-content blockquote:after{content:close-quote}.tribe-events-cal-links{color:var(--tec-color-text-primary);font-family:var(--tec-font-family-sans-serif)}.tribe-events-cal-links a{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2725%27 height=%2718%27%3E%3Cg fill=%27none%27 fill-rule=%27evenodd%27%3E%3Cpath fill=%27%23141827%27 d=%27M0 .431V17.57c0 .238.163.431.364.431h17.273c.2 0 .363-.193.363-.431V.43c0-.237-.163-.43-.363-.43H.364C.163 0 0 .193 0 .431m18 7.585h-1.015V4.687H.991v12.07h15.994v-3.753H18zM.99 1.239h15.995v2.315H.991z%27/%3E%3Cpath stroke=%27%23141827%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%271.2%27 d=%27M22.918 10.5H9.207m11.488-3.255 3.252 3.272-3.213 3.213%27/%3E%3C/g%3E%3C/svg%3E") 0 /24px no-repeat;color:var(--tec-color-link-accent);font-size:var(--tec-font-size-2);font-weight:var(--tec-font-weight-regular);line-height:var(--tec-line-height-3);-webkit-text-decoration:none;text-decoration:none}.tribe-events-event-meta{color:var(--tec-color-text-primary);font-family:var(--tec-font-family-sans-serif);font-size:var(--tec-font-size-2)}.tribe-events-event-meta a,.tribe-events-event-meta a:visited{color:var(--tec-color-link-accent)}.tribe-events-event-meta a:focus,.tribe-events-event-meta a:hover{color:var(--tec-color-link-accent-hover)}.tribe-events-event-meta dd,.tribe-events-event-meta dt{word-break:break-word}.tribe-events-event-meta dt{line-height:var(--tec-line-height-3)}.tribe-events-event-meta .tribe-events-meta-list{list-style:none;margin:0;padding:0}.tribe-events-event-meta .tribe-events-meta-item{list-style:none;word-break:break-word}.tribe-events-event-meta .tribe-events-meta-label{display:block;font-weight:var(--tec-font-weight-bold);line-height:var(--tec-line-height-3)}.tribe-events-event-meta .tribe-events-meta-value{display:block;word-break:break-word}.tribe-events-event-meta .tribe-events-address{font-style:normal;line-height:26px}.tribe-events-event-meta:before,.tribe-events-event-meta~div:not(.tribe-events-event-meta,.event-tickets){border-top:1px solid var(--tec-color-border-secondary)}@media (min-width:768px){.tribe-events-event-meta.secondary:before{content:normal}}.single-tribe_events .tribe-events-single .tribe-events-event-meta{background-color:initial;color:var(--tec-color-text-primary)}.tribe-events-meta-group .tribe-events-single-section-title{color:var(--tec-color-text-primary);font-size:var(--tec-font-size-2);font-weight:var(--tec-font-weight-bold);letter-spacing:1px;text-transform:uppercase}.tribe-events-meta-group a{color:var(--tec-color-link-accent)}.tribe-events-meta-group.tribe-events-meta-group-gmap{border-top:1px solid var(--tec-color-border-secondary)}.tribe-events-venue-map{border:0;border-radius:0}.tribe-events-related-events-title{border-top:1px solid var(--tec-color-border-secondary);color:var(--tec-color-text-primary);font-family:var(--tec-font-family-sans-serif);font-size:var(--tec-font-size-6);font-weight:var(--tec-font-weight-bold);line-height:var(--tec-line-height-2);text-transform:none}@media (min-width:768px){.tribe-events-related-events-title{font-size:var(--tec-font-size-8);line-height:var(--tec-line-height-1)}}.tribe-events-single ul.tribe-related-events li,.tribe-events-single ul.tribe-related-events li .tribe-related-events-title{color:var(--tec-color-text-primary);font-family:var(--tec-font-family-sans-serif)}.tribe-events-single ul.tribe-related-events li .tribe-related-events-title{font-size:var(--tec-font-size-2);font-weight:var(--tec-font-weight-bold);line-height:var(--tec-line-height-3);text-transform:none}.tribe-events-single ul.tribe-related-events li .tribe-related-events-title a{color:var(--tec-color-link-primary)}#tribe-events-footer{border-top:1px solid var(--tec-color-border-secondary)}.tribe-events-single .tribe-events-sub-nav{color:var(--tec-color-text-primary);font-family:var(--tec-font-family-sans-serif);font-size:var(--tec-font-size-1);list-style:none}@media (min-width:768px){.tribe-events-single .tribe-events-sub-nav{font-size:var(--tec-font-size-3)}}.tribe-events-single .tribe-events-sub-nav .tribe-events-nav-next a,.tribe-events-single .tribe-events-sub-nav .tribe-events-nav-previous a{color:var(--tec-color-text-secondary);-webkit-text-decoration:none;text-decoration:none;vertical-align:middle}.tribe-events-single .tribe-events-sub-nav .tribe-events-nav-next a:after,.tribe-events-single .tribe-events-sub-nav .tribe-events-nav-next a:before,.tribe-events-single .tribe-events-sub-nav .tribe-events-nav-previous a:after,.tribe-events-single .tribe-events-sub-nav .tribe-events-nav-previous a:before{content:"";display:inline-block;height:20px;vertical-align:middle;width:11px}.tribe-events-single .tribe-events-sub-nav .tribe-events-nav-next a:focus,.tribe-events-single .tribe-events-sub-nav .tribe-events-nav-next a:hover,.tribe-events-single .tribe-events-sub-nav .tribe-events-nav-previous a:focus,.tribe-events-single .tribe-events-sub-nav .tribe-events-nav-previous a:hover{color:var(--tec-color-text-primary)}.tribe-events-single .tribe-events-sub-nav .tribe-events-nav-previous a:before{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2720%27%3E%3Cpath fill=%27%235d5d5d%27 d=%27M11.916 17.841 10 19.757l-9.9-9.9L10-.041l1.916 1.916-7.983 7.984z%27/%3E%3C/svg%3E") 0 /7px no-repeat}@media (min-width:768px){.tribe-events-single .tribe-events-sub-nav .tribe-events-nav-previous a:before{background-size:9px}}.tribe-events-single .tribe-events-sub-nav .tribe-events-nav-previous a:focus:before,.tribe-events-single .tribe-events-sub-nav .tribe-events-nav-previous a:hover:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2720%27%3E%3Cpath fill=%27%23141827%27 d=%27M11.916 17.841 10 19.757l-9.9-9.9L10-.041l1.916 1.916-7.983 7.984z%27/%3E%3C/svg%3E")}.tribe-events-single .tribe-events-sub-nav .tribe-events-nav-next a:after{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2720%27%3E%3Cpath fill=%27%235d5d5d%27 d=%27M.084 2.159 2 .243l9.9 9.9L2 20.041.084 18.126l7.983-7.984z%27/%3E%3C/svg%3E") 100% /7px no-repeat}@media (min-width:768px){.tribe-events-single .tribe-events-sub-nav .tribe-events-nav-next a:after{background-size:9px}}.tribe-events-single .tribe-events-sub-nav .tribe-events-nav-next a:focus:after,.tribe-events-single .tribe-events-sub-nav .tribe-events-nav-next a:hover:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2720%27%3E%3Cpath fill=%27%23141827%27 d=%27M.084 2.159 2 .243l9.9 9.9L2 20.041.084 18.126l7.983-7.984z%27/%3E%3C/svg%3E")}.tribe-theme-twentynineteen .tribe-events-content h2:before,.tribe-theme-twentynineteen .tribe-events-related-events-title:before,.tribe-theme-twentynineteen .tribe-events-single-event-title:before,.tribe-theme-twentynineteen .tribe-events-single-section-title:before{content:normal}.tribe-theme-twentytwentyone .tribe-events-cal-links a:focus:not(.wp-block-button__link):not(.wp-block-file__button){background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2725%27 height=%2718%27%3E%3Cg fill=%27none%27 fill-rule=%27evenodd%27%3E%3Cpath fill=%27%23141827%27 d=%27M0 .431V17.57c0 .238.163.431.364.431h17.273c.2 0 .363-.193.363-.431V.43c0-.237-.163-.43-.363-.43H.364C.163 0 0 .193 0 .431m18 7.585h-1.015V4.687H.991v12.07h15.994v-3.753H18zM.99 1.239h15.995v2.315H.991z%27/%3E%3Cpath stroke=%27%23141827%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%271.2%27 d=%27M22.918 10.5H9.207m11.488-3.255 3.252 3.272-3.213 3.213%27/%3E%3C/g%3E%3C/svg%3E") 0 /24px no-repeat}.tribe-theme-twentytwentyone .tribe-events-schedule .recurringinfo a:focus:not(.wp-block-button__link):not(.wp-block-file__button),.tribe-theme-twentytwentyone .tribe-related-event-info .recurringinfo a:focus:not(.wp-block-button__link):not(.wp-block-file__button){background:#0000;-webkit-text-decoration:none;text-decoration:none}#top.tribe-theme-enfold.single-tribe_events .tribe-events-single-event-title{color:var(--tec-color-text-primary);color:var(--tec-color-text-event-title);font-family:var(--tec-font-family-sans-serif);font-size:var(--tec-font-size-7);font-weight:var(--tec-font-weight-bold);line-height:var(--tec-line-height-1);text-transform:none}@media (min-width:768px){#top.tribe-theme-enfold.single-tribe_events .tribe-events-single-event-title{font-size:var(--tec-font-size-10);line-height:var(--tec-line-height-0)}}#top.tribe-theme-enfold.single-tribe_events .tribe-events-schedule h3{color:var(--tec-color-text-primary);color:var(--tec-color-text-event-date);font-family:var(--tec-font-family-sans-serif);font-size:var(--tec-font-size-3);font-weight:var(--tec-font-weight-bold);font-weight:var(--tec-font-weight-regular);line-height:var(--tec-line-height-2);text-transform:none}@media (min-width:768px){#top.tribe-theme-enfold.single-tribe_events .tribe-events-schedule h3{font-size:var(--tec-font-size-3);line-height:var(--tec-line-height-3)}}#top.tribe-theme-enfold.single-tribe_events .tribe-events-content pre{background-image:none}#top.tribe-theme-enfold.single-tribe_events #wrap_all .tribe-events-cal-links a,#top.tribe-theme-enfold.single-tribe_events .av-single-event-meta-bar-inner{border:0}.fusion-widget-area .tribe-events-event-meta:before,.fusion-widget-area .tribe-events-event-meta~div:not(.tribe-events-event-meta):not(.event-tickets){border:none}
.tribe-events-hybrid-single-marker,.tribe-events-virtual-single-marker{background-color:var(--tec-color-background-secondary);color:var(--tec-color-text-primary);font-family:var(--tec-font-family-sans-serif);font-size:var(--tec-font-size-1);line-height:var(--tec-font-size-1)}@media (min-width:768px){.tribe-events-schedule .tribe-events-hybrid-single-marker,.tribe-events-schedule .tribe-events-virtual-single-marker{font-size:var(--tec-font-size-2);font-weight:500;line-height:var(--tec-line-height-3)}}.tribe-events-virtual-link-button{background-color:var(--tec-color-accent-primary)}.tribe-events-virtual-link-button:focus,.tribe-events-virtual-link-button:hover{background-color:var(--tec-color-accent-primary-hover)}.tec-events-virtual-single-api-details__icon path,.tribe-events-virtual-single-zoom-details__icon path{fill:var(--tec-color-text-primary)}.tec-events-virtual-single-api-details__text{font-size:var(--tec-font-size-2)}.tec-events-virtual-single-api-details__link,.tec-events-virtual-single-api-details__phone-number{font-weight:var(--tec-font-weight-normal)}.tec-events-virtual-single-api-details__link:focus,.tec-events-virtual-single-api-details__link:hover,.tec-events-virtual-single-api-details__phone-number:focus,.tec-events-virtual-single-api-details__phone-number:hover{color:var(--tec-color-accent-primary-hover)}.tec-events-virtual-single-api-details__phone-number-list{line-height:var(--tec-line-height-3)}ul.tribe-related-events .tribe-related-event-info .tribe-events-hybrid-single-marker,ul.tribe-related-events .tribe-related-event-info .tribe-events-virtual-single-marker{letter-spacing:-9999px}.tribe-events-virtual-single-youtube__embed-wrap{margin-bottom:24px}.tribe-events-virtual-single-youtube__embed{height:0;margin:0;padding-bottom:56.25%;position:relative;width:100%}.tribe-events-virtual-single-youtube__embed iframe{height:100%;left:0;max-height:100%;position:absolute;top:0;width:100%}.tribe-events-virtual-single-youtube__chat-wrap{margin:0;position:relative}.tribe-events-virtual-single-youtube__chat-embed{width:100%}
