.hero {
    background-position: center;
    background-size: cover;
    padding-top: 130px;
    padding-bottom: 100px;
    position: relative;
}
.hero h2 {
    font-weight: 700;
    font-size: 72px;
    color: #FFFFFF!important;
    line-height: 1.1em;
    text-shadow: 0em 0em 0.44em rgba(222,219,212,0.55);
    text-align:center;
}
.hero img {
    position: absolute!important;
    bottom: 16px;
    top: auto;
    right: 15px;
    width: 110px;
    left: auto;
    text-align: left;
    margin-left: 0;
}
.hero p {
    text-align: center;
    display: block;
    color: white;
    font-size: 17px;
    line-height:2em;
    margin-top:25px;
}

#et-main-area {
    background:#f7f5f3;
}

/* MAIN FILTERS (HORIZONTAL BAR) */

.filters-wrap {
    background:#dddbd4;
    width: 100%;
    padding: 15px 0;
}

.filters-wrap .container {
    padding: 0 !important;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.search-wrap {
    position: relative;
    border-radius: 0px;
    background: white;
    padding: 10px 25px 5px;
    display: flex;
    width: 66%;
}

.search-wrap i {
    position: absolute;
    top: 20px;
    right: 23px;
}

.search-wrap input {
    width: 100%;
    border: 0;
    background: transparent;
    font-size: 15px;
    font-weight: 400;
    padding: 0;
}

.date-wrap {
    position: relative;
    border-radius: 0px;
    background: white;
    padding: 17px 25px 10px;
    width: 33%;
    cursor: pointer;
    font-size: 15px;
}

.date-wrap i {
    position: absolute;
    top: 20px;
    right: 23px;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
    background-color: #B18FCF;
    border-color: transparent;
    color: #fff !important;
}

.daterangepicker .drp-buttons .btn {
    margin-left: 8px;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 8px;
    display: inline-block;
    background: white;
    position: relative;
    width: auto;
    height: auto;
    line-height: normal;
    color: #666;
    border: 1px solid #666;
    font-family: inherit;
}

.select-field {
    position: relative;
    border-radius: 0px;
    background: white;
    padding: 14px 25px 10px;
    display: flex;
    width: 25%;
}

.select-field i {
    position: absolute;
    right: 20px;
    top: 21px;
}

.select-field select {
    border: 0;
    background: transparent;
    width: 100%;
    font-size: 15px;
    -webkit-appearance: none; 
}

.reset-wrap {
    position: relative;
    background: white;
    padding: 12px 10px 2px;
    text-align: center;
    width: 53px;
    line-height: 14px;
    cursor: pointer;
    font-size: 10px;
}
.reset-wrap i {
    font-size:16px;
}

/* CATEGORIES */
.categories {
    display: flex;
    text-align: center;
    margin-bottom: 30px;
    gap: 15px;
    justify-content: center;
}

.categories li {
    display: inline-grid;
}

.categories li label {
    position: relative;
    padding: 12px 15px 7px;
    border-radius: 0;
    cursor: pointer;
    display: block;
    font-size: 14px;
    font-weight: bold;
    background-size: 200% 100%;
    transition: background-position 0.25s linear;
    -webkit-background-clip: text, border-box;
    background-clip: text, border-box;
    color: transparent;
    background-image: linear-gradient(to right, #63696f 50%, white 50%), linear-gradient(to right, rgba(255, 255, 255, 0) 50%, #63696f 50%);
    border-color: #63696f;
    border: 1px solid #63696f;
    text-transform: uppercase;
}

.categories li label.theatre {
    background-image: linear-gradient(to right, var(--mainColor) 50%, white 50%),
                      linear-gradient(to right, rgba(255, 255, 255, 0) 50%, var(--mainColor) 50%);
    border-color:var(--mainColor);
}
.categories li label.dance {
    background-image: linear-gradient(to right, var(--danceColor) 50%, white 50%),
                      linear-gradient(to right, rgba(255, 255, 255, 0) 50%, var(--danceColor) 50%);
    border-color:var(--danceColor);
}
.categories li label.art {
    background-image: linear-gradient(to right, var(--artColor) 50%, white 50%),
                      linear-gradient(to right, rgba(255, 255, 255, 0) 50%, var(--artColor) 50%);
    border-color:var(--artColor);
}
.categories li label.comedy {
    background-image: linear-gradient(to right, var(--comedyColor) 50%, white 50%),
                      linear-gradient(to right, rgba(255, 255, 255, 0) 50%, var(--comedyColor) 50%);
    border-color:var(--comedyColor);
}
.categories li label.music {
    background-image: linear-gradient(to right, var(--musicColor) 50%, white 50%),
                      linear-gradient(to right, rgba(255, 255, 255, 0) 50%, var(--musicColor) 50%);
    border-color:var(--musicColor);
}
.categories li label.education {
    background-image: linear-gradient(to right, var(--educationColor) 50%, white 50%),
                      linear-gradient(to right, rgba(255, 255, 255, 0) 50%, var(--educationColor) 50%);
    border-color:var(--educationColor);
}
.categories li label.heritage {
    background-image: linear-gradient(to right, var(--heritageColor) 50%, white 50%),
                      linear-gradient(to right, rgba(255, 255, 255, 0) 50%, var(--heritageColor) 50%);
    border-color:var(--heritageColor);
}
.categories li label.current {
    background-image: linear-gradient(to right, var(--exhibitionCurrent) 50%, white 50%),
                      linear-gradient(to right, rgba(255, 255, 255, 0) 50%, var(--exhibitionCurrent) 50%);
    border-color:var(--exhibitionCurrent);
}
.categories li label.upcoming {
    background-image: linear-gradient(to right, var(--exhibitionUpcoming) 50%, white 50%),
                      linear-gradient(to right, rgba(255, 255, 255, 0) 50%, var(--exhibitionUpcoming) 50%);
    border-color:var(--exhibitionUpcoming);
}
.categories li label.past {
    background-image: linear-gradient(to right, var(--exhibitionPast) 50%, white 50%),
                      linear-gradient(to right, rgba(255, 255, 255, 0) 50%, var(--exhibitionPast) 50%);
    border-color:var(--exhibitionPast);
}

.categories li label:hover, .active_category {
    background-position: -100% 0; 
}

.categories li label i {
    margin-right:7px;
}

.categories li input {
    visibility: hidden;
    position: absolute;
}

/* RESULTS */

.results-wrap {
    width:100%; 
}

.content-wrap {
    display:flex;
    gap:35px;
    margin-top:30px;
    padding-bottom:80px;
}

.no-results-found {
    display:none;
    text-align: center;
    display: block;
    color: #010101;
    margin: 0;
}

.results-meta {
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color:#010101;
}

/* PAGE SPECIFIC STYLES */
.exhibitions-style .active-view, .exhibitions-style .active_page {
    background: var(--exhibitionCurrent) !important;
    color: white !important;
    border-color: var(--exhibitionCurrent) !important;
}

/* SORTING & DISPLAYS */

.filter-display {
    display: flex;
    gap: 12px;
}

select#filter-sort {
    background: white;
    font-size: 13px;
    border: 1px solid #d3d8df;
    background-color: #ffffff;
    color: rgba(0, 0, 0, 0.6);
    padding: 14px 13px 10px;
}

.view-icons{
    color: #B0B6BA;
    cursor: pointer;
    margin: 0;
    background: white;
    padding: 11px 11px 8px;
    border: 1px solid #d3d8df;
    font-size: 20px;
}

.view-icons:hover {
    color:#777;
}

.active-view {
    background: #010101;
    color: white !important;
    border-color: #010101;
}

/* PAGINATION */
.pagination {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 50px;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.result-page {
    padding: 6px;
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    line-height: normal;
    color: #777;
    font-size: 17px;
    border: 1px solid white;
    width: 46px;
    height: 46px;
    border-radius: 0;
    background: white;
    box-shadow: 0px 0px 16px 0 #e5e5e5de;
    transition: 0.3s all;
}
.result-page:hover {
    background: #fff;
    border: 1px solid #010101;
}
.active_page {
    background: #010101 !important;
    color: white;
    border-color: #010101;
}

.elip {margin-right:6px;}

/* MISC */
.fader {
    display:none;
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(255, 255, 255, 0.87);
    z-index: 2;
}
.fader img {
    height: 50px;
    width: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
}

/* MOBILE */
.filters-trigger {
    display:none;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right:0;
    background: #e35e21;
    color: white;
    z-index: 999;
    padding: 20px 40px;
    cursor:pointer;
    text-align:center;
}
.filters-trigger:hover {
    opacity:0.8;
}
.filters-trigger i {
    font-size: 14px;
    margin-right: 7px;
}
.close-filters {
    display:none;
    width: 32px;
    height: 32px;
    border-radius: 3px;
    box-sizing: border-box;
    padding: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.close-filters span {
    display: block;
    background: rgba(0, 0, 0, 0.75);
    width: 20px;
    height: 2px;
    border-radius: 3px;
    -webkit-transform-origin: center;
    transform-origin: center;
    transition: 0.3s ease;
}
.close-filters span:first-child {
    -webkit-transform: translateY(6px) rotate(45deg);
    transform: translateY(6px) rotate(45deg);
}
.close-filters span:nth-child(2) {
    opacity:0;
    margin: 4px 0;
}
.close-filters span:last-child {
    -webkit-transform: translateY(-6px) rotate(-45deg);
    transform: translateY(-6px) rotate(-45deg);
}

/* CALENDAR VIEW */
.header-calendar {
    width: 100%;
    position: relative;
    margin-top: 10px;
    margin-bottom:70px;
}
.header-calendar .calendar {
    background: white;
    width: 100%;
    padding: 1.15em 0px 0em;
    z-index: 1;
    color: #222;
    margin-top: 0px;
    border: 0;
    border-radius: 0;
}
.header-calendar .calendar .date-header {
    display: flex;
    justify-content: space-around;
    font-size: 0.7em;
    position:relative;
}
.header-calendar .calendar .date-header h1 {
    line-height: 1.4em;
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 0.25em;
}
.header-calendar .calendar .date-header a {
    position:absolute;
    margin-top:3px;
    color:#333;
}
.header-calendar .calendar .date-header a:before {
    display: none !important;
}
.header-calendar .calendar .date-header a:hover {
    color:#06549e;
}
.header-calendar .calendar-prev {
    left:13px;
}
.header-calendar .calendar-next {
    right:14px;
}
.header-calendar .calendar .header a:hover {
    color:#003e84;
}
.header-calendar .calendar .header i {
  cursor: pointer;
    margin-top: 3px;
    font-size: 15px;
    color: #3d3d3e;
}
.header-calendar .days {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}
.header-calendar .days .day_item {
    width: 15%;
    text-align: center;
    padding-bottom: 0.75em;
    font-size: 12px;
    text-transform: uppercase;
    color: #333;
    border-bottom: 0;
    margin-bottom: 0;
    font-weight: 500;
}

.header-calendar .dates {
    display: flex;
    justify-content: flex-start;
    flex-flow: row wrap;
    width: 100%;
}

.header-calendar .dates .date_item {
    width: 14.37%;
    text-align: center;
    height: 127px;
    padding: 0;
    line-height: 37px;
    cursor: pointer;
    font-size: 15px;
    position: relative;
    border-top: 1px solid #efefef;
    border-left: 1px solid #efefef;
    margin-left: -1px;
    border-bottom: 1px solid #efefef;
    margin-bottom: -1px;
    border-right: 1px solid #efefef;
    overflow-y: scroll;
}
.header-calendar .presentDay {
    background: #efefef;
}
.header-calendar .startDate, .header-calendar .endDate, .header-calendar .dates .date_item:hover {
    cursor: default;
}
.event-tick {
    font-size: 10px;
    height: auto;
    width: auto;
    background: #f47a1f;
    display: block;
    text-align: center;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    color: white;
    line-height: 12px;
    padding: 2px;
    margin: 2px 0;
    transition: 0.4s all;
    border-radius: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.event-tick:hover {
    filter:brightness(110%);
}

#map {
    margin:15px 0 70px;
}

/* SINGLE */
#main-content .container:before {
    display:none;
}

.main-info-wrapper {
    background: #f4f3f1;
}

.main-info-wrapper .container {
    max-width: 1580px;
    width:100%;
    margin: 0 auto;
    padding:0 !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.featured-image-wrap {
    overflow:hidden;
    position:relative;
}

.featured-image {
    width:100%;
    background-position:center;
    background-size: 200%;
    background-repeat: no-repeat;
    filter: brightness(54%) blur(6px);
    transform: scale(1.1);
    height: 100%;
}

.featured-image-wrap img {
    width: 100%;
    transition: 0.3s all;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.main-info {
    padding:0 10% 50px;
}

.main-cat {
    background: var(--mainColor);
    color: white;
    font-weight: 400;
    font-size: 15px;
    padding: 8px 20px 4px 20px;
    margin: 30px 0 10px 0;
    display: inline-block;
    text-transform: uppercase;
}

.main-cat i {
    margin-right: 7px;
}

.main-info h2 {
    color: #010101;
    font-size: 56px;
    text-align: left;
    padding: 0;
    font-family: var(--headersFont), Helvetica, sans-serif;
    font-weight: 600;
    margin-top: 10px;
    margin-left: -5px;
}

.info-row {
    display: flex;
    margin-top: 35px;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
}

.info-col {
    flex: 0.5;
}

.info-col h4 {
    color: #010101;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
}

.info-col p {
    display: block;
    color: #010101;
    font-size: 22px;
    line-height: 26px;
    margin-top: 5px;
    font-weight: bold;
}

.buy-btn {
    color: #010101;
    border: 1px solid #010101;
    padding: 12px 34px 10px;
    transition: 0.3s all;
    margin-top:30px;
    display:inline-block;
    background-size: 200% 100%; 
    transition: background-position 0.25s linear; 
    -webkit-background-clip: text, border-box;
    background-clip: text, border-box; 
    color: transparent; 
    background-image: linear-gradient(to right, #010101 50%, #f4f3f1 50%),
                      linear-gradient(to right, #f4f3f1 50%, #010101 50%)
}

.buy-btn i {
    margin-right:7px;
}

.buy-btn:hover {
    background-position: -100% 0; 
}
 
 .meta-information {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 90px;
    width: 65%;
}

 .social-media{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:10px;
 }
 
 .social{
    color: #010101;
    border: 1px solid #010101;
    padding: 8px 14px 5px;
    transition:0.3s all;
    text-align:center;
 }
 
 .social:hover {
    background: var(--mainColor);
    color:white;
    border-color:var(--mainColor);
 }
 
 .social i {
    padding-right: 5px;
 }
 
 .listing-wrapper {
    display: flex;
    gap: 70px;
    padding-bottom: 80px;
    justify-content:center;
 }

 .listing-wrapper h4 {
    color:#010101;
    font-size:22px;
    margin-bottom:10px;
 }
 
 .listing-description li {
    font-size: 17px;
    color: #292a2a;
    line-height: 1.8em;
 }
 
 .listing-content {
    width: 65%;
    position: relative;
 }
 
 .listing-content ul {
    list-style-type: circle;
    padding-left: 40px;
    margin-bottom: 18px;
 }
 
 .listing-description h2, .listing-description h3, .listing-description h4 { margin: 15px 0; font-weight: bold;}
 
 .listing-description p {
     color: #222;
     font-size: 17px;
     line-height: 1.8;
     font-weight: 400;
 }
 
 .listing-description p small {
     font-size: 11px;
     margin-top: 30px;
     display: block;
     opacity: 0.7;
 }
 
 .listing-description p a {
     text-decoration: underline !important;
     font-size: inherit !important;
     font-family: inherit !important;
 }

 .listing-side {
    width:32%;
 }

 .listing-side-section {
    margin-bottom:40px;
 }

 .listing-side-section p {
    font-size:16px;
    color:#010101;
 }

 .listing-cast {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
 }

 .listing-cast .cast-member {
    flex: 0 0 47%;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor:pointer;
 }

 .listing-cast .cast-member:hover h5 {
    color: var(--mainColor);
 }

.listing-cast .cast-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: contain;
    background-position: center;
}

.listing-cast .cast-info h5 {
    font-size: 16px;
    color: #010101;
    padding:0;
}

 .listing-sponsors {
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap:15px;
 }

 .listing-box-office {
    display: flex;
    gap: 6px;
    font-size: 13px;
    justify-content: space-between;
 }

 .listing-box-office a {
    color: #010101;
    display: block;
 }

 .listing-box-office a span {
    font-weight:400;
 }

 .listing-cta {
    border: 1px solid #010101;
    padding: 10px 14px 7px;
    display: block;
    text-align: center;
    margin-bottom: 10px;
    background-size: 200% 100%; 
    transition: background-position 0.25s linear; 
    -webkit-background-clip: text, border-box;
    background-clip: text, border-box; 
    color: transparent; 
    background-image: linear-gradient(to right, #010101 50%, #fff 50%),
                      linear-gradient(to right, rgba(255, 255, 255, 0) 50%, #010101 50%);
 }

 .listing-cta:hover {
    background-position: -100% 0; 
 }
 
 .related-wrapper {
    padding-bottom:60px;
 }
 
 .related-h3 {
     text-align: center;
     font-weight: bold;
     font-size: 28px;
     color: #101010;
     padding-bottom: 30px;
     margin-top:50px;
     text-transform: uppercase;
 }

 .ticketModal {
    position: fixed;
    z-index: 9999999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    transition: 0.3s all;
    transform: translateY(100%);
 }

 .ticketModal.show-modal {
    transform: translateY(0%);
 }

 .modal-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid silver;
    padding: 40px 0;
 }

 .modal-header .container {
    padding: 0 !important;
    display: flex;
    justify-content: space-between;
 }

 .modal-header h2 {
    color: #010101;
    padding: 0;
    font-weight: 400;
 }

 .modal-header h2 span {
    display: block;
    font-size: 17px;
    font-weight: bold;
    margin-top: 1px;
    margin-bottom: -40px;
 }

 .modal-header .close-modal {
    color: #010101;
    font-size: 24px;
 }

 .ticketModal .modal-body {
    overflow-y: scroll;
    height: 100vh;
    padding-bottom: 90px;
 }

 .ticketModal .modal-body .container {
    padding: 40px 0;
    display: flex;
    gap: 40px;
 }

 .ticketModal .modal-body .container .modal-image {
    width: 30%;
 }

 .ticketModal .modal-body .container .modal-bio {
    flex: 1;
    font-size: 18px;
    line-height: 30px;
    color: #212121;
 }


@media (max-width:980px) {
    .filters-wrap .container {
        padding: 0 !important;
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }
    .search-wrap {
        padding: 10px 5px 5px;
        display: flex;
        width: 100%;
    }
    .search-wrap input {
        font-size: 12px;
    }
    .search-wrap i {
        top: 18px;
        right: 8px;
        font-size: 13px;
    }
    .date-wrap {
        width: auto;
        padding: 7px 14px 0px;
        display: flex;
        margin-top: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        text-align: center;
        gap: 4px;
    }
    #date {
        padding-left: 0;
        order: 2;
        line-height: 11px;
    }
    .date-wrap i {
        position: relative;
        top: auto;
        right: auto;
        font-size: 15px;
    }
    .categories {
        display: flex;
        text-align: center;
        margin-bottom: 0;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .categories li {
        display: flex;
        flex: 1;
    }
    .categories li label {
        padding: 9px 6px 3px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        flex: 1;
        font-size: 10px;
        line-height: 12px;
        font-weight: bold;
        letter-spacing: -0.2px;
    }
    .categories li label i {
        margin-right: 0;
        display: block;
        font-size: 14px;
    }
    .sub-cats {
        margin-top: 10px;
    }
    .results-found {
        margin-top: 20px;
        font-size: 11px;
    }
    select#filter-sort {
        float: none;
        margin-top: 10px;
        width: auto;
        font-size: 11px;
        padding: 14px 5px 10px;
    }


    /* SINGLE */
    .main-info-wrapper .container {
        max-width: 100%;
        width: 90%;
        flex-direction: column;
        display: flex;
    }
    .main-info {
        padding: 0 0 25px;
        order: 2;
    }
    .featured-image {
        height: 250px;
    }
    .main-cat {
        font-size: 12px;
        padding: 6px 14px 2px;
        margin: 20px 0 10px 0;
    }
    .main-info h2 {
        font-size: 24px;
        line-height: 29px;
        padding: 0;
        margin-top: 0;
        margin-left: 0;
    }
    .info-row {
        margin-top: 21px;
        gap: 17px;
        width: 100%;
    }
    .info-col h4 {
        font-size: 13px;
        padding: 0;
    }
    .info-col p {
        font-size: 17px;
        margin-top: 5px;
    }
    .buy-btn {
        padding: 12px 24px 10px;
        margin-top: 20px;
    }
    .listing-wrapper {
        display: block;
        padding-bottom: 0px;
        padding-top: 0px;
        margin-top:-20px;
    }
    .listing-content {
        width: 100%;
    }
    .listing-side {
        width: 100%;
        margin-top: 30px;
    }
    .social-media {
        display: flex;
        justify-content: flex-start;
    }
    .listing-sponsors {
        display:block;
    }
    .listing-sponsors img {
        max-width:350px;
        margin:0 auto;
        width: 100%;
        display:block;
    }
    .listing-box-office {
        font-size: 11px;
    }
    .related-h3 {
        margin-top: 50px;
        line-height: 29px;
        font-size: 22px;
        padding: 0;
        text-transform: capitalize;
    }    
    .cards ol {
        grid-template-columns: 1fr;
    }
    .modal-header .container {
        gap: 20px;
    }
    .modal-header {
        padding: 20px 0;
    }
    .modal-header h2 {
        color: #010101;
        padding: 0;
        font-weight: 400;
        font-size: 19px;
    }
    .modal-body .container {
        padding-top:0 !important;
    }
    .ticketModal .modal-body .container .modal-image, .ticketModal .modal-body .container .modal-info {
        width: 100%;
     }
    

}