#modal {
  width: 80%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background-color: var(--Grey-50);
  display: none;
  max-height: 80vh;
  overflow-y: scroll;
}

#modal.open{
  display: block !important;
}

.modal-head {
  background-color: white;
}

.modal-body-title {
  font-family: "Times New Roman";
  font-size: 24px;
}

#select-all-btn {
  color: var(--Grey-600);
}

.designs{
  width: 90%;
}

.design-checkbox {
  display: none;
}

.design label{
  border-radius: 30rem;
  border: 1px solid var(--Grey-300);
  padding: 5px 15px;
  margin-right: 10px;
  white-space: no-wrap;
  margin-top: 10px;
  cursor: pointer;
  color: var(--Grey-400);
}

.design-checkbox:checked + label{
  color: black;
  border: 1px solid black;
}

#narrow-down{
  width: 100%;
  background: var(--Neutral-Black);
  color: white;
  padding: 15px;
  border-radius: 16px;
}

#clear-all{
  width: 100%;
  color: var(--Grey-600);
}