.custom-checkbox {
  display: grid;
  grid-auto-flow: row;
}

  .custom-checkbox > h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .custom-checkbox__search {
    margin-bottom: 16px;
    height: 44px;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    border: 1px solid rgba(104, 104, 104, 0.2);
    border-radius: 4px;
    gap: 8px;
  }

  .custom-checkbox__search > input {
      font-size: 16px;
    }

  .custom-checkbox__search > svg {
      width: 17px;
      height: 17px;
      fill: rgba(89, 53, 140, 1);
    }

  .custom-checkbox__items {
    display: grid;
    grid-auto-flow: row;
    gap: 16px;
  }

  .custom-checkbox__option {
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    justify-content: start;
    gap: 12px;
    font-size: 16px;
  }

  .custom-checkbox__checkbox {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(89, 53, 140, 1);
    border-radius: 4px;
    background-color: transparent;
    display: grid;
    align-items: center;
    justify-content: center;
  }

  .custom-checkbox__checkbox-uni {
      border-radius: 50%;
    }

  .custom-checkbox__selected {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background: rgba(89, 53, 140, 1);
  }

  .custom-checkbox__selected-uni {
      border-radius: 50%;
    }

.datePicker {
  width: 312px;
  padding: 16px;
  border-radius: 4px;
}

  .datePicker__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }

  .datePicker__month {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: capitalize;
    user-select: none;
  }

  .datePicker__navBtn {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 4px 8px;
    font-size: 16px;
  }

  .datePicker__navBtn:hover {
      opacity: 0.7;
    }

  .datePicker__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
  }

  .datePicker__day {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    transition: background 0.15s ease;
    color: #282828;
    font-size: 16px;
  }

  .datePicker__day--empty {
      background: transparent;
      cursor: default;
      pointer-events: none;
    }

  .datePicker__day--weekend {
      color: rgba(40, 40, 40, 0.7);
    }

  .datePicker__day--start,
    .datePicker__day--end {
      background: #a77ccd;
      color: #fff;
      outline: 1px solid rgba(105, 105, 105, 0.2);
    }

  .datePicker__day--start.datePicker__day--end {
      background: #59358c;
    }

  .datePicker__day--future {
      color: rgba(104, 104, 104, 0.5);
      cursor: default;
      pointer-events: none;
    }

  .datePicker__day--in-range {
      background: rgba(167, 124, 205, 0.7);
      outline: 1px solid rgba(105, 105, 105, 0.2);
    }

  .datePicker__footer {
    margin-top: 8px;
  }

  .datePicker__footer > button {
      width: 100%;
      background: none;
      height: 44px;
      display: grid;
      place-content: center;
      font-size: 16px;
      line-height: 1.1;
    }


/*# sourceMappingURL=pages-Materials-components-FiltersModal.css.map*/