.tickets-dropdown-tippy {
  transform: translate(0px, 84px) !important;
  width: 100vw !important;
  max-width: 100vw !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
}

.tickets-dropdown-tippy[data-tippy-root] {
  max-width: 100vw !important;
  left: 0 !important;
  transform: translateY(84px) !important;
}

.tippy-box[data-theme~="tickets-dropdown"] {
  background-color: #ffffff;
  border-radius: 0;
  padding: 0;
  top: -5px;
}

.tippy-box[data-theme~="tickets-dropdown"] .tippy-content {
  background-color: #ffffff;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

.tickets-dropdown {
  display: flex;
  gap: 20px;
  padding: 20px 325px 20px 0;
  box-sizing: border-box;
  font-family: "Proxima Nova", sans-serif;
  justify-content: flex-end;
}

.tickets-dropdown__item {
  position: relative;
  display: block;
  width: 220px;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.tickets-dropdown__item:hover {
  transform: translateY(-5px);
}

.tickets-dropdown__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.tickets-dropdown__item:hover .tickets-dropdown__img {
  transform: scale(1.05);
}

.tickets-dropdown__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 10%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.tickets-dropdown__title {
  margin: 0;
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  z-index: 2;
}

@media (max-width: 1700px) {
  #tippy-1 {
    transform: translate(0px, 72px) !important;
  }

  .tickets-dropdown {
    padding: 20px 282px 20px 0;
  }

  .tickets-dropdown__item {
    width: 180px;
  }
}

@media (max-width: 1350px) {
  .tickets-dropdown {
    padding: 20px 100px 20px 0;
  }
}

@media (max-width: 1024px) {
  .tickets-dropdown__title {
    font-size: 24px;
  }

  .tickets-dropdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 5px;
    padding: 10px;
  }

  .tickets-dropdown__item {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .tickets-dropdown {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: start;
    gap: 10px;
    padding: 10px;
  }

  .tickets-dropdown__item {
    width: 100%;
    max-width: 220px;
    margin: 0;
  }
}