/* Event List Container */
.event-list {
    padding: 20px;
    background-color: #faf5e6; /* Light background */
    border-radius: 10px;
    max-width: 700px;
    margin: 0 auto;
}

/* Individual Event Item */
.event-item {
    border-bottom: 1px solid currentColor;
    padding: 20px;
    position: relative;
}

.event-item:last-child {
    border-bottom: none;
}

/* Event Meta Data */
.event-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 10px;
}

.mini-event-date {
    font-weight: bold;
}

.event-location {
    align-items: center;
    display: flex;
    font-size: 16px;
    font-weight: bold;
}

.event-location svg {
    margin-right: 10px;
}

/* Event Title */

.event-title {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.25;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Event Description */

.event-description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.register-btn-wrapper {
    display: flex;
    justify-content: flex-end;
}

/* Register Button */

.event-register-btn, .event-register-btn.wp-element-button {
    background-color: transparent;
    border: 1px solid currentColor;
    border-radius: 5px;
    color: currentColor;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 15px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.event-register-btn:hover, .event-register-btn.wp-element-button:hover {
    background-color: transparent;
    border: 1px solid currentColor;
}

/* Horizontal Line Between Events */

.event-separator {
    border: none;
    border-bottom: 1px solid #e5e2d8;
    margin: 20px 0;
}

/* Responsive Adjustments */

@media (max-width: 768px) {
    .event-item {
        border: none;
        padding: 15px 0;
    }

    .event-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-location {
        margin-top: 5px;
    }

    .event-register-btn {
        width: 100%;
        text-align: center;
    }
}

/* Events List Block */
.event-list-container {
    display: flex;
}

.event-filter-sidebar {
    padding-right: 50px;
    width: 30%;
}

.events-list-wrapper {
    width: 70%;
}

@media (max-width: 900px) {
    .event-list-container {
        flex-direction: column;
    }
    .event-filter-sidebar {
        margin-bottom: 40px;
        padding: 0;
        width: 100%;
    }
    .events-list-wrapper {
        width: 100%;
    }
}

.event-list-container .event-list {
    width: 80%;
    margin: 0 auto;
    padding: 20px 0;
}

.event-month-year {
    font-size: 20px;
    margin: 20px 0;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.event-list-container .event-item {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
}

.event-date {
    width: 10%;
    text-align: center;
    background-color: #f1f1f1;
    margin-right: 20px;
    padding: 10px;
}

.day-name {
    font-size: 16px;
    color: #888;
}

.day-number {
    font-size: 36px;
    color: #333;
    margin-top: 10px;
}

.event-details {
    width: 70%;
}

.event-time {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.event-list-container .event-title {
    font-size: 22px;
    margin: 10px 0;
    color: #333;
}

.event-list-container .event-location {
    font-size: 14px;
    margin: 5px 0;
    color: #555;
}

.event-list-container .event-status {
    font-size: 14px;
}

.event-list-container .sold-out {
    color: red;
    font-weight: bold;
}

.event-list-container .event-price {
    margin-left: 10px;
    color: #333;
}

.event-list-container .event-image {
    width: 40%;
    height: auto;
}

.event-list-container .event-image img {
    max-width: 100%;
    border-radius: 8px;
}

.no-image {
    width: 40%;
    height: auto; /* Default height for placeholder */
    background-color: #e1e1e1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #888;
    font-size: 14px;
    font-style: italic;
}

/* Optional - to customize how the placeholder box appears without an image */
.no-image::after {
    content: "No Image Available";
    display: block;
    font-size: 14px;
    font-style: normal;
    line-height: 1.25;
    padding: 10px;
    text-align: center;
}

.event-pagination a, 
.event-pagination span {
    display: inline-block;
    padding: 10px 15px;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    color: #333;
    font-size: 14px;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 0 5px;
}

.event-pagination a:hover:not(.disabled) {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
    cursor: pointer;
}

.event-pagination .current-page {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
    font-weight: bold;
}

.event-pagination .disabled {
    background-color: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
}

.event-pagination .prev, 
.event-pagination .next {
    font-size: 16px;
}

@media (max-width: 600px) {
    .event-pagination a, 
    .event-pagination span {
        padding: 8px 10px;
        font-size: 12px;
    }

    .event-pagination {
        gap: 5px;
    }
}
/* Search Bar for Events */
.event-search-bar {
    align-items: center;
    border: 1px solid #ccc;
    display: flex;
    margin-bottom: 35px;
    padding: 5px;
}

.event-search-input {
    flex: 2;
    margin: 0 10px;
    position: relative;
}

.event-search-input svg {
    display: block;
    height: 18px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
}

.event-search-input input {
    border: none;
    box-shadow: none;
    font-size: 14px;
    outline: none;
    padding: 5px 0 5px 25px;
    width: 100%;
    background:none;
}

.event-search-input input:focus {
    border: none;
    box-shadow: none;
    outline: none;
}
  
.event-location-input {
    display: flex;
    align-items: center;
    flex: 1;
    border: 1px solid #e0e0e0;
    padding: 10px;
    border-radius: 5px;
    margin-right: 10px;
}
  
.event-location-icon {
    margin-right: 8px;
    color: #555;
}
  
.event-location-input input {
    border: none;
    outline: none;
    font-size: 16px;
    width: 100%;
}
  
.find-events-btn {
    line-height: 1.5;
    /*
    padding: 10px 20px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    */
}
  
.event-view-dropdown {
    display: flex;
    align-items: center;
}
  
.event-view-btn {
    padding: 10px 20px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
}
  
.event-dropdown-arrow {
    margin-left: 5px;
    font-size: 12px;
}
.reset-eve-btn{
      display: none;
}

/* Single event Container */

.event-single-container {
    max-width: 1200px;
    margin: 0 auto;
   padding: 20px;
}

.event-single-container .event-title {
   font-size: 2.5em;
   margin-bottom: 10px;
}

@media (max-width: 768px) {
    .event-single-container .event-title {
        font-size: 1.5em;
    }
}

.event-single-container .event-header {
   display: flex;
   align-items: center;
   font-size: 16px;
   margin-bottom: 20px;
   gap: 20px;
}

 .event-single-container .event-date-time,   .event-single-container .event-price {
   margin: 0;
}

 .event-single-container .event-body {
  
   margin-bottom: 30px;
}
.event-single-container .event-image img {
  
   max-width: 100%;
   height: auto;
   border-radius: 5px;
   margin-right: 20px;
}

.event-single-container .event-description {
    width: 100%;
}

/*
.event-single-container .add-calendar-btn {
   display: inline-block;
   padding: 10px 20px;
   background-color: #007bff;
   color: white;
   border: none;
   border-radius: 5px;
   cursor: pointer;
   margin-top: 20px;
}
*/

.event-single-container .event-details-organizer {
   display: flex;
   justify-content: space-between;
   margin-bottom: 30px;
}

.event-single-container .event-details, .event-organizer {
    width: 48%;
}

.event-single-container .event-details h2, .event-single-container .event-organizer h2, .event-single-container .event-venue h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.event-single-container .event-details ul, .event-single-container .event-organizer ul {
    list-style-type: none;
    padding: 0;
}

.event-single-container .event-details ul li, .event-single-container .event-organizer ul li {
    margin-bottom: 10px;
}

.event-single-container .event-venue {
    margin-bottom: 30px;
}

.event-single-container .google-map {
    margin-top: 10px;
}

.event-single-container .google-map img {
    max-width: 250px;
    border: 1px solid #ccc;
}


.event-single-container .event-tickets {
    margin-bottom: 30px;
}

.event-single-container .ticket-info {
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ccc;
}

.event-single-container .get-tickets-btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Drop down Base styles */

.event-filter-sidebar .filters-label {
    border-bottom: 1px solid #ccc;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.event-filter-sidebar .filter-dropdown {
    display: block;
    position: relative;
    width: 100%;
}

.event-filter-sidebar .dropdown-label {
    align-items: center;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    justify-content: space-between;
    padding: 15px 0;
}

/* Arrow for the dropdown */
.event-filter-sidebar .arrow {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid black;
    border-bottom: 2px solid black;
    transform: rotate(45deg); /* Initially points down */
    transition: transform 0.3s ease;
}

.event-filter-sidebar .filter-dropdown--active .arrow {
    transform: rotate(225deg);
}

/* Dropdown content styling */
.event-filter-sidebar .dropdown-content {
    display: none;
    padding-top: 10px;
    position: relative;
    width: 100%;
    z-index: 1;
}

/* Dropdown content items */
.event-filter-sidebar .dropdown-content > label {
    display: block;
    font-size: 14px;
    line-height: 1.25;
    margin-bottom: 10px;
}

.event-filter-sidebar .dropdown-content > label:last-child {
    margin-bottom: 0;
}

.event-filter-sidebar .dropdown-content > label input[type="text"] {
    border: 1px solid #ccc;
    font-size: 14px;
    line-height: 1.25;
    padding: 10px;
}

.event-filter-sidebar .dropdown-content > label input[type="checkbox"] {
    margin-right: 5px;
    vertical-align: text-top;
}

.event-filter-sidebar .dropdown-content > label input[type="date"] {
    width: 100%;
}

/*
.event-filter-sidebar .dropdown-toggle:checked + .dropdown-label .arrow {
    transform: rotate(-135deg);
}

.event-filter-sidebar .dropdown-toggle:checked + .dropdown-label + .dropdown-content {
    display: block;
}

.event-filter-sidebar .dropdown-toggle:checked ~ .filter-dropdown {
    margin-top: 170px;
    transition: margin-top 0.3s ease;
}
*/

.event-filter-sidebar input[type="checkbox"].dropdown-toggle {
    display: none;
}
  
.event-filter-sidebar input[type="checkbox"].dropdown-toggle {
    display: none;
}

p.sold-out {
    margin: 20px 0;
    color: red;
    font-weight: 600;
}

/* Basic loading spinner */
.events-spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #000;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
      transform: rotate(360deg);
  }
}
#events-loading {
  text-align: center;
  padding: 20px;
  display: none;
}

#eve_date, #eve_edate{
  width: 100%;
}

#reset_eve_btn {
    color: #052c68;
    font-weight: 700;
    line-height: 1.5;
    margin: 20px auto 0;
    text-align: center;
    text-decoration: underline !important;
}
  
/* EVENTS LIST BLOCK */

.events-list-wrapper .event-month-year {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 15px;
    padding-bottom: 15px;
}

.events-list-wrapper .event-list {
    background: none;
    border-radius: 0;
    margin: 0 0 40px;
    max-width: 100%;
    padding: 0;
    width: 100%;
}

.events-list-wrapper .event-item {
    gap: 20px;
}

.events-list-wrapper .event-item:last-child {
    border: none;
}

.events-list-wrapper .event-date {
    background: none;
    flex: 0 0 55px;
    margin: 0;
    padding: 0;
    width: auto;
}

.events-list-wrapper .event-date .day-name {
    color: #000;
    font-size: 14px;
    line-height: 1.25;
}

.events-list-wrapper .event-date .day-number {
    color: #000;
    line-height: 1.25;
    margin-top: 5px;
}

.events-list-wrapper .event-time {
    line-height: 1.25;
}

.events-list-wrapper .event-title {
    color: #000;
}

.events-list-wrapper .event-status {
    line-height: 1.25;
}

.events-list-wrapper .event-status .sold-out {
    color: #000;
}

.events-list-wrapper .event-status .event-price {
    color: #000;
}

@media (max-width: 600px) {
    .events-list-wrapper .event-date {
        display: none;
    }
    .events-list-wrapper .event-details {
        width: 100%;
    }
    .event-list-container .event-image {
        display: none;
    }
}

/**/

.events-list-wrapper .event-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.events-list-wrapper .event-pagination .current-page {
    background-color: #052c68;
    border: 1px solid #052c68 !important;
    color: #fff;
    line-height: 1;
    margin: 0;
    padding: 10px 15px;
}

.events-list-wrapper .event-pagination .page-numbers {
    background: none;
    border: 1px solid #ccc !important;
    color: #000;
    line-height: 1;
    margin: 0;
    padding: 10px 15px;
}

.events-list-wrapper .event-pagination .page-numbers:hover {
    background-color: #052c68;
    border-color: #052c68 !important;
    color: #fff;
}

/**/

.event-single-container .event-image {
    margin-bottom: 30px;
}

.event-single-container .event-image img {
    display: block;
    width: 100%;
}

.event-single-container .event-description {
    margin-bottom: 30px;
}

.event-single-container .event-description p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.event-single-container .event-description p:last-child {
    margin-bottom: 0;
}

/**/

.event-single-container .event-details-organizer {
    border-top: 1px solid rgb(0 0 0 / 0.25);
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 30px;
    padding-top: 30px;
}

@media (max-width: 768px) {
    .event-single-container .event-details-organizer {
        gap: 30px;
        grid-template-columns: repeat(1, 1fr);
    }
}

.event-single-container .event-details-organizer .event-details {
    width: 100%;
}

.event-single-container .event-details-organizer .event-organizer {
    width: 100%;
}

.event-single-container .event-details-organizer h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 10px;
}

.event-single-container .event-details-organizer ul {
}

.event-single-container .event-details-organizer ul li {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 5px;
}

.event-single-container .event-details-organizer ul li:last-child {
    margin-bottom: 0;
}

.event-single-container .event-details-organizer ul li strong {
}

/**/

.event-single-container .event-venue {
}

.event-single-container .event-venue h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
}

.event-single-container .event-venue p {
    font-size: 16px;
    line-height: 1.5;
}

/* NEW SINGLE EVENTS */

.eventsingle {
    padding: 96px 0;
}

.eventsingle__row {
    display: grid;
    grid-gap: 48px;
    grid-template-columns: repeat(2, 1fr);
}

.eventsingle__row__left {
}

.eventsingle__row__right {
}

@media (max-width: 1024px) {
    .eventsingle__row {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 768px) {
    .eventsingle {
        padding: 48px 0;
    }
}

.eventsingle__image {
    margin-bottom: 20px;
}

.eventsingle__image img {
    display: block;
    max-width: 424px;
    width: 100%;
}

.eventsingle__heading {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
}

.eventsingle__info {
    display: flex;
    flex-wrap: nowrap;
    font-size: 16px;
    gap: 20px;
    margin-bottom: 20px;
    margin-top: -15px;
}

.eventsingle__info__time {
}

.eventsingle__info__price {
}

.eventsingle__text {
}

.eventsingle__text p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.eventsingle__text p:last-child {
    margin-bottom: 0;
}

.eventsingle__text a {
}

.eventsingle__tickets {
}

.eventsingle__inforow {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 600px) {
    .eventsingle__inforow {
        grid-gap: 40px;
        grid-template-columns: repeat(1, 1fr);
    }
}

.eventsingle__inforow + .eventsingle__inforow {
    margin-top: 50px;
}

.eventsingle__inforow__left {
}

.eventsingle__inforow__right {
}

.eventsingle__inforow h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.eventsingle__inforow ul {
}

.eventsingle__inforow ul li {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.eventsingle__inforow ul li:last-child {
    margin-bottom: 0;
}

.eventsingle__inforow ul li strong {
    font-weight: 700;
    margin-bottom: 5px;
}