.product-colors-container {
    margin-top: 16px;
    height: 45px;
}

.product-colors-label {
    width: 100px;
    margin: 0;
    padding-left: 20px;
    text-align: left;
    color: #666;
    float: left;
    height: 45px;
    padding-top: 5px;
}

.product-colors-list {
    display: flex;
    gap: 8px;
    float: left;
    height: 45px;
    
}

.product-color-item {
    width: 38px;
    height: 38px;
    overflow: hidden;
    border: 2px solid transparent;
    display: inline-flex;
    border-radius: 50%;
    padding: 2px;
}

.product-color-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.product-color-item.is-active {
    border: 2px solid #000;
    cursor: default;
}