/** Shopify CDN: Minification failed

Line 42:8 Unexpected "{"
Line 42:9 Expected identifier but found "%"
Line 42:43 Unexpected "{"
Line 42:44 Expected identifier but found "%"
Line 43:8 Unexpected "{"
Line 43:9 Expected identifier but found "%"
Line 43:42 Unexpected "{"
Line 43:43 Expected identifier but found "%"
Line 280:8 Unexpected "{"
Line 280:9 Expected identifier but found "%"
... and 10 more hidden warnings

**/
    .tour-map-section * {
        margin: 0;
        /* padding: 0; */
        box-sizing: border-box;
    }
    
    .tour-map-section {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        background: #fff;
        color: #333;
        overflow-x: hidden;
    }
    
    .tour-map-header {
        background: #fff;
        padding: 0 20px ;
        text-align: center;
    }
    
    .tour-map-header h1 {
        font-family: 'Lato';font-size: 22px;
        font-weight: bold;
        font-size: 20px;
        line-height: 21px;
        text-transform: uppercase;
        font-weight: 700;
        {% comment %} margin-bottom: 40px; {% endcomment %}
        {% comment %} font-style: italic; {% endcomment %}
        text-align: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        color: #333;
    }
    
    .tour-search-section {
        background: #f8f8f8;
        padding: 30px 20px;
        position: relative;
        z-index: 1;
        /*overflow: hidden;*/
    }
    
    /* Prevent inherited pseudo-elements from showing */
    .tour-search-section::before,
    .tour-search-section::after {
        display: none !important;
    }
    
    .tour-search-container {
        position: relative;
        z-index: 2;
    }
    
    .tour-search-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .tour-search-title {
        font-size: 24px;
        letter-spacing: 4px;
        text-transform: uppercase;
        margin-bottom: 20px;
        color: #333;
    }
    
    .tour-search-form {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
    
    .tour-search-wrapper {
        position: relative;
        flex: 1;
        max-width: 600px;
    }
    
    .tour-search-inputs {
        display: flex;
        gap: 0;
        align-items: stretch;
        width: 100%;
    }
    
    .tour-input-container {
        position: relative;
        flex: 1;
        display: flex;
        align-items: center;
    }
    
    .tour-search-buttons {
        display: flex;
        gap: 10px;
        align-items: center;
    }
    
    .tour-search-input {
        flex: 1;
        padding: 15px 45px 15px 20px;
        background: #fff;
        border: 1px solid #ddd;
        color: #333;
        font-size: 14px;
        letter-spacing: 2px;
        text-transform: uppercase;
        width: 100%;
    }
    
    .tour-search-input select,
    .tour-search-input option {
        background: #fff;
        color: #333;
        border: 1px solid #ddd;
    }

    .tour-input-clear {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #666;
        font-size: 20px;
        cursor: pointer;
        padding: 5px;
        line-height: 1;
        transition: color 0.2s ease;
        z-index: 10;
    }
    
    .tour-input-clear:hover {
        color: #333;
    }
    
    .tour-input-container:first-child .tour-search-input {
        border-right: 1px solid #eee;
    }
    
    .tour-search-input:focus {
        outline: none;
        border-color: #999;
    }
    
    .tour-search-input::placeholder {
        color: #999;
    }
    
    .tour-autocomplete-suggestions {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border: 1px solid #ddd;
        border-top: none;
        max-height: 300px;
        overflow-y: auto;
        z-index: 1000;
        display: none;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .tour-autocomplete-suggestions.active {
        display: block;
    }
    
    .tour-suggestion-item {
        padding: 15px 20px;
        cursor: pointer;
        border-bottom: 1px solid #eee;
        transition: all 0.2s ease;
        color: #333;
    }
    
    .tour-suggestion-item:hover,
    .tour-suggestion-item.selected {
        background: #f5f5f5;
    }
    
    .tour-suggestion-city {
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
    
    .tour-suggestion-state {
        font-size: 12px;
        color: #666;
        margin-top: 3px;
        letter-spacing: 1px;
    }
    
    .tour-search-btn {
        background: #d32f2f;
        border: none;
        padding: 15px 30px;
        color: #fff;
        cursor: pointer;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 14px;
        font-weight: bold;
        transition: all 0.3s ease;
    }
    
    .tour-search-btn:hover {
        background: #b71c1c;
    }
    
    .tour-clear-btn {
        background: transparent;
        border: 1px solid #999;
        padding: 15px 30px;
        color: #333;
        cursor: pointer;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 14px;
        margin-left: 10px;
        transition: all 0.3s ease;
    }
    
    .tour-clear-btn:hover {
        border-color: #666;
        background: rgba(0, 0, 0, 0.1);
    }
    
    .tour-search-info {
        background: #f5f5f5;
        padding: 20px;
        margin: 20px;
        text-align: center;
        border: 1px solid #ddd;
        border-radius: 5px;
    }
    
    .tour-search-info h3 {
        font-size: 18px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 10px;
        color: #d32f2f;
    }
    
    .tour-search-info p {
        font-size: 14px;
        color: #666;
        letter-spacing: 1px;
    }
    
    .tour-events-section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .tour-event-item {
        position: relative;
        background: whitesmoke;
        {% comment %} margin-bottom: 20px; {% endcomment %}
        /*padding: 30px;*/
        border-radius: 0;
        display: flex;
        align-items: center;
        gap: 30px;
        transition: all 0.3s ease;
        cursor: pointer;
        border: 1px solid #eee;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .tour-event-item:hover {
        transform: translateX(10px);
        background: #f8f8f8;
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }
    
    .tour-event-item.hidden {
        display: none !important;
    }
        
    .tour-event-item:nth-child(odd) {
        background: #fff;
    }
    
    .tourListPanelHeading {
        display: flex;
        align-items: center;
        background: #3c3c3c;
        padding: 15px 0;
        border-bottom: 1px solid #ddd;
        font-weight: bold;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #fff;
    }
    
    .tourHeadingDate {
        min-width: 190px;
        text-align: center;
        padding: 0 15px;
    }
    
    .tourHeadingVenue {
        flex: 1;
        padding: 0 30px;
    }
    
    .tourHeadingModal {
        min-width: 160px;
        text-align: center;
        padding: 0 20px;
    }
    
    .tour-name-header {
        /*background: #333;*/
        color: #000;
        padding: 20px 30px 0;
        margin: 20px 0 0 0;
        font-size: 18px;
        {% comment %} font-weight: bold; {% endcomment %}
        {% comment %} text-transform: uppercase; {% endcomment %}
        letter-spacing: 2px;
        /*border-left: 4px solid #e2472f;*/
        text-align: center;
    }
    
    .tour-name-header:first-child {
        margin-top: 0;
    }
    
    .tour-map-container {
        /* max-width: 1200px; */
        margin: 0 auto 40px auto;
        /* padding: 0 20px; */
        position: relative;
    }
    
    .leaflet-map {
        height: 500px;
        width: 100%;
        border: 1px solid #ddd;
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        display: block !important;
    }
    
    #tour-map {
        display: block !important;
    }
    
    .map-controls {
        position: absolute;
        top: 15px;
        right: 65px;
        z-index: 1000;
        display: flex;
        gap: 10px;
    }
    
    .map-control-btn {
        background: #fff;
        border: 1px solid #ccc;
        padding: 8px 12px;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        border-radius: 3px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.2);
        transition: all 0.2s ease;
    }
    
    .map-control-btn:hover {
        background: #f5f5f5;
        box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    }
    
    .tour-map-marker {
        background: #e2472f;
        border: 2px solid #fff;
        border-radius: 50%;
        color: #fff;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    }
    
    .marker-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        font-size: 12px;
        font-weight: bold;
        line-height: 1;
    }
    
    .map-popup {
        min-width: 250px;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        padding: 20px;
    }
    
    .map-popup h3 {
        margin: 0 0 12px 0;
        color: #333;
        font-size: 18px;
        font-weight: bold;
        line-height: 1.2;
    }
    
    .map-popup .event-date {
        margin: 8px 0;
        color: #333;
        font-size: 14px;
        font-weight: 600;
    }
    
    .map-popup .event-venue {
        margin: 4px 0 8px 0;
        color: #666;
        font-size: 13px;
        line-height: 1.4;
    }
    
    .map-popup .event-tour {
        margin: 8px 0 16px 0;
        color: #666;
        font-size: 12px;
        font-style: italic;
    }
    
    .map-popup-buttons {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 16px;
    }
    
    .map-popup-btn {
        padding: 10px 16px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-decoration: none;
        text-align: center;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.2s ease;
        display: inline-block;
    }
    
    .map-popup-btn.primary {
        background: #e2472f;
        color: white;
    }
    
    .map-popup-btn.primary:hover {
        background: #d23a21;
    }
    
    .map-popup-btn.secondary {
        background: transparent;
        color: #e2472f;
        border: 1px solid #e2472f;
    }
    
    .map-popup-btn.secondary:hover {
        background: #e2472f;
        color: white;
    }
    
    @media (max-width: 768px) {
        .leaflet-map {
            height: 300px;
        }
        
        .map-controls {
            position: static;
            margin-top: 10px;
            justify-content: center;
        }
        
        .tour-map-container {
            margin: 20px auto;
        }
    }
    
        .custom_anchor_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.custom_anchor_wrapper a.anchor-button {
    display: inline-block;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 12px 20px;
    margin: 0;
    font-weight: bold;
    text-transform: uppercase;
    background: #CE4216;
    color: #fff;
    border: none;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
}

.custom_anchor_wrapper a.anchor-button:hover {
    background: #000;
    color: #fff;
}
    .tour-event-date-box {
        background: #8c8c8c;
        padding: 15px;
        text-align: center;
        min-width: 190px;
        border-right: 1px solid #eee;
    }
    
    .tour-event-month {
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: #fff;
        font-weight: 500;
        letter-spacing: 0.43px;
        line-height: 26px;
    }
    
    .tour-event-day {
        font-size: 22px;
        font-weight: 500;
        line-height: 1;
        color: #fff;
    }
    
    .tour-event-time {
        font-size: 14px;
        color: #fff;
        font-weight: 500;
    }
    
    .tour-event-details {
        flex: 1;
    }
    
    .tour-event-venue {
        font-size: 16px;
        color: #333;
    }
    
    .tour-event-location {
        font-size: 24px;
        line-height: normal;
        color: #333;
    }
    
    .tour-event-price {
        font-size: 16px;
        margin-top: 15px;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #333;
    }
    
    .tour-event-subtext {
        font-size: 12px;
        color: #666;
        margin-top: 5px;
        letter-spacing: 1px;
    }
    
    .tour-event-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: flex-start;
        justify-content: flex-end;
        padding-right: 14px;
        font-family: lato;
    }

    .tour-event-url4-text {
        font-size: 14px;
        color: red;
        /* margin-top: 8px; */
        letter-spacing: 1px;
    }

    .tour-event-url4-text a {
        background: #ce4217;
        color: #fff;
        text-decoration: none;
        padding: 12px 20px;
        font-size: 14px;
        text-transform: uppercase;
    }
    
    .tour-event-link {
        background: transparent;
        color: #333;
        text-decoration: none;
        padding: 12px 20px;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: bold;
        transition: all 0.3s ease;
        min-width: 160px;
        text-align: center;
        border: 2px solid #999;
        display: inline-block;
        line-height: 1.4;
        flex-shrink: 0;
    }
    
    .tour-event-link span {
        display: block;
        font-size: 10px;
        font-weight: normal;
        letter-spacing: 0.5px;
        margin-top: 4px;
        opacity: 0.8;
    }
    
    .tour-event-link:hover {
        background-color: #D31820;
    }
    
    .tour-event-link.primary {
        background: #CE4217;
        color: #fff;
        border: none;
    }
    
    .tour-event-link.primary:hover {
        background: #000;
    }
    
    .tour-event-link.legacy {
        border-color: #D4AF37;
    }
    
    .tour-event-link.legacy:hover {
        background: rgba(212, 175, 55, 0.1);
        box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    }
    
    .tour-event-link.standard {
        border-color: #E63946;
    }

    .event-link:hover {
        color: red;
    }
    
    .tour-event-link.standard:hover {
        background: rgba(230, 57, 70, 0.1);
        box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
    }
    
    .tour-event-link.sold-out {
        background: transparent;
        border-color: #ccc;
        color: #999;
        text-decoration: line-through;
        pointer-events: none;
    }
    
    .tour-event-link.info {
        background: transparent;
        border: none;
        color: #333;
        text-decoration: underline;
        padding: 5px 0;
        min-width: auto;
    }
    
    .tour-event-link.info:hover {
        color: #666;
    }
    
    .tour-stats {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: rgba(255, 255, 255, 0.95);
        padding: 20px;
        border: 1px solid #ddd;
        z-index: 1000;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .tour-stats h3 {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 10px;
        color: #666;
    }
    
    .tour-stats-value {
        font-size: 32px;
        font-weight: 100;
        color: #333;
    }
    
    .preview-mode-banner {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: linear-gradient(45deg, #ff6b35, #f7931e);
        color: white;
        text-align: center;
        padding: 8px 15px;
        font-weight: bold;
        font-size: 14px;
        z-index: 10000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        border-bottom: 2px solid #e55100;
    }
    
    .preview-mode-banner::before {
        content: "🎭 ";
        margin-right: 8px;
    }

     .tour-event-link.info {
        display: none;
     }

    /* @media (min-width: 768px) {
        .tour-event-link.info {
            position: absolute;
            top: 10px;
        }
    } */

    @media (max-width: 768px) {
    
        .tour-name-header2 {
            display: none;
        }
        
        .tour-search-form {
            flex-direction: column;
            align-items: stretch;
            gap: 15px;
        }
        
        .tour-search-wrapper {
            max-width: none;
            width: 100%;
        }

        .tour-event-date-box {
            min-width: 100%;
        }
        
        .tour-search-inputs {
            flex-direction: column;
            width: 100%;
        }
        
        .tour-input-container:first-child .tour-search-input {
            border-right: 1px solid #ddd;
            border-bottom: none;
        }
        
        .tour-search-buttons {
            width: 100%;
            justify-content: center;
            gap: 15px;
        }

        .tour-event-actions {
            padding-right: 0;
        }
        
        .tour-search-btn,
        .tour-clear-btn {
            flex: 1;
            max-width: 200px;
        }
        
        .tour-search-input {
            font-size: 16px !important;
        }
        
        .tour-autocomplete-suggestions {
            position: static;
            margin-top: 10px;
            max-height: 200px;
        }
        
        .tour-event-item {
            flex-direction: column;
            text-align: center;
            padding: 20px;
            gap: 10px;
        }
        
        .tour-event-actions {
            width: 100%;
            justify-content: center;
        }
        
        .tour-stats {
            display: none;
        }

        .tour-event-link.info {
            width: 100%;
        }
    }

    @media (max-width: 400px) {
        .tour-name-header {
            font-size: 17px;
        }
    }

    .tour-events-spans {
        margin: 0 10px;
    }

    .tour-country-input {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='black'%3E%3Cpath d='M5 8l5 5 5-5z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 15px center;
        background-size: 16px;
        padding-right: 40px;
        height: 100%;
        min-width: 250px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    .event-link {
        color: #7a7a7a;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: color 0.2s ease;
    }

    .event-link::after {
        content: "➔";
        margin-left: 0px;
    }

    .event-link:hover {
        color: #CE4217;
    }

    .event-link:hover::after {
        transform: translateX(4px);
    }

    /* 4-column event row layout */
.tour-event-item {
    position: relative;
    background: whitesmoke;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #eee;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tour-event-item:hover {
    transform: translateX(10px);
    background: #f8f8f8;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Column 1: Date box — fixed width matching heading */
.tour-event-date-box {
    background: #8c8c8c;
    padding: 15px;
    text-align: center;
    /* min-width: 190px;
    width: 190px; */
    width: 10%;
    flex-shrink: 0;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #eee;
}

/* Column 2: Venue/details — flex grow */
.tour-event-details {
    max-width: 30%;
    flex: 1;
    padding: 15px 20px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Column 3: Presale / url_4 — fixed width */
.tour-event-presale {
   width: 30%;
    flex-shrink: 0;
    /* padding: 15px 20px; */
    padding: 0px 20px 20px;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-left: 1px solid #eee;
}

/* Column 4: Actions / ticket button — fixed width */
.tour-event-actions {
    /* min-width: 200px;
    width: 200px; */
    width: 24%;
    flex-shrink: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 15px 14px;
    align-self: stretch;
    border-left: 1px solid #eee;
}

/* Heading columns — must match event row widths */
.tourListPanelHeading {
    display: flex;
    align-items: center;
    background: #3c3c3c;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.tourHeadingDate {
    min-width: 190px;
    width: 190px;
    flex-shrink: 0;
    text-align: center;
    padding: 0 15px;
}

.tourHeadingVenue {
    flex: 1;
    padding: 0 30px;
}

.tourHeadingPresale {
    min-width: 200px;
    width: 200px;
    flex-shrink: 0;
    text-align: center;
    padding: 0 20px;
}

.tourHeadingModal {
    min-width: 200px;
    width: 200px;
    flex-shrink: 0;
    text-align: center;
    padding: 0 20px;
}

/* url_4 content inside presale column */
.tour-event-url4-text {
    font-size: 13px;
    color: #333;
    text-align: center;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tour-event-url4-text a {
    background: #ce4217;
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
}
/* COLUMN 1 WIDTH */
.tourHeadingDate, .tour-event-date-box {
    width: 10%;
}
/* COLUMN 2 WIDTH */
.tour-event-details , .tourHeadingVenue {
    max-width: 30%;
}

/* COLUMN 3 WIDTH */
.tour-event-presale, .tourHeadingPresale {
   width: 30%;
}

/* COLUMN 4 WIDTH */
.tour-event-actions, .tourHeadingModal{
  width: 24%;
}



/* Mobile: stack all columns */
@media (max-width: 768px) {

    .tour-events-section {
      padding: 10px;
     }
    .tour-event-item {
        flex-direction: column;
        text-align: center;
        padding: 0;
        gap: 0;
    }

    .tour-event-date-box {
        min-width: 100%;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .tour-event-details {
        width: 100%;
        min-width: 100%;
        padding: 15px 20px;
        border: none;
        margin: auto;
    }
    .tour-event-presale.no-details {
        display: none;
    }

    .tour-event-presale {
        width: 100%; 
        min-width: 100%;
        border-left: none;
        padding: 12px 20px;
        margin: auto;
    }

    .tour-event-url4-text {
       margin: auto;
    }

    .tour-event-actions {
        min-width: 100%;
        width: 100%;
        border-left: none;
        justify-content: center;
        padding: 15px 20px;
    }

    .tour-name-header2 {
        display: none;
    }
}

/* .tour-event-actions span.button-loop-4.tour-event-link-unpub.info {
  display: none;
} */
