/*! nouislider - 10.1.0 - 2017-07-28 17:11:18 */
/* 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 #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;
}
/* 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 #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;
}
/* 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;
  white-space: nowrap;
  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;
  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%;
}
*{box-sizing:border-box}*::before,*::after{box-sizing:border-box}html{height:100%;font-family:sans-serif;font-size:10px;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;min-height:100%;position:relative;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{height:100%;margin:0;background:#efefef;font-family:"Montserrat","Helvetica Neue",sans-serif;font-size:14px}#wrapper{height:100%;display:flex;flex-direction:column}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}a,.encoded-link{cursor:pointer;background-color:transparent;color:#777;text-decoration:none}a:hover,a:focus,.encoded-link:hover,.encoded-link:focus{color:#515151;text-decoration:underline}a:focus,.encoded-link:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}a:hover,a:active,.encoded-link:hover,.encoded-link:active{outline:0}b,strong{font-weight:bold}h1{font-size:2em;margin:0.67em 0}img{border:0}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal;background-color:unset}input::-ms-clear{height:32px;width:32px}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}.form-control{padding:0 10px}.form-control:focus{box-shadow:none;outline:none}.title{color:#18A45C;padding:10px 0;font-size:1.2em;font-weight:bold}h1,h2,h3,h4,h5,h6{font-weight:500}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){h1,h2,h3,h4,h5,h6{font-weight:bold}}@supports (-ms-ime-align: auto){h1,h2,h3,h4,h5,h6{font-weight:bold}}.small{font-size:0.65em;font-weight:400;line-height:1.2}label{display:inline-block;max-width:100%}button{background-color:unset}.main-container{padding-top:0;flex-grow:1}.price{font-size:1.7rem;font-weight:bold}.divider{margin:0;border-top:1px solid #e4e4e4}.sub-text{color:#bbb}.text{text-align:center;display:block}.img-helper{display:inline-block;vertical-align:middle;height:100%}.important{color:#8D1D2C;font-weight:bold}.visually-hidden{display:none}.container{margin-right:auto;margin-left:auto}@media screen and (min-width: 770px){.container{width:770px}}@media screen and (min-width: 992px){.container{width:992px}}@media screen and (min-width: 1200px){.container{width:1200px}}.container-colored{background-color:#f3fafe}.input-group{display:flex;align-items:center;justify-content:space-between;line-height:1}.input-group button{border-radius:0;border-right:0}.input-group input,.input-group button{border:none;height:100%;width:100%}.input-group input:focus,.input-group button:focus{box-shadow:none;outline:none}.input-group input::-ms-clear{display:none}.input-group-btn{align-self:stretch;height:auto}.input-group-label{flex-basis:auto;padding-right:8px}.input-group-reset{order:100;flex-shrink:0;margin-left:8px}.input-group-reset .icon{height:100%;width:100%}.input-group-input{box-shadow:none}.input-group-input:focus{outline:none}.input-group .icon{flex-shrink:0}.btn{border:1px solid #18A45C;border-radius:5px;color:#18A45C;padding:15px 10px;display:inline-block}.btn.inverted{background-color:#18A45C;color:white}.btn:hover{background-color:white;color:#18A45C}.action-button{padding-left:10px;padding-right:10px;font-weight:400;color:#fff;border:1px #158e50 solid;border-radius:3px;line-height:2.2;background-color:#18A45C}.action-button:hover,.action-button:active,.action-button:focus{background-color:#158e50;border-color:#158e50;color:#fff}.header-body{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;float:inherit}header{background-color:white;border-bottom:1px #eaeaea solid;border-radius:0;margin-bottom:0}.logo{margin:10px 10px 10px 0;display:inline-block}@media screen and (max-width: 769px){.logo{margin-left:10px}}.logo-with-text{display:inline-block}.logo img{height:38px}.logo .text{margin:-5px 3px 0 42px;font-size:0.75em;font-weight:normal;text-transform:lowercase;text-align:right}@media screen and (max-width: 769px){.logo-with-text .text{display:none}}.top-section{clear:both}.carousel-cell{border-bottom:0;counter-increment:carousel-cell;display:inline-block;width:200px}.carousel-cell a{text-decoration:none}@media screen and (min-width: 770px){.carousel-cell.tile{margin-top:9px}}.top-section{-webkit-overflow-scrolling:touch}.top-section-no-js{overflow-y:scroll}.carousel-no-js{white-space:nowrap}.carousel-slider{white-space:nowrap;overflow-x:auto;text-align:center;scroll-snap-type:x mandatory}.carousel-slider::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 3px rgba(0,0,0,0.1);background-color:#f5f5f5;border-radius:5px}.carousel-slider::-webkit-scrollbar{width:3px;height:10px;background-color:#f5f5f5}.carousel-slider::-webkit-scrollbar-thumb{border-radius:5px;background-color:#18A45C}.carousel-slider .top-section-no-js{overflow-y:unset}.carousel-slider .carousel-cell{scroll-snap-align:start}.keyword-queries{margin-left:20px;margin-right:20px}.keyword-queries .carousel-title{color:black;font-size:2.1rem;font-weight:normal;margin:20px 0 40px 10px}.keyword-queries .carousel-tile{width:100%}@media screen and (min-width: 480px){.keyword-queries .carousel-tile{width:50%}}@media screen and (min-width: 661px){.keyword-queries .carousel-tile{width:33.33333%}}@media screen and (min-width: 770px){.keyword-queries .carousel-tile{width:33.33333%}}@media screen and (min-width: 992px){.keyword-queries .carousel-tile{width:25%}}@media screen and (min-width: 1200px){.keyword-queries .carousel-tile{width:20%}}.keyword-queries .carousel-tile img{height:100px}.keyword-queries .carousel-tile a{margin:0 10px;width:auto;display:flex;flex-direction:column}.keyword-queries .carousel-btn{top:calc(50% + 25px)}.keyword-query-tile__title{align-self:center;background-color:#E8F6EF;border-radius:20px;padding:5px 15px;position:absolute;top:-17px;color:black;font-size:2rem}.keyword-query-tile__content{border:1px solid #18A45C;border-radius:3px;padding:35px 10px 10px;position:relative}.keyword-query-tile__relevant-offer{font-size:1.6rem;overflow:hidden;padding-top:10px;text-decoration:underline;text-overflow:ellipsis;white-space:nowrap}.keyword-query-tile__relevant-offer:first-child{padding-top:5px}.top-categories{margin-left:20px;margin-right:20px}.top-categories .carousel-title{color:black;font-size:2.1rem;font-weight:normal;margin:20px 0 30px 10px}.top-categories .carousel-tile{width:100%}@media screen and (min-width: 480px){.top-categories .carousel-tile{width:50%}}@media screen and (min-width: 661px){.top-categories .carousel-tile{width:33.33333%}}@media screen and (min-width: 770px){.top-categories .carousel-tile{width:33.33333%}}@media screen and (min-width: 992px){.top-categories .carousel-tile{width:25%}}@media screen and (min-width: 1200px){.top-categories .carousel-tile{width:20%}}.top-categories .carousel-tile a{display:flex;flex-direction:column;width:auto;margin:0 10px;padding:20px 20px 10px;text-align:center;justify-content:center}.top-categories .carousel-btn{top:calc(50% + 25px)}.top-category-tile__content{align-items:center;background-color:#E8F6EF;border-radius:3px;height:100%}.top-category-tile__title{color:black;font-size:1.6rem;margin-top:20px}.top-category-tile__icon{background-position:center;background-repeat:no-repeat;width:125px;height:75px}.top-category-tile__icon[data-category-id="12913"]{background-image:url("data:image/svg+xml,    %3Csvg width='86px' height='73px' viewBox='0 0 86 73' version='1.1' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' xmlns%3Axlink='http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E      %3Cg id='Symbols' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linejoin='round'%3E        %3Cg id='icon%2Ffood' transform='translate%282.000000%2C 2.000000%29' stroke='%2318A45C' stroke-width='3'%3E          %3Cg id='Group-1077' transform='translate%2837.000000%2C 0.000000%29'%3E            %3Cpolygon id='Stroke-691' stroke-linecap='round' points='38.65625 68.03125 6.34375 68.03125 0.46875 0.46875 44.53125 0.46875'%3E%3C%2Fpolygon%3E            %3Cline x1='2.51119375' y1='23.96875' x2='42.4876313' y2='23.96875' id='Stroke-692'%3E%3C%2Fline%3E          %3C%2Fg%3E          %3Cg id='Group-26' transform='translate%280.000000%2C 9.000000%29'%3E            %3Cg id='Group-1149'%3E              %3Cpath d='M24%2C57.25 C27.75%2C57.25 25.25%2C59.75 32.75%2C59.75 C40.25%2C59.75 47.75%2C44.75 47.75%2C34.75 C47.75%2C24.75 41.5%2C17.25 34%2C17.25 C26.5%2C17.25 26.5%2C19.75 24%2C19.75 C21.5%2C19.75 21.5%2C17.25 14%2C17.25 C6.5%2C17.25 0.25%2C24.75 0.25%2C34.75 C0.25%2C44.75 7.75%2C59.75 15.25%2C59.75 C22.75%2C59.75 20.25%2C57.25 24%2C57.25 L24%2C57.25 Z' id='Stroke-705' fill='%23E8F6EF'%3E%3C%2Fpath%3E              %3Cg id='Group-24' transform='translate%2821.000000%2C 10.250000%29 scale%28-1%2C 1%29 translate%28-21.000000%2C -10.250000%29 translate%288.000000%2C 0.250000%29'%3E                %3Cpath d='M10%2C19.5 L10%2C14.5 C10%2C11.75 7.75%2C9.5 5%2C9.5 L0%2C9.5' id='Stroke-706' stroke-linecap='round'%3E%3C%2Fpath%3E                %3Cpath d='M14%2C11.25 C20.2125%2C11.25 25.25%2C6.215 25.25%2C0 C19.0375%2C0 14%2C5.04 14%2C11.25 L14%2C11.25 Z' id='Stroke-707' fill='%23E8F6EF'%3E%3C%2Fpath%3E              %3C%2Fg%3E            %3C%2Fg%3E          %3C%2Fg%3E        %3C%2Fg%3E      %3C%2Fg%3E    %3C%2Fsvg%3E  ")}.top-category-tile__icon[data-category-id="7032"]{background-image:url("data:image/svg+xml,    %3Csvg width='71px' height='70px' viewBox='0 0 71 70' version='1.1' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' xmlns%3Axlink='http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E      %3Cg id='----5.1.-Ganze-Seite-%28redesign%29' stroke='%2318A45C' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linejoin='round'%3E        %3Cg id='WL_NoResultsPage_Kategories' transform='translate%28-1946.000000%2C -123.000000%29' stroke='%24color-mountain-meadow' stroke-width='3'%3E          %3Cg id='Group-688' transform='translate%281948.000000%2C 124.000000%29'%3E            %3Cpath d='M15.0402083%2C27.8474167 C15.0402083%2C34.2436667 11.7764583%2C39.4295 7.74854167%2C39.4295 C3.720625%2C39.4295 0.456875%2C34.2436667 0.456875%2C27.8474167 C0.456875%2C21.4511667 3.720625%2C16.2653333 7.74854167%2C16.2653333 C11.7764583%2C16.2653333 15.0402083%2C21.4511667 15.0402083%2C27.8474167 L15.0402083%2C27.8474167 Z' id='Stroke-5516'%3E%3C%2Fpath%3E            %3Cpath d='M30.5434583%2C11.0197083 C30.773875%2C16.8297083 27.9942917%2C21.653875 24.3397083%2C21.7967917 C20.6822083%2C21.9455417 17.5322083%2C17.3547083 17.3017917%2C11.547625 C17.071375%2C5.737625 19.8480417%2C0.913458333 23.5055417%2C0.767625 C27.1630417%2C0.621791667 30.3130417%2C5.21554167 30.5434583%2C11.0197083 L30.5434583%2C11.0197083 Z' id='Stroke-5517'%3E%3C%2Fpath%3E            %3Cpath d='M52.1136667%2C27.8474167 C52.1136667%2C34.2436667 55.3774167%2C39.4295 59.4053333%2C39.4295 C63.43325%2C39.4295 66.697%2C34.2436667 66.697%2C27.8474167 C66.697%2C21.4511667 63.43325%2C16.2653333 59.4053333%2C16.2653333 C55.3774167%2C16.2653333 52.1136667%2C21.4511667 52.1136667%2C27.8474167 L52.1136667%2C27.8474167 Z' id='Stroke-5518'%3E%3C%2Fpath%3E            %3Cpath d='M36.6104167%2C11.0197083 C36.38%2C16.8297083 39.1595833%2C21.653875 42.8141667%2C21.7967917 C46.4716667%2C21.9455417 49.6216667%2C17.3547083 49.8520833%2C11.547625 C50.0825%2C5.737625 47.3058333%2C0.913458333 43.6483333%2C0.767625 C39.9908333%2C0.621791667 36.8408333%2C5.21554167 36.6104167%2C11.0197083 L36.6104167%2C11.0197083 Z' id='Stroke-5519'%3E%3C%2Fpath%3E            %3Cpath d='M43.5290417%2C38.124 C42.5315417%2C33.1510833 39.5477917%2C27.1806667 33.577375%2C27.1806667 C27.6069583%2C27.1806667 24.6232083%2C33.1510833 23.6257083%2C38.124 C22.552375%2C43.4906667 13.6740417%2C47.0810833 13.6740417%2C55.0435833 C13.6740417%2C70.3765 53.4807083%2C70.3765 53.4807083%2C55.0435833 C53.4807083%2C47.0810833 44.602375%2C43.4906667 43.5290417%2C38.124 L43.5290417%2C38.124 Z' id='Stroke-5520'%3E%3C%2Fpath%3E          %3C%2Fg%3E        %3C%2Fg%3E      %3C%2Fg%3E    %3C%2Fsvg%3E  ")}.top-category-tile__icon[data-category-id="2400"]{background-image:url("data:image/svg+xml,    %3Csvg width='125px' height='54px' viewBox='0 0 125 54' version='1.1' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' xmlns%3Axlink='http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E      %3Cg id='----5.1.-Ganze-Seite-%28redesign%29' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linejoin='round'%3E        %3Cg id='WL_NoResultsPage_Kategories' transform='translate%28-1717.000000%2C -139.000000%29' stroke='%2318A45C'%3E          %3Cg id='Group-4' transform='translate%281719.000000%2C 141.000000%29'%3E            %3Cg id='Group-521' transform='translate%2880.000000%2C 0.000000%29' stroke-width='3'%3E              %3Cpath d='M17.3902174%2C43.4782609 L16.3032609%2C43.4782609 C14.401087%2C43.4782609 12.7576087%2C42.15 12.3597826%2C40.2891304 L7.64891304%2C18.3021739 C7.06630435%2C15.6 9.13586957%2C13.0434783 11.898913%2C13.0434783 L29.4032609%2C13.0434783 C32.1684783%2C13.0434783 34.2336957%2C15.6 33.6532609%2C18.3021739 L28.9423913%2C40.2891304 C28.5445652%2C42.15 26.901087%2C43.4782609 24.998913%2C43.4782609 L23.9119565%2C43.4782609' id='Stroke-3676'%3E%3C%2Fpath%3E              %3Cpath d='M23.9119565%2C38.0434783 C23.9119565%2C36.2434783 22.451087%2C34.7826087 20.651087%2C34.7826087 C18.848913%2C34.7826087 17.3902174%2C36.2434783 17.3902174%2C38.0434783 L17.3902174%2C46.7391304 C17.3902174%2C48.5391304 18.848913%2C50 20.651087%2C50 C22.451087%2C50 23.9119565%2C48.5391304 23.9119565%2C46.7391304 L23.9119565%2C38.0434783 L23.9119565%2C38.0434783 Z' id='Stroke-3677'%3E%3C%2Fpath%3E              %3Cpolyline id='Stroke-3678' points='8.64673913 22.9663043 20.651087 30.3880435 32.6076087 22.8271739'%3E%3C%2Fpolyline%3E              %3Cpolyline id='Stroke-3679' points='8.37195652 14.8521739 18.4763043 21.7391304 20.6502174 30.3869565'%3E%3C%2Fpolyline%3E              %3Cpolyline id='Stroke-3680' points='32.9323913 14.8521739 22.8258696 21.7391304 20.6519565 30.3869565'%3E%3C%2Fpolyline%3E              %3Cpath d='M10.8684783%2C13.1686957 L10.8684783%2C9.78173913 C10.8684783%2C4.37956522 15.248913%2C-0.000869565217 20.651087%2C-0.000869565217 C26.0532609%2C-0.000869565217 30.4336957%2C4.37956522 30.4336957%2C9.78173913 L30.4336957%2C13.1665217' id='Stroke-3681'%3E%3C%2Fpath%3E              %3Cline x1='33.1669565' y1='15.2173913' x2='41.2343478' y2='15.2173913' id='Stroke-3682' stroke-linecap='round'%3E%3C%2Fline%3E              %3Cline x1='8.13630435' y1='15.2173913' x2='0.0667391304' y2='15.2173913' id='Stroke-3683' stroke-linecap='round'%3E%3C%2Fline%3E            %3C%2Fg%3E            %3Cg id='Group-524' transform='translate%280.000000%2C 4.000000%29' stroke-linecap='round' stroke-width='3.00245098'%3E              %3Cpath d='M3.47426471%2C42.5061275 C3.47426471%2C44.1643353 4.82275645%2C45.5085784 6.47358281%2C45.5085784 L9.48229954%2C45.5085784 C11.1387772%2C45.5085784 12.4816176%2C44.1609612 12.4816176%2C42.5061275 L12.4816176%2C39.5036765 L3.47426471%2C39.5036765 L3.47426471%2C42.5061275 Z' id='Stroke-1410'%3E%3C%2Fpath%3E              %3Cpath d='M57.5183824%2C42.5061275 C57.5183824%2C44.1643353 58.8668741%2C45.5085784 60.5177005%2C45.5085784 L63.5264172%2C45.5085784 C65.1828948%2C45.5085784 66.5257353%2C44.1609612 66.5257353%2C42.5061275 L66.5257353%2C39.5036765 L57.5183824%2C39.5036765 L57.5183824%2C42.5061275 Z' id='Stroke-1411'%3E%3C%2Fpath%3E              %3Cpolyline id='Stroke-1413' points='45.5070772 39.5036765 69.526685 39.5036765 69.526685 27.4938725 60.5193321 18.4865196 9.47766544 18.4865196 0.4703125 27.4938725 0.4703125 39.5036765 45.48992 39.5036765'%3E%3C%2Fpolyline%3E              %3Cpolygon id='Stroke-1414' points='54.5144301 0.471813725 15.4825674 0.471813725 9.47766544 18.4865196 60.5193321 18.4865196'%3E%3C%2Fpolygon%3E              %3Cpolygon id='Stroke-1415' points='0.471813725 18.4865196 9.47916667 18.4865196 9.47916667 12.4816176 0.471813725 12.4816176'%3E%3C%2Fpolygon%3E              %3Cpolygon id='Stroke-1416' points='60.5208333 18.4865196 69.5281863 18.4865196 69.5281863 12.4816176 60.5208333 12.4816176'%3E%3C%2Fpolygon%3E              %3Cpolygon id='Stroke-1417' points='0.471813725 33.4987745 12.4816176 33.4987745 12.4816176 27.4938725 0.471813725 27.4938725'%3E%3C%2Fpolygon%3E              %3Cpolygon id='Stroke-1418' points='57.5183824 33.4987745 69.5281863 33.4987745 69.5281863 27.4938725 57.5183824 27.4938725'%3E%3C%2Fpolygon%3E              %3Cline x1='34.9984988' y1='27.4938725' x2='34.9984988' y2='24.4914216' id='Stroke-1419'%3E%3C%2Fline%3E            %3C%2Fg%3E          %3C%2Fg%3E        %3C%2Fg%3E      %3C%2Fg%3E    %3C%2Fsvg%3E  ")}.top-category-tile__icon[data-category-id="3626"]{background-image:url("data:image/svg+xml,    %3Csvg width='93px' height='56px' viewBox='0 0 93 56' version='1.1' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' xmlns%3Axlink='http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E      %3Cg id='Symbols' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E        %3Cg id='icon%2Foutdoor' transform='translate%282.000000%2C 2.000000%29' stroke='%2318A45C' stroke-width='3'%3E          %3Cpath d='M31.0532309%2C36.3831921 C31.0532309%2C44.9564619 24.102048%2C51.9076448 15.5287782%2C51.9076448 C6.95983404%2C51.9076448 4.60076421e-13%2C44.9564619 4.60076421e-13%2C36.3831921 C4.60076421e-13%2C27.8099223 6.95983404%2C20.8544138 15.5287782%2C20.8544138 C24.102048%2C20.8544138 31.0532309%2C27.8099223 31.0532309%2C36.3831921 L31.0532309%2C36.3831921 Z' id='Stroke-3226'%3E%3C%2Fpath%3E          %3Cpath d='M89.2731727%2C36.3831921 C89.2731727%2C44.9564619 82.3263153%2C51.9076448 73.74872%2C51.9076448 C65.1841013%2C51.9076448 58.2242673%2C44.9564619 58.2242673%2C36.3831921 C58.2242673%2C27.8099223 65.1841013%2C20.8544138 73.74872%2C20.8544138 C82.3263153%2C20.8544138 89.2731727%2C27.8099223 89.2731727%2C36.3831921 L89.2731727%2C36.3831921 Z' id='Stroke-3227'%3E%3C%2Fpath%3E          %3Cpolyline id='Stroke-3228' points='40.7563383 34.6045198 64.0451801 12.9766949 31.054096 12.9766949 15.5253178 34.6045198 40.7563383 34.6045198 25.4697917 2.84217094e-14'%3E%3C%2Fpolyline%3E          %3Cpath d='M73.7491525%2C36.3831921 L70.0724223%2C35.1331038 L60.9757592%2C1.44992938 L73.2127825%2C2.87304025 C75.3323093%2C3.18015537 76.8030014%2C5.14828743 76.5002119%2C7.27213983 C76.1930968%2C9.39166667 74.2249647%2C10.8666843 72.1054379%2C10.5552436' id='Stroke-3229'%3E%3C%2Fpath%3E          %3Cline x1='17.9013506' y1='3.55271368e-15' x2='35.2036105' y2='3.55271368e-15' id='Stroke-3232'%3E%3C%2Fline%3E        %3C%2Fg%3E      %3C%2Fg%3E    %3C%2Fsvg%3E  ")}.top-category-tile__icon[data-category-id="3686"]{background-image:url("data:image/svg+xml,    %3Csvg width='96px' height='74px' viewBox='0 0 96 74' version='1.1' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' xmlns%3Axlink='http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E      %3Cg id='Symbols' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linejoin='round'%3E        %3Cg id='icon%2Fhouse' transform='translate%282.453546%2C 2.000000%29' stroke='%2318A45C' stroke-width='3'%3E          %3Cpath d='M65.5557999%2C46.178981 C63.6348887%2C47.8061984 61.1462205%2C48.7850467 58.4272952%2C48.7850467 C52.916898%2C48.7850467 48.3464541%2C44.7531987 47.5200522%2C39.4844136 L47.3970382%2C38.5622189 C43.6845382%2C37.0262768 41.0791644%2C33.3752668 41.0791644%2C29.1136569 C41.0791644%2C24.9149955 43.6119915%2C21.3080494 47.2361737%2C19.7343383 L47.3875756%2C18.8845342 C47.3875756%2C14.5379439 50.9171317%2C11.0159783 55.2730896%2C11.0159783 L56.061641%2C10.2291227 C56.061641%2C4.57949955 60.647856%2C4.26325641e-14 66.3128092%2C4.26325641e-14 C71.9777625%2C4.26325641e-14 76.5639775%2C4.57949955 76.5639775%2C10.2291227 L77.3525289%2C11.0159783 C81.7084868%2C11.0159783 85.2380429%2C14.5379439 85.2380429%2C18.8845342 L86.1811504%2C20.1214712 C89.3795148%2C21.8525535 91.5464541%2C25.2297377 91.5464541%2C29.1136569 C91.5464541%2C33.3500874 88.9694681%2C36.9853603 85.2885102%2C38.5401869 L85.1055662%2C39.487561 C84.2791644%2C44.7531987 79.7055662%2C48.7850467 74.1983233%2C48.7850467 C71.5077859%2C48.7850467 69.0411971%2C47.8219355 67.1265943%2C46.2293398 L65.5557999%2C46.178981 L65.5557999%2C46.178981 Z M66.0464541%2C46.5 L65.9950522%2C69.8130841' id='Combined-Shape'%3E%3C%2Fpath%3E          %3Cline x1='-7.10542736e-14' y1='70.2171523' x2='66.3826278' y2='70.2171523' id='Stroke-6441' stroke-linecap='round'%3E%3C%2Fline%3E          %3Cpolygon id='Stroke-6442' fill='%23E8F6EF' stroke-linecap='round' points='8.65860363 70.2171523 57.7240242 70.2171523 57.7240242 41.3551402 8.65860363 41.3551402'%3E%3C%2Fpolygon%3E          %3Cpath d='M33.1913139%2C16.8224299 L49.065%2C28.5554299 L49.0654206%2C22.8310885 L57.7240242%2C22.8310885 L57.724%2C34.9554299 L66.3826278%2C41.3551402 L4.12114787e-13%2C41.3551402 L33.1913139%2C16.8224299 Z' id='Combined-Shape' fill='%23E8F6EF' stroke-linecap='round'%3E%3C%2Fpath%3E          %3Cpolygon id='Stroke-6446' points='34.6344145 58.6723474 49.0654206 58.6723474 49.0654206 50.0137438 34.6344145 50.0137438'%3E%3C%2Fpolygon%3E          %3Cpolygon id='Stroke-6445' points='17.3172073 70.2006597 25.9758109 70.2006597 25.9758109 50.0137438 17.3172073 50.0137438'%3E%3C%2Fpolygon%3E        %3C%2Fg%3E      %3C%2Fg%3E    %3C%2Fsvg%3E  ")}.top-category-tile__icon[data-category-id="9908"]{background-image:url("data:image/svg+xml,    %3Csvg width='82px' height='75px' viewBox='0 0 82 75' version='1.1' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' xmlns%3Axlink='http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E      %3Cg id='Symbols' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E        %3Cg id='icon%2Fmode' transform='translate%282.000000%2C 2.000000%29' stroke='%2318A45C' stroke-width='3.44117647'%3E          %3Cpolyline id='Stroke-620' points='23.2867903 5.83852941 18.0537084 5.83852941 0.598465473 25.0392967 9.32608696 35.5124425 18.0537084 26.784821 18.0537084 70.4229284 59.9462916 70.4229284 59.9462916 26.784821 68.673913 35.5124425 77.4015345 25.0392967 59.9462916 5.83852941 54.7062276 5.83852941'%3E%3C%2Fpolyline%3E          %3Cpolygon id='Stroke-621' points='38.996509 11.0751023 28.5233632 0.601956522 49.4696547 0.601956522'%3E%3C%2Fpolygon%3E          %3Cpolygon id='Stroke-622' points='54.7062276 5.83852941 44.2330818 16.3116752 38.996509 11.0751023 49.4696547 0.601956522'%3E%3C%2Fpolygon%3E          %3Cpolygon id='Stroke-623' points='23.2867903 5.83852941 33.7599361 16.3116752 38.996509 11.0751023 28.5233632 0.601956522'%3E%3C%2Fpolygon%3E          %3Cline x1='39' y1='28.5303453' x2='38.996509' y2='11.0751023' id='Stroke-624'%3E%3C%2Fline%3E        %3C%2Fg%3E      %3C%2Fg%3E    %3C%2Fsvg%3E  ")}.top-category-tile__icon[data-category-id="3932"]{background-image:url("data:image/svg+xml,    %3Csvg width='74px' height='73px' viewBox='0 0 74 73' version='1.1' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' xmlns%3Axlink='http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E      %3Cg id='Symbols' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linejoin='round'%3E        %3Cg id='icon%2Fhealth' transform='translate%282.000000%2C 1.000000%29' stroke='%2318A45C' stroke-width='3.00245098'%3E          %3Cpath d='M30.4948223%2C45.5085784 C30.4948223%2C42.1908701 27.8076287%2C39.5036765 24.4899203%2C39.5036765 L6.47521446%2C39.5036765 C3.16050858%2C39.5036765 0.4703125%2C42.1908701 0.4703125%2C45.5085784 L0.4703125%2C69.5281863 L30.4948223%2C69.5281863 L30.4948223%2C45.5085784 L30.4948223%2C45.5085784 Z' id='Stroke-4592'%3E%3C%2Fpath%3E          %3Cpolygon id='Stroke-4593' points='39.500674 69.5281863 69.5251838 69.5281863 69.5251838 36.5012255 39.500674 36.5012255'%3E%3C%2Fpolygon%3E          %3Cpolygon id='Stroke-4594' points='24.4899203 0.471813725 6.47521446 12.4816176 6.47521446 39.5036765 24.4899203 39.5036765'%3E%3C%2Fpolygon%3E          %3Cpolygon id='Stroke-4596' points='39.500674 63.5232843 69.5251838 63.5232843 69.5251838 54.5159314 39.500674 54.5159314'%3E%3C%2Fpolygon%3E        %3C%2Fg%3E      %3C%2Fg%3E    %3C%2Fsvg%3E  ")}.top-category-tile__icon[data-category-id="30311"]{background-image:url("data:image/svg+xml,    %3Csvg width='84px' height='70px' viewBox='0 0 84 70' version='1.1' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' xmlns%3Axlink='http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E      %3Cg id='Symbols' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linejoin='round'%3E        %3Cg id='icon%2Felectronic' transform='translate%281.000000%2C 1.000000%29' stroke='%2318A45C' stroke-width='3'%3E          %3Cpath d='M67.3786765%2C67.3751593 C61.2553064%2C64.1639951 51.5444363%2C62.1029412 41%2C62.1029412 C30.4555637%2C62.1029412 20.7446936%2C64.1639951 14.6213235%2C67.3751593' id='Stroke-5931' stroke-linecap='round'%3E%3C%2Fpath%3E          %3Cpath d='M81.4473039%2C49.7928922 C81.4473039%2C51.7273284 79.8681005%2C53.310049 77.9301471%2C53.310049 L4.06985294%2C53.310049 C2.13541667%2C53.310049 0.552696078%2C51.7273284 0.552696078%2C49.7928922 L0.552696078%2C4.06985294 C0.552696078%2C2.13541667 2.13541667%2C0.552696078 4.06985294%2C0.552696078 L77.9301471%2C0.552696078 C79.8681005%2C0.552696078 81.4473039%2C2.13541667 81.4473039%2C4.06985294 L81.4473039%2C49.7928922 L81.4473039%2C49.7928922 Z' id='Stroke-5932'%3E%3C%2Fpath%3E          %3Cpolygon id='Stroke-5933' points='7.5870098 46.2757353 74.4129902 46.2757353 74.4129902 7.5870098 7.5870098 7.5870098'%3E%3C%2Fpolygon%3E          %3Cline x1='35.7242647' y1='53.310049' x2='35.7242647' y2='62.2752819' id='Stroke-5934'%3E%3C%2Fline%3E          %3Cline x1='46.2757353' y1='53.310049' x2='46.2757353' y2='62.2752819' id='Stroke-5935'%3E%3C%2Fline%3E        %3C%2Fg%3E      %3C%2Fg%3E    %3C%2Fsvg%3E  ")}.top-category-tile__icon[data-category-id="4033"]{background-image:url("data:image/svg+xml,    %3Csvg width='74px' height='74px' viewBox='0 0 74 74' version='1.1' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' xmlns%3Axlink='http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E      %3Cg id='Symbols' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E        %3Cg id='icon%2Fbaby' transform='translate%282.000000%2C 2.000000%29' stroke='%2318A45C' stroke-width='3.08823529'%3E          %3Cpath d='M18.4865196%2C65.0245098 C18.4865196%2C67.5105392 16.4688725%2C69.5281863 13.9828431%2C69.5281863 C11.4968137%2C69.5281863 9.47916667%2C67.5105392 9.47916667%2C65.0245098 C9.47916667%2C62.5384804 11.4968137%2C60.5208333 13.9828431%2C60.5208333 C16.4688725%2C60.5208333 18.4865196%2C62.5384804 18.4865196%2C65.0245098 L18.4865196%2C65.0245098 Z' id='Stroke-5442'%3E%3C%2Fpath%3E          %3Cpath d='M51.5134804%2C65.0245098 C51.5134804%2C67.5105392 49.4958333%2C69.5281863 47.0098039%2C69.5281863 C44.5237745%2C69.5281863 42.5061275%2C67.5105392 42.5061275%2C65.0245098 C42.5061275%2C62.5384804 44.5237745%2C60.5208333 47.0098039%2C60.5208333 C49.4958333%2C60.5208333 51.5134804%2C62.5384804 51.5134804%2C65.0245098 L51.5134804%2C65.0245098 Z' id='Stroke-5443'%3E%3C%2Fpath%3E          %3Cpolyline id='Stroke-5444' points='69.5281863 9.47916667 59.0196078 9.47916667 47.0098039 60.5208333 13.9828431 60.5208333'%3E%3C%2Fpolyline%3E          %3Cpolyline id='Stroke-5445' points='48.4230576 54.5159314 9.47826593 54.5159314 0.47091299 30.4963235 54.0136213 30.4963235'%3E%3C%2Fpolyline%3E          %3Cpath d='M27.4938725%2C30.4963235 L27.4938725%2C0.471813725 C13.9828431%2C0.471813725 0.471813725%2C11.8991422 0.471813725%2C25.9926471 L0.471813725%2C30.4963235 L27.4938725%2C30.4963235 L27.4938725%2C30.4963235 Z' id='Stroke-5446'%3E%3C%2Fpath%3E          %3Cline x1='27.4938725' y1='30.4963235' x2='13.7456495' y2='4.3810049' id='Stroke-5447'%3E%3C%2Fline%3E          %3Cline x1='27.4938725' y1='30.4963235' x2='2.87677696' y2='15.8954044' id='Stroke-5448'%3E%3C%2Fline%3E        %3C%2Fg%3E      %3C%2Fg%3E    %3C%2Fsvg%3E  ")}.top-category-tile__icon[data-category-id="3326"]{background-image:url("data:image/svg+xml,    %3Csvg width='74px' height='74px' viewBox='0 0 74 74' version='1.1' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' xmlns%3Axlink='http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E      %3Cg id='Symbols' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E          %3Cg id='icon%2Fgaming' transform='translate%282.000000%2C 2.000000%29' stroke='%2318A45C' stroke-width='3.08823529'%3E              %3Cpath d='M69.5281863%2C33.4987745 C69.5281863%2C26.8663603 64.1507966%2C21.4889706 57.5183824%2C21.4889706 L12.4816176%2C21.4889706 C5.84920343%2C21.4889706 0.471813725%2C26.8663603 0.471813725%2C33.4987745 L0.471813725%2C63.5232843 C0.471813725%2C66.8409926 3.1620098%2C69.5281863 6.47671569%2C69.5281863 C10.9383578%2C69.5281863 9.03480392%2C69.2639706 21.4889706%2C48.5110294 L48.5110294%2C48.5110294 C60.7670343%2C68.9427083 58.8965074%2C69.5281863 63.5232843%2C69.5281863 C66.8379902%2C69.5281863 69.5281863%2C66.8409926 69.5281863%2C63.5232843 L69.5281863%2C33.4987745 L69.5281863%2C33.4987745 Z' id='Stroke-3572'%3E%3C%2Fpath%3E              %3Cpath d='M55.5772978%2C31.55769 C54.9918199%2C32.1431679 54.0400429%2C32.1431679 53.454565%2C31.55769 C52.869087%2C30.972212 52.869087%2C30.020435 53.454565%2C29.4349571 C54.0400429%2C28.8494792 54.9918199%2C28.8494792 55.5772978%2C29.4349571 C56.1627757%2C30.020435 56.1627757%2C30.972212 55.5772978%2C31.55769 L55.5772978%2C31.55769 Z' id='Stroke-3573'%3E%3C%2Fpath%3E              %3Cpath d='M61.5821998%2C37.5625919 C60.9967218%2C38.1480699 60.0449449%2C38.1480699 59.4594669%2C37.5625919 C58.873989%2C36.977114 58.873989%2C36.025337 59.4594669%2C35.4398591 C60.0449449%2C34.8543811 60.9967218%2C34.8543811 61.5821998%2C35.4398591 C62.1676777%2C36.025337 62.1676777%2C36.977114 61.5821998%2C37.5625919 L61.5821998%2C37.5625919 Z' id='Stroke-3574'%3E%3C%2Fpath%3E              %3Cpath d='M49.5723958%2C37.5625919 C48.9869179%2C38.1480699 48.0351409%2C38.1480699 47.449663%2C37.5625919 C46.8611826%2C36.977114 46.864185%2C36.025337 47.449663%2C35.4398591 C48.0321385%2C34.8543811 48.9839154%2C34.8543811 49.5723958%2C35.4398591 C50.1578738%2C36.025337 50.1578738%2C36.977114 49.5723958%2C37.5625919 L49.5723958%2C37.5625919 Z' id='Stroke-3575'%3E%3C%2Fpath%3E              %3Cpath d='M55.5772978%2C43.5674939 C54.9918199%2C44.1529718 54.0400429%2C44.1529718 53.454565%2C43.5674939 C52.869087%2C42.9820159 52.869087%2C42.030239 53.454565%2C41.444761 C54.0400429%2C40.8592831 54.9918199%2C40.8592831 55.5772978%2C41.444761 C56.1627757%2C42.030239 56.1627757%2C42.9820159 55.5772978%2C43.5674939 L55.5772978%2C43.5674939 Z' id='Stroke-3576'%3E%3C%2Fpath%3E              %3Cline x1='15.4840686' y1='30.4963235' x2='15.4840686' y2='42.5061275' id='Stroke-3577'%3E%3C%2Fline%3E              %3Cline x1='21.4889706' y1='36.5012255' x2='9.47916667' y2='36.5012255' id='Stroke-3578'%3E%3C%2Fline%3E              %3Cpolygon id='Stroke-3581' points='27.4938725 21.4889706 39.5036765 21.4889706 39.5036765 15.4840686 27.4938725 15.4840686'%3E%3C%2Fpolygon%3E              %3Cpath d='M33.4987745%2C15.4840686 L33.4987745%2C7.97794118 C33.4987745%2C3.84957108 30.1210172%2C0.471813725 25.9926471%2C0.471813725 L12.4816176%2C0.471813725' id='Stroke-3582'%3E%3C%2Fpath%3E          %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fsvg%3E  ")}.highlights h2{color:#979797;font-size:2.5rem;font-weight:bold;letter-spacing:0.1rem;margin:0;padding:24px 0;text-align:center;text-transform:uppercase}.highlights-tile{background-color:white;font-size:2.25rem;font-weight:bold;margin:0 8px 8px 0;text-align:center}.highlights-tile-detail{letter-spacing:0.05rem;margin-bottom:16px}.highlights-tile-description{margin-top:-12px;padding:0 16px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.highlights-tile-price,.highlights-tile-title{font-weight:bold}.highlights-tile-price{color:#a31621}.highlights-tile-title{color:#2364aa}.highlights .encoded-link{display:block;height:100%}.highlights .tile-content{padding:0}.tile{margin:0 10px 10px 0}@media screen and (max-width: 769px){.tile{margin:0 1px 1px 0}}.tile .encoded-link{width:100%}.tile a{text-decoration:none}.tile-content{background:white;padding:10px;text-align:center}.tile-content:hover{text-decoration:none}.tile-content img{width:auto;max-width:90%;max-height:110px;margin:auto;display:inline-block}.tile-content .action-button{margin-top:10px;display:block}.tile-img-container{display:block;height:110px;margin-bottom:15px}.tile-text{overflow:hidden;text-overflow:ellipsis;display:block;max-width:100%;height:33.6px;font-size:14px;line-height:1.2;-webkit-line-clamp:2;-webkit-box-orient:vertical;text-decoration:underline;margin-bottom:5px}.about{color:#999;line-height:25px}.about .title{font-size:1.2em;letter-spacing:0.06em;text-transform:uppercase;color:#979797;text-align:center;padding:10px 0;margin:0;font-weight:500}@media screen and (min-width: 770px){.about .title{font-size:1.3em;margin:15px 0 10px}}.about .title a{color:#979797}.about .title small{display:block;font-size:.6em}@media screen and (min-width: 770px){.about .title small{font-size:1em;display:inline-block}.about .title small::before{content:'-';margin:0 8px}}footer{background:white;text-align:center;width:100%;padding-top:20px}footer .footer-menu-block{margin-bottom:16px}footer .footer-menu-block:last-child{margin-bottom:0}footer .footer-menu-block ul{margin:0;padding:0}footer .footer-menu-block ul li{display:inline-block;border-left:1px solid #777;padding-left:8px;padding-right:8px}footer .footer-menu-block ul li:first-child{border-left:0;padding-left:0}.footer-content{margin:32px 24px}@media screen and (max-width: 769px){#register-shop{display:none}#live-price-search{padding-right:0}}.section-title{color:#979797;font-size:1.2em;letter-spacing:0.06em;margin:0;padding:10px 0;text-transform:uppercase;text-align:left}@media screen and (min-width: 770px){.section-title{font-size:1.3em;margin:15px 0 10px}}.section-title a{color:#979797}.search-query-block{line-height:25px;padding-bottom:25px}.search-query-block-item a{color:#18A45C}#cookie-bar{background:#111111;height:auto;line-height:24px;color:#eeeeee;text-align:center;position:fixed;bottom:0;width:100%;z-index:1000;opacity:0.8;padding:15px 0}#cookie-bar .cb-policy{background:#0033bb;cursor:pointer}#cookie-bar .cb-policy:hover{background:#0055dd}#cookie-bar .cb-enable{background:#007700;cursor:pointer}#cookie-bar .cb-enable:hover{background:#009900}#cookie-bar .cb-disable{background:#990000;cursor:pointer}#cookie-bar .cb-disable:hover{background:#bb0000}#cookie-bar a{color:#ffffff;display:inline-block;border-radius:3px;text-decoration:none;padding:0 6px;margin-left:8px}#cookie-bar p{margin:0;padding:0}#cookie-bar.fixed{position:fixed;top:0;left:0;width:100%;z-index:1200}#cookie-bar.fixed.bottom{bottom:0;top:auto}#cookie-bar .cb-enable{background-color:#666666}#cookie-bar .cb-policy{text-decoration:underline;background-color:inherit}#cookie-bar.cb-accepted{display:none}.results{display:flex;flex-wrap:wrap;align-items:stretch}.results .content.grid-cell{z-index:0}@media screen and (min-width: 770px){.results{margin-top:10px}}.list-group{display:flex;flex-direction:column}.list-group-item{background-color:#fff;border:0;margin-top:0;margin-bottom:10px;padding:10px 15px;width:100%}.list-group-item>.encoded-link{width:100%}@media screen and (max-width: 769px){.list-group-item{margin-bottom:1px}}.offer-item-content{height:100%;display:flex;flex-direction:column;justify-content:space-between}.offer-item-title{text-transform:uppercase;color:#000;line-height:1.1;font-size:1em;margin:10px 0}.shipment{font-size:1.3rem;font-style:italic;margin-top:14px}.shipment>div{height:20px;line-height:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.media-body .shipment{height:auto;padding:0}.remodal-template{display:none}.remodal-template.remodal-is-opened{display:inline-block}.remodal-template .voucher-container{border:1px dashed #18A45C;padding:15px;margin-bottom:20px}.remodal-template .voucher-heading{font-size:24px;font-weight:bold}.remodal-template .voucher-content{font-size:16px;background-color:#efefef;padding:10px;margin:10px 0;overflow:hidden;text-overflow:ellipsis}.remodal-template .voucher-close-button{right:0;left:auto}.remodal-template .action-button{display:inline-block}.voucher-icon{display:inline-block;margin-left:5px;height:14px;width:24.5px;background-size:24.5px 14px;box-sizing:content-box;border:solid 2px white;background-color:white;background-image:url("data:image/svg+xml,    %3Csvg width='31px' height='18px' viewBox='0 0 31 18' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' xmlns%3Axlink='http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E        %3Cg stroke='%2318A45C' stroke-width='1' fill='%2318A45C'%3E            %3Cpath d='M29.5752109%2C0.012375 L1.42478906%2C0.012375 C0.639193359%2C0.012375 0%2C0.637460526 0%2C1.40583553 L0%2C5.58414474 C0%2C5.97973026 0.20828125%2C6.35151316 0.543650391%2C6.55436842 C1.41891602%2C7.08376974 1.94143555%2C7.99803947 1.94143555%2C9.00005921 C1.94143555%2C10.0020789 1.41891602%2C10.9163487 0.543589844%2C11.44575 C0.20828125%2C11.6485461 0%2C12.0203289 0%2C12.4159145 L0%2C16.5942237 C0%2C17.3625395 0.639193359%2C17.9875658 1.42478906%2C17.9875658 L29.5752109%2C17.9875658 C30.3608672%2C17.9875658 31%2C17.3624803 31%2C16.5942237 L31%2C1.40583553 C31%2C0.637460526 30.3608066%2C0.012375 29.5752109%2C0.012375 Z M30.0917969%2C16.5942237 C30.0917969%2C16.8728092 29.860084%2C17.0994079 29.5752109%2C17.0994079 L7.21779297%2C17.0994079 L7.21779297%2C17.0688553 C7.21779297%2C16.8236053 7.01453711%2C16.6247763 6.76369141%2C16.6247763 C6.5128457%2C16.6247763 6.30958984%2C16.8236053 6.30958984%2C17.0688553 L6.30958984%2C17.0994079 L1.42478906%2C17.0994079 C1.13991602%2C17.0994079 0.908203125%2C16.87275 0.908203125%2C16.5942237 L0.908203125%2C12.4159145 C0.908203125%2C12.3256184 0.951615234%2C12.2432566 1.02136523%2C12.2010395 C2.166125%2C11.5086316 2.84957812%2C10.3119868 2.84957812%2C9 C2.84957812%2C7.68801316 2.166125%2C6.49136842 1.02136523%2C5.79896053 C0.951615234%2C5.75668421 0.908203125%2C5.67438158 0.908203125%2C5.58402632 L0.908203125%2C1.40571711 C0.908203125%2C1.12713158 1.13991602%2C0.900532895 1.42478906%2C0.900532895 L6.30958984%2C0.900532895 L6.30958984%2C0.931085526 C6.30958984%2C1.17633553 6.5128457%2C1.37516447 6.76369141%2C1.37516447 C7.01453711%2C1.37516447 7.21779297%2C1.17633553 7.21779297%2C0.931085526 L7.21779297%2C0.900532895 L29.5752109%2C0.900532895 C29.860084%2C0.900532895 30.0917969%2C1.12719079 30.0917969%2C1.40571711 L30.0917969%2C16.5942237 Z' id='Shape' fill-rule='nonzero'%3E%3C%2Fpath%3E            %3Cpath d='M6.76369141%2C8.08134868 C6.5128457%2C8.08134868 6.30958984%2C8.28017763 6.30958984%2C8.52542763 L6.30958984%2C9.47469079 C6.30958984%2C9.71994079 6.5128457%2C9.91876974 6.76369141%2C9.91876974 C7.01453711%2C9.91876974 7.21779297%2C9.71994079 7.21779297%2C9.47469079 L7.21779297%2C8.52542763 C7.21779297%2C8.28011842 7.01453711%2C8.08134868 6.76369141%2C8.08134868 Z' id='Shape' fill-rule='nonzero'%3E%3C%2Fpath%3E            %3Cpath d='M6.76369141%2C2.38571053 C6.5128457%2C2.38571053 6.30958984%2C2.58453947 6.30958984%2C2.82978947 L6.30958984%2C3.77905263 C6.30958984%2C4.02430263 6.5128457%2C4.22313158 6.76369141%2C4.22313158 C7.01453711%2C4.22313158 7.21779297%2C4.02430263 7.21779297%2C3.77905263 L7.21779297%2C2.82978947 C7.21779297%2C2.58448026 7.01453711%2C2.38571053 6.76369141%2C2.38571053 Z' id='Shape' fill-rule='nonzero'%3E%3C%2Fpath%3E            %3Cpath d='M6.76369141%2C5.23344079 C6.5128457%2C5.23344079 6.30958984%2C5.43226974 6.30958984%2C5.67751974 L6.30958984%2C6.62678289 C6.30958984%2C6.87203289 6.5128457%2C7.07086184 6.76369141%2C7.07086184 C7.01453711%2C7.07086184 7.21779297%2C6.87203289 7.21779297%2C6.62678289 L7.21779297%2C5.67751974 C7.21779297%2C5.43226974 7.01453711%2C5.23344079 6.76369141%2C5.23344079 Z' id='Shape' fill-rule='nonzero'%3E%3C%2Fpath%3E            %3Cpath d='M6.76369141%2C10.9291382 C6.5128457%2C10.9291382 6.30958984%2C11.1279671 6.30958984%2C11.3732171 L6.30958984%2C12.3224803 C6.30958984%2C12.5677303 6.5128457%2C12.7665592 6.76369141%2C12.7665592 C7.01453711%2C12.7665592 7.21779297%2C12.5677303 7.21779297%2C12.3224803 L7.21779297%2C11.3732171 C7.21779297%2C11.1279079 7.01453711%2C10.9291382 6.76369141%2C10.9291382 Z' id='Shape' fill-rule='nonzero'%3E%3C%2Fpath%3E            %3Cpath d='M6.76369141%2C13.7769276 C6.5128457%2C13.7769276 6.30958984%2C13.9757566 6.30958984%2C14.2210066 L6.30958984%2C15.1702697 C6.30958984%2C15.4155197 6.5128457%2C15.6143487 6.76369141%2C15.6143487 C7.01453711%2C15.6143487 7.21779297%2C15.4155197 7.21779297%2C15.1702697 L7.21779297%2C14.2210066 C7.21779297%2C13.9757566 7.01453711%2C13.7769276 6.76369141%2C13.7769276 Z' id='Shape' fill-rule='nonzero'%3E%3C%2Fpath%3E            %3Cpath d='M19.5566406%2C12.2647828 C19.5566406%2C11.887403 19.6271526%2C11.5332729 19.7681786%2C11.2023819 C19.9092047%2C10.8714909 20.1024074%2C10.5816238 20.3477927%2C10.3327719 C20.593178%2C10.08392 20.8808668%2C9.8883964 21.2108677%2C9.74619531 C21.5408687%2C9.60399422 21.8976592%2C9.53289474 22.28125%2C9.53289474 C22.6591998%2C9.53289474 23.0145801%2C9.60399422 23.3474015%2C9.74619531 C23.6802229%2C9.8883964 23.969322%2C10.08392 24.2147073%2C10.3327719 C24.4600926%2C10.5816238 24.6532953%2C10.8714909 24.7943214%2C11.2023819 C24.9353474%2C11.5332729 25.0058594%2C11.887403 25.0058594%2C12.2647828 C25.0058594%2C12.6421626 24.9353474%2C12.9962927 24.7943214%2C13.3271837 C24.6532953%2C13.6580747 24.4600926%2C13.9452072 24.2147073%2C14.1885899 C23.969322%2C14.4319725 23.6802229%2C14.6247615 23.3474015%2C14.7669626 C23.0145801%2C14.9091637 22.6591998%2C14.9802632 22.28125%2C14.9802632 C21.8976592%2C14.9802632 21.5408687%2C14.9091637 21.2108677%2C14.7669626 C20.8808668%2C14.6247615 20.593178%2C14.4319725 20.3477927%2C14.1885899 C20.1024074%2C13.9452072 19.9092047%2C13.6580747 19.7681786%2C13.3271837 C19.6271526%2C12.9962927 19.5566406%2C12.6421626 19.5566406%2C12.2647828 Z M20.5974076%2C12.2647828 C20.5974076%2C12.5054308 20.641125%2C12.7310349 20.7285611%2C12.9416019 C20.8159973%2C13.1521689 20.9358676%2C13.3367541 21.0881757%2C13.495363 C21.2404838%2C13.6539719 21.418174%2C13.7797633 21.6212515%2C13.872741 C21.8243289%2C13.9657186 22.0443263%2C14.0122067 22.28125%2C14.0122067 C22.5181737%2C14.0122067 22.7395813%2C13.9657186 22.9454793%2C13.872741 C23.1513773%2C13.7797633 23.3318879%2C13.6539719 23.4870166%2C13.495363 C23.6421452%2C13.3367541 23.764836%2C13.1521689 23.8550927%2C12.9416019 C23.9453493%2C12.7310349 23.990477%2C12.5054308 23.990477%2C12.2647828 C23.990477%2C12.0296041 23.9453493%2C11.804 23.8550927%2C11.5879637 C23.764836%2C11.3719274 23.6421452%2C11.1846076 23.4870166%2C11.0259987 C23.3318879%2C10.8673898 23.1513773%2C10.7402311 22.9454793%2C10.6445189 C22.7395813%2C10.5488066 22.5181737%2C10.5009512 22.28125%2C10.5009512 C22.0443263%2C10.5009512 21.8243289%2C10.5488066 21.6212515%2C10.6445189 C21.418174%2C10.7402311 21.2404838%2C10.8673898 21.0881757%2C11.0259987 C20.9358676%2C11.1846076 20.8159973%2C11.3719274 20.7285611%2C11.5879637 C20.641125%2C11.804 20.5974076%2C12.0296041 20.5974076%2C12.2647828 Z' id='Combined-Shape'%3E%3C%2Fpath%3E            %3Cpath d='M12.59375%2C6.28451966 C12.59375%2C5.90713984 12.664262%2C5.55300974 12.805288%2C5.22211874 C12.946314%2C4.89122774 13.1395168%2C4.60136063 13.3849021%2C4.35250872 C13.6302874%2C4.10365681 13.9179762%2C3.90813324 14.2479771%2C3.76593215 C14.577978%2C3.62373106 14.9347686%2C3.55263158 15.3183594%2C3.55263158 C15.6963091%2C3.55263158 16.0516894%2C3.62373106 16.3845109%2C3.76593215 C16.7173323%2C3.90813324 17.0064313%2C4.10365681 17.2518166%2C4.35250872 C17.4972019%2C4.60136063 17.6904047%2C4.89122774 17.8314308%2C5.22211874 C17.9724568%2C5.55300974 18.0429688%2C5.90713984 18.0429688%2C6.28451966 C18.0429688%2C6.66189948 17.9724568%2C7.01602958 17.8314308%2C7.34692058 C17.6904047%2C7.67781158 17.4972019%2C7.96494409 17.2518166%2C8.20832673 C17.0064313%2C8.45170937 16.7173323%2C8.64449834 16.3845109%2C8.78669943 C16.0516894%2C8.92890052 15.6963091%2C9 15.3183594%2C9 C14.9347686%2C9 14.577978%2C8.92890052 14.2479771%2C8.78669943 C13.9179762%2C8.64449834 13.6302874%2C8.45170937 13.3849021%2C8.20832673 C13.1395168%2C7.96494409 12.946314%2C7.67781158 12.805288%2C7.34692058 C12.664262%2C7.01602958 12.59375%2C6.66189948 12.59375%2C6.28451966 Z M13.6335016%2C6.32455453 C13.6335016%2C6.56520253 13.677219%2C6.79080665 13.7646551%2C7.00137365 C13.8520913%2C7.21194065 13.9719616%2C7.39652584 14.1242697%2C7.55513475 C14.2765778%2C7.71374366 14.454268%2C7.83953505 14.6573454%2C7.93251268 C14.8604229%2C8.02549032 15.0804203%2C8.07197844 15.317344%2C8.07197844 C15.5542677%2C8.07197844 15.7756753%2C8.02549032 15.9815733%2C7.93251268 C16.1874713%2C7.83953505 16.3679819%2C7.71374366 16.5231106%2C7.55513475 C16.6782392%2C7.39652584 16.80093%2C7.21194065 16.8911867%2C7.00137365 C16.9814433%2C6.79080665 17.026571%2C6.56520253 17.026571%2C6.32455453 C17.026571%2C6.08937581 16.9814433%2C5.86377169 16.8911867%2C5.64773542 C16.80093%2C5.43169914 16.6782392%2C5.24437936 16.5231106%2C5.08577045 C16.3679819%2C4.92716154 16.1874713%2C4.80000286 15.9815733%2C4.70429058 C15.7756753%2C4.60857831 15.5542677%2C4.56072289 15.317344%2C4.56072289 C15.0804203%2C4.56072289 14.8604229%2C4.60857831 14.6573454%2C4.70429058 C14.454268%2C4.80000286 14.2765778%2C4.92716154 14.1242697%2C5.08577045 C13.9719616%2C5.24437936 13.8520913%2C5.43169914 13.7646551%2C5.64773542 C13.677219%2C5.86377169 13.6335016%2C6.08937581 13.6335016%2C6.32455453 Z' id='Path'%3E%3C%2Fpath%3E            %3Cpath d='M15.3789062%2C14.625 C15.3789062%2C14.625 17.5989583%2C11.1513158 22.0390625%2C4.20394737' id='Path-2' stroke-width='1.0296' stroke-linecap='round'%3E%3C%2Fpath%3E        %3C%2Fg%3E    %3C%2Fsvg%3E  ");background-repeat:no-repeat;background-position:center center;position:absolute;top:2px;right:2px}.voucher-icon-big{position:static;height:25px;width:43.75px;background-size:43.75px 25px}.query-box{cursor:default;text-align:center}.query-box-item{margin-right:10px;text-decoration:underline}.query-box-item:hover{text-decoration:underline}.ads{margin:0 10px}.adsbygoogle{display:block;width:100%}#adsense-bottom{padding:0 20px}#adsense-top{margin-bottom:10px}#afsh-wrapper{background-color:transparent;margin-right:10px;width:100%;overflow:hidden}#afsh-container{margin:0 0 1px}@media screen and (min-width: 770px){#afsh-container{margin-bottom:10px}}.legal-hint{font-size:0.9em}.encoded-link{color:#777;cursor:pointer;display:inline-block}.check-box{vertical-align:middle;display:inline-block;border:1px solid #919191;line-height:1;margin-right:5px;width:20px;height:20px}.check-box-active span{width:100%;height:100%;display:inline-block;background-size:90%;background-position:center center;background-repeat:no-repeat}.seo-block{color:#777}.seo-block.text-container{text-align:left;margin-bottom:20px}.seo-block .info-seo-texts{padding:0;margin-bottom:0}.seo-block .data-seo-texts{padding-left:25px;margin-bottom:0}.seo-block .seo-text.data{margin-bottom:5px}.seo-block .query{font-style:italic}.seo-block .encoded-link{text-decoration:underline}.seo-block img{float:right;padding:5px;max-width:220px;max-height:220px;background-color:white;text-align:center}@media screen and (max-width: 479px){.seo-block img{width:40%}}.seo-text-2{padding:5px 20px 20px;background-color:white;margin-bottom:1px}@media screen and (min-width: 770px){.seo-text-2{padding:10px 40px 20px}}@media screen and (min-width: 992px){.seo-text-2{padding:20px 50px 20px}}.seo-text-2 .title{font-size:2.4rem;color:#018A45}.seo-text-2 a{text-decoration:underline}.seo-text-2 ul{list-style:none;padding-left:15px}.seo-text-2 ul li::before{content:"\2023";font-weight:bold;display:inline-block;width:20px;font-size:1.4em}.warning{padding:8px;border-radius:0;border-top:0;margin-bottom:0}.warning p{font-size:1.2em;margin:0}.sidebar{width:21%}.content{width:79%}@media screen and (max-width: 1199px){.sidebar{width:25%}.content{width:75%}}@media screen and (max-width: 991px){.sidebar{width:32%}.content{width:68%}}@media screen and (max-width: 769px){.sidebar{width:100%}.content{width:100%}}.grid{display:table;width:100%}@media screen and (min-width: 770px){.grid{margin-right:-10px}}.flex-grid{-webkit-box-align:stretch;-webkit-align-items:stretch;-ms-flex-align:stretch;align-items:stretch;clear:both;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;position:relative}@media screen and (min-width: 770px){.flex-grid{margin-right:-10px}}.flex-grid-cell{float:left;position:relative;z-index:1}.grid-cell{float:left}@media screen and (min-width: 0){.responsive-text-column{width:calc(100% - 1px)}}@media screen and (min-width: 661px){.responsive-text-column{width:calc(50% - 1px)}}@media screen and (min-width: 992px){.responsive-text-column{width:calc(33.33333% - 1px)}}@media screen and (min-width: 1200px){.responsive-text-column{width:calc(25% - 1px)}}@media screen and (min-width: 0){.responsive-tile-index{width:calc(100% - 1px)}}@media screen and (min-width: 320px){.responsive-tile-index{width:calc(50% - 1px)}}@media screen and (min-width: 480px){.responsive-tile-index{width:calc(33.33333% - 1px)}}@media screen and (min-width: 661px){.responsive-tile-index{width:calc(25% - 1px)}}@media screen and (min-width: 770px){.responsive-tile-index{width:calc(25% - 10px)}}@media screen and (min-width: 992px){.responsive-tile-index{width:calc(20% - 10px)}}@media screen and (min-width: 1200px){.responsive-tile-index{width:calc(16.66667% - 10px)}}@media screen and (min-width: 0){.responsive-tile{width:calc(100% - 1px)}}@media screen and (min-width: 320px){.responsive-tile{width:calc(50% - 1px)}}@media screen and (min-width: 480px){.responsive-tile{width:calc(33.33333% - 1px)}}@media screen and (min-width: 661px){.responsive-tile{width:calc(25% - 1px)}}@media screen and (min-width: 770px){.responsive-tile{width:calc(33.33333% - 10px)}}@media screen and (min-width: 992px){.responsive-tile{width:calc(25% - 10px)}}@media screen and (min-width: 1200px){.responsive-tile{width:calc(20% - 10px)}}@media screen and (max-width: 769px){.no-scroll{overflow:hidden;position:relative;height:100%}}.radio-btn{display:inline-block;border:1px solid #919191;vertical-align:middle;margin-bottom:2px;border-radius:100%;height:20px;width:20px;z-index:5;transition:border .25s linear;-webkit-transition:border .25s linear;margin-right:5px}.radio-btn.active::after{content:"";height:10px;width:10px;margin:4px;display:inline-block;border-radius:100%;border:5px solid #919191}.radio-btn-v2__item{margin-right:10px;width:20px;height:20px;border:1px solid #919191;border-radius:100%}.radio-btn-v2__component:hover>.radio-btn-v2__item::after{content:"";display:inline-block;margin:4px;width:10px;height:10px;border:5px solid #919191;border-radius:100%}.radio-btn-v2__toggle:checked ~ .radio-btn-v2__component .radio-btn-v2__item{border:1px solid #18A45C}.radio-btn-v2__toggle:checked ~ .radio-btn-v2__component .radio-btn-v2__item::after{content:"";display:inline-block;margin:4px;width:10px;height:10px;border:5px solid #18A45C;border-radius:100%}.sidebar .noUi-horizontal{margin:20px 5px;height:10px;border-radius:3px}@media screen and (max-width: 769px){.sidebar .noUi-horizontal{margin:30px 5px}}.sidebar .noUi-horizontal .noUi-connect{background:#1bba68}.sidebar .noUi-horizontal .noUi-handle{border-radius:11px;width:22px;height:22px;top:-8px;left:-12px}@media screen and (max-width: 769px){.sidebar .noUi-horizontal .noUi-handle{border-radius:17px;width:34px;height:34px;top:-14px;left:-16px}}.sidebar .noUi-horizontal .noUi-handle:focus,.sidebar .noUi-horizontal .noUi-handle:active{outline:none}.sidebar .noUi-horizontal .noUi-handle::before,.sidebar .noUi-horizontal .noUi-handle::after{content:normal}.register h2{text-align:left;color:unset}.icon{display:inline-block;width:20px;height:20px;background-size:cover}.arrow{border:solid;border-width:0 2px 2px 0;border-color:#000;display:inline-block;padding:4px}.arrow.right{transform:rotate(-45deg)}.arrow.left{transform:rotate(135deg)}.filled-arrow{width:0;height:0;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:9px solid #000}@media screen and (max-width: 769px){.main-container{margin-top:0}.navbar-fixed-top{position:inherit}.text-container{padding-left:20px;padding-right:20px;text-align:left}div.search-box{text-align:center;display:block;margin:0}div.search-box form{width:100%}div.search-box .logo{float:none;margin:12px auto}div.search-box .form-control{box-shadow:none;-webkit-box-shadow:none}div.search-box .form-control:focus{z-index:inherit}div.search-box .input-group{border-top:1px solid #eeeeee}}.price-range-slider{padding:0 7px 0 5px}@media screen and (min-width: 770px){.price-range-slider{padding:0 0 0 1px}}.price-range-groups{padding-bottom:5px;margin-bottom:15px;border-bottom:1px solid #ddd}.price-range .action-button{margin:5px 0;width:100%}.price-range .input-group{height:30px;background-color:#eaeaea;margin-bottom:5px;padding:0 8px;justify-content:space-around}.price-range .input-group-reset{background-image:url("data:image/svg+xml,    %3Csvg version='1.1' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='357px' height='357px' viewBox='0 0 357 357' fill='%23777'%3E      %3Cpolygon points='357%2C35.7 321.3%2C0 178.5%2C142.8 35.7%2C0 0%2C35.7 142.8%2C178.5 0%2C321.3 35.7%2C357 178.5%2C214.2 321.3%2C357 357%2C321.3 214.2%2C178.5'%2F%3E    %3C%2Fsvg%3E  ");height:1em;width:1em}.price-range .input-group-label{flex-basis:56px;padding:0}.price-range .currency-left .icon-currency-eur{margin-right:5px}.price-range .currency-left input{order:1;text-align:left}.price-range .currency-right .icon-currency-gbp{margin-left:5px}.price-range .currency-right input{order:0;text-align:right}.price-range .icon-currency-eur:after{display:block;content:'€'}.price-range .icon-currency-gbp:after{display:block;content:'£'}.legal-hint-popover{position:fixed;z-index:10;bottom:0;left:0;right:0;padding:15px;display:none;opacity:.88;background-color:black;color:white}@media screen and (min-width: 770px){.legal-hint-popover h3{padding-top:0}}@media screen and (min-width: 770px){.legal-hint-popover{padding:30px}}.legal-hint-popover:target{display:block}.legal-hint-popover-content .close{position:absolute;left:0;right:0;bottom:0;top:0}.legal-hint-popover-content .close::before{position:absolute;top:5px;right:15px;color:white;cursor:pointer;content:'\D7';font-size:1.66em}.btn-group>.btn{position:relative;float:left;background-color:white}.toolbar-content{display:flex;flex-wrap:wrap;align-items:baseline}@media screen and (max-width: 769px){.toolbar{padding-left:12px;padding-right:12px}}.toolbar .breadcrumb{flex-shrink:1;flex-basis:100%}.toolbar h1{font-size:1.4em;margin:0 4px 0 0;font-weight:normal;text-transform:capitalize;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@media screen and (max-width: 769px){.toolbar h1{flex-shrink:1;flex-basis:100%}}.toolbar h1 ~ h2{font-size:1em}@media screen and (min-width: 770px){.toolbar h1{font-weight:bold;color:#777}}.toolbar h2{flex-grow:1;font-size:2rem;font-weight:400;margin:0}.filters-bar{background:white;padding:8px 12px;margin-bottom:1px}.icon-filter{margin-right:5px;width:14px;height:14px;background-size:cover}.breadcrumb{height:20px;display:flex;align-items:center;background-color:inherit;padding:0}.breadcrumb .icon-home{background-image:url("data:image/svg+xml,    %3Csvg version='1.1' viewBox='0 0 48 48' width='48px' height='48px' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' fill='%23777' stroke='%23777'%3E      %3Cpath d='M42%2C48H28V35h-8v13H6V27c0-0.552%2C0.447-1%2C1-1s1%2C0.448%2C1%2C1v19h10V33h12v13h10V28c0-0.552%2C0.447-1%2C1-1s1%2C0.448%2C1%2C1V48z'%2F%3E      %3Cpath d='M47%2C27c-0.249%2C0-0.497-0.092-0.691-0.277L24%2C5.384L1.691%2C26.723c-0.399%2C0.381-1.032%2C0.368-1.414-0.031 c-0.382-0.399-0.367-1.032%2C0.031-1.414L24%2C2.616l23.691%2C22.661c0.398%2C0.382%2C0.413%2C1.015%2C0.031%2C1.414 C47.526%2C26.896%2C47.264%2C27%2C47%2C27z'%2F%3E      %3Cpath d='M39%2C15c-0.553%2C0-1-0.448-1-1V8h-6c-0.553%2C0-1-0.448-1-1s0.447-1%2C1-1h8v8C40%2C14.552%2C39.553%2C15%2C39%2C15z'%2F%3E    %3C%2Fsvg%3E  ")}@media screen and (max-width: 769px){.breadcrumb{display:none}}.breadcrumb>li{display:inline-block;vertical-align:text-bottom}.breadcrumb>li.current span{color:#9a9a9a}.breadcrumb>li+li:before{margin-left:5px;vertical-align:unset;content:"/";color:black;font-size:1.8rem;padding:4px}.pagination{display:flex;font-family:Arial;justify-content:center;letter-spacing:-0.1px;list-style:none;margin:32px 0;padding:0}.pagination>li>span{display:inline-block;margin-left:-1px;padding:9px 13px}.pagination>li>span:hover{color:#515151}.pagination .page span,.pagination .prev span,.pagination .next span{background-color:transparent}.pagination .page span:hover,.pagination .prev span:hover,.pagination .next span:hover{background-color:unset}.pagination .prev,.pagination .next{margin:0 10px}@media screen and (min-width: 480px){.pagination .prev.disabled,.pagination .next.disabled{display:none}}.pagination .prev .encoded-link.disabled,.pagination .next .encoded-link.disabled{cursor:default;opacity:0}.pagination .prev .label,.pagination .next .label{font-weight:100;font-size:0.9em;margin:0}@media screen and (max-width: 479px){.pagination .page{display:none}}.pagination .page.disabled span{display:inline-block;border:solid 1px #aaa;border-radius:3px;cursor:default}.no-results-found{margin-top:10px;font-size:1.8rem}.no-results-found h1{font-size:2.4em}.no-results-found h2{font-size:1.4em}.no-results-found h3{font-size:1.2em}.no-results-found h1,.no-results-found h2,.no-results-found h3{text-align:center;font-weight:100;margin:20px 0}@media screen and (min-width: 770px){.no-results-found h1,.no-results-found h2,.no-results-found h3{margin-top:50px}}.no-results-found .search-form{width:600px;margin:30px auto}@media screen and (max-width: 769px){.no-results-found .search-form{width:auto;margin:30px 15px}}.no-results-found-v2{background-color:white;display:flex;flex-direction:column}.no-results-found-v2 .search-term-v2{align-items:center;border:1px solid #18A45C;border-radius:3px;display:flex;padding:15px;width:fit-content;margin:30px auto}.no-results-found-v2 .search-term-v2__icon{background-image:url("data:image/svg+xml,    %3Csvg version='1.1' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' fill='%2318A45C' stroke='none' xmlns%3Axlink='http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink' x='0px' y='0px' viewBox='0 0 1000 1000' enable-background='new 0 0 1000 1000' xml%3Aspace='preserve'%3E      %3Cg%3E        %3Cpath d='M500%2C10C229.4%2C10%2C10%2C229.4%2C10%2C500s219.4%2C490%2C490%2C490s490-219.4%2C490-490S770.6%2C10%2C500%2C10z M500%2C812.8c-38.3%2C0-64.5-29.5-64.5-67.8c0-39.4%2C27.3-67.8%2C64.5-67.8c39.3%2C0%2C64.5%2C28.4%2C64.5%2C67.8C564.5%2C783.3%2C539.3%2C812.8%2C500%2C812.8z M525.4%2C553.9c-9.8%2C33.3-40.5%2C33.8-50.8%2C0c-11.8-39-53.7-187.2-53.7-283.5c0-127%2C158.9-127.6%2C158.9%2C0C579.7%2C367.3%2C535.6%2C519.3%2C525.4%2C553.9z'%2F%3E      %3C%2Fg%3E  %3C%2Fsvg%3E  ");flex-shrink:0;margin-right:15px;align-self:flex-start;width:25px;height:25px}@media screen and (max-width: 769px){.no-results-found-v2 .search-term-v2{margin-left:10px;margin-right:10px}}.no-results-found-v2 .search-tips-v2{align-items:center;background-color:#E8F6EF;display:flex;justify-content:center}.no-results-found-v2 .search-tips-v2__title{color:#18A45C;font-size:2rem;font-weight:bold;text-align:center}.no-results-found-v2 .search-tips-v2__hints{font-size:1.6rem;line-height:2.5rem}@media screen and (max-width: 769px){.no-results-found-v2 .search-tips-v2{flex-direction:column;padding-top:20px}}.badge{border-radius:5px;margin-left:5px;margin-right:10px;padding:1px 5px}.collapsed .toggle-icon-collapsible:before{content:""}.toggle-icon-collapsible:before{content:""}.filter-item{display:flex;color:#777;width:100%;padding-bottom:5px}@media screen and (max-width: 769px){.filter-item{padding-bottom:10px}}.filter-item-text{width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.filter-item-amount{font-size:12px;line-height:12px;color:#919191;width:auto;margin:auto 0 auto 5px}.filter-item-link{text-decoration:none}.filter .encoded-link{color:#777;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.filter-sorting .panel-heading label{flex-flow:wrap}.icon-filter{background-image:url("data:image/svg+xml,    %3Csvg version='1.1' id='Layer_1' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' viewBox='0 -2 14 14' stroke='%23000'%3E        %3Cstyle%3E            .st1{stroke-width%3A0.75%3B}        %3C%2Fstyle%3E        %3Cline x1='13.5' y1='7.5' x2='0.5' y2='7.5'%2F%3E        %3Cpath class='st1' d='M10.7%2C5.8h0.5c0.3%2C0%2C0.5%2C0.2%2C0.5%2C0.5v2.5c0%2C0.3-0.2%2C0.5-0.5%2C0.5h-0.5c-0.3%2C0-0.5-0.2-0.5-0.5V6.2 C10.2%2C6%2C10.5%2C5.8%2C10.7%2C5.8z'%2F%3E        %3Cline x1='0.5' y1='2.5' x2='13.5' y2='2.5'%2F%3E        %3Cpath class='st1' d='M3.3%2C4.2H2.7C2.5%2C4.2%2C2.2%2C4%2C2.2%2C3.8V1.2c0-0.3%2C0.2-0.5%2C0.5-0.5h0.5c0.3%2C0%2C0.5%2C0.2%2C0.5%2C0.5v2.5 C3.8%2C4%2C3.5%2C4.2%2C3.3%2C4.2z'%2F%3E    %3C%2Fsvg%3E  ")}.sidebar .action-button{border-radius:4px;background-color:white}.sidebar .action-button:active,.sidebar .action-button:focus{outline:none}.sidebar .panel-heading label{width:100%;margin:0;padding:10px 0;cursor:pointer;position:relative;display:flex}.sidebar .arrow{top:13px;transform:rotate(45deg)}.sidebar-box-toggle{display:none}.sidebar-box-toggle:checked ~ .panel-heading .panel-heading__arrow{transform:rotate(-180deg)}.sidebar-box-toggle:checked ~ .panel-body-wrapper{transition:max-height 1s ease-in-out;max-height:400px}.sidebar .panel{position:relative;border-radius:0;border:0;background:transparent;-webkit-box-shadow:none;box-shadow:none;border-bottom:1px #ddd solid;margin-bottom:0}.sidebar .panel-title{flex-grow:1;color:#000;text-transform:capitalize;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sidebar .panel-body{padding:15px 5px}.sidebar .panel-body-wrapper{max-height:0;transition:max-height 1s cubic-bezier(0, 1, 0, 1);overflow-x:auto}.sidebar .panel-subtitle{display:block;font-weight:300}.sidebar .panel:last-child{border-bottom:0;margin-bottom:0}.sidebar .panel-heading{padding:0 5px;background:transparent;border:0}.sidebar .panel-heading__arrow{background-image:url("data:image/svg+xml,     %3Csvg data-name='Layer 1' id='Layer_1' viewBox='0 0 24 24' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E      %3Cstyle%3E          .st1{fill%3Anone%3Bstroke%3A%23000%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bstroke-width%3A2px%3B}      %3C%2Fstyle%3E      %3Cpolyline class='st1' data-name='%26lt%3BPath%26gt%3B' points='20.59 7.66 11.9 16.34 3.41 7.86'%2F%3E    %3C%2Fsvg%3E  ");background-repeat:no-repeat;background-position:center center;width:18px;height:18px;flex-shrink:0}.sidebar .filter-offer-condition .encoded-link:hover{text-decoration:none}.sidebar-close-panel{position:fixed;font-weight:bold;font-size:1.25em;bottom:0;visibility:hidden;z-index:1001;border-top:1px solid #e2e2e2;width:100%;background:#eaeaea}@media screen and (max-width: 769px){.sidebar{position:absolute;top:0}.sidebar .sidebar-content{background:white;padding:5px 0 56px;margin:0;width:100%;top:0;left:0;right:0;bottom:0;z-index:1000;position:fixed;visibility:hidden;-webkit-transform:translateY(100%);transform:translateY(100%);-webkit-transition:-webkit-transform .4s ease-in-out,visibility 0s .4s;transition:transform .4s ease-in-out,visibility .4s .4s;transition-delay:0}.sidebar:target .sidebar-content{visibility:visible;-webkit-transform:translateY(0%);transform:translateY(0%);-webkit-transition:-webkit-transform .4s ease-in-out;transition:transform .4s ease-in-out;transition-delay:0}.sidebar:target .sidebar-close-panel{visibility:visible;-webkit-transform:translateY(0%);transform:translateY(0%);-webkit-transition:-webkit-transform .4s ease-in-out;transition:transform .4s ease-in-out;transition-delay:.2s}.sidebar-content-top{background:white;overflow-y:auto;-webkit-overflow-scrolling:touch;height:100%;padding:10px 20px}.sidebar-content-bottom{height:35px}.sidebar-close-panel{text-align:center;font-size:1.2em;padding:16px 0;-webkit-transform:translateY(100%);transform:translateY(100%);-webkit-transition:-webkit-transform .4s ease-in-out,visibility 0s .4s;transition:transform .4s ease-in-out,visibility .4s .4s;transition-delay:0}.sidebar-close-panel:focus{outline:none}.sidebar .panel:last-child{margin-bottom:20px}}.sidebar-content{padding:5px 10px;background:white;margin:0 10px 0 0}.revocation{border:1px solid black;padding:5px;background-color:#ccc}.alert{padding:30px 20px;font-weight:bold;border-bottom:1px solid #d2d9df}@media screen and (min-width: 770px){.alert{padding:20px 0}}.attribute-filter__attr_1338-8030{background-color:#000}.attribute-filter__attr_1338-8036{background-color:#00c}.attribute-filter__attr_1338-8038{background-color:#009EE0}.attribute-filter__attr_1338-8041{background-color:#120A8F}.attribute-filter__attr_1338-8043{background-color:#0cc}.attribute-filter__attr_1338-8044{background-color:#0096E1}.attribute-filter__attr_1338-8046{background-color:#6AB8B8}.attribute-filter__attr_1338-8048{background-color:#232C3F}.attribute-filter__attr_1338-8049{background-color:#041690}.attribute-filter__attr_1338-8052{background-color:navy}.attribute-filter__attr_1338-8053{background-color:#7FBCFF}.attribute-filter__attr_1338-8054{background-color:#0057B5}.attribute-filter__attr_1338-8056{background-color:#0047AB}.attribute-filter__attr_1338-8058{background-color:#944300}.attribute-filter__attr_1338-8059{background-color:#673831}.attribute-filter__attr_1338-8061{background-color:#5E493E}.attribute-filter__attr_1338-8063{background-color:#8b4513}.attribute-filter__attr_1338-8066{background-color:#49392D}.attribute-filter__attr_1338-8071{background-color:#ff0}.attribute-filter__attr_1338-8076{background-color:#ffffe0}.attribute-filter__attr_1338-8079{background-color:#DFFF00}.attribute-filter__attr_1338-8081{background-color:#E2B007}.attribute-filter__attr_1338-8086{background-color:#919191}.attribute-filter__attr_1338-8087{background-color:#627496}.attribute-filter__attr_1338-8088{background-color:#414B61}.attribute-filter__attr_1338-8089{background-color:#d3d3d3}.attribute-filter__attr_1338-8090{background-color:dimgray}.attribute-filter__attr_1338-8095{background-color:#858585}.attribute-filter__attr_1338-8097{background-color:#00A550}.attribute-filter__attr_1338-8098{background-color:#4B5C07}.attribute-filter__attr_1338-8100{background-color:teal}.attribute-filter__attr_1338-8102{background-color:#B4D400}.attribute-filter__attr_1338-8103{background-color:#CBFF2E}.attribute-filter__attr_1338-8104{background-color:#1B6820}.attribute-filter__attr_1338-8105{background-color:#3FBF1F}.attribute-filter__attr_1338-8106{background-color:#007D13}.attribute-filter__attr_1338-8107{background-color:#4B9668}.attribute-filter__attr_1338-8109{background-color:#B1D827}.attribute-filter__attr_1338-8110{background-color:#7fff00}.attribute-filter__attr_1338-8111{background-color:#004D0F}.attribute-filter__attr_1338-8112{background-color:teal}.attribute-filter__attr_1338-8117{background-color:#FF000D}.attribute-filter__attr_1338-8118{background-color:#960018}.attribute-filter__attr_1338-8124{background-color:#FF4847}.attribute-filter__attr_1338-8125{background-color:#CD0808}.attribute-filter__attr_1338-8128{background-color:#901800}.attribute-filter__attr_1338-8129{background-color:#FF0F33}.attribute-filter__attr_1338-8130{background-color:#630000}.attribute-filter__attr_1338-8147{background-color:#fff}.attribute-filter__attr_1338-8535{background-color:#A19584}.attribute-filter__attr_1338-8986{background-color:#8D1D2C}.attribute-filter__attr_1338-11039{background-color:#B3B1AA}.attribute-filter__attr_1338-12339{background-color:#CFA380}.attribute-filter__attr_1338-15833{background-color:#EAF044}.attribute-filter__attr_1338-15834{background-color:#ECC900}.attribute-filter__attr_1338-15835{background-color:#C89F04}.attribute-filter__attr_1338-15836{background-color:#F5C714}.attribute-filter__attr_1338-15837{background-color:#F7BA0B}.attribute-filter__attr_1338-15839{background-color:#F5D314}.attribute-filter__attr_1338-15850{background-color:#100547}.attribute-filter__attr_1338-16166{background-color:#2B447A}.attribute-filter__attr_1338-18927{background-color:#FFC9F2}.attribute-filter__attr_1338-18928{background-color:orange}.attribute-filter__attr_1338-18944{background-color:#f63}.attribute-filter__attr_1338-18943{background-color:#FFCB8C}.attribute-filter__attr_1338-18942{background-color:#FF3000}.attribute-filter__attr_1338-18929{background-color:#740CC9}.attribute-filter__attr_1338-18930{background-color:#5C00B8}.attribute-filter__attr_1338-18932{background-color:#3E017A}.attribute-filter__attr_1338-18933{background-color:#BD92E0}.attribute-filter__attr_1338-18934{background-color:#B174FC}.attribute-filter__attr_1338-18940{background-color:purple}.attribute-filter__attr_1338-18941{background-color:#909}.attribute-filter__attr_1338-18931{background-color:#A146FF}.attribute-filter__attr_1338-18939{background-color:#f09}.attribute-filter__attr_1338-18937{background-color:#FFD4FF}.attribute-filter__attr_1338-18938{background-color:#FFBFBF}.attribute-filter__attr_1338-18935{background-color:#e0f}.attribute-filter__attr_1338-18936{background-color:#FF6B90}.attribute-filter__attr_1338-19682{background-color:#AA151A}.attribute-filter__attr_1338-8064{background-color:#553A26}.attribute-filter__attr_1338-19223{background-color:#CFAF7F}.attribute-filter__attr_1338-8060{background-color:#A1740B}.attribute-filter__attr_1338-8065{background-color:#B07C2E}.attribute-filter__attr_1338-19225{background-color:#C19A6B}.attribute-filter__attr_1338-19222{background-color:#8F4E35}.attribute-filter__attr_1338-8094{background-color:#919191}.attribute-filter__attr_1338-19627{background-color:#73D10F}.attribute-filter__attr_1338-19625{background-color:#2B5429}.attribute-filter__attr_1338-19626{background-color:#0F220F}.attribute-filter__attr_1338-8099{background-color:#ABBD99}.attribute-filter__attr_1338-8108{background-color:#9f0}.attribute-filter__attr_1338-19675{background-color:#4D2244}.attribute-filter__attr_1338-19649{background-color:#FFA58F}.attribute-filter__attr_1338-19642{background-color:#FF8103}.attribute-filter__attr_1338-19687{background-color:#E81E3C}.attribute-filter__attr_1338-19683{background-color:#E73D59}.attribute-filter__attr_1338-8127{background-color:#D60404}.attribute-filter__attr_1338-16175{background-color:#E66767}.attribute-filter__attr_1338-8122{background-color:#C62E2B}.attribute-filter__attr_1338-8073{background-color:#C4A700}.attribute-filter__attr_1338-19610{background-color:#F0D437}.attribute-filter__attr_1338-29430{background-color:#FFF9E6}.attribute-filter__attr_1338-29431{background-color:#F2F2E6}.attribute-filter__attr_1338-29432{background-color:#F5F1EB}.attribute-filter__attr_1338-29435{background-color:#FCFCF7}.attribute-filter__attr_1338-36106{background-color:#182E4F}.attribute-filter__attr_1338-8096{background-color:#4D5D53}.attribute-filter__attr_1338-19606{background-color:#8A360F}.attribute-filter__attr_1338-19607{background-color:#412F1A}.attribute-filter__attr_1338-19609{background-color:gold}.attribute-filter__attr_1338-19611{background-color:#F5D418}.attribute-filter__attr_1338-19647{background-color:#ff8c00}.attribute-filter__attr_1338-19648{background-color:#D53D1A}.attribute-filter__attr_1338-19652{background-color:#830E54}.attribute-filter__attr_1338-19654{background-color:#ffe4e1}.attribute-filter__attr_1338-19685{background-color:#CF1146}.attribute-filter__attr_1338-19686{background-color:#C93034}.attribute-filter__attr_1338-23334{background-color:#CEA66B}.attribute-filter__attr_1338-31507{background-color:#44322D}.attribute-filter__attr_1338-31510{background-color:#4C2F26}.attribute-filter__attr_1338-31513{background-color:#6F4E37}.attribute-filter__attr_1338-31517{background-color:#FAFFFF}.attribute-filter__attr_1338-31520{background-color:#fff5ee}.attribute-filter__attr_1338-34399{background-color:#A8C030}.attribute-filter__attr_1338-36291{background-color:#FFC7B5}.attribute-filter__attr_1338-36853{background-color:#C056CC}.attribute-filter__attr_1338-41527{background-color:#DF9116}.attribute-filter__attr_1338-41528{background-color:#FF0090}.attribute-filter__attr_1338-39341{background-color:#007FFF}.attribute-filter__attr_1338-42351{background-color:#520114}.attribute-filter__attr_1338-42591{background-color:#1A2344}.attribute-filter__attr_1338-44260{background-color:#8C7C79}.attribute-filter__attr_1338-44973{background-color:#997147}.attribute-filter__attr_1338-45531{background-color:#EEC900}.attribute-filter__attr_1338-45532{background-color:silver}.attribute-filter__attr_1338-58875{background-color:#0dd}.attribute-filter__attr_1338-123672{background-color:#AF6F09}.attribute-filter__attr_1338-123674{background-color:#f0f}.attribute-filter__attr_1338-124743{background-color:#B7410E}.attribute-filter__attr_1338-163690{background-color:#9B9A9F}.attribute-filter__attr_1338-197913{background-color:#8CF2D2}.attribute-filter__attr_1338-197915{background-color:#15728F}.attribute-filter__attr_1338-171912{background-color:#293133}.attribute-filter__attr_1338-315753{background-color:#ECC3B4}.attribute-filter__attr_1338-308351{background-color:#A5A7A2}.attribute-filter__attr_1338-163802{background-color:#E4E5E9}.filter-1338 .value-8030 .check-box{background-color:#000}.filter-1338 .value-8030 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8036 .check-box{background-color:#00c}.filter-1338 .value-8036 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8038 .check-box{background-color:#009EE0}.filter-1338 .value-8038 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8041 .check-box{background-color:#120A8F}.filter-1338 .value-8041 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8043 .check-box{background-color:#0cc}.filter-1338 .value-8043 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8044 .check-box{background-color:#0096E1}.filter-1338 .value-8044 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8046 .check-box{background-color:#6AB8B8}.filter-1338 .value-8046 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8048 .check-box{background-color:#232C3F}.filter-1338 .value-8048 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8049 .check-box{background-color:#041690}.filter-1338 .value-8049 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8052 .check-box{background-color:navy}.filter-1338 .value-8052 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8053 .check-box{background-color:#7FBCFF}.filter-1338 .value-8053 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8054 .check-box{background-color:#0057B5}.filter-1338 .value-8054 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8056 .check-box{background-color:#0047AB}.filter-1338 .value-8056 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8058 .check-box{background-color:#944300}.filter-1338 .value-8058 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8059 .check-box{background-color:#673831}.filter-1338 .value-8059 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8061 .check-box{background-color:#5E493E}.filter-1338 .value-8061 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8063 .check-box{background-color:#8b4513}.filter-1338 .value-8063 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8066 .check-box{background-color:#49392D}.filter-1338 .value-8066 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8071 .check-box{background-color:#ff0}.filter-1338 .value-8071 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%239b9b9b'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8076 .check-box{background-color:#ffffe0}.filter-1338 .value-8076 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%239b9b9b'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8079 .check-box{background-color:#DFFF00}.filter-1338 .value-8079 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%239b9b9b'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8081 .check-box{background-color:#E2B007}.filter-1338 .value-8081 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8086 .check-box{background-color:#919191}.filter-1338 .value-8086 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8087 .check-box{background-color:#627496}.filter-1338 .value-8087 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8088 .check-box{background-color:#414B61}.filter-1338 .value-8088 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8089 .check-box{background-color:#d3d3d3}.filter-1338 .value-8089 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8090 .check-box{background-color:dimgray}.filter-1338 .value-8090 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8095 .check-box{background-color:#858585}.filter-1338 .value-8095 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8097 .check-box{background-color:#00A550}.filter-1338 .value-8097 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8098 .check-box{background-color:#4B5C07}.filter-1338 .value-8098 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8100 .check-box{background-color:teal}.filter-1338 .value-8100 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8102 .check-box{background-color:#B4D400}.filter-1338 .value-8102 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8103 .check-box{background-color:#CBFF2E}.filter-1338 .value-8103 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%239b9b9b'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8104 .check-box{background-color:#1B6820}.filter-1338 .value-8104 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8105 .check-box{background-color:#3FBF1F}.filter-1338 .value-8105 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8106 .check-box{background-color:#007D13}.filter-1338 .value-8106 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8107 .check-box{background-color:#4B9668}.filter-1338 .value-8107 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8109 .check-box{background-color:#B1D827}.filter-1338 .value-8109 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8110 .check-box{background-color:#7fff00}.filter-1338 .value-8110 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%239b9b9b'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8111 .check-box{background-color:#004D0F}.filter-1338 .value-8111 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8112 .check-box{background-color:teal}.filter-1338 .value-8112 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8117 .check-box{background-color:#FF000D}.filter-1338 .value-8117 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8118 .check-box{background-color:#960018}.filter-1338 .value-8118 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8124 .check-box{background-color:#FF4847}.filter-1338 .value-8124 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8125 .check-box{background-color:#CD0808}.filter-1338 .value-8125 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8128 .check-box{background-color:#901800}.filter-1338 .value-8128 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8129 .check-box{background-color:#FF0F33}.filter-1338 .value-8129 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8130 .check-box{background-color:#630000}.filter-1338 .value-8130 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8147 .check-box{background-color:#fff}.filter-1338 .value-8147 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%239b9b9b'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8535 .check-box{background-color:#A19584}.filter-1338 .value-8535 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8986 .check-box{background-color:#8D1D2C}.filter-1338 .value-8986 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-11039 .check-box{background-color:#B3B1AA}.filter-1338 .value-11039 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-12339 .check-box{background-color:#CFA380}.filter-1338 .value-12339 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-15833 .check-box{background-color:#EAF044}.filter-1338 .value-15833 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%239b9b9b'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-15834 .check-box{background-color:#ECC900}.filter-1338 .value-15834 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-15835 .check-box{background-color:#C89F04}.filter-1338 .value-15835 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-15836 .check-box{background-color:#F5C714}.filter-1338 .value-15836 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-15837 .check-box{background-color:#F7BA0B}.filter-1338 .value-15837 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-15839 .check-box{background-color:#F5D314}.filter-1338 .value-15839 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-15850 .check-box{background-color:#100547}.filter-1338 .value-15850 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-16166 .check-box{background-color:#2B447A}.filter-1338 .value-16166 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-18927 .check-box{background-color:#FFC9F2}.filter-1338 .value-18927 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-18928 .check-box{background-color:orange}.filter-1338 .value-18928 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-18944 .check-box{background-color:#f63}.filter-1338 .value-18944 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-18943 .check-box{background-color:#FFCB8C}.filter-1338 .value-18943 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-18942 .check-box{background-color:#FF3000}.filter-1338 .value-18942 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-18929 .check-box{background-color:#740CC9}.filter-1338 .value-18929 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-18930 .check-box{background-color:#5C00B8}.filter-1338 .value-18930 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-18932 .check-box{background-color:#3E017A}.filter-1338 .value-18932 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-18933 .check-box{background-color:#BD92E0}.filter-1338 .value-18933 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-18934 .check-box{background-color:#B174FC}.filter-1338 .value-18934 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-18940 .check-box{background-color:purple}.filter-1338 .value-18940 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-18941 .check-box{background-color:#909}.filter-1338 .value-18941 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-18931 .check-box{background-color:#A146FF}.filter-1338 .value-18931 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-18939 .check-box{background-color:#f09}.filter-1338 .value-18939 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-18937 .check-box{background-color:#FFD4FF}.filter-1338 .value-18937 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-18938 .check-box{background-color:#FFBFBF}.filter-1338 .value-18938 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-18935 .check-box{background-color:#e0f}.filter-1338 .value-18935 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-18936 .check-box{background-color:#FF6B90}.filter-1338 .value-18936 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-19682 .check-box{background-color:#AA151A}.filter-1338 .value-19682 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8064 .check-box{background-color:#553A26}.filter-1338 .value-8064 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-19223 .check-box{background-color:#CFAF7F}.filter-1338 .value-19223 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8060 .check-box{background-color:#A1740B}.filter-1338 .value-8060 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8065 .check-box{background-color:#B07C2E}.filter-1338 .value-8065 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-19225 .check-box{background-color:#C19A6B}.filter-1338 .value-19225 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-19222 .check-box{background-color:#8F4E35}.filter-1338 .value-19222 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8094 .check-box{background-color:#919191}.filter-1338 .value-8094 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-19627 .check-box{background-color:#73D10F}.filter-1338 .value-19627 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-19625 .check-box{background-color:#2B5429}.filter-1338 .value-19625 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-19626 .check-box{background-color:#0F220F}.filter-1338 .value-19626 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8099 .check-box{background-color:#ABBD99}.filter-1338 .value-8099 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8108 .check-box{background-color:#9f0}.filter-1338 .value-8108 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%239b9b9b'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-19675 .check-box{background-color:#4D2244}.filter-1338 .value-19675 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-19649 .check-box{background-color:#FFA58F}.filter-1338 .value-19649 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-19642 .check-box{background-color:#FF8103}.filter-1338 .value-19642 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-19687 .check-box{background-color:#E81E3C}.filter-1338 .value-19687 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-19683 .check-box{background-color:#E73D59}.filter-1338 .value-19683 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8127 .check-box{background-color:#D60404}.filter-1338 .value-8127 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-16175 .check-box{background-color:#E66767}.filter-1338 .value-16175 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8122 .check-box{background-color:#C62E2B}.filter-1338 .value-8122 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8073 .check-box{background-color:#C4A700}.filter-1338 .value-8073 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-19610 .check-box{background-color:#F0D437}.filter-1338 .value-19610 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-29430 .check-box{background-color:#FFF9E6}.filter-1338 .value-29430 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%239b9b9b'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-29431 .check-box{background-color:#F2F2E6}.filter-1338 .value-29431 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%239b9b9b'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-29432 .check-box{background-color:#F5F1EB}.filter-1338 .value-29432 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%239b9b9b'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-29435 .check-box{background-color:#FCFCF7}.filter-1338 .value-29435 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%239b9b9b'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-36106 .check-box{background-color:#182E4F}.filter-1338 .value-36106 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-8096 .check-box{background-color:#4D5D53}.filter-1338 .value-8096 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-19606 .check-box{background-color:#8A360F}.filter-1338 .value-19606 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-19607 .check-box{background-color:#412F1A}.filter-1338 .value-19607 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-19609 .check-box{background-color:gold}.filter-1338 .value-19609 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-19611 .check-box{background-color:#F5D418}.filter-1338 .value-19611 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-19647 .check-box{background-color:#ff8c00}.filter-1338 .value-19647 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-19648 .check-box{background-color:#D53D1A}.filter-1338 .value-19648 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-19652 .check-box{background-color:#830E54}.filter-1338 .value-19652 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-19654 .check-box{background-color:#ffe4e1}.filter-1338 .value-19654 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%239b9b9b'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-19685 .check-box{background-color:#CF1146}.filter-1338 .value-19685 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-19686 .check-box{background-color:#C93034}.filter-1338 .value-19686 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-23334 .check-box{background-color:#CEA66B}.filter-1338 .value-23334 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-31507 .check-box{background-color:#44322D}.filter-1338 .value-31507 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-31510 .check-box{background-color:#4C2F26}.filter-1338 .value-31510 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-31513 .check-box{background-color:#6F4E37}.filter-1338 .value-31513 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-31517 .check-box{background-color:#FAFFFF}.filter-1338 .value-31517 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%239b9b9b'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-31520 .check-box{background-color:#fff5ee}.filter-1338 .value-31520 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%239b9b9b'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-34399 .check-box{background-color:#A8C030}.filter-1338 .value-34399 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-36291 .check-box{background-color:#FFC7B5}.filter-1338 .value-36291 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-36853 .check-box{background-color:#C056CC}.filter-1338 .value-36853 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-41527 .check-box{background-color:#DF9116}.filter-1338 .value-41527 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-41528 .check-box{background-color:#FF0090}.filter-1338 .value-41528 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-39341 .check-box{background-color:#007FFF}.filter-1338 .value-39341 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-42351 .check-box{background-color:#520114}.filter-1338 .value-42351 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-42591 .check-box{background-color:#1A2344}.filter-1338 .value-42591 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-44260 .check-box{background-color:#8C7C79}.filter-1338 .value-44260 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-44973 .check-box{background-color:#997147}.filter-1338 .value-44973 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-45531 .check-box{background-color:#EEC900}.filter-1338 .value-45531 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-45532 .check-box{background-color:silver}.filter-1338 .value-45532 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-58875 .check-box{background-color:#0dd}.filter-1338 .value-58875 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-123672 .check-box{background-color:#AF6F09}.filter-1338 .value-123672 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-123674 .check-box{background-color:#f0f}.filter-1338 .value-123674 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-124743 .check-box{background-color:#B7410E}.filter-1338 .value-124743 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-163690 .check-box{background-color:#9B9A9F}.filter-1338 .value-163690 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-197913 .check-box{background-color:#8CF2D2}.filter-1338 .value-197913 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-197915 .check-box{background-color:#15728F}.filter-1338 .value-197915 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-171912 .check-box{background-color:#293133}.filter-1338 .value-171912 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-315753 .check-box{background-color:#ECC3B4}.filter-1338 .value-315753 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-308351 .check-box{background-color:#A5A7A2}.filter-1338 .value-308351 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-163802 .check-box{background-color:#E4E5E9}.filter-1338 .value-163802 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%239b9b9b'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-125503 .check-box{background-image:url("data:image/svg+xml,    %3Csvg version='1.1' id='Capa_1' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='36px' height='36px' viewBox='0 0 36 36'%3E      %3Crect fill='%23b5b5b5' width='18' height='18' %2F%3E      %3Crect fill='%23fff' x='18' width='18' height='18'%2F%3E      %3Crect fill='%23fff' y='18' width='18' height='18'%2F%3E      %3Crect fill='%23b5b5b5' x='18' y='18' width='18' height='18'%2F%3E    %3C%2Fsvg%3E");background-size:50%}.filter-1338 .value-125503 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23000'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.filter-1338 .value-63114 .check-box{background-image:url("data:image/svg+xml,    %3Csvg version='1.1' id='Capa_1' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='36px' height='36px' viewBox='0 0 36 36'%3E      %3Crect fill='%23FFD400' width='18' height='18' %2F%3E      %3Crect fill='%235AD36C' x='18' width='18' height='18'%2F%3E      %3Crect fill='%23ED233C' y='18' width='18' height='18'%2F%3E      %3Crect fill='%233C6DE8' x='18' y='18' width='18' height='18'%2F%3E    %3C%2Fsvg%3E");background-size:cover}.filter-1338 .value-63114 .check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.product-details{padding:15px;background-color:white;margin-bottom:1px}@media screen and (min-width: 770px){.product-details{margin-bottom:10px}}.product-details-description{font-size:1.1em;overflow:hidden;text-overflow:ellipsis;display:block;max-width:100%;height:4.5em;font-size:1em;line-height:1.5;-webkit-line-clamp:3;-webkit-box-orient:vertical;margin-bottom:10px}.product-details-title{font-size:1.3em;margin-top:10px}.product-details-subtitle{display:block;color:#18A45C;font-size:1.2em;text-decoration:underline}.product-details-subtitle:hover{color:#18A45C}.product-details-img{float:left;display:flex;justify-content:center;margin-right:15px;width:200px}.product-details:after{content:"";display:table;clear:both}@media screen and (max-width: 769px){.product-details{text-align:center;display:flex;flex-direction:column;align-items:center}.product-details-title{order:1}.product-details-img{margin-right:0;order:2}.product-details-subtitle{margin-top:10px;order:4}.product-details-description{order:3}}.editorial-text{display:flex;flex-wrap:wrap;justify-content:center;margin-bottom:10px;background-color:white}.editorial-text-shop{text-align:center}.editorial-text-title,.editorial-text-block{padding-left:20px;padding-right:20px}.editorial-text-picture{display:flex;flex-direction:column;justify-content:space-around;background-color:white;height:255px}.editorial-text-picture img{max-height:174px;margin:0 auto;max-width:90%}.editorial-text-title{flex:1;flex-basis:100%;margin:0;font-size:1.5em;padding-top:10px;padding-bottom:10px;border-bottom:solid 1px #ebebeb}.editorial-text-trigger{opacity:0;display:none}.editorial-text-trigger:checked ~ .editorial-text-block .editorial-text-block-content{height:auto}.editorial-text-trigger:checked ~ .editorial-text-block .editorial-text-block-content:after{background:none}.editorial-text-trigger:checked ~ .editorial-text-block .editorial-text-block-read-more{display:none}.editorial-text-trigger:checked ~ .editorial-text-block .editorial-text-block-close{display:block}.editorial-text-block{position:relative;background-color:white;padding-bottom:40px}.editorial-text-block img{width:100%}.editorial-text-block-close{display:none}.editorial-text-block-button{position:absolute;bottom:0;color:#777;padding-bottom:20px;cursor:pointer}.editorial-text-block-title{border-bottom:solid 1px #ebebeb;display:none;font-size:1.7em;margin:10px 0 0 0;padding-bottom:10px}.editorial-text-block-content{overflow:hidden;height:165px}.editorial-text-block-content:after{bottom:40px;position:absolute;left:0;height:50px;width:calc(100% - 20px);content:"";background:linear-gradient(to top, white 10%, rgba(255,255,255,0) 108%);pointer-events:none}@media screen and (max-width: 991px){.editorial-text-block-content{height:90px}.editorial-text-content{height:128px}.editorial-text-picture{height:140px}.editorial-text-picture img{max-height:90px}}@media screen and (min-width: 992px){.editorial-text{background-color:transparent;justify-content:space-between}.editorial-text-picture{order:2;flex-basis:calc(25% - 10px)}.editorial-text-block{order:1;flex-basis:75%}.editorial-text-block-title{display:block}.editorial-text-title{display:none}}@media screen and (min-width: 1200px){.editorial-text-picture{flex-basis:calc(20% - 10px)}.editorial-text-block{flex-basis:80%}}#search-popup{background:rgba(0,0,0,0.84);color:white}.overlay{top:0;left:0;right:0;bottom:0;position:fixed;z-index:-1;opacity:0;transition:opacity .5s ease-in,z-index 0s step-start .5s}.overlay:target{z-index:8;transition:opacity .5s ease-out,z-index 0s step-start 0s;opacity:1}.overlay:target .popup{transform:translate(0, 0)}.overlay .close{font-size:3em;line-height:0.5em;position:absolute;right:0;top:0;bottom:0;left:0;font-weight:300;cursor:default}.overlay .close::before{cursor:pointer;position:absolute;top:15px;right:20px;content:'\d7'}.popup{width:95%;transform-origin:4px 0;transition:transform .5s cubic-bezier(0.77, 0.2, 0.05, 1);transform:translate(0, -250%);margin:75px auto 0 auto}@media screen and (min-width: 992px){.popup{width:60%}}.popup a{display:block}.search-tips{display:flex;flex-direction:row}.search-tips h3{margin:0;font-size:1.1em;font-weight:bold}.search-tips-title{display:flex;text-align:center;align-items:center;justify-content:center;background-color:#18A45C;flex:1 1 50%;position:relative;color:white}.search-tips-title-arrow{position:absolute;right:-27px;top:calc(50% - 10px);width:0;height:0;border-left:17px solid transparent;border-right:17px solid transparent;border-bottom:20px solid #18A45C;transform:rotate(90deg)}.search-tips-body{border:1px solid gainsboro;background-color:white;align-items:center;display:flex;flex:1 1 50%;justify-content:center;padding-top:15px;padding-bottom:15px}.search-tips-body ul{margin:0}.search-tips-body ul li{font-size:0.9em}@media screen and (max-width: 769px){.search-tips{flex-direction:column}.search-tips-title{align-items:center;flex:0 0 100%;padding-top:10px;padding-bottom:10px}.search-tips-title-arrow{top:auto;bottom:-18px;left:calc(50% - 10px);transform:rotate(180deg)}.search-tips-body{padding-top:20px;padding-bottom:20px;flex-basis:100%}}.error{margin-top:10px;background:none;text-align:center;font-size:1.8rem;color:#777}.error .action-button{font-size:0.8em;padding:10px 20px;margin:50px 0 20px;display:inline-block}.error a.action-button:hover{text-decoration:none}.error h1{font-size:2.4em}.error h2{font-size:1.5em}.error h1,.error h2{font-weight:100;margin:20px 0}@media screen and (min-width: 770px){.error h1,.error h2{margin-top:50px}}.error ul{list-style:none;padding:0}.error ul li{font-size:0.9em;padding-bottom:10px}.error .top-queries{background-color:white}.error .top-queries .carousel-tile{width:100%}@media screen and (min-width: 480px){.error .top-queries .carousel-tile{width:50%}}@media screen and (min-width: 661px){.error .top-queries .carousel-tile{width:33.33333%}}@media screen and (min-width: 770px){.error .top-queries .carousel-tile{width:33.33333%}}@media screen and (min-width: 992px){.error .top-queries .carousel-tile{width:25%}}@media screen and (min-width: 1200px){.error .top-queries .carousel-tile{width:25%}}.affiliate-banner{display:block}.affiliate-banner--aliexpress-bf{width:100%;height:250px;background-position:center;background-repeat:no-repeat;background-image:url("/assets/img/commercials/aliexpress-bf/small-banner-a940cda8bafc4e59205d78a9e367c6c4.jpg")}@media screen and (min-width: 992px){.affiliate-banner--aliexpress-bf{height:90px;background-image:url("/assets/img/commercials/aliexpress-bf/super-banner-189f027650f839ad82fdf65288c9cf2f.jpg")}}.typeahead{position:relative}.typeahead .typeahead__list{display:none}.typeahead.result .typeahead__list{display:block}.typeahead [role=listbox]{position:absolute;top:0;left:0;margin-top:1px;background:white;text-align:left;padding:0;border:0;list-style:none;width:100%;z-index:1002;box-shadow:0 6px 12px #9e9e9e}.typeahead [role=listbox] li{border:0;color:black;cursor:pointer}.typeahead [role=listbox] li mark{font-weight:bold;background-color:transparent;color:inherit}.typeahead [role=listbox] li:hover{background:#f5f5f5;color:black}.typeahead [role=listbox] li[aria-selected=true]{background-color:#18A45C;color:white}.typeahead [role=listbox]>li{color:black;display:block;padding:8px 20px}.typeahead [role=status]{display:none}.search-form .typeahead-open .input-group{border-bottom-right-radius:0;border-bottom-left-radius:0}.overlay [role=listbox]{box-shadow:none}.best-price-seal{margin:20px 20px 10px}.best-price-seal img{width:200px;height:100px}.best-price-seal h2{margin:0 auto;font-size:.9em;font-weight:400;max-width:345px}.best-price-seal h2 b{font-size:1.5em;display:block}@media screen and (min-width: 770px){header.index .navbar-nav{flex-wrap:wrap;justify-content:space-between}header.index .navbar-nav-logo{order:1}header.index .best-price-seal{order:2;display:flex;padding:15px 0 0}header.index .best-price-seal img{margin-right:15px;width:130px;height:60px}header.index .best-price-seal h2{text-align:left}header.index .search-form{order:3}}html.remodal-is-locked{overflow:hidden;-ms-touch-action:none;touch-action:none}.remodal,[data-remodal-id]{display:none}.remodal-overlay{position:fixed;z-index:9999;top:-5000px;right:-5000px;bottom:-5000px;left:-5000px;display:none}.remodal-overlay-show{display:block}.remodal-wrapper{position:fixed;z-index:10000;top:0;right:0;bottom:0;left:0;align-items:center;justify-content:space-around;display:none;overflow:auto;text-align:center;-webkit-overflow-scrolling:touch}.remodal-wrapper .remodal-template{display:block}.remodal-wrapper:after{display:inline-block;height:100%;margin-left:-0.05em;content:""}.remodal-overlay,.remodal-wrapper{-webkit-backface-visibility:hidden;backface-visibility:hidden}.remodal{position:relative;outline:none;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;text-size-adjust:100%}.remodal-is-initialized{display:inline-block}.remodal-bg.remodal-is-opening,.remodal-bg.remodal-is-opened{-webkit-filter:blur(3px);filter:blur(3px)}.remodal-overlay{background:rgba(43,46,56,0.9)}.remodal-overlay.remodal-is-opening,.remodal-overlay.remodal-is-closing{-webkit-animation-duration:0.3s;animation-duration:0.3s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.remodal-overlay.remodal-is-opening{-webkit-animation-name:remodal-overlay-opening-keyframes;animation-name:remodal-overlay-opening-keyframes}.remodal-overlay.remodal-is-closing{-webkit-animation-name:remodal-overlay-closing-keyframes;animation-name:remodal-overlay-closing-keyframes}.remodal-wrapper{padding:10px 10px 0}.remodal{box-sizing:border-box;width:100%;margin:auto;padding:35px;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);color:#2b2e38;background:#fff}.remodal.remodal-is-opening,.remodal.remodal-is-closing{-webkit-animation-duration:0.3s;animation-duration:0.3s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.remodal.remodal-is-opening{-webkit-animation-name:remodal-opening-keyframes;animation-name:remodal-opening-keyframes}.remodal.remodal-is-closing{-webkit-animation-name:remodal-closing-keyframes;animation-name:remodal-closing-keyframes}.remodal,.remodal-wrapper:after{vertical-align:middle}.remodal-close{position:absolute;top:0;left:0;display:block;overflow:visible;width:35px;height:35px;margin:0;padding:0;cursor:pointer;-webkit-transition:color 0.2s;transition:color 0.2s;text-decoration:none;color:#95979c;border:0;outline:0;background:transparent}.remodal-close:hover,.remodal-close:focus{color:#2b2e38}.remodal-close:before{font-family:Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;font-size:25px;line-height:35px;position:absolute;top:0;left:0;display:block;width:35px;content:"\00d7";text-align:center}.remodal-confirm,.remodal-cancel{font:inherit;display:inline-block;overflow:visible;min-width:110px;margin:0;padding:12px 0;cursor:pointer;-webkit-transition:background 0.2s;transition:background 0.2s;text-align:center;vertical-align:middle;text-decoration:none;border:0;outline:0}.remodal-confirm{color:#fff;background:#81c784}.remodal-confirm:hover,.remodal-confirm:focus{background:#66bb6a}.remodal-cancel{color:#fff;background:#e57373}.remodal-cancel:hover,.remodal-cancel:focus{background:#ef5350}.remodal-confirm::-moz-focus-inner,.remodal-cancel::-moz-focus-inner,.remodal-close::-moz-focus-inner{padding:0;border:0}@-webkit-keyframes remodal-opening-keyframes{from{-webkit-transform:scale(1.05);transform:scale(1.05);opacity:0}to{-webkit-transform:none;transform:none;opacity:1;-webkit-filter:blur(0);filter:blur(0)}}@keyframes remodal-opening-keyframes{from{-webkit-transform:scale(1.05);transform:scale(1.05);opacity:0}to{-webkit-transform:none;transform:none;opacity:1;-webkit-filter:blur(0);filter:blur(0)}}@-webkit-keyframes remodal-closing-keyframes{from{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(0.95);transform:scale(0.95);opacity:0;-webkit-filter:blur(0);filter:blur(0)}}@keyframes remodal-closing-keyframes{from{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(0.95);transform:scale(0.95);opacity:0;-webkit-filter:blur(0);filter:blur(0)}}@-webkit-keyframes remodal-overlay-opening-keyframes{from{opacity:0}to{opacity:1}}@keyframes remodal-overlay-opening-keyframes{from{opacity:0}to{opacity:1}}@-webkit-keyframes remodal-overlay-closing-keyframes{from{opacity:1}to{opacity:0}}@keyframes remodal-overlay-closing-keyframes{from{opacity:1}to{opacity:0}}@media only screen and (min-width: 641px){.remodal{max-width:700px}}.lt-ie9 .remodal-overlay{background:#2b2e38}.lt-ie9 .remodal{width:700px}.contact-container{background-position:center center;background-repeat:repeat;height:1000px;padding:50px}@media screen and (max-width: 660px){.contact-container{background-image:url("/assets/img/contact/contact-m@0,5x-ec2b05d92e9b45fd6a2f3a060e543c4d.jpg")}}@media only screen and (max-width: 660px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 660px) and (min--moz-device-pixel-ratio: 2), only screen and (max-width: 660px) and (-o-min-device-pixel-ratio: 2 / 1), only screen and (max-width: 660px) and (min-device-pixel-ratio: 2), only screen and (max-width: 660px) and (min-resolution: 192dpi), only screen and (max-width: 660px) and (min-resolution: 2dppx){.contact-container{background-image:url("/assets/img/contact/contact-m-7e4c465d71fcd74a896fcf7fd108c054.jpg");background-size:2000px 1125px}}@media screen and (min-width: 661px){.contact-container{background-image:url("/assets/img/contact/contact@0,5x-362e25ff94289cdd72cc54e91f91c90b.jpg")}}@media only screen and (min-width: 661px) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-width: 661px) and (min--moz-device-pixel-ratio: 2), only screen and (min-width: 661px) and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-width: 661px) and (min-device-pixel-ratio: 2), only screen and (min-width: 661px) and (min-resolution: 192dpi), only screen and (min-width: 661px) and (min-resolution: 2dppx){.contact-container{background-image:url("/assets/img/contact/contact-7ef29bebbbe0fca1ca26745a4018e7ad.jpg");background-size:2000px 1125px}}@media screen and (max-width: 991px){.contact-container{background-size:auto 100%}}@media screen and (max-width: 769px){.contact-container{padding:10px}}.contact-block{font-size:1.1em;width:40%;background-color:white;opacity:.8;padding:10px 15px}@media screen and (max-width: 769px){.contact-block{width:100%}}.contact-block:nth-child(1){margin-bottom:50px}.contact-block div{text-align:center;padding:20px 0}.contact-block .action-button{padding:7px 10px}.contact-block a{color:#18A45C}.contact-shops-block{background-color:white;padding:15px 20px;margin-top:10px}.contact-shops-list{display:flex;justify-content:space-between;flex-wrap:wrap}.contact-shops-list .contact-shops-block{width:100%}@media screen and (min-width: 661px){.contact-shops-list .contact-shops-block{flex-basis:calc(100% / 2 - 5px)}}@media screen and (min-width: 992px){.contact-shops-list .contact-shops-block{flex-basis:calc(100% / 3 - 7px)}}.contact-shops a{display:block}.teaser{position:absolute;z-index:-1;top:0;width:100%;height:540px;background-repeat:no-repeat;background-position:top center;background-size:cover}@media screen and (max-width: 769px) and (max-resolution: 191dpi), screen and (max-width: 769px) and (-webkit-max-device-pixel-ratio: 1.99){.teaser{background-image:url("/assets/img/themes/auspreiser_like/header-with-teaser/image-1x-d4d8104021bb608c5167d83a645fc9db.jpg")}}@media screen and (max-width: 769px) and (min-resolution: 192dpi), screen and (max-width: 769px) and (-webkit-min-device-pixel-ratio: 2){.teaser{background-image:url("/assets/img/themes/auspreiser_like/header-with-teaser/image-2x-550c83341b4945c833dc95ec8425cd77.jpg")}}@media screen and (min-width: 770px) and (max-resolution: 191dpi), screen and (min-width: 770px) and (-webkit-max-device-pixel-ratio: 1.99){.teaser{background-image:url("/assets/img/themes/auspreiser_like/header-with-teaser/image-2x-550c83341b4945c833dc95ec8425cd77.jpg")}}@media screen and (min-width: 992px) and (max-resolution: 191dpi), screen and (min-width: 992px) and (-webkit-max-device-pixel-ratio: 1.99){.teaser{background-image:url("/assets/img/themes/auspreiser_like/header-with-teaser/image-4x-84a4f940ad2e3123637f770db7ec52e3.jpg")}}@media screen and (min-width: 770px) and (min-resolution: 192dpi), screen and (min-width: 770px) and (-webkit-min-device-pixel-ratio: 2){.teaser{background-image:url("/assets/img/themes/auspreiser_like/header-with-teaser/image-4x-84a4f940ad2e3123637f770db7ec52e3.jpg")}}@media screen and (min-width: 770px){.teaser{height:635px}}picture,noscript{height:100%}picture.image,noscript.image{display:flex;flex-direction:column;justify-content:center;align-items:center}picture.image img,noscript.image img{max-width:100%;max-height:100%;margin:0 auto}.payment-methods{display:flex;justify-content:center;margin-top:7px}.payment-methods .payment-method{margin:0 2px;width:18px;height:18px;border-radius:9px;background-position:center center;background-repeat:no-repeat;background-size:90% 90%;background-color:#ebebeb;position:relative;overflow:hidden;padding:4px 0;font-size:9px;text-align:center}.payment-methods .payment-method .tooltip{bottom:25px;right:-5px}.payment-methods .payment-method .tooltip:before{right:10px}.payment-methods .payment-method:hover{overflow:visible}.payment-methods .payment-method:hover .tooltip{visibility:visible;font-size:12px}.payment-methods .payment-method.pp,.payment-methods .payment-method.psc{color:transparent;background-image:url("/assets/img/themes/auspreiser_like/payment_methods/Icon_Paypal-a90cc1c2c342c3e56062e63cee270e35.png")}.payment-methods .payment-method.visa{color:transparent;background-image:url("/assets/img/themes/auspreiser_like/payment_methods/Icon_Visa-b815087087efe46c26a93eca803239a6.png")}.payment-methods .payment-method.mc{color:transparent;background-image:url("/assets/img/themes/auspreiser_like/payment_methods/Icon_Mastercard-af85225422d814cc370957e6eada588c.png")}.payment-methods .payment-method.suw{color:transparent;background-image:url("/assets/img/themes/auspreiser_like/payment_methods/Icon_Sofort1-4f8c26e11ba0e2306d099fc022ea529a.png")}.payment-methods .payment-method.amzp{color:transparent;background-image:url("/assets/img/themes/auspreiser_like/payment_methods/Icon_Amazon-ebfe35c23ee2127bf8975ae6cfb3c426.png")}.payment-methods .payment-method.grp{color:transparent;background-image:url("/assets/img/themes/auspreiser_like/payment_methods/Icon_GiroPay-57b2b93b00f46f295e1b064f73ec3d59.png")}.payment-methods .payment-method:after{color:#4c4c4c;line-height:18px;font-size:9px}.carousel__wrapper{padding:0 50px;position:relative}.carousel__wrapper .carousel{position:static}.carousel{position:relative;overflow:hidden;padding:20px 0}.carousel-title{color:#828282;font-size:1.285711em;font-weight:bold;letter-spacing:1px;margin:0 0 0 20px}@media screen and (min-width: 770px){.carousel-title{margin:0}}.carousel-content{background-color:white;display:flex}.carousel-content-transition{transition:transform .5s}.carousel-btn{border-radius:50%;background-image:url("data:image/svg+xml,    %3Csvg version='1.1'  xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' xmlns%3Axlink='http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink' viewBox='0 0 100 100' fill='%2318A45C'%3E        %3Cpath d='M 10%2C50 L 60%2C100 L 70%2C90 L 30%2C50  L 70%2C10 L 60%2C0 Z'%3E%3C%2Fpath%3E    %3C%2Fsvg%3E  ");background-repeat:no-repeat;background-color:rgba(255,255,255,0.75);background-position:center;border:0;position:absolute;top:calc(50% - 30px);box-shadow:2px 1px 19px -7px rgba(0,0,0,0.36);cursor:pointer;width:36px;height:36px;background-size:26px;outline:none}.carousel-btn:disabled{cursor:unset;opacity:.5}.carousel-btn-right{right:10px;transform:rotate(180deg)}.carousel-btn-left{left:10px}.carousel-tile{flex-shrink:0;display:block}.carousel-tile a{width:100%;display:block}.carousel-tile-content{width:100%;font-size:1.2em;line-height:1.5em;text-transform:capitalize}.carousel-tile-content picture{display:flex;flex-direction:column;justify-content:center;width:100%;height:104px}.carousel-tile-content img{max-height:100%;margin:0 auto}.carousel-tile-content-text{margin:19px 0;height:3em;color:#1869A4}.carousel-tile-content-price{color:black;font-weight:bold;font-size:1.36em}.top-queries{margin:55px 0px 80px 0}.top-queries .carousel-title{text-align:center;padding-bottom:10px}@media screen and (min-width: 661px){.top-queries .carousel-title{text-align:left}}.top-queries .carousel-tile{text-align:center;width:100%}@media screen and (min-width: 480px){.top-queries .carousel-tile{width:50%}}@media screen and (min-width: 661px){.top-queries .carousel-tile{width:33.33333%}}@media screen and (min-width: 770px){.top-queries .carousel-tile{width:25%}}@media screen and (min-width: 992px){.top-queries .carousel-tile{width:25%}}@media screen and (min-width: 1200px){.top-queries .carousel-tile{width:16.66667%}}.tooltip{position:absolute;visibility:hidden;background:#18A45C;color:white;border-radius:5px;padding:5px 10px;font-size:0.9em;display:flex;flex-direction:column;align-items:center;z-index:1000;bottom:23px;min-width:55px}.tooltip:before{display:block;content:"";border-color:#18A45C transparent transparent transparent;border-style:solid;border-width:5px;height:0;width:0;position:absolute;bottom:-10px;right:35px}.product{background-color:white}.product .shop-name{font-size:.85em;flex-grow:1;font-style:italic}.product .encoded-link:hover{text-decoration:none}.product .container{display:grid;grid-template-areas:"title" "details" "offer-list-title" "condition-filters" "offers" "recommendations" "description" "automated-text"}@media screen and (min-width: 770px){.product .container{grid-gap:15px;grid-template-areas:"title              title" "condition-filters  condition-filters" "offers             details" "recommendations    recommendations" "description        description" "automated-text     automated-text";grid-template-columns:1fr 310px}}.product-title{grid-area:title;padding:10px}@media screen and (min-width: 770px){.product-title{padding:10px 0}}.product-title h1{font-size:1.2em;font-weight:bold;margin-top:0;margin-bottom:5px}.product-title a{font-size:1em;font-weight:bold}.product-title a:hover{color:black}.product-offer-list-title{grid-area:offer-list-title;padding:10px;font-size:1.2em;font-weight:bold;margin-top:0;margin-bottom:0;color:#555}@media screen and (min-width: 770px){.product-offer-list-title{display:none}}.product-recommendations{grid-area:recommendations}.product-content-offers{grid-area:offers}.product-details{grid-area:details}.product-description{grid-area:description}.product-automated-text{grid-area:automated-text}.product-condition-filters{grid-area:condition-filters}.product-details{background:white;padding:0 10px 10px;display:flex;flex-direction:column;text-decoration:none}.product-details__title{display:none}@media screen and (min-width: 770px){.product-details__title{display:block;margin:8px 0 0 0;color:black;font-weight:bold;align-self:flex-start;text-transform:uppercase}}.product-details__img{width:100%;height:180px;position:relative}@media screen and (min-width: 770px){.product-details__img{margin:20px 0}}.product-details__img__enlarge-icon{position:absolute;right:0;display:none;background-image:url("data:image/svg+xml,    %3Csvg id='Layer_1' data-name='Layer 1' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' viewBox='0 0 64.36 64.36'%3E      %3Cdefs%3E        %3Cstyle%3E          .cls-1%2C.cls-2%2C.cls-3{fill%3Anone%3Bstroke-miterlimit%3A10%3B}          .cls-1%2C.cls-3{stroke%3A%2318A45C%3B}.cls-1%2C.cls-2{stroke-width%3A2px%3B}          .cls-2{stroke%3A%2318A45C%3B}.cls-3{stroke-width%3A3px%3B}          .cls-4{fill%3A%2318A45C%3B}        %3C%2Fstyle%3E      %3C%2Fdefs%3E      %3Crect class='cls-1' x='1' y='1' width='62.36' height='62.36' rx='8.6'%2F%3E      %3Cpath class='cls-2' d='M52.45%2C29.37' transform='translate%28-1.32 -0.93%29'%2F%3E      %3Cline class='cls-3' x1='36.01' y1='28.81' x2='50.9' y2='13.61'%2F%3E      %3Cpolygon class='cls-4' points='52.39 26.47 49.92 26.41 50.24 14.28 38.13 14.85 38.01 12.39 52.77 11.7 52.39 26.47'%2F%3E      %3Cline class='cls-3' x1='28.8' y1='35.89' x2='13.88' y2='51.06'%2F%3E      %3Cpolygon class='cls-4' points='12.43 38.2 14.89 38.26 14.54 50.39 26.66 49.84 26.77 52.3 12.01 52.96 12.43 38.2'%2F%3E    %3C%2Fsvg%3E  ");width:32px;height:32px}.product-details__img--with-image-enlargement{cursor:zoom-in}.product-details__img--with-image-enlargement [class*=__enlarge-icon]{display:inline-block}.product-details__price-and-shipment{display:none;width:100%;margin-top:10px;margin-bottom:10px}@media screen and (min-width: 770px){.product-details__price-and-shipment{display:flex;justify-content:space-between}}.product-details__price-and-shipment .price{white-space:nowrap;color:#18A45C}.product-details .btn{display:none;font-size:1.2em;font-weight:bold;width:100%;padding:6px}@media screen and (min-width: 770px){.product-details .btn{display:block}}.product-details__description{display:none}@media screen and (min-width: 770px){.product-details__description{display:block}}.product-details__description input{display:none}.product-details__description input:checked ~ .product-details__description__content{max-height:none}.product-details__description input:checked ~ .product-details__description__less-button{display:block}.product-details__description input:checked ~ .product-details__description__more-button{display:none}.product-details__description label{padding:10px 0 0;text-decoration:underline;cursor:pointer;font-weight:bold}.product-details__description__content--long{max-height:125px;overflow:hidden}.product-details__description__less-button{display:none}.product-details__description__more-button{display:block}.product-content-offers{background-color:white}.product-offer{display:grid;grid-template-areas:"title      voucher      price     collapse" "ship       voucher      pay       collapse" "btn        btn          btn       btn";grid-template-columns:minmax(50px, 1fr) 35px 100px 25px;border-top:1px solid #eaeaea;grid-column-gap:15px;grid-row-gap:1px;text-decoration:none;padding:10px}.product-offer:first-child .price{color:#18A45C}.product-offer input:checked ~ .product-offer-shipment-time,.product-offer input:checked ~ .product-offer-payment-methods,.product-offer input:checked ~ .product-offer-button{margin:10px 0;max-height:80px;overflow:unset}.product-offer input:checked ~ label icon{transform:rotate(100grad)}.product-offer input:checked ~ .product-offer-title-and-shop--used-offer-enabled h3{display:inline}@media screen and (min-width: 770px){.product-offer{grid-template-areas:"title    voucher      price     collapse" "ship     .            pay       collapse" ".        .            btn       .";padding:12px 0 5px 0}}@media screen and (max-width: 991px){.product-offer-shipment-time,.product-offer-payment-methods,.product-offer-button{overflow:hidden;max-height:0;transition:max-height 0.15s cubic-bezier(0.67, 0.32, 0.46, 0.94)}.product-offer-title-and-shop--used-offer-enabled{display:flex;flex-direction:column}.product-offer-title-and-shop--used-offer-enabled h3{order:1}}@media screen and (min-width: 992px){.product-offer{grid-template-areas:"title   voucher   ship    pay    price   btn";grid-template-columns:120px  40px      3fr     120px  3fr     1fr}.product-offer label{display:none}}@media screen and (min-width: 1200px){.product-offer{grid-template-areas:"title   voucher   ship    pay    price   btn";grid-template-columns:7fr    40px      3fr     120px  3fr     3fr}.product-offer .btn{display:block}}.product-offer-label{font-weight:bold;padding-bottom:5px;font-size:.9em}.product-offer .shipping-cost{font-size:.8em}.product-offer input{display:none}.product-offer .shop-name{padding:5px 0;color:#767676;text-overflow:ellipsis;overflow:hidden}.product-offer-title-and-shop{color:#515151;grid-area:title}.product-offer-title-and-shop h3{margin:5px 0 0;display:none;font-size:.9em;color:black;font-weight:bold}@media screen and (min-width: 992px){.product-offer-title-and-shop h3{display:inline;vertical-align:top}}.product-offer-title-and-shop h3:hover{color:#18A45C}.product-offer-shipment-time{grid-area:ship}.product-offer-shipment-time .shipment-time{color:#515151;font-size:.9em}.product-offer-payment-methods{grid-area:pay}.product-offer-payment-methods .product-offer-label{text-align:right}.product-offer-payment-methods .payment-methods{margin:0;display:grid;direction:rtl;grid-template-columns:repeat(5, 1fr);grid-row-gap:5px;grid-column-gap:2px}.product-offer-payment-methods .payment-methods .payment-method{font-size:0;padding:1px}.product-offer-payment-methods .payment-methods .payment-method::first-letter{font-size:12px}.product-offer-price-and-shipment-cost{text-align:right;grid-area:price}.product-offer-price-and-shipment-cost .price{font-size:1.3em;white-space:nowrap}.product-offer-price-and-shipment-cost .shipment-cost{font-size:.9em;color:#515151;white-space:nowrap;font-style:italic}.product-offer-price-and-shipment-cost .shipment-cost .free{color:#18A45C}.product-offer-button{display:flex;align-items:flex-start;justify-content:flex-end;grid-area:btn}.product-offer-button .btn{flex:1 0 100%;font-size:1em;font-weight:bold;padding:6px;white-space:nowrap}.product-offer label{grid-area:collapse;justify-content:center;cursor:pointer}@media screen and (min-width: 1200px){.product-offer label{display:none}}.product-offer label icon{display:inline-block;background:url("data:image/svg+xml,    %3Csvg version='1.1'  xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' xmlns%3Axlink='http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink' viewBox='0 0 100 100' fill='%2318A45C'%3E        %3Cpath d='M 10%2C50 L 60%2C100 L 70%2C90 L 30%2C50  L 70%2C10 L 60%2C0 Z'%3E%3C%2Fpath%3E    %3C%2Fsvg%3E  ");background-repeat:no-repeat;transform:rotate(-90deg);width:25px;height:25px}.product-offer-voucher{grid-area:voucher;position:relative;display:flex;justify-content:center}.product-offer-voucher .voucher-icon{margin-left:0}@media screen and (min-width: 770px){.product-offer-voucher .voucher-icon{height:18px;width:31px;background-size:31px 18px}}.product-offer-voucher .tooltip{bottom:100%;min-width:200px}@media screen and (min-width: 770px){.product-offer-voucher .tooltip{min-width:300px}}.product-offer-voucher .tooltip:before{right:50%}.product-offer-voucher:hover .tooltip{visibility:visible}.product-recommendations{background-color:#E8F6EF}.product-recommendations .container{display:block}@media screen and (max-width: 769px){.product-recommendations .container{padding:0 10px}}.product-recommendations__body{display:grid;grid-gap:20px;grid-template-columns:1fr;padding-bottom:20px;margin-left:10px;margin-right:10px}@media screen and (min-width: 480px){.product-recommendations__body{grid-template-columns:repeat(2, 1fr)}}@media screen and (min-width: 661px){.product-recommendations__body{grid-template-columns:repeat(3, 1fr)}}@media screen and (min-width: 992px){.product-recommendations__body{margin-left:0;margin-right:0}}@media screen and (min-width: 1200px){.product-recommendations__body{grid-template-columns:repeat(6, 1fr)}}.product-recommendations__header{align-items:center;color:#3E3E3E;display:flex;justify-content:space-between;padding:20px 0 10px}.product-recommendations__header h3{font-size:18px;font-weight:700;margin:0}.product-recommendations__header a{color:#18A45C;font-size:14px;font-weight:normal}.product-recommendations__header a .arrow{border-color:#18A45C;transform:rotate(-50grad)}.product-recommendations-offer-tile{background-color:white;min-width:181px;border-radius:15px;display:flex;flex-basis:calc(25%);flex-direction:column;margin:0;padding:10px 10px 15px}@media screen and (min-width: 1200px){.product-recommendations-offer-tile{margin:0}}.product-recommendations-offer-tile:hover{text-decoration:none}.product-recommendations-offer-tile h4{color:black;font-weight:bold;overflow:hidden;text-overflow:ellipsis;display:block;max-width:100%;height:2.7em;font-size:.9em;line-height:1;-webkit-line-clamp:3;-webkit-box-orient:vertical}.product-recommendations-offer-tile-price{color:#3E3E3E;font-size:20px;font-weight:bold}.product-recommendations-offer-tile-shop{color:#787878;margin-bottom:2px;margin-top:10px;overflow:hidden;text-overflow:ellipsis}.product-recommendations-offer-tile-cost{color:#787878;font-size:12px}.product-recommendations-offer-tile-image{height:150px}.product-recommendations-offer-tile-header{color:#3E3E3E;flex-grow:1;font-weight:bold;margin-top:5px}.product-recommendations-offer-tile-header h4{overflow:hidden;text-overflow:ellipsis;display:block;max-width:100%;height:3.9em;font-size:1em;line-height:1.3;-webkit-line-clamp:3;-webkit-box-orient:vertical;margin:0}.product-automated-text{color:#515151;line-height:1.6em;margin-bottom:30px;padding:10px}.product-automated-text picture{height:auto}.product-automated-text-title{color:#18A45C;font-weight:600}.product-automated-text .sub-title{font-size:1.2em}.product-automated-text-bold{font-weight:bold}.product-automated-text picture{margin-bottom:10px}.product-automated-text .encoded-link{text-decoration:underline}.product-automated-text .italic{font-style:italic}.product-condition-filters{border:1px solid #ebebeb;display:flex;align-items:center}.product-condition-filters .product-condition-filter--black.encoded-link:hover{color:#000}.product-condition-filters .product-condition-filter--green.encoded-link:hover{color:#18A45C}.product-condition-filters .product-condition-filter--blue.encoded-link:hover{color:#1869A4}@media screen and (min-width: 770px){.product-condition-filters{border:none}}.product-condition-filter{padding:5px;font-size:10px;display:flex;align-items:center}.product-condition-filter .encoded-link{color:black}.product-condition-filter:not(:first-of-type){border-left:1px solid #ebebeb}@media screen and (min-width: 770px){.product-condition-filter:not(:first-of-type){border-left:none}}.product-condition-filter .radio-btn{flex-shrink:0;margin-bottom:0}.product-condition-filter--black{color:#000}.product-condition-filter--black .radio-btn{border-color:#000}.product-condition-filter--black .radio-btn.active::after{border-color:#000}.product-condition-filter--green{color:#18A45C}.product-condition-filter--green .radio-btn{border-color:#18A45C}.product-condition-filter--green .radio-btn.active::after{border-color:#18A45C}.product-condition-filter--blue{color:#1869A4}.product-condition-filter--blue .radio-btn{border-color:#1869A4}.product-condition-filter--blue .radio-btn.active::after{border-color:#1869A4}.product-condition-filter[disabled]{pointer-events:none;cursor:default;color:#787878}.product-condition-filter[disabled] .radio-btn{border-color:#787878}.product-condition-filter[disabled] .radio-btn.active::after{border-color:#787878}.product-condition-filter__text{display:flex;flex-direction:column}@media screen and (min-width: 770px){.product-condition-filter__text{flex-direction:row}}@media screen and (min-width: 770px){.product-condition-filter__text span{margin-left:3px}}@media screen and (min-width: 770px){.product-condition-filter{font-size:14px;margin-right:30px;padding:0}}.attribute-filter{padding:0 20px 8px 0;cursor:pointer;font-size:14px;position:relative}@media screen and (min-width: 770px){.attribute-filter{width:calc(100%/4)}}@media screen and (min-width: 992px){.attribute-filter{width:calc(100%/5)}}@media screen and (min-width: 1200px){.attribute-filter{width:calc(100%/6)}}.attribute-filter__trigger{display:none}.attribute-filter__trigger:checked ~ .attribute-filter__dropdown{display:flex}.attribute-filter__trigger:checked ~ .filter__dropdown-trigger__close-tab>.attribute-filter__name{display:flex}.attribute-filter__trigger:checked ~ .attribute-filter__name{display:none}.attribute-filter__trigger__close-tab{display:none}.attribute-filter__trigger__close-tab .attribute-filter__name{display:none}.attribute-filter__trigger__close-tab:checked ~ .attribute-filter__dropdown{display:none}.attribute-filter__name{cursor:pointer;display:flex;justify-content:space-between;align-items:center;padding:7px 0;border-bottom:1px solid #ddd;white-space:nowrap}.attribute-filter__name__title{flex-shrink:1;overflow:hidden;text-overflow:ellipsis}.attribute-filter__name__arrow{margin-left:10px;flex-shrink:0;display:block;width:16px;height:16px;border-color:#18A45C;background-image:url("data:image/svg+xml,     %3Csvg data-name='Layer 1' id='Layer_1' viewBox='0 0 24 24' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E      %3Cstyle%3E          .st1{fill%3Anone%3Bstroke%3A%2318A45C%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bstroke-width%3A2px%3B}      %3C%2Fstyle%3E      %3Cpolyline class='st1' data-name='%26lt%3BPath%26gt%3B' points='20.59 7.66 11.9 16.34 3.41 7.86'%2F%3E    %3C%2Fsvg%3E  ")}.attribute-filter__name__close-tab{display:none}.attribute-filter__name__close-tab .attribute-filter__name__arrow{transform:rotate(180deg)}.attribute-filter__active .attribute-filter__name{border-bottom:2px solid #018A45;font-weight:bold;padding:7px 0 6px}.attribute-filter__dropdown{display:none;flex-direction:column;position:fixed;top:0;left:0;width:100%;bottom:0;z-index:1000;background-color:white}@media screen and (min-width: 770px){.attribute-filter__dropdown{border:1px solid #ddd;border-radius:4px;box-shadow:2px 2px 10px rgba(0,0,0,0.1);position:absolute;bottom:auto;max-height:300px}}.attribute-filter__dropdown__head{display:flex;align-items:center;padding:10px 20px}@media screen and (min-width: 770px){.attribute-filter__dropdown__head{display:none}}.attribute-filter__dropdown__head h3{flex-grow:1;flex-shrink:0;margin:0;font-size:1.5em}@media screen and (min-width: 770px){.attribute-filter__dropdown{width:288px;top:calc(100%)}}.attribute-filter__dropdown__list{overflow:auto;box-sizing:border-box;padding:8px 0;list-style:none;min-height:82px;margin:0;border-bottom:1px solid #ddd;border-top:1px solid #ddd}@media screen and (min-width: 770px){.attribute-filter__dropdown__list{border-top:0}}.attribute-filter__dropdown__list input{display:none}.attribute-filter__dropdown__list input:checked ~ label{border-color:black}.attribute-filter__dropdown__list li{padding:0 10px}.attribute-filter__dropdown__list__icon{margin-right:10px}.attribute-filter__dropdown__list label{display:flex;cursor:pointer;align-items:center;padding:8px 12px;width:100%;height:100%;position:relative}.attribute-filter__dropdown__list label *[class^='attribute-filter__attr_1338-']{border:0.5px solid #919191;border-radius:2px;height:16px;position:absolute;right:0;width:16px}.attribute-filter__dropdown__buttons{display:flex;flex-wrap:wrap;flex-direction:column;align-items:stretch;justify-content:space-evenly;min-height:85px;padding:0 20px}.attribute-filter__dropdown__button{text-align:center}.attribute-filter__dropdown__button--save{display:none;padding-top:0;padding-bottom:0}.attribute-filter__dropdown__button--clear--disabled,.attribute-filter__dropdown__button--clear--disabled:hover{background-color:white;color:#18A45C}.dropdown-filters{overflow:scroll;padding-left:15px}@media screen and (min-width: 770px){.dropdown-filters{display:flex;overflow:visible;margin-right:10px;padding-left:0;width:100%}}.dropdown-filters__button{display:none;height:fit-content;user-select:none}.dropdown-filters__button__text{display:none}.dropdown-filters__button__text--more{display:inline}@media screen and (min-width: 770px){.dropdown-filters__button{cursor:pointer;display:inline-block;text-align:center;width:160px}}.dropdown-filters__button--all-visible{display:none}.dropdown-filters__block{display:flex;height:auto}@media screen and (min-width: 770px){.dropdown-filters__block{flex:7;flex-wrap:wrap;height:45px}}@media screen and (min-width: 770px){.dropdown-filters [type="checkbox"]:checked ~ #dropdown-filters__more-button{display:inline-block}}.dropdown-filters [type="checkbox"]:checked ~ #dropdown-filters__more-button .dropdown-filters__button__text--less{display:inline}.dropdown-filters [type="checkbox"]:checked ~ #dropdown-filters__more-button .dropdown-filters__button__text--more{display:none}.dropdown-filters [type="checkbox"]:checked ~ .dropdown-filters__block{height:auto}@media screen and (max-width: 769px){.dropdown-filters:after{display:block;height:35px;width:45px;content:"";position:absolute;top:0;z-index:100;right:0;background:linear-gradient(to right, rgba(255,255,255,0.85) 1%, rgba(255,255,255,0.85) 5%, rgba(255,255,255,0.91) 17%, #fefefe 37%, #fcfcfc 65%)}}input[type=checkbox]{display:none}input[type=checkbox]+label svg{height:16px}input[type=checkbox]+label svg .check{transition:stroke-dashoffset 0.5s ease-in-out 0.2s,stroke-width 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55)}input[type=checkbox]+label svg .outer{transition:fill .3s ease-out;fill:#9E9E9E;stroke-width:18px}input[type=checkbox]+label svg .inner{fill:white;opacity:1;height:56px;width:56px;x:4px;y:4px;rx:4px}input[type=checkbox]+label:hover svg .check{stroke-dashoffset:0;stroke-width:8px}input[type=checkbox]+label:hover svg .outer{fill:#9E9E9E}input[type=checkbox]+label:hover svg .inner{opacity:0;height:0px;width:0px;x:12px;y:28px;rx:100px}input[type=checkbox]:checked+label svg .check{stroke-dashoffset:0;stroke-width:7px}input[type=checkbox]:checked+label svg .outer{transition:fill 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);fill:#18A45C}input[type=checkbox]:checked+label svg .inner{height:0px;width:0px;x:16px;y:16px;rx:100px}@media screen and (min-width: 770px){.price-range-filter{padding:10px}}.price-range-filter__block{display:grid;grid-template:"input-from input-to";grid-gap:10px;margin:20px}.price-range-filter__block__element{display:inline-flex;align-items:center;background:#F7FBF9;border:1px solid #8CD2AE;border-radius:4px;padding:5px;height:40px}.price-range-filter__block__element__input{border:none;height:30px;width:100%;display:inline-block;outline:none;padding:0}.price-range-filter__block__element label{text-transform:capitalize}.price-range-filter__block .currency-left .icon-currency-eur,.price-range-filter__block .currency-left .icon-currency-gbp{margin:0 2px}.price-range-filter__block .currency-right .icon-currency-eur{margin-left:2px}.category-editorial-text{font-size:18px;line-height:1.6;padding:10px}@media screen and (min-width: 770px){.category-editorial-text{padding-left:0;padding-right:0}}.category-editorial-text__title{color:#0A4225;font-size:34px}.category-editorial-text--teaser{padding-bottom:12px}@media screen and (min-width: 1200px){.category-editorial-text--teaser{padding-right:200px}}.category-editorial-text img{width:100%}.filter-button{display:flex;align-items:center;cursor:pointer;color:black}@media screen and (min-width: 770px){.filter-button{display:none}}.modal-overlay{display:none;position:fixed;z-index:10;padding:30px;background-color:white;box-shadow:0 3px 5px rgba(0,0,0,0.33);opacity:0;transition:visibility 0s linear 0.4s, opacity 0.4s, transform 0.4s}.modal-overlay.open{display:flex;opacity:1;transition:opacity 0.7s, transform 0.7s}.modal-overlay button.close{padding-right:15px;padding-left:15px;line-height:1;background:none;border:none;position:absolute;right:0;top:0;font-size:60px;color:#9b9b9b;cursor:pointer;outline:none}.modal-overlay button.close:hover,.modal-overlay button.close:focus{color:black}.modal-overlay-bg{position:fixed;left:0;top:0;z-index:5;width:100vw;height:100vh;display:none;background-color:rgba(0,0,0,0.35)}.modal-overlay-bg.open{display:block}.modal-overlay--window{top:50%;left:50%;transform:translate(-50%, -50%);width:100%;height:100%}@media screen and (min-width: 770px){.modal-overlay--window{width:90%;height:90%}}@media screen and (min-width: 992px){.modal-overlay--window{width:85%;height:85%}}@media screen and (min-width: 1200px){.modal-overlay--window{width:1100px;height:80%}}.modal-overlay--notification{cursor:pointer;bottom:10px;right:10px;width:300px;height:100px}.offer-condition-badge{background-color:white;border:1px solid #1869A4;color:#1869A4;font-size:1.1rem;text-transform:lowercase;padding:2px 5px;position:absolute;left:10px;top:10px;display:flex;align-items:center;height:20px}.product .offer-condition-badge{display:inline-block;position:static;font-weight:normal;font-size:8px;text-align:center;height:16px;align-self:baseline;order:1}.product-offer .offer-condition-badge{display:inline;vertical-align:top}.product-image-overlay{flex-direction:column;justify-content:space-between}@media screen and (min-width: 770px){.product-image-overlay{flex-direction:row;align-items:center}}.product-image-overlay .image{flex-grow:1}.product-image-overlay__title{font-size:1.3em;color:#3E3E3E;margin-bottom:20px}.product-image-overlay__details{width:100%}.product-image-overlay__details .btn-close{margin-top:30px}.product-image-overlay__details .btn-close:hover{background-color:#18A45C;color:white}.product-image-overlay__details .btn{padding:10px;width:100%}.product-image-overlay__details .inverted:hover{background-color:#158e50;color:white}@media screen and (min-width: 770px){.product-image-overlay__details{width:auto;flex-basis:33%;max-width:360px;min-width:235px;display:flex;flex-direction:column;margin:10px;padding:15px}.product-image-overlay__details .btn{margin-top:20px}}.product-image-overlay__details--version1{display:flex;flex-direction:column;margin-top:30px}.product-image-overlay__details--version1 .product-image-overlay__title,.product-image-overlay__details--version1 .btn{display:none}.product-image-overlay__details--version1 .shop-name{color:#1869A4;margin:10px 0 0 0}@media screen and (min-width: 770px){.product-image-overlay__details--version1 .product-image-overlay__title,.product-image-overlay__details--version1 .btn{display:inline-block}.product-image-overlay__details--version1 .shop-name{color:#787878;margin:6px 0 0 0}}.product-image-overlay__details--version2{display:flex;flex-direction:column}.product-image-overlay__details--version2 .shipment-time{font-size:0.9em;margin:20px 0 10px}.product-image-overlay__details--version2 .btn{margin-top:10px}.product-image-overlay__details--version2 .product-image-overlay__title,.product-image-overlay__details--version2 .shipment-time,.product-image-overlay__details--version2 .payment{display:none}.product-image-overlay__details--version2 .shop-name{color:#787878;margin:6px 0 0 0}@media screen and (min-width: 770px){.product-image-overlay__details--version2 .product-image-overlay__title,.product-image-overlay__details--version2 .shipment-time,.product-image-overlay__details--version2 .payment{display:inline-block}.product-image-overlay__details--version2 .btn{margin-top:20px}}.product-image-overlay__details--version3{display:none}.product-image-overlay__details--version3 .shop-name{color:#787878;margin:6px 0 0 0}.product-image-overlay__details--version3 .shipment-time{font-size:0.9em;margin:20px 0}@media screen and (min-width: 770px){.product-image-overlay__details--version3{display:flex;flex-direction:column}}.product-image-overlay .price{color:#18A45C}.product-image-overlay .shipping-cost-container{font-size:0.6em}.product-image-overlay .tooltip{position:static;visibility:visible;background:transparent;padding:0;color:black}.product-image-overlay .tiles-payment-methods{justify-content:flex-start;margin-left:-5px}.product-image-overlay .tiles-payment-method{background-size:75% 75%}.price{font-size:1.8rem;color:black}.badge{color:white;background-color:#777}.no-results-alert{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b;padding:8px 0}@media screen and (max-width: 769px){.no-results-alert{padding:10px}}.pagination{margin:16px 0 32px 0}.toolbar{padding-top:9px;padding-bottom:9px}@media screen and (max-width: 769px){.toolbar{background-color:white;border-bottom:1px #eeeeee solid}}.toolbar h1 ~ h2{color:#777}.toolbar h2{color:black}.sidebar .action-button{color:#333;border-color:#ccc}.sidebar .action-button:hover{background-color:#18A45C;border-color:#158e50;color:white}.no-results-found .search-form .input-group{background-color:white}.no-results-found .top-queries{margin:0}.no-results-found .top-queries .carousel-title{text-align:center}.no-results-found .search-suggestions-wrapper{margin:55px 0px 80px 0;background-color:white}.search-query-block .text-container{text-align:center}.section-title{text-align:center}.navbar-nav{text-align:center;align-items:flex-start}@media screen and (min-width: 770px){.navbar-nav{display:flex}}.breadcrumb>li+li:before{color:#ccc;margin:0 8px;vertical-align:middle;content:"";display:inline-block;border:solid;border-width:0 2px 2px 0;border-color:#ccc;padding:4px;transform:rotate(-45deg)}.check-box-active span{background-image:url("data:image/svg+xml,    %3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='24' height='24' viewBox='0 0 24 24' fill='%23777'%3E      %3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'%2F%3E    %3C%2Fsvg%3E  ")}.list-item-title{color:#18A45C}.popover{display:none;position:absolute;width:70%;height:36px;left:15%;border-radius:3px;font-size:10px;overflow:hidden;text-align:center;color:#4c4c4c;background-color:#eaeaea;line-height:15px;padding:3px}.popover.active{display:block}.popover .payment-method{border-bottom:1px solid silver}.tile .encoded-link{height:100%}.tile .encoded-link .action-button{height:auto;color:#fff}.three-like-a-table{display:flex;justify-content:flex-end}.shipping-and-costs{margin-top:10px}.shipping-and-costs .delivery,.shipping-and-costs .payment{background-color:#eaeaea;width:22px;height:22px;border-radius:11px}.tileVariant3{background-color:white;text-align:left}.tileVariant3 .voucher-icon{top:7px}.tileVariant3 .tile-img-container{text-align:center;margin-bottom:20px;margin-top:10px;height:140px}.tileVariant3 .popover{top:140px}.tileVariant3 .price{flex-grow:1;font-size:18px;color:#18A45C}.tileVariant3 .shipping-and-costs{margin-top:10px;margin-bottom:14px;flex-grow:1}.tileVariant3 .cluster-size,.tileVariant3 .shipping-cost{font-size:10px;text-align:left;line-height:16px}.tileVariant3 .shipping-cost-container{height:15px}.tileVariant3 .delivery{margin:auto 3px auto 0}.tileVariant3 .payment{margin:auto 0}.tileVariant3 .best-price{position:absolute;width:90px;height:25px;text-align:center;font-size:11px;line-height:20px;left:-5px;color:white;background-image:url("data:image/svg+xml,    %3Csvg version='1.1' id='Ebene_1' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' xmlns%3Axlink='http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink' x='0px' y='0px'      viewBox='0 0 90 25' style='enable-background%3Anew 0 0 90 25%3B' xml%3Aspace='preserve'%3E      %3Cstyle type='text%2Fcss'%3E        .st0{fill-rule%3Aevenodd%3Bclip-rule%3Aevenodd%3Bfill%3A%232364aa%3Bstroke%3Anone%3B}      %3C%2Fstyle%3E        %3Cg id='Group'%3E          %3Crect id='Rectangle' class='st0' width='83' height='20' %2F%3E          %3Cpolygon id='Path' points='0%2C20 5%2C25.1 5%2C20'%2F%3E          %3Cpolygon id='Triangle' class='st0' points='90%2C0 83%2C10 83%2C0'%2F%3E          %3Cpolygon id='Triangle-Copy' class='st0' points='90%2C20 83%2C10 83%2C20'%2F%3E        %3C%2Fg%3E    %3C%2Fsvg%3E  ");z-index:2}.tileVariant3 .best-price+.offer-condition-badge{left:75px;padding:2px 5px 2px 10px;z-index:1}.tileVariant3 .tile-text{height:29px;font-weight:bold;font-size:12px;color:#3E3E3E;text-decoration:none;text-align:left;margin-top:6px}.tileVariant3 .shop-name{height:10px;font-size:10px;line-height:12px;text-align:center}.tileVariant3.offer-cluster{height:100%}.tileVariant3.offer-cluster .tile-text{margin-top:6px}.tileVariant3 .tooltip{right:0;bottom:27px;background-color:#fff;color:black;border:1px solid #18A45C;z-index:100;min-width:170px}.tileVariant3 .delivery,.tileVariant3 .payment{position:relative}.tileVariant3 .delivery:hover .tooltip,.tileVariant3 .payment:hover .tooltip{visibility:visible}.tileVariant3 .delivery:hover .tooltip:before,.tileVariant3 .payment:hover .tooltip:before{display:none}.tileVariant3 .delivery:hover:before,.tileVariant3 .payment:hover:before{display:block;content:"";border-color:#18A45C transparent transparent transparent;border-style:solid;border-width:5px;height:0;width:0;position:absolute;top:-6px;right:6px}.tileVariant3a .shipping-cost:after{content:"\00a0\00a0"}.tileVariant3e .tile-details{font-size:10px;text-align:center;color:#1869A4;font-weight:bold}.tileVariant3f .free,.tileVariant3g .free{color:#18A45C}.tileVariant3f .shop-name,.tileVariant3g .shop-name{font-size:11px;line-height:normal;height:auto}.tileVariant3f .tile-text,.tileVariant3g .tile-text{font-weight:normal;margin:6px 0 10px}.tileVariant3f .shipping-and-costs,.tileVariant3g .shipping-and-costs{margin-bottom:0}.tileVariant3f .shipping-and-costs .delivery,.tileVariant3f .shipping-and-costs .payment,.tileVariant3g .shipping-and-costs .delivery,.tileVariant3g .shipping-and-costs .payment{background-color:#E8F6EF}.tileVariant3f .shipping-and-costs .delivery:hover,.tileVariant3f .shipping-and-costs .payment:hover,.tileVariant3g .shipping-and-costs .delivery:hover,.tileVariant3g .shipping-and-costs .payment:hover{background-color:#18A45C}.tileVariant3f .shipping-and-costs .delivery:hover .payment-delivery-icon,.tileVariant3f .shipping-and-costs .payment:hover .payment-delivery-icon,.tileVariant3g .shipping-and-costs .delivery:hover .payment-delivery-icon,.tileVariant3g .shipping-and-costs .payment:hover .payment-delivery-icon{fill:white}.tileVariant3f .tile-details{font-size:11px;color:#1869A4}.tileVariant3f .shop-name{text-align:left}.tileVariant3f .price{color:black}.tileVariant3g{padding:5px}.tileVariant3g .tile-details{padding:8px;background-color:#E9F1F6;color:#1869A4;font-size:11px;text-align:center}.tileVariant3g.offer-cluster .tile-details{background-color:#E8F6EF;color:#18a45c}.tileVariant3g div:not(:last-of-type){padding:0 5px}.tileVariant3g .payment .tooltip:before{right:10px}.payment-delivery-icon{fill:black}.price{font-size:1.8rem;color:black}.footer{background-color:#E8F6EF;text-align:center;padding:0 0 45px 0}.footer .search-form{border:1px solid #18A45C}.footer .container{padding:0 10px}@media screen and (min-width: 770px){.footer .container{padding:0}}@media screen and (min-width: 661px){.footer{padding-top:60px}}.footer-ssl{width:110px;height:47px;background-image:url("/assets/img/themes/auspreiser_like/footer/ssl-logo@0,5x-895912035024724867f7b7501abf0096.gif");background-repeat:no-repeat}@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx){.footer-ssl{background-image:url("/assets/img/themes/auspreiser_like/footer/ssl-logo-5b7809892122f865278a223fa6e94a71.gif");background-size:110px 47px}}.footer-best-prices{width:129px;height:63px;background-image:url("/assets/img/themes/auspreiser_like/footer/best-prices-seal@0,5x-1444082a0e45228b3676a05c9473104e.png");background-repeat:no-repeat}@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx){.footer-best-prices{background-image:url("/assets/img/themes/auspreiser_like/footer/best-prices-seal-cc1a31c0e24429d264f5ea5df8340dcf.png");background-size:129px 63px}}.footer-trust-pilot{order:2}@media screen and (min-width: 661px){.footer-trust-pilot{order:unset}}.footer-content{margin-top:75px;text-align:center;display:flex;justify-content:center;align-items:center;flex-wrap:wrap;flex-direction:column}.footer-content__trust-icons{display:flex;align-items:center;flex-direction:column}@media screen and (min-width: 661px){.footer-content__trust-icons{flex-direction:row}}.footer-content-item{flex-basis:100%;background-position:center;margin:0 10px}@media screen and (max-width: 660px){.footer-content-item.footer-best-prices,.footer-content-item.footer-ssl{margin:10px;flex-basis:unset}}@media screen and (min-width: 661px){.footer-content-item{flex-basis:auto;margin-bottom:0}}.footer-menu-block{order:3;flex-basis:100%;margin-top:20px}@media screen and (min-width: 992px){.footer-menu-block{flex-basis:auto}}.footer-menu-block a,.footer-menu-block .encoded-link{color:#18A45C}.footer-menu-block:last-child{margin-bottom:0}.footer-menu-block ul{margin:0;padding:0}.footer-menu-block ul li{display:block;padding:5px 8px}@media screen and (min-width: 992px){.footer-menu-block ul li{display:inline-block;border-left:1px solid #18A45C}}.footer-menu-block ul li:first-child{border-left:0;padding-left:0}.footer .legal-hint{margin-top:40px}.footer-categories-arrow{width:20px;height:20px;background:url("data:image/svg+xml,     %3Csvg data-name='Layer 1' id='Layer_1' viewBox='0 0 24 24' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E      %3Cstyle%3E          .st1{fill%3Anone%3Bstroke%3A%230A4225%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bstroke-width%3A2px%3B}      %3C%2Fstyle%3E      %3Cpolyline class='st1' data-name='%26lt%3BPath%26gt%3B' points='20.59 7.66 11.9 16.34 3.41 7.86'%2F%3E    %3C%2Fsvg%3E  ");cursor:pointer}@media screen and (min-width: 661px){.footer-categories-arrow{display:none}}.footer-categories>ul{list-style:none;display:flex;flex-wrap:wrap;padding:0}.footer-categories>ul>li{text-align:left;flex-basis:100%}@media screen and (min-width: 661px){.footer-categories>ul>li{margin-right:10px;flex-basis:calc(50% - 10px)}}@media screen and (min-width: 770px){.footer-categories>ul>li{flex-basis:calc(33.33333333333% - 10px)}}@media screen and (min-width: 992px){.footer-categories>ul>li{flex-basis:calc(25% - 10px)}}@media screen and (min-width: 1200px){.footer-categories>ul>li{flex-basis:calc(20% - 10px)}}@media screen and (max-width: 660px){.footer-categories>ul>li{display:flex;flex-wrap:wrap;align-items:center;border-bottom:1px solid #c6c6c6}.footer-categories>ul>li>a{flex-basis:calc(100% - 20px)}.footer-categories>ul>li:last-child{border-bottom:0}}.footer-categories>ul>li input{display:none}.footer-categories>ul>li input:checked ~ ul{max-height:200px;padding-bottom:20px}.footer-categories>ul>li input:checked ~ .footer-categories-arrow{transform:rotate(180deg)}.footer-categories>ul>li>a{color:#0A4225;font-weight:bold;font-size:1.2em;padding:15px 0;display:inline-block}.footer-categories>ul>li ul{list-style:none;padding:0 0 20px 0}.footer-categories>ul>li ul li{color:#18A45C}.footer-categories>ul>li ul li:before{content:'\2014'}.footer-categories>ul>li ul li a{line-height:25px;color:inherit}@media screen and (max-width: 660px){.footer-categories>ul>li ul{padding-bottom:0;overflow-y:hidden;max-height:0;transition-property:all;transition-duration:.5s;transition-timing-function:ease-in-out}}.search-form{display:flex;border-radius:4px;overflow:hidden}@media screen and (min-width: 770px){.search-form{margin:0}}.search-form-wrapper{flex-grow:1;display:flex;flex-direction:column}.search-form input{outline:none;flex-grow:1;border:0;line-height:50px;background-color:white;border-radius:unset;font-size:15px}.search-form input::placeholder{font-size:1.3em;color:#C4C4C4;font-weight:300}.search-form button{border:0;outline:none;background-color:white;text-transform:uppercase}@media screen and (min-width: 770px){.search-form button{background-color:#18A45C}}.search-form button .icon-search{display:block;background-image:url("data:image/svg+xml,    %3Csvg version='1.1' id='Layer_1' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' viewBox='0 0 16 16'%3E      %3Cstyle%3E          .st0{fill%3Anone%3Bstroke%3A%2318A45C%3Bstroke-width%3A1.2%3Bstroke-miterlimit%3A10%3B}      %3C%2Fstyle%3E      %3Ccircle fill='none' class='st0' cx='7' cy='7.1' r='6'%2F%3E      %3Cline stroke='%232364AA' class='st0' x1='11.2' y1='11.2' x2='14.9' y2='15'%2F%3E    %3C%2Fsvg%3E  ");width:20px;height:20px}@media screen and (min-width: 770px){.search-form button .icon-search{display:none}}.search-form button .search-button-text{color:white;display:none;padding-left:20px;padding-right:20px}@media screen and (min-width: 770px){.search-form button .search-button-text{display:block}}.logo{position:relative;display:inline-block;margin:10px 10px 0 10px}.logo__text{fill:#fff}.logo__label{fill:#18A45C}.logo__title{fill:white}.logo svg{height:44px}.header{color:white;font-size:1.3em;height:70px}.header .logo{color:white}.header-content{display:flex;position:relative;z-index:1}.header-content .search-form button{background-color:#F2F2F2}.header-content .search-form button .icon-search{display:block;background-image:url("data:image/svg+xml,    %3Csvg version='1.1' id='Layer_1' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' viewBox='0 0 16 16'%3E      %3Cstyle%3E          .st0{fill%3Anone%3Bstroke%3A%23ccc%3Bstroke-width%3A2.2%3Bstroke-miterlimit%3A10%3B}      %3C%2Fstyle%3E      %3Ccircle fill='none' class='st0' cx='7' cy='7.1' r='6'%2F%3E      %3Cline stroke='%232364AA' class='st0' x1='11.2' y1='11.2' x2='14.9' y2='15'%2F%3E    %3C%2Fsvg%3E  ")}.header-content .search-form button .search-button-text{display:none}.header-content .search-form input{background-color:#F2F2F2;line-height:40px;order:1}.header-content .search-form-wrapper{margin:10px}@media screen and (max-width: 991px){.header-content .search-form-wrapper{margin-top:0}}@media screen and (max-width: 991px){.header-content .drop-menu{transform:translate(0, calc(-100% - 100px))}}.header-categories{display:flex;flex-grow:1}.header .category-menu{height:0}@media screen and (min-width: 770px){.header .category-menu-burger{margin-right:10px}}.header .category-menu-toggle-title{top:0;align-items:normal;height:auto}@media screen and (min-width: 992px){.header .category-menu-toggle-title{display:none}}.header .category-menu input:checked ~ .category-menu-toggle-title{left:0;display:flex;flex-direction:column}@media screen and (min-width: 992px){.header .category-menu input:checked ~ .category-menu-toggle-title{flex-direction:row}}@media screen and (min-width: 992px){.header .category-menu input:checked ~ .category-menu-toggle-title .search-form-wrapper .search-form{width:85%;margin-left:40px}}.header .category-menu input:checked ~ .category-menu-burger{height:100%}.header .category-menu input:checked ~ .category-menu-burger .category-menu-burger-label{display:none}.header .category-menu .logo{color:#515151}.category-menu{top:0;z-index:7;-webkit-user-select:none;user-select:none;display:flex}.category-menu-burger{display:flex;cursor:pointer;align-items:center;position:absolute;right:0;top:0}.category-menu-burger-label{display:none}@media screen and (min-width: 770px){.category-menu-burger-label{display:block;padding-bottom:5px;font-size:1.8rem}}.category-menu-burger-layer{position:relative;display:block;width:37.5px;height:3px;margin:0 0 6.6px;background:white;border-radius:3px;z-index:7;transform-origin:2px 0;cursor:pointer;transition:transform .5s cubic-bezier(0.77, 0.2, 0.05, 1),background .5s ease-in-out}.category-menu-burger-layer:first-child{transform-origin:0 0}.category-menu-burger-layer:last-child{transform-origin:0 100%;margin-bottom:0}.category-menu .filled-arrow{transform:rotate(180deg);border-bottom-color:white;margin:0 0 0 10px}.category-menu-toggle-title{overflow:hidden;width:0;cursor:pointer;align-items:center;height:100%;justify-content:center;font-size:1.6rem;font-weight:500;text-transform:capitalize}@media screen and (max-width: 991px){.category-menu-toggle-title{opacity:0;transform:translate(0, calc(-100% - 100px));transition:transform .5s cubic-bezier(0.77, 0.2, 0.05, 1),background .5s ease-in-out,opacity 0s step-start .5s}}.category-menu-toggle-title-divider{border-bottom:1px solid #757575;width:100%;opacity:.3}.category-menu-toggle-title>span{position:absolute;left:381px}@media screen and (min-width: 992px){.category-menu-toggle-title{display:flex;flex-direction:column}}.category-menu-toggle-title .logo__text{fill:#000}.category-menu-toggle-title .logo__title{fill:#767676}.category-menu #toggle{cursor:pointer;position:absolute;top:0;bottom:0;z-index:8;opacity:0;-webkit-touch-callout:none;width:58px}@media screen and (min-width: 992px){.category-menu #toggle{display:none}}.category-menu input:checked ~ .drop-menu{overflow:hidden;top:60px}@media screen and (max-width: 991px){.category-menu input:checked ~ .drop-menu{top:100px;opacity:1;transform:none;transition:transform .5s cubic-bezier(0.77, 0.2, 0.05, 1),background .5s ease-in-out,opacity 0s step-start 0s}}@media screen and (min-width: 992px){.category-menu input:checked ~ .drop-menu{display:block}}.category-menu input:checked ~ .category-menu-toggle-title{left:0;width:100%;position:absolute;background-color:white;color:black}@media screen and (max-width: 991px){.category-menu input:checked ~ .category-menu-toggle-title{display:block;opacity:1;transform:none;transition:transform .5s cubic-bezier(0.77, 0.2, 0.05, 1),background .5s ease-in-out,opacity 0s step-start 0s}}.category-menu input:checked ~ .category-menu-toggle-title .filled-arrow{transform:none;border-bottom-color:#2a5e9c}.category-menu ul{margin:0}.drop-menu{position:absolute;left:0;top:0;right:0;list-style-type:none;background-color:transparent;padding:0;box-shadow:1px 7px 10px rgba(0,0,0,0.2)}@media screen and (max-width: 991px){.drop-menu{transition:transform .5s cubic-bezier(0.77, 0.2, 0.05, 1),background .5s ease-in-out,opacity 0s step-start .5s;opacity:0;padding-top:10px;background:white}}@media screen and (min-width: 992px){.drop-menu{display:none}}.drop-menu .toggle-radio{height:100%}.drop-menu .toggle-check{height:auto}.drop-menu .toggle{position:absolute;cursor:pointer;opacity:0}.drop-menu a,.drop-menu label{margin:0;line-height:20px;letter-spacing:0;font-size:1.4rem;display:block;padding:0 10px;color:#18A45C;cursor:pointer;text-decoration:none}.drop-menu a h3,.drop-menu label h3{margin:0;text-transform:uppercase;color:#0A4225}@media screen and (min-width: 992px){.drop-menu a,.drop-menu label{font-size:1.5rem}}.drop-menu a:hover,.drop-menu label:hover{text-decoration:underline}.drop-menu label{font-size:0.9em;padding:10px 10px 10px 25px}.drop-menu .toggle-radio{display:none}@media screen and (max-width: 991px){.drop-menu .toggle-check ~ .sub-menu{overflow:hidden;transition:max-height .5s cubic-bezier(0.77, 0.2, 0.05, 1);max-height:0}.drop-menu .toggle-check:checked ~ .sub-menu{transition:max-height .5s cubic-bezier(0.77, 0.2, 0.05, 1);max-height:1000px}.drop-menu .toggle-check:checked ~ label{font-weight:bold;text-decoration:underline}}@media screen and (min-width: 992px){.drop-menu .toggle-check{display:none}.drop-menu .toggle-radio{display:block}.drop-menu .toggle-radio:checked ~ .sub-menu{display:block}.drop-menu .toggle-radio:checked ~ label{font-weight:bold;color:#0A4225}}.drop-menu .sub-menu{top:0;height:100%;columns:auto;padding:0}@media screen and (min-width: 992px){.drop-menu .sub-menu{padding-top:15px;display:none}}@media screen and (max-width: 991px){.drop-menu .sub-menu{margin:0 10px}}@media screen and (min-width: 992px){.drop-menu .sub-menu{position:absolute;background-color:white}}.drop-menu .sub-menu li{display:inline-block;padding:10px 15px;width:100%}@media screen and (max-width: 991px){.drop-menu .sub-menu li:first-child{border-top:1px solid gainsboro}.drop-menu .sub-menu li:last-child{border-bottom:1px solid gainsboro}}.drop-menu>li{tab-index:1;background-color:white}.drop-menu>li:first-child label{padding-top:25px}.drop-menu>li:last-child label{padding-bottom:25px}@media screen and (min-width: 992px){.drop-menu .toggle{width:34.05%}.drop-menu .sub-menu{columns:2;width:65.95%;margin-left:34.05%}.drop-menu>li{width:34.05%}}@media screen and (min-width: 1200px){.drop-menu .toggle{width:27.9%}.drop-menu .sub-menu{columns:2;width:72.1%;margin-left:27.9%}.drop-menu>li{width:27.9%}}.teaser::after{display:block;position:relative;height:100%;content:'';background-image:linear-gradient(to bottom, rgba(165,193,139,0.9) 0%, rgba(119,224,122,0) 100%)}.search-with-title{text-align:center;padding:0 10px;margin-top:100px;margin-bottom:120px}.search-with-title h1{font-size:2.2em;color:white;display:none}@media screen and (min-width: 770px){.search-with-title h1{display:block}}@media screen and (max-width: 769px){.search-with-title{margin-right:0;margin-left:0}}@media screen and (max-width: 991px){.search-with-title{margin-bottom:35px}}.trust-bar{background-color:#18A45C;opacity:.9;font-size:.9em;overflow:hidden;flex-shrink:0}.trust-bar-body{display:flex;height:140px;width:400%;animation:slidy-m 10s infinite;padding-top:10px;padding-bottom:10px}@media screen and (min-width: 480px){.trust-bar-body{animation:slidy 10s infinite}}@media screen and (min-width: 480px){.trust-bar-body{width:200%}}@media screen and (min-width: 770px){.trust-bar-body{width:100%;animation:none}}.trust-bar-item{padding:5px 10px;flex-basis:25%;border-right:1px solid rgba(255,255,255,0.3);text-align:center;color:white;height:100%}.trust-bar-item h3{font-weight:bold}.trust-bar-item .icon{display:inline-block;width:32px;height:32px;background-size:32px}.trust-bar-item-store{background-image:url("data:image/svg+xml,    %3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E      %3Cpath d='M1.78403 16.6427V31.7306H9.09625V22.2212H14.3943V31.7306H31.216V16.6427C32.306 15.7264 33 14.3536 33 12.8216V8.33655L28.6218 1.26944H4.50953L0 8.32786V12.8216C0 14.3537 0.69405 15.7264 1.78403 16.6427ZM9.64223 3.57886L7.67263 8.69451V11.7005V12.8216C7.67263 13.2482 7.57203 13.6515 7.39407 14.0099C6.95514 14.8939 6.04309 15.5032 4.99101 15.5032C4.67628 15.5032 4.37426 15.4483 4.09342 15.3482C3.05496 14.9782 2.30939 13.9855 2.30939 12.8217V11.7005V9.00265L5.77458 3.5789H9.64223V3.57886ZM15.3453 3.57886V11.7005V12.8217C15.3453 13.2482 15.2447 13.6515 15.0667 14.0099C14.6278 14.894 13.7157 15.5033 12.6637 15.5033C11.6116 15.5033 10.6995 14.894 10.2606 14.0099C10.0826 13.6515 9.98205 13.2482 9.98205 12.8217V11.7005V9.12376L12.1169 3.5789L15.3453 3.57886ZM20.8831 3.57886L23.0179 9.12376V11.7005V12.8217C23.0179 13.2482 22.9174 13.6515 22.7394 14.0099C22.3005 14.894 21.3884 15.5033 20.3363 15.5033C19.2842 15.5033 18.3722 14.894 17.9333 14.0099C17.7553 13.6515 17.6547 13.2482 17.6547 12.8217V11.7005V3.57886H20.8831ZM27.3358 3.57886L30.6906 8.99396V11.7005V12.8217C30.6906 13.9855 29.945 14.9782 28.9066 15.3482C28.6257 15.4483 28.3238 15.5033 28.009 15.5033C26.9569 15.5033 26.0449 14.894 25.6059 14.0099C25.428 13.6515 25.3274 13.2482 25.3274 12.8217V11.7005V8.69455L23.3578 3.57893H27.3358V3.57886ZM28.9066 29.4211H16.7038V19.9117H6.78683V29.4211H4.09346V17.7316C4.38472 17.7848 4.68467 17.8127 4.99104 17.8127C6.53153 17.8127 7.91111 17.1113 8.82737 16.0109C9.74364 17.1113 11.1232 17.8127 12.6637 17.8127C14.2042 17.8127 15.5837 17.1113 16.5 16.0109C17.4163 17.1113 18.7959 17.8127 20.3363 17.8127C21.8768 17.8127 23.2564 17.1114 24.1727 16.0109C25.0889 17.1113 26.4685 17.8127 28.009 17.8127C28.3153 17.8127 28.6153 17.7848 28.9066 17.7316V29.4211Z'        fill='%23fff'%2F%3E    %3C%2Fsvg%3E  ")}.trust-bar-item-like{background-image:url("data:image/svg+xml,    %3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E      %3Cpath fill-rule='evenodd' clip-rule='evenodd'          d='M32 14.0488C32 11.8935 30.2528 10.1463 28.0976 10.1463H22.6341V4.68293C22.6341 2.34146 21.2917 0 18.7317 0C16.1717 0 14.8293 2.34146 14.8293 4.68293V6.83707L12.0117 9.65463L8.40585 10.8254C8.04558 9.94839 7.192 9.37523 6.2439 9.37366H2.34146C1.04831 9.37366 0 10.422 0 11.7151V28.8859C0 30.179 1.04831 31.2273 2.34146 31.2273H6.2439C7.53706 31.2273 8.58537 30.179 8.58537 28.8859V28.5815L11.9727 30.8371C12.3567 31.0918 12.8074 31.2276 13.2683 31.2273H28.0976C30.2528 31.2273 32 29.4801 32 27.3249V26.5444C31.5817 25.8199 31.5817 24.9274 32 24.2029V21.8615C31.5817 21.137 31.5817 20.2445 32 19.52V17.1785C31.5817 16.4541 31.5817 15.5615 32 14.8371V14.0488ZM6.24386 28.8781H2.34142V11.7073H6.24386V28.8781ZM29.6586 14.8293H28.4878C27.8412 14.8293 27.3171 15.3534 27.3171 16C27.3171 16.6466 27.8412 17.1707 28.4878 17.1707H29.6586V19.5122H28.4878C27.8412 19.5122 27.3171 20.0364 27.3171 20.6829C27.3171 21.3295 27.8412 21.8537 28.4878 21.8537H29.6586V24.1951H28.4878C27.8412 24.1951 27.3171 24.7193 27.3171 25.3659C27.3171 26.0124 27.8412 26.5366 28.4878 26.5366H29.6586V27.3171C29.6586 28.1792 28.9597 28.8781 28.0976 28.8781H13.2683L8.58538 25.7561V13.2215L13.2683 11.7073L17.1707 7.80488V4.68293C17.1707 4.68293 17.1707 2.34147 18.7317 2.34147C20.2927 2.34147 20.2927 4.68293 20.2927 4.68293V12.4878H28.0976C28.9597 12.4878 29.6586 13.1867 29.6586 14.0488V14.8293Z'          fill='%23fff'%2F%3E    %3C%2Fsvg%3E  ")}.trust-bar-item-view{background-image:url("data:image/svg+xml,      %3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E        %3Cg fill='%23fff'%3E            %3Cpath fill-rule='evenodd' clip-rule='evenodd'                  d='M6.85714 0H2.28571C1.02335 0 0 1.02335 0 2.28571V6.85714C0 8.11951 1.02335 9.14286 2.28571 9.14286H6.85714C8.11951 9.14286 9.14286 8.11951 9.14286 6.85714V2.28571C9.14286 1.02335 8.11951 0 6.85714 0ZM6.85714 6.85714H2.28571V2.28571H6.85714V6.85714Z'            %2F%3E            %3Cpath fill-rule='evenodd' clip-rule='evenodd'                  d='M18.2856 0H13.7142C12.4518 0 11.4285 1.02335 11.4285 2.28571V6.85714C11.4285 8.11951 12.4518 9.14286 13.7142 9.14286H18.2856C19.548 9.14286 20.5713 8.11951 20.5713 6.85714V2.28571C20.5713 1.02335 19.548 0 18.2856 0ZM18.2856 6.85714H13.7142V2.28571H18.2856V6.85714Z'            %2F%3E            %3Cpath fill-rule='evenodd' clip-rule='evenodd'                  d='M29.7143 0H25.1429C23.8805 0 22.8572 1.02335 22.8572 2.28571V6.85714C22.8572 8.11951 23.8805 9.14286 25.1429 9.14286H29.7143C30.9767 9.14286 32 8.11951 32 6.85714V2.28571C32 1.02335 30.9767 0 29.7143 0ZM29.7143 6.85714H25.1429V2.28571H29.7143V6.85714Z'            %2F%3E            %3Cpath fill-rule='evenodd' clip-rule='evenodd'                  d='M6.85714 11.4286H2.28571C1.02335 11.4286 0 12.4519 0 13.7143V18.2857C0 19.5481 1.02335 20.5714 2.28571 20.5714H6.85714C8.11951 20.5714 9.14286 19.5481 9.14286 18.2857V13.7143C9.14286 12.4519 8.11951 11.4286 6.85714 11.4286ZM6.85714 18.2857H2.28571V13.7143H6.85714V18.2857Z'            %2F%3E            %3Cpath fill-rule='evenodd' clip-rule='evenodd'                  d='M18.2856 11.4286H13.7142C12.4518 11.4286 11.4285 12.4519 11.4285 13.7143V18.2857C11.4285 19.5481 12.4518 20.5714 13.7142 20.5714H18.2856C19.548 20.5714 20.5713 19.5481 20.5713 18.2857V13.7143C20.5713 12.4519 19.548 11.4286 18.2856 11.4286ZM18.2856 18.2857H13.7142V13.7143H18.2856V18.2857Z'            %2F%3E            %3Cpath fill-rule='evenodd' clip-rule='evenodd'                  d='M29.7143 11.4286H25.1429C23.8805 11.4286 22.8572 12.4519 22.8572 13.7143V18.2857C22.8572 19.5481 23.8805 20.5714 25.1429 20.5714H29.7143C30.9767 20.5714 32 19.5481 32 18.2857V13.7143C32 12.4519 30.9767 11.4286 29.7143 11.4286ZM29.7143 18.2857H25.1429V13.7143H29.7143V18.2857Z'            %2F%3E            %3Cpath fill-rule='evenodd' clip-rule='evenodd'                  d='M6.85714 22.8571H2.28571C1.02335 22.8571 0 23.8805 0 25.1429V29.7143C0 30.9767 1.02335 32 2.28571 32H6.85714C8.11951 32 9.14286 30.9767 9.14286 29.7143V25.1429C9.14286 23.8805 8.11951 22.8571 6.85714 22.8571ZM6.85714 29.7143H2.28571V25.1429H6.85714V29.7143Z'            %2F%3E            %3Cpath fill-rule='evenodd' clip-rule='evenodd'                  d='M29.7143 22.8571H25.1429C23.8805 22.8571 22.8572 23.8805 22.8572 25.1429V29.7143C22.8572 30.9767 23.8805 32 25.1429 32H29.7143C30.9767 32 32 30.9767 32 29.7143V25.1429C32 23.8805 30.9767 22.8571 29.7143 22.8571ZM29.7143 29.7143H25.1429V25.1429H29.7143V29.7143Z'            %2F%3E            %3Cpath fill-rule='evenodd' clip-rule='evenodd'                  d='M18.2856 22.8571H13.7142C12.4518 22.8571 11.4285 23.8805 11.4285 25.1429V29.7143C11.4285 30.9767 12.4518 32 13.7142 32H18.2856C19.548 32 20.5713 30.9767 20.5713 29.7143V25.1429C20.5713 23.8805 19.548 22.8571 18.2856 22.8571ZM18.2856 29.7143H13.7142V25.1429H18.2856V29.7143Z'            %2F%3E        %3C%2Fg%3E    %3C%2Fsvg%3E  ")}.trust-bar-item-user{background-image:url("data:image/svg+xml,    %3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E        %3Cpath fill-rule='evenodd' clip-rule='evenodd'              d='M16 0C7.16344 0 0 7.16344 0 16C0 24.8366 7.16344 32 16 32C24.8366 32 32 24.8366 32 16C32 7.16344 24.8366 0 16 0ZM2.18183 16C2.18139 9.94804 6.11915 4.6 11.8983 2.80359C17.6775 1.00719 23.9532 3.18047 27.3838 8.16621C30.8143 13.152 30.6013 19.7899 26.8582 24.5455C25.1911 22.0624 22.7722 20.1788 19.9564 19.1709C21.1733 17.8683 21.8403 16.1461 21.8182 14.3636C21.8182 10.7273 19.2073 7.81818 16 7.81818C12.7927 7.81818 10.1818 10.7273 10.1818 14.3636C10.1637 16.2097 10.8868 17.9859 12.1891 19.2945C9.35326 20.3125 6.96131 22.2878 5.42547 24.88C3.32888 22.3963 2.17973 19.2503 2.18183 16ZM16.3636 18.5455C15.9652 18.5471 15.5671 18.5689 15.1709 18.6109C13.4009 17.9691 12.2604 16.2435 12.3636 14.3636C12.3636 11.9564 13.9927 10 16 10C18.0072 10 19.6363 11.9564 19.6363 14.3636C19.7259 16.1906 18.6533 17.8754 16.96 18.5673C16.7636 18.56 16.5672 18.5455 16.3636 18.5455ZM7.04005 26.5455C8.62076 23.4594 11.606 21.3372 15.04 20.8582C15.748 20.9964 16.4776 20.9791 17.1782 20.8073C20.5721 21.2656 23.5686 23.2543 25.3091 26.2036C20.1803 30.9376 12.3204 31.0845 7.01823 26.5455H7.04005Z'              fill='%23fff'%2F%3E    %3C%2Fsvg%3E  ")}.trust-bar-item:last-child{border-right:0}.main-container--index{background-color:white}@keyframes slidy-m{0%,10%{transform:translateX(0)}20%,40%{transform:translate(-25%)}50%,60%{transform:translateX(-50%)}70%,80%,90%{transform:translate(-75%)}100%{transform:translateX(0)}}@media screen and (min-width: 480px){@keyframes slidy{0%,10%,20%,40%,50%{transform:translateX(0)}60%,70%,80%,90%{transform:translateX(-50%)}100%{transform:translateX(0)}}}.manufacturer-highlights .carousel-btn{top:calc(50% - 6px)}.manufacturer-highlights .carousel-tile{width:100%}@media screen and (min-width: 480px){.manufacturer-highlights .carousel-tile{width:50%}}@media screen and (min-width: 661px){.manufacturer-highlights .carousel-tile{width:25%}}@media screen and (min-width: 770px){.manufacturer-highlights .carousel-tile{width:25%}}@media screen and (min-width: 992px){.manufacturer-highlights .carousel-tile{width:16.66667%}}@media screen and (min-width: 1200px){.manufacturer-highlights .carousel-tile{width:16.66667%}}.shop-highlights .carousel-btn{top:calc(50% - 6px)}.shop-highlights .carousel-tile{width:100%}@media screen and (min-width: 480px){.shop-highlights .carousel-tile{width:50%}}@media screen and (min-width: 661px){.shop-highlights .carousel-tile{width:25%}}@media screen and (min-width: 770px){.shop-highlights .carousel-tile{width:25%}}@media screen and (min-width: 992px){.shop-highlights .carousel-tile{width:16.66667%}}@media screen and (min-width: 1200px){.shop-highlights .carousel-tile{width:16.66667%}}.category-carousel-highlights .carousel-content{margin:20px 0}.category-carousel-highlights .carousel-btn{top:calc(50% - 6px)}.category-carousel-highlights .carousel-tile{width:100%}@media screen and (min-width: 480px){.category-carousel-highlights .carousel-tile{width:50%}}@media screen and (min-width: 661px){.category-carousel-highlights .carousel-tile{width:50%}}@media screen and (min-width: 770px){.category-carousel-highlights .carousel-tile{width:33.33333%}}@media screen and (min-width: 992px){.category-carousel-highlights .carousel-tile{width:25%}}@media screen and (min-width: 1200px){.category-carousel-highlights .carousel-tile{width:20%}}.category-carousel-highlights__name{display:block;font-size:0.8em;color:#18A45C;font-weight:bold;margin-bottom:20px}.category-carousel-highlights__manufacturer{font-size:0.8em;color:#18A45C}.category-carousel-highlights__manufacturer:hover{text-decoration:underline}.category-carousel-highlights__manufacturers{display:flex;flex-direction:column;margin-top:20px}.category-carousel-highlights .tile-content{border:1px solid #D6EBE0;border-radius:5px;box-shadow:2px 2px 4px #D6EBE0;margin:0 10px;height:100%;padding:10px 30px 20px}.category-carousel-highlights .encoded-link:hover{text-decoration:none}.advantage-boxes{margin:50px 10px 30px}.advantage-boxes-item__tag{background-color:#E8F6EF;font-size:1.5em;color:#18A45C;height:40px;border-radius:30px;padding:10px}.advantage-boxes-item__content{display:flex;flex-direction:column;margin-top:15px}@media screen and (min-width: 661px){.advantage-boxes-item__content{margin-top:20px;display:block}}.advantage-boxes-item__title{margin:15px 0 0 0;font-size:2.1em;font-weight:bold;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal;color:#18A45C}.advantage-boxes-item:not(:last-of-type){margin-bottom:50px}.advantage-boxes-item p{font-size:1.2em;line-height:1.5em;margin:0}.advantage-boxes-item picture{order:2;margin-top:15px}@media screen and (min-width: 661px){.advantage-boxes-item picture{float:right;margin:0 20px 20px 20px}}.category-teaser{padding-top:30px;display:flex;flex-wrap:wrap}.category-teaser-item{flex-basis:100%}@media screen and (min-width: 992px){.category-teaser-item{flex-basis:50%}}.category-teaser-item .encoded-link:hover{text-decoration:none}.category-teaser .btn{padding:8px 10px;font-weight:bold;width:100%}.category-teaser-main{display:flex;flex-direction:column;padding:10px}@media screen and (min-width: 992px){.category-teaser-main{height:580px}}.category-teaser-main .btn{background-color:#18A45C;color:white;text-align:center}.category-teaser-main-body{display:flex;flex-wrap:wrap}.category-teaser-main-body .image{height:260px}@media screen and (min-width: 770px){.category-teaser-main-body-content{padding-left:20px}}.category-teaser-main-body-content-price{font-size:2em;font-weight:bold;padding-bottom:15px}.category-teaser-main-body-content .shop-name{padding-bottom:10px}.category-teaser-main-body>div{flex-basis:100%}@media screen and (min-width: 770px){.category-teaser-main-body>div{flex-basis:50%}}.category-teaser-main h4{color:#1869A4;font-weight:bold}.category-teaser-main h3{flex-grow:1;flex-shrink:0;margin:0;font-weight:bold;font-size:2.5em}.category-teaser-main h3 a{color:#0A4225}.category-teaser-content{display:flex;flex-wrap:wrap}.category-teaser-content-item{overflow:hidden;flex-basis:50%;padding:10px}@media screen and (min-width: 661px){.category-teaser-content-item{flex-basis:33%}}.category-teaser-content-item-header{padding-top:10px}.category-teaser-content-item-header h4{margin:0;font-weight:bold;overflow:hidden;text-overflow:ellipsis;display:block;max-width:100%;height:2em;font-size:1em;line-height:1;-webkit-line-clamp:2;-webkit-box-orient:vertical}.category-teaser-content-item-shop{flex-shrink:0;flex-grow:1;padding-top:5px}.category-teaser-content-item-price{color:black;font-weight:bold}.category-teaser-content-item-shipping-cost{font-size:0.8em;color:black;padding-top:5px;padding-bottom:10px}.category-teaser-content-item .encoded-link{color:#1869A4;display:flex;height:270px;flex-direction:column}.category-teaser-content-item .encoded-link:hover .btn{background-color:#18A45C;color:white}.category-teaser-content-item .image{height:104px}.best-price-tag{position:relative}@media screen and (max-width: 991px){.best-price-tag{margin-bottom:70px}}.best-price-tag .image{height:75px}@media screen and (min-width: 992px){.best-price-tag .image{position:absolute;right:0;bottom:197px;margin-right:10px}}.header-with-search{font-size:1.2em;background-color:#fff;z-index:2}@media screen and (min-width: 992px){.header-with-search .logo{margin-left:0}}.header-with-search .logo__text{fill:black}.header-with-search .logo__title{fill:#767676}.header-with-search .header-content{flex-direction:column}@media screen and (min-width: 992px){.header-with-search .header-content{flex-direction:row}}.header-with-search .category-menu{flex-grow:1}.header-with-search .category-menu-burger{margin:0 15px}@media screen and (min-width: 992px){.header-with-search .category-menu-burger{position:static;margin:0}}.header-with-search .category-menu-burger-layer{background-color:#787878}.header-with-search .category-menu-burger-label{color:#787878}.header-with-search input:checked ~ .drop-menu{top:61px}@media screen and (max-width: 991px){.header-with-search input:checked ~ .drop-menu{top:109px}}.header-with-search .hamburger{padding:18px 0px}@media screen and (min-width: 661px){.header-with-search .hamburger{padding:14px}}.header-with-search .hamburger-inner,.header-with-search .hamburger-inner::before,.header-with-search .hamburger-inner::after{background-color:#787878}/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */.hamburger{padding:18px 10px;display:inline-block;cursor:pointer;transition-property:opacity, filter;transition-duration:0.15s;transition-timing-function:linear;font:inherit;color:inherit;text-transform:none;background-color:transparent;border:0;margin:0;overflow:visible}.hamburger:hover{opacity:.7}.hamburger.is-active:hover{opacity:.7}.hamburger.is-active .hamburger-inner,.hamburger.is-active .hamburger-inner::before,.hamburger.is-active .hamburger-inner::after{background-color:#fff}.hamburger-box{width:37.5px;height:24px;display:inline-block;position:relative}.hamburger-inner{display:block;top:50%;margin-top:-2px}.hamburger-inner,.hamburger-inner::before,.hamburger-inner::after{width:37.5px;height:4px;background-color:#fff;border-radius:4px;position:absolute;transition-property:transform;transition-duration:0.15s;transition-timing-function:ease}.hamburger-inner::before,.hamburger-inner::after{content:"";display:block}.hamburger-inner::before{top:-10px}.hamburger-inner::after{bottom:-10px}.hamburger--elastic .hamburger-inner{top:2px;transition-duration:0.275s;transition-timing-function:cubic-bezier(0.68, -0.55, 0.265, 1.55)}.hamburger--elastic .hamburger-inner::before{top:10px;transition:opacity 0.125s 0.275s ease}.hamburger--elastic .hamburger-inner::after{top:20px;transition:transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55)}.category-menu input:checked ~ .category-menu-burger .hamburger-inner{background-color:black;transform:translate3d(0, 10px, 0) rotate(135deg);transition-delay:0.075s}.category-menu input:checked ~ .category-menu-burger .hamburger-inner::before{transition-delay:0s;opacity:0}.category-menu input:checked ~ .category-menu-burger .hamburger-inner::after{transform:translate3d(0, -20px, 0) rotate(-270deg);transition-delay:0.075s;background-color:black}.hamburger--elastic .hamburger-inner{top:2px;transition-duration:0.275s;transition-timing-function:cubic-bezier(0.68, -0.55, 0.265, 1.55)}.hamburger--elastic .hamburger-inner::before{top:10px;transition:opacity 0.125s 0.275s ease}.hamburger--elastic .hamburger-inner::after{top:20px;transition:transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55)}.category-menu input:checked ~ .category-menu-burger .hamburger-inner{background-color:black;transform:translate3d(0, 10px, 0) rotate(135deg);transition-delay:0.075s}.category-menu input:checked ~ .category-menu-burger .hamburger-inner::before{transition-delay:0s;opacity:0}.category-menu input:checked ~ .category-menu-burger .hamburger-inner::after{transform:translate3d(0, -20px, 0) rotate(-270deg);transition-delay:0.075s;background-color:black}.category-results{background:#fff}.category-results--no-content{background-color:#F7FBF9;padding:25px 15px 10px}.category-results--with-content{background:linear-gradient(to top, #fff 165px, #F7FBF9 0);padding:20px 10px 0}@media screen and (min-width: 770px){.category-results--with-content{padding:20px 0 0 0}}.category-results__title{font-weight:bold;font-size:38px;color:#0A4225;margin:0;display:inline}.category-results__count{display:block;color:#787878;margin-left:5px}@media screen and (min-width: 661px){.category-results__count{display:inline}}.category-results .toolbar-content{display:none}.category-results .content{width:100%;background-color:#fff;z-index:1;padding-top:20px}.category-results .carousel-content{background:transparent}.category-results .toolbar{display:none}.category-results .results{position:relative}.category-results .editorial-text{background-color:#F7FBF9;margin-bottom:0;padding:20px 0;text-align:justify}.category-results .breadcrumb{margin-top:0;display:flex;height:auto}@media screen and (max-width: 769px){.category-results .breadcrumb{overflow-x:scroll}}.category-results .breadcrumb>li+li:before{margin:0 2px}.category-results .breadcrumb>li{white-space:nowrap}.category-results .breadcrumb>li>a,.category-results .breadcrumb>li>span{color:#18A45C}.category-results .breadcrumb>li.current span{color:#0A4225}.category-results .breadcrumb .icon-home{display:none}.category-results .breadcrumb::before{content:"Home";color:#18A45C}.category-results .results .tile-content{border:1px solid transparent;position:relative}@media (hover: hover){.category-results .results .tile-content:hover{border:1px solid #D6EBE0;border-radius:5px;box-shadow:2px 2px 4px #D6EBE0}}.category-query-highlights{background-color:#E8F6EF;padding-bottom:15px}.category-query-highlights .carousel{padding-bottom:5px;padding-left:10px;padding-right:10px}.category-query-highlights .carousel-content{flex-direction:column}@media screen and (min-width: 480px){.category-query-highlights .carousel-content{flex-direction:row}}.category-query-highlights .carousel-btn{display:none}@media screen and (min-width: 480px){.category-query-highlights .carousel-btn{display:block;top:calc(50% + 6px)}}.category-query-highlights .carousel-title{color:black;font-weight:normal;margin-left:10px}.category-query-highlights .carousel-tile-content{background-color:#E8F6EF;padding-top:10px;padding-left:10px;padding-right:10px}.category-query-highlights .carousel-tile:nth-child(n+6){display:none}.category-query-highlights .carousel-tile a{display:flex;height:100%}.category-query-highlights .carousel-tile picture{width:auto;height:auto}.category-query-highlights .carousel-tile img{width:60px}@media screen and (min-width: 480px){.category-query-highlights .carousel-tile{width:100%}.category-query-highlights .carousel-tile:nth-child(n+6){display:block}}@media screen and (min-width: 480px) and (min-width: 480px){.category-query-highlights .carousel-tile{width:50%}}@media screen and (min-width: 480px) and (min-width: 661px){.category-query-highlights .carousel-tile{width:50%}}@media screen and (min-width: 480px) and (min-width: 770px){.category-query-highlights .carousel-tile{width:33.33333%}}@media screen and (min-width: 480px) and (min-width: 992px){.category-query-highlights .carousel-tile{width:25%}}@media screen and (min-width: 480px) and (min-width: 1200px){.category-query-highlights .carousel-tile{width:25%}}.category-query-highlights input:checked ~ .carousel>.carousel-content>.carousel-tile{display:block}.category-query-highlights input:checked ~ .category-query-highlights__button--more{display:none}@media screen and (max-width: 479px){.category-query-highlights input:checked ~ .category-query-highlights__button--less{display:flex;justify-content:flex-end}}.category-query-highlights__button{color:#787878;font-size:14px;margin-right:20px;margin-top:10px}.category-query-highlights__button--more{display:flex;justify-content:flex-end}@media screen and (min-width: 480px){.category-query-highlights__button--more{display:none}}.category-query-highlights__button--less{display:none}.category-query-highlights-tile{align-items:center;background-color:white;border:1px solid #18A45C;border-radius:15px;display:flex;padding:10px;width:100%;height:100%}.category-query-highlights-tile:hover{text-decoration:none}.category-query-highlights-tile-detail{display:flex;flex-direction:column;margin-left:10px}.category-query-highlights-tile-detail__title{color:black;font-size:16px;line-height:1;padding-top:5px}.category-query-highlights-tile-detail__search-amount{font-size:14px}.tiles-payment-methods{display:flex;flex-wrap:wrap;justify-content:space-between}.tiles-payment-methods .tiles-payment-method{margin:5px;white-space:nowrap;font-size:10px;background-color:#ebebeb;border-radius:4px;background-position:center center;background-repeat:no-repeat;background-size:90% 90%;min-width:60px;height:25px;display:flex;justify-content:center;align-items:center}.tiles-payment-methods .tiles-payment-method__text{padding:0 3px}.tiles-payment-methods .tiles-payment-method.pp,.tiles-payment-methods .tiles-payment-method.psc{background-image:url("/assets/img/themes/auspreiser_like/payment_methods/Icon_Paypal-f3e39c7d95d83d8e271e193ab816bd38.svg")}.tiles-payment-methods .tiles-payment-method.pp .tiles-payment-method__text,.tiles-payment-methods .tiles-payment-method.psc .tiles-payment-method__text{display:none}.tiles-payment-methods .tiles-payment-method.visa{background-image:url("/assets/img/themes/auspreiser_like/payment_methods/Icon_Visa-b0fabf237e56f95aa2c86cd6cb768af1.svg")}.tiles-payment-methods .tiles-payment-method.visa .tiles-payment-method__text{display:none}.tiles-payment-methods .tiles-payment-method.mc{background-image:url("/assets/img/themes/auspreiser_like/payment_methods/Icon_Mastercard-34fbb8166986e144b3ed9bf73ad46921.svg")}.tiles-payment-methods .tiles-payment-method.mc .tiles-payment-method__text{display:none}.tiles-payment-methods .tiles-payment-method.suw{background-image:url("/assets/img/themes/auspreiser_like/payment_methods/Icon_Sofort-8d0c06c1ecb8a14101a7aacc7f1aa52a.svg")}.tiles-payment-methods .tiles-payment-method.suw .tiles-payment-method__text{display:none}.tiles-payment-methods .tiles-payment-method.amzp{background-image:url("/assets/img/themes/auspreiser_like/payment_methods/Icon_Amazon-1bdaef8eb01bf16142590a3e6e587d11.svg")}.tiles-payment-methods .tiles-payment-method.amzp .tiles-payment-method__text{display:none}.tiles-payment-methods .tiles-payment-method.grp{background-image:url("/assets/img/themes/auspreiser_like/payment_methods/Icon_GiroPay.svg")}.tiles-payment-methods .tiles-payment-method.grp .tiles-payment-method__text{display:none}.filter-button--bordered{border:1px solid rgba(119,119,119,0.3);border-radius:15px;box-shadow:-2px 3px 5px -1px rgba(119,119,119,0.5);padding:6px}.price-seal-toast__text{font-size:1.4rem}.price-seal-toast__title{font-weight:bold;color:#18A45C;margin:0 0 5px}.price-seal-toast.open{display:none;align-items:center;justify-content:center;border-radius:5px;padding:15px;width:525px;height:95px}@media screen and (min-width: 992px){.price-seal-toast.open{display:flex}}.price-seal-toast.open>*{display:block}.price-seal-toast.open a{width:230px;height:auto;box-shadow:0 3px 5px rgba(0,0,0,0.33)}.price-seal-toast--bottom-right{box-shadow:-4px -4px 13px rgba(0,0,0,0.33);bottom:65px;right:10px}.price-seal-toast button.close{position:static;padding-right:0}
