.select-button {
  padding: 8px 0 8px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: black;
  text-align: center;
  justify-content: center;
  display: flex;
  transition:
    background-color 0.3s,
    transform 0.3s;
  text-decoration: underline;
}

@media (min-width: 769px) {
  .select-button:active {
    transform: scale(0.97);
  }

  .select-button.selected {
    border: 1px solid black;
    background-color: white;
    color: black;
  }
}

@media (max-width: 768px) {
  .select-button {
    font-size: 12px;
    padding: 8px 0 12px 0;
    text-decoration: underline;
  }

  .select-button:active {
    transform: scale(0.97);
  }

  .select-button.selected {
    background-color: black;
    color: white;
    border-color: transparent;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}

.color-select-limited {
  float: right;
  color: #e3e2e0;
  border-radius: 4px;
  padding: 0 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 16px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .color-select-limited {
    margin-left: 8px;
  }

  .color-select-limited > *:nth-of-type(n + 3) {
    display: none;
  }

  .color-select > *:nth-of-type(n + 8) {
    display: none;
  }
}

