.highlight-bar {
  background-color: #ffd518;
  width: 28px;
  height: 3px;
  margin: auto;
}

/* ------------- HEREO SECTION */

.responsive-image-container {
  width: 100%; /* Set the width of the container to 100% of its parent */
  overflow: hidden; /* Hide any overflowing parts of the image */
  display: flex; /* Use flexbox to center the image */
  justify-content: center; /* Center the image horizontally */
}

.responsive-image-container img {
  min-width: 786px; /* Set the minimum width of the image */
  max-width: 100%; /* Ensure image does not exceed the container's width */
  height: auto; /* Scale the height automatically to preserve the aspect ratio */
  object-fit: cover; /* Cover the container without stretching the image */
}

/* ------------- ARTISTS SECTION */
.artist-section {
  margin: 0;
  padding: 0;
  padding-bottom: 94px;
  background-image: url("./images/background/ArtistBg.png");
  background-size: cover; /* Ensure the background covers the entire section */
}

/* ------------- DATE SECTION CONTAINER */
.event-date-container {
  background: #110c0221;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  flex-direction: column;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  gap: 8px;
}

/* ------------- ARTIST SECTION CONTAINER  */
.artist-section-container {
  margin-top: 90px; /* Gap between DATE and ARTIST sections */
}


.artist-heading {
  margin-bottom: 56px;
}

#tcondModalTrigger{
color: #ffd518;
cursor: pointer;
}



.ticketRow{
  display: flex;
  align-items: center;
  gap:22px
}



.custom-select-wrapper {
  position: relative;
  /* background-color: #181818; */
  max-width: 336px;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  margin-bottom: 30px;
  padding: 6.5px 4px;
  border:solid 1px rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.custom-select { display: none; } /* Hide original select */

/* Style the custom drop-down list */
.custom-options {
  position: absolute;
  background: #181818;
  color: #fff;
  width: 100%;
  border: none;
  box-sizing: border-box;
  z-index: 2;
  margin: 0;
  left: 0;
  top: 44px;
  padding-left: 0;
  overflow-y: scroll;
  max-height: 200px;

}
.custom-options::-webkit-scrollbar {
  width: 5px;
}

.custom-options::-webkit-scrollbar-thumb {
  background-color: #ffd518;
  border-radius: 10px;
  border: none;
}
.custom-options::-webkit-scrollbar-track {
  background: transparent;
}
.custom-options li {
  padding: 10px 16px;
  list-style-type: none;
  border-bottom: 1px solid #333;
  font-size: 14px;
}
.custom-options li:last-child {
  border: none;
}

.custom-options li:hover {
  background-color: #333;
}

.custom-option-heading {
  margin: 0; /* Removes default margins from <p> */
  font-size: 1em; /* Adjust size to match your design */
}

.custom-option-price {
  margin: 0; /* Removes default margins from <span> */
  /* Align the price to the right */
  font-size: 1em; /* Adjust size to match your design */
}

.select-container{
  width: 50%;
  flex-grow: 1;
}

.ticketCell1{
  width: 30%!important;
}

.custom-select-visible{
  font-size: 16px;
  text-overflow: ellipsis;
  padding: 0px 6px;
  width: 100%;


}
.custom-select-visible::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #ffd518;
  margin-left: 16px;
  position: absolute;
  right: 10px;
  top:18px
}



/* ---------=============--------------------- */


.select-box {
  position: relative;
  width: 100%;
  margin-bottom: 30px;

}

.select-box input {
  width: 100%;
  padding: 6px;
  font-size: 1.1rem;
  border: .1rem solid transparent;
  outline: none;
}

input[type="tel"] {
  border-radius: 0px;
  color: #fff;
  background-color: transparent;
}

.select-box input:focus {
  border: .1rem solid var(--primary);
}

.selected-option {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.selected-option div{
  position: relative;
  background: #181818;
  color: #fff;
  width: 8rem;
  padding: 8px 0px;
  text-align: center;
  cursor: pointer;
}

.selected-option div::after{
  position: absolute;
  content: "";
  right: .8rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  
  width: .8rem;
  height: .8rem;
  border-right: .12rem solid var(--primary);
  border-bottom: .12rem solid var(--primary);

  transition: .2s;
}

.selected-option div.active::after{
  transform: translateY(-50%) rotate(225deg);
}


.select-box .options {
  position: absolute;
  top: 4rem;
  
  width: 100%;
  background-color: #181818;
  border-radius: .5rem;

  display: none;
  z-index: 2;

  /* position: absolute;
  background: #181818;
  color: #fff;
  width: 100%;
  border: none;
  box-sizing: border-box;
  z-index: 2;
  margin: 0;
  left: 0;
  top: 44px;
  padding-left: 0;
  overflow-y: scroll;
  max-height: 200px; */
}

.select-box .options.active {
  display: block;
}

.select-box .options::before {
  position: absolute;
  content: "";
  left: 1rem;
  top: -1.2rem;
  width: 0;
  height: 0;
  border: .6rem solid transparent;
  border-bottom-color: var(--primary);
}

input.search-box {
  background-color: var(--primary);
  color: #fff;
  border-radius: .5rem .5rem 0 0;
  padding: 1.4rem 1rem;
}

.select-box ol {
  list-style: none;
  max-height: 23rem;
  overflow: overlay;
}

.select-box ol::-webkit-scrollbar {
  width: 0.6rem;
}

.select-box ol::-webkit-scrollbar-thumb {
 
  background-color: #ffd518;
  border-radius: 10px;
  border: none;
}

.select-box ol li {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.select-box ol li.hide {
  display: none;
}

.select-box ol li:not(:last-child) {
  border-bottom: .1rem solid #eee;
}

.select-box ol li:hover {
  background-color: #333;
}

.select-box ol li .country-name {
  margin-left: .4rem;
}


/* Adjust gap in mobile view */
@media (max-width: 768px) {
  .artist-section-container {
    margin-top: 50px; /* Smaller gap for mobile screens */
  }
  .custom-select-visible{
    font-size: 14px;
    text-overflow: ellipsis;
  }
  .custom-select-visible::after {
    display: none;
  }
}

/* Mobile screens */
@media (max-width: 576px) {
  .list-inline-style-1 li {
    font-size: medium !important; /* Reduce font size for mobile screens */
  }
}

/* ------------- EVENT DETAILS SECTION */
.event-details-heading {
  margin-bottom: 56px;
}

.icon-spacing {
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .icon-spacing {
    margin-bottom: 18px;
  }
}

@media (max-width: 576px) {
  .icon-spacing {
    margin-bottom: 14px;
  }
}

/* ------------- GALLERY SECTION */
.gallery-heading {
  margin-bottom: 56px;
}

/* ------------- SPONSOR SECTION */
.sponsor-heading {
  margin-bottom: 56px;
}

/* ------------- SPONSOR CAROUSEL */
.sponsors-section .slider {
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%; /* Adjust as per your layout */
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-120%);
  } /* Moves the track by half its total width */
}

.sponsors-section .slide-track {
  display: flex;
  width: calc(
    250px * number_of_unique_images * 2
  ); /* Adjust '250px' to your image width, and multiply by the number of unique images times two */
  animation: scroll 16s linear infinite; /* Adjust '40s' to control the speed */
}

.sponsors-section .slide {
  width: 250px; /* Adjust to your image width */
  flex-shrink: 0;
  /* Add other styling as needed */
}

.sponsors-section .slide img {
  width: 100%; /* Adjust if needed */
  height: 100px;
  object-fit: contain;
}

/* ------------- INSTAGRAM SECTION */

.instagram-heading {
  margin-bottom: 56px;
}

.swiper-pagination {
  display: none;
}

.swiper-container {
  width: 100% !important;
  margin-left: auto !important;
}

/* Custom styles for the navigation arrows */
.swiper-button-prev,
.swiper-button-next {
  background-color: white;
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  display: flex !important;
  justify-content: center;
  align-items: center !important;
  margin-top: 30px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: #ffd518; /* Arrow color */
  font-size: 100% !important;
  font-weight: 700;
}

/* Adjust the position of the arrows */
.swiper-button-prev {
  left: 10px;
}
.swiper-button-next {
  right: 10px;
}

/* Adjust the size of the images in the carousel */
.swiper-slide img {
  max-height: 300px; /* Set a maximum height */
  width: auto; /* Maintain aspect ratio */
  object-fit: cover; /* Cover the area of the slide */
}

.loader-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 22, 22, 0.352); /* Semi-transparent white background */
  align-items: center;
  justify-content: center;
  z-index: 999; /* Ensure the loader is on top of other content */
}

/* Styles for the loader SVG */
.loader-svg {
  width: 50px;
  height: 50px;
}

/* Further adjustments for different screen sizes */
@media (max-width: 1024px) {
  /* Tablet */
  .swiper-slide img {
    max-height: 250px;
  }
  .logo-head {
    width: 60px;
    height: 70px;
  }
  .header-main {
    padding-top: 4px !important;
  }
}

@media (max-width: 768px) {
  /* Mobile */
  .swiper-slide img {
    max-height: 280px;
    margin: auto;
    display: flex;
    justify-content: center;
  }
}

/* ------------- All heading spacing in responsive view */
@media (max-width: 768px) {
  .artist-heading {
    margin-bottom: 42px;
  }

  .event-details-heading {
    margin-bottom: 42px;
  }
  .sponsor-heading {
    margin-bottom: 42px;
  }
  .instagram-heading {
    margin-bottom: 42px;
  }
}

@media (max-width: 576px) {
  .artist-heading {
    margin-bottom: 32px;
  }
  .event-details-heading {
    margin-bottom: 32px;
  }
  .sponsor-heading {
    margin-bottom: 32px;
  }
  .instagram-heading {
    margin-bottom: 32px;
  }
  .logo-head {
    width: 60px;
    height: 70px;
  }
  .header-main {
    padding-top: 4px !important;
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 32px !important;
    height: 32px !important;
  }

  .sponsors-section .slide-track {
    display: flex;
    width: calc(
      250px * number_of_unique_images * 5
    ); /* Adjust '250px' to your image width, and multiply by the number of unique images times two */
    animation: scroll 16s linear infinite; /* Adjust '40s' to control the speed */
  }

  .icon-spacing {
    width: 90px;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-610%);
    } /* Moves the track by half its total width */
  }
}
