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

/* 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 {
  *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-only .sp-palette-container {
  border: 0; }

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

.rangeslider,
.rangeslider__fill {
  display: block;
  -moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px; }

.rangeslider {
  background: #e6e6e6;
  position: relative; }

.rangeslider--horizontal {
  height: 20px;
  width: 100%; }

.rangeslider--vertical {
  width: 20px;
  min-height: 150px;
  max-height: 100%;
  height: 100%; }

.rangeslider--disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  opacity: 0.4; }

.rangeslider__fill {
  background: #00ff00;
  position: absolute; }

.rangeslider--horizontal .rangeslider__fill {
  top: 0;
  height: 100%; }

.rangeslider--vertical .rangeslider__fill {
  bottom: 0;
  width: 100%; }

.rangeslider__handle {
  background: white;
  border: 1px solid #ccc;
  cursor: pointer;
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4xIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g");
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(0, 0, 0, 0.1)));
  background-image: -moz-linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
  -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%; }

.rangeslider__handle:after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjEzIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==");
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0.13)), color-stop(100%, rgba(255, 255, 255, 0)));
  background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.13), rgba(255, 255, 255, 0));
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.13), rgba(255, 255, 255, 0));
  background-image: linear-gradient(rgba(0, 0, 0, 0.13), rgba(255, 255, 255, 0));
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%; }

.rangeslider__handle:active, .rangeslider--active .rangeslider__handle {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjEiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4xMiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==");
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.12)));
  background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.12));
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.12));
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.12)); }

.rangeslider--horizontal .rangeslider__handle {
  top: -10px;
  touch-action: pan-y;
  -ms-touch-action: pan-y; }

.rangeslider--vertical .rangeslider__handle {
  left: -10px;
  touch-action: pan-x;
  -ms-touch-action: pan-x; }

input[type="range"]:focus + .rangeslider .rangeslider__handle {
  -moz-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
  -webkit-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
  box-shadow: 0 0 8px rgba(255, 0, 255, 0.9); }

.dragonfly-row {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  border: 1px solid transparent; }
  .dragonfly-row img {
    max-width: 100%; }
  .dragonfly-row.has-child-row {
    width: 100%;
    display: flex;
    flex: 3;
    flex-shrink: 0;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 10px;
    box-sizing: border-box; }
    @media screen and (max-width: 768px) {
      .dragonfly-row.has-child-row .dragonfly-row {
        flex-flow: wrap;
        flex-shrink: 0; } }
  .dragonfly-row .dragonfly-col {
    box-sizing: border-box;
    border: 1px dotted transparent; }
  .dragonfly-row .dragonfly-col-2-2 {
    height: 100%;
    flex-grow: 0; }

@font-face {
  font-family: 'dragonfly-glypicons';
  src: url(db913a325cb68e636ed849dffc4a3a4e.eot);
  src: url(db913a325cb68e636ed849dffc4a3a4e.eot?#iefix) format("embedded-opentype"), url(faeb51e5fb00ca1cc7ae03b9bf2d1511.woff) format("woff"), url(66cdbf875ebd460da4d51a4011afce23.ttf) format("truetype");
  font-weight: normal;
  font-style: normal; }

[class^="dragonfly-icon-"]::before {
  display: inline-block;
  font-family: 'dragonfly-glypicons', serif;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.dragonfly-icon-cross:before {
  content: 'B'; }

.dragonfly-icon-search:before {
  content: 'A'; }

body.dragonfly-fullscreen-active {
  overflow: hidden; }

.dragonfly {
  width: 100%;
  display: inline-block;
  position: relative; }
  @media screen and (max-width: 768px) {
    .dragonfly {
      margin-bottom: 0;
      padding-bottom: 0;
      border: none; } }
  .dragonfly p {
    margin: 0;
    padding: 0; }
  .dragonfly .dragonfly-field {
    width: 100%;
    padding: 5px 5px 5px 35px;
    border: 1px solid; }
  .dragonfly .fail-message {
    padding: 20px;
    background-color: white;
    font-size: 1em;
    color: black; }
  .dragonfly .dragonfly-results {
    position: absolute;
    width: 100%;
    z-index: 2222; }
    .dragonfly .dragonfly-results .dragonfly-result {
      display: block;
      padding: 0.5em;
      box-sizing: border-box;
      box-shadow: 0 0 0 transparent;
      outline: none;
      text-decoration: none; }
      .dragonfly .dragonfly-results .dragonfly-result .dragonfly-suggestion-thubmnail {
        max-width: 120px;
        overflow: hidden; }
        @media screen and (max-width: 568px) {
          .dragonfly .dragonfly-results .dragonfly-result .dragonfly-suggestion-thubmnail {
            width: 90px; } }
        .dragonfly .dragonfly-results .dragonfly-result .dragonfly-suggestion-thubmnail img {
          display: block; }

.dragonfly.dragonfly-inline {
  width: initial; }
  .dragonfly.dragonfly-inline .dragonfly-handler {
    position: relative;
    padding-left: 10px;
    z-index: 3; }
    .dragonfly.dragonfly-inline .dragonfly-handler:hover {
      cursor: pointer; }
  .dragonfly.dragonfly-inline .dragonfly-field-wrapper {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2; }
    .dragonfly.dragonfly-inline .dragonfly-field-wrapper .dragonfly-field {
      display: none;
      min-width: 250px; }

.dragonfly.dragonfly-fullscreen {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 50px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 888888; }
  @media screen and (max-width: 1200px) {
    .dragonfly.dragonfly-fullscreen {
      padding: 50px 20px 20px; } }
  .dragonfly.dragonfly-fullscreen .dragonfly-icon-cross {
    position: absolute;
    top: 10px;
    right: 50px;
    font-size: 2em;
    color: #F44336; }
    .dragonfly.dragonfly-fullscreen .dragonfly-icon-cross:hover {
      cursor: pointer; }
    @media screen and (max-width: 768px) {
      .dragonfly.dragonfly-fullscreen .dragonfly-icon-cross {
        top: 5px;
        right: 20px; } }
  .dragonfly.dragonfly-fullscreen .dragonfly-container {
    width: 100%;
    height: 100%;
    padding: 40px 30px;
    box-sizing: border-box;
    overflow: hidden; }
    @media screen and (max-width: 970px) {
      .dragonfly.dragonfly-fullscreen .dragonfly-container {
        padding: 50px 10px; } }
    .dragonfly.dragonfly-fullscreen .dragonfly-container .dragonfly-wrapper {
      display: block;
      margin: 0 auto;
      max-width: 660px;
      position: relative; }
      .dragonfly.dragonfly-fullscreen .dragonfly-container .dragonfly-wrapper .dragonfly-field {
        padding: 10px 10px 10px 35px; }
    .dragonfly.dragonfly-fullscreen .dragonfly-container .dragonfly-results {
      height: 100%;
      max-width: 600px;
      position: static;
      margin: 10px auto;
      padding: 0;
      overflow-x: hidden;
      overflow-y: auto; }
      .dragonfly.dragonfly-fullscreen .dragonfly-container .dragonfly-results .fail-message {
        font-size: 2em; }
  .dragonfly.dragonfly-fullscreen .dragonfly-result-row {
    display: flex;
    flex-wrap: wrap; }
    .dragonfly.dragonfly-fullscreen .dragonfly-result-row .dragonfly-result-column {
      position: relative;
      max-width: 100%;
      min-height: 1px;
      padding: 10px;
      box-sizing: border-box;
      flex-basis: 0;
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      -ms-flex-preferred-size: 0;
      flex-grow: 1; }
      .dragonfly.dragonfly-fullscreen .dragonfly-result-row .dragonfly-result-column .dragonfly-result {
        height: 100%; }
      @media screen and (min-width: 1000px) and (max-width: 1200px) {
        .dragonfly.dragonfly-fullscreen .dragonfly-result-row .dragonfly-result-column {
          flex: 0 0 33.33% !important; } }
      @media screen and (min-width: 768px) and (max-width: 1000px) {
        .dragonfly.dragonfly-fullscreen .dragonfly-result-row .dragonfly-result-column {
          flex: 0 0 50% !important; } }
      @media screen and (max-width: 768px) {
        .dragonfly.dragonfly-fullscreen .dragonfly-result-row .dragonfly-result-column {
          flex: 0 0 100% !important; } }
  .dragonfly.dragonfly-fullscreen.dragonfly-column-2 .dragonfly-results .dragonfly-result-row .dragonfly-result-column {
    flex: 0 0 100%; }
  .dragonfly.dragonfly-fullscreen.dragonfly-column-2 .dragonfly-results {
    max-width: 1200px; }
    .dragonfly.dragonfly-fullscreen.dragonfly-column-2 .dragonfly-results .dragonfly-result-row .dragonfly-result-column {
      flex: 0 0 50%; }
  .dragonfly.dragonfly-fullscreen.dragonfly-column-3 .dragonfly-results {
    max-width: 1600px; }
    .dragonfly.dragonfly-fullscreen.dragonfly-column-3 .dragonfly-results .dragonfly-result-row .dragonfly-result-column {
      flex: 0 0 33.33%; }
  .dragonfly.dragonfly-fullscreen.dragonfly-column-4 .dragonfly-results {
    width: 100%;
    max-width: none; }
    .dragonfly.dragonfly-fullscreen.dragonfly-column-4 .dragonfly-results .dragonfly-result-row .dragonfly-result-column {
      flex: 0 0 25%; }

.dragonfly.dragonfly-classic .dragonfly-icon-search, .dragonfly.dragonfly-fullscreen .dragonfly-icon-search {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  font-size: 1em; }

.collapsible-box {
  margin: 15px 0;
  border: 1px solid #C8C8C8;
  border-radius: 3px; }
  .collapsible-box.active > .header-wrapper > .collapse-toggle > .dashicons {
    transform: rotateX(-180deg);
    transform-origin: center; }
  .collapsible-box.active > .inner-content {
    display: block;
    padding: 10px;
    box-sizing: border-box; }
    .collapsible-box.active > .inner-content .collapsible-box {
      margin: 0 0 10px 0; }
      .collapsible-box.active > .inner-content .collapsible-box:last-child {
        margin: 0; }
  .collapsible-box .header-wrapper {
    position: relative;
    border-bottom: 1px solid #C8C8C8;
    background-color: #ECEFF1; }
    .collapsible-box .header-wrapper:hover {
      cursor: pointer;
      background-color: #CFD8DC; }
    .collapsible-box .header-wrapper .title {
      padding: 5px 10px;
      font-size: 1.1em;
      font-weight: bold; }
    .collapsible-box .header-wrapper .collapse-toggle {
      position: absolute;
      top: 50%;
      right: 10px;
      transform: translateY(-50%); }
      .collapsible-box .header-wrapper .collapse-toggle .dashicons {
        font-size: 25px;
        width: 25px;
        height: 25px; }
  .collapsible-box .inner-content {
    display: none;
    background-color: #FAFAFA; }
    .collapsible-box .inner-content .section {
      margin-bottom: 30px; }
      .collapsible-box .inner-content .section:last-child {
        margin-bottom: 0; }
      .collapsible-box .inner-content .section .section-title {
        margin-bottom: 10px;
        font-size: 1.1em;
        border-bottom: 1px solid #C8C8C8;
        color: #2196f3; }
      .collapsible-box .inner-content .section .setting {
        margin-left: 6px; }

.rangeslider {
  height: 10px; }
  .rangeslider .rangeslider__fill {
    background-color: #2196f3; }
  .rangeslider .rangeslider__handle {
    width: 20px;
    height: 20px;
    top: -6px;
    box-shadow: none; }

.wrap {
  max-width: 1170px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 3px;
  background-color: white;
  position: relative; }
  .wrap h2 {
    color: #2196f3; }

p {
  margin: 0;
  line-height: 1; }

.codename {
  display: block;
  padding-top: 20px;
  padding-bottom: 30px; }
  .codename .logo {
    height: 30px; }

.dragonfly-row .dragonfly-col.col-1-5 {
  width: 20%; }

.dragonfly-row .dragonfly-col.col-2-5 {
  width: 40%; }

.settings {
  display: flex;
  padding-top: 10px;
  border-top: 1px solid #ddd; }
  @media screen and (max-width: 768px) {
    .settings {
      width: 100%;
      flex-direction: column; } }
  .settings .dragonfly-settings {
    min-width: 50%;
    padding-right: 10px;
    margin-right: 10px;
    flex-grow: 1;
    box-sizing: border-box;
    border-right: 1px solid #ddd; }
    @media screen and (max-width: 768px) {
      .settings .dragonfly-settings {
        padding-right: 0;
        margin-right: 0;
        order: 2;
        border: none; } }
    .settings .dragonfly-settings hr {
      margin-bottom: 16px; }
    .settings .dragonfly-settings .setting {
      margin-bottom: 16px; }
      .settings .dragonfly-settings .setting .label-wrapper {
        width: 65%;
        padding-right: 10px;
        box-sizing: border-box;
        vertical-align: top; }
        .settings .dragonfly-settings .setting .label-wrapper label {
          font-weight: bold; }
      .settings .dragonfly-settings .setting .field-wrapper {
        width: 35%; }
        .settings .dragonfly-settings .setting .field-wrapper input[type="text"],
        .settings .dragonfly-settings .setting .field-wrapper input[type="number"] {
          width: 100%;
          border-radius: 3px; }
      .settings .dragonfly-settings .setting .label-wrapper,
      .settings .dragonfly-settings .setting .field-wrapper {
        display: inline-block; }
  .settings .demo_n_customizer {
    width: 50%;
    padding-right: 10px;
    flex-grow: 1; }
    @media screen and (max-width: 768px) {
      .settings .demo_n_customizer {
        width: 100%;
        padding-right: 0;
        order: 1; } }

.copyright {
  position: absolute;
  right: 10px;
  bottom: 10px; }
  .copyright a {
    text-decoration: none;
    color: black; }
  @media screen and (max-width: 568px) {
    .copyright {
      position: static;
      padding-bottom: 10px;
      text-align: center; } }

.ui-state-highlight {
  display: inline-block;
  max-width: 100px;
  max-height: 100px;
  padding: 0;
  vertical-align: top;
  box-sizing: border-box;
  border: 1px dotted #9E9E9E;
  background-color: #E0E0E0; }

#dragonfly-drag-n-drop {
  width: 100%;
  border-top: 1px solid #ddd; }
  #dragonfly-drag-n-drop img {
    max-width: 100%; }
  #dragonfly-drag-n-drop .hint {
    margin: 0 0 3px 0; }
  #dragonfly-drag-n-drop .component {
    margin: 0; }
  #dragonfly-drag-n-drop #new-col-helper-template {
    display: none; }
  #dragonfly-drag-n-drop #dragonfly-suggestion-thubmnail {
    width: 120px;
    overflow: hidden; }
  #dragonfly-drag-n-drop #dragonfly-suggestion-components {
    width: 100%;
    min-height: 40px;
    padding: 5px 10px;
    margin-bottom: 10px;
    border: 1px solid #babdbe;
    box-sizing: border-box; }
    #dragonfly-drag-n-drop #dragonfly-suggestion-components #dragonfly-suggestion-thubmnail {
      width: 20%;
      max-width: 100px;
      padding: 0;
      background-color: transparent; }
    #dragonfly-drag-n-drop #dragonfly-suggestion-components .component {
      margin-right: 5px;
      padding: 5px 10px;
      display: inline-block;
      vertical-align: top;
      background-color: #E0E0E0; }
      #dragonfly-drag-n-drop #dragonfly-suggestion-components .component p {
        margin: 0; }
  #dragonfly-drag-n-drop .component {
    margin-right: 10px;
    vertical-align: top; }
    #dragonfly-drag-n-drop .component:hover {
      cursor: move; }
  #dragonfly-drag-n-drop #dragonfly-suggestion-customizer {
    width: 100%;
    margin-bottom: 100px;
    padding: 10px;
    border: 1px solid #ddd;
    box-sizing: border-box; }
    @media screen and (max-width: 768px) {
      #dragonfly-drag-n-drop #dragonfly-suggestion-customizer {
        margin-bottom: 30px; } }
    #dragonfly-drag-n-drop #dragonfly-suggestion-customizer.show-borders .dragonfly-row,
    #dragonfly-drag-n-drop #dragonfly-suggestion-customizer.show-borders .dragonfly-col {
      border-color: #9E9E9E !important; }
    #dragonfly-drag-n-drop #dragonfly-suggestion-customizer.show-borders .dragonfly-row.main-row {
      border-color: transparent !important; }
    #dragonfly-drag-n-drop #dragonfly-suggestion-customizer #dragonfly-suggestion-thubmnail img {
      max-width: 100%;
      display: block; }
    #dragonfly-drag-n-drop #dragonfly-suggestion-customizer .component {
      display: inline-block; }
      #dragonfly-drag-n-drop #dragonfly-suggestion-customizer .component:last-child {
        margin-right: 0; }
      #dragonfly-drag-n-drop #dragonfly-suggestion-customizer .component p {
        font-size: inherit; }
    #dragonfly-drag-n-drop #dragonfly-suggestion-customizer .dragonfly-row {
      margin-bottom: 5px; }
      #dragonfly-drag-n-drop #dragonfly-suggestion-customizer .dragonfly-row .dragonfly-col {
        margin-bottom: 5px;
        margin-right: 5px; }
    #dragonfly-drag-n-drop #dragonfly-suggestion-customizer .dragonfly-row.new-row-helper,
    #dragonfly-drag-n-drop #dragonfly-suggestion-customizer .dragonfly-col.new-col-helper {
      padding: 10px;
      text-align: center;
      display: none;
      background-color: white; }
      #dragonfly-drag-n-drop #dragonfly-suggestion-customizer .dragonfly-row.new-row-helper .placeholder,
      #dragonfly-drag-n-drop #dragonfly-suggestion-customizer .dragonfly-col.new-col-helper .placeholder {
        margin: 0 auto; }
      #dragonfly-drag-n-drop #dragonfly-suggestion-customizer .dragonfly-row.new-row-helper p,
      #dragonfly-drag-n-drop #dragonfly-suggestion-customizer .dragonfly-col.new-col-helper p {
        margin: 0; }
      #dragonfly-drag-n-drop #dragonfly-suggestion-customizer .dragonfly-row.new-row-helper .dashicons,
      #dragonfly-drag-n-drop #dragonfly-suggestion-customizer .dragonfly-col.new-col-helper .dashicons {
        display: inline-block;
        margin: 0 auto; }

.demos {
  margin-bottom: 50px; }
  .demos .section {
    margin-bottom: 20px;
    padding: 5px;
    box-sizing: border-box; }
    .demos .section:last-child {
      margin-bottom: 0; }
    @media screen and (max-width: 1200px) {
      .demos .section {
        margin-bottom: 10px;
        margin-left: 0; } }
    .demos .section .title {
      margin-bottom: 10px; }
  .demos p {
    margin-top: 10px;
    margin-bottom: 10px; }
    .demos p .shortcode {
      padding: 5px;
      background-color: #EFEFEF; }
  .demos .title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1em;
    color: black; }
  .demos .dragonfly-fullscreen {
    padding-left: 20px;
    padding-right: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 26px;
    border: 1px solid #ddd;
    border-radius: 0;
    background-color: #f1f1f1; }
    .demos .dragonfly-fullscreen:hover {
      cursor: pointer; }
  .demos .link-to-doc {
    margin-bottom: 40px; }


/*# sourceMappingURL=admin.bundle.css.map*/