@charset "UTF-8";
/**
 * Variables: WordPress
 *
 */
/**
 * Variables: Customize Plus
 *
 */
/**
 * UI module, used within control's areas
 *
 */
/**
 * Multiple `:not` attributes
 *
 * @credits to https://stackoverflow.com/a/30250161/9122820
 *
 * @param  {List} $ignorList...
 * @return {@content}
 */
/**
 * Markdown styling
 *
 * A good reference for this style is the github markdown css styling
 * @link(https://git.io/Svc8RQ, source)
 */
/*!
 * WordPress CSS Spinner
 * @license GPLv3
 * @author KnitKode <dev@knitkode.com> (https://knitkode.com)
 */
@-webkit-keyframes infinite-spinning {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes infinite-spinning {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.cssanimations .spinner {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 18px;
  background: #808080;
  -webkit-animation: infinite-spinning 1.08s linear infinite;
          animation: infinite-spinning 1.08s linear infinite;
}

.cssanimations .spinner:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  margin-left: -2px;
  background: #fff;
}

/*!
 * CSS Toggle Switches
 *
 * The MIT License (MIT)
 * Copyright (c) 2015 Ionut Colceriu - ghinda.net
 * https://github.com/ghinda/css-toggle-switch
 *
 * Customized by KnitKode <dev@knitkode.com> (https://knitkode.com)
 */
.switch-toggle a,
.switch-light span span {
  display: none;
}

/* We can't test for a specific feature,
 * so we only target browsers with support for media queries.
 */

/*!
 * CSS Toggle Switches: WordPress Customize Theme
 * @author KnitKode <dev@knitkode.com> (https://knitkode.com)
 */
/**
 * Mixin with shared styles
 */
/**
 * Toggle custom theme
 */
.kkcpui-switch.switch-light {
  overflow: visible;
  width: 50px;
  min-height: 22px;
}

.kkcpui-switch.switch-light > span {
  overflow: visible;
  position: relative;
  top: 3px;
  height: 16px;
  min-height: 16px;
  border-radius: 2px;
  background: #dedddd;
  -webkit-box-shadow: inset rgba(0, 0, 0, 0.1) 0 1px 0;
          box-shadow: inset rgba(0, 0, 0, 0.1) 0 1px 0;
  -webkit-transition: all 0.28s ease;
  transition: all 0.28s ease;
}

.kkcpui-switch.switch-light > span > span {
  position: absolute;
  clip: rect(0 0 0 0);
}

.kkcpui-switch.switch-light > span > a {
  border-radius: 2px;
  background: #fafafa;
  -webkit-box-shadow: 0 0px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 2px -2px rgba(0, 0, 0, 0.2), 0 0px 4px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 2px -2px rgba(0, 0, 0, 0.2), 0 0px 4px 0 rgba(0, 0, 0, 0.12);
  width: 22px;
  right: 58%;
  height: 130%;
  top: -15%;
  -webkit-transition: right 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: right 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.kkcpui-switch.switch-light a:active,
.kkcpui-switch.switch-light span:active ~ a {
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), inset 0 0 2px 1px rgba(30, 140, 190, 0.8);
          box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), inset 0 0 2px 1px rgba(30, 140, 190, 0.8);
}

.kkcpui-switch.switch-light input:checked ~ span {
  background: #c4c4c4;
}

.kkcpui-switch.switch-light input:focus ~ span a {
  border-color: #5b9dd9;
  -webkit-box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8);
          box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8);
}

.kkcpui-switch.switch-light input:focus ~ span a,
.kkcpui-switch.switch-light input:focus + label {
  outline: 0;
}

/**
 * Toggle custom theme, with labels
 */
.switch-light.kkcpui-switch__labels {
  min-width: 100px;
}

.switch-light.kkcpui-switch__labels > span {
  height: auto;
  width: 100%;
  float: left;
  min-height: 0;
}

.switch-light.kkcpui-switch__labels > span > span {
  position: relative;
  padding: 4px 10px;
  line-height: 1;
  clip: inherit;
  font-size: 9px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: opacity 0.28s;
  transition: opacity 0.28s;
  color: #2b2b2b;
  opacity: 1;
  max-width: 50%;
}

.switch-light.kkcpui-switch__labels > span > span:last-of-type {
  color: #555;
  opacity: 0.6;
}

.switch-light.kkcpui-switch__labels > span > a {
  width: 50%;
  right: 50%;
  border-radius: 2px;
}

.switch-light.kkcpui-switch__labels input:checked ~ span {
  background-color: #c4c4c4;
}

.switch-light.kkcpui-switch__labels input:checked ~ span span:first-of-type {
  opacity: 0.6;
}

.switch-light.kkcpui-switch__labels input:checked ~ span span:last-of-type {
  opacity: 1;
}

/**
 * Toggle custom theme, with labels of dynamic width
 */
.switch-light.kkcpui-switch__labelsauto {
  display: inline-block;
  width: auto;
  min-width: 100px;
  max-width: 100%;
}

.switch-light.kkcpui-switch__labelsauto > span {
  display: inline-block;
  height: auto;
  width: 100%;
  float: left;
  min-height: 0;
}

.switch-light.kkcpui-switch__labelsauto > span > span {
  position: relative;
  padding: 4px 10px;
  line-height: 1;
  clip: inherit;
  font-size: 9px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: opacity 0.28s;
  transition: opacity 0.28s;
  color: #2b2b2b;
  opacity: 1;
  width: auto;
}

.switch-light.kkcpui-switch__labelsauto > span > span:first-of-type {
  padding: 6px 10px 6px;
  margin-top: -2px;
  margin-bottom: -2px;
  border: 1px solid #ddd;
  border-radius: 2px;
  background: #fafafa;
  -webkit-box-shadow: 0 0px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 2px -2px rgba(0, 0, 0, 0.2), 0 0px 4px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 2px -2px rgba(0, 0, 0, 0.2), 0 0px 4px 0 rgba(0, 0, 0, 0.12);
}

.switch-light.kkcpui-switch__labelsauto > span > span:last-of-type {
  color: #555;
  opacity: 0.6;
}

.switch-light.kkcpui-switch__labelsauto > span > a {
  display: none;
}

.switch-light.kkcpui-switch__labelsauto > span > span:active {
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), inset 0 0 2px 1px rgba(30, 140, 190, 0.8);
          box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), inset 0 0 2px 1px rgba(30, 140, 190, 0.8);
}

.switch-light.kkcpui-switch__labelsauto a:active,
.switch-light.kkcpui-switch__labelsauto span:active ~ a {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.switch-light.kkcpui-switch__labelsauto input:checked ~ span {
  background-color: #c4c4c4;
}

.switch-light.kkcpui-switch__labelsauto input:checked ~ span span:first-of-type {
  opacity: 0.6;
  padding: 4px 10px;
  margin: 0;
  border-color: transparent;
  background: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.switch-light.kkcpui-switch__labelsauto input:checked ~ span span:last-of-type {
  opacity: 1;
  padding: 6px 10px 6px;
  margin-top: -2px;
  margin-bottom: -2px;
  border: 1px solid #ddd;
  border-radius: 2px;
  background: #fafafa;
  -webkit-box-shadow: 0 0px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 2px -2px rgba(0, 0, 0, 0.2), 0 0px 4px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 2px -2px rgba(0, 0, 0, 0.2), 0 0px 4px 0 rgba(0, 0, 0, 0.12);
}

.switch-light.kkcpui-switch__labelsauto input:focus ~ span a {
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.switch-light.kkcpui-switch__labelsauto input:focus ~ span span:first-of-type,
.switch-light.kkcpui-switch__labelsauto input:checked:focus ~ span span:last-of-type {
  border-color: #5b9dd9;
  -webkit-box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
          box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
}

.switch-light.kkcpui-switch__labelsauto input:checked:focus ~ span span:first-of-type {
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/**
 * Buttonset custom theme
 */
.kkcpui-switch.switch-toggle {
  border: 1px solid #ccc;
  -webkit-box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0, 0, 0, 0.08);
          box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0, 0, 0, 0.08);
  background-color: #f7f7f7;
}

.kkcpui-switch.switch-toggle:hover {
  border: 1px solid #a6a6a6;
}

.kkcpui-switch.switch-toggle label {
  color: #555;
  border-style: solid;
  border-width: 1px;
  border-color: #ddd;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.kkcpui-switch.switch-toggle label:hover {
  background-color: #fafafa;
}

.kkcpui-switch.switch-toggle a {
  background-color: #e8e8e8;
  -webkit-box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.08), 0 1px 0 rgba(0, 0, 0, 0.08);
          box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.08), 0 1px 0 rgba(0, 0, 0, 0.08);
  -webkit-transition: none;
  transition: none;
}

.kkcpui-switch.switch-toggle input:checked + label {
  color: #444;
  cursor: default;
}

.kkcpui-switch.switch-toggle input:checked + label:hover {
  background-color: #e8e8e8;
  -webkit-box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.08), 0 1px 0 rgba(0, 0, 0, 0.08);
          box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.08), 0 1px 0 rgba(0, 0, 0, 0.08);
}

.kkcpui-switch.switch-toggle input:focus + label,
.kkcpui-switch.switch-toggle input:focus + label:hover {
  border-color: #5b9dd9;
  -webkit-box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
          box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
  outline: 0;
}

/*!
 * jQuery UI CSS Framework 1.11.2
 * http://jqueryui.com
 *
 * Copyright 2014 jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/category/theming/
 */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-clearfix {
  min-height: 0;
  /* support: IE7 */
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
  /* support: IE8 */
}

.ui-front {
  z-index: 100;
}

/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
}

/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-slider {
  position: relative;
  text-align: left;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none;
}

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: .7em;
  display: block;
  border: 0;
  background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  -webkit-filter: inherit;
          filter: inherit;
}

.ui-slider-horizontal {
  height: .8em;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -.3em;
  margin-left: -.6em;
}

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.ui-slider-vertical {
  width: .8em;
  height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
  left: -.3em;
  margin-left: 0;
  margin-bottom: -.6em;
}

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}

/*!
 * jQuery UI CSS Framework 1.11.2
 * http://jqueryui.com
 *
 * Copyright 2014 jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/category/theming/
 *
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=0&bgColorHeader=%23cccccc&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHeader=%23aaaaaa&fcHeader=%23222222&iconColorHeader=%23222222&bgColorContent=%23ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=%23aaaaaa&fcContent=%23222222&iconColorContent=%23222222&bgColorDefault=%23e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=%23d3d3d3&fcDefault=%23555555&iconColorDefault=%23888888&bgColorHover=%23dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=%23999999&fcHover=%23212121&iconColorHover=%23454545&bgColorActive=%23ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=%23aaaaaa&fcActive=%23212121&iconColorActive=%23454545&bgColorHighlight=%23fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=%23fcefa1&fcHighlight=%23363636&iconColorHighlight=%232e83ff&bgColorError=%23fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=%23cd0a0a&fcError=%23cd0a0a&iconColorError=%23cd0a0a&bgColorOverlay=%23aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=%23aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
 */
/* Component containers
----------------------------------*/
/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  color: #555555;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
  color: #555555;
}

/* Interaction Cues
----------------------------------*/
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: .35;
  background-image: none;
}

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

/*!
 * jQuery-ui-Slider-Pips - v1.11.4 - 2016-09-04
 * Copyright (c) 2016 Simon Goellner <simey.me@gmail.com>; Licensed MIT
 */
/* HORIZONTAL */
/* increase bottom margin to fit the pips */
.ui-slider-horizontal.ui-slider-pips {
  margin-bottom: 1.4em;
}

/* default hide the labels and pips that arnt visible */
/* we just use css to hide incase we want to show certain */
/* labels/pips individually later */
.ui-slider-pips .ui-slider-label,
.ui-slider-pips .ui-slider-pip-hide {
  display: none;
}

/* now we show any labels that we've set to show in the options */
.ui-slider-pips .ui-slider-pip-label .ui-slider-label {
  display: block;
}

/* PIP/LABEL WRAPPER */
/* position each pip absolutely just below the default slider */
/* and also prevent accidental selection */
.ui-slider-pips .ui-slider-pip {
  width: 2em;
  height: 1em;
  line-height: 1em;
  position: absolute;
  font-size: 0.8em;
  color: #999;
  overflow: visible;
  text-align: center;
  top: 20px;
  left: 20px;
  margin-left: -1em;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* little pip/line position & size */
.ui-slider-pips .ui-slider-line {
  background: #999;
  width: 1px;
  height: 3px;
  position: absolute;
  left: 50%;
}

/* the text label postion & size */
/* it overflows so no need for width to be accurate */
.ui-slider-pips .ui-slider-label {
  position: absolute;
  top: 5px;
  left: 50%;
  margin-left: -1em;
  width: 2em;
}

/* make it easy to see when we hover a label */
.ui-slider-pip:hover .ui-slider-label {
  color: black;
  font-weight: bold;
}

/* VERTICAL */
/* vertical slider needs right-margin, not bottom */
.ui-slider-vertical.ui-slider-pips {
  margin-bottom: 1em;
  margin-right: 2em;
}

/* align vertical pips left and to right of the slider */
.ui-slider-vertical.ui-slider-pips .ui-slider-pip {
  text-align: left;
  top: auto;
  left: 20px;
  margin-left: 0;
  margin-bottom: -0.5em;
}

/* vertical line/pip should be horizontal instead */
.ui-slider-vertical.ui-slider-pips .ui-slider-line {
  width: 3px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
}

.ui-slider-vertical.ui-slider-pips .ui-slider-label {
  top: 50%;
  left: 0.5em;
  margin-left: 0;
  margin-top: -0.5em;
  width: 2em;
}

/* FLOATING HORIZTONAL TOOLTIPS */
/* remove the godawful looking focus outline on handle and float */
.ui-slider-float .ui-slider-handle:focus,
.ui-slider-float .ui-slider-handle:focus .ui-slider-tip,
.ui-slider-float .ui-slider-handle:focus .ui-slider-tip-label {
  outline: none;
}

/* style tooltips on handles and on labels */
/* also has a nice transition */
.ui-slider-float .ui-slider-tip,
.ui-slider-float .ui-slider-tip-label {
  position: absolute;
  visibility: hidden;
  top: -40px;
  display: block;
  width: 34px;
  margin-left: -18px;
  left: 50%;
  height: 20px;
  line-height: 20px;
  background: white;
  border-radius: 3px;
  border: 1px solid #888;
  text-align: center;
  font-size: 12px;
  opacity: 0;
  color: #333;
  -webkit-transition-duration: 200ms, 200ms, 0;
  transition-duration: 200ms, 200ms, 0;
  -webkit-transition-property: opacity, top, visibility;
  transition-property: opacity, top, visibility;
  -webkit-transition-delay: 0, 0, 200ms;
  transition-delay: 0, 0, 200ms;
}

/* show the tooltip on hover or focus */
/* also switch transition delay around */
.ui-slider-float .ui-slider-handle:hover .ui-slider-tip,
.ui-slider-float .ui-slider-handle:focus .ui-slider-tip,
.ui-slider-float .ui-slider-pip:hover .ui-slider-tip-label {
  opacity: 1;
  top: -30px;
  visibility: visible;
  -webkit-transition-delay: 200ms, 200ms, 0;
  transition-delay: 200ms, 200ms, 0;
}

/* put label tooltips below slider */
.ui-slider-float .ui-slider-pip .ui-slider-tip-label {
  top: 42px;
}

.ui-slider-float .ui-slider-pip:hover .ui-slider-tip-label {
  top: 32px;
  font-weight: normal;
}

/* give the tooltip a css triangle arrow */
.ui-slider-float .ui-slider-tip:after,
.ui-slider-float .ui-slider-pip .ui-slider-tip-label:after {
  content: " ";
  width: 0;
  height: 0;
  border: 5px solid rgba(255, 255, 255, 0);
  border-top-color: white;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -5px;
}

/* put a 1px border on the tooltip arrow to match tooltip border */
.ui-slider-float .ui-slider-tip:before,
.ui-slider-float .ui-slider-pip .ui-slider-tip-label:before {
  content: " ";
  width: 0;
  height: 0;
  border: 5px solid rgba(255, 255, 255, 0);
  border-top-color: #888;
  position: absolute;
  bottom: -11px;
  left: 50%;
  margin-left: -5px;
}

/* switch the arrow to top on labels */
.ui-slider-float .ui-slider-pip .ui-slider-tip-label:after {
  border: 5px solid rgba(255, 255, 255, 0);
  border-bottom-color: white;
  top: -10px;
}

.ui-slider-float .ui-slider-pip .ui-slider-tip-label:before {
  border: 5px solid rgba(255, 255, 255, 0);
  border-bottom-color: #888;
  top: -11px;
}

/* FLOATING VERTICAL TOOLTIPS */
/* tooltip floats to left of handle */
.ui-slider-vertical.ui-slider-float .ui-slider-tip,
.ui-slider-vertical.ui-slider-float .ui-slider-tip-label {
  top: 50%;
  margin-top: -11px;
  width: 34px;
  margin-left: 0px;
  left: -60px;
  color: #333;
  -webkit-transition-duration: 200ms, 200ms, 0;
  transition-duration: 200ms, 200ms, 0;
  -webkit-transition-property: opacity, left, visibility;
  transition-property: opacity, left, visibility;
  -webkit-transition-delay: 0, 0, 200ms;
  transition-delay: 0, 0, 200ms;
}

.ui-slider-vertical.ui-slider-float .ui-slider-handle:hover .ui-slider-tip,
.ui-slider-vertical.ui-slider-float .ui-slider-handle:focus .ui-slider-tip,
.ui-slider-vertical.ui-slider-float .ui-slider-pip:hover .ui-slider-tip-label {
  top: 50%;
  margin-top: -11px;
  left: -50px;
}

/* put label tooltips to right of slider */
.ui-slider-vertical.ui-slider-float .ui-slider-pip .ui-slider-tip-label {
  left: 47px;
}

.ui-slider-vertical.ui-slider-float .ui-slider-pip:hover .ui-slider-tip-label {
  left: 37px;
}

/* give the tooltip a css triangle arrow */
.ui-slider-vertical.ui-slider-float .ui-slider-tip:after,
.ui-slider-vertical.ui-slider-float .ui-slider-pip .ui-slider-tip-label:after {
  border: 5px solid rgba(255, 255, 255, 0);
  border-left-color: white;
  border-top-color: transparent;
  position: absolute;
  bottom: 50%;
  margin-bottom: -5px;
  right: -10px;
  margin-left: 0;
  top: auto;
  left: auto;
}

.ui-slider-vertical.ui-slider-float .ui-slider-tip:before,
.ui-slider-vertical.ui-slider-float .ui-slider-pip .ui-slider-tip-label:before {
  border: 5px solid rgba(255, 255, 255, 0);
  border-left-color: #888;
  border-top-color: transparent;
  position: absolute;
  bottom: 50%;
  margin-bottom: -5px;
  right: -11px;
  margin-left: 0;
  top: auto;
  left: auto;
}

.ui-slider-vertical.ui-slider-float .ui-slider-pip .ui-slider-tip-label:after {
  border: 5px solid rgba(255, 255, 255, 0);
  border-right-color: white;
  right: auto;
  left: -10px;
}

.ui-slider-vertical.ui-slider-float .ui-slider-pip .ui-slider-tip-label:before {
  border: 5px solid rgba(255, 255, 255, 0);
  border-right-color: #888;
  right: auto;
  left: -11px;
}

/* SELECTED STATES */
/* Comment out this chuck of code if you don't want to have
the new label colours shown */
.ui-slider-pips .ui-slider-pip-selected-initial,
.ui-slider-pips .ui-slider-pip-selected-initial-first,
.ui-slider-pips .ui-slider-pip-selected-initial-second {
  font-weight: bold;
  color: #14CA82;
}

.ui-slider-pips .ui-slider-pip-selected-initial-second {
  color: #1897C9;
}

.ui-slider-pips .ui-slider-pip-selected,
.ui-slider-pips .ui-slider-pip-selected-first,
.ui-slider-pips .ui-slider-pip-selected-second {
  font-weight: bold;
  color: #FF7A00;
}

.ui-slider-pips .ui-slider-pip-selected-second {
  color: #E70081;
}

/*!
 * jQuery UI Slider: WordPress Customize Theme
 * @author KnitKode <dev@knitkode.com> (https://knitkode.com)
 */
.kkcp-slider.ui-slider.ui-slider-horizontal {
  position: relative;
  margin-top: 6px;
  height: 22px;
  border: 0;
  background: 0;
  cursor: pointer;
}

.kkcp-slider.ui-slider.ui-slider-horizontal:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  height: 1px;
  background: #bbb;
}

.kkcp-slider.ui-slider.ui-slider-horizontal .ui-slider-handle {
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 18px;
  background: white;
  border: 1px solid #666;
  cursor: pointer;
}

.kkcp-slider.ui-slider.ui-slider-horizontal .ui-slider-handle:hover {
  background: #eee;
}

.kkcp-slider.ui-slider.ui-slider-horizontal .ui-slider-handle:active {
  background: #e6e6e6;
}

.kkcp-slider.ui-slider.ui-slider-horizontal .ui-slider-handle:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8);
          box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8);
}

.ui-slider:hover .kkcp-slider.ui-slider.ui-slider-horizontal .ui-slider-handle {
  -webkit-box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.05);
}

.kkcp-slider.ui-slider.ui-slider-horizontal .ui-slider-handle.ui-state-focus {
  background: #e6e6e6;
}

.kkcp-slider.ui-slider.ui-slider-horizontal .ui-slider-range {
  background: transparent;
}

.kkcp-slider.ui-slider.ui-slider-horizontal .ui-slider-range:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  height: 1px;
  background: #666;
}

/*!
 * jQuery UI Slider Pips: WordPress Customize Theme
 * @author KnitKode <dev@knitkode.com> (https://knitkode.com)
 */
.kkcp-slider.ui-slider-pips .ui-slider-label {
  color: #ccc !important;
  font-weight: normal !important;
}

.kkcp-slider.ui-slider-pips .ui-slider-pip-selected .ui-slider-label,
.kkcp-slider.ui-slider-pips .ui-slider-pip:hover .ui-slider-label {
  display: block;
}

.kkcp-slider.ui-slider-pips .ui-slider-pip-selected .ui-slider-line {
  display: none;
}

.kkcp-slider.ui-slider-pips .ui-slider-pip-selected .ui-slider-label {
  color: #666 !important;
}

.kkcp-slider.ui-slider-pips .ui-slider-line {
  background: #ccc;
}

/*!
 * jQuery UI Tooltip: WordPress Customize Theme
 * @author KnitKode <dev@knitkode.com> (https://knitkode.com)
 */
/**
 * The default style is considered to apply to the tooltip positioned
 * on `top center`
 */
.ui-tooltip {
  z-index: 1000000;
  position: absolute;
  padding: 3px 8px;
  background: #383838;
  color: white;
  max-width: 300px;
  font-size: 12px;
}

.ui-tooltip::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -2.5px;
  width: 0;
  height: 0;
  background: transparent;
  border: 5px solid transparent;
  border-top-color: #383838;
  z-index: 1000001;
}

.ui-tooltip.bottom::before {
  top: -10px;
  border-bottom-color: #383838;
  border-top-color: transparent;
}

/**
 * selectize.css (v0.12.4)
 * Copyright (c) 2013–2015 Brian Reavis & contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 * @author Brian Reavis <brian@thirdroute.com>
 */
.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
  visibility: visible !important;
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 none !important;
  -webkit-box-shadow: inset 0 0 12px 4px #ffffff;
  box-shadow: inset 0 0 12px 4px #ffffff;
}

.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
  content: '!';
  visibility: hidden;
}

.selectize-control.plugin-drag_drop .ui-sortable-helper {
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.selectize-dropdown-header {
  position: relative;
  padding: 5px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: #f8f8f8;
  border-radius: 3px 3px 0 0;
}

.selectize-dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}

.selectize-dropdown-header-close:hover {
  color: #000000;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  float: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}

.selectize-control.plugin-remove_button [data-value] {
  position: relative;
  padding-right: 24px !important;
}

.selectize-control.plugin-remove_button [data-value] .remove {
  z-index: 1;
  /* fixes ie bug (see #392) */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 17px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 2px 0 0 0;
  border-left: 1px solid #d0d0d0;
  border-radius: 0 2px 2px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.selectize-control.plugin-remove_button [data-value] .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}

.selectize-control.plugin-remove_button [data-value].active .remove {
  border-left-color: #cacaca;
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
  background: none;
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove {
  border-left-color: #ffffff;
}

.selectize-control.plugin-remove_button .remove-single {
  position: absolute;
  right: 28px;
  top: 6px;
  font-size: 23px;
}

.selectize-control {
  position: relative;
}

.selectize-dropdown,
.selectize-input,
.selectize-input input {
  color: #303030;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px;
  -webkit-font-smoothing: inherit;
}

.selectize-input,
.selectize-control.single .selectize-input.input-active {
  background: #ffffff;
  cursor: text;
  display: inline-block;
}

.selectize-input {
  border: 1px solid #d0d0d0;
  padding: 8px 8px;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.selectize-control.multi .selectize-input.has-items {
  padding: 6px 8px 3px;
}

.selectize-input.full {
  background-color: #ffffff;
}

.selectize-input.disabled,
.selectize-input.disabled * {
  cursor: default !important;
}

.selectize-input.focus {
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}

.selectize-input.dropdown-active {
  border-radius: 3px 3px 0 0;
}

.selectize-input > * {
  vertical-align: baseline;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.selectize-control.multi .selectize-input > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
  background: #f2f2f2;
  color: #303030;
  border: 0 solid #d0d0d0;
}

.selectize-control.multi .selectize-input > div.active {
  background: #e8e8e8;
  color: #303030;
  border: 0 solid #cacaca;
}

.selectize-control.multi .selectize-input.disabled > div,
.selectize-control.multi .selectize-input.disabled > div.active {
  color: #7d7d7d;
  background: #ffffff;
  border: 0 solid #ffffff;
}

.selectize-input > input {
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 2px 0 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.selectize-input > input::-ms-clear {
  display: none;
}

.selectize-input > input:focus {
  outline: none !important;
}

.selectize-input::after {
  content: ' ';
  display: block;
  clear: left;
}

.selectize-input.dropdown-active::before {
  content: ' ';
  display: block;
  position: absolute;
  background: #f0f0f0;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
}

.selectize-dropdown {
  position: absolute;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #ffffff;
  margin: -1px 0 0 0;
  border-top: 0 none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 3px 3px;
}

.selectize-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}

.selectize-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  border-radius: 1px;
}

.selectize-dropdown [data-selectable],
.selectize-dropdown .optgroup-header {
  padding: 5px 8px;
}

.selectize-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}

.selectize-dropdown .optgroup-header {
  color: #303030;
  background: #ffffff;
  cursor: default;
}

.selectize-dropdown .active {
  background-color: #f5fafd;
  color: #495c68;
}

.selectize-dropdown .active.create {
  color: #495c68;
}

.selectize-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}

.selectize-dropdown-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
  -webkit-overflow-scrolling: touch;
}

.selectize-control.single .selectize-input,
.selectize-control.single .selectize-input input {
  cursor: pointer;
}

.selectize-control.single .selectize-input.input-active,
.selectize-control.single .selectize-input.input-active input {
  cursor: text;
}

.selectize-control.single .selectize-input:after {
  content: ' ';
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #808080 transparent transparent transparent;
}

.selectize-control.single .selectize-input.dropdown-active:after {
  margin-top: -4px;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #808080 transparent;
}

.selectize-control.rtl.single .selectize-input:after {
  left: 15px;
  right: auto;
}

.selectize-control.rtl .selectize-input > input {
  margin: 0 4px 0 -2px !important;
}

.selectize-control .selectize-input.disabled {
  opacity: 0.5;
  background-color: #fafafa;
}

/*!
 * Selectize: WordPress Customize Theme
 * @author KnitKode <dev@knitkode.com> (https://knitkode.com)
 */
/**
 * Make selectize `<select>` replacement look like the normal
 * `<select>` tag styled with WordPress css on `select` selctor.
 */
.selectize-input {
  border-radius: 0 !important;
  padding: 5px 8px;
  font-size: 14px;
  outline: 0;
  border: 1px solid #ddd;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
}

.selectize-input.focus {
  border-color: #5b9dd9;
  -webkit-box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
          box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
}

.selectize-dropdown {
  border-color: #5b9dd9;
  -webkit-box-shadow: 0 0 2px rgba(30, 140, 190, 0.8), 0 10px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 2px rgba(30, 140, 190, 0.8), 0 10px 10px rgba(0, 0, 0, 0.1);
  border-radius: 0;
}

.selectize-control.multi .selectize-input.has-items {
  padding: 6px 6px 3px;
}

/*!
 * Spectrum Colorpicker v1.7.0
 * https://github.com/bgrins/spectrum
 * Author: Brian Grinstead
 * License: MIT
 *
 * Customized by KnitKode <dev@knitkode.com> (https://knitkode.com)
 */
.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;
  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;
  -ms-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, left top, right top, from(#fff), to(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, left bottom, left top, from(#000), to(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: -webkit-gradient(linear, left top, left bottom, from(#ff0000), color-stop(17%, #ffff00), color-stop(33%, #00ff00), color-stop(50%, #00ffff), color-stop(67%, #0000ff), color-stop(83%, #ff00ff), to(#ff0000));
  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 */

.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.
*/
/*!
 * Spectrum Colorpicker: WordPress Customize Theme
 * @author KnitKode <dev@knitkode.com> (https://knitkode.com)
 */
.sp-container {
  z-index: 1;
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 8px;
  max-width: 270px;
}

.sp-picker-container,
.sp-palette-container {
  width: 100%;
  padding: 8px 0 0;
}

.sp-preview,
.sp-thumb-el {
  position: relative;
}

.sp-preview-inner,
.sp-alpha-inner,
.sp-thumb-inner {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.sp-dd,
.sp-replacer {
  display: none;
}

.sp-fill {
  padding-top: 70%;
}

input[type=text].sp-input {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input[type=text].sp-input.sp-validation-error {
  background: #ffeeee;
  border-color: #eb9b9b;
}

.sp-color,
.sp-sat,
.sp-alpha {
  border-radius: 3px;
  border: 0;
}

.sp-val,
.sp-hue,
.sp-clear,
.sp-alpha-inner {
  border-radius: 3px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.4);
          box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.4);
  border: 0;
}

.sp-val {
  cursor: crosshair;
}

.sp-hue {
  cursor: pointer;
}

.sp-dragger {
  background: transparent;
  border: 5px solid #aaa;
  border-radius: 50%;
  border-color: rgba(128, 128, 128, 0.5);
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 8px;
  height: 8px;
  margin-top: 4px;
  margin-left: 4px;
  cursor: move;
  opacity: .5;
}

.sp-dragger:hover {
  border-color: #999;
  opacity: .8;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.75);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.75);
}

.sp-dragger::after {
  content: " ";
  position: absolute;
  bottom: -4px;
  right: -4px;
  left: -4px;
  top: -4px;
  border: 3px solid #f9f9f9;
  border-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

.sp-dragger:hover::after {
  border-color: #fff;
}

.sp-alpha,
.sp-clear-display {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);
  cursor: pointer;
}

.sp-slider {
  background: 0;
  margin: 0;
  right: -3px;
  left: -3px;
  border-style: solid;
  border-color: #aaa;
  border-width: 4px 3px;
  width: auto;
  height: 4px;
  margin-top: -2px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  opacity: .9;
  cursor: ns-resize;
}

.sp-slider::before {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: -3px;
  bottom: -3px;
  border: 2px solid #fff;
  border-radius: 3px;
}

.sp-alpha {
  top: 104%;
  height: 15%;
  max-height: 24px;
}

.sp-alpha-handle {
  background: 0;
  margin: 0;
  top: -3px;
  bottom: -3px;
  border-style: solid;
  border-color: #aaa;
  border-width: 3px 4px;
  height: auto;
  width: 4px;
  margin-left: -4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  opacity: .9;
  cursor: ew-resize;
}

.sp-alpha-handle::before {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -3px;
  right: -3px;
  border: 2px solid #fff;
  border-radius: 3px;
}

.sp-clear-enabled .sp-clear {
  top: 85%;
  height: 15%;
}

.sp-clear-enabled .sp-hue {
  top: 0;
  height: 81%;
}

.sp-clear-enabled.sp-alpha-enabled .sp-clear {
  top: 104%;
}

.sp-clear-enabled.sp-alpha-enabled .sp-hue {
  height: 100%;
}

.sp-clear-enabled.sp-alpha-enabled .sp-alpha {
  width: 85%;
}

.sp-color {
  right: 15%;
}

.sp-clear-enabled .sp-clear,
.sp-hue {
  left: 89%;
}

.sp-top {
  margin-bottom: 1%;
}

.sp-alpha-enabled .sp-top {
  margin-bottom: 15%;
}

.sp-thumb-el:first-child {
  margin-left: 0;
}

.sp-thumb-el:last-child {
  margin-right: 0;
}

.sp-palette {
  max-width: none;
}

.sp-palette .sp-thumb-active .sp-thumb-inner:before {
  content: "\f147";
  font-family: 'dashicons';
  text-align: center;
  font-size: 20px;
  line-height: 100%;
  color: #222;
}

.sp-palette .sp-thumb-dark.sp-thumb-active .sp-thumb-inner:before {
  color: #fff;
}

.sp-palette .sp-thumb-el {
  display: block;
  position: relative;
  float: left;
  width: 9%;
  height: 22px;
  margin: 1px;
  border: solid 2px transparent;
  cursor: pointer;
}

.sp-palette .sp-thumb-el:hover, .sp-palette .sp-thumb-el.sp-thumb-active {
  border-color: #0099d5;
}

.sp-palette-toggle {
  display: block;
  width: 100%;
  padding: 8px 0 0;
  background: 0;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #0099d5;
  text-align: center;
  outline: none;
  cursor: pointer;
}

.sp-palette-toggle:hover {
  color: #2ea2cc;
  text-decoration: underline;
}

.sp-show-initial .sp-input-container {
  float: right;
  width: auto;
}

.sp-initial {
  overflow: hidden;
}

.sp-initial .sp-palette-row-initial .sp-thumb-el:first-child .sp-thumb-inner {
  border-radius: 3px 0 0 3px;
}

.sp-initial .sp-thumb-el {
  display: block;
  float: left;
  height: 27px;
  width: 50%;
  border: 0;
  cursor: pointer;
}

/*!
 * Customize Plus v1.1.1 (https://knitkode.com/products/customize-plus)
 * Enhance and extend the WordPress Customize in your themes.
 * Copyright (c) 2014-2018 KnitKode <dev@knitkode.com> (https://knitkode.com/)
 * @license SEE LICENSE IN license.txt (Last change on: 24-1-2018)
 */
/**
 * Shadow on sidebar
 *
 * Add a subtle shadow to the customize sidebar when hovering it
 */
.wp-full-overlay.expanded .wp-full-overlay-sidebar {
  -webkit-transition: -webkit-box-shadow .3s ease-in-out;
  transition: -webkit-box-shadow .3s ease-in-out;
  transition: box-shadow .3s ease-in-out;
  transition: box-shadow .3s ease-in-out, -webkit-box-shadow .3s ease-in-out;
  -webkit-box-shadow: 0 0 0 0 transparent;
          box-shadow: 0 0 0 0 transparent;
}

.wp-full-overlay.expanded .wp-full-overlay-sidebar:hover {
  -webkit-box-shadow: 50px 0 85px -65px rgba(0, 0, 0, 0.15);
          box-shadow: 50px 0 85px -65px rgba(0, 0, 0, 0.15);
}

/**
 * Browser support dependent markup
 *
 * Show or hide DOM based on feature detection done with Modernizr.
 */
.kkcp-if-filereader,
.kkcp-if-no-filereader {
  display: none;
}

.filereader .kkcp-if-filereader,
.no-filereader .kkcp-if-no-filereader {
  display: block;
}

/**
 * Overflow fix.
 *
 * WordPress uses `overflow: hidden` on sections but this prevent us to use
 * popovers, dropdowns or typeahead elements dynamically appended to the
 * controls without having to attach them to the body (which is not a very common
 * feature in those js libraries...).
 */
#customize-theme-controls .customize-pane-child.open {
  min-height: 100%;
  overflow-y: visible;
}

/**
 * Make focus state of various element more prominent. Particularly useful
 * while navigating through the panels/sections with the keyboard.
 */
.accordion-section-title:focus,
.kkcpui-header-toggle:focus,
.customize-controls-close:focus,
.customize-section-back:focus,
.customize-panel-back:focus {
  -webkit-box-shadow: inset 0 0 0 1px rgba(30, 140, 190, 0.5), inset 0 0 6px 1px rgba(30, 140, 190, 0.2);
          box-shadow: inset 0 0 0 1px rgba(30, 140, 190, 0.5), inset 0 0 6px 1px rgba(30, 140, 190, 0.2);
}

/**
 * Control changes, class applied on wrapper div inside the `<li>`
 * container of each of our custom controls.
 *
 */
.kkcp-control {
  position: relative;
}

/**
 * Overall area
 * a wrapper, needed to bind the `mouseenter`, `mouseleave`
 * events on only one DOM element.
 */
/**
 * Toggle button
 *
 * @use `.kkcpui-control-btn`
 */
.kkcp-extras-btn {
  top: 6px;
  left: 1px;
  /**
   * Open state
   */
}

.kkcp-extras-open .kkcp-extras-btn {
  color: #333;
  opacity: 1;
}

/**
 * List inside extras menu
 *
 */
.kkcp-extras-list {
  z-index: 11;
  display: none;
  position: absolute;
  top: 29px;
  left: 20px;
  width: 256px;
  margin: 0 0 6px;
  padding: 6px;
  background: #fff;
  border: 1px solid #ddd;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.kkcp-has-scrollbar .kkcp-extras-list {
  width: 240px;
}

.kkcp-extras-open .kkcp-extras-list {
  display: block;
}

.kkcp-extras-list li {
  padding: 6px 9px;
  margin: 0;
  border-bottom: 1px solid #eee;
}

.kkcp-extras-list li:last-child {
  border-bottom: 0;
}

.kkcp-extras-list li:hover {
  margin: 0 -6px;
  padding: 6px 15px;
  background: #f6f6f6;
  cursor: pointer;
}

.kkcp-extras-list li.kkcp-disabled {
  cursor: default;
  opacity: .5;
}

.kkcp-extras-list li:before {
  font-size: 14px;
  font-weight: normal;
  font-family: 'dashicons';
  margin-right: 3px;
}

.kkcp-extras-reset_last:before {
  content: "\f474";
}

.kkcp-extras-reset_initial:before {
  content: "\f321";
}

.kkcp-extras-reset_factory:before {
  content: "\f308";
}

.kkcp-extras-hide:before {
  content: "\f177";
}

/**
 * Hide WordPress default loader
 *
 * We'll use our custom one with the css based spinner which will always spin
 * even the browsers freezes for a moment on load due to the intensive cpu
 * processing.
 */
#customize-preview.wp-full-overlay-main {
  display: none;
}

#customize-preview.wp-full-overlay-main.iframe-ready {
  display: block;
}

/**
 * Loaders overlays
 *
 */
.kkcp-overlay--preview,
.kkcp-overlay--sidebar {
  z-index: 1;
  left: 0;
  right: 0;
  width: auto;
  background: #eee;
}

.kkcp-overlay--preview .kkcp-text,
.kkcp-overlay--sidebar .kkcp-text {
  font-weight: 200;
}

.kkcp-overlay--preview h1,
.kkcp-overlay--sidebar h1 {
  font-size: 45px;
}

.kkcp-overlay--preview .spinner,
.kkcp-overlay--sidebar .spinner {
  float: none;
  display: inline-block;
  visibility: visible;
  margin: -3px 5px 0 0;
}

/**
 * Sidebar overlay
 */
.kkcp-overlay--sidebar {
  z-index: 10;
  position: fixed;
  left: 0;
  width: 300px;
  top: 46px;
  bottom: 46px;
  background-color: #eee;
  background-color: rgba(250, 250, 250, 0.88);
}

/**
 * Loading
 *
 * Utilities classes to apply on body to show the spinner in the header
 */
.kkcp-loading #customize-header-actions .spinner {
  visibility: visible;
  display: block;
}

.kkcp-show-on-loading {
  display: none;
}

.kkcp-loading .kkcp-show-on-loading {
  display: inline-block;
}

/**
 * Icons for panels and sections
 *
 * Add icon beside panel titles. This is now done dyanimaclly
 * in php based on the array given by the developer to customize plus.
 * In php we mimic the following style, let's keep this here anyway to
 * add icons to existing plugins or just for reference.
 *
 * To see the wordpress dashicons codes
 * @link( https://developer.wordpress.org/resource/dashicons/ )
 *
 * @see Customize_Manager class.
 */
/**
 * Panel icons
 */
#accordion-panel-widgets > h3:before, #accordion-panel-widgets .panel-title:before {
  content: "";
  position: relative;
  top: 4px;
  left: -2px;
  opacity: 0.4;
  font-size: 20px;
  font-weight: normal;
  font-family: 'dashicons';
}

#accordion-panel-nav_menus > h3:before, #accordion-panel-nav_menus .panel-title:before {
  content: "";
  position: relative;
  top: 4px;
  left: -2px;
  opacity: 0.4;
  font-size: 20px;
  font-weight: normal;
  font-family: 'dashicons';
}

/**
 * Section icons
 */
#accordion-section-posts > h3:before {
  content: "";
  position: relative;
  top: 4px;
  left: -2px;
  opacity: 0.4;
  font-size: 20px;
  font-weight: normal;
  font-family: 'dashicons';
}

/**
 * Icons for sections titles
 *
 * style icons present in the markup
 */
.accordion-section-title .dashicons {
  opacity: 0.4;
}

/**
 * Fix height issue on native WordPress widget panel icon
 */
.panel-title:before {
  line-height: 0;
}

/**
 * When markdown on control's descriptions and titles is enabled it
 * automatically wraps a simple text in a `<p>`, so we need to remove the
 * margin to it.
 */
.kkcp-markdown-supported .customize-control-title > p,
.kkcp-markdown-supported .customize-control-description p:first-child {
  margin: 0;
}

.kkcp-markdown-supported .kkcp-control code {
  font-size: 12px;
  font-weight: normal;
}

.kkcp-markdown-supported .kkcp-control .description code {
  font-style: normal;
  color: #c7254e;
}

/**
 * Generic class to apply some basic markdown styling
 * This style reset some of the WordPress style on the markdown to html areas.
 *
 * For instance used by the Content control.
 */
.kkcp-markdown {
  font-style: normal;
}

.kkcp-markdown h1,
.kkcp-markdown h2,
.kkcp-markdown h3 {
  font-weight: 400;
}

.kkcp-markdown h1 {
  font-size: 30px;
}

.kkcp-markdown h2 {
  font-size: 23px;
}

.kkcp-markdown h3 {
  font-size: 17px !important;
}

.kkcp-markdown ul {
  list-style: disc;
  margin: 0 0 1em 1em;
}

.kkcp-markdown ul ol, .kkcp-markdown ul ul {
  margin-top: 0;
  margin-bottom: 0;
}

.kkcp-markdown li > ul,
.kkcp-markdown li > ol {
  margin-top: 6px;
}

.kkcp-markdown ol {
  list-style: decimal;
  margin: 0 0 1em 1em;
}

.kkcp-markdown ol ol, .kkcp-markdown ol ul {
  margin-bottom: 1em;
}

.kkcp-markdown code {
  font-size: 12px;
  color: #c7254e;
  background: rgba(0, 0, 0, 0.07);
}

.kkcp-markdown table {
  margin: 1.3em 0;
  width: 100%;
  background: #f9f9f9;
  border-collapse: collapse;
}

.kkcp-markdown th {
  background: #fdfdfd;
}

.kkcp-markdown th,
.kkcp-markdown td {
  padding: 4px 8px;
  border: 1px solid #eee;
}

.kkcp-markdown pre {
  word-wrap: normal;
  background: rgba(0, 0, 0, 0.07);
  padding: 6px 8px;
  line-height: 1.4em;
}

.kkcp-markdown pre > code {
  padding: 0;
  margin: 0;
  font-size: 100%;
  word-break: normal;
  white-space: pre;
  background: transparent;
  border: 0;
}

.kkcp-markdown blockquote {
  padding: 0 1em;
  color: #6a737d;
  border-left: 0.25em solid #e1e1e1;
}

.kkcp-markdown hr {
  height: 0;
  margin: 15px 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #e1e1e1;
}

.kkcp-markdown hr:before {
  display: table;
  content: "";
}

.kkcp-markdown hr:after {
  display: table;
  clear: both;
  content: "";
}

/**
 * Custom notification template (with markdown)
 */
.kkcp-notification.notice p {
  margin: 0;
  padding: 0;
}

#customize-controls .kkcp-control .customize-control-notifications-container {
  margin-top: 9px;
}

/**
 * Style scrollbar of controls sidebar.
 *
 * To make the scrollbar less obtrusive make it thiner and hide the arrows.
 *
 */
#customize-controls ::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

#customize-controls ::-webkit-scrollbar-button {
  display: none;
  height: 0;
  width: 0;
}

#customize-controls ::-webkit-scrollbar-corner {
  background: transparent;
}

#customize-controls ::-webkit-scrollbar-track {
  border-top: 0 solid transparent;
  border-bottom: 0 solid transparent;
  background-clip: padding-box;
}

#customize-controls ::-webkit-scrollbar-track:vertical:hover {
  background-color: rgba(0, 0, 0, 0.035);
  -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.16), inset -1px -1px 0 rgba(0, 0, 0, 0.08);
}

#customize-controls ::-webkit-scrollbar-track:horizontal:hover {
  background-color: rgba(0, 0, 0, 0.035);
  -webkit-box-shadow: inset -1px 1px 0 rgba(0, 0, 0, 0.16), inset 1px -1px 0 rgba(0, 0, 0, 0.08);
}

#customize-controls ::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.16), inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

#customize-controls ::-webkit-scrollbar-thumb:horizontal {
  -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.16), inset -1px 0 0 rgba(0, 0, 0, 0.08);
}

#customize-controls ::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.24);
}

#customize-controls ::-webkit-scrollbar-thumb:active {
  background-color: rgba(0, 0, 0, 0.48);
  -webkit-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.32);
}

/**
 * Tabs
 *
 */
.kkcp-tabs {
  margin: 10px 0 0;
}

.kkcp-tabs > ul {
  float: left;
  width: 100%;
  border-bottom: 1px solid #dfdfdf;
}

.kkcp-tabs > ul > li {
  border-color: transparent;
  border-color: transparent;
  border-style: solid;
  border-width: 1px 1px 0;
  color: #999;
  float: left;
  margin: 0;
  padding: 3px 8px;
  outline: 0;
}

.kkcp-tabs > ul > li.kkcp-tab {
  cursor: pointer;
}

.kkcp-tabs > ul > li.selected {
  background: #fdfdfd;
  border-color: #dfdfdf;
  color: #777;
  margin-bottom: -1px;
  padding-bottom: 4px;
}

.kkcp-tabs > div {
  display: none;
  float: left;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 8px;
  padding-top: 12px;
  font-size: 13px;
}

.kkcp-tabs > div.selected {
  display: block;
}

/**
 * UI module, used within control's areas
 * This 'module' is extended in the Premium version of Customize Plus
 *
 */
.kkcpui {
  /**
   * Alternative small and simple spinner, three rounded squares in a row
   * from http://preloaders.net/en/rectangular
   */
  /**
   * Toggle button
   *
   * Used for toggle button within controls (i.e. in color and dynamic controls)
   */
  /**
   * Textarea
   */
  /**
   * Control button
   *
   * Shared style applied to button which are common for all the controls and
   * that are meant to be used as additional control specific content. Used for
   * the `extras` menu and `info` button. Buttons using this class should add
   * their specific class to determine their position inside the control area.
   */
  /**
   * Vertically align content
   */
  /**
   * Visibility
   */
  /**
   * Light text
   */
  /**
   * Lighter text
   */
}

.kkcpui-spinner {
  display: inline-block;
  width: 45px;
  height: 14px;
  background: url(data:image/gif;base64,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) center no-repeat;
}

.kkcpui-toggle {
  display: inline-block;
  vertical-align: top;
  padding: 0px 9px;
  line-height: 22px;
  border-radius: 0;
  border: 1px solid #ccc;
  background: #f7f7f7;
  -webkit-box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0, 0, 0, 0.08);
          box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0, 0, 0, 0.08);
  color: #555;
  font-size: 11px;
  text-decoration: none;
  cursor: pointer;
}

.kkcpui-toggle:hover, .kkcpui-toggle:focus {
  background: #fafafa;
  border-color: #999;
  color: #222;
}

.kkcpui-textarea {
  width: 100%;
}

.kkcpui-control-btn {
  z-index: 3;
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 21px;
  font-size: 15px;
  color: #aaa;
  opacity: 0;
  -webkit-transition: opacity .18s ease, color .18s ease;
  transition: opacity .18s ease, color .18s ease;
  cursor: pointer;
}

.kkcp-control:hover .kkcpui-control-btn {
  opacity: 1;
}

.kkcpui-midpoint {
  vertical-align: middle;
  display: inline-block;
}

.kkcpui-midpoint-wrap {
  text-align: center;
  vertical-align: middle;
  height: 100%;
}

.kkcpui-midpoint-wrap:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.kkcpui-hidden {
  display: none;
}

.kkcpui-light {
  color: #666;
}

.kkcpui-lighter {
  color: #bbb;
}

/**
 * Alert UI
 *
 * Used for instance in `kkcp_content` control
 */
.kkcpui-alert {
  border: 1px solid transparent;
  padding: 10px 15px;
  -webkit-box-shadow: 0 8px 14px -12px rgba(0, 0, 0, 0.18);
          box-shadow: 0 8px 14px -12px rgba(0, 0, 0, 0.18);
  border-radius: 3px;
}

.kkcpui-alert.light {
  background-color: white;
  border-color: #d9d9d9;
  color: #333333;
}

.kkcpui-alert.danger {
  background-color: #ffeeee;
  border-color: #eb9b9b;
  color: #3b0000;
}

.kkcpui-alert.warning {
  background-color: #ffffe6;
  border-color: #eaea95;
  color: #333300;
}

.kkcpui-alert.success {
  background-color: #ecffe7;
  border-color: #a8ea95;
  color: #0b3400;
}

.kkcpui-alert.info {
  background-color: #e7f5ff;
  border-color: #95c8ea;
  color: #001f34;
}

.kkcpui-alert p {
  margin: 5px 0;
}

.kkcpui-alert span.description {
  font-style: normal;
}

/**
 * Move the `padding` from the `<ul>` to the controls `<li>`s
 * so they are fullwidth in the sidebar, allowing a nice highlighting
 * in various situation like `:hover` or `.focus()`
 */
#customize-theme-controls .accordion-section-content,
#customize-theme-controls .customize-pane-child.accordion-section-content {
  padding: 0;
}

.customize-section-title {
  margin: 0;
}

.customize-control,
.customize-section-description {
  padding-left: 20px;
  padding-right: 12px;
}

.customize-section-description-container + #customize-control-custom_css:last-child {
  margin-bottom: 0;
}

/**
 * Control changes, class applied on `<li>` container of each of our custom
 * controls and WordPress native control as well
 *
 * Do not apply this on:
 * - `code_editor` native WordPress control
 * - `theme` native WordPress control
 */
.customize-control {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding-top: 6px;
  padding-bottom: 6px;
  border-color: transparent;
  border-style: solid;
  border-width: 1px 0;
  -webkit-transition: background-color .18s ease;
  transition: background-color .18s ease;
}

.customize-control:hover {
  background-color: #f3f3f3;
  border-color: #f1f1f1;
}

.customize-control:last-of-type {
  border-bottom: none;
  margin-bottom: 24px;
}

/**
 * Validation feedback styling
 */
.customize-control.has-error input,
.customize-control.has-error textarea,
.customize-control.has-error select,
.customize-control.has-error .selectize-input,
.customize-control.has-error .selectize-dropdown {
  border-color: #eb9b9b;
}

.customize-control.has-error input:focus,
.customize-control.has-error textarea:focus,
.customize-control.has-error select:focus,
.customize-control.has-error .selectize-input:focus,
.customize-control.has-error .selectize-dropdown:focus {
  -webkit-box-shadow: 0 0 4px #eb9b9b;
          box-shadow: 0 0 4px #eb9b9b;
}

/**
 * Highlight focused control (through WordPress API method control.focus())
 * adding the class `.kkcp-control-focused` to the `control.container`
 */
.kkcp-control-focused {
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  -webkit-animation: focus-control 2s ease;
          animation: focus-control 2s ease;
}

.kkcp-control-focused .no-cssanimations {
  background: #ffc;
}

@-webkit-keyframes focus-control {
  0% {
    -webkit-box-shadow: 0 0 0 transparent;
            box-shadow: 0 0 0 transparent;
    background: #eee;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  70% {
    -webkit-box-shadow: 0 0 80px rgba(0, 0, 0, 0.38);
            box-shadow: 0 0 80px rgba(0, 0, 0, 0.38);
    background: #ffc;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-box-shadow: 0 0 0 transparent;
            box-shadow: 0 0 0 transparent;
    background: #eee;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes focus-control {
  0% {
    -webkit-box-shadow: 0 0 0 transparent;
            box-shadow: 0 0 0 transparent;
    background: #eee;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  70% {
    -webkit-box-shadow: 0 0 80px rgba(0, 0, 0, 0.38);
            box-shadow: 0 0 80px rgba(0, 0, 0, 0.38);
    background: #ffc;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-box-shadow: 0 0 0 transparent;
            box-shadow: 0 0 0 transparent;
    background: #eee;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/**
 * Add a subtle background to section description areas
 */
.customize-section-description-container {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(45%, white), to(transparent));
  background: linear-gradient(white 45%, transparent 100%);
}

/**
 * Reset our control custom style on the Nav Menus and Widgets WordPress native
 * panels. Add also generic class to apply on panel `ul` container to reset the
 * control style.
 */
#customize-theme-controls .kkcp--reset-style.accordion-section-content.open,
#customize-theme-controls .kkcp--reset-style.customize-pane-child.accordion-section-content.open, #customize-theme-controls
.control-section-nav_menu.accordion-section-content.open,
#customize-theme-controls
.control-section-nav_menu.customize-pane-child.accordion-section-content.open, #customize-theme-controls
#sub-accordion-section-custom_css.accordion-section-content.open,
#customize-theme-controls
#sub-accordion-section-custom_css.customize-pane-child.accordion-section-content.open {
  padding: 12px 12px;
}

.kkcp--reset-style .customize-section-title,
.control-section-nav_menu .customize-section-title,
#sub-accordion-section-custom_css .customize-section-title {
  margin: -12px -12px 0 -12px;
}

.kkcp--reset-style .customize-control,
.control-section-nav_menu .customize-control,
#sub-accordion-section-custom_css .customize-control {
  padding: 0;
  margin-bottom: 12px;
  border: 0;
}

.kkcp--reset-style .customize-control:hover,
.control-section-nav_menu .customize-control:hover,
#sub-accordion-section-custom_css .customize-control:hover {
  background: transparent;
}

.kkcp--reset-style #customize-control-custom_css,
.control-section-nav_menu #customize-control-custom_css,
#sub-accordion-section-custom_css #customize-control-custom_css {
  margin-bottom: -12px;
}

.control-section-nav_menu .customize-control {
  margin-bottom: inherit;
}

/**
 * Control Buttonset
 *
 */
/**
 * Color Control
 *
 */
.kkcpcolor-toggle {
  margin-left: -1px;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.kkcpcolor-current {
  display: inline-block;
  width: 26px;
  height: 22px;
  border: 1px solid #ccc;
  border-radius: 3px 0 0 3px;
  -webkit-box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0, 0, 0, 0.08);
          box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0, 0, 0, 0.08);
  margin-left: 4px;
}

.kkcpcolor-current-bg {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);
}

.kkcpcolor-current-overlay {
  position: relative;
  -webkit-box-shadow: none;
          box-shadow: none;
  left: -37px;
  margin-right: -40px;
}

.kkcpcolor-input {
  display: none;
}

/**
 * Remove border and background from WordPress default color control.
 */
.customize-control .iris-border {
  background-color: transparent;
  border: 0;
}

/**
 * Control Content
 *
 */
.customize-control-kkcp_content:hover {
  background: inherit;
}

.customize-control-kkcp_content .kkcpui-alert {
  margin-left: -7px;
}

/**
 * Font Family Control
 *
 */
.customize-control-kkcp_font_family {
  /**
   * Highlight selectize area and make it more prominent
   * when hovering its control wrapper area
   */
}

.customize-control-kkcp_font_family .selectize-control {
  margin-top: 6px;
}

.customize-control-kkcp_font_family .selectize-input {
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.customize-control-kkcp_font_family:hover .selectize-input {
  border-color: #ddd;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
}

.customize-control-kkcp_font_family:hover .selectize-input.focus,
.customize-control-kkcp_font_family .selectize-input.focus {
  border-color: #5b9dd9;
  -webkit-box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
          box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
}

/**
 * Font Weight Control
 *
 */
/**
 * Control Icon
 *
 */
.customize-control-kkcp_icon .selectize-input {
  background: transparent;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/**
 * Selectize item
 */
.selectize-control .selectize-input > div.kkcp-icon-selectItem {
  padding: 9px !important;
  background: #fff;
  border: 0;
}

.selectize-control .selectize-input > div.kkcp-icon-selectItem > .remove {
  width: 100%;
  height: 100%;
  color: transparent;
}

/**
 * Selectize option
 */
[data-selectable].kkcp-icon-selectOption {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14.2857142857%;
  padding: 10px;
  overflow: visible;
  text-align: center;
  opacity: .8;
}

[data-selectable].kkcp-icon-selectOption.active {
  opacity: 1;
  color: #000;
  -webkit-box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8);
          box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8);
}

.selectize-control.plugin-remove_button .kkcp-icon-selectOption {
  padding: 10px !important;
}

/**
 * Selectize option header
 */
.kkcp-icon-selectHeader {
  margin: 4px 10px;
  padding-top: 8px;
  border-top: 1px solid #eee;
  text-align: center;
  color: #888;
}

.optgroup:first-child .kkcp-icon-selectHeader {
  border-top: 0;
}

/**
 * The remove button has to be less evident to don't interfere with the icon
 * visualization
 */
.selectize-control.plugin-remove_button [data-value] .remove {
  border-left-color: #eee;
  color: #999;
}

.selectize-control.plugin-remove_button [data-value] .remove:hover {
  color: #333;
}

/**
 * Control Multicheck
 *
 */
.customize-control-kkcp_multicheck {
  /**
   * Sortable multicheck
   */
}

.customize-control-kkcp_multicheck.ui-sortable {
  overflow-x: hidden;
}

.customize-control-kkcp_multicheck .description {
  margin-bottom: 9px;
}

.customize-control-kkcp_multicheck label {
  display: block;
  margin: 3px 0 6px;
}

.customize-control-kkcp_multicheck label:hover {
  color: #333;
}

.customize-control-kkcp_multicheck label:hover input[type=checkbox] {
  border-color: #333;
}

.customize-control-kkcp_multicheck input[type=checkbox] {
  margin-right: 9px;
}

.customize-control-kkcp_multicheck.ui-sortable > label:after {
  content: "\f156";
  font-family: 'dashicons';
  float: right;
  opacity: .6;
}

.customize-control-kkcp_multicheck.ui-sortable > label:hover:after {
  cursor: move;
  opacity: 1;
}

.customize-control-kkcp_multicheck.ui-sortable .ui-sortable-placeholder {
  background: #dbdbdb;
  -webkit-box-shadow: inset 0 0 8px 5px #eee;
          box-shadow: inset 0 0 8px 5px #eee;
  border-radius: 5px;
  visibility: visible !important;
}

/**
 * Control Number
 *
 */
/**
 * Control Password
 *
 */
.customize-control-kkcp_password .kkcp-password {
  display: block;
  position: relative;
}

.customize-control-kkcp_password .kkcp-password input[type="password"], .customize-control-kkcp_password .kkcp-password__preview {
  padding-right: 36px;
}

.customize-control-kkcp_password .kkcp-password__toggle {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  background: transparent;
  color: #aaa;
  height: 100%;
  width: 40px;
  cursor: pointer;
}

.customize-control-kkcp_password .kkcp-password__toggle:hover, .customize-control-kkcp_password .kkcp-password__toggle:focus {
  color: #333;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.customize-control-kkcp_password .kkcp-password input[type="password"], .customize-control-kkcp_password .kkcp-password__show {
  display: block;
}

.customize-control-kkcp_password .kkcp-password__preview, .customize-control-kkcp_password .kkcp-password__hide {
  display: none;
}

.customize-control-kkcp_password.kkcp-password-visible .kkcp-password__show,
.customize-control-kkcp_password.kkcp-password-visible input[type="password"] {
  display: none;
}

.customize-control-kkcp_password.kkcp-password-visible .kkcp-password__preview,
.customize-control-kkcp_password.kkcp-password-visible .kkcp-password__hide {
  display: block;
}

/**
 * Control Radio Image
 *
 */
.customize-control-kkcp_radio_image img {
  margin-right: 3px;
  border: 1px solid transparent;
  opacity: .4;
}

.customize-control-kkcp_radio_image img:hover {
  border-color: #222;
}

/**
 * The checkbox is there, just hidden, we don't use `display: none`
 * to be sure the checkbox receives focus, so we can "relay" the state
 * to the `<img>`.
 */
input[type=radio].kkcp-radio-image {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

input[type=radio].kkcp-radio-image:checked + label img {
  border-color: #aaa;
  opacity: 1;
  cursor: default;
}

input[type=radio].kkcp-radio-image:focus + label img {
  border-color: #5b9dd9;
  -webkit-box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
          box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
}

/**
 * Control Radio
 *
 */
.customize-control-kkcp_radio label {
  position: relative;
  display: block;
  padding: 5px 0;
}

.customize-control-kkcp_radio label:hover {
  color: #333;
}

.customize-control-kkcp_radio label:hover input[type=radio] {
  border-color: #333;
}

.customize-control-kkcp_radio small {
  opacity: .8;
  font-style: italic;
}

.customize-control-kkcp_radio small:hover {
  opacity: 1;
}

/**
 * Control Select
 *
 */
.customize-control-kkcp_select select {
  width: 99%;
}

/**
 * Control Slider
 *
 */
/**
 * Wrapper around slider.
 *
 * Let expand the units on the right as much as they need and
 * be sure to don't cut off the handle on the sides edges using
 * the padding in combinaiton with the negative margin.
 */
.kkcp-slider-wrap {
  overflow: hidden;
  padding: 0 10.6666666667px;
  margin-right: -8px;
}

.kkcp-inputs-wrap {
  float: right;
}

.kkcp-unit-wrap {
  float: right;
  margin-top: 1px;
}

/**
 * Slider number input
 *
 * When the slider has no unit this element is on its own, while when
 * there is the unit picker it is a children of `.kkcp-inputs-wrap`.
 */
.kkcp-slider-number,
input[type=number].kkcp-slider-number {
  float: right;
  width: auto;
  max-width: 32px;
  padding: 3px 0;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-weight: bold;
  background: transparent;
  margin: 0;
  text-align: right;
  -moz-appearance: textfield;
}

.kkcp-inputs-wrap .kkcp-slider-number, .kkcp-inputs-wrap
input[type=number].kkcp-slider-number {
  float: none;
  display: inline;
}

.kkcp-slider-number::-webkit-outer-spin-button, .kkcp-slider-number::-webkit-inner-spin-button,
input[type=number].kkcp-slider-number::-webkit-outer-spin-button,
input[type=number].kkcp-slider-number::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/**
 * Unit picker (`px`, `em`, `%`, etc.)
 *
 */
.kkcp-unit,
input[type=text].kkcp-unit {
  display: inline-block;
  width: 24px;
  height: 28px;
  line-height: 28px;
  margin-right: -1px;
  padding: 0 3px;
  border: 1px solid #dbdbdb;
  background: #f7f7f7;
  -webkit-box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0, 0, 0, 0.08);
          box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0, 0, 0, 0.08);
  font-size: 11px;
  text-align: center;
  cursor: pointer;
}

.kkcp-unit:last-child,
input[type=text].kkcp-unit:last-child {
  border-right-width: 1px;
}

.kkcp-unit:hover,
input[type=text].kkcp-unit:hover {
  background: #fbfbfb;
  border-color: #c8c8c8;
}

.kkcp-unit.kkcp-current,
input[type=text].kkcp-unit.kkcp-current {
  float: left;
  padding: 0;
  border-color: transparent;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-weight: bold;
  cursor: default;
  font-size: 12px;
}

/**
 * Control Sortable
 *
 */
.customize-control-kkcp_sortable.ui-sortable {
  overflow-x: hidden;
}

.customize-control-kkcp_sortable .kkcp-sortable {
  cursor: move;
}

.kkcp-sortable {
  padding: 4px 7px;
  border-bottom: 1px solid #dbdbdb;
  margin-bottom: 4px;
  background: #fbfbfb;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.kkcp-sortable:after {
  content: "\f156";
  font-family: 'dashicons';
  float: right;
  opacity: .6;
}

.kkcp-sortable:hover:after {
  cursor: move;
  opacity: 1;
}

.kkcp-sortable.ui-sortable-helper {
  font-weight: bold;
  background: #ffc;
}

.kkcp-sortable.ui-sortable-placeholder {
  background: #dbdbdb;
  -webkit-box-shadow: inset 0 0 8px 5px #eee;
          box-shadow: inset 0 0 8px 5px #eee;
  border-radius: 5px;
  visibility: visible !important;
  border-color: transparent;
}

.kkcp-sortable.ui-sortable-placeholder:after {
  content: "";
}

/**
 * Control Tags
 *
 */
/**
 * Control Text
 *
 */
/**
 * Control Textarea
 *
 */
.customize-control-kkcp_textarea .wp-editor-container textarea {
  margin-bottom: -5px;
  margin-top: 1px;
  background: transparent;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.mce-floatpanel {
  z-index: 999990 !important;
}

#wp-link-backdrop {
  z-index: 999991 !important;
}

#wp-link-wrap {
  z-index: 999992 !important;
}

/**
 * Control Toggle
 *
 */

@media only screen {
  /* Checkbox
 */
  .switch-light {
    position: relative;
    display: block;
    /* simulate default browser focus outlines on the switch,
   * when the inputs are focused.
   */
  }
  .switch-light::after {
    clear: both;
    content: "";
    display: table;
  }
  .switch-light *,
  .switch-light *:before,
  .switch-light *:after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .switch-light a {
    display: block;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  .switch-light label,
  .switch-light > span {
    /* breathing room for bootstrap/foundation classes.
     */
    line-height: 2em;
    vertical-align: middle;
  }
  .switch-light input:focus ~ span a,
  .switch-light input:focus + label {
    outline-width: 2px;
    outline-style: solid;
    outline-color: Highlight;
    /* Chrome/Opera gets its native focus styles.
     */
  }
  /* don't hide the input from screen-readers and keyboard access
 */
  .switch-light input {
    position: absolute;
    opacity: 0;
    z-index: 3;
  }
  .switch-light input:checked ~ span a {
    right: 0%;
  }
  /* inherit from label
 */
  .switch-light strong {
    font-weight: inherit;
  }
  .switch-light > span {
    position: relative;
    overflow: hidden;
    display: block;
    min-height: 2em;
    /* overwrite 3rd party classes padding
   * eg. bootstrap .well
   */
    padding: 0;
    text-align: left;
  }
  .switch-light span span {
    position: relative;
    z-index: 2;
    display: block;
    float: left;
    width: 50%;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .switch-light a {
    position: absolute;
    right: 50%;
    top: 0;
    z-index: 1;
    display: block;
    width: 50%;
    height: 100%;
    padding: 0;
  }
  /* Radio Switch
 */
  .switch-toggle {
    position: relative;
    display: block;
    /* simulate default browser focus outlines on the switch,
   * when the inputs are focused.
   */
    /* For callout panels in foundation
  */
    padding: 0 !important;
    /* 2 items
   */
    /* 3 items
   */
    /* 4 items
   */
    /* 5 items
   */
    /* 6 items
   */
  }
  .switch-toggle::after {
    clear: both;
    content: "";
    display: table;
  }
  .switch-toggle *,
  .switch-toggle *:before,
  .switch-toggle *:after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .switch-toggle a {
    display: block;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  .switch-toggle label,
  .switch-toggle > span {
    /* breathing room for bootstrap/foundation classes.
     */
    line-height: 2em;
    vertical-align: middle;
  }
  .switch-toggle input:focus ~ span a,
  .switch-toggle input:focus + label {
    outline-width: 2px;
    outline-style: solid;
    outline-color: Highlight;
    /* Chrome/Opera gets its native focus styles.
     */
  }
  .switch-toggle input {
    position: absolute;
    left: 0;
    opacity: 0;
  }
  .switch-toggle input + label {
    position: relative;
    z-index: 2;
    display: block;
    float: left;
    padding: 0 8px;
    margin: 0;
    text-align: center;
  }
  .switch-toggle a {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    z-index: 1;
    width: 10px;
    height: 100%;
  }
  .switch-toggle label:nth-child(2):nth-last-child(4),
  .switch-toggle label:nth-child(2):nth-last-child(4) ~ label,
  .switch-toggle label:nth-child(2):nth-last-child(4) ~ a {
    width: 50%;
  }
  .switch-toggle label:nth-child(2):nth-last-child(4) ~ input:checked:nth-child(3) + label ~ a {
    left: 50%;
  }
  .switch-toggle label:nth-child(2):nth-last-child(6),
  .switch-toggle label:nth-child(2):nth-last-child(6) ~ label,
  .switch-toggle label:nth-child(2):nth-last-child(6) ~ a {
    width: 33.33%;
  }
  .switch-toggle label:nth-child(2):nth-last-child(6) ~ input:checked:nth-child(3) + label ~ a {
    left: 33.33%;
  }
  .switch-toggle label:nth-child(2):nth-last-child(6) ~ input:checked:nth-child(5) + label ~ a {
    left: 66.66%;
  }
  .switch-toggle label:nth-child(2):nth-last-child(8),
  .switch-toggle label:nth-child(2):nth-last-child(8) ~ label,
  .switch-toggle label:nth-child(2):nth-last-child(8) ~ a {
    width: 25%;
  }
  .switch-toggle label:nth-child(2):nth-last-child(8) ~ input:checked:nth-child(3) + label ~ a {
    left: 25%;
  }
  .switch-toggle label:nth-child(2):nth-last-child(8) ~ input:checked:nth-child(5) + label ~ a {
    left: 50%;
  }
  .switch-toggle label:nth-child(2):nth-last-child(8) ~ input:checked:nth-child(7) + label ~ a {
    left: 75%;
  }
  .switch-toggle label:nth-child(2):nth-last-child(10),
  .switch-toggle label:nth-child(2):nth-last-child(10) ~ label,
  .switch-toggle label:nth-child(2):nth-last-child(10) ~ a {
    width: 20%;
  }
  .switch-toggle label:nth-child(2):nth-last-child(10) ~ input:checked:nth-child(3) + label ~ a {
    left: 20%;
  }
  .switch-toggle label:nth-child(2):nth-last-child(10) ~ input:checked:nth-child(5) + label ~ a {
    left: 40%;
  }
  .switch-toggle label:nth-child(2):nth-last-child(10) ~ input:checked:nth-child(7) + label ~ a {
    left: 60%;
  }
  .switch-toggle label:nth-child(2):nth-last-child(10) ~ input:checked:nth-child(9) + label ~ a {
    left: 80%;
  }
  .switch-toggle label:nth-child(2):nth-last-child(12),
  .switch-toggle label:nth-child(2):nth-last-child(12) ~ label,
  .switch-toggle label:nth-child(2):nth-last-child(12) ~ a {
    width: 16.6%;
  }
  .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(3) + label ~ a {
    left: 16.6%;
  }
  .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(5) + label ~ a {
    left: 33.2%;
  }
  .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(7) + label ~ a {
    left: 49.8%;
  }
  .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(9) + label ~ a {
    left: 66.4%;
  }
  .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(11) + label ~ a {
    left: 83%;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 0) {
  .switch-light input:focus ~ span a,
  .switch-light input:focus + label {
    outline-color: -webkit-focus-ring-color;
    outline-style: auto;
  }
  .switch-toggle input:focus ~ span a,
  .switch-toggle input:focus + label {
    outline-color: -webkit-focus-ring-color;
    outline-style: auto;
  }
}

@media (max-device-width: 480px) {
  .sp-color {
    right: 40%;
  }
  .sp-hue {
    left: 63%;
  }
  .sp-fill {
    padding-top: 60%;
  }
}

@media (max-width: 782px) {
  .sp-initial .sp-thumb-el {
    height: 31px;
  }
}
