/* ================================
   TESTIMONIAL SHORTCODE STYLES
   ================================ */

/* --------------------------------
   DEFAULT COLOUR PALETTE
   These are overridden when bgcolor 
   attribute is used on the shortcode
   -------------------------------- */
:root {
    --ts-primary: #1e3a8a;
    --ts-secondary: #3b82f6;
    --ts-light: #dbeafe;
    --ts-dark: #1e3a8a;
    --ts-text: #ffffff;
    --ts-text-on-secondary: #ffffff;
    --ts-shadow-rgb: 30, 58, 138;
    
    /* Neutral colours (not affected by bgcolor) */
    --ts-neutral-dark: #1f2937;
    --ts-neutral-gray: #6b7280;
    --ts-neutral-light: #f5f5f5;
    --ts-white: #ffffff;
}

/* Base shortcode wrapper */
.dncg-sc-testimonial {
    margin: 2rem 0;
}

/* Alignment variations */
.dncg-sc-testimonial-align--left {
    text-align: left;
}

.dncg-sc-testimonial-align--center {
    text-align: center;
}

.dncg-sc-testimonial-align--right {
    text-align: right;
}


/* ================================
   SPEECH IMAGE LAYOUT
   ================================ */

.dncg-sc-testimonial-speechimage {
    max-width: 100%;
}

.dncg-sc-testimonial-speechimage__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Quote bubble - base styles */
.dncg-sc-testimonial-speechimage__quote {
    background: linear-gradient(135deg, var(--ts-primary) 0%, var(--ts-secondary) 100%);
    padding: 2rem;
    margin: 0 1rem 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    border-radius: 12px;
    color: var(--ts-text) !important;
    position: relative;
    box-shadow: 0 4px 15px rgba(var(--ts-shadow-rgb), 0.2);
    transition: all 0.3s ease;
}


/* --------------------------------
   VERTICAL ORIENTATION
   -------------------------------- */

.dncg-sc-testimonial-speechimage--vertical {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.dncg-sc-testimonial-speechimage--vertical .dncg-sc-testimonial-speechimage__quote {
    width: 100%;
    box-sizing: border-box;
}

/* Speech bubble pointer - pointing down */
.dncg-sc-testimonial-speechimage--vertical .dncg-sc-testimonial-speechimage__quote::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid var(--ts-secondary);
}

.dncg-sc-testimonial-speechimage--vertical .dncg-sc-testimonial-speechimage__person {
    text-align: center;
    margin-top:-1rem;
}


/* --------------------------------
   HORIZONTAL ORIENTATIONS
   -------------------------------- */

.dncg-sc-testimonial-speechimage--horizontal-left,
.dncg-sc-testimonial-speechimage--horizontal-right {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.dncg-sc-testimonial-speechimage__inner--horizontal {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

/* Person block in horizontal - fixed width */
.dncg-sc-testimonial-speechimage--horizontal-left .dncg-sc-testimonial-speechimage__person,
.dncg-sc-testimonial-speechimage--horizontal-right .dncg-sc-testimonial-speechimage__person {
    flex: 0 0 auto;
    width: 150px;
    text-align: center;
}

/* Quote takes remaining space */
.dncg-sc-testimonial-speechimage__inner--horizontal .dncg-sc-testimonial-speechimage__quote {
    flex: 1;
    margin: 0;
}

/* Horizontal Left: pointer pointing left (toward person) */
.dncg-sc-testimonial-speechimage__quote--right::after {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid var(--ts-secondary);
}

/* Horizontal Right: pointer pointing right (toward person) */
.dncg-sc-testimonial-speechimage__quote--left::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid var(--ts-secondary);
}


/* --------------------------------
   PERSON BLOCK (shared)
   -------------------------------- */

.dncg-sc-testimonial__image {
    max-width: 200px;
    margin: 0 auto;
}

.dncg-sc-testimonial__image img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    object-position: center bottom;
    transition: all 0.3s ease;
}

.dncg-sc-testimonial__image img:hover {
    transform: scale(1.02);
}

/* Avatar fallback */
.dncg-sc-testimonial__avatar-fallback {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ts-light), var(--ts-primary));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--ts-white);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Attribution */
.dncg-sc-testimonial__attribution {
    margin-top: -2.5rem;
    text-align: center;
    display: inline-block;
    transform: rotate(-3deg);
}

.dncg-sc-testimonial__name {
    font-family: 'Nove', 'Arial Black', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    text-align:center;
    text-transform: uppercase;
    color: var(--ts-text-on-secondary);
    line-height: 1.1;
    display: inline-block;
    background: var(--ts-secondary);
    padding: 0.2em 0.4em;
    margin-bottom: 0;
}

.dncg-sc-testimonial__course {
    font-size: 0.95rem;
    color: var(--ts-neutral-dark);
    font-weight: 600;
    line-height: 1.3;
    display: inline-block;
    background: var(--ts-secondary);
    padding: 0.15em 0.4em;
}


/* --------------------------------
   RESPONSIVE - HORIZONTAL
   -------------------------------- */

@media (max-width: 600px) {
    /* Stack horizontal layouts on mobile */
    .dncg-sc-testimonial-speechimage__inner--horizontal {
        flex-direction: column;
    }
    
    .dncg-sc-testimonial-speechimage--horizontal-left .dncg-sc-testimonial-speechimage__person,
    .dncg-sc-testimonial-speechimage--horizontal-right .dncg-sc-testimonial-speechimage__person {
        width: auto;
    }
    
    /* Reorder: quote first, then person (for both horizontal variants) */
    .dncg-sc-testimonial-speechimage--horizontal-left .dncg-sc-testimonial-speechimage__inner--horizontal {
        flex-direction: column-reverse;
    }
    
    /* Hide horizontal pointers on mobile */
    .dncg-sc-testimonial-speechimage__quote--right::after,
    .dncg-sc-testimonial-speechimage__quote--left::after {
        display: none;
    }
    
    /* Add vertical pointer instead */
    .dncg-sc-testimonial-speechimage--horizontal-left .dncg-sc-testimonial-speechimage__quote,
    .dncg-sc-testimonial-speechimage--horizontal-right .dncg-sc-testimonial-speechimage__quote {
        margin-bottom: 2rem;
    }
    
    .dncg-sc-testimonial-speechimage--horizontal-left .dncg-sc-testimonial-speechimage__quote::before,
    .dncg-sc-testimonial-speechimage--horizontal-right .dncg-sc-testimonial-speechimage__quote::before {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-top: 15px solid var(--ts-secondary);
    }
}

@media (max-width: 767px) {
    .dncg-sc-testimonial-speechimage__quote {
        font-size: 1rem;
        padding: 1.5rem;
    }
    
    .dncg-sc-testimonial__image {
        max-width: 150px;
    }
    
    .dncg-sc-testimonial__image img {
        max-height: 180px;
    }
    
    .dncg-sc-testimonial__avatar-fallback {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
    
    .dncg-sc-testimonial__attribution {
        margin-top: -1rem;
    }
    
    .dncg-sc-testimonial__name {
        font-size: 1.5rem;
    }
    
    .dncg-sc-testimonial__course {
        font-size: 0.85rem;
    }
}


/* ================================
   CARD LAYOUT (Polaroid/Story style)
   ================================ */

.dncg-sc-testimonial-card {
    max-width: 350px;
}

.dncg-sc-testimonial-card__inner {
    background: var(--ts-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dncg-sc-testimonial-card__inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.dncg-sc-testimonial-card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.dncg-sc-testimonial-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.dncg-sc-testimonial-card__content {
    padding: 1.5rem;
}

.dncg-sc-testimonial-card__attribution {
    margin-bottom: 1rem;
    display: inline-block;
    transform: rotate(-2deg);
}

.dncg-sc-testimonial-card__name {
    font-family: 'Nove', 'Arial Black', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--ts-text-on-secondary);
    line-height: 1.1;
    display: inline-block;
    background: var(--ts-secondary);
    padding: 0.15em 0.3em;
}

.dncg-sc-testimonial-card__course {
    font-size: 0.85rem;
    color: var(--ts-text-on-secondary);
    font-weight: 600;
    line-height: 1.3;
    display: inline-block;
    background: var(--ts-secondary);
    padding: 0.1em 0.3em;
}

.dncg-sc-testimonial-card__quote {
    font-family: 'Source Serif Pro', Georgia, serif;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--ts-neutral-dark);
    margin: 0;
    padding: 0;
}

/* No image variant */
.dncg-sc-testimonial-card.dncg-sc-testimonial--no-image .dncg-sc-testimonial-card__content {
    padding-top: 2rem;
}


/* ================================
   HIGHLIGHT LAYOUT (Featured/Hero)
   ================================ */

.dncg-sc-testimonial-highlight {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.dncg-sc-testimonial-highlight__inner {
    background: linear-gradient(135deg, var(--ts-primary) 0%, var(--ts-secondary) 100%);
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 8px 30px rgba(var(--ts-shadow-rgb), 0.3);
}

.dncg-sc-testimonial-highlight__quote-area {
    flex: 1;
    position: relative;
}

.dncg-sc-testimonial-highlight__mark {
    font-family: 'Nove', Georgia, serif;
    font-size: 6rem;
    color: var(--ts-white);
    opacity: 0.3;
    line-height: 0.8;
    position: absolute;
    top: -1rem;
    left: -0.5rem;
}

.dncg-sc-testimonial-highlight__quote {
    font-family: 'Source Serif Pro', Georgia, serif;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--ts-text) !important;
    margin: 0;
    padding: 0;
    padding-left: 2.5rem;
}

.dncg-sc-testimonial-highlight__person {
    flex: 0 0 auto;
    text-align: center;
    max-width: 200px;
}

.dncg-sc-testimonial-highlight__image {
    margin-bottom: 1rem;
}

.dncg-sc-testimonial-highlight__image img {
    width: 150px;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    object-position: center bottom;
}

.dncg-sc-testimonial-highlight__attribution {
    display: inline-block;
    transform: rotate(-3deg);
}

.dncg-sc-testimonial-highlight__name {
    font-family: 'Nove', 'Arial Black', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--ts-neutral-dark);
    line-height: 1.1;
    display: inline-block;
    background: var(--ts-white);
    padding: 0.15em 0.3em;
}

.dncg-sc-testimonial-highlight__course {
    font-size: 0.85rem;
    color: var(--ts-neutral-dark);
    font-weight: 600;
    line-height: 1.3;
    display: inline-block;
    background: var(--ts-white);
    padding: 0.1em 0.3em;
}

/* No image variant */
.dncg-sc-testimonial-highlight.dncg-sc-testimonial--no-image .dncg-sc-testimonial-highlight__inner {
    flex-direction: column;
    text-align: center;
}

.dncg-sc-testimonial-highlight.dncg-sc-testimonial--no-image .dncg-sc-testimonial-highlight__quote {
    padding-left: 0;
}

.dncg-sc-testimonial-highlight.dncg-sc-testimonial--no-image .dncg-sc-testimonial-highlight__mark {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-bottom: -2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .dncg-sc-testimonial-highlight__inner {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }
    
    .dncg-sc-testimonial-highlight__quote-area {
        order: 1;
    }
    
    .dncg-sc-testimonial-highlight__person {
        order: 2;
    }
    
    .dncg-sc-testimonial-highlight__quote {
        font-size: 1.25rem;
        padding-left: 2rem;
    }
    
    .dncg-sc-testimonial-highlight__mark {
        font-size: 4rem;
    }
    
    .dncg-sc-testimonial-highlight__image img {
        width: 120px;
    }
}


/* ================================
   INLINE LAYOUT (Compact)
   ================================ */

.dncg-sc-testimonial-inline {
    max-width: 700px;
}

.dncg-sc-testimonial-inline__inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Circular image */
.dncg-sc-testimonial-inline__image {
    flex: 0 0 auto;
}

.dncg-sc-testimonial-inline__image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
}

/* Avatar fallback */
.dncg-sc-testimonial-inline__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ts-light), var(--ts-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--ts-white);
    font-weight: 700;
    flex: 0 0 auto;
}

/* Content area */
.dncg-sc-testimonial-inline__content {
    flex: 1;
}

.dncg-sc-testimonial-inline__quote {
    font-size: 1rem;
    font-style: italic;
    color: var(--ts-neutral-dark);
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

.dncg-sc-testimonial-inline__quote::before {
    content: '"';
    color: var(--ts-primary);
    font-weight: 700;
}

.dncg-sc-testimonial-inline__quote::after {
    content: '"';
    color: var(--ts-primary);
    font-weight: 700;
}

.dncg-sc-testimonial-inline__attribution {
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: var(--ts-neutral-gray);
}

.dncg-sc-testimonial-inline__name {
    font-weight: 700;
    color: var(--ts-neutral-dark);
}

.dncg-sc-testimonial-inline__separator {
    margin-right: 0.25rem;
}

.dncg-sc-testimonial-inline__course {
    font-weight: 400;
}

/* Size variations */
.dncg-sc-testimonial-inline--small .dncg-sc-testimonial-inline__image img,
.dncg-sc-testimonial-inline--small .dncg-sc-testimonial-inline__avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.dncg-sc-testimonial-inline--small .dncg-sc-testimonial-inline__quote {
    font-size: 0.9rem;
}

.dncg-sc-testimonial-inline--small .dncg-sc-testimonial-inline__attribution {
    font-size: 0.75rem;
}

.dncg-sc-testimonial-inline--large .dncg-sc-testimonial-inline__image img,
.dncg-sc-testimonial-inline--large .dncg-sc-testimonial-inline__avatar {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.dncg-sc-testimonial-inline--large .dncg-sc-testimonial-inline__quote {
    font-size: 1.15rem;
}

.dncg-sc-testimonial-inline--large .dncg-sc-testimonial-inline__attribution {
    font-size: 0.95rem;
}

/* Mobile: stack vertically */
@media (max-width: 480px) {
    .dncg-sc-testimonial-inline__inner {
        flex-direction: column;
        text-align: center;
    }
}


/* ================================
   QUOTE ONLY LAYOUT
   ================================ */

.dncg-sc-testimonial-quote-only {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 0;
}

.dncg-sc-testimonial-quote-only__text {
    font-family: 'Source Serif Pro', Georgia, serif;
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--ts-neutral-dark);
    margin: 0;
    padding: 0;
    position: relative;
}

.dncg-sc-testimonial-quote-only__mark {
    font-family: 'Nove', Georgia, serif;
    font-size: 3rem;
    color: var(--ts-primary);
    opacity: 0.3;
    line-height: 1;
}

.dncg-sc-testimonial-quote-only__mark--open {
    margin-right: 0.25rem;
}

.dncg-sc-testimonial-quote-only__mark--close {
    margin-left: 0.25rem;
}

.dncg-sc-testimonial-quote-only__attribution {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--ts-neutral-gray);
}

.dncg-sc-testimonial-quote-only__attribution .dncg-sc-testimonial__name {
    display: inline;
    font-size: inherit;
    color: var(--ts-neutral-dark);
}

.dncg-sc-testimonial-quote-only__attribution .dncg-sc-testimonial__course {
    display: inline;
    font-size: inherit;
    font-weight: 400;
}

.dncg-sc-testimonial-quote-only__separator {
    margin: 0 0.5rem;
}

/* Size variations */
.dncg-sc-testimonial-quote-only--small .dncg-sc-testimonial-quote-only__text {
    font-size: 1.1rem;
}

.dncg-sc-testimonial-quote-only--small .dncg-sc-testimonial-quote-only__mark {
    font-size: 2rem;
}

.dncg-sc-testimonial-quote-only--large .dncg-sc-testimonial-quote-only__text {
    font-size: 2rem;
}

.dncg-sc-testimonial-quote-only--large .dncg-sc-testimonial-quote-only__mark {
    font-size: 4rem;
}

@media (max-width: 767px) {
    .dncg-sc-testimonial-quote-only__text {
        font-size: 1.25rem;
    }
    
    .dncg-sc-testimonial-quote-only__mark {
        font-size: 2.5rem;
    }
    
    .dncg-sc-testimonial-quote-only--large .dncg-sc-testimonial-quote-only__text {
        font-size: 1.5rem;
    }
}

.dncg-sc-testimonial blockquote {
    border-left:none;
}.accordion-header{background:none;border:0;box-sizing:border-box;color:inherit;cursor:pointer;font-size:12px;font-weight:700;padding:10px 20px;position:relative;text-align:left;width:100%}.accordion-header:before{background-color:#000;border-radius:100%;box-sizing:border-box;color:#fff;content:"\f132";font-family:dashicons,sans-serif;font-size:10px;font-weight:400;height:14px;left:0;line-height:17px;padding:0 1px 0 0;position:absolute;text-align:center;top:12px;width:15px}.accordion-header:after{border-bottom:1px solid #ddd;content:"";position:absolute;right:0;top:50%;transform:translateY(-50%);width:80%}.accordion-header.is-active:before{content:"\f460";line-height:15px}.accordion-header:focus{outline:1px solid #5b9dd9}.accordion-header:hover{background:none}.tribe-tickets-editor-history:after{width:calc(100% - 80px)}.tribe_attendee_meta:after{width:calc(100% - 170px)}.tribe_advanced_meta:after{width:calc(100% - 105px)}.accordion-label:focus{outline:none}.accordion-content{display:none}.ticket_panel .accordion-content{margin:1em 0 2em}.accordion-content.is-active{display:block}.tribe-common-c-loader.tribe-tickets-loader__modal,.tribe-common-c-loader.tribe-tickets-loader__tickets-block{align-items:center;background:var(--tec-color-background-transparent);display:flex;height:100%;justify-content:center;left:0;padding:0;position:absolute;top:0;width:100%;z-index:var(--tec-z-index-spinner-container)}@media (min-width:768px){.tribe-common-c-loader.tribe-tickets-loader__modal,.tribe-common-c-loader.tribe-tickets-loader__tickets-block{padding:0}}.tribe-common-c-loader.tribe-tickets-loader__modal{height:100vh;position:fixed;width:100vw}.event-tickets .tribe-common-c-loader{align-items:center;background:var(--tec-color-background-transparent);display:flex;height:100%;justify-content:center;left:0;padding:0;position:absolute;top:0;width:100%;z-index:var(--tec-z-index-spinner-container)}@media (min-width:768px){.event-tickets .tribe-common-c-loader{padding:0}}.event-tickets .tribe-tickets__notice,.tribe-common .tribe-tickets__notice{background-color:var(--tec-color-background-secondary);border-radius:var(--tec-border-radius-default);margin:var(--tec-spacer-4) 0;padding:var(--tec-spacer-3)}.event-tickets .tribe-tickets__notice>:last-child,.tribe-common .tribe-tickets__notice>:last-child{margin-bottom:0;padding-bottom:0}.event-tickets .tribe-tickets-notice__title,.tribe-common .tribe-tickets-notice__title{margin:0;position:relative}.event-tickets .tribe-tickets-notice__title:empty,.tribe-common .tribe-tickets-notice__title:empty{display:none}.event-tickets .tribe-tickets__notice--error,.tribe-common .tribe-tickets__notice--error{background-color:var(--tec-color-background-error);display:none;padding-left:50px;position:relative}.event-tickets .tribe-tickets__notice--error:before,.tribe-common .tribe-tickets__notice--error:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2718%27 height=%2718%27%3E%3Cg fill=%27none%27 fill-rule=%27evenodd%27 transform=%27translate%281 1%29%27%3E%3Ccircle cx=%278%27 cy=%278%27 r=%277.467%27 stroke=%27%23141827%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%271.5%27/%3E%3Ccircle cx=%278%27 cy=%2711.733%27 r=%271.067%27 fill=%27%23141827%27 fill-rule=%27nonzero%27/%3E%3Cpath fill=%27%23141827%27 stroke=%27%23141827%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%271.5%27 d=%27M8 3.733v4.8%27/%3E%3C/g%3E%3C/svg%3E");background-size:contain;content:"";height:var(--tec-spacer-3);left:var(--tec-spacer-4);position:absolute;top:var(--tec-spacer-4);width:var(--tec-spacer-3)}.event-tickets .tribe-tickets__notice--barred,.tribe-common .tribe-tickets__notice--barred{background-color:var(--tec-color-background);border:var(--tec-spacer-0) solid var(--tec-color-border-secondary);border-bottom:0;border-radius:0;border-top:0;padding:0 var(--tec-spacer-2)}.event-tickets .tribe-tickets__notice--barred-left,.tribe-common .tribe-tickets__notice--barred-left{border-right:0;padding:0 0 0 var(--tec-spacer-2)}.event-tickets .tribe-tickets__notice--barred-right,.tribe-common .tribe-tickets__notice--barred-right{border-left:0;padding:0 var(--tec-spacer-2) 0 0}.event-tickets .tribe-tickets-svgicon{background-repeat:no-repeat;background-size:contain}.tooltipster-base.tribe-tickets-tooltip-theme{background-color:var(--tec-color-background);border:1px solid var(--tec-color-border-default);border-radius:var(--tec-border-radius-default);box-shadow:var(--tec-box-shadow-tooltip);height:auto!important;max-width:254px;padding:var(--tec-spacer-5)}.tooltipster-base.tribe-tickets-tooltip-theme .tooltipster-box{background-color:initial;border:0;border-radius:0;box-shadow:none;margin:0}.tooltipster-base.tribe-tickets-tooltip-theme .tooltipster-box .tooltipster-content{color:var(--tec-color-text-primary);overflow:inherit;padding:0;word-break:break-word}.tooltipster-base.tribe-tickets-tooltip-theme .tooltipster-arrow{display:none}.tribe-common a.tribe-common-c-btn--small,.tribe-common button.tribe-common-c-btn--small,.tribe-common input[type=button].tribe-common-c-btn--small,.tribe-common input[type=submit].tribe-common-c-btn--small{background-color:var(--tec-color-accent-primary);padding:11px 14px;width:auto}.tribe-common a.tribe-common-c-btn--small:active,.tribe-common a.tribe-common-c-btn--small:disabled,.tribe-common a.tribe-common-c-btn--small:focus,.tribe-common a.tribe-common-c-btn--small:hover,.tribe-common button.tribe-common-c-btn--small:active,.tribe-common button.tribe-common-c-btn--small:disabled,.tribe-common button.tribe-common-c-btn--small:focus,.tribe-common button.tribe-common-c-btn--small:hover,.tribe-common input[type=button].tribe-common-c-btn--small:active,.tribe-common input[type=button].tribe-common-c-btn--small:disabled,.tribe-common input[type=button].tribe-common-c-btn--small:focus,.tribe-common input[type=button].tribe-common-c-btn--small:hover,.tribe-common input[type=submit].tribe-common-c-btn--small:active,.tribe-common input[type=submit].tribe-common-c-btn--small:disabled,.tribe-common input[type=submit].tribe-common-c-btn--small:focus,.tribe-common input[type=submit].tribe-common-c-btn--small:hover{padding:11px 14px}.tribe-common a.tribe-common-c-btn-link,.tribe-common button.tribe-common-c-btn-link,.tribe-common input[type=button].tribe-common-c-btn-link,.tribe-common input[type=submit].tribe-common-c-btn-link{background:#0000;border:0;border-radius:0;color:var(--tec-color-text-primary);color:inherit;cursor:pointer;display:inline-block;font-family:var(--tec-font-family-sans-serif);font-size:var(--tec-font-size-2);font-weight:var(--tec-font-weight-regular);height:auto;line-height:var(--tec-line-height-3);outline:none;padding:0;-webkit-text-decoration:none;text-decoration:none;width:auto}.tribe-common a.tribe-common-c-btn-link:active,.tribe-common a.tribe-common-c-btn-link:focus,.tribe-common a.tribe-common-c-btn-link:hover,.tribe-common button.tribe-common-c-btn-link:active,.tribe-common button.tribe-common-c-btn-link:focus,.tribe-common button.tribe-common-c-btn-link:hover,.tribe-common input[type=button].tribe-common-c-btn-link:active,.tribe-common input[type=button].tribe-common-c-btn-link:focus,.tribe-common input[type=button].tribe-common-c-btn-link:hover,.tribe-common input[type=submit].tribe-common-c-btn-link:active,.tribe-common input[type=submit].tribe-common-c-btn-link:focus,.tribe-common input[type=submit].tribe-common-c-btn-link:hover{background:#0000;color:inherit}.tribe-common a.tribe-common-c-btn-link,.tribe-common button.tribe-common-c-btn-link,.tribe-common input[type=button].tribe-common-c-btn-link,.tribe-common input[type=submit].tribe-common-c-btn-link{text-align:center;-webkit-text-decoration:underline;text-decoration:underline;transition:var(--tec-transition-color)}.tribe-common a.tribe-common-c-btn-link:focus,.tribe-common a.tribe-common-c-btn-link:hover,.tribe-common button.tribe-common-c-btn-link:focus,.tribe-common button.tribe-common-c-btn-link:hover,.tribe-common input[type=button].tribe-common-c-btn-link:focus,.tribe-common input[type=button].tribe-common-c-btn-link:hover,.tribe-common input[type=submit].tribe-common-c-btn-link:focus,.tribe-common input[type=submit].tribe-common-c-btn-link:hover{background-color:initial}.tribe-common a.tribe-common-c-btn-link,.tribe-common button.tribe-common-c-btn-link,.tribe-common input[type=button].tribe-common-c-btn-link,.tribe-common input[type=submit].tribe-common-c-btn-link{background-color:initial;color:var(--tec-color-accent-primary);padding:11px 20px;width:100%}@media (min-width:768px){.tribe-common a.tribe-common-c-btn-link,.tribe-common button.tribe-common-c-btn-link,.tribe-common input[type=button].tribe-common-c-btn-link,.tribe-common input[type=submit].tribe-common-c-btn-link{background-color:initial;width:auto}}.tribe-common a.tribe-common-c-btn-link:focus,.tribe-common a.tribe-common-c-btn-link:hover,.tribe-common button.tribe-common-c-btn-link:focus,.tribe-common button.tribe-common-c-btn-link:hover,.tribe-common input[type=button].tribe-common-c-btn-link:focus,.tribe-common input[type=button].tribe-common-c-btn-link:hover,.tribe-common input[type=submit].tribe-common-c-btn-link:focus,.tribe-common input[type=submit].tribe-common-c-btn-link:hover{color:var(--tec-color-accent-primary-hover)}.tribe-common a.tribe-common-c-btn-link:active,.tribe-common button.tribe-common-c-btn-link:active,.tribe-common input[type=button].tribe-common-c-btn-link:active,.tribe-common input[type=submit].tribe-common-c-btn-link:active{color:var(--tec-color-accent-primary-active)}.tribe-common a.tribe-common-c-btn-link:disabled,.tribe-common button.tribe-common-c-btn-link:disabled,.tribe-common input[type=button].tribe-common-c-btn-link:disabled,.tribe-common input[type=submit].tribe-common-c-btn-link:disabled{color:var(--tec-color-accent-primary-background)}.event-tickets .tec-tickets__attendees-list-wrapper,.tribe-common .tec-tickets__attendees-list-wrapper{margin-top:var(--tec-spacer-8)}.event-tickets .tec-tickets__attendees-list,.tribe-common .tec-tickets__attendees-list{background-color:var(--tec-color-background);margin-top:var(--tec-spacer-3)}.event-tickets .tec-tickets__attendees-list-item,.tribe-common .tec-tickets__attendees-list-item{align-items:center;border-left:1px solid var(--tec-color-border-secondary);border-right:1px solid var(--tec-color-border-secondary);border-top:1px solid var(--tec-color-border-secondary);container-type:inline-size;display:flex;flex-direction:column;gap:var(--tec-spacer-1);margin:0;padding:var(--tec-spacer-4)}.event-tickets .tec-tickets__attendees-list-item:last-child,.tribe-common .tec-tickets__attendees-list-item:last-child{border-bottom:1px solid var(--tec-color-border-secondary)}@media (min-width:768px){.event-tickets .tec-tickets__attendees-list-item,.tribe-common .tec-tickets__attendees-list-item{flex-direction:row}}.event-tickets .tec-tickets__attendees-list-item-attendee-details,.tribe-common .tec-tickets__attendees-list-item-attendee-details{align-self:center;flex-grow:1}.event-tickets .tribe-tickets__rsvp-wrapper{background-color:var(--tec-color-background);border:1px solid var(--tec-color-border-secondary);border-radius:var(--tec-border-radius-default);margin-top:var(--tec-spacer-6);max-width:580px;overflow:hidden;position:relative;transition:all .3s ease;width:100%}@media (prefers-reduced-motion:reduce){.event-tickets .tribe-tickets__rsvp-wrapper{transition:none}}.event-tickets .tribe-tickets__rsvp{padding:var(--tec-spacer-10) var(--tec-grid-gutter-small-half)}@media (min-width:768px){.event-tickets .tribe-tickets__rsvp{padding:var(--tec-spacer-5) var(-tec-grid-gutter-half)}}.event-tickets .tribe-tickets__rsvp-details-wrapper{align-items:center;display:flex;flex:none;justify-content:center;text-align:center}@media (min-width:768px){.event-tickets .tribe-tickets__rsvp-details-wrapper{width:calc(var(--tec-grid-width-1-of-8)*5)}}.event-tickets .tribe-tickets__rsvp-details{text-align:center;width:100%}@media (min-width:768px){.event-tickets .tribe-tickets__rsvp-details{text-align:initial}}.event-tickets .tribe-tickets__rsvp-description{color:var(--tec-color-text-secondary);margin-top:var(--tec-spacer-1)}@media (min-width:768px){.event-tickets .tribe-tickets__rsvp-description{margin-top:var(--tec-spacer-2)}}.event-tickets .tribe-tickets__rsvp-attendance{display:flex;flex-direction:column;margin-top:var(--tec-spacer-4)}@media (min-width:768px){.event-tickets .tribe-tickets__rsvp-attendance{margin-top:var(--tec-spacer-5)}}.event-tickets .tribe-tickets__rsvp-attendance-number{font-size:var(--tec-font-size-9)}@media (min-width:768px){.event-tickets .tribe-tickets__rsvp-attendance-number{font-size:var(--tec-font-size-7)}}.event-tickets .tribe-tickets__rsvp-attendance-number.tribe-tickets__rsvp-attendance-number--no-description{font-size:var(--tec-font-size-10)}.event-tickets .tribe-tickets__rsvp-attendance-going{color:var(--tec-color-text-secondary)}.event-tickets .tribe-tickets__rsvp-availability{color:var(--tec-color-text-secondary);margin-top:var(--tec-spacer-4)}@media (min-width:768px){.event-tickets .tribe-tickets__rsvp-availability{margin-top:var(--tec-spacer-5)}}.event-tickets .tribe-tickets__rsvp-availability-days-left,.event-tickets .tribe-tickets__rsvp-availability-quantity{color:var(--tec-color-text-primary)}.event-tickets .tribe-tickets__rsvp-actions-wrapper{align-items:center;display:flex;flex:none;justify-content:center;text-align:center}@media (min-width:768px){.event-tickets .tribe-tickets__rsvp-actions-wrapper{border-left:1px dashed var(--tec-color-border-secondary);width:calc(var(--tec-grid-width-1-of-8)*3)}}.event-tickets .tribe-tickets__rsvp-actions{border-top:1px dashed var(--tec-color-border-secondary);margin-top:var(--tec-spacer-10);padding:var(--tec-spacer-10) 0;width:100%}@media (min-width:768px){.event-tickets .tribe-tickets__rsvp-actions{border-top:0;margin-top:0;padding:0}}.event-tickets .tribe-tickets__rsvp-actions .tribe-common-c-btn{max-width:125px}.event-tickets .tribe-tickets__rsvp-actions-button-going,.event-tickets .tribe-tickets__rsvp-actions-button-not-going{font-family:var(--tec-font-family-sans-serif)}.event-tickets .tribe-tickets__rsvp-actions-rsvp-going{margin-top:var(--tec-spacer-2)}.event-tickets .tribe-tickets__rsvp-actions-rsvp-not-going{margin-top:var(--tec-spacer-8)}@media (min-width:768px){.event-tickets .tribe-tickets__rsvp-actions-rsvp-not-going{margin-top:var(--tec-spacer-5)}}.event-tickets .tribe-tickets__rsvp-actions-button-not-going{font-size:var(--tec-font-size-2)}@media (min-width:768px){.event-tickets .tribe-tickets__rsvp-actions-button-not-going{font-size:var(--tec-font-size-1)}}.event-tickets .tribe-tickets__rsvp-actions-full{padding:var(--tec-spacer-12) var(--tec-spacer-7) var(--tec-spacer-11) var(--tec-spacer-7)}@media (min-width:768px){.event-tickets .tribe-tickets__rsvp-actions-full{padding:0 var(--tec-spacer-7)}}.event-tickets .tribe-tickets__rsvp-actions-full-text{color:var(--tec-color-text-secondary);text-transform:uppercase}.event-tickets .tribe-tickets__rsvp-actions-success-going{align-items:center;display:flex;justify-content:center}@media (min-width:768px){.event-tickets .tribe-tickets__rsvp-actions-success-going{justify-content:flex-start}}.event-tickets .tribe-tickets__rsvp-actions-success-going-check-icon{background-color:var(--tec-color-accent-primary);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%279%27%3E%3Cpath fill=%27%23fff%27 d=%27M10.6.1 3.9 6.8 1.4 4.3c-.1-.1-.3-.1-.4 0l-.8.8c-.1.1-.1.3 0 .4l3.4 3.4c.2.1.4.1.5 0l7.7-7.7c.1-.1.1-.3 0-.4L11 .1c-.1-.1-.3-.1-.4 0%27/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;border-radius:100%;display:inline-block;height:var(--tec-spacer-7);margin:0 var(--tec-spacer-0);width:var(--tec-spacer-7)}.event-tickets .tribe-tickets__rsvp-actions-success-going-text{margin-left:var(--tec-spacer-1);text-transform:capitalize}.event-tickets .tribe-tickets__rsvp-actions-success-going-toggle{display:flex;justify-content:center;margin-top:var(--tec-spacer-4)}@media (min-width:768px){.event-tickets .tribe-tickets__rsvp-actions-success-going-toggle{justify-content:flex-start;margin-top:var(--tec-spacer-1)}}.event-tickets .tribe-tickets__rsvp-actions-success-going-toggle-input{flex:none}.event-tickets .tribe-tickets__rsvp-actions-success-going-toggle-label{text-align:left}.event-tickets .tribe-tickets__rsvp-actions-success-going-toggle-label-underline{cursor:help;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.event-tickets .tribe-tickets__rsvp-message{align-items:center;background-color:var(--tec-color-accent-primary-background);border-radius:var(--tec-border-radius-default);display:flex;padding:var(--tec-spacer-4) var(--tec-spacer-3)}@media (min-width:768px){.event-tickets .tribe-tickets__rsvp-message{padding:var(--tec-spacer-3)}}.event-tickets .tribe-tickets__rsvp-message--error,.event-tickets .tribe-tickets__rsvp-message--error.tribe-tickets__rsvp-message{background-color:var(--tec-color-background-error)}.event-tickets .tribe-tickets__rsvp-message--success-icon{display:inline-block;height:var(--tec-spacer-3);margin-right:var(--tec-spacer-2);width:var(--tec-spacer-3)}.event-tickets .tribe-tickets__rsvp-message--success-icon path{stroke:var(--tec-color-icon-active)}.event-tickets .tribe-tickets__rsvp-message--error-icon,.event-tickets .tribe-tickets__rsvp-message--must-login-icon{display:inline-block;margin-right:var(--tec-spacer-2)}.event-tickets .tribe-tickets__rsvp-message--error-icon circle,.event-tickets .tribe-tickets__rsvp-message--must-login-icon circle{stroke:var(--tec-color-icon-active)}.event-tickets .tribe-tickets__rsvp-message--error-icon circle#dot,.event-tickets .tribe-tickets__rsvp-message--must-login-icon circle#dot{fill:var(--tec-color-icon-active);stroke:#0000}.event-tickets .tribe-tickets__rsvp-message--error-icon path,.event-tickets .tribe-tickets__rsvp-message--must-login-icon path{stroke:var(--tec-color-icon-active)}.event-tickets .tribe-tickets__rsvp-message-link{color:var(--tec-color-accent-primary)}.event-tickets .tribe-common-c-btn:disabled{background-color:var(--tec-color-accent-primary);cursor:not-allowed}.event-tickets button.tribe-common-cta:disabled{cursor:not-allowed}.event-tickets .tribe-tickets__rsvp-form-wrapper{padding:var(--tec-spacer-5)}.event-tickets .tribe-tickets__rsvp-form-title{border-bottom:1px dashed var(--tec-color-border-secondary);padding-bottom:var(--tec-spacer-5)}@media (min-width:768px){.event-tickets .tribe-tickets__rsvp-form-title{border:none;padding-bottom:0}}.event-tickets .tribe-tickets__rsvp-form-content{margin-bottom:var(--tec-spacer-1);margin-top:var(--tec-spacer-8)}@media (min-width:768px){.event-tickets .tribe-tickets__rsvp-form-content{margin-top:var(--tec-spacer-5)}}.event-tickets .tribe-tickets__rsvp-form-buttons{align-items:baseline;display:flex;justify-content:flex-end;padding-top:var(--tec-spacer-4)}.event-tickets .tribe-tickets__rsvp-form-buttons>*{margin-left:var(--tec-spacer-4)}@media (min-width:768px){.event-tickets .tribe-tickets__form input[type=number].tribe-tickets__rsvp-form-input-number{max-width:140px}}.event-tickets .tribe-tickets__rsvp-form-button{width:auto}.event-tickets .tribe-tickets__rsvp-form-button--cancel{color:var(--tec-color-text-secondary)}.event-tickets .tribe-tickets__rsvp-form-button--cancel:focus,.event-tickets .tribe-tickets__rsvp-form-button--cancel:hover{color:var(--tec-color-text-primary)}.event-tickets .tribe-tickets__rsvp-form-button--submit{padding-left:var(--tec-spacer-6);padding-right:var(--tec-spacer-6)}.event-tickets .tribe-tickets__rsvp-ar{padding-left:var(--tec-grid-gutter-small-half);padding-right:var(--tec-grid-gutter-small-half)}@media (min-width:768px){.event-tickets .tribe-tickets__rsvp-ar{flex-direction:row-reverse;padding-left:var(--tec-grid-gutter-half);padding-right:var(--tec-grid-gutter-half)}}.event-tickets .tribe-tickets__rsvp-ar-sidebar-wrapper{display:flex;flex:none}@media (min-width:768px){.event-tickets .tribe-tickets__rsvp-ar-sidebar-wrapper{border-left:1px dashed var(--tec-color-border-secondary);width:calc(var(--tec-grid-width-1-of-8)*3)}}.event-tickets .tribe-tickets__rsvp-ar-sidebar{border-bottom:1px dashed var(--tec-color-border-secondary);margin-top:var(--tec-spacer-5);padding:var(--tec-spacer-5) 0;width:100%}@media (min-width:768px){.event-tickets .tribe-tickets__rsvp-ar-sidebar{border:0;margin-top:0;padding-left:var(--tec-spacer-4)}}.event-tickets .tribe-tickets__rsvp-ar-quantity{align-items:center;display:flex;margin-top:var(--tec-spacer-4)}@media (min-width:768px){.event-tickets .tribe-tickets__rsvp-ar-quantity{display:block}}.event-tickets .tribe-tickets__rsvp-ar-quantity-input{align-items:center;display:flex;margin-left:var(--tec-spacer-3)}@media (min-width:768px){.event-tickets .tribe-tickets__rsvp-ar-quantity-input{margin-left:0}}.event-tickets .tribe-tickets__rsvp-ar-quantity-input input[type=number]{appearance:textfield;background:#0000;border:none;height:var(--tec-spacer-8);max-width:var(--tec-spacer-8);padding:var(--tec-spacer-0) 0;text-align:center}@media (min-width:600px){.event-tickets .tribe-tickets__rsvp-ar-quantity-input input[type=number]{height:var(--tec-spacer-8)}}.event-tickets .tribe-tickets__rsvp-ar-quantity-input input[type=number]:-webkit-inner-spin-button,.event-tickets .tribe-tickets__rsvp-ar-quantity-input input[type=number]:-webkit-outer-spin-button{appearance:none}.event-tickets .tribe-tickets__rsvp-ar-quantity-input-number{background-color:initial;border:1px solid var(--tec-color-border-default);border-radius:50%;flex:none;height:28px;padding:0;position:relative;width:28px}.event-tickets .tribe-tickets__rsvp-ar-quantity-input-number:after,.event-tickets .tribe-tickets__rsvp-ar-quantity-input-number:before{background-color:var(--tec-color-icon-active);content:"";height:2px;left:9px;position:absolute;top:12px;width:8px}.event-tickets .tribe-tickets__rsvp-ar-quantity-input-number:focus,.event-tickets .tribe-tickets__rsvp-ar-quantity-input-number:hover{background:none;border-color:var(--tec-color-border-active)}.event-tickets .tribe-tickets__rsvp-ar-quantity-input-number--plus:after{transform:rotate(90deg)}.event-tickets .tribe-tickets__rsvp-ar-guest-list{margin-top:var(--tec-spacer-7)!important}.event-tickets .tribe-tickets__rsvp-ar-guest-list-item{display:inline-block}@media (min-width:768px){.event-tickets .tribe-tickets__rsvp-ar-guest-list-item{display:block}.event-tickets .tribe-tickets__rsvp-ar-guest-list-item:not(:first-of-type){margin-top:var(--tec-spacer-7)}}.event-tickets .tribe-tickets__rsvp-ar-guest-list-item-button--inactive:focus,.event-tickets .tribe-tickets__rsvp-ar-guest-list-item-button--inactive:hover,.event-tickets .tribe-tickets__rsvp-ar-guest-list-item-button:focus,.event-tickets .tribe-tickets__rsvp-ar-guest-list-item-button:hover{color:var(--tec-color-text-primary)}.event-tickets .tribe-tickets__rsvp-ar-guest-list-item-button--inactive{color:var(--tec-color-text-secondary)}.event-tickets .tribe-tickets__rsvp-ar-guest-list-item-button--inactive .tribe-tickets__rsvp-ar-guest-icon path{fill:var(--tec-color-icon-disabled);stroke:var(--tec-color-icon-disabled)}@media (min-width:768px){.event-tickets .tribe-tickets__rsvp-ar-guest-list-item-title{clip:auto;height:auto;margin:0;position:static;width:auto}}.event-tickets .tribe-tickets__rsvp-ar-guest-icon{display:inline-block;height:17px;margin-right:var(--tec-spacer-5);width:14px}@media (min-width:768px){.event-tickets .tribe-tickets__rsvp-ar-guest-icon{height:14px;margin-right:var(--tec-spacer-0);width:11px}}.event-tickets .tribe-tickets__rsvp-ar-guest-icon path{fill:var(--tec-color-icon-active);stroke:var(--tec-color-icon-active)}.event-tickets .tribe-tickets__rsvp-ar-form-wrapper{background-color:#f6f7f9;display:flex;flex:none}@media (min-width:768px){.event-tickets .tribe-tickets__rsvp-ar-form-wrapper{width:calc(var(--tec-grid-width-1-of-8)*5)}}.event-tickets .tribe-tickets__rsvp-ar-form{padding:var(--tec-spacer-5) 0;width:100%}@media (min-width:768px){.event-tickets .tribe-tickets__rsvp-ar-form{text-align:initial}}.event-tickets .tribe-tickets__rsvp-ar-form .tribe-tickets__form{margin-top:var(--tec-spacer-4)}.event-tickets .tribe-tickets__rsvp-ar-form-title{color:var(--tec-color-text-secondary)}.event-tickets .tribe-tickets__rsvp-attendees{margin-bottom:var(--tec-grid-gutter-half);margin-left:var(--tec-grid-gutter-half);margin-right:var(--tec-grid-gutter-half);margin-top:0}
.multiple-course-lists-columns, .multiple-course-lists-columns-rows {
  display:flex;
  flex-direction: column;
  gap:2.5rem;
}

@media screen and (min-width:64em) {

  .multiple-course-lists-columns {
    flex-direction: row;
    gap:0;
  }

}

*, body {
    font-display:swap;
}