/* 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:Lato,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}}.container-colored{background-color:#f3fafe}.container-colored--light{background-color:#e8f6ef;padding:20px 0}.manufacturer-highlights{background-color:#ebebeb;padding:8px 0;white-space:nowrap}.manufacturer-highlights .highlights-content{list-style:none;margin:0 auto;padding:0;overflow-x:scroll;-webkit-overflow-scrolling:touch;-webkit-font-smoothing:antialiased;-ms-overflow-style:none}.manufacturer-highlights .highlights-content::-webkit-scrollbar{display:none}.manufacturer-highlights .highlights-tile{background-color:#ebebeb;display:inline-block;margin:10px;max-width:300px;padding:0 24px;vertical-align:middle;width:unset;overflow:hidden;text-overflow:ellipsis}.manufacturer-highlights .highlights-tile:first-child{padding-left:0}.manufacturer-highlights .highlights-tile:last-child{padding-right:0}.manufacturer-highlights .highlights-tile .tile-content{display:flex;background-color:rgba(0,0,0,0);padding:0}.manufacturer-highlights .highlights-tile .tile-content img{margin:unset;max-height:50px;max-width:unset}.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='black' 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}.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 #000 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:#000;border-color:#000;color:#fff}.price-range__action-button:active,.price-range__action-button:focus{outline:none}#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}.btn{border:1px solid #000;border-radius:5px;color:#000;padding:15px 10px;display:inline-block}.btn__action-button{padding-left:10px;padding-right:10px;border:1px #000 solid;font-weight:400;color:#fff;border-radius:5px;line-height:2.2;background-color:#000;padding:15px 10px;display:inline-block}.btn.inverted{background-color:#000;color:#fff}.btn:hover{background-color:#fff;color:#000}.action-button{padding-left:10px;padding-right:10px;border:1px #000 solid;font-weight:400;color:#fff;border-radius:3px;line-height:2.2;background-color:#000}.action-button:hover,.action-button:active,.action-button:focus{background-color:#000;border-color:#000;color:#fff}.teaser{position:absolute;z-index:-1;top:0;width:100%;height:540px}@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/purefashion_de/header-with-teaser/image-1x-5edcdb10351ebdc88b234f16513145de.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/purefashion_de/header-with-teaser/image-2x-1fa3b9d764a0de65bd0dfc643abd25b1.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/purefashion_de/header-with-teaser/image-2x-1fa3b9d764a0de65bd0dfc643abd25b1.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/purefashion_de/header-with-teaser/image-4x-ac69444b79b9356b13d946066dab5a29.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/purefashion_de/header-with-teaser/image-4x-ac69444b79b9356b13d946066dab5a29.webp")}}.teaser{background-repeat:no-repeat;background-position:top center;background-size:cover}@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/purefashion_de/header-with-teaser/christmas/image-1x-5edcdb10351ebdc88b234f16513145de.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/purefashion_de/header-with-teaser/christmas/image-2x-1fa3b9d764a0de65bd0dfc643abd25b1.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/purefashion_de/header-with-teaser/christmas/image-2x-1fa3b9d764a0de65bd0dfc643abd25b1.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/purefashion_de/header-with-teaser/christmas/image-4x-ac69444b79b9356b13d946066dab5a29.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/purefashion_de/header-with-teaser/christmas/image-4x-ac69444b79b9356b13d946066dab5a29.webp")}}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}}.top-section{clear:both}.search-query-block{line-height:25px;padding-bottom:25px}.search-query-block-item a{color:#777}.section-title{color:hsl(0,0%,13.5%);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:hsl(0,0%,13.5%)}.carousel-cell{border-bottom:0;counter-increment:carousel-cell;display:inline-block;width:150px}.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,.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:#000}.carousel-slider .top-section-no-js{overflow-y:unset}.carousel-slider .carousel-cell{scroll-snap-align:start}.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}#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}.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:hsl(0,0%,5%)}.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:#ed233c;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 (min-width: 770px){.legal-hint-popover h3{padding-top:0}}.legal-hint-popover{position:fixed;z-index:10;bottom:0;left:0;right:0;padding:15px}@media screen and (min-width: 770px){.legal-hint-popover{padding:30px}}.legal-hint-popover{display:none;opacity:.88;background-color:#000;color:#fff}.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}.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 #000 solid;font-weight:500;color:#fff;border-radius:3px;line-height:2.2;background-color:#000;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}.btn-group>.btn{position:relative;float:left;background-color:#fff}.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:#000;border:1px solid #000}.results{display:flex;flex-wrap:wrap;align-items:stretch}.results .content.grid-cell{z-index:0;display:flex;flex-direction:column;gap:10px;margin-bottom:10px}@media screen and (min-width: 770px){.results{margin-top:10px}}.toolbar{display:flex;align-items:end;gap:3px}@media screen and (max-width: 769px){.toolbar{padding-left:10px;padding-right:10px}}.toolbar h1{font-size:16px;line-height:16px;margin:0 4px 0 0;font-weight:bold;text-transform:capitalize;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.toolbar .ranking-link{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-info-icon lucide-info'%3E%3Ccircle cx='12' cy='12' r='10'%2F%3E%3Cpath d='M12 16v-4'%2F%3E%3Cpath d='M12 8h.01'%2F%3E%3C%2Fsvg%3E");background-size:contain;width:16px;height:16px;cursor:pointer}@media screen and (min-width: 770px){.toolbar h1{font-size:20px;line-height:20px}.toolbar .ranking-link{width:18px;height:18px}}.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='%23000' 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{padding-left:10px;padding-right:10px;margin:0;padding-top:10px;height:30px;background-color:#fff}.breadcrumb>li.category{display:none}.breadcrumb>li.category:nth-last-of-type(2),.breadcrumb>li.category:nth-last-of-type(1){display:inline-block}}.breadcrumb>li{display:inline-block;text-wrap:nowrap}.breadcrumb>li.current{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.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}.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='%23ED233C' 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:#ed233c;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 #000 solid;font-weight:400;color:#fff;border-radius:3px;line-height:2.2;background-color:#000;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}}@media screen and (min-width: 770px){.sidebar-content{border-radius:8px}}.sidebar-content{padding:10px;background:#fff;margin:0 10px 0 0}@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}@media screen and (min-width: 770px){.sidebar:target .sidebar-close-panel{visibility:hidden}}.sidebar:target .sidebar-close-panel{-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 (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}}.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}.badge{border-radius:5px;margin-left:5px;margin-right:10px;padding:1px 5px}@media screen and (max-width: 769px){.element-container{padding:10px}}.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}.popup .search-button{background:#fff;color:#000;border-left:1px solid #000}.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}.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:hsl(0,0%,53.5%);cursor:pointer}.search-popup-button .icon{height:18px;width:18px}@media screen and (min-width: 320px){.search-popup-button{border-bottom:1px hsl(0,0%,53.5%) 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:60px}}.search-popup{cursor:pointer}.search-popup-button:hover{color:hsl(0,0%,53.5%);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:#000;font-size:1.2em;text-decoration:underline}.product-details-subtitle:hover{color:#000}.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}}.remodal-template{display:none}.remodal-template.voucher-template.remodal-is-opened{display:inline-block}.remodal-template.voucher-template .voucher-container{border:1px dashed #000;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:#000;border:1px solid #000;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='%23000' 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='%23000' 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}}.editorial-text-with-image{display:flex;flex-wrap:wrap;justify-content:center;background-color:#fff}.editorial-text-with-image__shop{text-align:center}.editorial-text-with-image__picture{display:flex;flex-direction:column;justify-content:space-around;background-color:#fff;height:255px}.editorial-text-with-image__picture img{max-height:174px;margin:0 auto;max-width:90%}.editorial-text-with-image__title{flex:1;flex-basis:100%;margin:0;font-size:1.5em;padding-top:10px;padding-bottom:10px;border-bottom:solid 1px hsl(0,0%,92%)}.editorial-text-with-image__block{position:relative;background-color:#fff}.editorial-text-with-image__block img{width:100%}.editorial-text-with-image__block__title{border-bottom:solid 1px hsl(0,0%,92%);display:none;font-size:1.7em;margin:10px 0 0 0;padding-bottom:10px}@media screen and (max-width: 991px){.editorial-text-with-image__picture{height:140px;padding:10px}.editorial-text-with-image__picture img{max-height:90px}}@media screen and (min-width: 992px){.editorial-text-with-image{justify-content:space-between}.editorial-text-with-image__picture{order:2;flex-basis:calc(25% - 10px)}.editorial-text-with-image__block{order:1;flex-basis:75%}.editorial-text-with-image__block__title{display:block}.editorial-text-with-image__title{display:none}}@media screen and (min-width: 1200px){.editorial-text-with-image__picture{flex-basis:calc(20% - 10px)}.editorial-text-with-image__block{flex-basis:80%}}.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%}}.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 #000 solid;font-weight:400;color:#fff;border-radius:3px;line-height:2.2;background-color:#000;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%}}.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:#000;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 #000;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%}}.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:#000;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}.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='%23000' 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='%23000' 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}.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.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%}}.tooltip{position:absolute;visibility:hidden;background:#000;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:#000 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:grid;grid-template-columns:auto 1fr;grid-template-rows:auto auto;column-gap:10px;row-gap:4px;align-items:start;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;column-gap:12px;row-gap:8px}}.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;grid-column:1;grid-row:1/-1;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 .product-title>div:nth-child(2){grid-column:2;grid-row:1;align-self:start;justify-self:start}.product .product-title>.rating-stars-box{grid-column:2;grid-row:2;align-self:start;justify-self:start;margin-top:2px}.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;gap:10px;margin-bottom: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}@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}@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{width:100%}.product-details__price-and-shipment .price{white-space:nowrap;color:#000;font-size:2.4rem;text-align:right}.product-details__price-and-shipment .shipment-time{font-size:13px;text-align:right;color:#000500}.product-details__price-and-shipment{margin-top:10px;margin-bottom:10px}.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}@media screen and (min-width: 770px){.product-details .btn{display:block}}.product-details .btn{font-size:1.2em;font-weight:bold;width:100%;padding:6px}.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}.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}}.product-offer{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}@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:#000}.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}.rating-stars-box{--tile: 15px;--value: 0%;gap:.5rem;display:inline-flex;align-items:center;white-space:nowrap}.rating-stars-box .rating-stars{position:relative;display:inline-block;font-size:var(--tile);width:5em;height:1em}.rating-stars-box .rating-stars::before,.rating-stars-box .rating-stars::after{content:"";position:absolute;inset:0;background-repeat:repeat-x;background-size:1em 1em;-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' viewBox='0 0 28 24' aria-hidden='true'%3E%3Cg transform='translate%282 0%29'%3E%3Cpath fill='%23000' d='M12 0 L14.833 9.167 L24 9.167 L16.584 14.833 L19.416 24 L12 18.334 L4.584 24 L7.416 14.833 L0 9.167 L9.167 9.167 Z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' viewBox='0 0 28 24' aria-hidden='true'%3E%3Cg transform='translate%282 0%29'%3E%3Cpath fill='%23000' d='M12 0 L14.833 9.167 L24 9.167 L16.584 14.833 L19.416 24 L12 18.334 L4.584 24 L7.416 14.833 L0 9.167 L9.167 9.167 Z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");-webkit-mask-repeat:repeat-x;mask-repeat:repeat-x;-webkit-mask-size:1em 1em;mask-size:1em 1em;pointer-events:none}.rating-stars-box .rating-stars::before{background-color:#9b9b9b}.rating-stars-box .rating-stars::after{background-color:#ea7317;width:var(--value);overflow:hidden}.rating-stars-box .rating-text{font-size:.8em}.filter-bar{background:#fff;display:flex;gap:5px;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:14px;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 #000}.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='%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")}.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")}.cookie-preferences__link{text-decoration:underline;color:#777;cursor:pointer}.editorial-text{width:auto;line-height:1.6}.editorial-text--teaser>p{margin:0}@media screen and (max-width: 479px){.editorial-text--teaser{display:none}}.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:#000;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 #000}.editorial-text table tbody tr.active-row,.faq table tbody tr.active-row{font-weight:bold;color:#000}.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='%23000' 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='%23000' 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}.breadcrumb{font-size:.85em;font-weight:400;padding-top:0}.breadcrumb li.current span{color:#000}.breadcrumb__encoded-link{color:#000}.breadcrumb>li+li:before{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)}.pagination .page.disabled span{border-radius:0;border-color:rgba(0,0,0,0);background-color:#ed233c;color:#fff}.pagination .page.disabled span:hover{color:#fff}@media screen and (max-width: 769px){.sidebar-content{max-height:calc(100% - 55px)}}.sidebar__panel-body,.sidebar__panel-heading{padding-right:0;padding-left: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='%23ED233C' 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__panel-title{flex-grow:1;color:#000;text-transform:capitalize;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sidebar .noUi-horizontal{margin-left:10px;margin-right:10px}@media screen and (max-width: 769px){.text-container{padding:20px;text-align:left}}body{background-color:#fff;font-family:Lato,sans-serif;font-size:14px;line-height:1.428571429}.price{color:#ed233c}.divider{margin:10px 0;border-bottom:1px solid hsl(0,0%,92%);box-shadow:0 -2px 5px 0px hsla(0,0%,80%,.62)}footer{background-color:#eaeaea}footer .footer-menu-block{margin-top:10px}footer .footer-menu-block ul li{border-left:1px solid #000}footer .footer-menu-block a,footer .footer-menu-block__encoded-link{color:#000;font-weight:500}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__encoded-link{text-decoration:underline}footer .footer-international-links ul li{border-left:1px solid #000}footer .footer-international-links a{color:#000;font-weight:500}@media screen and (min-width: 770px){footer .search-form-wrapper{padding-top:20px}}@media screen and (max-width: 769px){footer .search-form-wrapper{margin:20px 20px 0 20px}}.tile-content__action-button{border-radius:15px;color:#000;background-color:#fff}.tile-text{color:#0f375f;text-transform:capitalize;font-weight:bold;text-decoration:none}.search-form{margin:30px 0;text-align:center;width:100%}@media screen and (min-width: 770px){.search-form{margin:0}}.search-form form{width:100%;display:inline-block}@media screen and (min-width: 770px){.search-form form{width:448px}}.search-form .input-group{background-color:#fff;opacity:.7;border-radius:2px}.search-form .input-group input{font-size:1.5rem}.search-form .input-group input::placeholder{text-transform:uppercase}.search-form .input-group button{width:44px}.logo{display:block;width:176px;height:75px}.query-highlights{white-space:nowrap;background-color:#d8d8d8;line-height:normal}.query-highlights .container{overflow-x:scroll;-webkit-overflow-scrolling:touch;-webkit-font-smoothing:antialiased;-ms-overflow-style:none}.query-highlights .container::-webkit-scrollbar{display:none}.query-highlights h2{vertical-align:top;display:inline-block;margin:13px 10px 8px 10px;text-transform:uppercase;color:hsl(0,0%,33.5%);line-height:20px;font-size:1.4rem;font-weight:600}@media screen and (min-width: 770px){.query-highlights h2{margin-left:0}}.query-highlights ul{padding:0;margin:0 0 0 10px;list-style:none;display:inline-block}.query-highlights ul li{max-width:300px;margin:13px 10px 8px 10px;display:inline-block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.query-highlights a{font-weight:400;line-height:20px;font-size:1.4rem;color:hsl(0,0%,46.7%);text-transform:uppercase}.about{background-color:#fff}.about .text{text-align:left}.about .title{color:hsl(0,0%,46.7%);font-size:1.3em;font-weight:900;margin-bottom:20px;padding:0;text-transform:uppercase}.about .title small{display:block;font-size:.6em}@media screen and (min-width: 770px){.about .title small{display:inline-block;font-size:1em}.about .title small::before{content:"-";margin:0 8px}}@media screen and (min-width: 770px){.about{margin-top:30px}}.about.text-container{padding:10px}@media screen and (min-width: 770px){.about.text-container{padding:0}}.about.text-container{text-align:left;font-size:1.4rem;color:hsl(0,0%,33.5%);font-weight:100;line-height:22px}.about.text-container p{margin:0 0 10px}.recent-queries{background-color:#fff;padding-bottom:20px}.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:0}.recent-queries .tile-text{color:#0a3761;margin-bottom:0;margin-top:8px;padding-top:8px}.bottom-block .grid-cell{text-align:left}.bottom-block a{color:unset}.action-button{padding-left:10px;padding-right:10px;border:1px #000 solid;font-weight:400;color:#000;border-radius:15px;line-height:2.2;background-color:#fff}.action-button:hover,.action-button:active,.action-button:focus{background-color:#000;border-color:#000;color:#fff}.no-results-alert .message{padding:20px 0;border-bottom:1px solid hsl(0,0%,92%)}@media screen and (max-width: 769px){.no-results-alert .message{padding:10px}}.teaser{height:245px}@media screen and (min-width: 770px){.teaser{height:745px}}.toolbar{padding-top:5px;padding-bottom:5px}.toolbar h1{font-weight:bold;color:#000}.no-results-found .search-form .input-group{background-color:#e8e8e8}@media screen and (min-width: 770px){.element-container{padding-bottom:100px}}.badge{color:#fff;background-color:#000}.header-common .logo{width:129px;height:55px;background-image:url("/assets/img/themes/purefashion_de/small-logo-inverted-1x-4edb88ce481c6318635dd900cbf93a66.png")}@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){.header-common .logo{background-image:url("/assets/img/themes/purefashion_de/small-logo-inverted-2x-64ed7e732dd7a4448a93f574c68467f1.png");background-size:129px 55px}}@media screen and (min-width: 1200px){.header-common .logo{width:176px;height:75px;background-image:url("/assets/img/themes/purefashion_de/logo-inverted-1x-b15ddef77174109160da1133f0d5dd14.gif")}}@media only screen and (min-width: 1200px)and (-webkit-min-device-pixel-ratio: 2),only screen and (min-width: 1200px)and (min--moz-device-pixel-ratio: 2),only screen and (min-width: 1200px)and (-o-min-device-pixel-ratio: 2/1),only screen and (min-width: 1200px)and (min-device-pixel-ratio: 2),only screen and (min-width: 1200px)and (min-resolution: 192dpi),only screen and (min-width: 1200px)and (min-resolution: 2dppx){.header-common .logo{background-image:url("/assets/img/themes/purefashion_de/logo-inverted-2x-4021abb5226950a5a3c4464cc500a16a.gif");background-size:176px 75px}}.header-index{position:relative}.header-index .navbar{position:relative}.header-index .logo{background-image:url("/assets/img/themes/purefashion_de/logo-1x-57f58a4f650e77ad6e516ec29a77a42a.gif")}@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){.header-index .logo{background-image:url("/assets/img/themes/purefashion_de/logo-2x-3e7d2509e835e701d3ffef62f1b481e2.gif");background-size:176px 75px}}.header-index .category-menu label{color:#fff}.header-index .category-menu span{background:#fff}.category-menu{-webkit-user-select:none;user-select:none;z-index:3}.category-menu #toggle{cursor:pointer;display:none;height:100%;margin:0;opacity:0;position:absolute;right:5px;top:0;-webkit-touch-callout:none;width:50px;z-index:5}.category-menu a,.category-menu label{margin:0;font-weight:100;line-height:40px;letter-spacing:0;font-size:1.25rem;text-transform:uppercase;display:block;padding:0 7px;color:#bbb}@media screen and (min-width: 1200px){.category-menu a,.category-menu label{font-size:1.35rem}}.category-menu ul{margin:0}.category-menu .sub-menu.sub-menu-large{columns:2;column-gap:0}@media screen and (max-width: 1199px){.category-menu #toggle{display:block}.category-menu span{display:block;width:45%;height:3px;margin:0 auto 4px;position:relative;background:#000;border-radius:3px;z-index:4;transform-origin:2px 0;transition:transform .5s cubic-bezier(0.77, 0.2, 0.05, 1),background .5s ease-in-out}.category-menu span:nth-last-child(2){transform-origin:0 100%;margin-bottom:0}.drop-menu{overflow-x:scroll;-webkit-overflow-scrolling:touch;-webkit-font-smoothing:antialiased;-ms-overflow-style:none}.drop-menu::-webkit-scrollbar{display:none}.drop-menu{z-index:3;position:absolute;top:0;right:0;padding:15px 20px 20px;list-style-type:none;background-color:#000;opacity:0;transform-origin:0 0;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}}@media screen and (max-width: 1199px)and (max-width: 479px){.drop-menu{right:0;left:0;width:auto}}@media screen and (max-width: 1199px){.drop-menu li{overflow:hidden;padding:5px 0;display:block}.drop-menu li>ul{display:block}.drop-menu label{color:#fff;cursor:pointer}.category-menu .toggle{display:none}.category-menu .sub-menu{max-height:0;transition:max-height .5s;position:relative;top:0}.category-menu .sub-menu li{width:auto}.toggle~.sub-menu{transition:max-height .5s ease-in;max-height:0}}@media screen and (min-width: 1200px){.category-menu input{display:none}.category-menu label{color:#000}.category-menu ul{padding:0;list-style:none;position:relative}.category-menu ul li{display:inline-block;position:relative}.category-menu ul li:last-child ul{right:0}.category-menu ul li a,.category-menu ul li label{display:block}.category-menu ul ul{top:40px;display:none;position:absolute;z-index:1000}.category-menu ul ul li{width:250px;float:none;display:list-item;position:relative}.category-menu ul ul li a,.category-menu ul ul li label{padding-left:25px;text-transform:none;font-weight:100}.category-menu ul ul ul li{position:relative;top:-60px;left:170px}}.category-menu a:hover,.category-menu label:hover{color:#fff}.teaser .category-menu span{background:#fff}@media screen and (max-width: 1199px){.category-menu span:first-child{transform-origin:0 0}.category-menu input:checked~span{opacity:1;background:#fff;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)}.category-menu input: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}.toggle:checked~.sub-menu{transition:max-height .5s ease-in;max-height:1000px}}@media screen and (min-width: 1200px){.category-menu ul li:hover>ul{display:inherit}.category-menu ul li:hover a,.category-menu ul li:hover label{background-color:rgba(0,0,0,.92)}.category-menu ul li:hover label{color:#fff}}.navbar-nav{position:relative;z-index:5;width:100%;align-items:center;display:flex;flex-wrap:nowrap}@media screen and (min-width: 1200px){.navbar-nav{align-items:flex-end}}.navbar-nav-logo{justify-content:left;margin-right:16px;flex-grow:1}@media screen and (min-width: 1200px){.navbar-nav-logo{flex-grow:0}}@media screen and (min-width: 1200px){.navbar-nav{flex-basis:100%}}.navbar-nav .category-menu{order:2;text-align:left;width:58px}@media screen and (min-width: 1200px){.navbar-nav .category-menu{flex-grow:1;justify-content:flex-start;order:1;padding:0}}.navbar-nav .search-popup-button{order:1;text-decoration:none}@media screen and (min-width: 1200px){.navbar-nav .search-popup-button{order:2}}.page-title{text-transform:uppercase}@media screen and (max-width: 991px){.page-title{font-size:7.1rem}}@media screen and (min-width: 1200px){.search-popup-button{margin-bottom:10px}}.top-section{background-color:#fff}.top-queries{margin:0;background-color:#fff}.top-queries .carousel{padding-bottom:20px}.top-queries .carousel-tile{width:50%}@media screen and (min-width: 480px){.top-queries .carousel-tile{width:33.3333333333%}}@media screen and (min-width: 661px){.top-queries .carousel-tile{width:25%}}@media screen and (min-width: 770px){.top-queries .carousel-tile{width:20%}}@media screen and (min-width: 992px){.top-queries .carousel-tile{width:16.6666666667%}}@media screen and (min-width: 1200px){.top-queries .carousel-tile{width:12.5%}}.top-queries .carousel-tile-content{text-align:center}.top-queries .carousel-tile-content-text{overflow:hidden;font-size:14px;line-height:1.2;-webkit-line-clamp:2;-webkit-box-orient:vertical;color:#0a3761;margin:8px 0 0;padding-top:8px;font-weight:bold}.top-queries .carousel-tile-content-price{font-size:1.7rem;color:#ed233c}.product-offer__price-label--best-price{color:#000;border:1px solid #000}.product-offer__price-label--best-total-price{color:#ed233c;border:1px solid #ed233c}.price--best{color:#000}.price--best-total{color:#ed233c}.editorial-text{width:100%}.editorial-text__title{color:#777}@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:#000}.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:#000;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}
