/*! nouislider - 9.1.0 - 2016-12-10 16:00:32 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
  direction: ltr;
}
.noUi-base {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  /* Fix 401 */
}
.noUi-connect {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
}
.noUi-origin {
  position: absolute;
  height: 0;
  width: 0;
}
.noUi-handle {
  position: relative;
  z-index: 1;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
  transition: top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Painting and performance;
 * Browsers can paint handles in their own layer.
 */
.noUi-base,
.noUi-handle {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}
.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  left: -17px;
  top: -6px;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  left: -6px;
  top: -17px;
}
/* Styling;
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #f0f0f0, 0 3px 6px -5px #bbbbbb;
}
.noUi-connect {
  background: #106eaa;
  box-shadow: inset 0 0 3px rgba(51, 51, 51, 0.45);
  -webkit-transition: background 450ms;
  transition: background 450ms;
}
/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #ffffff, inset 0 1px 7px #ebebeb, 0 3px 6px -3px #bbbbbb;
}
.noUi-active {
  box-shadow: inset 0 0 1px #ffffff, inset 0 1px 7px #dddddd, 0 3px 6px -3px #bbbbbb;
}
/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}
.noUi-handle:after {
  left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}
.noUi-vertical .noUi-handle:after {
  top: 17px;
}
/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}
/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
/* Values;
 *
 */
.noUi-value {
  position: absolute;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}
.noUi-marker-sub {
  background: #AAA;
}
.noUi-marker-large {
  background: #AAA;
}
/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}
.noUi-value-horizontal {
  -webkit-transform: translate3d(-50%, 50%, 0);
  transform: translate3d(-50%, 50%, 0);
}
.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}
/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}
.noUi-value-vertical {
  -webkit-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
  padding-left: 25px;
}
.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}
.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
}
.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}
@-webkit-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.uil-ring-css {
  background: none;
  position: relative;
  width: 72px;
  height: 72px;
  display: block;
  margin: 0 auto;
}
.uil-ring-css > div {
  position: absolute;
  display: block;
  width: 36px;
  height: 36px;
  top: 20px;
  left: 20px;
  border-radius: 80px;
  box-shadow: 0 2px 0 0 #106EAA;
  -ms-animation: uil-ring-anim 1s linear infinite;
  -moz-animation: uil-ring-anim 1s linear infinite;
  -webkit-animation: uil-ring-anim 1s linear infinite;
  -o-animation: uil-ring-anim 1s linear infinite;
  animation: uil-ring-anim 1s linear infinite;
}
/**
 * Sliders
 */
.ck-slider-handles,
.ck-time-handles {
  clear: both;
  width: 100%;
  margin-bottom: 20px;
}
.ck-slider-handles:after,
.ck-time-handles:after {
  content: '';
  display: table;
  clear: both;
}
.ck-slider-handles .noUi-target,
.ck-time-handles .noUi-target {
  margin-bottom: 20px;
}
.ck-slider-handles .min,
.ck-time-handles .min {
  float: left;
}
.ck-slider-handles .max,
.ck-time-handles .max {
  float: right;
}
.ck-slider-handles .min,
.ck-time-handles .min,
.ck-slider-handles .max,
.ck-time-handles .max {
  position: relative;
  width: 30%;
  height: 30px;
}
.ck-slider-handles .min input,
.ck-time-handles .min input,
.ck-slider-handles .max input,
.ck-time-handles .max input,
.ck-slider-handles .min select,
.ck-time-handles .min select,
.ck-slider-handles .max select,
.ck-time-handles .max select {
  margin: 0;
  line-height: 30px;
}
.ck-slider-handles .min input,
.ck-time-handles .min input,
.ck-slider-handles .max input,
.ck-time-handles .max input {
  padding-left: 30px;
}
.ck-slider-handles .min .desc,
.ck-time-handles .min .desc,
.ck-slider-handles .max .desc,
.ck-time-handles .max .desc {
  position: absolute;
  top: 12px;
  left: 4px;
  margin: auto;
  text-transform: uppercase;
  font-size: .75em;
  opacity: 0.5;
  line-height: 1;
}
.ck-slider-handles .min,
.ck-slider-handles .max {
  max-width: 100px;
}
.ck-time-handles .min,
.ck-time-handles .max {
  max-width: 200px;
}
.ck-time-handles .min select,
.ck-time-handles .max select,
.ck-time-handles .min input,
.ck-time-handles .max input {
  float: left;
  width: 50%;
  line-height: 1;
}
.ck-time-handles .min select,
.ck-time-handles .max select {
  font-size: 0.875em;
}
/**
 * Archive
 */
@media screen and (min-width: 768px) {
  .post-type-archive-products .hentry,
  .tax-product_category .hentry,
  .ck_product_categories .hentry {
    width: 30%;
    float: left;
    margin-right: 5%;
  }
  .post-type-archive-products .hentry:nth-child(3n+3),
  .tax-product_category .hentry:nth-child(3n+3),
  .ck_product_categories .hentry:nth-child(3n+3) {
    margin-right: 0;
  }
  .post-type-archive-products .hentry:nth-child(3n+1),
  .tax-product_category .hentry:nth-child(3n+1),
  .ck_product_categories .hentry:nth-child(3n+1) {
    clear: both;
  }
}

.post-type-archive-products .hentry h2,
.tax-product_category .hentry h2,
.ck_product_categories .hentry h2 {
  font-size: 1.5rem;
}
.ck_product_categories .ck_term {
  display: block;
  text-align: center;
  margin-bottom: 40px;
}

/**
 * Buttons
 */
.ck_button.ck_button-fullwidth {
  width: 100%;
}
.ck_button:hover a,
.ck_button:hover {
  color: white;
}
.ck-product-thumb {
  text-align: center;
}
.hidden {
  display: none;
}
/**
 * Filter
 */
.ck-filter-categories {
  margin-bottom: 20px;
}
.ck-filter-categories:after {
  content: '';
  display: table;
  clear: both;
}
.ck-filter-categories .filter input,
.ck-filter-categories .filter select {
  margin: 0;
  line-height: 1;
  height: 30px;
}
.ck-filter-categories .filter {
  width: 100%;
}
.ck-filter-categories .filter select {
  line-height: 40px;
  height: 40px;
  padding: 0 1.5em 0 0.5em;
}
@media screen and (min-width: 768px) {
  .ck-filters-2 .filter {
    width: 48%;
    margin-right: 4%;
    float: left;
  }
  .ck-filters-2 .filter:last-child {
    margin-right: 0;
  }
  .ck-filters-3 .filter {
    width: 32%;
    margin-right: 2%;
    float: left;
  }
  .ck-filters-3 .filter:last-child {
    margin-right: 0;
  }
}
.product_search_form_widget .filter {
  width: 100%;
  clear: both;
}
.product_search_form_widget .ck-slider-handles .min,
.product_search_form_widget .ck-time-handles .min,
.product_search_form_widget .ck-slider-handles .max,
.product_search_form_widget .ck-time-handles .max {
  clear: both;
  width: 100%;
  max-width: 100%;
}
/**
 * Tabs
 */
.ck-product-tabs {
  width: 100%;
  border-radius: 3px;
}
.ck-product-tabs:after {
  content: '';
  display: table;
  clear: both;
}
.ck-product-tabs .ck-product-tabs_content {
  padding: 0.5em 1em;
  font-size: 14px;
}
.ck-product-tabs .ck-product-tabs_content:before,
.ck-product-tabs .ck-product-tabs_content:after {
  content: '';
  display: table;
}
.ck-product-tabs .ck-product-tabs_content:after {
  clear: both;
}
.ck-product-tabs .ck-product-tabs_content h2 {
  font-size: 1.5em;
}
.ck-product-tabs .ck-product-tabs_content .ck-button {
  font-size: .75em;
}
.ck-product-tabs .ck-product-tabs_list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ck-product-tabs .ck-product-tabs_list li a {
  display: block;
  width: 100%;
  padding: 0.5em 1em;
  background: rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #106eaa;
}
.ck-product-tabs .ck-product-tabs_list li a.active {
  background: rgba(0, 0, 0, 0.1);
  color: #333;
}
@media screen and (min-width: 768px) {
  .ck-product-tabs:not(.horizontal) .ck-product-tabs_content {
    float: right;
    width: 70%;
  }
  .ck-product-tabs:not(.horizontal) .ck-product-tabs_list {
    width: 30%;
    float: left;
  }
  .ck-product-tabs.horizontal .ck-product-tabs_list:after,
  .ck-product-tabs.horizontal .ck-product-tabs_list:before {
    content: '';
    display: table;
  }
  .ck-product-tabs.horizontal .ck-product-tabs_list:after {
    clear: both;
  }
  .ck-product-tabs.horizontal .ck-product-tabs_list li {
    display: block;
    text-align: center;
    float: left;
    width: auto !important;
  }
  .ck-product-tabs.horizontal .ck-product-tabs_list.ck-product-tabs_list-2 li {
    width: 50%;
  }
  .ck-product-tabs.horizontal .ck-product-tabs_list.ck-product-tabs_list-3 li {
    width: 33%;
  }
  .ck-product-tabs.horizontal .ck-product-tabs_list.ck-product-tabs_list-4 li {
    width: 25%;
  }
  
}
@media screen and (min-width: 1025px) {
  .ck-product-tabs .ck-specification-category {
    float: left;
    width: 50%;
    margin-top: 20px;
  }
  .ck-product-tabs .ck-specification-category-3 {
    clear: both;
  }
  .ck-product-tabs .ck-specification-category-3,
  .ck-product-tabs .ck-specification-category-1 {
    padding-right: 10px;
  }
}
/**
 * Distributors
 */
.type-distributors.hentry {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .type-distributors.hentry {
    float: left;
    width: 50%;
  }
}
.type-distributors:nth-child(2n+1) {
  clear: both;
}
.ck-distributor-title {
  font-size: 1.25em;
}
.distributors_widget .type-distributors.hentry {
  float: none;
  width: 100%;
}
.distributors_widget .ck-distributor-title {
  font-size: 1em;
}

.distributors-list:before,
.ck_products-list:before,
.ck_product_categories:before,
.distributors-list:after,
.ck_products-list:after,
.ck_product_categories:after {
  content: '';
  display: table;
}
.distributors-list:after,
.ck_products-list:after,
.ck_product_categories:after {
  clear: both;
}

.ck_product_categories { 
  margin-top: 25px;
}
/**
 * Terms
 */
.ck_terms {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.ck_terms li {
  display: inline-block;
  margin-right: 0.5em;
}
.ck_terms a {
  padding: 0.25em .5em;
  background-color: #106eaa;
  color: white;
  border-radius: 3px;
}
.ck_terms a:hover {
  color: white;
  background-color: #0c507b;
}
.ck_product_categories .ck_term {
   display: block;
   text-align: center;
}

/**
 * Inputs
 */
.ck-select {
  height: 40px;
  line-height: 20px;
  padding: 10px;
  margin-bottom: 20px;
}
/**
 * Alert
 */
.ck-alert {
  display: block;
  border-radius: 3px;
  width: 100%;
  padding: 10px;
  background-color: rgba(16, 110, 170, 0.2);
  color: #106eaa;
  margin-bottom: 20px;
}
.ck-alert.alert-error {
  background-color: rgba(240, 65, 36, 0.2);
  color: #f04124;
}
.ck-alert.alert-nobg {
  background-color: transparent;
  color: #333;
}
