@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Overpass:wght@300;400;600;700;800&display=swap');

/******** color declarations *********/
:root {
--primary-color: #000000;
--primary-text-color: #000000;
--secondary-color: #000000;
--background-primary-color: #000000;
--background-secondary-color: #FFFFFF;
}

/* Buttons */
.venue-ticket-list-cta-button {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}
.venue-ticket-list-cta-button:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

.sea-sellerLicenseButton {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}
.sea-sellerLicenseButton:hover {
    border-color: var(--secondary-color) !important;
    color: var(--secondary-color) !important;
}

/* Header */
.event-page .site-header {
    max-height: 100%;
    padding: 0px;
    overflow: visible;
    position: relative;
    z-index: 10000;
    background-color: #1f1f1f;
}

.black-header .resale-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    font-size: 1.125rem;
    background-color: #1f1f1f;
    color: #d4d4d4;
    padding: 0 1rem;
    width: 100%;
}

.black-header .main-bar {
    display: flex;
    align-items: center;
    background-color: #000;
    border-bottom: 1px solid #333;
    padding: 15px 0;
    width: 100%;
}

.black-header .main-bar .container-fluid {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

.black-header .main-bar .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.black-header .logo img {
    max-height: 40px;
    width: auto;
}

.black-header .event-title {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px 0;
    line-height: 1.2;
    text-transform: none;
}

.black-header .event-location,
.black-header .event-date {
    font-size: 13px;
    color: #d4d4d4;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.black-header .event-location i,
.black-header .event-date i {
    font-size: 13px;
    color: #d4d4d4;
}

/* Search */
.black-header .header-search {
    display: flex;
    justify-content: flex-end;
    max-width: none !important;
    margin-left: auto;
    flex: 0 0 280px;
}



.search-wrapper {
    position: relative;
    width: 100%;
}

.search-wrapper .search-icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #666;
    pointer-events: none;
}

.black-header .header-search .search-form {
    width: 100%;
}

.search-form .form-control.searchAjax {
    width: 100%;
    height: 40px;
    padding: 6px 12px 6px 36px;
    border-radius: 20px;
    border: 1px solid #ccc;
    font-size: 14px;
    background-color: #fff;
    color: #333;
    box-shadow: none;
    outline: none;
}
.search-form .form-control.searchAjax:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
}

/* Search dropdown */
.black-header .header-search .search-form { position: relative; }

.search-form .search-suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    z-index: 20000;
    max-height: 420px;
    overflow-y: auto;
    font-size: 13px;
    list-style: none;
}

.search-form .search-suggestions::-webkit-scrollbar { width: 10px; }
.search-form .search-suggestions::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 6px;
}
.search-form .search-suggestions::-webkit-scrollbar-track {
    background: transparent;
}

.search-form .search-suggestions h4 {
    margin: 6px 14px 4px;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #6b7280;
}

.search-form .search-suggestions li { margin: 0; }

.search-form .search-suggestions .dropdown-item {
    display: block;
    padding: 8px 12px;
    font-size: 13px;
    color: #1f2937;
    text-decoration: none;
    white-space: normal;
}

.search-form .search-suggestions li:hover > .dropdown-item,
.search-form .search-suggestions li.active > .dropdown-item {
    background: #f3f3f3;
}

.search-form .search-suggestions .no-results {
    padding: 10px 14px;
    color: #6b7280;
    font-size: 13px;
}

@media (max-width: 768px){
    .search-form .search-suggestions{
        left: 0;
        transform: none;
        width: 100%;
    }
}

/* Loader */
.loader {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 25px;
    height: 20px;
    aspect-ratio: 2;
    --_g: no-repeat radial-gradient(circle closest-side,var(--secondary-color) 50%,#0000);
    background:
    var(--_g) 0%   50%,
    var(--_g) 50%  50%,
    var(--_g) 100% 50%;
    background-size: calc(100%/3) 50%;
    animation: l3 1s infinite linear;
}

@keyframes l3 {
    20%{background-position:0%   0%, 50%  50%,100%  50%}
    40%{background-position:0% 100%, 50%   0%,100%  50%}
    60%{background-position:0%  50%, 50% 100%,100%   0%}
    80%{background-position:0%  50%, 50%  50%,100% 100%}
}

.black-header .main-bar .row {
    gap: 1rem;
    flex-wrap: nowrap;
}

.event-page .logo-text {
    padding: 0;
}

.event-logo {
    display: flex;
}

.mobile-header-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    cursor: pointer;
}

.black-header .fa-angle-up {
    height: 30px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    background: black;
    border-radius: 0 0 50% 50%;
    color: white;
    transform: translate(-50%, 100%);
    z-index: 1;
    pointer-events: none;
}

.mobile-header-down {
    height: 30px;
    width: 60px;
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 50%;
    background: black;
    border: none;
    border-radius: 0 0 50% 50%;
    color: white;
    transform: translateX(-50%);
    z-index: 10000;
}

@media (min-width: 991px) {
    .black-header .fa-angle-up {
        display: none !important;
    }

    .mobile-header-overlay {
        display: none !important;
    }

    .mobile-header-down {
        display: none !important;
    }

    .black-header {
        display: block !important;
    }

    .event-page {
        overflow: auto !important;
    }
}

@media (max-width: 990px){
    .main-bar .header-search {
        flex: auto;
        width: 100%;
    }

    .black-header .main-bar .row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

@media (max-width: 850px){
    .black-header .resale-bar {
        display: flex;
        justify-content: center;
        padding: 10px;
        font-size: 16px;
        line-height: 1;
        text-align: center;
    }

    .black-header .resale-bar > p {
        max-width: 340px;
    }
}

