.etp-events-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #DEDEDE;
  padding-bottom: 24px;
}

.etp-events-header h2 {
  color: #172651;
  font-size: 51px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0;
  padding-bottom: 0;
}

.etp-events-filters {
  display: flex;
  align-items: center;
  gap: 24px;
}

.etp-events-filters .dropdown {
  position: relative;
}

.etp-events-filters .dropbtn {
  background-color: #fff;
  position: relative;
  color: #172651;
  padding: 10px 15px;
  padding-right: 45px;
  font-size: 15px;
  font-weight: 800;
  border: solid 1px #dedede;
  border-radius: 11px;
  cursor: pointer;
  min-width: 225px;
  text-align: left;
}

.etp-events-filters .dropbtn:after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 15px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s;
}

.etp-events-filters .dropdown.is-active .dropbtn:after {
  transform: translateY(-50%) rotate(180deg);
}

.etp-events-filters .dropdown-content {
  position: absolute;
  background-color: #fff;
  min-width: 225px;
  border-radius: 11px;
  box-shadow: 0px 57px 43px 0px rgba(0, 0, 0, 0.06), 0px 12.732px 9.605px 0px rgba(0, 0, 0, 0.04), 0px 3.791px 2.86px 0px rgba(0, 0, 0, 0.02);
  z-index: 1;
  top: calc(100% + 5px);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.2s;
}

.etp-events-filters .dropdown-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.etp-events-filters .dropdown-content li {
  display: block;
}

.etp-events-filters .dropdown-content li.separator {
  font-size: 12px;
  color: #71717a;
  position: relative;
  text-align: center;
  margin-top: 5px;
}

.etp-events-filters .dropdown-content li.separator:before {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: #dedede;
  transform: translateY(-50%);
}

.etp-events-filters .dropdown-content li.separator span {
  background-color: #fff;
  position: relative;
  display: inline-block;
  line-height: 1;
  padding: 10px;
}

.etp-events-filters .dropdown-content a {
  position: relative;
  color: #172651;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  font-weight: 600;
  padding-left: 45px;
  transition: all 0.2s;
}

.etp-events-filters .dropdown-content a:hover {
  background-color: #f5f5f7;
}

.etp-events-filters .dropdown-content a.checked {
  background-color: #f5f5f7;
}

.etp-events-filters .dropdown-content a.checked:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 15px;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.etp-events-filters .dropdown.is-active .dropdown-content {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.etp-events-grid {
  margin: 0 auto;
  max-width: 1400px;
}

.etp-events-grid-wrapper{
  min-height: 250px;
  position: relative;
}

.etp-events-grid-loader{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #172651;
}

.etp-month-heading {
  font-size: 38px;
  margin-top: 48px;
  margin-bottom: 20px;
  color: #172651;
  font-weight: 500;
}

.etp-month-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.etp-event-card {
  position: relative;
  display: block;
  width: calc(25% - 18px);
  margin-bottom: 0;
  padding: 25px;
  text-align: center;
  border-radius: 8px;
  color: inherit;
  background-color: inherit;
  overflow: hidden;
}

.etp-event-card.sold-out{
  filter: grayscale(1);
}

.etp-event-card.sold-out::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #81818173;
  background-image: url(../img/sold-out.svg);
  z-index: 1;
  background-repeat: no-repeat;
  background-size: 100px 100px;
  background-position: center;
}

.etp-event-card img {
  max-width: 100%;
  height: auto;
  margin: 5px 0;
  max-height: 100px;
}

.etp-event-details p {
  margin: 0;
  padding: 0;
}

.etp-event-location {
  font-size: 32px;
  font-family: 'Bebas Neue';
  line-height: 1;
}

.etp-event-datetime{
  font-size: 16px;
  font-weight: 600;
}

.etp-away-team-name{
  font-size: 22px;
  line-height: 1;
  font-family: 'Bebas Neue';
}

.etp-stadium-name{
  font-size: 12px;
  font-weight: 600;
}

.etp-events-grid-wrapper.loading .etp-events-grid-loader{
  opacity: 0.6;
  pointer-events: all;
}

.selected-filters{
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.selected-filters p{
  font-size: 16px;
  color: #172651;
  font-weight: 800;
}

.selected-filters ul{
  list-style: none;
  padding: 0 !important;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.selected-filters li{
  display: inline-block;
  background-color: #fff;
  padding: 5px 15px;
  border-radius: 11px;
  font-size: 14px;
  color: #172651;
  font-weight: 700;
  position: relative;
  border: solid 1px #dedede;
}

.selected-filters li i{
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  display: inline-block;
  margin-left: 10px;
}

.no-events{
  font-size: 18px;
  font-family: 'Open Sans';
  line-height: 1.75;
  color: #16264f;
}

.alert {
  position: relative;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .25rem;
}

.alert-error{
  background-color: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
}

@media (max-width: 1200px){
  .etp-event-card{
    width: calc(33.3333% - 18px);
  }
}


@media (max-width: 992px) {
  .etp-event-card {
    width: calc(50% - 18px);
  }

  .etp-events-header{
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .etp-event-card {
    width: 100%;
  }

  .etp-events-filters {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}
