/* 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;
}

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-colored{background-color:#f3fafe}.container-colored--light{background-color:#e8f6ef;padding:20px 0}.search-form-footer{margin:20px 20px 0 20px}.search-form-footer-enabled{display:block}.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.inverted{background-color:#2364aa;color:#fff}.btn:hover{background-color:#fff;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}.tile-content:hover{text-decoration:none}.tile-content__action-button:hover{text-decoration:none;background-color:#22874c;border-color:#22874c;color:#fff}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}}.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 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-item:hover{text-decoration:underline}.encoded-link:hover{color:#515151;text-decoration:underline}.encoded-link:hover,.encoded-link:active{outline:0}.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}.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}}.sidebar .noUi-horizontal .noUi-handle:focus,.sidebar .noUi-horizontal .noUi-handle:active{outline:none}.arrow.left{transform:rotate(135deg)}@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 .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}.toolbar .breadcrumb{flex-shrink:1;flex-basis:100%}.filters-bar{background:#fff;padding:8px 12px;margin-bottom:1px}.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:#000;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}}.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}.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-content{text-align:center;padding:0 10px 10px}.popup .search-box{margin:0 auto;width:100%}.popup .search-box .search-input{z-index:3}.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 .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}}.editorial-text-with-image{display:flex;flex-wrap:wrap;justify-content:center;margin:10px 0;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-popup{cursor:pointer}.search-popup-button:hover{color:#fff;text-decoration:unset}.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}@media screen and (max-width: 991px){.teaser~header{background-color:rgba(0,0,0,0)}}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}}.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}}.action-button:hover,.action-button:active,.action-button:focus{background-color:#2364aa;color:#fff}.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%}}.badge{color:#fff;background-color:#2364aa}.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}}.tile-content__action-button:hover{text-decoration:none;background-color:#fff;border-color:#2364aa;color:#2364aa}
