
form {
  /*padding: 4px;*/
  padding: 0;
}

input {
  padding: 8px;
  font-size: 1rem;
  border: 1px solid #d6bfa9;
  border-radius: 5px;
  /* width: 60px; */
  /*text-align: center;*/
}

button, a.icon, a.button {
    font-size: 1.5rem;
    padding: 4px 8px 4px 8px;
    background-color: #d6bfa9;
    border: 1px solid black;
    color: black;
    cursor: pointer;
    pointer-events: none;
    opacity: 0.6;
    display: flex;
    flex-direction: row;
    gap: 4px;
    border-radius: 28px;
}

button:hover, a.icon:hover, a.button:hover {
    background-color: #c0a78f;
}

a.icon, button.icon, a.button {
    background-color: #d6bfa9;
    border: 1px solid black;
    /* width: 32px; */
    /* height: 32px; */
    cursor: pointer;
    pointer-events: none;
    opacity: 0.6;
    padding: 1px 3px 1px 3px;
}

button.enabled, a.enabled {
    opacity: 1;
    pointer-events: auto;
}

label,.label {
    font-size: 1rem;
    white-space: nowrap;
    display: block;
}

.choices {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.choices label {
    padding: 8px 15px;
    border: 1px solid #d6bfa9;
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
    font-size: 1rem;
    color: #333;
}

.choices input[type="radio"] {
    display: none;
}

.choices input[type="radio"]:checked + label {
    background-color: #d6bfa9;
    /*color: white;*/
}

.choices-details {
    font-size: 0.9rem;
    margin-bottom: 0;
    max-height: 100px;
    overflow: hidden;
    display: none;
}

.quantity { width: 18px; }
