.filter-shop {
  margin-bottom: 1em; }
  .filter-shop [type=checkbox] {
    --checkbox-size: 24px;
    --checkbox-radius: 4px;
    flex-grow: 0;
    flex-shrink: 0;
    height: calc(var(--checkbox-size) - 4px);
    width: calc(var(--checkbox-size) - 4px);
    position: relative;
    cursor: pointer;
    margin: 0;
    margin-right: 0.5em;
    margin-bottom: 0.2em; }
    .filter-shop [type=checkbox]:before {
      content: '';
      display: block;
      position: absolute;
      background: #eee;
      height: var(--checkbox-size);
      width: var(--checkbox-size);
      pointer-events: none;
      border-radius: var(--checkbox-radius);
      top: 0;
      left: 0;
      transform: translate(-2px, -2px); }
    .filter-shop [type=checkbox]:after {
      content: '';
      display: block;
      position: absolute;
      border: 3px solid var(--color-accent);
      border-top: none;
      border-right: none;
      height: 40%;
      width: 60%;
      top: 4px;
      left: 4px;
      pointer-events: none;
      transition: 0.3s;
      opacity: 0;
      transform: rotate(-45deg); }
    .filter-shop [type=checkbox]:checked:after {
      opacity: 1; }
  .filter-shop__buttons {
    position: sticky;
    bottom: 0.8em;
    background: #fff;
    box-shadow: 0 0 0 0.8em #fff; }

.accordion__item {
  margin-bottom: 1em; }
  .accordion__item-header {
    font-weight: bold;
    margin-bottom: 0.2em; }
  .accordion__item-label {
    display: flex;
    align-items: center;
    margin-bottom: 0.2em; }
    .accordion__item-label span {
      cursor: pointer; }
