/* Interaction layer: fast multi-select without reopening panels. */

.stxsf-panel__actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
  gap:7px;
}

.stxsf-group-reset{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 10px;
  border:1px solid #dfe5e3;
  border-radius:999px;
  background:#fff;
  color:#4d5955;
  font-size:10px;
  font-weight:750;
  line-height:1;
  text-decoration:none;
}

.stxsf-group-reset:hover{
  border-color:#b9d8d9;
  color:#17656b;
}

.stxsf-choice{
  position:relative;
  padding-right:34px;
}

.stxsf-choice__dot{
  position:relative;
  width:16px;
  height:16px;
  border:1px solid #cbd5d2;
  border-radius:5px;
  background:#fff;
  flex:0 0 auto;
}

.stxsf-choice__dot::after{
  content:"";
  position:absolute;
  left:4px;
  top:1px;
  width:5px;
  height:9px;
  border-right:2px solid #fff;
  border-bottom:2px solid #fff;
  opacity:0;
  transform:rotate(45deg);
}

.stxsf-choice.is-active{
  border-color:#9fcfd0;
  background:#edf7f7;
  color:#155f65;
  box-shadow:inset 0 0 0 1px rgba(47,146,155,.08);
}

.stxsf-choice.is-active .stxsf-choice__dot{
  border-color:#2f929b;
  background:#2f929b;
}

.stxsf-choice.is-active .stxsf-choice__dot::after{
  opacity:1;
}

.stxsf-choice[aria-checked="true"]::after{
  content:"Gewählt";
  position:absolute;
  top:50%;
  right:10px;
  color:#2b747a;
  font-size:8px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  transform:translateY(-50%);
}

.stxsf-panel__done{
  display:none;
  width:100%;
  min-height:42px;
  margin-top:12px;
  border:0;
  border-radius:999px;
  background:#111514;
  color:#fff;
  cursor:pointer;
  font-size:12px;
  font-weight:800;
}

.stxsf-widget.is-loading .stxsf-panels{
  opacity:.82;
  transition:opacity .15s ease;
}

.stxsf-widget.is-loading .stxsf-trigger{
  cursor:wait;
}

@media (max-width:840px){
  .stxsf-panel__actions{
    justify-content:flex-start;
  }

  .stxsf-panel__done{
    display:block;
  }
}

@media (max-width:640px){
  .stxsf-panel__header{
    align-items:start;
  }

  .stxsf-panel__actions{
    align-items:flex-end;
    flex-direction:column;
    gap:5px;
  }

  .stxsf-panel__meta,
  .stxsf-group-reset{
    min-height:26px;
    padding:0 8px;
    font-size:9px;
  }

  .stxsf-choice{
    padding-right:28px;
  }

  .stxsf-choice[aria-checked="true"]::after{
    content:"✓";
    right:9px;
    font-size:12px;
  }
}
