#eventDetails {
  display: flex;
  justify-content: center;
  align-items: center;
}

#eventDetails .separator {
  margin: 0 5px;
}

#eventDetails .location {
  color: var(--portalThemeColor2);
}

#eventDetails[data-city],
#eventDetails[data-country] {
  color: var(--portalThemeColor2);
}

#eventDetails[data-building] {
  color: var(--portalThemeColor10);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}

.description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 4.5em;
  line-height: 1.5em;
}

.description.expanded {
  -webkit-line-clamp: unset;
  max-height: none;
}

.see-more-btn {
  background: none;
  border: 1px solid var(--portalThemeColor1);
  color: var(--portalThemeColor9);
  cursor: pointer;
  width: 130px;
  height: fit-content;
  border-radius: 4px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  font-size: larger;
  font-weight: 500;
  padding: 10px;
}

#buildingName,
#city {
  color: var(--portalThemeColor4);
}

#country {
  color: var(--portalThemeColor2);
}

@media only screen and (max-width: 630px) {
  .eventintroname {
    font-size: 40px !important;
    line-height: 70px !important;
    width: auto !important;
    margin: auto !important;
  }

  #eventDetails {
    display: flex;
    flex-direction: column;
  }
}
