.color-edit-picker .preview-color-input{
    width: 53px;
    height: 53px;
    background: #000000;
    border: 1px solid #000000;
    border-radius: 50%;
    cursor: pointer;
}

.color-edit-picker input[type=color]{
    display: none;
}

.colorPicker-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 180px;
    border: 1px solid #ccc;
    background: white;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 6px;
}

.colorPicker-preview {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid #aaa;
}

.colorPicker-popup {
    position: absolute;
    left: 50%;
    height: fit-content;
    bottom: 10px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
    padding: 10px;
    display: none;
    z-index: 999999999;
}

.colorPicker-title {
    font-size: 13px;
    margin-bottom: 8px;
    color: #666;
}

.colorPicker-row {
    display: grid;
    grid-template-columns: repeat(12,20px);
    gap: 1px;
    margin-bottom: 7px;
}

.colorPicker-color {
    width: 20px;
    height: 17px;
    border-radius: 0px;
    border: 1px solid #bbb;
    cursor: pointer;
    padding: 0;
}

.colorPicker-color.colorPicker-color-transparent{
    background: linear-gradient(135deg, transparent 45%, #888 45%, #888 55%, transparent 55%), #fff;
}

.colorPicker-color.active {
    outline: 3px solid #2196F3;
}

.colorPicker-custom {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    background: #fafafa;
}

.colorPicker-footer {
    margin-top: 15px;
    text-align: right;
}

.colorPicker-select {
    cursor: pointer;
}

.colorPicker-select:hover {
    background: #1259a8;
}

.colorPicker-input{
    width: 50px;
    padding: 0;
    border-radius: 0;
    height: 97%;
    margin-right: 0px;
}

.colorPicker-input-text{
    padding: 0px 5px;
    font-size: 14px;
    line-height: 1;
    height: 97%;
    width: 75px;
    border-radius: 0;
    margin-left: -1px;
}