/* COLORPICKER 1 EXAMPLE */
.colorPicker[id*="colorPicker"]
{
    width: 30px;
    height: 30px;
    right: calc(13%);
    top: 19px;
    position: absolute;
}

.colorPicker[id*="colorPicker"] .track {
    background:     rgba(0,0,0,0) url(../assets/text-color.png) no-repeat 50% 50%;
    height:         150px;
    width:          150px;
    padding:        10px;
    position:       absolute;
    cursor:         crosshair;
    float:          left;
    left:           -71px;
    top:            -71px;
    display:        none;
    z-index:        10;
    -webkit-border-radius: 150px;
    -moz-border-radius: 150px;
    border-radius: 150px;

}

.colorPicker[id*="colorPicker"] .color {
    width:          25px;
    height:         25px;
    display:        block;
    position:       relative;
    z-index:        11;
    background-color: #EFEFEF;
    -webkit-border-radius: 27px;
    -moz-border-radius: 27px;
    border-radius: 27px;
    cursor: pointer;
}

.colorPicker[id*="colorPicker"] .colorInner {
    position: absolute;
    bottom: 0px;
    width:          25px;
    height:         25px;
    -webkit-border-radius: 27px;
    -moz-border-radius: 27px;
    border-radius: 27px;
}

.colorPicker[id*="colorPicker"] .dropdown {
    list-style: none;
    display: none;
    width: 27px;
    position: absolute;
    top: 28px;
    border: 1px solid #ccc;
    left: 0;
    z-index: 1000;
}

.colorPicker[id*="colorPicker"] .dropdown li{
    height: 25px;
    cursor: pointer;
}
