#colorPicker
{
    display: inline-block;
    position: relative;
    clear: both;
}

#colorPicker .track {
    background:     #EFEFEF url(./images/text-color.png) no-repeat 50% 50%;
    height:         1.5em;
    width:          1.5em;
    padding:        0;
    position:       absolute;
    cursor:         crosshair;
    float:          left;
    left:           calc( -0.75em + 3.25em);
    top:            calc( -0.75em + 0.75em);
    /* display:        none; */
    border: none;
    z-index:        10;
    -webkit-border-radius: 150px;
    -moz-border-radius: 150px;
    border-radius: 150px !important;
    transition: all ease-in-out 0.25s;
}
#colorPicker[data-picker-active="1"] .track {
    left:           calc( -75px + 0.75em);
    top:            calc( -75px + 0.75em);
    display: block;
    height:         150px;
    width:          150px;
}
#colorPicker .track canvas {
    width: 100%;
    height: 100%;
}

#colorPicker .color {
    width:          6.5em;
    height:         1.5em;
    padding:        0;
    border:         1px solid #ccc;
    display:        block;
    position:       relative;
    z-index:        11;
    background-color: #EFEFEF;
    -webkit-border-radius: 27px;
    -moz-border-radius: 27px;
    border-radius: 27px !important;
    cursor: pointer;
    transition: width ease-in-out 0.25s;
}
#colorPicker[data-picker-active="1"] .color {
    width:          1.5em;
    height:         1.5em;
}

#colorPicker .colorInner {
    width:          100%;
    height:         100%;
    -webkit-border-radius: 27px;
    -moz-border-radius: 27px;
    border-radius: 27px !important;
}

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

#colorPicker .dropdown li{
    height: 25px;
    cursor: pointer;
}
