.seated-wrapper {
  color: #ece5e7;
  padding: 5%;
  margin-bottom: 5%;
}

.seated-events-table {
  font-family: "Poppins-Regular";
  font-size: 1.15em;
  border-top: 0;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  box-sizing: border-box;
  padding: 0 20px;
}

.seated-event-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #ece5e7;
  background: transparent;
  -webkit-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
  cursor: pointer;
}

.seated-event-row.seated-event-row-highlighted {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 2px solid #040404;
}

.seated-event-row:hover {
  background: rgba(0, 15, 24, 0.15);
  -webkit-transition: background 0.1s ease-in-out;
  -o-transition: background 0.1s ease-in-out;
  transition: background 0.1s ease-in-out;
}

.seated-event-description-cells {
  width: 65%;
}

.seated-event-venue-cell {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.seated-event-venue-name {
  font-family: "Poppins-Bold";
  font-size: 1em;
  width: 75%;
}

.seated-event-venue-location {
  font-family: "Poppins-Regular";
  font-size: 0.75em;
  color: #ece5e7;
  width: 25%;
}

.seated-event-date-cell {
  color: #81b3b4;
  font-family: "Huge";
  font-size: 1.15em;
  letter-spacing: -0.1em;
  text-transform: uppercase !important;
}

.seated-event-details-cell {
  font-family: "Poppins-Regular";
  font-size: 0.75em;
  display: block;
  opacity: 0.7;
}

.seated-event-link-cells {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.seated-event-link1,
.seated-event-link1:visited,
.seated-event-link2,
.seated-event-link2:visited {
  color: #040404;
  border: 1px solid #81b3b4;
  background: #81b3b4;
  border-radius: 0;
  display: block;
  font-family: "huge";
  font-size: 0.85em;
  letter-spacing: -0.1em;
  margin: 4px 0 4px 9px;
  overflow: hidden;
  padding: 12px 3px;
  text-align: center;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
  min-width: 120px;
  text-transform: uppercase !important;
}

.seated-event-link1:hover,
.seated-event-link2:hover {
  color: #81b3b4;
  border: 1px solid #81b3b4;
  border-radius: 0;
  background: transparent;
  display: block;
  font-family: "huge";
  font-size: 0.85em;
  letter-spacing: -0.1em;
  margin: 4px 0 4px 9px;
  overflow: hidden;
  padding: 12px 3px;
  text-align: center;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
  min-width: 120px;
  text-transform: uppercase !important;
  -webkit-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.seated-follow-box {
  padding: 30px 0;
  margin-top: 10px;
  text-align: center;
}

.seated-follow-text {
  font-size: 0.75em;
  line-height: 45px;
  text-align: center;
}

.seated-follow-link,
.seated-follow-link:visited {
  display: inline-block;
  font-family: "huge";
  font-size: 0.85em;
  margin-top: 45px;
  color: #040404;
  border: 1px solid #81b3b4;
  background: #81b3b4;
  border-radius: 0;
  font-size: 0.85em;
  letter-spacing: -0.1em;
  overflow: hidden;
  padding: 12px 3px;
  text-align: center;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
  padding-left: 20px;
  padding-right: 20px;
  text-transform: uppercase !important;
}

.seated-follow-link:hover {
  color: #81b3b4;
  border: 1px solid #81b3b4;
  background: transparent;
  text-decoration: none;
  -webkit-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

@media screen and (max-width: 1024px) {
  .seated-event-link-cells {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
  }
  .seated-event-venue-name {
    width: 90%;
  }
  .seated-event-venue-location {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .seated-event-venue-cell {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
  }
}
@media screen and (max-width: 580px) {
  .seated-event-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
  }
  .seated-event-description-cells {
    width: 100%;
    text-align: center;
  }
  .seated-event-venue-cell {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0px;
  }
}

/*# sourceMappingURL=seated.css.map */
