.sec-status-filter{
  font-family: Helvetica_geo_bold, FiraGO, Arial, sans-serif;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin:0 0 28px;
}
.sec-status-filter__pills{
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:4px;
  border-radius:999px;
  background:#F3F1F2;
}
.sec-status-filter__pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:36px;
  padding:6px 14px;
  border-radius:999px;
  color:#5C5660;
  font-size:14px;
  line-height:1.2;
  text-decoration:none!important;
  transition:background .15s ease,color .15s ease,box-shadow .15s ease;
}
.sec-status-filter__pill:hover{
  color:#A61832;
  background:rgba(255,255,255,.7);
}
.sec-status-filter__pill.is-active{
  background:#A61832;
  color:#fff!important;
  box-shadow:0 4px 12px rgba(166,24,50,.25);
}
.sec-status-filter__count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:22px;
  height:22px;
  padding:0 6px;
  border-radius:999px;
  background:rgba(0,0,0,.08);
  font-size:12px;
  font-weight:600;
}
.sec-status-filter__pill.is-active .sec-status-filter__count{
  background:rgba(255,255,255,.22);
  color:#fff;
}
.sec-status-filter__cal-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:40px;
  padding:0 14px;
  border:1px solid #E8E4E6;
  border-radius:999px;
  background:#fff;
  color:#3A3440;
  cursor:pointer;
  box-shadow:0 1px 4px rgba(23,43,73,.04);
}
.sec-status-filter__cal-icon{color:#A61832;flex:0 0 auto}
.sec-status-filter__cal-select{
  border:0;
  background:transparent;
  color:inherit;
  font:inherit;
  font-size:14px;
  outline:none;
  cursor:pointer;
  max-width:180px;
  appearance:none;
  -webkit-appearance:none;
  padding-right:14px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%236E7686' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right center;
}
@media(max-width:767px){
  .sec-status-filter{
  font-family: Helvetica_geo_bold, FiraGO, Arial, sans-serif;flex-direction:column;align-items:stretch}
  .sec-status-filter__pills{width:100%;justify-content:space-between}
  .sec-status-filter__pill{flex:1;justify-content:center;padding:6px 8px;font-size:13px}
  .sec-status-filter__cal-label{width:100%;justify-content:space-between}
  .sec-status-filter__cal-select{max-width:none;flex:1}
}
/* hide broken empty Elementor taxonomy filter if still present */
.elementor-widget-taxonomy-filter.events-tax-filter{display:none!important}
/* AJAX loading state */
.sec-status-filter.is-loading {
  opacity: .72;
  pointer-events: none;
}
.elementor-widget-loop-grid.sec-filter-loading {
  position: relative;
  opacity: .55;
  pointer-events: none;
  transition: opacity .2s ease;
}
.elementor-widget-loop-grid.sec-filter-loading::after {
  content: '';
  position: absolute;
  inset: 12px 0 auto 50%;
  width: 28px;
  height: 28px;
  margin-left: -14px;
  border: 2px solid rgba(166,24,50,.2);
  border-top-color: #A61832;
  border-radius: 50%;
  animation: sec-filter-spin .7s linear infinite;
  z-index: 5;
}
@keyframes sec-filter-spin {
  to { transform: rotate(360deg); }
}