body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
  color: #000;
  background: #fff;
}
.text-center {
  text-align: center;
}
.footer {
  margin-top: 150px;
  background: #000;
  color: #fff;
}
.footer .footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1500px;
  margin: 0 auto;
  padding: 40px 20px;
}
.footer .footer-content .left img {
  width: 429px;
}
.footer .footer-content .left .links {
  margin-top: 25px;
}
.footer .footer-content .left .links a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  margin-right: 20px;
}
.footer .footer-content .right {
  font-size: 18px;
}
.footer .footer-content .right .sm {
  font-size: 14px;
}
@media (max-width: 768px) {
  .footer .footer-content {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .footer .footer-content .left {
    margin: 0 auto;
  }
  .footer .footer-content .left img {
    width: 80%;
  }
  .footer .footer-content .left .links a {
    font-size: 14px;
  }
  .footer .footer-content .right {
    margin: 20px auto 0;
    font-size: 14px;
  }
  .footer .footer-content .right .sm {
    font-size: 12px;
  }
}
.header {
  box-shadow: 0 25px 25px rgba(0, 0, 0, 0.16);
}
@media (max-width: 768px) {
  .header {
    flex-direction: column;
  }
  .header .nav {
    margin-top: 10px;
    text-align: center;
  }
}
.header .header-content {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
.header .header-content .logo-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}
.header .header-content .logo-nav .logo-wrapper {
  width: 255px;
}
.header .header-content .logo-nav .logo-wrapper .logo {
  width: 100%;
  display: block;
}
.header .header-content .logo-nav .nav .nav-content .hamburger {
  display: none;
  margin: 0 20px;
  cursor: pointer;
}
.header .header-content .logo-nav .nav .nav-content .hamburger i {
  display: block;
  width: 32px;
  margin: 10px 0;
  border-bottom: 2px solid #000;
}
.header .header-content .logo-nav .nav .nav-content .nav-options {
  display: flex;
  align-items: center;
}
.header .header-content .logo-nav .nav .nav-content .nav-options a {
  display: inline-block;
  margin: 0 5px 0 5px;
  padding: 0 13px;
  color: #181818;
  text-decoration: none;
  font-size: 15px;
  text-align: center;
}
.header .header-content .logo-nav .nav .nav-content .nav-options a.active {
  border-bottom: 1px solid #EB2329;
}
.header .header-content .logo-nav .nav .nav-content .nav-options a.highlight {
  min-width: 100px;
  line-height: 40px;
  color: #fff;
  background: #EB2329;
  border-radius: 9px;
}
@media (max-width: 500px) {
  .header .header-content .logo-nav .nav .nav-content .hamburger {
    display: block;
  }
  .header .header-content .logo-nav .nav .nav-content .hamburger i {
    transition-duration: 100ms;
  }
  .header .header-content .logo-nav .nav .nav-content .hamburger.open {
    transform: translateX(-50%);
  }
  .header .header-content .logo-nav .nav .nav-content .hamburger.open i:nth-child(1) {
    transform: rotate(-45deg) translateY(16px);
  }
  .header .header-content .logo-nav .nav .nav-content .hamburger.open i:nth-child(2) {
    opacity: 0;
  }
  .header .header-content .logo-nav .nav .nav-content .hamburger.open i:nth-child(3) {
    transform: rotate(45deg) translateY(-17px);
  }
  .header .header-content .logo-nav .nav .nav-content .nav-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    display: block;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition-duration: 100ms;
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    z-index: 9001;
  }
  .header .header-content .logo-nav .nav .nav-content .nav-options a {
    display: block;
    margin: 5px 0;
    font-size: 20px;
  }
  .header .header-content .logo-nav .nav .nav-content .nav-options.open {
    visibility: visible;
    pointer-events: all;
    opacity: 1;
  }
}
.content {
  min-height: 100vh;
}
.event-wrapper {
  max-width: 1500px;
  margin: 20px auto;
  padding: 0 20px;
}
.event-header {
  position: relative;
  height: 430px;
  color: #fff;
}
.event-header .banner-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  overflow: hidden;
  align-items: center;
  width: 100%;
}
.event-header .banner-wrapper img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 500px) {
  .event-header .banner-wrapper img {
    width: 100%;
    height: auto;
  }
}
.event-header .opacity {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}
.event-header .event-header-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 1500px;
  margin: 0 auto;
  text-align: center;
}
.event-header .event-header-content .name {
  margin-bottom: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 44px;
  font-weight: 500;
}
.event-header .event-header-content .details {
  font-weight: 600;
}
.event-header .event-header-content .details * {
  display: inline-block;
  vertical-align: middle;
}
.event-header .event-header-content .details .location {
  font-size: 14px;
}
.event-header .event-header-content .details .location img {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  margin-right: 10px;
}
.event-header .event-header-content .details .location:after {
  content: " ";
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 16px;
  margin: 0 10px;
  background: #fff;
}
.event-header .event-header-content .details .when {
  font-size: 12px;
}
.event-header .event-header-content .details .when img {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  margin: 0 7px;
}
.button {
  padding: 15px;
  color: #fff;
  background: #EB2329;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  transition-duration: 200ms;
  text-decoration: none;
  user-select: none;
}
.button:hover:not([disabled]),
.button:focus:not([disabled]) {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}
.button.small {
  padding: 5px 7px;
  font-size: 12px;
  font-weight: normal;
}
.button img {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  margin-right: 5px;
}
.button span {
  display: inline-block;
  vertical-align: middle;
}
.button[disabled] {
  opacity: 0.5;
  cursor: default;
}
.button.no-bg {
  background: transparent;
  box-shadow: none !important;
}
.button.danger {
  background-color: #EB2329;
  color: white;
}
.button.shrink {
  flex-shrink: 2;
}
.button.inline-middle {
  display: inline-block;
  vertical-align: middle;
}
button {
  padding: 15px;
  color: #fff;
  background: #EB2329;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  transition-duration: 200ms;
  text-decoration: none;
  user-select: none;
}
button:hover:not([disabled]),
button:focus:not([disabled]) {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}
button.small {
  padding: 5px 7px;
  font-size: 12px;
  font-weight: normal;
}
button img {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  margin-right: 5px;
}
button span {
  display: inline-block;
  vertical-align: middle;
}
button[disabled] {
  opacity: 0.5;
  cursor: default;
}
button.no-bg {
  background: transparent;
  box-shadow: none !important;
}
button.danger {
  background-color: #EB2329;
  color: white;
}
button.shrink {
  flex-shrink: 2;
}
button.inline-middle {
  display: inline-block;
  vertical-align: middle;
}
button[type=submit],
.full-width-button {
  padding: 15px;
  color: #fff;
  background: #EB2329;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  transition-duration: 200ms;
  text-decoration: none;
  user-select: none;
  display: block;
  box-sizing: border-box;
  width: 100%;
  font-size: 18px;
  text-align: center;
}
button[type=submit]:hover:not([disabled]),
.full-width-button:hover:not([disabled]),
button[type=submit]:focus:not([disabled]),
.full-width-button:focus:not([disabled]) {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}
button[type=submit].small,
.full-width-button.small {
  padding: 5px 7px;
  font-size: 12px;
  font-weight: normal;
}
button[type=submit] img,
.full-width-button img {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  margin-right: 5px;
}
button[type=submit] span,
.full-width-button span {
  display: inline-block;
  vertical-align: middle;
}
button[type=submit][disabled],
.full-width-button[disabled] {
  opacity: 0.5;
  cursor: default;
}
button[type=submit].no-bg,
.full-width-button.no-bg {
  background: transparent;
  box-shadow: none !important;
}
button[type=submit].danger,
.full-width-button.danger {
  background-color: #EB2329;
  color: white;
}
button[type=submit].shrink,
.full-width-button.shrink {
  flex-shrink: 2;
}
button[type=submit].inline-middle,
.full-width-button.inline-middle {
  display: inline-block;
  vertical-align: middle;
}
.buttons {
  display: flex;
}
.buttons.full-width-buttons {
  justify-content: space-between;
}
.buttons.full-width-buttons .button {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 0.5em;
}
.buttons .button {
  justify-content: center;
}
.buttons.compact {
  margin: 3px;
}
@media (max-width: 768px) {
  .buttons.vertical-on-mobile {
    flex-direction: column;
  }
}
.section-card {
  margin-top: 40px;
  padding: 20px;
  font-size: 18px;
  background: #fff;
  box-shadow: 0 25px 25px rgba(0, 0, 0, 0.16);
  border-radius: 14px;
  overflow-y: auto;
}
.section-card h2 {
  width: fit-content;
  padding-bottom: 10px;
  padding-right: 20px;
  color: #EB2329;
  border-bottom: 1px solid #707070;
}
.buttons-top {
  max-width: 1024px;
  margin: 10px auto;
}
.add-to-calendar {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 20px;
}
@media (max-width: 500px) {
  .add-to-calendar {
    flex-direction: column;
  }
}
.description {
  margin-top: 20px;
}
.description :nth-child(1) {
  margin-top: 0;
}
.volunteer-status {
  margin: 10px;
}
.volunteer-status img {
  display: inline-block;
  width: 24px;
  vertical-align: middle;
  margin-right: 7px;
}
.volunteer-status a {
  color: #000;
  text-decoration: none;
}
.map {
  position: relative;
}
.map #map_canvas {
  width: 100%;
  height: 400px;
  border-radius: 14px;
  box-shadow: 0 25px 25px rgba(0, 0, 0, 0.16);
}
.map .bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-weight: 500;
  margin-top: 20px;
}
.map .bottom .address-geo {
  padding-right: 10px;
}
table,
table th,
table td {
  text-align: center;
  border: 1px solid lightgray;
  border-collapse: collapse;
  padding: 5px;
}
table {
  width: 100%;
}
table thead th {
  background: #EB2329;
  border-color: #EB2329;
  color: #fff;
  font-weight: 500;
  margin-bottom: 10px;
}
table tbody tr:nth-child(even) {
  background: #F4F4F4;
}
table tbody tr td {
  padding: 10px;
}
table tbody tr td .button {
  display: block;
  text-align: center;
}
.event-wrapper .weather h2 {
  margin-top: 50px;
  margin-bottom: 0;
  font-size: 44px;
  font-weight: 500;
}
.event-wrapper .weather .sep {
  width: 128px;
  height: 1px;
  margin: 20px auto;
  background: #707070;
}
.event-wrapper .weather h3 {
  margin-top: 0;
  color: #EB2329;
  font-weight: 500;
  font-size: 25px;
}
.event-wrapper .weather .grey {
  color: rgba(0, 0, 0, 0.5);
}
.event-wrapper .weather .alert {
  white-space: pre;
}
@media (min-width: 768px) {
  .event-wrapper .weather .section-card.weather-card {
    display: flex;
    flex-direction: row;
  }
}
.event-wrapper .weather .section-card.weather-card > * {
  position: relative;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .event-wrapper .weather .section-card.weather-card > * {
    display: flex;
    height: 234px;
  }
}
.event-wrapper .weather .section-card.weather-card .icon-date {
  text-align: center;
}
@media (min-width: 768px) {
  .event-wrapper .weather .section-card.weather-card .icon-date {
    width: 18%;
    white-space: nowrap;
    padding-right: 1em;
  }
}
.event-wrapper .weather .section-card.weather-card .icon-date .day {
  color: #EB2329;
  font-weight: 600;
  font-size: 25px;
}
@media (min-width: 768px) {
  .event-wrapper .weather .section-card.weather-card .description {
    width: 20%;
  }
}
.event-wrapper .weather .section-card.weather-card .description .text {
  margin: 20px auto;
  flex-direction: column;
  justify-content: center;
  width: fit-content;
  padding: 0 1em;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 768px) {
  .event-wrapper .weather .section-card.weather-card .description .text {
    height: 174px;
    display: flex;
    margin: 0 auto;
    border-left: 1px solid #707070;
    border-right: 1px solid #707070;
  }
}
.event-wrapper .weather .section-card.weather-card .stats {
  font-weight: 500;
}
@media (min-width: 768px) {
  .event-wrapper .weather .section-card.weather-card .stats {
    width: 55%;
    padding: 0 1em;
  }
}
.event-wrapper .weather .section-card.weather-card .stats .cols {
  display: flex;
}
@media (max-width: 768px) {
  .event-wrapper .weather .section-card.weather-card .stats .cols {
    display: block;
  }
}
.event-wrapper .weather .section-card.weather-card .stats .cols .col {
  flex: 1;
  margin: 0 15px;
}
.event-wrapper .weather .section-card.weather-card .stats .cols .col .stat {
  display: flex;
  justify-content: space-between;
}
.event-wrapper .weather .section-card.weather-card .stats .cols .col .stat .label:after {
  content: ":";
}
.event-wrapper .weather .section-card.weather-card .stats .cols .col .stat .value {
  text-align: right;
}
.event-wrapper .weather .view-more {
  display: block;
  margin: 40px auto;
  width: fit-content;
  padding: 5px;
  font-size: 25px;
  font-weight: 500;
  color: #EB2329;
  text-align: center;
  cursor: pointer;
}
.event-wrapper .weather .view-more img {
  display: block;
  margin: 10px auto;
  width: 20px;
}
.event-entry-list {
  max-width: 1500px;
  margin: 20px auto;
}
.event-entry-list table {
  width: 100%;
  table-layout: fixed;
}
.event-entry-list table .first-event {
  background: lightblue;
}
.event-entry-list table a.social {
  display: inline-block;
  vertical-align: middle;
}
.event-entry-list table a.social img {
  display: block;
  width: 24px;
  margin: 3px;
}
.event-entry-list .newbie-legend .legend-title {
  margin: 10px 0 5px 0;
  font-weight: bold;
}
.event-entry-list .newbie-legend .legend-items {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 14px;
}
.event-entry-list .newbie-legend .legend-items .square {
  display: inline-block;
  width: 40px;
  height: 25px;
  background: lightblue;
}
/*# sourceMappingURL=public_event_entries.css.map */