/* nouislider - 10.0.0 - 2017-05-28 14:52:48 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -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;
}
.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;
}
.noUi-base,
.noUi-handle {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.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;
}
.noUi-target {
  background: #fafafa;
  border-radius: 4px;
  border: 1px solid #d3d3d3;
  box-shadow: inset 0 1px 1px #f0f0f0, 0 3px 6px -5px #bbb;
}
.noUi-connect {
  background: #3fb8af;
  border-radius: 4px;
  box-shadow: inset 0 0 3px rgba(51,51,51,0.45);
  -webkit-transition: background 450ms;
  transition: background 450ms;
}
.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 #fff, inset 0 1px 7px #ebebeb, 0 3px 6px -3px #bbb;
}
.noUi-active {
  box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ddd, 0 3px 6px -3px #bbb;
}
.noUi-handle:after,
.noUi-handle:before {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #e8e7e6;
  left: 14px;
  top: 6px;
}
.noUi-handle:after {
  left: 17px;
}
.noUi-vertical .noUi-handle:after,
.noUi-vertical .noUi-handle:before {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}
.noUi-vertical .noUi-handle:after {
  top: 17px;
}
[disabled] .noUi-connect {
  background: #b8b8b8;
}
[disabled] .noUi-handle,
[disabled].noUi-handle,
[disabled].noUi-target {
  cursor: not-allowed;
}
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
.noUi-marker {
  position: absolute;
  background: #ccc;
}
.noUi-marker-large,
.noUi-marker-sub {
  background: #aaa;
}
.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;
}
.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;
  white-space: nowrap;
}
.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%;
}
.makaira-filter__header {
  font-size: 18px;
  margin-bottom: 10px;
}
.makaira-form {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.makaira-filter__filter-headline {
  text-transform: uppercase;
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.makaira-filter__filter {
  width: 195px;
  margin: 0 15px 20px;
}
.makaira-filter__button {
  background-color: #fff;
  border: none;
  font-style: italic;
  line-height: 25px;
  padding-left: 0;
}
.makaira-filter__button:focus {
  outline: none;
}
.makaira-filter__list {
  list-style-type: none;
  padding: 0;
}
.makaira-filter__list .makaira-filter__list {
  padding-left: 10px;
}
.makaira-filter__item {
  font-size: 13px;
  margin-bottom: 5px;
}
.makaira-filter__item--hidden {
  display: none;
}
.makaira-filter__item:nth-child(n+7) {
  display: none;
}
.makaira-filter__list--expanded .makaira-filter__item:nth-child(n+7) {
  display: list-item;
}
.makaira-filter__list--inner .makaira-filter__item {
  display: list-item;
}
.makaira-filter__label {
  position: relative;
  padding-left: 20px;
}
.makaira-filter__label:hover {
  cursor: pointer;
}
.makaira-filter__filter--list .makaira-filter__label {
  padding-left: 0;
}
.makaira-filter__filter--list .makaira-filter__item--active .makaira-filter__label {
  font-weight: bold;
}
.makaira-input--checkbox {
  position: absolute;
  left: 0;
}
.makaira-filter__filter--list .makaira-input--checkbox {
  display: none;
}
.makaira-filter__slider-values {
  text-align: center;
}
.noUi-horizontal {
  height: 14px;
}
.noUi-horizontal .noUi-handle {
  width: 26px;
  height: 22px;
  top: -5px;
}
.noUi-handle:after,
.noUi-handle:before {
  height: 10px;
  left: 9px;
  top: 5px;
}
.noUi-handle:after {
  left: 14px;
}
.noUi-horizontal .noUi-handle-lower {
  left: -1px;
}
.noUi-horizontal .noUi-handle-upper {
  left: -25px;
}
.noUi-connect {
  background-color: #bbb;
}
.makaira-autosuggestion {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  background-color: #fff;
}
.makaira-autosuggestion__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  border: 1px solid #ececec;
  box-shadow: 0px 2px 4px 0 #8a8a8a;
}
.makaira-autosuggestion__list-item--header {
  padding: 5px 15px;
  background-color: #efefef;
  color: #009ec0;
}
.makaira-autosuggestion__list-item--product {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  margin: 10px 15px;
}
.makaira-autosuggestion__list-item--manufacturer {
  margin: 0 15px;
}
.makaira-autosuggestion__list-item--category,
.makaira-autosuggestion__list-item--link,
.makaira-autosuggestion__list-item--suggestion {
  margin: 5px 0;
}
.makaira-autosuggestion__list-item--show-all {
  margin: 15px;
  text-align: right;
}
.makaira-autosuggestion__submit {
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
}
.makaira-autosuggestion__submit:hover {
  text-decoration: underline;
}
.makaira-autosuggestion__link {
  display: flex;
  align-items: center;
}
.makaira-autosuggestion__image {
  flex: 0 0 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.makaira-autosuggestion__image img {
  max-height: 50px;
  max-width: 50px;
}
.makaira-autosuggestion__title {
  margin-left: 15px;
  pointer-events: none;
}
.makaira-search__results {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.makaira-search__result-header {
  font-size: 18px;
  margin: 0;
}
.makaira-search__result-list {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding-left: 10px;
  margin: 0;
}
.makaira-search__result-item {
  position: relative;
  flex: 0 0 20%;
  margin-top: 10px;
  margin: 10px 10px 0;
  padding: 0 12px;
  white-space: nowrap;
}
.makaira-search__result-item:before {
  content: '>';
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  color: #009ec0;
}
.makaira-cookie-banner {
  position: fixed;
  display: none;
  bottom: 0;
  z-index: 2030;
  background-color: rgba(255,255,255,0.95);
  box-shadow: 0 0 3px rgba(0,0,0,0.2);
}
.makaira-cookie-banner__container {
  position: relative;
}
.makaira-cookie-banner__hint {
  margin-top: 10px;
}
.makaira-cookie-banner__buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 10px;
}
.makaira-cookie-banner__buttons-close {
  font-family: "FontAwesome";
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}
.makaira-cookie-banner__buttons-close:after {
  content: '\f00d';
}
@media (min-width: 768px) {
  .makaira-cookie-banner__container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .makaira-cookie-banner__container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .makaira-cookie-banner__container {
    width: 1170px;
  }
}
