/*! nouislider - 9.2.0 - 2017-01-11 10:35:35 */
/* 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-tap-highlight-color: rgba(0, 0, 0, 0);
  -ms-touch-action: none;
  touch-action: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.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: 4px;
}
.noUi-horizontal .noUi-handle {
  width: 24px;
  height: 24px;
  left: -12px;
  top: -10px;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  left: -6px;
  top: -17px;
}
/* Styling;
 */
.noUi-target {
  background: #a3a3a3;
}
.noUi-connect {
  background: #007ac3;
  -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-radius: 50%;
  background: rgba(0, 122, 195, 0.5);
  cursor: pointer;
}
/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}
.noUi-handle:after {
  content: " ";
  left: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #007ac3;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 12px;
  height: 12px;
  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;
  font-size: 13px;
  position: absolute;
  border-radius: 3px;
  background: transparent;
  padding: 5px;
  text-align: center;
}
.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  white-space: nowrap;
  left: 50%;
  top: 120%;
}
.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}
.product-flag {
  color: #ffffff;
  background-color: #757575;
}
.product-flag.orange {
  background-color: #ea8f00;
}
.product-flag.green {
  background-color: #5A7E15;
}
.product-flag.dark-blue {
  background-color: #241866;
}
.product-card {
  background-color: #ffffff;
  padding: 24px 16px 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  font-family: 'FireSans', 'Open Sans', arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 243px;
  margin: 20px 8px 16px;
  position: relative;
}
@media (min-width: 992px) {
  .product-card {
    margin: 20px 8px 24px;
  }
}
@media (max-width: 767px) {
  .product-card {
    flex-direction: row;
    margin: 20px 16px 16px;
    align-items: start;
  }
}
.product-card__badges {
  position: absolute;
  top: -20px;
  width: 100%;
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .product-card__badges {
    left: 0px;
  }
}
.product-card__badge {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
  padding: 2px 8px;
  margin-right: 2px;
  color: #ffffff;
  border-radius: 2px 2px 0 0;
}
.product-card__badge--orange {
  background-color: #ea8f00;
}
.product-card__badge--blue {
  background-color: #007ac3;
}
.product-card__badge--dark-blue {
  background-color: #003D61;
}
.product-card__badge--red {
  background-color: #e5202e;
}
.product-card__image-url {
  display: flex;
}
.product-card__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media (max-width: 767px) {
  .product-card__info {
    margin-left: 24px;
    display: block;
  }
}
.product-card__image {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  width: 86px;
  height: 125px;
}
.product-card__category {
  font-size: 12px;
  line-height: 16px;
  width: 100%;
  text-align: center;
  margin-top: 26px;
  text-transform: uppercase;
  font-weight: 600;
  flex-basis: 100%;
}
@media (max-width: 767px) {
  .product-card__category {
    flex: 1;
    width: 100%;
    order: 3;
    margin-top: 16px;
    width: auto;
    text-align: left;
  }
}
.product-card__title {
  font-size: 14px;
  line-height: 22px;
  color: #007ac3;
  text-align: center;
  margin-top: 16px;
  height: 44px;
  align-items: center;
  display: flex;
  font-family: "FireSans", Helvetica, Arial, sans-serif;
}
@media (max-width: 767px) {
  .product-card__title {
    text-align: left;
    flex: 1;
    width: 100%;
    order: 2;
    font-weight: 600;
    margin: 0;
    max-height: 65px;
    height: auto;
    color: #007ac3;
  }
}
.product-card__title a {
  margin: auto;
  flex-basis: 100%;
  color: #007ac3;
}
@media (max-width: 767px) {
  .product-card__title a {
    margin: 0;
    color: #007ac3;
  }
}
.product-card__price {
  margin: 16px 0 24px;
  height: 48px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 767px) {
  .product-card__price {
    flex: 1;
    width: 100%;
    order: 3;
    margin: 16px 0 0 0;
    justify-content: left;
  }
}
.product-card__original-price {
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  text-decoration-line: line-through;
  color: #474747;
}
.product-card__current-price {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #717171;
  font-weight: 600;
}
@media (max-width: 767px) {
  .product-card__current-price {
    text-align: left;
  }
}
.product-card__details {
  font-family: 'FireSans', 'Open Sans', arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  text-decoration-line: underline;
  margin-top: 14px;
  color: #007ac3;
}
@media (max-width: 767px) {
  .product-card__details {
    display: none;
  }
}
@media (max-width: 767px) {
  .product-card__button {
    display: none;
  }
}
.product-card__button:disabled {
  background: #bfbfbf;
}
.scroll-to-top {
  margin-top: 16px;
  width: 48px;
  height: 48px;
  background-color: #474747;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  float: right;
  cursor: pointer;
}
@media (max-width: 767px) {
  .scroll-to-top {
    margin-right: 4px;
    width: 32px;
    height: 32px;
    margin-top: -16px;
  }
}
.scroll-to-top .icon {
  font-size: 27px;
}
@media (max-width: 767px) {
  .scroll-to-top .icon {
    font-size: 19px;
  }
}
[data-list-type] [data-list-type-button] {
  background-color: transparent;
}
[data-list-type="grid"] [data-list-type-button="grid"] {
  color: #5A7E15;
  background-color: #ffffff;
}
[data-list-type="list"] [data-list-type-button="list"] {
  color: #5A7E15;
  background-color: #ffffff;
}
.list-wrapper .title {
  text-align: center;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  font-family: 'FireSans', 'Open Sans', arial, sans-serif;
  margin: 0 0 24px;
}
@media (max-width: 767px) {
  .list-wrapper .title {
    margin: 0 0 16px;
  }
}
.list-wrapper .subtitle {
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  font-family: 'FireSans', 'Open Sans', arial, sans-serif;
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .list-wrapper .subtitle {
    display: none;
  }
}
.list-wrapper .shortlist-headline {
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 30px;
}
.list-wrapper .list-page-container {
  padding-left: 8px;
}
@media (max-width: 767px) {
  .list-wrapper .list-page-container {
    padding-left: 0;
  }
}
.list-wrapper .list-settings-wrapper {
  text-align: center;
  padding-top: 8px;
  padding-bottom: 24px;
}
@media (max-width: 767px) {
  .list-wrapper .list-settings-wrapper {
    padding-bottom: 36px;
  }
}
.list-wrapper .list-settings-wrapper .pagination-wrapper {
  display: inline-block;
  vertical-align: middle;
  background-color: transparent;
  position: absolute;
  margin-left: 128px;
  margin-right: 128px;
  left: 0;
  right: 0;
}
@media (min-width: 992px) and (max-width: 1299px) {
  .list-wrapper .list-settings-wrapper .pagination-wrapper {
    top: 96px;
    margin-left: 0;
    margin-right: 0;
    background-color: #a6d1eb;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .list-wrapper .list-settings-wrapper .pagination-wrapper {
    top: 96px;
    margin-left: 0;
    margin-right: 0;
    background-color: #a6d1eb;
  }
}
@media (max-width: 767px) {
  .list-wrapper .list-settings-wrapper .pagination-wrapper {
    display: none;
  }
}
.list-wrapper .list-settings-wrapper .item-count-wrapper {
  text-align: left;
  font-size: 14px;
  line-height: 22px;
  margin: 16px 16px 0 16px;
  display: inline-block;
  float: left;
}
@media (min-width: 768px) and (max-width: 991px) {
  .list-wrapper .list-settings-wrapper .item-count-wrapper {
    margin: 8px 16px 0 16px;
  }
}
@media (max-width: 767px) {
  .list-wrapper .list-settings-wrapper .item-count-wrapper {
    width: 100%;
    margin: 0;
    text-align: center;
  }
}
.list-wrapper .list-settings-wrapper .order-wrapper {
  display: inline-block;
  float: left;
  font-size: 12px;
  margin: 8px 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .list-wrapper .list-settings-wrapper .order-wrapper {
    margin: 0 auto;
  }
}
.list-wrapper .list-settings-wrapper .order-wrapper .btn-group.open .dropdown-toggle {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.list-wrapper .list-settings-wrapper .order-wrapper .bootstrap-select {
  font-size: 18px;
}
.list-wrapper .list-settings-wrapper .order-wrapper .bootstrap-select.open button:after {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}
.list-wrapper .list-settings-wrapper .order-wrapper .bootstrap-select button {
  padding: 8px 48px 8px 32px;
  color: #007ac3;
  font-weight: bold;
  font-size: 18px;
  background-color: #ffffff;
}
.list-wrapper .list-settings-wrapper .order-wrapper .bootstrap-select button span {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}
.list-wrapper .list-settings-wrapper .order-wrapper .bootstrap-select button .bs-caret {
  display: none;
}
.list-wrapper .list-settings-wrapper .order-wrapper .bootstrap-select button:after {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  position: absolute;
  right: 0;
  top: 0;
  font-weight: normal;
  pointer-events: none;
  line-height: 48px;
  width: 48px;
  height: 48px;
  text-align: center;
  font-size: 24px;
  content: "\e901";
  font-family: 'wk-icons';
}
@media (max-width: 767px) {
  .list-wrapper .list-settings-wrapper .order-wrapper .bootstrap-select button {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .list-wrapper .list-settings-wrapper .order-wrapper .bootstrap-select button {
    padding-left: 16px;
  }
}
.list-wrapper .list-settings-wrapper .order-wrapper .bootstrap-select + .bootstrap-select {
  margin-left: 64px;
}
@media (max-width: 991px) {
  .list-wrapper .list-settings-wrapper .order-wrapper .bootstrap-select + .bootstrap-select {
    margin-left: 16px;
  }
}
.list-wrapper .list-settings-wrapper .order-wrapper select {
  display: none;
}
.list-wrapper .list-settings-wrapper .order-wrapper .dropdown-menu {
  top: 100%;
  margin: 0;
  width: 100%;
  border: 0;
  padding: 0;
  min-width: initial;
}
.list-wrapper .list-settings-wrapper .order-wrapper .dropdown-menu ul.dropdown-menu.inner {
  margin: 0;
  border: 0 solid #007ac3;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.list-wrapper .list-settings-wrapper .order-wrapper .dropdown-menu ul.dropdown-menu.inner li {
  margin: 0;
  cursor: pointer;
}
.list-wrapper .list-settings-wrapper .order-wrapper .dropdown-menu ul.dropdown-menu.inner li.selected a,
.list-wrapper .list-settings-wrapper .order-wrapper .dropdown-menu ul.dropdown-menu.inner li.selected a:visited {
  color: #a3a3a3;
}
.list-wrapper .list-settings-wrapper .order-wrapper .dropdown-menu ul.dropdown-menu.inner li.selected a:focus,
.list-wrapper .list-settings-wrapper .order-wrapper .dropdown-menu ul.dropdown-menu.inner li.selected a:hover,
.list-wrapper .list-settings-wrapper .order-wrapper .dropdown-menu ul.dropdown-menu.inner li.selected a:active {
  background-color: transparent;
}
.list-wrapper .list-settings-wrapper .order-wrapper .dropdown-menu ul.dropdown-menu.inner li a,
.list-wrapper .list-settings-wrapper .order-wrapper .dropdown-menu ul.dropdown-menu.inner li a:visited {
  outline: 0;
  white-space: normal;
  line-height: 16px;
  padding: 8px 16px 8px 16px;
}
.list-wrapper .list-settings-wrapper .order-wrapper .dropdown-menu ul.dropdown-menu.inner li a .glyphicon,
.list-wrapper .list-settings-wrapper .order-wrapper .dropdown-menu ul.dropdown-menu.inner li a:visited .glyphicon {
  display: none;
}
.list-wrapper .list-settings-wrapper .order-wrapper .dropdown-menu ul.dropdown-menu.inner li a:focus,
.list-wrapper .list-settings-wrapper .order-wrapper .dropdown-menu ul.dropdown-menu.inner li a:hover,
.list-wrapper .list-settings-wrapper .order-wrapper .dropdown-menu ul.dropdown-menu.inner li a:active {
  background-color: #a6d1eb;
}
@media (max-width: 767px) {
  .list-wrapper .list-settings-wrapper .order-wrapper {
    float: none;
  }
}
@media (max-width: 767px) {
  .list-wrapper .list-settings-wrapper .order-wrapper .page-count {
    display: none;
  }
}
@media (max-width: 767px) {
  .list-wrapper .list-settings-wrapper .order-wrapper .order-property {
    width: 100%;
  }
}
.list-wrapper .list-settings-wrapper .layout-wrapper {
  float: right;
  font-size: 0;
}
.list-wrapper .list-settings-wrapper .layout-wrapper .btn {
  font-size: 32px;
  line-height: 32px;
  padding: 16px;
  width: 64px;
  text-align: center;
}
.list-wrapper .list-settings-wrapper .layout-wrapper .btn:hover,
.list-wrapper .list-settings-wrapper .layout-wrapper .btn:focus,
.list-wrapper .list-settings-wrapper .layout-wrapper .btn.focus {
  color: #5A7E15;
  background-color: #ffffff;
}
.list-wrapper .list-settings-wrapper .layout-wrapper .btn .icon {
  display: block;
}
@media (max-width: 991px) {
  .list-wrapper .list-settings-wrapper .layout-wrapper .btn {
    margin: 0;
    width: 48px;
    line-height: 48px;
    font-size: 24px;
    padding: 12px;
  }
}
@media (max-width: 767px) {
  .list-wrapper .list-settings-wrapper .layout-wrapper {
    display: none;
  }
}
@media (max-width: 767px) {
  .list-wrapper .list-settings-wrapper {
    padding-top: 0;
  }
}
.list-wrapper .list-filter-wrapper {
  background-color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .list-wrapper .list-filter-wrapper {
    margin-top: -16px;
    display: none;
  }
}
@media (min-width: 768px) {
  .list-wrapper .list-filter-wrapper {
    margin-top: 65px;
  }
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper {
  padding: 16px 16px 32px;
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper .filter-headline {
  display: inline-flex;
  padding: 8px 0 24px;
  justify-content: space-between;
  width: 100%;
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper .filter-headline h4 {
  font-family: 'FireSans', 'Open Sans', arial, sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 18px;
  margin: 0;
}
@media (max-width: 767px) {
  .list-wrapper .list-filter-wrapper .filter-category-wrapper .filter-headline h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
  }
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper .filter-headline h4.title {
  font-size: 21px;
  margin: 16px 0;
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper .filter-headline .filter-reset {
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  text-decoration: underline;
  background: transparent;
  border: 0;
}
@media (max-width: 767px) {
  .list-wrapper .list-filter-wrapper .filter-category-wrapper .filter-headline .filter-reset {
    display: none;
  }
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper .filter-close {
  display: none;
}
@media (max-width: 767px) {
  .list-wrapper .list-filter-wrapper .filter-category-wrapper .filter-close {
    display: block;
    float: right;
    font-size: 25.5px;
    font-weight: bold;
    line-height: 1;
    color: #000;
  }
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper .range-slider-wrapper {
  padding: 0 32px;
  margin-bottom: 16px;
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper ul.filter-category-list li {
  display: block;
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper ul.filter-category-list li a,
.list-wrapper .list-filter-wrapper .filter-category-wrapper ul.filter-category-list li a:visited {
  font-weight: lighter;
  font-size: 19px;
  line-height: 24px;
  display: block;
  padding: 8px 32px;
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper ul.filter-category-list li a:focus,
.list-wrapper .list-filter-wrapper .filter-category-wrapper ul.filter-category-list li a:hover,
.list-wrapper .list-filter-wrapper .filter-category-wrapper ul.filter-category-list li a:active {
  text-decoration: none;
  background-color: #a3a3a3;
  color: #ffffff;
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper .search_fields_wrapper {
  padding: 24px 0;
  border-top: 1px solid rgba(191, 191, 191, 0.5);
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper .search_fields_wrapper h4 {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
  margin-bottom: 8px;
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper .search_fields_wrapper .filter-body {
  display: block;
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper .search_fields_wrapper .filter-body--more {
  height: 118px;
  overflow: hidden;
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper .search_fields_wrapper .filter-body--more.open {
  height: auto;
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper .search_fields_wrapper .show-more {
  display: none;
  cursor: pointer;
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper .search_fields_wrapper .show-more__toggle-text {
  font-size: 12px;
  line-height: 20px;
  color: #474747;
  position: relative;
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper .search_fields_wrapper .show-more__toggle-text:after {
  content: '\e901';
  font-size: 15px;
  font-family: "wk-icons";
  position: absolute;
  right: -19px;
  top: -3px;
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper .search_fields_wrapper .show-more.open .show-more__toggle-text:after {
  content: '\e915';
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper .search_fields_wrapper .filter-checkbox {
  display: table;
  width: 100%;
  margin-bottom: 8px;
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper .search_fields_wrapper .filter-checkbox input {
  display: none;
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper .search_fields_wrapper .filter-checkbox input:checked + .checkbox-icon-wrapper .icon {
  background: #007ac3;
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper .search_fields_wrapper .filter-checkbox .checkbox-text {
  display: table-cell;
  vertical-align: middle;
  font-size: 14px;
  line-height: 22px;
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper .search_fields_wrapper .filter-checkbox .checkbox-text a {
  color: #5A7E15;
  text-decoration: underline;
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper .search_fields_wrapper .filter-checkbox .checkbox-icon-wrapper {
  display: table-cell;
  width: 20px;
  vertical-align: middle;
  padding-right: 8px;
  cursor: pointer;
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper .search_fields_wrapper .filter-checkbox .checkbox-icon-wrapper .icon {
  border: 1px solid #717171;
  background: #ffffff;
  color: #ffffff;
  display: block;
  height: 20px;
  font-size: 12px;
  padding: 3px;
  width: 20px;
  font-weight: 900;
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper .search_fields_wrapper .filter-button {
  margin: 0 8px 7px 0;
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper .search_fields_wrapper .filter-button input {
  display: none;
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper .search_fields_wrapper .filter-button input:checked + .checkbox-text {
  background-color: #007ac3;
  color: #ffffff;
  border: 1px solid #007ac3;
}
.list-wrapper .list-filter-wrapper .filter-category-wrapper .search_fields_wrapper .filter-button .checkbox-text {
  height: 32px;
  cursor: pointer;
  border: 1px solid rgba(191, 191, 191, 0.6);
  font-size: 14px;
  line-height: 22px;
  padding: 5px 10px;
  background-color: #f1f1f1;
}
.list-wrapper .list-filter-wrapper .filter-footer-mobile {
  display: none;
}
@media (max-width: 767px) {
  .list-wrapper .list-filter-wrapper .filter-footer-mobile {
    display: flex;
    justify-content: space-between;
    padding: 14px 16px;
    box-shadow: 1px -2px 8px rgba(75, 90, 99, 0.1);
  }
}
.list-wrapper .list-filter-wrapper .filter-footer-mobile .filter-reset {
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  text-decoration: underline;
  background: transparent;
  border: 0;
  margin-left: 24px;
}
.list-wrapper .list-filter-wrapper .filter-footer-mobile button {
  font-weight: 400;
}
.list-wrapper .list-filter-wrapper .filter-footer-mobile button .filter-result-counter {
  font-weight: 600;
}
.list-wrapper .filter-and-sort {
  margin: 0 16px 26px;
}
.list-wrapper .filter-and-sort .filter-list-toggler .btn {
  text-align: left;
  padding: 8px 15px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 18px;
}
.list-wrapper .filter-and-sort .filter-list-toggler .btn svg {
  width: 16px;
}
@media (min-width: 768px) {
  .list-wrapper .filter-and-sort .filter-list-toggler {
    display: none;
  }
}
.list-wrapper .container nav {
  background-color: #a6d1eb;
  text-align: center;
  font-size: 0;
}
.list-wrapper .container nav .paging_bottom {
  background-color: #a6d1eb;
  margin: 0;
  display: inline-block;
  /*a:first-child, a:last-child {
        .link-all({
          color: transparent;
          background-color: @blue;
        }, {
          background-color: @blue25;
        });
      }
      a:first-child:before, a:last-child:before {
        font-family: 'wk-icons' !important;
        vertical-align: middle;
        color: @white;
      }
      a:first-child:before {
        content: '\e916';
      }
      a:last-child:before {
        content: '\e902';
      }*/
}
@media (min-width: 768px) and (max-width: 991px) {
  .list-wrapper .container nav .paging_bottom {
    top: 96px;
  }
}
.list-wrapper .container nav .paging_bottom:before,
.list-wrapper .container nav .paging_bottom:after {
  content: " ";
  display: table;
}
.list-wrapper .container nav .paging_bottom:after {
  clear: both;
}
.list-wrapper .container nav .paging_bottom a.disabled:not(.prev):not(.next):not(.first):not(.last) {
  background-color: #ffffff;
}
.list-wrapper .container nav .paging_bottom a,
.list-wrapper .container nav .paging_bottom a:visited {
  margin: 0;
  display: inline-block;
  font-size: 21px;
  line-height: 24px;
  width: 64px;
  color: #007ac3;
  padding: 20px 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
.list-wrapper .container nav .paging_bottom a:focus,
.list-wrapper .container nav .paging_bottom a:hover,
.list-wrapper .container nav .paging_bottom a:active {
  background-color: #ffffff;
  text-decoration: none;
}
.list-wrapper .container nav .paging_bottom a:first-child,
.list-wrapper .container nav .paging_bottom a:last-child,
.list-wrapper .container nav .paging_bottom a.prev,
.list-wrapper .container nav .paging_bottom a.next,
.list-wrapper .container nav .paging_bottom a:first-child:visited,
.list-wrapper .container nav .paging_bottom a:last-child:visited,
.list-wrapper .container nav .paging_bottom a.prev:visited,
.list-wrapper .container nav .paging_bottom a.next:visited {
  color: #ffffff;
  background-color: #007ac3;
}
.list-wrapper .container nav .paging_bottom a:first-child:focus,
.list-wrapper .container nav .paging_bottom a:last-child:focus,
.list-wrapper .container nav .paging_bottom a.prev:focus,
.list-wrapper .container nav .paging_bottom a.next:focus,
.list-wrapper .container nav .paging_bottom a:first-child:hover,
.list-wrapper .container nav .paging_bottom a:last-child:hover,
.list-wrapper .container nav .paging_bottom a.prev:hover,
.list-wrapper .container nav .paging_bottom a.next:hover,
.list-wrapper .container nav .paging_bottom a:first-child:active,
.list-wrapper .container nav .paging_bottom a:last-child:active,
.list-wrapper .container nav .paging_bottom a.prev:active,
.list-wrapper .container nav .paging_bottom a.next:active {
  background-color: #00619c;
}
@media (max-width: 767px) {
  .list-wrapper .container nav .paging_bottom {
    width: 100%;
    margin: 0;
    display: table;
    table-layout: fixed;
  }
  .list-wrapper .container nav .paging_bottom a,
  .list-wrapper .container nav .paging_bottom a:visited {
    display: table-cell;
    width: 100%;
    float: none;
  }
}
.list-wrapper .mobile-navigation .pagination-wrapper {
  background-color: #a6d1eb;
}
@media (max-width: 767px) {
  .list-wrapper .mobile-navigation {
    display: block;
  }
}
.load-more-product {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  margin: 15px 0;
  cursor: pointer;
}
.filter-added-items-wrapper {
  margin: 0 16px;
  display: none;
}
@media (max-width: 767px) {
  .filter-added-items-wrapper {
    display: block;
  }
}
.filter-added-items-wrapper .filter-added-items {
  height: 32px;
  cursor: pointer;
  border: 1px solid rgba(191, 191, 191, 0.6);
  font-size: 14px;
  line-height: 22px;
  padding: 5px 10px;
  background-color: #f1f1f1;
  float: left;
  margin: 0 8px 8px 0;
  display: inline-block;
}
.filter-added-items-wrapper .filter-added-items .icon {
  margin-left: 8px;
}
.pb15 {
  margin-top: 30px;
  padding: 50px 0 200px 0;
  font-size: 18px;
}
.modal-wrapper {
  font-size: 16px;
}
.modal-wrapper .add-to-cart-modal .container {
  width: 40%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .modal-wrapper .add-to-cart-modal .container {
    width: 100%;
  }
}
.modal-wrapper .add-to-cart-modal .container .modal-dialog {
  width: 100%;
  margin: 0;
}
.modal-wrapper .add-to-cart-modal .container .modal-dialog .modal-content {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: none;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 64px;
  margin-right: 64px;
  padding-left: 64px;
  background: transparent;
}
@media (max-width: 991px) {
  .modal-wrapper .add-to-cart-modal .container .modal-dialog .modal-content {
    margin-right: 32px;
    padding-left: 32px;
  }
}
.modal-wrapper .add-to-cart-modal .container .modal-dialog .modal-content .left-top {
  background: #007ac3;
  left: 0;
  color: white;
  padding: 8px;
font-family: 'FireSans', 'Open Sans', arial, sans-serif;
  font-size: 24px;
  line-height: 32px;
  display: inline-block;
  position: absolute;
  height: 48px;
}
@media (max-width: 991px) {
  .modal-wrapper .add-to-cart-modal .container .modal-dialog .modal-content .left-top {
    margin-bottom: -48px;
    line-height: 32px;
    font-size: 24px;
    padding: 8px 8px 8px 32px;
  }
}
.modal-wrapper .add-to-cart-modal .container .modal-dialog .modal-content .modal-footer {
  text-align: center;
}
.modal-wrapper .add-to-cart-modal .container .modal-dialog .modal-content .modal-footer .add-to-cart-modal-button {
  padding: 16px 16px;
  margin-top: 16px;
}
.modal-wrapper .add-to-cart-modal .container .modal-dialog .modal-content .close {
  background: #007ac3;
  color: white;
  position: absolute;
  opacity: 1;
  right: 0;
  top: 0;
  height: 48px;
  width: 48px;
}
@media (max-width: 991px) {
  .modal-wrapper .add-to-cart-modal .container .modal-dialog .modal-content .close {
    height: 48px;
    width: 48px;
  }
}
.modal-wrapper .add-to-cart-modal .container .modal-dialog .modal-content .close:hover {
  background: #409cd2;
}
.modal-wrapper .add-to-cart-modal .container .modal-dialog .modal-content .close .wk-close {
  margin: 0 auto;
}
.modal-wrapper .add-to-cart-modal .container .modal-dialog .modal-content .box-content {
  background: white;
  padding: 64px;
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .modal-wrapper .add-to-cart-modal .container .modal-dialog .modal-content .box-content {
    padding-top: 48px;
    padding-right: 16px;
    padding-left: 16px;
  }
}
.modal-wrapper .add-to-cart-modal .container .modal-dialog .modal-content .box-content .product-wrapper {
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 991px) {
  .modal-wrapper .add-to-cart-modal .container .modal-dialog .modal-content .box-content .product-wrapper {
    margin-top: 16px;
    font-size: 16px;
  }
}
.modal-wrapper .add-to-cart-modal .container .modal-dialog .modal-content .box-content .progress-info {
  padding-top: 16px;
}
.modal-wrapper .add-to-cart-modal .container .modal-dialog .modal-content .box-content .separation {
  border-bottom: 1px solid #a3a3a3;
  padding-bottom: 20px;
}
.modal-wrapper .add-to-cart-modal .container .modal-dialog .modal-content .buttons-wrapper {
  background: white;
  text-align: center;
  padding-bottom: 32px;
}
.modal-wrapper .add-to-cart-modal .container .modal-dialog .modal-content .buttons-wrapper .go-to-cart-button {
  font-size: 16px;
  line-height: 23px;
  margin-top: 16px;
  padding: 8px !important;
}
.modal-wrapper .add-to-cart-modal .container .modal-dialog .modal-content .buttons-wrapper .continue-shopping-button {
  font-size: 16px;
  line-height: 23px;
  margin-top: 16px;
  padding: 8px !important;
  margin-right: 16px;
}
@media (max-width: 991px) {
  .modal-wrapper .add-to-cart-modal .container .modal-dialog .modal-content .buttons-wrapper .continue-shopping-button {
    margin-right: 0;
  }
}
/*# sourceMappingURL=list.css.map */
