.grab-ticket-card {
  height: 172px;
  max-width: 572px;
  width: 572px;
  position: fixed;
  right: 0px;
  bottom: 40vh;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 999999;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.grab-ticket-card::before {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(
    3.18deg,
    #181818 12.38%,
    rgba(15, 15, 15, 0.701639) 48.13%,
    rgba(25, 24, 24, 0) 83.88%
  );
}
.grab-ticket-card.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1199px) {
  .grab-ticket-card {
    height: auto;
  }
}
@media (max-width: 767px) {
  .grab-ticket-card {
    width: 100%;
    max-width: -moz-fit-content;
    max-width: fit-content;
    bottom: 0vh;
    left: 0;
    right: 0;
    height: auto;
  }
}
.grab-ticket-card .flex-container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .grab-ticket-card .flex-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.grab-ticket-card .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 248px;
  gap: 8px;
}
@media (max-width: 767px) {
  .grab-ticket-card .content {
    max-width: 100%;
  }
}
.grab-ticket-card .content h4 {
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.8px;
  color: white;
  font-family: GuardianSansXCond Semibold;
  font-weight: 500;
}
.grab-ticket-card .content p {
  font-size: 16px;
  line-height: 24px;
  color: white;
}
.grab-ticket-card .btn-style {
  width: 252px;
  height: 56px;
  background: linear-gradient(
    112.38deg,
    rgba(255, 255, 255, 0.5) -120.84%,
    rgba(255, 255, 255, 0.1) 79.67%
  );
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #daaa00;
  line-height: 22.4px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  border: 1px solid #585057;
  font-family: Montserrat Bold;
  font-weight: 700;
  overflow: hidden;
  transition: all 0.7s ease-in-out;
}

.grab-ticket-card .btn-style::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(218, 170, 0, 0.1),
    transparent
  );
  transition: all 0.7s ease-in-out;
}

.grab-ticket-card .btn-style:hover::before {
  left: 100%;
}

@media (max-width: 767px) {
  .grab-ticket-card .btn-style {
    width: 100%;
  }
}
.grab-ticket-card .close-btn-style {
  position: absolute;
  top: 5px;
  right: 16px;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  padding: 0;
  width: 24px;
  min-height: 24px;
  cursor: pointer;
  z-index: 1;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  object-fit: cover;
}
