@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

.single-event {
  background-color: #000;
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  padding: 0 1.66667rem;
  margin-left: auto;
  margin-right: auto;
}

.single-event-container {
}

.date-container {
  width: calc(100% / 12 * 2);
  font-family: "Bebas Neue", cursive;
  font-weight: 900;
  font-style: normal;
  color: #ffcc00;
  font-size: 55px;
  /* font-size: 2.222rem; */
  line-height: 3.2rem;
}

.venue-container {
  width: calc(100% / 12 * 6);
  max-width: calc(100% / 12 * 6);
  flex: 0 0 auto;
  flex-basis: calc(100% / 12 * 6);
}

.venue-name {
  color: #cccccc;
  font-family: "lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
}

.venue-location {
  color: #ffcc00;
  font-family: "lato", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 21px;
}

.event-bullet {
  font-size: 8px !important;
  padding: 0px 3px;
  margin-left: 2px;
  display: inline-block;
  vertical-align: 2px;
}

.event-bullet p {
  font-size: 8px !important;
  padding: 0px 3px;
  margin-left: 2px;
  display: inline-block;
  vertical-align: 2px;
}

.rsvp-container {
  width: calc(100% / 12 * 2);
  display: table;
  display: flex;
  font-size: 18px;
  display: inline-flex;
  align-items: center;

  color: #cccccc;
  font-family: "lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  text-align: right;
  cursor: pointer;
}

.rsvp-contents:hover {
  color: #fff;
}

.rsvp-text {
  color: #cccccc;
  width: 100%;
  text-align: center;
}

.rsvp-text p {
  display: inline-block;
}

.ticket-container {
  width: calc(100% / 12 * 2);
  display: table;
  display: flex;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
}

.ticket-button {
  vertical-align: middle;
  font-family: "lato", sans-serif;
  font-weight: 900;
  font-style: normal;
  background-color: #ffcc00;
  border-radius: 0.2777777777777778rem;
  color: #000;
  padding: 8px 0px;
  margin: 0;
  -webkit-appearance: none;
  font-size: 0.88889rem;
  text-align: center;
  transition: none;
  -moz-transition: none;
  -webkit-transition: none;
  -o-transition: none;
  width: 100%;
  line-height: 26px;
  cursor: pointer;
}

.ticket-button:hover {
  animation-name: ticketbutton;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.button-ticket-icon {
  height: 20px;
  vertical-align: middle;
  margin-top: -5px;
  padding-right: 5px;
}

.sold-out {
  vertical-align: middle;
  font-family: "lato", sans-serif;
  font-weight: 900;
  font-style: normal;
  background-color: red;
  border-radius: 0.2777777777777778rem;
  color: #ffffff;
  padding: 8px 0px;
  margin: 0;
  -webkit-appearance: none;
  font-size: 0.88889rem;
  text-align: center;
  transition: none;
  -moz-transition: none;
  -webkit-transition: none;
  -o-transition: none;
  width: 100%;
  line-height: 26px;
  cursor: pointer;
}

.sold-out:hover {
}

@keyframes ticketbutton {
  to {
    background-color: #fcedb2;
  }
}

.ticket-link {
  width: 100%;
  margin: 0px;
}
.gray-spacer {
  width: 100%;
  border-top: 2px solid #555555;
  margin-bottom: 30px;
  margin-top: 30px;
}

@media only screen and (max-width: 767.98px) {
  .single-event {
    width: 96%;
    padding: 0px;
    margin: 0px 2%;
  }

  .date-container,
  .venue-container,
  .rsvp-container,
  .ticket-container {
    margin-left: 2%;
    padding: 0px;
    width: 96%;
    max-width: none;
    flex-basis: auto;
    text-align: center;
  }

  .date-container,
  .venue-location {
    padding-bottom: 10px;
  }

  .venue-name {
    line-height: 1.2em;
    margin-bottom: 4px;
  }

  .rsvp-text {
    width: 100%;
    margin-bottom: 12px;
  }

  .ticket-button {
    margin: 0px;
    padding: 10px 0px;
  }

  .ticket-link {
    width: 100%;
  }
}
