/*
IMPORTANT:
In order to preserve the uniform grid appearance, all cell styles need to have padding, margin and border sizes.
No built-in (selected, editable, highlight, flashing, invalid, loading, :focus) or user-specified CSS
classes should alter those!
*/

.slick-header.ui-state-default, .slick-headerrow.ui-state-default {
  width: 100%;
  overflow: hidden;
  border-left: 0px !important;
}

.slick-header-columns, .slick-headerrow-columns {
  position: relative;
  white-space: nowrap;
  cursor: default;
  overflow: hidden;
}

.slick-header-column.ui-state-default {
  position: relative;
  display: inline-block;
  /*box-sizing: content-box !important; */
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  height: 16px;
  line-height: 16px;
  margin: 0;
  padding: 4px;
  border-right: 1px solid silver;
  border-left: 0px !important;
  border-top: 0px !important;
  border-bottom: 0px !important;
  float: left;
}

.slick-headerrow-column.ui-state-default {
  padding: 4px;
}

.slick-header-column-sorted {
  font-style: italic;
}

.slick-sort-indicator {
  display: inline-block;
  width: 8px;
  height: 5px;
  margin-left: 4px;
  margin-top: 6px;
  float: left;
}

.slick-sort-indicator-desc {
  background: url(images/sort-desc.gif);
}

.slick-sort-indicator-asc {
  background: url(images/sort-asc.gif);
}

.slick-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  cursor: col-resize;
  width: 4px;
  right: 0px;
  top: 0;
  height: 100%;
}

.slick-sortable-placeholder {
  background: silver;
}

.grid-canvas {
  position: relative;
  outline: 0;
}

.slick-row.ui-widget-content, .slick-row.ui-state-active {
  position: absolute;
  border: 0px;
  width: 100%;
}

.slick-cell, .slick-headerrow-column {
  position: absolute;
  border: 1px solid transparent;
  border-right: 1px dotted silver;
  border-bottom-color: silver;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  vertical-align: middle;
  z-index: 1;
  padding: 1px 2px 2px 1px;
  margin: 0;
  white-space: nowrap;
  cursor: default;
}

.slick-group {
}

.slick-group-toggle {
  display: inline-block;
}

.slick-cell.highlighted {
  background: lightskyblue;
  background: rgba(0, 0, 255, 0.2);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.slick-cell.flashing {
  border: 1px solid red !important;
}

.slick-cell.editable {
  z-index: 11;
  overflow: visible;
  background: white;
  border-color: black;
  border-style: solid;
}

.slick-cell:focus {
  outline: none;
}

.slick-reorder-proxy {
  display: inline-block;
  background: blue;
  opacity: 0.15;
  filter: alpha(opacity = 15);
  cursor: move;
}

.slick-reorder-guide {
  display: inline-block;
  height: 2px;
  background: blue;
  opacity: 0.7;
  filter: alpha(opacity = 70);
}

.slick-selection {
  z-index: 10;
  position: absolute;
  border: 2px dashed black;
}

/***
Spectrum Colorpicker v1.3.4
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;
}

/* 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-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%);
}

/* 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 { *zoom: 1; }

/* 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: #ECECEC;
    border: solid 1px #f0c49B;
    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: 10px;
    padding-bottom: 300px;
    margin-bottom: -290px;
}
.sp-picker-container
{
    width: 172px;
    border-left: solid 1px #fff;
}

/* Palettes */
.sp-palette-container
{
    border-right: solid 1px #ccc;
}

.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: orange;
}
.sp-thumb-el
{
    position:relative;
}

/* 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-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: 220px;
    max-width: 220px;
}
.sp-palette .sp-thumb-el
{
    width:16px;
    height: 16px;
    margin:2px 1px;
    border: solid 1px #d0d0d0;
}

.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, .sp-palette span.sp-thumb-active
{
    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;
}

.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==);
}

/* CSS radio button */
input[type=radio].css-radio {
	position:absolute; z-index:-1000; left:-1000px; overflow: hidden; clip: rect(0 0 0 0); height:1px; width:1px; margin:-1px; padding:0; border:0;
}

input[type=radio].css-radio + label.css-radio-label {
	padding-left:24px;
	height:18px; 
	display:inline-block;
	line-height:18px;
	background-repeat:no-repeat;
	background-position: 0 0;
	font-size:15px;
	vertical-align: middle;
	cursor: pointer;

}

input[type=radio].css-radio:checked + label.css-radio-label {
	background-position: 0 -18px;
}
label.css-radio-label {
	background-image:url(images/css_radio_label_background.svg);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* CSS check box */
input[type=checkbox].css-checkbox {
	display:none;
}

input[type=checkbox].css-checkbox + label.css-label {
	padding-left:24px;
	height:18px; 
	display:inline-block;
	line-height:18px;
	background-repeat:no-repeat;
	background-position: 0 0;
	font-size:15px;
	vertical-align: middle;
	cursor: pointer;
}

input[type=checkbox].css-checkbox:checked + label.css-label {
	background-position: 0 -18px;
}

label.css-label {
	/*http://csscheckbox.com/checkboxes/elegant.png*/
	background-image:url(images/css_checkbox_label_background.svg);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

label.css-label.disabled {
	color: silver;
	cursor: default !important;
}

/* END of CSS check box */

/*.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-bottom, .ui-corner-right, .ui-corner-br .ui-corner-tl, .ui-corner-tr {
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-top-right-radius: 0px;
	border-top-left-radius: 0px;
}*/

.ui-accordion .ui-accordion-header {
	padding: 7px;
	outline: 0;
}

.ui-dialog-titlebar button.ui-button {	
	display: none;
}

.ui-dialog-buttonpane {
	border: none;
	padding: 0px 0px 0px 0px;
}

.ui-dialog .ui-dialog-buttonpane {
	margin-top: 0px;
}

.ui-dialog .ui-dialog-buttonpane button {
	margin: 0px 0px 0px 10px;
}

#form {
	position: relative;
	/*border: 1px solid;*/
	width: 900px;
	height: 600px;
}

#form .transition,
#form .transition * {
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

#form_loading {
	position: absolute;
	/*border: 1px solid;*/
	width: 100%;
	height: 100%;
	z-index: 200;
	opacity: 1;
	border-radius: 6px;
}

#form_loading div {
	margin: auto;
	position: absolute;
	top: 0; left: 0; bottom: 0; right: 0;
	width: 100%;
	text-align: center;
	height: 30px;
	font-size: 26px;
	/*color: #3488BF;*/
}

/*#form div {
	#border: 1px solid;
}*/

.Absolute-Center {
	width: 90%;
	margin: auto;
	position: absolute;
	top: 50%; left: 50%;
	-webkit-transform: translate(-50%,-50%);
	  -ms-transform: translate(-50%,-50%);
		  transform: translate(-50%,-50%);
}

.Absolute-Center div {
	margin-bottom: 0px;
}

.Absolute-Center .css-label {
	font-size: 14px !important;
}

#form #form_left {
	position: absolute;
	width: 490px;
	height: 600px;
	top: -2px;
}

#form #form_right {
	position: absolute;
	margin: 0 0 0 500px;
	width: 400px;
	height: 100%;
}

#visualize_btn {
	width: 100%;
	height: 70px;
	font-size: 20px;
	position: absolute;
	font-size: x-large;
	color: rgba(0,0,0,0.7);
}

#visualize_btn {
	background: #f1cfcd url("../img/visualize_bg_default.png") 50% 50% repeat-x;
}

#visualize_btn:hover {
	background: #f7e2e1 url("../img/visualize_bg_hover.png") 50% 50% repeat-x;
}

#visualize_btn:active {
	background: #e19691 url("../img/visualize_bg_active.png") 50% 50% repeat-x;
}

#mode_row {
	position: absolute;
	top: 74px;
}

#mode_row button {
	position: absolute;
	height: 30px;
	font-size: 14px;
	width: 198px;
	/*background-image: none;*/
}

#mode_row button span,
.edit-mode-panel button span,
#zoom_edit_mode_btn {
	text-align: center;
}

#mode_row #edit_view_btn {
	left: 202px;
}

#mode_row button.ui-state-disabled{ /*redefine disabled state with active state from jquery-ui.css*/
	border: 1px solid #2694e8;
	background: #3baae3 url("images/css/vertical_line.png") 50% 50% repeat-x;
	font-weight: bold;
	color: #ffffff;
	opacity: 1;
}

.edit-mode-panel {
	position: relative;
	text-align: center;
	top: 550px;
	z-index: 100;
	/* padding: 5px 0;
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 0 0 6px 6px; */
}

#dialog-edit-mode-zoomed .edit-mode-panel {
	top: 0px;
	margin-bottom: -40px;
	margin-top: 15px;
	z-index: auto;
}

#editModeZoomedCanvasContainer,
#editModeZoomedCanvasContainer canvas {
	width: 520px;
	height: 520px;
	border-radius: 6px;
}

.edit-mode-panel > div {
	display: inline-block;
}

.edit-mode-panel button,
#zoom_edit_mode_btn {
	height: 30px;
	font-size: 14px;
}

.edit-mode-panel #clear_selection_btn {
	width: 100px;
}

.edit-mode-panel .editModeColorsEditor {
	width: 48px;
	border-radius: 6px;
}

#zoom_edit_mode_btn {
	position: absolute;
	top: 550px;
	z-index: 100;
	left: 365px;
	width: 30px;
}

#zoom_edit_mode_btn span {
	padding: 2px;
}

#zoom_edit_mode_btn img {
	width: 100%;
}

.tagulCloud {
	position: absolute;
	top: 102px;
}

#tagulEditCloud {
	display: none; /* by default */
}

.tagulCloud canvas,
.tagulCloud div {
	width: 399px;
	height: 490px;
	border-radius: 6px;
}

.tagulCloud canvas:first-child { /*first child is used because fabricjs uses 2 canvases: upper and lower where lower is ther first one*/
	margin-top: 5px;
	border: 1px solid #C5DBEC;
	background-image: url("images/css/transparent.png");
}

#print_row {
	position: absolute;
	top: 476px;
	margin-top: 5px;
}

#print_row button {
	position: absolute;
	height: 40px;
	font-size: 14px;
	white-space: nowrap;
	text-align: left;
}

#print_row img {
	width: 26px;
	padding: 5px;
	vertical-align: middle;
}

#print_row button span {
	padding: 0px;
	padding-top: 1px;
}

#print_row #shop_btn {
	width: 309px;
}

#print_row #print_btn {
	left: 315px;
	width: 85px;
}

#form_right_bottom_row {
	position: absolute;
	top: 520px;
	margin-top: 5px;
}

#save_btn, #duplicate_btn, #delete_btn {
	position: absolute;
	height: 75px;
}

#save_btn {
	width: 218px;
}

#save_btn img {
	width: 48px;
	height: 48px;
}

#save_btn img,
#form .btn-small-with-image img {
	margin-right: 3px;
	vertical-align: middle;
}

#load_from_text_btn img {
	width: 18px;
	height: 18px;
	margin: -1px 7px 0px -4px;
}

/*#load_from_text_btn span {
	line-height: 20px;
}*/

/*#tags_grid_bottom button img {
	width: 14px;
	height: 12px;
	vertical-align: middle;
	margin: -3px 5px 0px -5px;
}

#tags_grid_bottom button#web_options_btn img {
	height: 14px;
}*/

#web_options_btn {
	position: absolute;
	width: 120px;
	left: 361px;
}

/*#tags_grid_bottom button span {
	line-height: 16px;
}*/

#duplicate_btn {
	width: 85px;
	left: 224px
}

#delete_btn {
	width: 85px;
	left: 315px
}

.ui-tooltip {
	font: bold 14px "Helvetica Neue", Sans-Serif;
	border: none;
}

.form_header {
	color: #2E6E9E;
	font-family: Lucida Grande,Lucida Sans,Arial,sans-serif;
	font-weight: normal;
	font-size: 20px;
	margin-right: 10px;
	margin-left: 5px;
}

#cloud_name {
	position: relative;
	height: 24px;
	margin: 0px 0px 5px 0px;
}

#cloud_name_header {
	position: absolute;
	margin: 0px;
	width: 130px;
}

#cloud_name_input {
	/*position: absolute;
	left: 70px;
	margin: 0px;*/
	width: 350px;
	font-size: 16px;
	border-radius: 6px;
	border: 1px solid #ddd;
	padding-left: 5px;
}

#accordion .ui-accordion-header {
	text-align: center;
	line-height: 22px;
}

#accordion .ui-accordion-content {
	padding: 5px;
	/*height: 295px;*/
}

/** TAGS GRID STYLES **/
#tagsGrid {
	width: 480px;
	height: 295px;
	border-bottom: 1px solid rgb(200, 200, 200);
}

/*#tagsGrid .slick-viewport {
	border-left: 1px solid rgb(200, 200, 200);
}*/

#tagsGrid .slick-header-columns {
	font-size: 13px;
	height: 25px;
}

#tagsGrid .slick-viewport {
	font-size: 13px;
}

#tagsGrid input.editor-text {
	width: 100%;
	height: 100%;
	border: 0;
	margin: 0;
	background: transparent;
	outline: 0;
	padding: 0;
}
#tagsGrid .slick-row .selected {
	background: rgb(228, 241, 251);
}

#tagsGrid .slick-header-column {
	text-overflow: clip;
}

#tagsGrid .slick-sort-indicator {
	margin-top: 0px;
	float: none;
}

#tagsGrid .l5 {
	text-align: center;
}

/** TAGS GRID COLOR PICKER STYLES **/

/*#tagsGrid .slick-cell {
	overflow: hidden;
}*/

#tagsGrid .sp-replacer {
	border: none;
	background: none;
	padding: 0px;
}

#tagsGrid .sp-preview {
	width: 36px;
	height: 19px;
	margin-right: 2px;
}

.sp-container {
	z-index: 1000;
}

.tagsGrid .sp-container {
	margin-left: 50px;
	margin-top: -10px;
}

.tagsGrid .sp-picker-container {
	width: 150px;
	padding: 5px 5px 290px;
}

.tagsGrid  .sp-clear {
	height: 24px;
}

.tagsGrid .sp-hue {
	top: 30px;
	height: 90px;
}

.tagsGrid .sp-cancel {
	visibility: hidden;
}

.tagsGrid .sp-input {
	width: 60%;
}

.tagsGrid .sp-button-container.sp-cf {
	margin-top: -31px;
}

/** COMBOBOX STYLES **/
ul.ui-autocomplete {
	width: 150px;
	max-height: 200px;
	overflow: scroll;
	overflow-x: hidden;
}

ul.ui-autocomplete  li{
	font-size: 12px;
}

.ui-autocomplete-input {
	width: 70px;
}

.custom-combobox-toggle {
	width: 10px;
	height: 18px;
	margin-top: -2px;
}

#form .long-text-cell {
	overflow: hidden;
	text-overflow: ellipsis;
}


/** END OF TAGS GRID STYLES **/

#tags_grid_top {
	width: 600px;
	position: relative;
	height: 30px;
}

#tags_grid_top button {
	position: absolute;
}

#delete_tag_btn {
	left: 207px;
}

#add_tag_btn {
	left: 130px;
}

#form .btn-small-with-image {
	height: 26px;
	font-size: 12px;
	margin-bottom: 5px;
	white-space: nowrap;
}

#form .btn-small-with-image span {
	padding: 0px 10px 0px 10px;
	line-height: 20px;
}

#form .btn-small-with-image img {
	margin: -2px 5px 0px -2px;
	max-width: 17px;
	max-height: 17px;
}

#clear_tags_btn {
	position: absolute;
	left: 380px;
	/*width: 100px;*/
}

#form .ui-dialog {
	font-size: 14px;
}

#form .ui-dialog .ui-dialog-content {
	overflow: visible;
}

#form .ui-widget-overlay {
	position: relative;
}

.ui-tooltip {
	font-size: 14px;
	font-weight: normal;
	padding: 5px;
}

input[type=checkbox].css-checkbox + label[for="newWindowCheckBox"].css-label,
input[type=checkbox].css-checkbox + label[for="showURLColumnCheckBox"].css-label {
	font-size: 14px;
}

#tags_grid_bottom {
	position: relative;
	width: 600px;
	margin-top: 6px;
}

/*#tags_grid_bottom button {
	font-size: 12px;
	margin: 5px 5px 5px 0px;
	height: 25px;
}*/

.ui-widget-content a {
	color: #0006ee;
}

#dialog-import-words div#dialog-import-words-header {
	margin-top: 10px;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #ddd;
}

#dialog-import-words-header input, #dialog-import-words-header label {
	cursor: pointer;
}

#dialog-import-words-header label {
	margin-right: 20px;
}

#dialog-import-words-header input {
	margin: 1px 5px 0px 0px;
}

#loadTextArea {
	display: block;
}

#loadWebArea {
	display: none;
}

#urlText, #linksPatternText {
	width: 333px;
	padding-left: 5px;
}

#dialog-import-words div {
	margin-bottom: 5px;
}

#dialog-import-words textarea {
	width: 510px;
	height: 200px;
	display: block;
}

#dialog-import-words > label {
	margin: 10px 15px 15px 0px;
}

#dialog-import-words .loadTextLabel {
	display: inline-block;
	margin: 10px 10px 10px 0px;
}

#dialog-import-words #importWordsMoreOptions {
	margin-top: 15px;
}

#dialog-import-words #importWordsMoreOptions label {
	margin-right: 15px;
}


#form_left a[target="_blank"] {
	display: inline-block;
	line-height: 18px; /* check your icon height */
	background: url(images/External.png)  center right no-repeat;
	padding-right: 20px;
}

.ui-accordion .ui-accordion-content {
	overflow: hidden !important;
}

/* SHAPES TAB STYLES */
#shapes_tab {
	padding: 0px !important;
}

#shapes_categories {
	width: 25%;
	height: 100%;
	float: left;
	overflow: auto;
	/*-webkit-overflow-scrolling:touch;*/
	/*overflow-y: scroll;
    overflow-x: hidden;*/
	/*background: #f5f5f5;*/
}

::-webkit-scrollbar {
	-webkit-appearance: none;
	width: 7px;
}
::-webkit-scrollbar-thumb {
	border-radius: 4px;
	background-color: rgba(0,0,0,.5);
	-webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}

#shapes_categories ul {
	list-style-type: none;
	padding: 5px;
	height: 100%;
}

#shapes_categories ul li {
	margin: 0 0 4px 0;
	padding: 3px 0;
	font-size: 13px;
	text-align: center;
	border: 1px solid rgb(221, 221, 221);
	border-radius: 4px;
	cursor: pointer;
	background-color: #f2f2f2;
}

#shapes_categories ul li:hover {
	background-color: #f7e2e1;
}

#shapes_categories ul li.selected {
	background-color: #f1cfcd;
	font-weight: bold;
}

#shapes_list {
	width: 75%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto !important;
}

#shapes_table {
	list-style-type: none;
	padding: 0;
	margin: 2px;
	
	display: -webkit-flex;
	-webkit-flex-direction: row;
	-webkit-flex-wrap: wrap;
	-webkit-justify-content: flex-start;

	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;

	display: -ms-flexbox;
	-ms-flex-direction: row;
	-ms-flex-wrap: wrap;
	-ms-flex-pack: start;
}

#shapes_table li {
	/*width: 80px;
	height: 80px;*/
	cursor: pointer;
	
	width: 25%;

	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;

	padding: 3px;
}

#shapes_table .shape_item {
	border: 1px solid rgb(221, 221, 221);
	border-radius: 6px;
	width: 100%;
	height: 100%;
	text-align: center;
}

#shapes_table li:hover .shape_item {
	background-color: rgb(197, 228, 252);
	/*background-color: rgb(228, 241, 251);*/
}

#shapes_table li .shape_item.selected {
	background-color: #a8d7fb;
	/*cursor: pointer;*/
}

#shapes_table .imgWrapper {
	display: inline-block;
	width: 100%;
	height: 80px;
}

#shapes_table .helper {
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

#shapes_table img {
	/*max-width: 70px;
	max-height: 70px;*/
	max-width: 90%;
	max-height: 90%;
}

#shapes_table li:first-child img {
	padding: 10%;
}

#shapes_table .shape_item.custom {
	margin: 0px;
}

#shapes_table .shape_item.custom  img {
	height: auto;
	width: auto;
	/*max-width: 80px;
	max-height: 80px;*/
	margin: 0px;
}

#shapes_table .shape_item.custom div.close {
	display: none;
	width: 20px;
	height: 20px;
	position: relative;
	margin: -32px -10px 32px -10px;
	cursor: pointer;
	/*close.svg*/
	background: url("images/css/close.svg") no-repeat 0 0;
}

#shapes_table .shape_item.custom:hover div.close,
#shapes_table .shape_item.custom.selected div.close {
	display: inline-block;
}

#shapes_table .shape_item.custom div.close:hover {
	/*close-red.svg*/
	background: url("images/css/close_red.svg") no-repeat 0 0;
}

#shapes_table .shape_item div.customize {
	display: none;
	width: 20px;
	height: 20px;
	position: relative;
	margin-bottom: -44px;
	margin-left: -10px;
	margin-right: -10px;
	cursor: pointer;
	/*gear.svg*/
	background: url("images/css/gear.svg") no-repeat 0 0;
}

#shapes_table .shape_item:hover div.customize,
#shapes_table .shape_item.selected div.customize {
	display: inline-block;
}

#shapes_table .shape_item div.customize:hover {
	display: inline-block;
	/*gear-hover.svg*/
	background: url("images/css/gear_green.svg") no-repeat 0 0;
}

/* SHAPES TAB CUSTOM ANGLES */
#angles_list {
	border: 1px solid rgb(221, 221, 221);
	width: 100%;
	height: 92px;
	list-style: none;
	padding: 0px;
	overflow: hidden;
}

#angles_list li {
	width: 51px;
	height: 23px;
	line-height:23px;
	vertical-align: middle;
	float: left;
	font-size: 12px;
	text-align: center;
	cursor: pointer;
	background-color: rgb(197, 228, 252);
	margin: 2px 0px 0px 2px;
}

#angles_list li img {
	width: 19px;
	height: 19px;
	margin-top: 2px;
}

#angles_list li:hover {
	background-color: rgb(168, 215, 251);
	color: red;
}

#dialog-custom-layout button span {
	font-size: 14px;
}

#angle_add_btn  span {	
	padding: 2px 5px 2px 5px;
}

#form #angle_add_btn {
	margin-right: 5px;
	height: 29px;
	margin-bottom: 0;
}

#angle_random_btn span {
	padding: 6px;
}

#dialog-custom-layout input {
	width: 40px;
	margin-right: 5px;
}

/* END OF SHAPES TAB STYLES */

/* FONTS TAB STYLES */

#fonts_tab {
	overflow-y: scroll !important;
	/* -webkit-overflow-scrolling: touch; */
}

#add_custom_font_button {
	color: green;
	cursor: pointer;
	padding: 5px;
	margin-bottom: 5px;
	font-size: 20px;
	background-color: rgba(201, 236, 222, 0.42);
}

#add_custom_font_button img {
	width: 18px;
	margin-right: 12px;
	margin-top: -3px;
	margin-left: 0;
}

#fonts_list li {
	position: relative;
}

#fonts_list li.odd {
	background: rgb(228, 241, 251);
}
#fonts_list .ui-selecting, #fonts_list .ui-selected {
	background: #a8d7fb !important;
}
#fonts_list li:hover  {
	background: rgb(197, 228, 252);
}

#fonts_list li.unsupported {
	background-color: #ffe6e6;
}
#fonts_list li.unsupported.odd {
	background: #ffdbdb;
}
#fonts_list li.unsupported.ui-selecting, #fonts_list li.unsupported.ui-selected {
	background: #c1d3ec !important;
}
#fonts_list li.unsupported:hover  {
	background: #d6dced;
}


#fonts_list {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

#fonts_list li {
	vertical-align: middle;
	margin: 0px;
	padding: 8px 0px 8px 5px;
	height: 25px;
	/*border-radius: 6px;*/
}

#fonts_list li button {
	left: 370px;
	position: absolute;
}

#fonts_list li img {
	max-height: 100%;
	max-width: 360px;
}

#fonts_list li span.font_checkbox {
	display: inline-block;
	margin: 0px 10px 5px 0px;
	width: 20px;
	height: 18px;
	background: url(images/css_checkbox_label_background.svg) no-repeat 0 0;
}

#fonts_list li.ui-selected span.font_checkbox {
	background-position: 0 -17px;
}
/* END OF FONTS TAB STYLES */

/* LAYOUTS TAB STYLES */
#layouts_tab {
	/*overflow-y: hidden !important;*/
	padding: 0px !important;
}

#layouts_table td {
	border: 1px solid rgb(221, 221, 221);
}

#layouts_table {
	width: 100%;
	text-align: center;
	border-collapse: separate;
	border-spacing: 5px;
	margin-bottom: 0px;
}

#layouts_table img {
	width: 80px;
	height: 80px;
	margin: 5px 0px;
	vertical-align: middle;
	/*border: 1px solid rgb(221, 221, 221);*/
}

#layouts_table td {
	margin: 10px;
	border-radius: 6px;
	cursor: pointer;
}

#layouts_table td:hover {
	background-color: rgb(197, 228, 252);
	/*background-color: rgb(228, 241, 251);*/
}

#layouts_table td.selected {
	background-color: #a8d7fb;
	/*cursor:pointer;
	vertical-align: top;*/
}

#layouts_table td[id="custom_layout"] {
	cursor:pointer;
}

/*#layouts_table td.selected  div {
	background-color: #3488BF;
	color: white;
	padding: 0px 5px;
	font-size: 13px;
	margin-top: -8px;
}

#layouts_table td.selected  img {
	margin-top: 1px;
}*/

#layouts_tab > div {
	margin: 0px 0px 0px 7px;
	border-bottom: 1px solid rgb(221, 221, 221);
	width: 475px;
	padding: 10px 0 10px;
}

#layouts_tab > div:last-child {
	border: none;
}

#layouts_tab > div > div {
	display: inline-block;
	vertical-align: bottom;
}

#words_amount,
#words_size {
	margin-top: 1px;
	white-space: nowrap;
}

.layout_header {
	display: inline-block;
	width: 140px;
	vertical-align: top;
	margin-top: -4px;
}

#words_amount label, #words_size  label {
	display: inline-block;
	margin-bottom: 3px;
}

.tagul_slider {
	width: 200px;
	display: inline-block;
	margin: 0px 0px 0px 15px;
	font-size: 14px;
	border-radius: 5px;
	margin-left: 38px;
}

.tagul_slider .ui-slider-handle {
	border-radius: 5px;
	width: 26px;
	height: 18px;
	line-height: 18px;
	top: -3px;
	text-align: center;
	text-decoration: none;
	font-size: 12px;
	font-weight: normal;
	outline: 0;
}

#words_size br {
	margin-bottom: 1px;
}

/*label[for="maximizeCheckBox"] {
	margin-left: 9px;
}*/

label[for="defineAmountCheckBox"], label[for="defineSizeCheckBox"] {
	display: block;
}

/* END OF LAYOUTS TAB STYLES */

/* COLORS AND ANIMATIONS TAB STYLES */

#colors_tab > div {
	border-bottom: 1px solid rgb(221, 221, 221);
	margin-bottom: 10px;
	padding-bottom: 10px;
	white-space:nowrap;
}

#colors_tab span.form_header {
	display: inline-block;
	width: 132px;
}

#colors_tab span.form_header.long_header {
	width: 190px;
}

#colors_section {
	height: 110px;
	margin-top: 5px;
}

#colors_tab, #colors_section {
	position: relative;
}

#colors_section > * {
	position: absolute;
}

#buttons_block {
	left: 140px;
	top: 5px;
}

#buttons_block button {
	margin-top: 5px;
	display: block;
}

#colors_section button {
	font-size: 12px;
	height: 26px;
	width: 57px;
}

#colors_section button .ui-button-text {
	padding: 0px;
}

#color_refresh img {
	width: 20px;
	margin-top: 2px;
}

#colors_section label[for="colorsCustomShapeCheckBox"]{
	top: 38px;
	left: 6px;
	width: 130px;
	text-align: left;
	white-space: normal;
}

#colors_list {
	border: 1px solid rgb(221, 221, 221);
	top: -13px;
	left: 205px;
	width: 270px;
	height: 92px;
	list-style: none;
	padding: 0px;
	overflow: hidden;
}

#colors_list li {
	width: 54px;
	height: 23px;
	line-height:23px;
	vertical-align: middle;
	float: left;
	font-size: 12px;
	text-align: center;
	cursor: pointer;
}

#colors_list li  img {
	width: 19px;
	height: 19px;
	margin-top: 2px;
}

div.colorsList div.sp-preview  {
	width: 30px
}

div.colorsList div.sp-hue {
	top: 0px;
	height: 100%;
}

div.colorsList.empty div.sp-hue {
	top: 25px;
	height: 80%;
}

div.colorsList div.sp-button-container.sp-cf {
	margin-top: 0px;
	margin-bottom: 7px;
}

div.colorsList .sp-input {
	width: 100%;
}

div.colorsList.tagsGrid .sp-cancel {
	visibility: visible;
}

#disable_div {
	display: none;
	background-color: rgba(192, 192, 192, 0.3);
	width: 345px;
	height: 103px;
	left: 135px;
	border-radius: 6px;
}

#animation_section .tagul_slider {
	width: 110px;
	margin-left: 15px;
}

#animation_section label {
	margin-left: 5px;
}

#animation_section .form_label {
	position: relative;
	top: -2px;
}

.form_label {
	font-size: 15px;
	font-family: Lucida Grande,Lucida Sans,Arial,sans-serif
}

label[for="backgroundColorTransparentCheckBox"], label[for="boxColorTransparentCheckBox"] {
	margin-left: 10px;
}

/* END OF COLORS AND ANIMATIONS TAB STYLES */

/* GRAB AND SHARE STYLES */

#accordion #share_grab_tabs.ui-accordion-content {
	padding-top: 6px;
}

#share_grab_tabs > div {
	padding: 0px 0px;
	border-bottom: 1px solid rgb(221, 221, 221);
}

#share_grab_tabs span {
	display: block;
}

#share_grab_tabs .icons_section {
	white-space: nowrap;
	padding: 2px 0;
	/*padding-bottom: 2px;*/
}



#share_grab_tabs .icons_section a {
	padding: 0px;
	background: none;
	border: none;
}

#share_grab_tabs .icons_section a:hover {
	background-color: none;
	border: none;
}

#share_grab_tabs .icons_section:first-child {
	padding-top: 0px;
}

#share_grab_tabs .icons_section span {
	display: inline-block;
	width: 210px;
}

#share_grab_tabs .icons_section.pointers span {
	top: 50%;
	transform: translateY(-65%);
	-webkit-transform: translateY(-65%);
}

#share_grab_tabs .icons_section span.short {
	width: 152px;
	margin-right: 5px;
}

#share_grab_tabs .icons_section img {
	margin: 5px 10px 0px 0px;
	cursor: pointer;
}

/*#share_grab_tabs .pointers {
	padding: 2px 0px;
}*/

#share_grab_tabs .pointers > div {
	cursor: pointer;
}

#share_grab_tabs .icons_section > div {
	display: inline-block;
	margin: 0px 3px;
	padding: 4px;
	border-radius: 6px;
	-webkit-transition: background-color 0.1s; /* Safari */
	transition: background-color 0.1s;
}

#share_grab_tabs .icons_section > div:hover {
	background-color: rgb(197, 228, 252);
}


#share_grab_tabs .icons_section > div  img{
	margin: 0px;
	width: 44px;
}

#share_grab_tabs .icons_section > div > div {
	font-size: 12px;
	text-align: center;
	margin: 2px 0px 0px 0px;
}

#share_grab_tabs .icons_section .icons_section_tip {
	display: inline-block;
	font-size: 12px;
	width: 160px;
	height: 18px;
	color: #707070;
}

#share_grab_tabs .icons_section .premium_image {
	background: #aed0ea;
	border-radius: 6px;
	padding: 1px 0px;
}

#share_grab_tabs .icons_section .selected {
	background: #a8d7fb;
	border-radius: 6px;
	font-weight: bold;
	text-align: center;
}

#link_section a {
	margin-top: 10px;
	font-size: 14px;
}

#embedding_code {
	background-color: white;
	padding: 10px;
	border: 1px solid #dddddd;
	
	-webkit-touch-callout: text;
	-webkit-user-select: text;
	-khtml-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

#dialog-embedding-cloud > div {
	margin: 10px 0px;
}

#dialog-embedding-cloud {
	overflow: hidden;
}

#purchase_license {
	margin: 20px 0;
	font-size: 16px;
}
/* END OF GRAB AND SHARE STYLES */


/* CUSTOM SHAPE DIALOG */
#dialog-custom-shape canvas {
	display: block;
	margin: 0 auto;
	width: 300px;
	height: auto;
	/*border: 1px solid rgb(221, 221, 221);*/
}

#dialog-custom-shape .tagul_slider {
	margin: auto;
}

.dialog-custom-shape-header {
	display: inline-block;
	width: 75px;
}

#dialog-custom-shape > div {
	margin: 15px 0px 15px 0px;
}

#show_original_btn {
	display: block;
	margin: 10px auto;
}

/* END OF CUSTOM SHAPE DIALOG */

/* SHAPE DIALOG */
#dialog-classic-shape canvas {
	width: 300px;
	height: auto;
	border: 1px solid rgb(221, 221, 221);
}

#dialog-classic-shape .tagul_slider {
	width: 190px;
	margin: auto;
}

.dialog-classic-shape-header {
	display: inline-block;
	width: 100px;
}

#dialog-classic-shape > div {
	margin: 15px 0px 15px 0px;
}

#dialog-classic-shape label[for="neagtiveShapeCheckBox"] {
	margin-bottom: 10px;
}
/* END OF SHAPE DIALOG */

#dialog-visualizing {
	overflow-y: hidden !important;
}

#dialog-visualizing #statusbar{
	margin: 5px 0px 15px 0px;
}

.vizualize .ui-dialog-buttonpane button {
	margin-right: 0px;
}

#dialog-visualizing {
	margin-bottom: 10px;
}

#shape_canvas {
	border-radius: 6px;
}

#dialog-send-email input, #dialog-send-email textarea {
	margin: 2px 0px 10px 0px;
	width: 100%;
	padding: 5px;
	border-radius: 4px;
	border: 1px solid silver;
}

#dialog-send-email > div {
	margin-top: 20px;
}



/* canvasForm.css fixes */
#form {
	text-align: left;
	font-size: 16px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	overflow: hidden;
}

#form h3 {
	font-family: Lucida Grande,Lucida Sans,Arial,sans-serif;
	font-size: 100%;
}

/*#form img {
	padding: 0px;
	border: none;
}*/

#form label {
	font-weight: normal;
}

#form #fonts_list li {
	height: 41px;
	cursor: pointer;
}

#form #fonts_list li > img {
	vertical-align: baseline;
}

#form a, #form button {
	/*border-bottom: 0px;*/
	outline: 0;
}

#form a {
	padding-bottom: 0px;
}

.tagulCloud {
	padding: 0px;
	line-height: 0px;
}

#form a:hover {
	background-color: transparent;
	/*border-bottom: none;*/
}

#form .tagulCloud,
#form .tagulCloud:hover,
#form #urlAnchor,
#form #urlAnchor:hover {
	border: none;
}

#form #colors_list {
	margin: 18px 0px 0px 0px;
}

#form #angles_list {
	margin: 10px 0px 0px 0px;
}

#form #tagsGrid .slick-header-column {
	height: 24px;
}

/*#form #tags_grid_top button {
	margin-left: 0px;
	margin-right: 5px;
	padding: 0px 5px;
	display: inline;
}*/

#form #cloud_name_input {
	width: 420px;
}

#cloud_name_header {
	margin: -1px 0 0 3px;
}

#print_row img {
	width: 36px;
	padding: 4px;
}

.edit-mode-panel .editModeColorsEditor {
	width: 60px;
}

#form .ui-progressbar .ui-progressbar-value {
	height: 29px;
}

#form .close { /* redefine bootstrap styles */
	float: none; 
	font-size: 21px; 
	font-weight: normal;
	line-height: 1;
	color: #000;
	text-shadow: none;
	filter: alpha(opacity=100);
	opacity: 1; 
}

/* this one to fix header column issue with bootstrap */
.slick-header-column.ui-state-default {
	box-sizing: content-box !important;
}
