/* [project]/apps/web/app/sports/eventlist.css [app-client] (css) */
.hero-3-sports {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 6rem;
  padding-bottom: 6rem;
  display: flex;
  position: relative;
}

.hero-3-sports:before {
  content: "";
  background-color: #00000080;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-3-sports h1 {
  z-index: 1;
  position: relative;
}

.hero-sports-inner {
  z-index: 2;
  width: 100%;
  max-width: 800px;
  padding: 0 15px;
  position: relative;
}

.hero-search-wrap, .hero-search-wrap .search-bar {
  z-index: 3;
}

.hero-search-wrap .dropdown-menu {
  z-index: 4;
}

.filters-section .dropdown-menu {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 8px 24px #0000001f;
}

.filters-section .dropdown-menu.show {
  animation: .15s ease-out filterDropIn;
}

@keyframes filterDropIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.filter-btn {
  color: #333;
  white-space: nowrap;
  cursor: pointer;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 50px;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  margin-right: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 400;
  transition: all .2s;
  display: inline-flex;
}

.filter-btn:hover {
  color: var(--white);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: var(--rounded-full);
}

.filter-btn.active, .filter-btn.btn-primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.filter-btn i {
  font-size: 10px;
  transition: transform .2s;
}

.filter-btn.open i {
  transform: rotate(180deg);
}

.sort-btn {
  color: #333;
  white-space: nowrap;
  cursor: pointer;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 50px;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 400;
  transition: all .2s;
  display: inline-flex;
}

.sort-btn:hover {
  color: var(--white);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: var(--rounded-full);
}

.sort-btn ~ .filter-dropdown-panel .filter-option:not(.selected):hover {
  background: #dc9cf7;
}

.filter-chips {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
  display: flex;
}

.filter-chip {
  color: #5a0b6d;
  border: 1px solid #5a0b6d;
  border-radius: 50px;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  display: inline-flex;
}

.filter-chip .chip-close {
  color: #5a0b6d;
  cursor: pointer;
  opacity: .6;
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  line-height: 1;
  transition: opacity .2s;
}

.filter-chip .chip-close:hover {
  opacity: 1;
}

.clear-all-btn {
  color: var(--primary-color);
  cursor: pointer;
  background: none;
  border: none;
  margin-bottom: 8px;
  padding: 8px 4px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.clear-all-btn:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.filter-dropdown-footer .btn-primary {
  border-radius: var(--rounded-full);
}

.filter-dropdown-panel {
  z-index: 1050;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  flex-direction: column;
  min-width: 220px;
  max-height: 500px;
  margin-top: 4px;
  padding: 16px;
  animation: .15s ease-out filterDropIn;
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  overflow: hidden;
  box-shadow: 0 8px 24px #0000001f;
}

.filter-dropdown-panel.open-up {
  margin-top: 0;
  margin-bottom: 4px;
  top: auto;
  bottom: 100%;
}

.filter-dropdown-panel.wide {
  width: max-content;
  min-width: auto;
  max-width: 586px;
}

.filter-dropdown-header {
  color: #888;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 600;
}

.filter-option {
  color: #333;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 2px;
  padding: 7px 12px;
  font-size: 14px;
  transition: background .15s;
  display: block;
}

.filter-option:not(.selected):hover {
  background: var(--primary-hover);
  color: #000;
}

.filter-option.selected {
  background: var(--primary-color);
  color: #fff;
}

.filter-checkbox-item {
  cursor: pointer;
  border-radius: 6px;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
  padding: 6px 10px;
  transition: background .15s;
  display: flex;
}

.filter-checkbox-item:hover {
  background: #f9f5ff;
}

.filter-checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary-color);
  cursor: pointer;
  flex-shrink: 0;
}

.filter-checkbox-item .item-label {
  color: #333;
  flex: 1;
  font-size: 14px;
}

.filter-checkbox-item .item-count {
  color: #999;
  font-size: 12px;
}

.filter-dropdown-footer .btn {
  border-radius: var(--rounded-full);
  padding: 6px 12px;
  font-size: 13px;
}

.price-range-inputs {
  gap: 10px;
  margin-bottom: 12px;
  display: flex;
}

.price-range-inputs .price-field {
  flex: 1;
}

.price-range-inputs .price-field label {
  color: #888;
  margin-bottom: 4px;
  font-size: 12px;
  display: block;
}

.price-range-inputs .price-field input {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  outline: none;
  width: 100%;
  padding: 6px 10px;
  font-size: 14px;
  transition: border-color .2s;
}

.price-range-inputs .price-field input:focus {
  border-color: var(--primary-color);
}

.price-hint {
  color: #999;
  margin-bottom: 10px;
  font-size: 12px;
}

.Recommended-bx {
  background: #fff;
  border-radius: 12px;
  height: 100%;
  overflow: hidden;
}

.Recommended-bx:hover {
  box-shadow: none;
}

.Recommended-bx .card-display {
  align-items: center;
  display: flex;
}

.Recommended-bx .card-display.justify-content-between {
  justify-content: space-between;
}

.Recommended-bx .card-display.justify-content-between > div {
  width: 100%;
}

.heading h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}

.heading h3 a {
  color: #000;
  text-decoration: none;
}

.heading h3 a:hover {
  color: var(--primary-color);
}

.sports-text {
  color: #555;
  font-size: 14px;
}

.sports-text img {
  vertical-align: middle;
}

.category-text {
  color: #3c0a52;
  border-radius: var(--rounded-full);
  background: #dc9cf7;
  border: none;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
}

.notification {
  cursor: pointer;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  transition: all .3s;
  display: flex;
}

.notification i {
  color: #555;
  font-size: 16px;
}

.notification:hover {
  background: #ffde59;
  border-color: #ffde59;
}

.notification:hover i {
  color: #3c0a52;
}

.owners-font {
  font-weight: var(--font-medium);
}

.sold-out {
  color: #d92d20;
  background: #fef3f2;
  border: none;
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
}

.coming-soon, .coming-soon-badge {
  color: #ba56e4;
  background: #faefff;
  border: none;
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
}

.info-tooltip {
  cursor: pointer;
  align-items: center;
  display: inline-flex;
  position: relative;
}

.info-tooltip:after {
  content: attr(data-tooltip);
  color: #fff;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
  text-align: left;
  background: #333;
  border-radius: 6px;
  width: max-content;
  max-width: 200px;
  margin-bottom: 6px;
  padding: 6px 10px;
  font-size: 11px;
  line-height: 1.4;
  transition: opacity .2s;
  position: absolute;
  bottom: 100%;
  right: 0;
}

.info-tooltip:before {
  content: "";
  opacity: 0;
  pointer-events: none;
  z-index: 20;
  border: 5px solid #0000;
  border-top-color: #333;
  transition: opacity .2s;
  position: absolute;
  bottom: 100%;
  right: 4px;
}

.info-tooltip:hover:after, .info-tooltip:hover:before {
  opacity: 1;
}

.not-final-indicator {
  color: var(--primary-color);
  align-items: center;
  gap: 4px;
  display: inline-flex;
}

.not-final-badge {
  color: var(--primary-color);
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
}

.getPropertyDetail {
  border-radius: var(--rounded-full);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 600;
  transition: none;
}

.btn.getPropertyDetail:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  opacity: 1;
  padding: 8px 24px;
  transition: none;
}

.results-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-state svg {
  color: #d1d5db;
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

.filter-dropdown-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.filters-section .btn-outline-secondary {
  color: #333;
  background-color: #fff;
  border-color: #d9d9d9;
  border-radius: 50px;
  font-weight: 400;
}

.filters-section .btn-outline-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background-color: #fff;
}

.filters-section .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.filters-section .btn-primary:hover {
  background-color: #5a0b94;
  border-color: #5a0b94;
}

.hero-3-component-bar {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 12rem;
  padding-bottom: 12rem;
  display: flex;
  position: relative;
}

.hero-3-component-bar:before {
  content: "";
  background-color: #0000004d;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-3-heading {
  color: #fff;
  font-size: 2.5rem;
}

.hero-sport-form {
  text-align: center;
  width: 100%;
  max-width: 800px;
  padding-left: 15px;
  padding-right: 15px;
  position: absolute;
  bottom: 100px;
}

.breadcrumb {
  background: none;
  margin-bottom: 0;
  padding: 12px 0;
}

.breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #666;
}

.max-width600 {
  max-width: 560px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.max-width600 h1 {
  line-height: 80px;
}

.fontsize14 {
  font-size: 14px;
}

.fontsize20 {
  font-size: 20px;
}

.filter-dropdown-panel .dropdown-item {
  padding: 0;
}

.sport-card {
  cursor: pointer;
  border-radius: 10px;
  min-width: 167px;
  height: 110px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.sports-wrapper {
  scrollbar-width: none;
  gap: 10px;
  display: flex;
  overflow-x: auto;
}

.sports-wrapper::-webkit-scrollbar {
  display: none;
}

.back-to-top-btn {
  z-index: 1040;
  background: var(--primary-color);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 18px;
  transition: all .3s;
  display: flex;
  position: fixed;
  bottom: 30px;
  right: 30px;
  box-shadow: 0 4px 16px #6a0dad59;
}

.back-to-top-btn:hover {
  background: #5a0b94;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px #6a0dad73;
}

.events-loader-wrap {
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  padding: 40px 0;
  display: flex;
}

.events-loader {
  flex-direction: column;
  align-items: center;
  gap: 12px;
  display: flex;
}

.events-loader-spinner {
  gap: 8px;
  display: flex;
}

.loader-dot {
  background: var(--primary-color);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  animation: .6s infinite alternate loaderBounce;
}

.loader-dot:nth-child(2) {
  animation-delay: .2s;
}

.loader-dot:nth-child(3) {
  animation-delay: .4s;
}

.btn-outline-secondary:hover {
  color: var(--white);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: var(--rounded-full);
}

@keyframes loaderBounce {
  from {
    opacity: .4;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(-10px);
  }
}

.events-loader-text {
  color: #888;
  margin: 0;
  font-size: 14px;
}

.events-loader-sentinel {
  height: 40px;
}

@media (max-width: 767px) {
  .hero-3-sports {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero-3-heading {
    font-size: 1.6rem;
  }

  .hero-3-component-bar {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .max-width600 h1 {
    line-height: 40px;
  }

  .fontsize20 {
    font-size: 16px;
  }

  .heading h3 {
    min-height: auto;
    font-size: 1.1rem;
  }

  .filters-section .col-lg-9 {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    overflow-x: auto;
  }

  .filters-section .col-lg-9::-webkit-scrollbar {
    display: none;
  }

  .filter-chips {
    gap: 6px;
  }

  .filter-chip {
    padding: 4px 10px;
    font-size: 12px;
  }

  .filter-dropdown-panel {
    z-index: 1060;
    border-radius: 16px 16px 0 0;
    width: 100%;
    max-height: 60vh;
    margin-top: 0;
    position: fixed;
    inset: auto 0 0;
  }

  .filter-mobile-overlay {
    z-index: 1055;
    background: #0000004d;
    position: fixed;
    inset: 0;
  }

  .heading h3 {
    font-size: 1rem;
  }

  .category-text {
    padding: 4px 10px;
    font-size: 12px;
  }

  .getPropertyDetail {
    padding: 6px 18px;
    font-size: 13px;
  }

  .back-to-top-btn {
    width: 42px;
    height: 42px;
    font-size: 16px;
    bottom: 20px;
    right: 20px;
  }

  .hero-sports-inner {
    padding: 0 10px;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .hero-3-sports {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .hero-3-component-bar {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .heading h3 {
    font-size: 1.05rem;
  }
}

.skeleton-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  height: 320px;
  padding: 20px;
}

.skeleton-line {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%) 0 0 / 200% 100%;
  border-radius: 6px;
  margin-bottom: 12px;
  animation: 1.5s infinite skeletonShimmer;
}

.skeleton-badge {
  width: 80px;
  height: 24px;
}

.skeleton-title {
  width: 90%;
  height: 22px;
}

.skeleton-text {
  width: 70%;
  height: 16px;
}

.skeleton-text.short {
  width: 50%;
}

.skeleton-price {
  width: 40%;
  height: 24px;
  margin-top: 20px;
}

.skeleton-btn {
  width: 80px;
  height: 34px;
  margin-top: 8px;
}

@keyframes skeletonShimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.double-slider-box {
  padding: 5px 0;
}

.price-range-text {
  margin-bottom: 16px;
}

.price-range-text .min-box, .price-range-text .max-box {
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  align-items: center;
  gap: 4px;
  min-width: 90px;
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
}

.price-range-text .price-currency {
  color: #888;
  font-weight: 500;
}

.range-slider {
  width: 100%;
  height: 6px;
  margin: 20px 0 10px;
  position: relative;
}

.range-slider .slider-track {
  border-radius: 3px;
  width: 100%;
  height: 6px;
  position: absolute;
  top: 0;
  left: 0;
}

.range-slider input[type="range"] {
  appearance: none;
  pointer-events: none;
  background: none;
  outline: none;
  width: 100%;
  height: 6px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: -1px;
  left: 0;
}

.range-slider input[type="range"].min-val {
  z-index: 3;
}

.range-slider input[type="range"].max-val {
  z-index: 4;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  background: var(--primary-color, #3c0a52);
  cursor: pointer;
  pointer-events: all;
  border: 3px solid #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  margin-top: -8px;
  position: relative;
  box-shadow: 0 2px 6px #0000004d;
}

.range-slider input[type="range"]::-moz-range-thumb {
  background: var(--primary-color, #3c0a52);
  cursor: pointer;
  pointer-events: all;
  border: 3px solid #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  box-shadow: 0 2px 6px #0000004d;
}

.range-slider input[type="range"]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  background: none;
  height: 6px;
}

.filter-option, .filter-checkbox-item .item-label {
  font-weight: 500;
}

.filter-dropdown-header {
  font-weight: 700;
}

.filter-btn {
  font-weight: 500;
}

.filter-panel-layout {
  flex-direction: column;
  max-height: 340px;
  display: flex;
  overflow: hidden;
}

.filter-panel-header {
  flex-shrink: 0;
  padding-bottom: 4px;
}

.filter-panel-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

.filter-panel-footer {
  border-top: 1px solid #eee;
  flex-shrink: 0;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 8px;
  padding-top: 10px;
  display: flex;
}

.filter-dropdown-footer {
  border-top: 1px solid #eee;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 8px;
  padding-top: 10px;
  display: flex;
}

.filter-dropdown-panel.no-scroll {
  max-height: none;
  overflow: visible;
}

.filter-search-box {
  flex-shrink: 0;
  margin-bottom: 8px;
}

.filter-search-box input {
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 13px;
}

.filter-dropdown-panel > ul {
  flex: 1;
  min-height: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: auto;
}

.filter-dropdown-panel > .filter-dropdown-header, .filter-dropdown-panel > .filter-dropdown-footer {
  flex-shrink: 0;
}

/*# sourceMappingURL=apps_web_app_sports_eventlist_0z-s6qz.css.map*/