ul.decors {
    display: flex;
    list-style:none;
    margin: 0;
    line-height: 32px;
    padding:0;
}

/* Dekor-Thumbnail inkl. Preview (ausgeblendet) */
.decor{
    width: 32px;
    height: 32px;
    box-shadow: inset 0 0 0 1px transparent;
    float: left;
    background: #fafafa;
    border-radius: 50%;
    position: relative;
    margin-bottom: 0;
    margin-right: 10px;
    z-index:998;
}

/* Rahmen um Dekor-Thumbnail */
.decor.active, .decor:hover {
    box-shadow: inset 0 0 0 2px #333;
    cursor: pointer;
}

/* Dekor-Thumbnail */
.vn-color {
    width: 22px;;
    height: 22px;;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 5px;
    background-position: 50% 50%;
}

/* Dekor-Preview */
.decor-viewer {
    display: none;
}
.decor:hover .decor-viewer {
    height: 141px;
    width: 141px;
    background-color: #fff;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 25%);
    position: absolute;
    top: -146px;
    border-radius: 50%;
    border: 5px solid white;
    transform: translate(-50%, 0%);
    left: 50%;
    display: block;
    background-position: 50% 50%;
}