.color-item {
    display: flex;
    width: 42px;
    height: 42px;
    border-radius: 5px;
    border: 1px solid #555;
    align-items: center;
    justify-content: center;
    transition: all ease-in-out 0.3s;
}

.color-item > img {
    width: 24px;
    height: 24px;
    border-radius: 100%;
    border: 1px solid #555;
}

.colors-list {
    display: flex;
    grid-gap: 1rem;
    flex-wrap: wrap;
}

.color-item.active, .color-item:hover {
    border-color: #0474B2;
    transition: all ease-in-out 0.3s;
}

span.selected-color {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 16px;
    color: #555;
}

span.selected-color span.value-color {
    font-size: 14px;
    font-weight: 400;
}

p.title-properties {
    color: #0474B2;
    font-size: 20px;
    font-weight: 500;
    /* margin-bottom: 0; */
    padding-left: 5px;
}