/* color swatches styles */
.amq-swatch {
    width: 30px;
    height: 30px;
    display: inline-block;
    padding: 0;
    cursor: pointer;
    border-radius: 20px
}

/* alle Swatches NACH dem ersten */
.amq-swatch + .amq-swatch {
  margin-inline-start: 10px;
}

.amq-swatch.selected {
    outline: 2px solid #000000;
    
}

button.amq-swatch:focus, button.amq-swatch:hover{
    transition: unset !important;
    border-color: unset;
    box-shadow: none;
}