/***
Spectrum Colorpicker v1.5.0
https://github.com/bgrins/spectrum
Author: Brian Grinstead
License: MIT
***/

.sp-container {
    position:absolute;
    top:0;
    left:0;
    display:inline-block;
    *display: inline;
    *zoom: 1;
    /* https://github.com/bgrins/spectrum/issues/40 */
    z-index: 9999994;
    overflow: hidden;
}
.sp-container.sp-flat {
    position: relative;
}

/* Fix for * { box-sizing: border-box; } */
.sp-container,
.sp-container * {
    -webkit-box-sizing: content-box;
       -moz-box-sizing: content-box;
            box-sizing: content-box;
}
#colorDialog .checkmark, #color-popup .checkmark {
    display: block;
}
#colorDialog .checkmark:after, #color-popup .checkmark:after {
    display: none;
}
/* http://ansciath.tumblr.com/post/7347495869/css-aspect-ratio */
.sp-top {
  position:relative;
  width: 100%;
  display:inline-block;
}
.sp-top-inner {
   position:absolute;
   top:0;
   left:0;
   bottom:0;
   right:0;
}
.sp-color {
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:20%;
}
.sp-hue {
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    left:84%;
    height: 100%;
}

.sp-clear-enabled .sp-hue {
    top:33px;
    height: 77.5%;
}

.sp-fill {
    padding-top: 80%;
}
.sp-sat, .sp-val {
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
}

.sp-alpha-enabled .sp-top {
    margin-bottom: 18px;
}
.sp-alpha-enabled .sp-alpha {
    display: block;
}
.sp-alpha-handle {
    position:absolute;
    top:-4px;
    bottom: -4px;
    width: 6px;
    left: 50%;
    cursor: pointer;
    border: 1px solid black;
    background: white;
    opacity: .8;
}
.sp-alpha {
    display: none;
    position: absolute;
    bottom: -14px;
    right: 0;
    left: 0;
    height: 8px;
}
.sp-alpha-inner {
    border: solid 1px #333;
}

.sp-clear {
    display: none;
}

.sp-clear.sp-clear-display {
    background-position: center;
}

.sp-clear-enabled .sp-clear {
    display: block;
    position:absolute;
    top:0px;
    right:0;
    bottom:0;
    left:84%;
    height: 28px;
}

/* Don't allow text selection */
.sp-container, .sp-replacer, .sp-preview, .sp-dragger, .sp-slider, .sp-alpha, .sp-clear, .sp-alpha-handle, .sp-container.sp-dragging .sp-input, .sp-container button  {
    -webkit-user-select:none;
    -moz-user-select: -moz-none;
    -o-user-select:none;
    user-select: none;
}

.sp-container.sp-input-disabled .sp-input-container {
    display: none;
}
.sp-container.sp-buttons-disabled .sp-button-container {
    display: none;
}
.sp-container.sp-palette-buttons-disabled .sp-palette-button-container {
    display: none;
}
.sp-palette-only .sp-picker-container {
    display: none;
}
.sp-palette-disabled .sp-palette-container {
    display: none;
}

.sp-initial-disabled .sp-initial {
    display: none;
}

/* Gradients for hue, saturation and value instead of images.  Not pretty... but it works */
.sp-sat {
    background-image: -webkit-gradient(linear,  0 0, 100% 0, from(#FFF), to(rgba(204, 154, 129, 0)));
    background-image: -webkit-linear-gradient(left, #FFF, rgba(204, 154, 129, 0));
    background-image: -moz-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
    background-image: -o-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
    background-image: -ms-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
    background-image: linear-gradient(to right, #fff, rgba(204, 154, 129, 0));
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr=#FFFFFFFF, endColorstr=#00CC9A81)";
    filter : progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr='#FFFFFFFF', endColorstr='#00CC9A81');
}
.sp-val {
    background-image: -webkit-gradient(linear, 0 100%, 0 0, from(#000000), to(rgba(204, 154, 129, 0)));
    background-image: -webkit-linear-gradient(bottom, #000000, rgba(204, 154, 129, 0));
    background-image: -moz-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
    background-image: -o-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
    background-image: -ms-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
    background-image: linear-gradient(to top, #000, rgba(204, 154, 129, 0));
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00CC9A81, endColorstr=#FF000000)";
    filter : progid:DXImageTransform.Microsoft.gradient(startColorstr='#00CC9A81', endColorstr='#FF000000');
}

.sp-hue {
    background: -moz-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
    background: -ms-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
    background: -o-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#ff0000), color-stop(0.17, #ffff00), color-stop(0.33, #00ff00), color-stop(0.5, #00ffff), color-stop(0.67, #0000ff), color-stop(0.83, #ff00ff), to(#ff0000));
    background: -webkit-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
    background: linear-gradient(to bottom, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
}

/* IE filters do not support multiple color stops.
   Generate 6 divs, line them up, and do two color gradients for each.
   Yes, really.
 */
.sp-1 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0000', endColorstr='#ffff00');
}
.sp-2 {
    height:16%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff00', endColorstr='#00ff00');
}
.sp-3 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ff00', endColorstr='#00ffff');
}
.sp-4 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffff', endColorstr='#0000ff');
}
.sp-5 {
    height:16%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0000ff', endColorstr='#ff00ff');
}
.sp-6 {
    height:17%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff00ff', endColorstr='#ff0000');
}

.sp-hidden {
    display: none !important;
}

/* Clearfix hack */
.sp-cf:before, .sp-cf:after { content: ""; display: table; }
.sp-cf:after { clear: both; }
.sp-cf {
    background: #ececec;
     *zoom: 1;
    min-width: 230px !important;
}

/* Mobile devices, make hue slider bigger so it is easier to slide */
@media (max-device-width: 480px) {
    .sp-color { right: 40%; }
    .sp-hue { left: 63%; }
    .sp-fill { padding-top: 60%; }
}
.sp-dragger {
   border-radius: 5px;
   height: 5px;
   width: 5px;
   border: 1px solid #fff;
   background: #000;
   cursor: pointer;
   position:absolute;
   top:0;
   left: 0;
}
.sp-slider {
    position: absolute;
    top:0;
    cursor:pointer;
    height: 3px;
    left: -1px;
    right: -1px;
    border: 1px solid #000;
    background: white;
    opacity: .8;
}

/*
Theme authors:
Here are the basic themeable display options (colors, fonts, global widths).
See http://bgrins.github.io/spectrum/themes/ for instructions.
*/

.sp-container {
    border-radius: 0;
    background-color: #fff;
    border: solid 1px 898989;
    padding: 0;
}
.sp-container, .sp-container button, .sp-container input, .sp-color, .sp-hue, .sp-clear {
    font: normal 12px "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
/*.sp-top {
    margin-bottom: 3px;
}*/
.sp-color, .sp-hue, .sp-clear {
    border: solid 1px #666;
}

/* Input */
.sp-input-container {
    float:right;
    width: 100px;
    margin-bottom: 4px;
}
.sp-initial-disabled  .sp-input-container {
    width: 100%;
}
.sp-input {
   font-size: 12px !important;
   border: 1px inset;
   padding: 4px 5px;
   margin: 0;
   width: 100%;
   background:transparent;
   border-radius: 3px;
   color: #222;
}
.sp-input:focus  {
    border: 1px solid orange;
}
.sp-input.sp-validation-error {
    border: 1px solid red;
    background: #fdd;
}
.sp-picker-container , .sp-palette-container {
    float:left;
    position: relative;
    padding: 0;
    padding-bottom: 290px;
    margin-bottom: -290px;
}
.sp-picker-container {
    width: 240px;
    border-left: solid 1px #fff;
}

/* Palettes */
.sp-palette-container {
    border-right: solid 1px #ccc;
}

.sp-palette-only .sp-palette-container {
    border: 0;
    width:290px;
    padding-left: 2px;
}

.sp-palette .sp-thumb-el {
    display: block;
    position:relative;
    float:left;
    width: 24px;
    height: 15px;
    margin: 3px;
    cursor: pointer;
    border:solid 2px transparent;
}
.sp-palette .sp-thumb-el:hover, .sp-palette .sp-thumb-el.sp-thumb-active {
    border-color: #000;
    text-align: center;
}
.sp-thumb-el {
    position:relative;
}

.sp-thumb-active .icon_check {
    position: relative;
    color: #dedede;
    top: 3px;
    font-weight: bold;
    font-size: 15px;
    left: 0px;
}

/* Initial */
.sp-initial {
    float: left;
    border: solid 1px #333;
}
.sp-initial span {
    width: 30px;
    height: 25px;
    border:none;
    display:block;
    float:left;
    margin:0;
}

.sp-initial .sp-clear-display {
    background-position: center;
}

/* Buttons */
.sp-palette-button-container,
.sp-button-container {
    float: right;
}

/* Replacer (the little preview div that shows up instead of the <input>) */
.sp-replacer {
    margin:0;
    overflow:hidden;
    cursor:pointer;
    padding: 4px;
    display:inline-block;
    *zoom: 1;
    *display: inline;
    border: solid 1px #91765d;
    background: #eee;
    color: #333;
    vertical-align: middle;
}
.sp-replacer:hover, .sp-replacer.sp-active {
    border-color: #F0C49B;
    color: #111;
}
.sp-replacer.sp-disabled {
    cursor:default;
    border-color: silver;
    color: silver;
}
.sp-dd {
    padding: 2px 0;
    height: 16px;
    line-height: 16px;
    float:left;
    font-size:10px;
}
.sp-preview {
    position:relative;
    width:25px;
    height: 20px;
    border: solid 1px #222;
    margin-right: 5px;
    float:left;
    z-index: 0;
}

.sp-palette {
    width: 287px;
    max-width: 287px;
}
.sp-palette .sp-thumb-el {
    width: 24px;
    height: 24px;
    margin:1px 0;
    border: solid 1px #fff;
}

.sp-container {
    padding-bottom:0;
}


/* Buttons: http://hellohappy.org/css3-buttons/ */
.sp-container button {
  background-color: #eeeeee;
  background-image: -webkit-linear-gradient(top, #eeeeee, #cccccc);
  background-image: -moz-linear-gradient(top, #eeeeee, #cccccc);
  background-image: -ms-linear-gradient(top, #eeeeee, #cccccc);
  background-image: -o-linear-gradient(top, #eeeeee, #cccccc);
  background-image: linear-gradient(to bottom, #eeeeee, #cccccc);
  border: 1px solid #ccc;
  border-bottom: 1px solid #bbb;
  border-radius: 3px;
  color: #333;
  font-size: 14px;
  line-height: 1;
  padding: 5px 4px;
  text-align: center;
  text-shadow: 0 1px 0 #eee;
  vertical-align: middle;
}
.sp-container button:hover {
    background-color: #dddddd;
    background-image: -webkit-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: -moz-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: -ms-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: -o-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: linear-gradient(to bottom, #dddddd, #bbbbbb);
    border: 1px solid #bbb;
    border-bottom: 1px solid #999;
    cursor: pointer;
    text-shadow: 0 1px 0 #ddd;
}
.sp-container button:active {
    border: 1px solid #aaa;
    border-bottom: 1px solid #888;
    -webkit-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    -moz-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    -ms-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    -o-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
}
.sp-cancel {
    font-size: 11px;
    color: #d93f3f !important;
    margin:0;
    padding:2px;
    margin-right: 5px;
    vertical-align: middle;
    text-decoration:none;

}
.sp-cancel:hover {
    color: #d93f3f !important;
    text-decoration: underline;
}


.sp-palette span:hover {
    border-color: #000;
}

.sp-preview, .sp-alpha, .sp-thumb-el {
    position:relative;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);
}
.sp-preview-inner, .sp-alpha-inner, .sp-thumb-inner {
    display:block;
    position:absolute;
    top:0;left:0;bottom:0;right:0;
}

.sp-palette .sp-thumb-inner {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    border: 1px solid #cdcdcd;
}

/*.sp-palette .sp-thumb-light.sp-thumb-active .sp-thumb-inner {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIVJREFUeNpiYBhsgJFMffxAXABlN5JruT4Q3wfi/0DsT64h8UD8HmpIPCWG/KemIfOJCUB+Aoacx6EGBZyHBqI+WsDCwuQ9mhxeg2A210Ntfo8klk9sOMijaURm7yc1UP2RNCMbKE9ODK1HM6iegYLkfx8pligC9lCD7KmRof0ZhjQACDAAceovrtpVBRkAAAAASUVORK5CYII=);
}

.sp-palette .sp-thumb-dark.sp-thumb-active .sp-thumb-inner {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAAAMdJREFUOE+tkgsNwzAMRMugEAahEAahEAZhEAqlEAZhEAohEAYh81X2dIm8fKpEspLGvudPOsUYpxE2BIJCroJmEW9qJ+MKaBFhEMNabSy9oIcIPwrB+afvAUFoK4H0tMaQ3XtlrggDhOVVMuT4E5MMG0FBbCEYzjYT7OxLEvIHQLY2zWwQ3D+9luyOQTfKDiFD3iUIfPk8VqrKjgAiSfGFPecrg6HN6m/iBcwiDAo7WiBeawa+Kwh7tZoSCGLMqwlSAzVDhoK+6vH4G0P5wdkAAAAASUVORK5CYII=);
}*/

.sp-clear-display {
    background-repeat:no-repeat;
    background-position: center;
    background-image: url(data:image/gif;base64,R0lGODlhFAAUAPcAAAAAAJmZmZ2dnZ6enqKioqOjo6SkpKWlpaampqenp6ioqKmpqaqqqqurq/Hx8fLy8vT09PX19ff39/j4+Pn5+fr6+vv7+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAP8ALAAAAAAUABQAAAihAP9FoPCvoMGDBy08+EdhQAIJCCMybCDAAYUEARBAlFiQQoMABQhKUJBxY0SPICEYHBnggEmDKAuoPMjS5cGYMxHW3IiT478JJA8M/CjTZ0GgLRekNGpwAsYABHIypcAgQMsITDtWJYBR6NSqMico9cqR6tKfY7GeBCuVwlipDNmefAtTrkSzB1RaIAoXodsABiZAEFB06gIBWC1mLVgBa0AAOw==);
}


/****CardsDirect*****/
/*body {
    background: #f3f3f3;
    margin:10px;
    width:280px;
}*/

.colors .ui-dialog-footer {
    display: none;
}

 .colors.hidden:before {
        display:none;
    }

.colors:before {
    content: '';
    background: transparent;
    display: block;
    position: absolute;
    top: -20px;
    left: 126px;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 30px solid #ececec;
    display: none;
}
.colors {
    padding: 15px !important;
    border-radius: 3px !important;
    background: #ececec !important;
    border: 2px solid #ddd;
}

.colors.ui-dialog .ui-dialog-content {
    padding:0;
 
}

.colors .ui-widget-header {
    background: #ececec!important;
    margin-bottom:0;
    box-shadow: none;
    height:20px;
    height:45px\9;
    line-height: 25px;
    border:none;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ececec', endColorstr='#ececec',GradientType=0 ) !important;
}

.colors .ui-dialog-wrapper {
    background-color: transparent;
}

.colors .ui-dialog-titlebar-close {
    margin-right: -14px;
    text-indent: -999%;
      margin-top: -9px;
    position: absolute;
    z-index: 1;
}

    .colors .ui-dialog-titlebar {
        display: none;
    }

    #colorSwatches .sp-cf, #preconvertedSwatches .sp-cf {
        width: 290px;
    }

.colorUserdropdown {
    height: 175px;
    width: 100%;
    display: none;
}


#colorDialog {
    overflow: hidden;
    padding: 2px;
    /*height: 458px !important;*/
    margin: 0;
   
}

.moreColor {
    float: right;
}

.moreColor .icon_control_point, .moreColor-preconverted .icon_control_point {
    position: relative;
    top: 6px;
    font-size: 16px;
    margin-right: 2px;
    cursor: pointer;
}

#colorDialog .icon-cross3 {
    position: absolute;
    right: 2px;
    z-index: 1;
    font-size: 20px;
    top: 0px;
    cursor: pointer;
}

.colors .ui-dialog-titlebar-close, .colors .ui-dialog-title {
    display: none;
}

.colorPicker h1, .colorPicker h2 {color: #0f0f0f;font-size: 16px !important;text-transform:;text-align: left;text-shadow: 1px 1px 0 #e0e0e0;font-weight: 400;}
.colorPicker h1{
    line-height: 18px;
}
.colorPicker h2 {
    font-size: 14px !important;
    clear: both;
    margin-top: 0px;
    margin-bottom: 1px;
    font-weight: 500;
}
 
.colorPicker h2 span{
  font-size: 13px!important;
  
}

#applyColor {
    width: 130px;
    height: 35px;
    line-height: 35px;
    font-size: 12px;
    background: #007ad9;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    text-align: center;
    float: right;
    margin-top: 5px;
    margin-bottom: 5px;
    letter-spacing: .5px;
} 
.colorPicker p 
{

color: #959595;
font-size: 11px;
margin: 5px 0;
line-height: 13px;
}

#currentColor {
    height: 60px;
    width: 48px;
    float: right;
}
#colorBox {
    float: left;
    width: 40px;
    height:40px;
    background: #6955bc;
    border: 2px solid #fff;
    margin-right:10px;
}

#colorPicker {
    width: 290px;
}
#currentColor p {
    display: none;
}

.showCustomcolors h2, .hideCustomcolors h2 {
    float: left;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 5px;
}

.showCustomcolors .icon_arrow_down, .hideCustomcolors .icon_arrow_up {
    float: left;
    position: relative;
    font-size: 31px;
    top: 0px;
    left: -4px;

}

.border {
    background: url(images/borderColor.jpg) 0 100% repeat-x;
    height: 5px;
    /* display: inline-block; */
    clear: both;
    float: left;
    width: 100%;
    margin-bottom: 5px;
}
.colorButton {
  
    font-size: 12px;
    /* width: 124px; */
    /* border: 1px solid #13499d; */
    /* border-radius: 2px; */
    float: left;
    /* text-align: center; */
    /* padding: 5px 0; */
    /* background: #2e84d6; */
    color: #0f0f0f;
    /* margin: 10px 0; */
    cursor: pointer;
    /* background: #8fd1f0; */
    /* text-shadow: 0px 1px 1px #333; */
    /* height: 30px; */
    line-height: 30px;
    /* box-shadow: 0px 1px 3px -1px #000; */
    /* text-transform: uppercase; */
    /* width: 129px; */
   letter-spacing: .5px;
}

.customcolorButton {
   
    font-size: 12px;
    width: 124px;
    border: 1px solid #13499d;
    border-radius: 2px;
    float: right;
    text-align: center;
    background: #2e84d6;
    color: #fff;
    margin: 10px 0;
    cursor: pointer;
    background: #8fd1f0;
    background: -moz-linear-gradient(top,#8fd1f0 0,#8fd1f0 1%,#43b0e5 1%,#2a7ed5 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#8fd1f0),color-stop(1%,#8fd1f0),color-stop(1%,#43b0e5),color-stop(100%,#2a7ed5));
    background: -webkit-linear-gradient(top,#8fd1f0 0,#8fd1f0 1%,#43b0e5 1%,#2a7ed5 100%);
    background: -o-linear-gradient(top,#8fd1f0 0,#8fd1f0 1%,#43b0e5 1%,#2a7ed5 100%);
    background: -ms-linear-gradient(top,#8fd1f0 0,#8fd1f0 1%,#43b0e5 1%,#2a7ed5 100%);
    background: linear-gradient(to bottom,#90d1f0 3%,#8fd1f0 1%,#43b0e5 1%,#2a7ed5 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8fd1f0',endColorstr='#2a7ed5',GradientType=0);
    height: 30px;
    line-height: 30px;
    box-shadow: 0 1px 3px -1px #000;
    text-transform: uppercase;
    width: 129px;
    letter-spacing: 1.2px;
}

#lessColors {
    float: right;
    font-size: 14px;
    text-decoration: underline;
    position: relative;
    top: 10px;
    margin-right: 11px;
    color: #999;
}

#currentlyUsed .sp-palette-container {
    
    margin: 0;
    padding:0;
    width: auto;
    height: auto;
}
#currentlyUsed ul li {
    display: block;
    float: left;
    width:18px;
    height:18px;
    margin: 0;
    padding: 0;
    border:2px solid #fff;
    cursor: pointer;
}

.hideCustomcolors {
    display: none;
}

#colorSwatches {
  /*  height:290px; */
}

#colorPicker, #colorUser {
    display: block;
}

#colorUser {
    margin-top: 5px;
    float: left;
    width: 286px;
    display: none;
    position: relative;
    left: 15px;
}

#colorUser label {
    float: none;
}

.sp-palette-disabled {
    background: transparent;
}
/********************************/
/* SPECIFY COLOR COLOR PALETTE  
/*******************************/
#colorUser label   
{
	display: inline-block;
	
	color: #3ea4e1;
	font-size: 12px ;
	text-transform: capitalize;
	text-align: left;
	text-shadow: 1px 1px 0 #e0e0e0;
	width: 100px; 
	margin: 5px;
  }
    #colorUser label.rgblabel {
        display: inline-block;
        width: 100%;
    }
#colorUser input {
    margin: 0 10px 10px 5px;
    text-align: center;
    padding-left: 0px;
    text-indent: initial;
}
    #colorUser input#hexCode, #colorUser input#pms {
        width: 90px;
        height: 25px;
    }
    #colorUser input#hexCode, #colorUser input#r,
    #colorUser input#g, #colorUser input#b, #colorUser input#c, #colorUser input#m,
    #colorUser input#y, #colorUser input#k {
        float: left;
        height: 25px;
    }
    #colorUser input#r, #colorUser input#g, #colorUser input#b {
        width: 28px;
        margin-right: -1px;
        height: 25px;
    }
    #colorUser input#c, #colorUser input#m, #colorUser input#y,
    #colorUser input#k {
        width: 28px;
        margin-right: -1px;
        height: 25px;
    }
#colorUser p{clear: both; margin: 5px;}

.sp-palette-row-selection {
    display: none;
}

/*Pre Converted Colors*/
#preconvertedSwatches {
    display: none;
}

.advanced-options {
    margin-top: 15px;
    clear: both;
}

.advanced-options div {
     cursor: pointer;
    display: inline-block;
    margin: 0;
    color: #007ad8;    
}

#convertedOptioncontainer {
    display: none;
    width: 420px;
    background: #fff;
    position: fixed;
    z-index: 100003 !important;
    top: 50%;
    left: 50%;
    /* right: 0px; */
    /* bottom: 0px; */
    /* margin: auto; */
    padding: 10px 20px 20px 20px;
    box-shadow: 0px 4px 10px 1px #333;
    margin-top: -310px;
    margin-left: -210px;
}


#convertedOptioncontainer h4 {
    text-align: center;
    margin: 12px 0 0px 0;
    font-weight: 500;
    color: #0f0f0f;
    font-size: 14px;
}

#convertedOptioncontainer .icon_close {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 21px;
    cursor: pointer;
}

.colorOptioncontainer {
    width: 187px;
    height: 360px;
    background: #fff;
    margin: 15px 10px 15px 10px; 
    border: 1px solid #ddd;
    float: left; 
    box-shadow: 0px 4px 8px -4px #999;
	padding-bottom: 10px;   
}

.colorOptioncontainer h4 {
    text-align: center;
}

.options-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10020;
    display: none;
}

.backTocolors {
    clear: both;
    /* text-align: right; */
    display: inline-block;
    float: right;
    margin-right: 20px;
    margin-top: 0px;
    /* text-decoration: underline; */
    cursor: pointer;
    color: #007ad8;
    font-weight: 500;
    font-size: 15px;
}

.colorOptioncontainer .imgWrap {
    width: 145px;
    /* height: 140px; */
    margin: auto;
    margin-top: 20px;
}

.colorOptioncontainer p {
    text-align: center;
    padding: 15px;
    
    line-height: 1.3;
    padding-top: 5px;
    padding-bottom: 5px;
}

.full-color p {
    margin-top: 5px;
    margin-bottom: 11px;
}

.colorOptioncontainer .colorPrice {
    text-align: center;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 400;
    color: #000;
}

.colorOptionbutton {

    font-size: 12px;
    width: 124px;
    text-align: center;
    color: #fff;
    margin: auto;
    cursor: pointer;
    background: #007ad8;
    height: 35px;
    line-height: 35px;
    width: 160px;
    letter-spacing: 1.2px;
}

#palette2, #fullColor {
    display: none;
}

#convertedOptioncontainer h3 {
    text-align: left;
    margin: 10px 0 0 0;
    color: #0f0f0f;
    font-weight: 500;
}

.request-assistance {
    display: none;
}

.request-assistance h4 {
    margin-top: 32px !important; 
    width: 105px;
    margin: auto !important;
    margin-top: 46px;
    /* display: block; */
    position: relative;
    top: 9px;
}

.request-assistance p {
    margin-top: 17px;
    margin-bottom: 22px;
}

.request-help-container {
    height: 350px;
    display: none;
}

.request-help-container p {
    font-size: 13px;
    line-height: 1.5;
    width: 300px;
}

.request-help-container textarea {
    padding: 10px;
    resize: none;
    font-size: 12px;
    width: 275px;
}

.request-help-container .cancel-button {
    float: left;
    width: 150px;
    text-align: center;
    height: 32px;
    line-height: 32px;
    border: 2px solid #000;
    color: #000;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.request-help-container .save-instructions {
    float: left;
    width: 200px;
    text-align: center;
    height: 35px;
    line-height: 35px;
    /* border: 2px solid #fff; */
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    background: #007ad9;
    margin-left: 10px;
}

.ui-widget-overlay {
    background: #515151 !important;
}