/* 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;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}
/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}
/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}
.noUi-touch-area {
  height: 100%;
  width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}
.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}
/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}
.noUi-connects {
  border-radius: 3px;
}
.noUi-connect {
  background: #3FB8AF;
}
/* 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: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}
.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: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
.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%;
}
.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}
.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

*{box-sizing:border-box}*::before,*::after{box-sizing:border-box}html{height:100%;font-family:Raleway,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);scroll-behavior:smooth}body{height:100%;margin:0;background:#fff;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{cursor:pointer;background-color:rgba(0,0,0,0);color:#000}h1{font-size:2em;margin:.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::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal;background-color:unset}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0;display:none}.form-control{padding:0 10px}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}}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}.visually-hidden{display:none}a:hover,a:focus{color:#000;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}a:hover,a:active{outline:0}b,strong{font-weight:bold}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input::-ms-clear{height:32px;width:32px}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:focus{box-shadow:none;outline:none}.small{font-size:.65em;font-weight:400;line-height:1.2}.divider{margin:0;border-top:1px solid #e4e4e4}.sub-text{color:hsl(0,0%,73.5%)}.text{text-align:center;display:block}.img-helper{display:inline-block;vertical-align:middle;height:100%}.important{color:#8d1d2c;font-weight:bold}.container{margin-right:auto;margin-left:auto}@media screen and (min-width: 770px){.container{width:730px}}@media screen and (min-width: 992px){.container{width:952px}}@media screen and (min-width: 1200px){.container{width:1160px}}@media screen and (min-width: 770px){.container{padding:0 10px}}.container-colored{background-color:#f3fafe}.container-colored--light{background-color:#e8f6ef;padding:20px 0}.search-form aside{color:#fff;margin:15px 15%;text-align:center;font-size:18px;font-weight:100}.search-form .input-group{height:44px}.search-form .input-group input{color:#000;border:0;font-size:1.8rem;padding:0 12px}.search-form .input-group input::placeholder{font-weight:400}.search-form .input-group button{display:flex;width:160px;justify-content:center;align-items:center;border:0;padding:0 8px}.icon-search{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='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-search'%3E%3Ccircle cx='11' cy='11' r='8'%2F%3E%3Cpath d='m21 21-4.3-4.3'%2F%3E%3C%2Fsvg%3E")}.search-form-footer{margin:20px 20px 0 20px}.search-form-footer-enabled{display:block}.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::-ms-clear{display:none}.input-group-label{flex-basis:auto;padding-right:8px}.input-group .icon{flex-shrink:0}.input-group input:focus,.input-group button:focus{box-shadow:none;outline:none}.input-group-btn{align-self:stretch;height:auto}.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}.btn{border:1px solid #2364aa;border-radius:5px;color:#2364aa;padding:15px 10px;display:inline-block}.btn__action-button{padding-left:10px;padding-right:10px;border:1px rgb(30.6463414634,87.5609756098,148.8536585366) solid;font-weight:400;color:#fff;border-radius:5px;line-height:2.2;background-color:#2364aa;padding:15px 10px;display:inline-block}.btn.inverted{background-color:#2364aa;color:#fff}.btn:hover{background-color:#fff;color:#2364aa}.action-button{padding-left:10px;padding-right:10px;border:1px rgb(30.6463414634,87.5609756098,148.8536585366) solid;font-weight:400;color:#fff;border-radius:3px;line-height:2.2;background-color:#2364aa}.action-button:hover,.action-button:active,.action-button:focus{background-color:rgb(30.6463414634,87.5609756098,148.8536585366);border-color:rgb(30.6463414634,87.5609756098,148.8536585366);color:#fff}.category-highlights-subcategories{padding:0 16px}.category-highlights .highlights-tile{height:280px}.top-section{clear:both}.carousel__wrapper{padding:0 50px;position:relative}.carousel__wrapper .carousel{position:static}.carousel{position:relative;overflow:hidden;padding:20px 0}.carousel-content{background-color:#fff;display:flex}.carousel-btn{border-radius:50%;background-color:hsla(0,0%,100%,.75);border:0;position:absolute;top:calc(50% - 30px);box-shadow:2px 1px 19px -7px rgba(0,0,0,.36);cursor:pointer;width:36px;height:36px;outline:none;display:flex;align-items:center}.carousel-btn .chevron{width:35px;height:35px;background-position:center;background-repeat:no-repeat;background-size:35px;display:inline-block}.carousel-btn:disabled{cursor:unset;opacity:.5}.carousel-btn-right{right:10px}.carousel-btn-right .chevron{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='none' stroke='%232364aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-chevron-right'%3E%3Cpath d='m9 18 6-6-6-6'%2F%3E%3C%2Fsvg%3E")}.carousel-btn-left{left:10px}.carousel-btn-left .chevron{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='none' stroke='%232364aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-chevron-left'%3E%3Cpath d='m15 18-6-6 6-6'%2F%3E%3C%2Fsvg%3E")}.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{width:100%;height:104px}.carousel-tile-content img{max-height:100%;margin:0 auto}.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-transition{transition:transform .5s}.carousel-tile-content-text{margin:19px 0;height:3em;color:#000}.carousel-tile-content-price{color:#000;font-weight:bold;font-size:1.36em}.about{color:#999;line-height:25px}.about .title{font-size:1.2em;letter-spacing:.06em;text-transform:uppercase;color:#4a4a4a;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:#4a4a4a}.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:#fff;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__encoded-link{cursor:pointer;background-color:rgba(0,0,0,0);color:#000;display:inline-block}footer .footer-menu-block__encoded-link:hover{color:#000;text-decoration:underline}footer .footer-menu-block__encoded-link:hover,footer .footer-menu-block__encoded-link:active{outline:0}footer .footer-menu-block ul{margin:0;padding:0}footer .footer-menu-block ul li{display:inline-block;border-left:1px solid #000;padding-left:8px;padding-right:8px}footer .footer-menu-block ul li:first-child{border-left:0;padding-left:0}footer .footer-international-links{margin-bottom:16px}footer .footer-international-links:last-child{margin-bottom:0}footer .footer-international-links ul{margin:0;padding:0}footer .footer-international-links ul li{display:inline-block;border-left:1px solid #000;padding-left:8px;padding-right:8px}footer .footer-international-links 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:#4a4a4a;font-size:1.2em;letter-spacing:.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:#4a4a4a}.search-query-block{line-height:25px;padding-bottom:25px}.search-query-block-item a{color:#777}.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}}.shipment{font-size:10px;font-style:italic;margin-top:15px}.shipment>div{height:15px;line-height:15px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.media-body .shipment{height:auto;padding:0}.remodal-template{display:none}.remodal-template.voucher-template.remodal-is-opened{display:inline-block}.remodal-template.voucher-template .voucher-container{border:1px dashed #2364aa;padding:15px;margin-bottom:20px}.remodal-template.voucher-template .voucher-heading{font-size:24px;font-weight:bold}.remodal-template.voucher-template .voucher-content{font-size:16px;background-color:#fff;padding:10px;margin:10px 0;overflow:hidden;text-overflow:ellipsis}.remodal-template.voucher-template .voucher-close-button{right:0;left:auto}.voucher{background-color:#fff;color:#2364aa;border:1px solid #2364aa;border-radius:0 8px 8px 0;font-size:1.1rem;padding:2px 5px;display:flex;align-items:center;height:20px}.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 #fff;background-color:#fff;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='none' stroke='%232364aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-ticket-percent'%3E%3Cpath d='M2 9a3 3 0 1 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 1 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z'%2F%3E%3Cpath d='M9 9h.01'%2F%3E%3Cpath d='m15 9-6 6'%2F%3E%3Cpath d='M15 15h.01'%2F%3E%3C%2Fsvg%3E");background-repeat:no-repeat;background-position:center center}.voucher-icon-big{height:40px;width:70px;background-size:70px 40px}.item-voucher{grid-area:voucher;position:relative;font-weight:normal;margin-bottom:3px}.voucher-symbol{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='none' stroke='%232364aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-ticket-percent'%3E%3Cpath d='M2 9a3 3 0 1 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 1 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z'%2F%3E%3Cpath d='M9 9h.01'%2F%3E%3Cpath d='m15 9-6 6'%2F%3E%3Cpath d='M15 15h.01'%2F%3E%3C%2Fsvg%3E");height:10px;width:10px;background-size:10px;margin-right:5px}.item-voucher input[id^=tooltip--v2--]:checked~.tooltip--v2{visibility:visible}@media screen and (min-width: 992px){.item-voucher input[id^=tooltip--v2--]:checked~.tooltip--v2{visibility:hidden}}@media screen and (min-width: 992px){.item-voucher:hover .tooltip--v2{visibility:visible}}@media screen and (min-width: 992px){.item-voucher .tooltip--v2__close{display:none}}.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{min-height:20px;margin-top:10px}#afsh-wrapper{background-color:rgba(0,0,0,0);margin-right:10px;width:100%;overflow:hidden;grid-column:1/-1}#afsh-container{margin:0 0 1px}@media screen and (min-width: 770px){#afsh-container{margin-bottom:10px}}.legal-hint{font-size:.9em}.encoded-link{cursor:pointer;background-color:rgba(0,0,0,0);color:#000;display:inline-block}.encoded-link:hover{color:#515151;text-decoration:underline}.encoded-link:hover,.encoded-link:active{outline:0}.tile-content{background:#fff;border-radius:8px;border:1px solid rgba(119,119,119,.25);padding:8px;text-align:center;display:inline-block;text-decoration:none;width:100%;height:100%}.tile-content__img{width:auto;max-width:128px;max-height:128px;margin:auto;display:inline-block}.tile-content__action-button{padding-left:10px;padding-right:10px;border:1px rgb(30.6463414634,87.5609756098,148.8536585366) solid;font-weight:500;color:#fff;border-radius:3px;line-height:2.2;background-color:#2364aa;margin-top:10px;display:block}.tile-img-container{display:block;height:110px;margin-bottom:15px;position:relative}.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:none;margin-bottom:5px}.tile-content:hover{text-decoration:none}.tile-content__action-button:hover{text-decoration:none;background-color:#22874c;border-color:#22874c;color:#fff}.warning{padding:8px;border-radius:0;border-top:0;margin-bottom:0}.warning p{font-size:1.2em;margin:0}.responsive-grid{-webkit-box-align:stretch;-webkit-align-items:stretch;-ms-flex-align:stretch;align-items:stretch;clear:both;display:grid;grid-template-columns:1fr;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;position:relative}.responsive-grid__cell{position:relative;z-index:1}.responsive-grid__cell--highlight{grid-column:1/span 1;grid-row:5/span 1;width:100vw;margin:0 calc(-50vw + 50%)}@media screen and (min-width: 320px)and (max-width: 770px){.responsive-grid{grid-gap:10px}}@media screen and (min-width: 320px)and (max-width: 480px){.responsive-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}.responsive-grid__cell--highlight{grid-column-end:span 2;grid-row-start:4}}@media screen and (min-width: 480px)and (max-width: 661px){.responsive-grid{grid-template-columns:repeat(3, minmax(0, 1fr))}.responsive-grid__cell--highlight{grid-column-end:span 3;grid-row-start:3}}@media screen and (min-width: 661px)and (max-width: 770px){.responsive-grid{grid-template-columns:repeat(4, minmax(0, 1fr))}.responsive-grid__cell--highlight{grid-column-end:span 4;grid-row-start:3}}@media screen and (min-width: 770px){.responsive-grid{grid-gap:10px}}@media screen and (min-width: 770px)and (max-width: 992px){.responsive-grid{grid-template-columns:repeat(3, minmax(0, 1fr))}.responsive-grid__cell--highlight{grid-column-end:span 3;grid-row-start:3}}@media screen and (min-width: 992px)and (max-width: 1200px){.responsive-grid{grid-template-columns:repeat(4, minmax(0, 1fr))}.responsive-grid__cell--highlight{grid-column-end:span 4;grid-row-start:3}}@media screen and (min-width: 1200px){.responsive-grid{grid-template-columns:repeat(5, minmax(0, 1fr))}.responsive-grid__cell--highlight{grid-column-end:span 5;grid-row-start:3}}.sidebar{width:21%}.content{width:79%}@media screen and (min-width: 992px)and (max-width: 1200px){.sidebar{width:25%}.content{width:75%}}@media screen and (min-width: 770px)and (max-width: 992px){.sidebar{width:32%}.content{width:68%}}@media screen and (max-width: 769px){.sidebar{width:100%}.content{width:100%}}.responsive-grid__list{display:grid;grid-template-columns:1fr}@media screen and (min-width: 770px){.responsive-grid__list{grid-template-columns:1fr 1fr}}@media screen and (min-width: 1200px){.responsive-grid__list{grid-template-columns:1fr 1fr 1fr}}@media screen and (max-width: 769px){.no-scroll{overflow:hidden;position:relative;height:100%}}.radio-btn{display:inline-block;border:1px solid hsl(0,0%,10%);vertical-align:middle;margin-bottom:2px;border-radius:100%;height:20px;width:20px;z-index:1;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 hsl(0,0%,10%)}.sidebar .noUi-horizontal{height:10px;border-radius:3px}.sidebar .noUi-horizontal .noUi-connect{background:rgb(39.3536585366,112.4390243902,191.1463414634)}.sidebar .noUi-horizontal .noUi-handle{border-radius:11px;width:22px;height:22px;top:-8px;right:-11px}@media screen and (max-width: 769px){.sidebar .noUi-horizontal .noUi-handle{border-radius:17px;width:34px;height:34px;top:-14px;right:-18px}}.sidebar .noUi-horizontal .noUi-handle::before,.sidebar .noUi-horizontal .noUi-handle::after{content:normal}.sidebar .noUi-horizontal .noUi-handle:focus,.sidebar .noUi-horizontal .noUi-handle:active{outline:none}.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:#a31621;display:inline-block;padding:4px}.arrow.right{transform:rotate(-45deg)}.filled-arrow{width:0;height:0;border-left:6px solid rgba(0,0,0,0);border-right:6px solid rgba(0,0,0,0);border-bottom:9px solid #000}.arrow.left{transform:rotate(135deg)}@media screen and (max-width: 769px){.main-container{margin-top:0}.navbar-fixed-top{position:inherit}}@media screen and (max-width: 769px){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 #eee}}.price-range__inputs{display:flex;align-items:center}.price-range-input{text-align:center}.price-range__separator{width:30px;text-align:center;flex-grow:1}.price-range-slider{padding:0 7px 0 5px}@media screen and (min-width: 770px){.price-range-slider{padding:0 0 0 1px}}.price-range-slider__wrapper{margin:20px 10px;height:10px}@media screen and (max-width: 769px){.price-range-slider__wrapper{margin:30px 10px}}.price-range-groups{padding-bottom:5px;margin-bottom:15px;border-bottom:1px solid #efefef}.price-range__action-button{padding-left:10px;padding-right:10px;border:1px rgb(30.6463414634,87.5609756098,148.8536585366) solid;font-weight:400;color:#333;border-radius:4px;line-height:2.2;background-color:#fff;margin:5px 0;width:100%;height:44px}.price-range .input-group{height:44px;background-color:#eaeaea;padding:0 8px;justify-content:space-around;border-radius:4px;flex-basis:40%}.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}.price-range .currency-right .icon-currency-gbp{margin-left:5px}.price-range .currency-right input{order:0}.price-range .icon-currency-eur:after{display:block;content:"€"}.price-range .icon-currency-gbp:after{display:block;content:"£"}.price-range .input-group-reset{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='none' stroke='%23777' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-x'%3E%3Cpath d='M18 6 6 18'%2F%3E%3Cpath d='m6 6 12 12'%2F%3E%3C%2Fsvg%3E");height:12px;width:12px;background-size:contain}.price-range__action-button:hover{text-decoration:none;background-color:#2364aa;border-color:rgb(30.6463414634,87.5609756098,148.8536585366);color:#fff}.price-range__action-button:active,.price-range__action-button:focus{outline:none}.legal-hint-popover{position:fixed;z-index:10;bottom:0;left:0;right:0;padding:15px;display:none;opacity:.88;background-color:#000;color:#fff}@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:#fff;cursor:pointer;content:"×";font-size:1.66em}.btn-group>.btn{position:relative;float:left;background-color:#fff}.toolbar{margin-bottom:0}.toolbar-content{display:flex;align-items:baseline;position:relative}.toolbar-item{display:flex;flex-grow:1;flex-wrap:wrap;max-width:100%}.toolbar-item__left{flex:1;max-width:100%}.toolbar-item__right{align-self:end}@media screen and (max-width: 769px){.toolbar-item__right{width:100%}}@media screen and (max-width: 769px){.toolbar{padding-left:10px;padding-right:10px}}.toolbar h1{font-size:20px;margin:0 4px 0 0;font-weight:normal;text-transform:capitalize;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.toolbar h1~h2{font-size:14px}@media screen and (min-width: 770px){.toolbar h1{font-weight:bold}}.toolbar h2{flex-grow:1;font-size:2rem;font-weight:400;margin:0}.icon-filter{margin-right:5px;width:14px;height:14px;background-size:cover}.toolbar .breadcrumb{flex-shrink:1;flex-basis:100%}.filters-bar{background:#fff;padding:8px 12px;margin-bottom:1px}.breadcrumb{height:20px;display:flex;align-items:center;background-color:inherit;padding:0}.breadcrumb .icon-home{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='none' stroke='%232364aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-house'%3E%3Cpath d='M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8'%2F%3E%3Cpath d='M3 10a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'%2F%3E%3C%2Fsvg%3E");margin-top:4px}@media screen and (max-width: 769px){.breadcrumb{display:none}}.breadcrumb>li{display:inline-block;vertical-align:text-bottom}.breadcrumb>li.current span{color:rgb(153.5,153.5,153.5)}.breadcrumb__encoded-link{cursor:pointer;background-color:rgba(0,0,0,0);color:#2364aa;display:inline-block}.breadcrumb>li+li:before{margin-left:5px;vertical-align:unset;content:"/";color:#000;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:flex;align-items:center;padding:10px 15px}.pagination>li>span:hover{color:#000}.pagination>li>span .chevron{height:20px;width:20px;background-size:20px}.pagination>li>span .chevron-right{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='none' stroke='%23777' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-chevron-right'%3E%3Cpath d='m9 18 6-6-6-6'%2F%3E%3C%2Fsvg%3E");margin-left:5px}.pagination>li>span .chevron-left{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='none' stroke='%23777' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-chevron-left'%3E%3Cpath d='m15 18-6-6 6-6'%2F%3E%3C%2Fsvg%3E");margin-right:5px}.pagination .page span,.pagination .prev span,.pagination .next span{background-color:rgba(0,0,0,0)}.pagination .page span:hover,.pagination .prev span:hover,.pagination .next span:hover{background-color:unset}.pagination .prev,.pagination .next{background-color:#e3e3e3;color:#777;border-radius:8px}.pagination__encoded-link{cursor:pointer;background-color:rgba(0,0,0,0);color:#000;display:inline-block}.pagination__encoded-link:hover{color:#7fa508;text-decoration:underline}.pagination__encoded-link:hover,.pagination__encoded-link:active{outline:0}.pagination .prev,.pagination .next{margin:0 10px}@media screen and (min-width: 480px){.pagination .prev.disabled,.pagination .next.disabled{display:none}}.pagination .prev .disabled,.pagination .next .disabled{cursor:default;opacity:0}.pagination .prev .label,.pagination .next .label{font-weight:500;font-size:15px;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}@media screen and (max-width: 769px){.element-container{padding:10px}}.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/kfzteile_net/header-with-teaser/image-1x-3cd3db8308c41682987d22990e379fdc.webp")}}@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/kfzteile_net/header-with-teaser/image-2x-ebc00ceac8863dc0a5eb4c42cbf1b084.webp")}}@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/kfzteile_net/header-with-teaser/image-2x-ebc00ceac8863dc0a5eb4c42cbf1b084.webp")}}@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/kfzteile_net/header-with-teaser/image-4x-1c3e72bb90207b80e228fcff7b341641.webp")}}@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/kfzteile_net/header-with-teaser/image-4x-1c3e72bb90207b80e228fcff7b341641.webp")}}@media screen and (min-width: 770px){.teaser{height:635px}}@media screen and (max-width: 769px)and (max-resolution: 191dpi),screen and (max-width: 769px)and (-webkit-max-device-pixel-ratio: 1.99){.teaser.christmas{background-image:url("/assets/img/themes/kfzteile_net/header-with-teaser/christmas/image-1x-3cd3db8308c41682987d22990e379fdc.webp")}}@media screen and (max-width: 769px)and (min-resolution: 192dpi),screen and (max-width: 769px)and (-webkit-min-device-pixel-ratio: 2){.teaser.christmas{background-image:url("/assets/img/themes/kfzteile_net/header-with-teaser/christmas/image-2x-ebc00ceac8863dc0a5eb4c42cbf1b084.webp")}}@media screen and (min-width: 770px)and (max-resolution: 191dpi),screen and (min-width: 770px)and (-webkit-max-device-pixel-ratio: 1.99){.teaser.christmas{background-image:url("/assets/img/themes/kfzteile_net/header-with-teaser/christmas/image-2x-ebc00ceac8863dc0a5eb4c42cbf1b084.webp")}}@media screen and (min-width: 992px)and (max-resolution: 191dpi),screen and (min-width: 992px)and (-webkit-max-device-pixel-ratio: 1.99){.teaser.christmas{background-image:url("/assets/img/themes/kfzteile_net/header-with-teaser/christmas/image-4x-1c3e72bb90207b80e228fcff7b341641.webp")}}@media screen and (min-width: 770px)and (min-resolution: 192dpi),screen and (min-width: 770px)and (-webkit-min-device-pixel-ratio: 2){.teaser.christmas{background-image:url("/assets/img/themes/kfzteile_net/header-with-teaser/christmas/image-4x-1c3e72bb90207b80e228fcff7b341641.webp")}}.page-title{display:none;width:100%;text-align:center;color:#fff;font-size:8.1rem;font-weight:700;margin:100px 0}@media screen and (min-width: 770px){.page-title{display:inline-block}}.page-title .small{display:block;font-size:.35em}#search-popup{background:rgba(0,0,0,.84);color:#fff}.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 .close{font-size:3em;line-height:.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:"×"}.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%}}.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)}.popup a{display:block}.popup .search-button{background:#fff;color:#000;border-left:1px solid #2364aa}.popup-content{text-align:center;padding:0 10px 10px}.popup .search-box{margin:0 auto;width:100%}.popup .search-box .search-input{z-index:3}.revocation{border:1px solid #000;padding:5px;background-color:#ccc}.filter-item{display:flex;padding:0 5px 5px 5px}@media screen and (max-width: 769px){.filter-item{padding-bottom:10px}}.filter-item-text{width:100%;color:#000;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.filter-item-link{text-decoration:none}.filter-item__check-box:before{content:"";display:inline-block;margin-right:5px;border:1px solid hsl(0,0%,10%);line-height:1;vertical-align:middle;width:20px;height:20px}.filter-item__check-box--active:before{content:"✓";font-size:19px;padding:0 2px}.filter-item__encoded-link{cursor:pointer;background-color:rgba(0,0,0,0);color:#000;display:flex;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.filter-sorting .sidebar__panel-heading{flex-flow:wrap}.icon-filter{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='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-settings-2'%3E%3Cpath d='M20 7h-9'%2F%3E%3Cpath d='M14 17H5'%2F%3E%3Ccircle cx='17' cy='17' r='3'%2F%3E%3Ccircle cx='7' cy='7' r='3'%2F%3E%3C%2Fsvg%3E")}.filter-item:hover{text-decoration:underline}.filter-item__encoded-link:hover{text-decoration:underline}.collapsed .toggle-icon-collapsible:before{content:""}.toggle-icon-collapsible:before{content:""}.sidebar-filter{visibility:hidden}.sidebar-box-toggle{display:none}.sidebar-box-toggle:checked~.sidebar__panel-heading .sidebar__panel-heading__arrow{transform:rotate(-180deg)}.sidebar-box-toggle:checked~.sidebar__panel-body-wrapper{transition:max-height 1s ease-in-out;max-height:410px}.sidebar__filter-item{padding:0 5px 0 5px;display:flex;height:44px;align-items:center}.sidebar__panel{position:relative;border-radius:0;border:0;background:rgba(0,0,0,0);-webkit-box-shadow:none;box-shadow:none;border-bottom:1px #efefef solid;margin-bottom:0}.sidebar__panel:last-child{border-bottom:0;margin-bottom:0}@media screen and (max-width: 769px){.sidebar__panel:last-child{margin-bottom:20px}}.sidebar__panel-heading{width:100%;margin:0;cursor:pointer;position:relative;display:flex;padding:8px 5px;background:rgba(0,0,0,0);border:0;height:44px;align-items:center}.sidebar__panel-heading__arrow{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='none' stroke='%23a31621' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-chevron-down'%3E%3Cpath d='m6 9 6 6 6-6'%2F%3E%3C%2Fsvg%3E");background-repeat:no-repeat;background-position:center center;width:18px;height:18px;flex-shrink:0}.sidebar__panel-title{font-weight:bold;flex-grow:1;color:#a31621;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-close-panel{position:fixed;display:flex;justify-content:center;align-items:center;font-weight:bold;font-size:1.25em;bottom:0;visibility:hidden;z-index:1001;width:calc(100% - 40px);margin:10px 20px;height:44px;padding-left:10px;padding-right:10px;border:1px rgb(30.6463414634,87.5609756098,148.8536585366) solid;font-weight:400;color:#fff;border-radius:3px;line-height:2.2;background-color:#2364aa;text-decoration:none}@media screen and (max-width: 769px){.sidebar-close-panel{text-align:center;font-size:1.2em;-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}}@media screen and (max-width: 769px){.sidebar{background-color:rgba(0,0,0,.2);position:fixed;top:0;bottom:0;visibility:hidden;z-index:2}}.sidebar-content{padding:10px;background:#fff;margin:0 10px 0 0}@media screen and (min-width: 770px){.sidebar-content{border-radius:8px}}@media screen and (max-width: 769px){.sidebar-content{background:#fff;padding:5px 0 56px;margin:0;max-height:100%;overflow-y:auto;width:100%;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}}@media screen and (max-width: 769px){.sidebar-content-top{background:#fff;overflow-y:auto;-webkit-overflow-scrolling:touch;height:100%;padding:10px 20px}}.sidebar-content-top>#show-price:checked~div:not(.filter-price-range){display:none}.sidebar-content-top>#show-manufacturers:checked~div:not(.filter-manufacturers){display:none}.sidebar .arrow{top:13px;transform:rotate(45deg)}.sidebar .filter-offer-condition .filter-item__encoded-link:hover{text-decoration:none}@media screen and (max-width: 769px){.sidebar:target{visibility:visible}}@media screen and (max-width: 769px){.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}@media screen and (min-width: 770px){.sidebar:target .sidebar-close-panel{visibility:hidden}}@media screen and (max-width: 769px){.sidebar-content-bottom{height:35px}}@media screen and (max-width: 769px){.sidebar-close-panel:focus{outline:none}}.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}}.badge{border-radius:5px;margin-left:5px;margin-right:10px;padding:1px 5px}.alert{padding:30px 20px;font-weight:bold;border-bottom:1px solid #d2d9df}@media screen and (min-width: 770px){.alert{padding:20px 0}}.search-popup-button{display:flex;align-items:center;border-radius:0;color:#fff;cursor:pointer}.search-popup-button .icon{height:18px;width:18px}@media screen and (min-width: 320px){.search-popup-button{border-bottom:1px #fff solid}.search-popup-button .icon{height:15px;width:15px}}.search-popup-text{display:none}@media screen and (min-width: 320px){.search-popup-text{display:block;font-size:1.6rem;padding-right:50px}}@media screen and (min-width: 480px){.search-popup-text{padding-right:110px}}.search-popup{cursor:pointer}.search-popup-button:hover{color:#fff;text-decoration:unset}.product-details{padding:15px;background-color:#fff;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:#2364aa;font-size:1.2em;text-decoration:underline}.product-details-subtitle:hover{color:#2364aa}.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{width:auto;line-height:1.6}@media screen and (max-width: 479px){.editorial-text--teaser{visibility:hidden;height:0}}.editorial-text img{width:100%}.editorial-text table,.faq table{width:100%;border-collapse:collapse;margin:25px 0;font-size:.9em;font-family:sans-serif;min-width:400px;box-shadow:0 0 20px rgba(0,0,0,.15)}.editorial-text table thead tr,.faq table thead tr{background-color:#2364aa;color:#fff;text-align:left}.editorial-text table th,.editorial-text table td,.faq table th,.faq table td{padding:12px 15px}.editorial-text table tbody tr,.faq table tbody tr{border-bottom:1px solid #ddd}.editorial-text table tbody tr:nth-of-type(even),.faq table tbody tr:nth-of-type(even){background-color:#f3f3f3}.editorial-text table tbody tr:last-of-type,.faq table tbody tr:last-of-type{border-bottom:2px solid #2364aa}.editorial-text table tbody tr.active-row,.faq table tbody tr.active-row{font-weight:bold;color:#2364aa}.search-suggestions{border-bottom:#d2d9df 1px solid}.search-suggestions:last-child{border-bottom:0}.search-suggestions .top-queries{background-color:#fff}.search-suggestions .top-queries .carousel-tile{width:100%}@media screen and (min-width: 480px){.search-suggestions .top-queries .carousel-tile{width:50%}}@media screen and (min-width: 661px){.search-suggestions .top-queries .carousel-tile{width:33.3333333333%}}@media screen and (min-width: 770px){.search-suggestions .top-queries .carousel-tile{width:33.3333333333%}}@media screen and (min-width: 992px){.search-suggestions .top-queries .carousel-tile{width:25%}}@media screen and (min-width: 1200px){.search-suggestions .top-queries .carousel-tile{width:25%}}.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:#2364aa;flex:1 1 50%;position:relative;color:#fff}.search-tips-title-arrow{position:absolute;right:-27px;top:calc(50% - 10px);width:0;height:0;border-left:17px solid rgba(0,0,0,0);border-right:17px solid rgba(0,0,0,0);border-bottom:20px solid #2364aa;transform:rotate(90deg)}.search-tips-body{border:1px solid #dcdcdc;background-color:#fff;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:.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:hsl(0,0%,46.7%)}.error__action-button{padding-left:10px;padding-right:10px;border:1px rgb(30.6463414634,87.5609756098,148.8536585366) solid;font-weight:400;color:#fff;border-radius:3px;line-height:2.2;background-color:#2364aa;font-size:.8em;padding:10px 20px;margin:50px 0 20px;display:inline-block}.error__action-button:hover{text-decoration:none;background-color:#22874c;border-color:#22874c;color:#fff}.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:.9em;padding-bottom:10px}.error .top-queries{background-color:#fff}.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.3333333333%}}@media screen and (min-width: 770px){.error .top-queries .carousel-tile{width:33.3333333333%}}@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%}}.typeahead{position:relative}.typeahead [role=listbox]{position:absolute;top:0;left:0;margin-top:1px;background:#fff;text-align:left;padding:0;border:0;list-style:none;width:100%;z-index:1002;box-shadow:0 6px 12px #9e9e9e}.typeahead [role=status]{display:none}.overlay [role=listbox]{box-shadow:none}.typeahead .typeahead__list{display:none}.typeahead.result .typeahead__list{display:block}.typeahead [role=listbox] li{border:0;color:#000;cursor:pointer}.typeahead [role=listbox] li mark{font-weight:bold;background-color:rgba(0,0,0,0);color:inherit}.typeahead [role=listbox] li:hover{background:#f5f5f5;color:#000}.typeahead [role=listbox] li[aria-selected=true]{background-color:#ea7317;color:#fff}.typeahead [role=listbox]>li{color:#000;display:block;padding:8px 20px}.search-form .typeahead-open .input-group{border-bottom-right-radius:0;border-bottom-left-radius:0}html.remodal-is-locked{overflow:hidden;-ms-touch-action:none;touch-action:none}.remodal{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,.9)}.remodal-overlay.remodal-is-opening,.remodal-overlay.remodal-is-closing{-webkit-animation-duration:.3s;animation-duration:.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:.3s;animation-duration:.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 .2s;transition:color .2s;text-decoration:none;color:#95979c;border:0;outline:0;background:rgba(0,0,0,0)}.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:"×";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 .2s;transition:background .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}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;padding-top:10px}.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:rgba(0,0,0,0);background-image:url("/assets/img/themes/auspreiser_like/payment_methods/Icon_Paypal-a90cc1c2c342c3e56062e63cee270e35.png")}.payment-methods .payment-method.visa{color:rgba(0,0,0,0);background-image:url("/assets/img/themes/auspreiser_like/payment_methods/Icon_Visa-b815087087efe46c26a93eca803239a6.png")}.payment-methods .payment-method.mc{color:rgba(0,0,0,0);background-image:url("/assets/img/themes/auspreiser_like/payment_methods/Icon_Mastercard-af85225422d814cc370957e6eada588c.png")}.payment-methods .payment-method.suw{color:rgba(0,0,0,0);background-image:url("/assets/img/themes/auspreiser_like/payment_methods/Icon_Sofort1-4f8c26e11ba0e2306d099fc022ea529a.png")}.payment-methods .payment-method.amzp{color:rgba(0,0,0,0);background-image:url("/assets/img/themes/auspreiser_like/payment_methods/Icon_Amazon-ebfe35c23ee2127bf8975ae6cfb3c426.png")}.payment-methods .payment-method.grp{color:rgba(0,0,0,0);background-image:url("/assets/img/themes/auspreiser_like/payment_methods/Icon_GiroPay-57b2b93b00f46f295e1b064f73ec3d59.png")}.payment-methods .payment-method:after{color:#4a4a4a;line-height:18px;font-size:9px}.tooltip{position:absolute;visibility:hidden;background:#2364aa;color:#fff;border-radius:5px;padding:5px 10px;font-size:.9em;display:flex;flex-direction:column;align-items:center;z-index:1000;bottom:23px;min-width:55px}.tooltip:before{display:block;content:"";border-color:#2364aa rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:5px;height:0;width:0;position:absolute;bottom:-10px;right:35px}.product{border-bottom:1px solid #777}.product-title{display:flex;gap:10px;background-color:#fff;padding:10px;margin-bottom:5px}@media screen and (min-width: 770px){.product-title{border-radius:0 0 8px 8px}}@media screen and (min-width: 992px){.product-title{padding:10px 15px 15px 15px}}.product-title h1{font-size:1.3em;font-weight:700;margin:0;overflow:hidden;max-height:3.6em;line-height:1.2em}.product .product-title-image{display:none;max-height:80px;max-width:80px;align-self:center}@media screen and (max-width: 769px){.product .product-title-image{display:block}}.product .product-title-image .encoded-link{display:block}.product-container{display:flex;flex-direction:column;padding:0}@media screen and (min-width: 770px){.product-container{flex-direction:row}}.product-container-main{display:flex;flex-direction:column;order:3;padding:0 10px}@media screen and (min-width: 770px){.product-container-main{order:1;max-width:calc(100% - 310px);padding:0}}.product-container-sidebar{order:2;padding:5px 10px}@media screen and (min-width: 770px){.product-container-sidebar{width:310px;padding:5px 0 5px 10px}}@media screen and (max-width: 769px){.product-container-sidebar{display:none}}.product__ranking-link{grid-area:ranking;padding:0 10px 5px 10px}@media screen and (min-width: 992px){.product__ranking-link{padding:0 10px 0 10px}}.product-content-offers{background-color:#fff;border-radius:8px;margin:5px 0}@media screen and (max-width: 769px){.product-content-offers{background-color:#efefef}}.product-content-offers .shop-name{color:#000500;font-size:.95em;padding:10px 0 0;text-overflow:ellipsis;overflow:hidden}.product-condition-filters{padding:0}.product .editorial-text{margin:10px 0}.product~.footer{padding:1px 0 45px 0}.shop-logo{height:30px;width:auto}.product-details{background:#fff;border:1px solid #eaeaea;border-radius:8px;padding:10px;display:flex;flex-direction:column;text-decoration:none}.product-details:hover{text-decoration:none}.product-details__title{display:none}@media screen and (min-width: 770px){.product-details__title{display:block;color:#000;font-weight:bold;align-self:flex-start;margin:10px 0 5px 0;font-size:18px;font-style:normal;text-transform:capitalize}}.product-details__img{display:none}.product-details:not(:has(.product-image-gallery)) .product-details__img{display:block;width:100%;height:180px;position:relative}@media screen and (min-width: 770px){.product-details:not(:has(.product-image-gallery)) .product-details__img{margin:10px 0}}.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;flex-direction:column;align-items:flex-start}}.product-details__price-and-shipment .price{white-space:nowrap;color:#2364aa;font-size:2.4rem;text-align:right}.product-details__price-and-shipment .shipment-time{font-size:13px;text-align:right;color:#000500}.product-details .shop-name{margin:3px 0 0;text-align:center}@media screen and (max-width: 769px){.product-details:has(.product-image-gallery) .shop-name{display:none}}.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:flex;flex-direction:column}}.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{cursor:pointer;font-weight:bold;text-decoration:none;color:#000}.product-details__description__content{font-size:13px;line-height:1.38;color:#000}.product-details__description__content--long{max-height:120px;overflow:hidden}.product-details__description__less-button{display:none;align-self:end}.product-details__description__more-button{display:block;align-self:end}.product-content-offers{background-color:#efefef}.product-offer{display:grid;grid-column-gap:15px;text-decoration:none;border-radius:10px;margin-bottom:5px;border:1px solid #eaeaea;background-color:#fff;grid-template-areas:"price shop collapse" "badges badges badges" "title title title" "shipping-cost btn btn" "ship pay pay";grid-template-columns:3fr 2fr 20px;padding:10px;grid-row-gap:2px;border-bottom:1px solid #eaeaea}.product-offer h3{grid-area:title;margin:5px 0 0;font-size:12px;font-weight:500;padding-bottom:5px;color:#1e1e1e;word-break:break-word}@media screen and (min-width: 992px){.product-offer h3{font-size:14px;font-weight:700;color:#000;display:inline;vertical-align:top;padding-bottom:0;margin:0}}@media screen and (min-width: 992px){.product-offer{grid-template-areas:"title title title title price" "free free pay badges shipping-cost" "shop ship pay badges btn";gap:10px;grid-template-columns:100px minmax(130px, 3fr) 1fr 2fr 2fr;align-items:flex-start;padding:10px 15px}}@media screen and (min-width: 1200px){.product-offer .btn{display:block}}.product-offer:first-child{border-top:1px solid #eaeaea}.product-offer input:checked~.product-offer-shipment-time,.product-offer input:checked~.product-offer-payment-methods{max-height:80px;overflow:unset}.product-offer input:checked~.product-offer-shipment-time{align-self:end}.product-offer input:checked~label icon{transform:rotate(200grad)}@media screen and (max-width: 991px){.product-offer-shipment-time,.product-offer-payment-methods{overflow:hidden;max-height:0;transition:max-height .15s cubic-bezier(0.67, 0.32, 0.46, 0.94)}}.product-offer-label{font-weight:bold;padding-bottom:5px;font-size:.9em}.product-offer input{display:none}.product-offer-shop{width:150px;color:#515151;grid-area:shop;padding-bottom:0}@media screen and (max-width: 991px){.product-offer-shop{display:flex;justify-content:flex-end}}.product-offer-badges{grid-area:badges;height:100%;display:flex;flex-direction:column;gap:5px;justify-content:flex-end}@media screen and (max-width: 991px){.product-offer-badges{flex-wrap:wrap;flex-direction:row;justify-content:flex-start}}.product-offer__price-block{display:flex;flex-direction:column;align-items:flex-end}@media screen and (min-width: 992px){.product-offer__price-block{align-items:flex-start}}.product-offer-shipment-time{grid-area:ship;align-self:start}.product-offer-shipment-time .shipment-time{font-size:13px;color:#000;font-weight:400}@media screen and (max-width: 991px){.product-offer-shipment-time .shipment-time{font-size:12px;color:#767676;font-weight:400}}.product-offer-payment-methods{grid-area:pay;height:100%;align-items:flex-end;display:flex}.product-offer-payment-methods .product-offer-label{text-align:right}.product-offer-payment-methods .payment-methods{flex-wrap:wrap;justify-content:flex-start;direction:ltr}.product-offer-payment-methods .payment-methods .payment-method{font-size:0;padding:1px;margin:2px;align-self:flex-end}.product-offer-payment-methods .payment-methods .payment-method::first-letter{font-size:12px}.product-offer-price{text-align:left;grid-area:price;white-space:nowrap;color:#515151}.product-offer-price .price{font-size:1.45em}.product-offer-price .base-price{font-size:.75em;line-height:2em}.product-offer-shipment-cost{grid-area:shipping-cost;display:flex;align-items:flex-end}.product-offer-shipment-cost .shipping-cost{font-style:normal;white-space:nowrap;font-size:12px;font-weight:400;color:#000}.product-offer-shipment-cost .shipping-cost .free{color:#2364aa}.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}.product-offer label icon{display:inline-block;background: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='none' stroke='%23767676' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-chevron-down'%3E%3Cpath d='m6 9 6 6 6-6'%2F%3E%3C%2Fsvg%3E");background-repeat:no-repeat;width:25px;height:25px}@media screen and (min-width: 992px){.product-offer-collapse{display:none}}.product-offer:hover{text-decoration:none}.product-recommendations{margin:10px 0}.product-recommendations__header{font-size:21px;font-weight:500;padding:0 15px}.product-recommendations .responsive-grid{padding-bottom:10px}.product-recommendations .responsive-grid__cell{display:none}.product-recommendations .responsive-grid__cell:nth-child(-n+2){display:unset}@media screen and (min-width: 480px){.product-recommendations .responsive-grid__cell:nth-child(3){display:unset}}@media screen and (min-width: 661px)and (max-width: 770px){.product-recommendations .responsive-grid__cell:nth-child(4){display:unset}}@media screen and (min-width: 992px){.product-recommendations .responsive-grid__cell:nth-child(4){display:unset}}@media screen and (min-width: 1200px){.product-recommendations .responsive-grid__cell:nth-child(5){display:unset}}.product-recommendations__footer{display:flex;justify-content:center}@media screen and (min-width: 770px){.product-recommendations__footer{justify-content:right}}.product-recommendations-show-all{background-color:#e3e3e3;color:#515151;border-radius:10px;display:flex;align-items:center;padding:10px 12px;font-size:12px;font-weight:700;text-decoration:none}.product-recommendations-show-all .chevron-right{height:24px;width:24px;background-size:24px;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='none' stroke='%23515151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-chevron-right'%3E%3Cpath d='m9 18 6-6-6-6'%2F%3E%3C%2Fsvg%3E");margin-left:5px}.filter-bar{background:#fff;display:flex;gap:5px;margin:0 0 10px 0;padding:5px 15px;width:100%}@media screen and (min-width: 770px){.filter-bar{display:none}}.filter-bar .filter-button{background-color:#efefef;border:1px solid #efefef;border-radius:15px;padding:6px 10px;box-shadow:none;font-size:15px;margin-left:auto;position:inherit;text-decoration:none;display:flex;align-items:center;cursor:pointer;color:#000;align-self:center}@media screen and (min-width: 770px){.filter-bar .filter-button{display:none}}.filter-bar .filter-button.filter-left{margin-left:0}.filter-bar .filter-button.active{background-color:#fff;border:1px solid #2364aa}.filter-bar .filter-button.active .icon-down{background: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='none' stroke='%232364aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-chevron-down'%3E%3Cpath d='m6 9 6 6 6-6'%2F%3E%3C%2Fsvg%3E")}.filter-bar .filter-button .icon-down{background: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='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-chevron-down'%3E%3Cpath d='m6 9 6 6 6-6'%2F%3E%3C%2Fsvg%3E")}.item-badge{border-radius:10px;font-size:10px;padding:5px 8px 5px 6px;display:flex;align-items:center;align-self:flex-start;background-color:#fff;color:#2364aa;border:1px solid #2364aa}.cookie-preferences__link{text-decoration:underline;color:#777;cursor:pointer}.five-search-results-with-link{margin:10px 0}.five-search-results-with-link .responsive-grid{padding-bottom:10px}.five-search-results-with-link .responsive-grid__cell{display:none}.five-search-results-with-link .responsive-grid__cell:nth-child(-n+2){display:unset}@media screen and (min-width: 480px){.five-search-results-with-link .responsive-grid__cell:nth-child(3){display:unset}}@media screen and (min-width: 661px)and (max-width: 770px){.five-search-results-with-link .responsive-grid__cell:nth-child(4){display:unset}}@media screen and (min-width: 992px){.five-search-results-with-link .responsive-grid__cell:nth-child(4){display:unset}}@media screen and (min-width: 1200px){.five-search-results-with-link .responsive-grid__cell:nth-child(5){display:unset}}.five-search-results-with-link__footer{display:flex;justify-content:center}@media screen and (min-width: 770px){.five-search-results-with-link__footer{justify-content:right}}.five-search-results-with-link__show-all{background-color:#e3e3e3;color:#515151;border-radius:10px;display:flex;align-items:center;padding:10px 12px;font-size:12px;font-weight:700;text-decoration:none}.five-search-results-with-link__show-all .chevron-right{height:24px;width:24px;background-size:24px;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='none' stroke='%23515151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-chevron-right'%3E%3Cpath d='m9 18 6-6-6-6'%2F%3E%3C%2Fsvg%3E");margin-left:5px}.social-media-links{margin-right:10px}.social-media-links__title{font-size:14px;font-weight:600;margin-right:10px}.social-media-list{display:flex;flex-direction:row;align-items:center;justify-content:center;list-style:none;margin:10px 0 0 0;padding:0}.social-media-symbol{height:10px;width:10px;background-size:10px;margin-right:5px}.social-media-symbol__facebook{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='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-facebook-icon lucide-facebook'%3E%3Cpath d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'%2F%3E%3C%2Fsvg%3E");height:50px;width:50px;display:flex;background-size:contain}.social-media-symbol__instagram{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='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-instagram-icon lucide-instagram'%3E%3Crect width='20' height='20' x='2' y='2' rx='5' ry='5'%2F%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'%2F%3E%3Cline x1='17.5' x2='17.51' y1='6.5' y2='6.5'%2F%3E%3C%2Fsvg%3E");height:50px;width:50px;display:flex;background-size:contain}.about{border-top:1px solid silver}.about .title{margin:20px 0;font-weight:bold}.about .text{text-align:left;line-height:16px}@media screen and (min-width: 770px){.about .text{column-count:2;column-gap:2em}}.about p{margin-top:0;page-break-inside:avoid;break-inside:avoid-column}.about h2{font-size:inherit;font-weight:normal}.logo svg{height:16px;fill:#fff}header{background-color:#ea7317}@media screen and (max-width: 991px){.teaser~header{background-color:rgba(0,0,0,0)}}.navbar{height:40px}@media screen and (min-width: 770px){.navbar{height:60px}}.navbar-nav{align-items:center;display:flex;z-index:2;height:100%;position:relative}@media screen and (max-width: 991px){.navbar-nav{justify-content:flex-end}}.navbar-nav-logo{margin-right:16px;order:1;padding-left:8px;flex-grow:1}@media screen and (min-width: 992px){.navbar-nav-logo{flex-grow:0;padding-left:0}}.navbar-nav-logo svg{width:128px}.navbar-nav .category-menu{order:3;width:58px}@media screen and (min-width: 992px){.navbar-nav .category-menu{flex-grow:1;order:2}}.navbar-nav .search-popup-button{display:inline-flex;order:2;text-decoration:none}@media screen and (min-width: 992px){.navbar-nav .search-popup-button{order:3}}footer{background-color:#4a4a4a;color:#fff}footer .footer-menu-block{margin-top:10px}footer .footer-menu-block ul li{border-color:#eaeaea;border-width:2px}footer .footer-menu-block a,footer .footer-menu-block__encoded-link{color:#eaeaea;font-weight:500;text-transform:uppercase}footer .footer-menu-block__encoded-link{text-decoration:underline}footer .footer-menu-block__encoded-link:hover{color:#fff;text-decoration:underline}footer .footer-menu-block__encoded-link:hover,footer .footer-menu-block__encoded-link:active{outline:0}footer .footer-menu-block.legal-hint{color:#9f9f9f}footer .footer-international-links ul li{border-color:#eaeaea;border-width:2px}footer .footer-international-links a{color:#eaeaea;font-weight:500;text-transform:uppercase}@media screen and (min-width: 770px){footer .search-form-wrapper{margin:20px 20px 0 20px}}.list-group-item .price-section .price{color:#a31621;font-size:2rem}.offer-item-title{color:#2364aa;font-weight:bold}.price-range__action-button{color:#2364aa}.recent-queries{background-color:#f3fafe;padding:5px 0 40px 0}.recent-queries .carousel-cell{width:160px}.recent-queries .highlights-tile-price{font-size:1.5rem}.recent-queries .tile{margin:0 10px 0 0}.recent-queries .tile-content{padding:10px 10px 0 10px;margin-bottom:0}.recent-queries .tile-img-container{margin-bottom:10px}.recent-queries .tile-text{color:#2364aa;font-weight:bold;text-decoration:none;margin-bottom:0}.recent-queries .price{color:#a31621;margin-bottom:10px}.breadcrumb{font-size:1.6rem;margin:15px 0 0;padding:0;align-items:center}.breadcrumb .home{width:20px;height:20px}.breadcrumb .icon-home{stroke:#4a8ee2}.breadcrumb>li__encoded-link{color:#2364aa}.breadcrumb>li.current span{color:#000}.pagination>li{margin:0 8px}.pagination .page span{border:1px solid #2364aa;border-radius:4px}.pagination .page.disabled span{background-color:#2364aa;border-color:#2364aa;border-radius:4px;color:#fff}.pagination .prev .arrow,.pagination .next .arrow{border-color:#2364aa}@media screen and (min-width: 480px){.pagination .prev .label,.pagination .next .label{display:none}}.toolbar{margin:15px 0 4px 0}@media screen and (max-width: 769px){.toolbar{padding-bottom:10px;margin-top:5px;border-bottom:1px solid #d2d9df}}@media screen and (min-width: 770px){.toolbar{padding:0 15px}}.toolbar h1{color:#000;margin:0 4px 0 0;font-size:2.6rem;font-weight:600;flex-shrink:1;flex-basis:100%}@media screen and (min-width: 770px){.toolbar h1{text-align:left;margin:0;font-size:3.4rem}}.toolbar h1~h2{font-size:1.6rem}.toolbar h2{margin:0;flex-grow:1;align-self:center}.no-results-found .search-form .input-group{background-color:#e8e8e8}.no-results-found .search-form aside{color:#000}.search-form{padding:0}@media screen and (min-width: 770px){.search-form{padding:0 64px}}.search-form .input-group{background-color:#fff;opacity:.9;border-radius:4px}@media screen and (max-width: 769px){.search-form .input-group{height:38px}}.search-form .input-group input{font-size:1.5rem}@media screen and (min-width: 770px){.search-form .input-group input::placeholder{text-transform:uppercase}}.search-form .input-group button{width:44px}.search-form .input-group button .icon{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='none' stroke='%232364aa' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-search'%3E%3Ccircle cx='11' cy='11' r='8'%2F%3E%3Cpath d='m21 21-4.3-4.3'%2F%3E%3C%2Fsvg%3E")}.search-form aside{font-weight:400}@media screen and (max-width: 769px){.search-form aside{margin-top:10px;font-size:12px;font-weight:100}}.action-button{padding-left:10px;padding-right:10px;border:1px rgb(30.6463414634,87.5609756098,148.8536585366) solid;font-weight:bold;color:#2364aa;border-radius:4px;line-height:2;background-color:rgba(0,0,0,0);letter-spacing:.025rem}.action-button:hover,.action-button:active,.action-button:focus{background-color:#2364aa;color:#fff}.tyre-wizard{position:relative;margin:20px 0 30px 0;border-radius:4px;background:linear-gradient(#80c3f3, #4a8ee2);box-shadow:0 10px 40px #a4acb5;overflow:hidden;display:flex;flex-direction:column}.tyre-wizard .caption{text-align:center;font-size:20px;margin:20px 0 10px 0;color:#fff}.tyre-wizard .dropdown-panel{padding:10px 0 0 10px;height:120px}.tyre-wizard .dropdown-panel .wrapper{padding:0 10px 10px 0;float:left;width:33.33%}.tyre-wizard .dropdown{-moz-appearance:none;-webkit-appearance:none;appearance:none;background-repeat:no-repeat;background-color:#fff;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='none' stroke='%232364aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-chevron-down'%3E%3Cpath d='m6 9 6 6 6-6'%2F%3E%3C%2Fsvg%3E");background-position:right 16px center;background-size:24px 24px;border:0;border-radius:4px;color:#636363;font-size:1.2em;padding:0 8px;height:45px;width:100%}.tyre-wizard .dropdown::-ms-expand{display:none}.tyre-wizard .search-button-wrapper{height:80px;padding:25px 6px 0 6px;margin:auto;width:33%}.tyre-wizard__action-button{padding-left:10px;padding-right:10px;border:1px rgb(30.6463414634,87.5609756098,148.8536585366) solid;font-weight:bold;color:#fff;border-radius:4px;line-height:2.2;background-color:#2364aa;width:100%;text-transform:uppercase;background:rgba(0,0,0,0);border:1px solid #fff;height:45px;font-size:.9em;margin:0;padding:0}.tyre-wizard__action-button:hover{text-decoration:none;background-color:#fff;border-color:#fff;color:#68acec}.tyre-wizard .info-box{position:relative;height:180px;display:flex;align-items:flex-end;justify-content:center;order:2}.tyre-wizard .info-box::after{content:"";display:block;position:absolute;opacity:.4;top:0;left:0;bottom:0;right:0;background:no-repeat url("/assets/img/kfzteile_net/tyre-masked-63d57b66dd6a80ac3e212da55449ae21.png") center bottom;background-size:550px}.tyre-wizard .info-box .hint{color:#fff;margin:0 10px 20px 10px}.tyre-wizard .info-box .hint .label{font-size:1em;text-align:center;margin-bottom:5px;text-transform:uppercase;font-weight:bold;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tyre-wizard .info-box .hint .value{font-size:1.7em;text-align:center;font-weight:bold}@media screen and (min-width: 770px){.tyre-wizard{margin-top:50px}}@media screen and (max-width: 660px){.tyre-wizard .caption{margin:15px 0 0 0}.tyre-wizard .dropdown-panel{height:auto;padding-top:0;padding-left:5px}.tyre-wizard .dropdown-panel .wrapper{width:100%;float:none;padding-right:5px}.tyre-wizard .dropdown{height:40px}.tyre-wizard .search-button-wrapper{height:auto;width:100%;padding:5px}.tyre-wizard .info-box{height:110px;order:0}.tyre-wizard .info-box .hint{margin-left:2px;margin-right:2px}.tyre-wizard .info-box .hint .label{font-size:1em;width:70px}.tyre-wizard .info-box .hint .value{font-size:1.4em}.tyre-wizard .info-box::after{background-size:300px}}@media screen and (max-width: 479px){.tyre-wizard .info-box .hint .label{font-size:.8em;width:45px}.tyre-wizard .info-box .hint .value{font-size:1.2em}}.category-menu{top:0;z-index:7;-webkit-user-select:none;user-select:none}@media screen and (min-width: 992px){.category-menu{height:100%}}.category-menu>span{position:relative;display:block;width:45%;height:3px;margin:0 auto 4px;background:#fff;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}@media screen and (min-width: 992px){.category-menu>span{display:none}}.category-menu>span:nth-last-child(2){transform-origin:0 100%;margin-bottom:0}.category-menu .filled-arrow{transform:rotate(180deg);border-bottom-color:#fff;margin:0 0 0 10px}.category-menu-toggle-title{cursor:pointer;position:relative;display:none;align-items:center;height:100%;width:180px;justify-content:center;text-transform:uppercase;font-size:1.6rem;font-weight:500;color:#fff}@media screen and (min-width: 992px){.category-menu-toggle-title{display:flex}}.category-menu #toggle{height:100%;cursor:pointer;position:absolute;right:0;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 !important}}.category-menu ul{margin:0}.drop-menu{position:absolute;left:0;top:60px;right:0;list-style-type:none;background-color:rgba(0,0,0,0);padding:0;box-shadow:1px 7px 10px rgba(0,0,0,.2)}@media screen and (max-width: 991px){.drop-menu{transform:translate(0, -100%);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:#fff;top:0}}@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,.drop-menu span{margin:0;line-height:20px;letter-spacing:0;font-size:1.4rem;display:block;padding:0 10px;color:#2a5e9c;cursor:pointer}.drop-menu label{font-weight:bold;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__encoded-link{background:rgba(0,0,0,0)}.drop-menu .sub-menu{top:0;height:100%;opacity:.95;columns:auto;padding:0}@media screen and (max-width: 991px){.drop-menu .sub-menu{margin:0 10px}}.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 #dcdcdc}.drop-menu .sub-menu li:last-child{border-bottom:1px solid #dcdcdc}}.drop-menu>li{tab-index:1;background-color:#fff}.drop-menu>li:first-child label{padding-top:25px}.drop-menu>li:last-child label{padding-bottom:25px}.category-menu span:first-child{transform-origin:0 0}.category-menu #toggle{display:block}.category-menu #toggle:checked~label{background-color:#fff;color:#2a5e9c}.category-menu #toggle:checked~label .filled-arrow{transform:none;border-bottom-color:#2a5e9c}@media screen and (max-width: 991px){.category-menu #toggle:checked~.drop-menu{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 #toggle:checked~.drop-menu{display:block}}.category-menu input:checked~span{opacity:1;background:hsl(0,0%,53.5%);transform:rotate(45deg) translate(1px, 0px)}.category-menu input:checked~span:nth-last-child(3){opacity:0;transform:rotate(0deg) scale(0.2, 0.2)}.category-menu input:checked~span:nth-last-child(2){transform:rotate(-45deg) translate(-1px, 3px)}@media screen and (min-width: 992px){.drop-menu a,.drop-menu label,.drop-menu span{font-size:1.35rem}}.drop-menu a:hover,.drop-menu label:hover,.drop-menu span:hover{color:#2a5e9c;text-decoration:underline}@media screen and (max-width: 991px){.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;text-decoration:underline}}@media screen and (min-width: 992px){.drop-menu .sub-menu{padding-top:15px;display:none}}@media screen and (min-width: 992px){.drop-menu .sub-menu{position:absolute;background-color:#eaeaea}}@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%}}.page-title-wrapper{display:flex;align-items:center;overflow:hidden;padding:0 5%}@media screen and (min-width: 770px){.page-title-wrapper{height:300px}}.page-title{margin:0px;font-size:4em;text-transform:lowercase}.sidebar__panel-title{flex-grow:1;color:#2364aa;font-weight:normal;font-size:1.6rem;text-transform:uppercase;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sidebar__panel-heading{padding:10px 0}.sidebar__panel-heading__arrow{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='none' stroke='%232364aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-chevron-down'%3E%3Cpath d='m6 9 6 6 6-6'%2F%3E%3C%2Fsvg%3E");background-repeat:no-repeat;background-position:center center;width:18px;height:18px}.sidebar__filter-item{color:#000}.badge{color:#fff;background-color:#2364aa}.overlay{background-color:rgba(0,25,49,.9)}.shipment{font-size:1.1rem;font-style:normal}.shipment>div{height:14px;line-height:14px}.no-results-alert{background-color:#eaeaea;line-height:20px;padding:10px}@media screen and (min-width: 770px){.no-results-alert{padding:10px 0}}.no-results-alert strong{white-space:nowrap}.typeahead__container.result .input-group input{border-bottom-left-radius:0}.typeahead__container.result .input-group button{border-bottom-right-radius:0}.typeahead__container .typeahead__list{box-shadow:none}@media screen and (min-width: 1200px){.seasonal-highlights .carousel-btn{display:none}}.seasonal-highlights .carousel-tile{width:100%}@media screen and (min-width: 480px){.seasonal-highlights .carousel-tile{width:50%}}@media screen and (min-width: 661px){.seasonal-highlights .carousel-tile{width:50%}}@media screen and (min-width: 770px){.seasonal-highlights .carousel-tile{width:33.3333333333%}}@media screen and (min-width: 992px){.seasonal-highlights .carousel-tile{width:33.3333333333%}}@media screen and (min-width: 1200px){.seasonal-highlights .carousel-tile{width:20%}}@media screen and (min-width: 1200px){.tyre-highlights .carousel-btn{display:none}}.tyre-highlights .carousel-tile{width:100%}@media screen and (min-width: 480px){.tyre-highlights .carousel-tile{width:50%}}@media screen and (min-width: 661px){.tyre-highlights .carousel-tile{width:33.3333333333%}}@media screen and (min-width: 770px){.tyre-highlights .carousel-tile{width:25%}}@media screen and (min-width: 992px){.tyre-highlights .carousel-tile{width:25%}}@media screen and (min-width: 1200px){.tyre-highlights .carousel-tile{width:16.6666666667%}}.tyre-highlights .carousel-tile-content-description{padding-bottom:16px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;width:12.5em}.top-queries{margin-right:auto;margin-left:auto}.top-queries .carousel-btn{top:calc(50% + 20px)}.top-queries .carousel-content{background-color:rgba(0,0,0,0)}.top-queries .carousel-tile{padding:0 10px;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.3333333333%}}@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.6666666667%}}.top-queries .carousel-tile-content{background-color:#fff;padding:10px;max-width:100%;font-size:14px;line-height:1.2}.top-queries .carousel-tile-content-text{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.top-queries .carousel-tile-content-price{font-size:2rem}.carousel-btn{top:calc(50% - 6px)}.carousel-title{color:#4a4a4a;font-size:2.5rem;letter-spacing:.1rem;margin:0;padding:24px 0;text-align:center;text-transform:uppercase}.carousel-tile{text-align:center}.carousel-tile-content{letter-spacing:.05rem;font-weight:bold;font-size:2.25rem}.carousel-tile-content-text{color:#2364aa;height:1.5em}.carousel-tile-content-price{color:#a31621;margin-bottom:16px;height:1em;font-size:2.25rem}.responsive-grid__cell .tile-text{color:#2364aa;font-weight:bold}.responsive-grid__cell .price{color:#a31621;font-size:2rem}.responsive-grid__category{display:grid;grid-template-columns:1fr;grid-gap:8px}@media screen and (min-width: 661px)and (max-width: 770px){.responsive-grid__category{grid-template-columns:1fr 1fr}}@media screen and (min-width: 770px)and (max-width: 992px){.responsive-grid__category{grid-template-columns:1fr 1fr 1fr}}@media screen and (min-width: 992px)and (max-width: 1200px){.responsive-grid__category{grid-template-columns:1fr 1fr 1fr}}@media screen and (min-width: 1200px){.responsive-grid__category{grid-template-columns:1fr 1fr 1fr 1fr}}.product-offer__price-label--best-total-price{color:#a31621;border:1px solid #a31621}.price--best-total{color:#a31621}.editorial-text{width:100%}.editorial-text__title{color:#2364aa}@media screen and (min-width: 1200px){.editorial-text--teaser{padding-left:15px}}.contact{background-color:#fff}.contact__content{padding:10px 50px}.contact .contact-shops{text-align:center}.contact .error-box{border:1px solid #d60404;padding:10px;text-align:center;max-width:705px}.contact .success-box{border:1px solid #22874c;padding:10px;text-align:center;max-width:705px}.contact input[type=radio]{position:absolute;opacity:0;display:inline-block}.contact input[type=radio]:focus+label:before{outline:none;border-color:#2364aa}.contact input[type=radio]:disabled+label:before{box-shadow:inset 0 0 0 4px #fff;border-color:#919191;background:#919191}.contact input[type=radio]+label:empty:before{margin-right:0}.contact input[type=text],.contact input[type=email],.contact select,.contact textarea{width:100%;padding:5px 10px;margin:8px 0;display:inline-block;border:1px solid #919191;box-sizing:border-box;max-width:705px}.contact textarea{min-height:200px}.contact .form-label{font-weight:bold;display:block;margin:10px 0 0 0}.contact .radio-box{border:1px solid #919191;display:inline-block;margin:10px 10px 0 0;padding:6px 5px 4px 5px;min-width:250px;text-decoration:none;color:#000}.contact .radio-box:before{content:"";display:inline-block;border:1px solid hsl(0,0%,10%);vertical-align:middle;margin-bottom:2px;border-radius:100%;height:20px;width:20px;z-index:1;transition:border .25s linear;-webkit-transition:border .25s linear;margin-right:5px;cursor:pointer}.contact .radio-box--selected:before{background-color:#2364aa;box-shadow:inset 0 0 0 4px #fff}.dsa-wrapper{margin:15px 0 15px 0;display:flex;flex-direction:column;width:100%;align-items:center}.dsa-wrapper>.pagination{margin:0;width:100%;display:flex;justify-content:center}.dsa-wrapper>#dsa-modal-trigger{margin-bottom:16px;order:-1;font-size:13px;font-weight:500;padding:10px}@media screen and (min-width: 992px){.dsa-wrapper{flex-direction:row;justify-content:space-between;align-items:center;flex-wrap:nowrap}.dsa-wrapper>.pagination{flex-grow:1;flex-basis:0;order:0}.dsa-wrapper>#dsa-modal-trigger{margin-bottom:0;order:1;margin-left:auto}}.dsa-template.remodal{padding:0;max-width:400px;border-radius:4px}.dsa-modal__container{display:block;flex-direction:column;width:100%;align-items:center}.dsa-modal__header{padding:17px;border-bottom:1px solid #d3d3d3}.dsa-modal__header>*:first-child{right:0;left:auto}.dsa-modal__content{padding:15px}.dsa-modal__buttons{padding:25px;display:flex;flex-direction:column;align-items:center;gap:10px}.dsa-modal__buttons .action-button{width:250px;text-decoration:none}.dsa-modal__title{font-size:1.5em;padding:0 0 20px 0}.dsa-modal__info-button{background-color:#fff;color:#000}
