﻿/*$branding: map-merge($branding, (
    primary: #0d2777,
    primary-alt: #284ab3,
    primary-font-color: #fff,
    secondary: #0d2777,
    secondary-alt: #0b2267,
    secondary-font-color: #fff,
    tertiary: #3f5798,
    tertiary-alt: #354c89,
    tertiary-font-color: #fff,
    accent: #ffce00,
    accent-alt: #fdbf10,
    accent-font-color: map-get($font-colors, 'heading'),
    offset: #f4f5f9,
    offset-alt: #e5e7ed,
    offset-font-color: map-get($font-colors, 'body')
));*/
/*$box-shadows: map-merge($box-shadows, (
    card: 0 2px 6px 0 rgba(0,0,0,.08),
    content-top: 0 -2px 6px 0 rgba(0,0,0,.08),
    content-inset: inset 16px 46px 16px -46px rgba(32,76,136,0.15)  
));*/
/*$blog: map-merge($blog, ( 
    grid-max-width: 1231px,
    grid-gutter: 2rem
));*/
/*$cards: map-merge($cards, (
    padding-x: $grid-gutter-gap,
    padding-y: $grid-gutter-gap,
    border-color: $border-color,
    border-radius: $border-radius,
    border-radius-inner : $border-radius-inner,
    box-shadow: map-get($box-shadows, 'card'),
    bavkground-color: #fff
));*/
html {
  width: 100%;
  font-size: 10px;
  font-weight: 400;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

/*@media (max-width: maxGridBreakpoint(map-get($grid-breakpoints, 'lg'))) {
    html {
        font-size: 9px;
    }
}*/
body {
  width: 100%;
  margin: 0;
  font-family: "Poppins", "poppins-fallback", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8;
  color: #333;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  /*overflow-x: hidden;*/
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

::selection {
  color: #fff;
  background-color: #03217D;
}

::-moz-selection {
  color: #fff;
  background-color: #03217D;
}

::-o-selection {
  color: #fff;
  background-color: #03217D;
}

::-ms-selection {
  color: #fff;
  background-color: #03217D;
}

::-webkit-selection {
  color: #fff;
  background-color: #03217D;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

a {
  color: #333;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: middle;
}

section {
  padding-top: 24px;
  padding-bottom: 24px;
}

.container {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
}

.container {
  max-width: 1408px;
}

.container-alt {
  max-width: 1530px;
  padding: 0;
}

.hyperlinks a {
  font-weight: bold;
  text-decoration: underline;
  color: #03217D;
}

.d-block {
  display: block !important;
}

.d-none {
  display: none !important;
}

.fl-l {
  float: left !important;
}

.fl-r {
  float: right !important;
}

.fl-0 {
  float: none !important;
}

.txt-left {
  text-align: left !important;
}

.txt-right {
  text-align: right !important;
}

.txt-cen {
  text-align: center !important;
}

.txt-und {
  text-decoration: underline !important;
}

.fw-b {
  font-weight: 700 !important;
}

.fw-sb {
  font-weight: 500 !important;
}

.lh-1 {
  line-height: 1rem !important;
}

.lh-2 {
  line-height: 2rem !important;
}

.lh-3 {
  line-height: 3rem !important;
}

.lh-4 {
  line-height: 4rem !important;
}

.br, .br img {
  border-radius: 6px;
}

.br-0 {
  border-radius: 0 !important;
}

hr {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  height: 1px;
  background: #f4f5f9;
  border: none;
}

.cc {
  float: left;
  width: 24px;
  height: 24px;
  padding: 2px;
  margin-right: 5px;
  border-radius: 50%;
  border: 2px solid #e4e4e4;
}

.cc-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  float: left;
}

.cc-Cream {
  background: #dbd7d1;
}

.cc-Blue {
  background: #193b51;
}

.cc-Grey {
  background: #6c757d;
}

.cc-Black {
  background: #000;
}

.cc-White {
  background: #fff;
}

.cc-Green {
  background: #198754;
}

.cc-Pink {
  background: #d63384;
}

.cc-Yellow {
  background: #ffcf57;
}

.cc-Purple {
  background: #6f42c1;
}

.cc-Red {
  background: #dc3545;
}

.cc-Brown {
  background: #6c4f46;
}

.cc-Bronze {
  background: #926d62;
}

.cc-Silver {
  background: #efefef;
}

.cc-Orange {
  background: #fd7e14;
}

.cc-Natural {
  background: #d6d4cb;
}

@keyframes placeHolderShimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(200%);
  }
}
.loading, .loading-block {
  position: relative;
  overflow: hidden;
}

.loading-block {
  color: #f4f5f9 !important;
  background: #f4f5f9 !important;
}

.loading .loading-block:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  background: #f4f5f9;
  background: linear-gradient(90deg, #f4f5f9 0%, #e4e4e4 50%, #f4f5f9 100%);
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .d-md-show {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .br-lg, .br-lg img {
    border-radius: 0px;
  }
  .container,
  .container-fluid {
    padding-left: 22px;
    padding-right: 22px;
  }
  .container-alt {
    padding: 0;
  }
  .d-lg-show {
    display: none !important;
  }
}
@media (max-width: 1199px) {
  .br-xl, .br-xl img {
    border-radius: 0px;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .content-blocks-container {
    max-width: 930px;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
}
.trade-menu-override {
  display: flex !important;
}

.trade-icon-override {
  display: none !important;
}

@media (min-width: 1300px) {
  .trade-menu-override {
    display: none !important;
  }
  .trade-icon-override {
    display: flex !important;
  }
}
@media (max-width: 991px) {
  /*    .trade-menu-override, .trade-icon-override {
      display:none !important
  }*/
}
.align-items-center {
  align-items: center !important;
}

.align-items-start {
  align-items: start !important;
}

.align-items-end {
  align-items: end !important;
}

.align-items-center-vertical {
  display: flex;
  justify-content: center;
  align-self: center;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-items-center {
  justify-items: center !important;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-dir-col {
  flex-direction: column;
}

.flex-dir-row {
  flex-direction: row !important;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-dir-col {
  flex-direction: column;
}

.flex-dir-row {
  flex-direction: row !important;
}

@media (min-width: 576px) {
  .flex-sm {
    display: flex;
  }
  .flex-wrap-sm {
    flex-wrap: wrap;
  }
  .flex-dir-col-sm {
    flex-direction: column;
  }
  .flex-dir-row-sm {
    flex-direction: row !important;
  }
}
@media (min-width: 768px) {
  .flex-md {
    display: flex;
  }
  .flex-wrap-md {
    flex-wrap: wrap;
  }
  .flex-dir-col-md {
    flex-direction: column;
  }
  .flex-dir-row-md {
    flex-direction: row !important;
  }
}
@media (min-width: 992px) {
  .flex-lg {
    display: flex;
  }
  .flex-wrap-lg {
    flex-wrap: wrap;
  }
  .flex-dir-col-lg {
    flex-direction: column;
  }
  .flex-dir-row-lg {
    flex-direction: row !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl {
    display: flex;
  }
  .flex-wrap-xl {
    flex-wrap: wrap;
  }
  .flex-dir-col-xl {
    flex-direction: column;
  }
  .flex-dir-row-xl {
    flex-direction: row !important;
  }
}
/*Fallback Font*/
@font-face {
  font-family: "poppins-fallback";
  size-adjust: 106.66%;
  src: local(arial);
}
@font-face {
  font-family: "poppins-fallback";
  size-adjust: 106.66%;
  font-weight: 700;
  letter-spacing: 0.2px;
  word-spacing: 0.6px;
  src: local(arial);
}
/*@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}*/
/*// Montserrat Thin 
@font-face {
    font-family: "Montserrat";
    font-weight: 100;
    font-style: normal;
    font-display: swap;
    font-stretch: normal;
    src: url("/fonts/Montserrat-Thin.woff2") format("woff2"),
         url("/fonts/Montserrat-Thin.woff") format("woff"); 
}

// Montserrat Thin-Italic 
@font-face {
    font-family: "Montserrat";
    font-weight: 100;
    font-style: italic;
    font-display: swap;
    font-stretch: normal;
    src: url("/fonts/Montserrat-ThinItalic.woff2") format("woff2"),
         url("/fonts/Montserrat-ThinItalic.woff") format("woff");
}

// Montserrat ExtraLight 
@font-face {
    font-family: "Montserrat";
    font-weight: 200;
    font-style: normal;
    font-display: swap;
    font-stretch: normal;
    src: url("/fonts/Montserrat-ExtraLight.woff2") format("woff2"),
         url("/fonts/Montserrat-ExtraLight.woff") format("woff");
}

// Montserrat ExtraLight-Italic 
@font-face {
    font-family: "Montserrat";
    font-weight: 200;
    font-style: italic;
    font-display: swap;
    font-stretch: normal;
    src: url("/fonts/Montserrat-ExtraLightItalic.woff2") format("woff2"),
         url("/fonts/Montserrat-ExtraLightItalic.woff") format("woff");
}

// Montserrat Light 
@font-face {
    font-family: "Montserrat";
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    font-stretch: normal;
    src: url("/fonts/Montserrat-Light.woff2") format("woff2"),
         url("/fonts/Montserrat-Light.woff") format("woff");
}

// Montserrat Light-Italic 
@font-face {
    font-family: "Montserrat";
    font-weight: 300;
    font-style: italic;
    font-display: swap;
    font-stretch: normal;
    src: url("/fonts/Montserrat-LightItalic.woff2") format("woff2"),
         url("/fonts/Montserrat-LightItalic.woff") format("woff");
}*/
/*@font-face {
    font-family: "Montserrat";
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    font-stretch: normal;
    src: url("/fonts/Montserrat-Regular.woff2") format("woff2"),
         url("/fonts/Montserrat-Regular.woff") format("woff");
}
*/
/*// Montserrat Regular-Italic 
@font-face {
    font-family: "Montserrat";
    font-weight: 400;
    font-style: italic;
    font-display: swap;
    font-stretch: normal;
    src: url("/fonts/Montserrat-Italic.woff2") format("woff2"),
         url("/fonts/Montserrat-Italic.woff") format("woff");
}

// Montserrat Medium 
@font-face {
    font-family: "Montserrat";
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    font-stretch: normal;
    src: url("/fonts/Montserrat-Medium.woff2") format("woff2"),
         url("/fonts/Montserrat-Medium.woff") format("woff");
}

// Montserrat Medium-Italic 
@font-face {
    font-family: "Montserrat";
    font-weight: 500;
    font-style: italic;
    font-display: swap;
    font-stretch: normal;
    src: url("/fonts/Montserrat-MediumItalic.woff2") format("woff2"),
         url("/fonts/Montserrat-MediumItalic.woff") format("woff");
}*/
/*
// Montserrat SemiBold 
@font-face {
    font-family: "Montserrat";
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    font-stretch: normal;
    src: url("/fonts/Montserrat-SemiBold.woff2") format("woff2"),
         url("/fonts/Montserrat-SemiBold.woff") format("woff");
}*/
/*// Montserrat SemiBold-Italic 
@font-face {
    font-family: "Montserrat";
    font-weight: 600;
    font-style: italic;
    font-display: swap;
    font-stretch: normal;
    src: url("/fonts/Montserrat-SemiBoldItalic.woff2") format("woff2"),
         url("/fonts/Montserrat-SemiBoldItalic.woff") format("woff");
}*/
/*@font-face {
    font-family: "Montserrat";
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    font-stretch: normal;
    src: url("/fonts/Montserrat-Bold.woff2") format("woff2"),
         url("/fonts/Montserrat-Bold.woff") format("woff");
}*/
/*// Montserrat Bold-Italic 
@font-face {
    font-family: "Montserrat";
    font-weight: 700;
    font-style: italic;
    font-display: swap;
    font-stretch: normal;
    src: url("/fonts/Montserrat-BoldItalic.woff2") format("woff2"),
         url("/fonts/Montserrat-BoldItalic.woff") format("woff");
}*/
/*@font-face {
    font-family: "Montserrat";
    font-weight: 800;
    font-style: normal;
    font-display: swap;
    font-stretch: normal;
    src: url("/fonts/Montserrat-ExtraBold.woff2") format("woff2"),
         url("/fonts/Montserrat-ExtraBold.woff") format("woff");
}
*/
/*// Montserrat ExtraBold-Italic 
@font-face {
    font-family: "Montserrat";
    font-weight: 800;
    font-style: italic;
    font-display: swap;
    font-stretch: normal;
    src: url("/fonts/Montserrat-ExtraBoldItalic.woff2") format("woff2"),
         url("/fonts/Montserrat-ExtraBoldItalic.woff") format("woff");
}

// Montserrat Black 
@font-face {
    font-family: "Montserrat";
    font-weight: 900;
    font-style: normal;
    font-display: swap;
    font-stretch: normal;
    src: url("/fonts/Montserrat-Black.woff2") format("woff2"),
         url("/fonts/Montserrat-Black.woff") format("woff");
}

// Montserrat Black-Italic 
@font-face {
    font-family: "Montserrat";
    font-weight: 900;
    font-style: italic;
    font-display: swap;
    font-stretch: normal;
    src: url("/fonts/Montserrat-BlackItalic.woff2") format("woff2"),
         url("/fonts/Montserrat-BlackItalic.woff") format("woff");
}*/
p {
  line-height: 1.8;
}

.text-primary {
  color: #03217D;
}

.text-secondary {
  color: #03217d;
}

.text-tertiary {
  color: #40579a;
}

.text-accent {
  color: #C994DD;
}

.text-offset {
  color: #f4f5f9;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 12px;
  padding-left: 12px;
}

@media (max-width: 992px) {
  .row {
    margin-left: -11px;
    margin-right: -11px;
  }
  .row > * {
    padding-left: 11px;
    padding-right: 11px;
  }
}
.col-auto {
  flex: 1;
}

/*@if $enable-cssgrid {
  .grid {
    display: grid;
    grid-template-rows: repeat(var(---bsrows, 1), 1fr);
    grid-template-columns: repeat(var(---bscolumns, 12), 1fr);
    gap: var(---bsgap, 12px);

    @include make-cssgrid();
  }
}*/
.col {
  flex: 1 0 0%;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

/*No Need to add the cols- system*/
.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

/*No Need to add the cols- system*/
.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

/*No Need to add the cols- system*/
.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

/*No Need to add the cols- system*/
.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

/*No Need to add the cols- system*/
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

/*No Need to add the cols- system*/
.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

/*No Need to add the cols- system*/
.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

/*No Need to add the cols- system*/
.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

/*No Need to add the cols- system*/
.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

/*No Need to add the cols- system*/
.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

/*No Need to add the cols- system*/
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

/*No Need to add the cols- system*/
.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  /*No Need to add the cols- system*/
  .cols-sm-1 .col {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  /*No Need to add the cols- system*/
  .cols-sm-2 .col {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  /*No Need to add the cols- system*/
  .cols-sm-3 .col {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  /*No Need to add the cols- system*/
  .cols-sm-4 .col {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  /*No Need to add the cols- system*/
  .cols-sm-5 .col {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  /*No Need to add the cols- system*/
  .cols-sm-6 .col {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  /*No Need to add the cols- system*/
  .cols-sm-7 .col {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  /*No Need to add the cols- system*/
  .cols-sm-8 .col {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  /*No Need to add the cols- system*/
  .cols-sm-9 .col {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  /*No Need to add the cols- system*/
  .cols-sm-10 .col {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  /*No Need to add the cols- system*/
  .cols-sm-11 .col {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  /*No Need to add the cols- system*/
  .cols-sm-12 .col {
    flex: 0 0 auto;
    width: 100%;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  /*No Need to add the cols- system*/
  .cols-md-1 .col {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  /*No Need to add the cols- system*/
  .cols-md-2 .col {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  /*No Need to add the cols- system*/
  .cols-md-3 .col {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  /*No Need to add the cols- system*/
  .cols-md-4 .col {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  /*No Need to add the cols- system*/
  .cols-md-5 .col {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  /*No Need to add the cols- system*/
  .cols-md-6 .col {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  /*No Need to add the cols- system*/
  .cols-md-7 .col {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  /*No Need to add the cols- system*/
  .cols-md-8 .col {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  /*No Need to add the cols- system*/
  .cols-md-9 .col {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  /*No Need to add the cols- system*/
  .cols-md-10 .col {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  /*No Need to add the cols- system*/
  .cols-md-11 .col {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  /*No Need to add the cols- system*/
  .cols-md-12 .col {
    flex: 0 0 auto;
    width: 100%;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  /*No Need to add the cols- system*/
  .cols-lg-1 .col {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  /*No Need to add the cols- system*/
  .cols-lg-2 .col {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  /*No Need to add the cols- system*/
  .cols-lg-3 .col {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  /*No Need to add the cols- system*/
  .cols-lg-4 .col {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  /*No Need to add the cols- system*/
  .cols-lg-5 .col {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  /*No Need to add the cols- system*/
  .cols-lg-6 .col {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  /*No Need to add the cols- system*/
  .cols-lg-7 .col {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  /*No Need to add the cols- system*/
  .cols-lg-8 .col {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  /*No Need to add the cols- system*/
  .cols-lg-9 .col {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  /*No Need to add the cols- system*/
  .cols-lg-10 .col {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  /*No Need to add the cols- system*/
  .cols-lg-11 .col {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  /*No Need to add the cols- system*/
  .cols-lg-12 .col {
    flex: 0 0 auto;
    width: 100%;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  /*No Need to add the cols- system*/
  .cols-xl-1 .col {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  /*No Need to add the cols- system*/
  .cols-xl-2 .col {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  /*No Need to add the cols- system*/
  .cols-xl-3 .col {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  /*No Need to add the cols- system*/
  .cols-xl-4 .col {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  /*No Need to add the cols- system*/
  .cols-xl-5 .col {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  /*No Need to add the cols- system*/
  .cols-xl-6 .col {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  /*No Need to add the cols- system*/
  .cols-xl-7 .col {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  /*No Need to add the cols- system*/
  .cols-xl-8 .col {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  /*No Need to add the cols- system*/
  .cols-xl-9 .col {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  /*No Need to add the cols- system*/
  .cols-xl-10 .col {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  /*No Need to add the cols- system*/
  .cols-xl-11 .col {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  /*No Need to add the cols- system*/
  .cols-xl-12 .col {
    flex: 0 0 auto;
    width: 100%;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
}
.grid-container {
  width: 100%;
  overflow: hidden;
}

.grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
  overflow: hidden;
}

.grid > div, .grid > a {
  padding-left: 12px;
  padding-right: 12px;
}

/*.grid-col {
    flex: auto;
}*/
.grid-xs {
  margin-left: -11px;
  margin-right: -11px;
}

.grid-xs > div, .grid-xs > a {
  padding-left: 11px;
  padding-right: 11px;
}

.grid-auto > div, .grid-auto > a {
  flex: 1 0 auto;
}

.grid-fit-h .grid-col > div,
.grid-fit-h .grid-col > a,
.grid-fit-h .grid-col > article,
.grid-auto .grid-col > div,
.grid-auto .grid-col > a,
.grid-auto .grid-col > article {
  height: 100%;
}

/*.grid-cards {
    margin-left: -($grid-gutter-pad - 4px);
    margin-right: -($grid-gutter-pad - 4px);
}
.grid-cards .grid-col {
    padding-left: ($grid-gutter-pad - 4px);
    padding-right: ($grid-gutter-pad - 4px);
}*/
.grid-cards .grid-col > div,
.grid-cards .grid-col > a,
.grid-cards .grid-col > article {
  width: auto;
  height: 100%;
}

.grid-cards .prd-crd {
  margin-left: 4px;
  margin-right: 4px;
}

/*    .grid-cards .prd-crd-bdy {
        background: map-get($colors, 'offset');
    }*/
.grid-fixed .grid-col {
  flex: 1;
}

.grid-container.centered {
  text-align: center;
}

.grid-container.inline .grid {
  display: inline-flex;
}

.grid-container.scrollable .grid {
  flex-wrap: nowrap;
  overflow-x: auto;
}

.grid-container.scrollable .grid .grid-col {
  margin: 0;
}

@media (max-width: 991px) {
  .grid-overflow {
    width: auto;
    margin-inline: -22px;
  }
  .grid-overflow .scroller-controls {
    margin-inline: 22px;
  }
  .grid {
    margin-left: -11px;
    margin-right: -11px;
  }
  .grid > div, .grid > a {
    padding-left: 11px;
    padding-right: 11px;
  }
  .grid:nth-child(1) {
    padding-left: 22px;
  }
  .grid:nth-last-child(1) {
    padding-right: 22px;
  }
  .grid-cards-fx:nth-child(1) {
    padding-left: 11px;
  }
  .grid-cards-fx:nth-last-child(1) {
    padding-right: 11px;
  }
  .grid-xs {
    margin-left: -6px;
    margin-right: -6px;
  }
  .grid-xs > div, .grid-xs > a {
    padding-left: 6px;
    padding-right: 6px;
  }
  .grid-cards-fx .grid-col {
    width: 316px;
    flex: 0 0 316px;
    width: 276px;
    flex: 0 0 276px;
  }
}
@media (max-width: 575px) {
  .grid-1 {
    flex: 0 0 auto;
    width: 90%;
  }
  .grid-2 {
    flex: 0 0 auto;
    width: 45%;
  }
  .grid-3 {
    flex: 0 0 auto;
    width: 30%;
  }
  .grid-4 {
    flex: 0 0 auto;
    width: 22.5%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .grid-sm-1 {
    flex: 0 0 auto;
    width: 90%;
  }
  .grid-sm-2 {
    flex: 0 0 auto;
    width: 45%;
  }
  .grid-sm-3 {
    flex: 0 0 auto;
    width: 30%;
  }
  .grid-sm-4 {
    flex: 0 0 auto;
    width: 22.5%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .grid-md-1 {
    flex: 0 0 auto;
    width: 90%;
  }
  .grid-md-2 {
    flex: 0 0 auto;
    width: 45%;
  }
  .grid-md-3 {
    flex: 0 0 auto;
    width: 30%;
  }
  .grid-md-4 {
    flex: 0 0 auto;
    width: 22.5%;
  }
}
input {
  font-family: "Poppins", "poppins-fallback", sans-serif;
  color: #333;
}

.form-control {
  display: block;
  width: 100%;
  min-height: 4.7rem;
  padding: 0.85rem 2rem;
  border: 1px solid #e4e4e4;
  font-size: 1.5rem;
  line-height: 1.8rem;
  font-weight: 400;
  background-color: #fff;
  border-radius: 0;
  box-shadow: none;
  color: #333;
  outline: 0;
}

.input-group {
  display: inline-flex;
  flex-wrap: wrap;
}

.input-group .form-control {
  flex: 1;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group button,
.input-group .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.form-check, .form-radio {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  margin-right: 1rem;
}

.form-check input,
.form-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  margin: 0;
}

.form-check .check-lbl,
.form-radio .check-lbl {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  height: 2rem;
  width: 2rem;
  border: 2px solid #e4e4e4;
  border-radius: 6px;
  transition: all 0.1s ease-in;
}

.form-check .check-lbl:before,
.form-radio .check-lbl:before,
.form-check .check-lbl:after,
.form-radio .check-lbl:after {
  display: block;
  content: "";
  opacity: 0;
}

.form-check .check-lbl:before,
.form-radio .check-lbl:before {
  width: 2px;
  height: 1.1rem;
  border-left: 0;
  border-top: 0;
  margin-left: 0.5rem;
}

.form-check .check-lbl:after,
.form-radio .check-lbl:after {
  content: url('data:image/svg+xml,<svg width="20px" height="20px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7 12L9.89075 14.8907V14.8907C9.95114 14.951 10.049 14.9511 10.1094 14.8907V14.8907L17 8" stroke="%230d2777" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  position: absolute;
  top: -0.1rem;
  left: -0.16rem;
  width: 0.7rem;
  border-left: 0;
  border-top: 0;
  border-right: 0;
}

.form-check:hover .check-lbl,
.form-check input[type=checkbox]:checked + .check-lbl,
.form-radio:hover .check-lbl,
.form-radio input[type=radio]:checked + .check-lbl,
.form-hover:hover .form-check .check-lbl,
.form-hover:hover .form-radio .check-lbl {
  color: #fff;
  border-color: #03217d;
  background: #e6ecff;
}

.form-check input[type=checkbox]:checked + .check-lbl:before,
.form-radio input[type=radio]:checked + .check-lbl:before,
.form-check input[type=checkbox]:checked + .check-lbl:after,
.form-radio input[type=radio]:checked + .check-lbl:after,
.form-check:hover .check-lbl:before,
.form-radio:hover .check-lbl:before,
.form-check:hover .check-lbl:after,
.form-radio:hover .check-lbl:after,
.form-hover:hover .form-check .check-lbl:before,
.form-hover:hover .form-radio .check-lbl:before,
.form-hover:hover .form-check .check-lbl:after,
.form-hover:hover .form-radio .check-lbl:after {
  opacity: 1;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

button, .btn {
  line-height: 2.4rem;
  padding: 1.1rem 2rem;
  font-weight: 500;
  font-size: 1.5rem;
  font-family: "Poppins", "poppins-fallback", sans-serif;
  color: #333;
  border: 2px solid #f4f5f9;
  background-color: #f4f5f9;
  cursor: pointer;
  outline: 0;
  box-shadow: none;
}

.btn {
  position: relative;
  display: inline-block;
  text-align: center;
  border-radius: 6px;
  transition: color 0.3s, border-color 0.3s, background-color 0.3s, box-shadow ease-in-out 0.3s;
  white-space: nowrap;
  overflow: hidden;
  z-index: 0;
}

.btn-svg {
  display: block;
}

.btn-block {
  width: 100%;
}

.btn-icon svg,
.btn-icon i {
  margin-right: 0.5rem;
  float: left;
}

.btn-out {
  border-color: #f4f5f9;
  background: none !important;
}

.btn-circle {
  padding: 1.1rem;
  border-radius: 50%;
}

.btn-rnd {
  border-radius: 6px;
}

.btn-flex {
  display: flex;
  align-content: center;
  align-items: center;
}

.btn-grow {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  will-change: transform;
}

.btn-grow:hover {
  -webkit-transform: scale(1.025);
  transform: scale(1.025);
}

.badge {
  position: relative;
  display: inline-block;
  padding: 1.1rem 2rem;
  line-height: 2.4rem;
  font-weight: 500;
  text-align: center;
  border: 2px solid #ccc;
  border-width: 2px;
  border-radius: 6px;
  background-color: #fff;
  transition: color 0.3s, border-color 0.3s, background-color 0.3s, box-shadow ease-in-out 0.3s;
  overflow: hidden;
}

.badge-flex {
  display: inline-flex;
  align-items: center;
}

.badge-xmas {
  display: inline-flex;
  align-items: center;
}

.badge-xmas:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 5px;
  background-position-x: 0;
  background-position-y: 0;
  background-size: contain;
  background-image: url('data:image/svg+ml,<svg enable-background="new 0 0 512 512" height="512" viewBox="0 0 512 512" width="18" height="18" xmlns="http://www.w3.org/2000/svg"><g><g><path d="m387.73 82.886 14.705-25.469c8.705-15.077 3.539-34.356-11.538-43.061-15.077-8.705-34.356-3.539-43.06 11.538l-16.567 28.695c-71.575-18.821-149.959 16.411-185.158 87.739-1.694 3.432-50.578 107.533-90.591 144.461l-.606-.299c-12.242-6.041-27.064-1.014-33.105 11.228l-.397.805c-6.041 12.242-1.014 27.063 11.228 33.104l167.836 82.823c-7.009 9.154-11.183 20.594-11.183 33.015 0 30.041 24.353 54.393 54.394 54.393 25.12 0 46.251-17.033 52.504-40.176l51.826 25.575c12.242 6.041 27.064 1.014 33.105-11.228l.397-.805c5.68-11.511 1.574-25.299-9.113-31.928 4.892-54.948 56.032-159.653 56.824-161.257 34.895-70.714 15.814-153.536-41.501-199.153z" fill="%23f6e06e"/><path d="m259.554 440.356c-4.727 14.387-18.261 24.779-34.23 24.779-17.066 0-31.35-11.868-35.075-27.798-.619 3.283-.956 6.666-.956 10.129 0 30.041 24.353 54.393 54.394 54.393 24.266 0 44.812-15.893 51.818-37.835-11.946-7.945-23.927-15.84-35.951-23.668z" fill="%23dda86a"/><path d="m360.118 65.375c-8.498-4.194-17.205-7.522-26.026-10.024 41.887 33.295 55.84 93.793 30.352 145.444-.377.763-16.372 33.507-28.454 67.325-12.055 33.74-50.667 49.584-82.797 33.729l-152.409-75.21c-14.013 22.938-29.569 45.22-44.047 59.008 19.796 10.71 280.944 139.725 314.308 158.359 1.658-53.115 57.366-160.306 58.185-161.966 40.011-81.08 9.069-178.084-69.112-216.665z" fill="%23dda86a"/><path d="m46.081 100.681 8.33 23.423c.357 1.003 1.063 1.798 1.954 2.199l20.81 9.376c2.94 1.325 2.94 6.009 0 7.333l-20.81 9.376c-.891.401-1.597 1.196-1.954 2.199l-8.33 23.423c-1.177 3.309-5.339 3.309-6.515 0l-8.33-23.423c-.357-1.003-1.063-1.798-1.954-2.199l-20.81-9.376c-2.94-1.325-2.94-6.009 0-7.333l20.81-9.376c.891-.401 1.597-1.196 1.954-2.199l8.33-23.423c1.176-3.309 5.338-3.309 6.515 0z" fill="%23faf1a9"/><path d="m149.503 2.603 6.179 17.374c.265.744.788 1.333 1.449 1.631l15.437 6.955c2.181.983 2.181 4.457 0 5.44l-15.437 6.955c-.661.298-1.185.887-1.449 1.631l-6.179 17.375c-.873 2.455-3.96 2.455-4.833 0l-6.179-17.375c-.264-.744-.788-1.333-1.449-1.631l-15.437-6.955c-2.181-.983-2.181-4.457 0-5.44l15.437-6.955c.661-.298 1.185-.887 1.449-1.631l6.179-17.374c.873-2.455 3.96-2.455 4.833 0z" fill="%23faf1a9"/><g fill="%23f6e06e"><ellipse cx="487.545" cy="81.71" rx="18.189" ry="18.189" transform="matrix(.232 -.973 .973 .232 295.162 537.084)"/><circle cx="61.488" cy="50.779" r="7.846"/></g></g><g><path d="m448.657 154.689c-9.327-29.24-25.847-54.587-47.882-74.115l10.442-18.086c5.565-9.638 7.043-20.865 4.162-31.615-2.88-10.75-9.774-19.734-19.412-25.298-19.896-11.487-45.426-4.645-56.913 15.25l-12.774 22.125c-29.798-6.36-61.043-4.254-90.911 6.486-42.904 15.428-77.832 46.823-98.352 88.404-.082.167-.267.552-.548 1.137-8.102 16.897-24.6 50.009-44.067 81.933-16.867 27.66-29.766 44.212-39.318 54.099-15.752-4.269-32.88 3.045-40.37 18.223l-.395.802c-4.121 8.35-4.743 17.804-1.752 26.622s9.236 15.944 17.586 20.064l157.837 77.89c-4.368 8.688-6.837 18.486-6.837 28.855 0 35.584 28.95 64.534 64.534 64.534 25.46 0 47.511-14.827 58.004-36.294l41.839 20.646c4.946 2.441 10.196 3.596 15.371 3.596 12.86 0 25.25-7.138 31.314-19.427l.399-.808c6.964-14.112 3.459-30.705-7.498-40.927 2.003-14.594 7.574-37.088 20.532-71.598 15.894-42.328 34.492-80.288 34.677-80.661 20.518-41.579 24.188-88.401 10.332-131.837zm-92.038-123.725c2.856-4.946 7.466-8.484 12.983-9.962 1.842-.494 3.712-.738 5.569-.738 3.705 0 7.362.972 10.656 2.874 4.946 2.856 8.484 7.466 9.962 12.983s.719 11.279-2.136 16.225l-9.029 15.639c-6.341-4.33-13.018-8.249-20.019-11.703-5.948-2.935-12.02-5.48-18.185-7.653zm-112.932 460.755c-24.401 0-44.253-19.852-44.253-44.253 0-7.149 1.71-13.903 4.735-19.884l79.324 39.145c-7.17 14.775-22.308 24.992-39.806 24.992zm128.739-20.984-.399.808c-3.556 7.208-12.314 10.179-19.523 6.621l-315.376-155.631c-3.492-1.723-6.104-4.702-7.354-8.39-1.251-3.687-.991-7.641.735-11.137l.395-.802c3.558-7.208 12.315-10.179 19.524-6.621l315.376 155.63c7.207 3.558 10.178 12.317 6.622 19.522zm47.711-193.184c-.188.38-19.225 39.228-35.472 82.495-11.096 29.549-17.291 51.419-20.347 67.819l-291.802-143.998c10.286-11.615 22.534-28.341 37.202-52.397 19.93-32.682 36.773-66.484 45.04-83.724.229-.478.38-.793.448-.931 18.183-36.847 49.09-64.653 87.026-78.294 37.805-13.595 78.077-11.483 113.397 5.948 35.32 17.429 61.495 48.107 73.705 86.382 12.252 38.409 8.985 79.854-9.197 116.7z" fill="%233c122c"/><g fill="%23fff"><path d="m203.271 148.099c-2.241 0-4.495-.738-6.372-2.257-4.354-3.523-5.029-9.908-1.507-14.262 9.499-11.743 20.72-21.879 33.35-30.126 4.688-3.063 10.974-1.743 14.035 2.947 3.062 4.69 1.743 10.973-2.947 14.035-10.857 7.089-20.503 15.803-28.67 25.899-2.003 2.477-4.933 3.764-7.889 3.764z"/><path d="m265.174 105.244c-4.265 0-8.233-2.712-9.634-6.985-1.745-5.322 1.156-11.05 6.478-12.795 3.853-1.263 7.815-2.371 11.776-3.294 5.454-1.272 10.907 2.119 12.177 7.574 1.271 5.454-2.12 10.906-7.574 12.178-3.384.789-6.77 1.735-10.061 2.814-1.05.344-2.115.508-3.162.508z"/></g></g></g></svg>');
  background-image: url("data:image/svg;base64,PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA1MTIgNTEyIiBoZWlnaHQ9IjUxMiIgdmlld0JveD0iMCAwIDUxMiA1MTIiIHdpZHRoPSI1MTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGc+PGc+PHBhdGggZD0ibTM4Ny43MyA4Mi44ODYgMTQuNzA1LTI1LjQ2OWM4LjcwNS0xNS4wNzcgMy41MzktMzQuMzU2LTExLjUzOC00My4wNjEtMTUuMDc3LTguNzA1LTM0LjM1Ni0zLjUzOS00My4wNiAxMS41MzhsLTE2LjU2NyAyOC42OTVjLTcxLjU3NS0xOC44MjEtMTQ5Ljk1OSAxNi40MTEtMTg1LjE1OCA4Ny43MzktMS42OTQgMy40MzItNTAuNTc4IDEwNy41MzMtOTAuNTkxIDE0NC40NjFsLS42MDYtLjI5OWMtMTIuMjQyLTYuMDQxLTI3LjA2NC0xLjAxNC0zMy4xMDUgMTEuMjI4bC0uMzk3LjgwNWMtNi4wNDEgMTIuMjQyLTEuMDE0IDI3LjA2MyAxMS4yMjggMzMuMTA0bDE2Ny44MzYgODIuODIzYy03LjAwOSA5LjE1NC0xMS4xODMgMjAuNTk0LTExLjE4MyAzMy4wMTUgMCAzMC4wNDEgMjQuMzUzIDU0LjM5MyA1NC4zOTQgNTQuMzkzIDI1LjEyIDAgNDYuMjUxLTE3LjAzMyA1Mi41MDQtNDAuMTc2bDUxLjgyNiAyNS41NzVjMTIuMjQyIDYuMDQxIDI3LjA2NCAxLjAxNCAzMy4xMDUtMTEuMjI4bC4zOTctLjgwNWM1LjY4LTExLjUxMSAxLjU3NC0yNS4yOTktOS4xMTMtMzEuOTI4IDQuODkyLTU0Ljk0OCA1Ni4wMzItMTU5LjY1MyA1Ni44MjQtMTYxLjI1NyAzNC44OTUtNzAuNzE0IDE1LjgxNC0xNTMuNTM2LTQxLjUwMS0xOTkuMTUzeiIgZmlsbD0iI2Y2ZTA2ZSIvPjxwYXRoIGQ9Im0yNTkuNTU0IDQ0MC4zNTZjLTQuNzI3IDE0LjM4Ny0xOC4yNjEgMjQuNzc5LTM0LjIzIDI0Ljc3OS0xNy4wNjYgMC0zMS4zNS0xMS44NjgtMzUuMDc1LTI3Ljc5OC0uNjE5IDMuMjgzLS45NTYgNi42NjYtLjk1NiAxMC4xMjkgMCAzMC4wNDEgMjQuMzUzIDU0LjM5MyA1NC4zOTQgNTQuMzkzIDI0LjI2NiAwIDQ0LjgxMi0xNS44OTMgNTEuODE4LTM3LjgzNS0xMS45NDYtNy45NDUtMjMuOTI3LTE1Ljg0LTM1Ljk1MS0yMy42Njh6IiBmaWxsPSIjZGRhODZhIi8+PHBhdGggZD0ibTM2MC4xMTggNjUuMzc1Yy04LjQ5OC00LjE5NC0xNy4yMDUtNy41MjItMjYuMDI2LTEwLjAyNCA0MS44ODcgMzMuMjk1IDU1Ljg0IDkzLjc5MyAzMC4zNTIgMTQ1LjQ0NC0uMzc3Ljc2My0xNi4zNzIgMzMuNTA3LTI4LjQ1NCA2Ny4zMjUtMTIuMDU1IDMzLjc0LTUwLjY2NyA0OS41ODQtODIuNzk3IDMzLjcyOWwtMTUyLjQwOS03NS4yMWMtMTQuMDEzIDIyLjkzOC0yOS41NjkgNDUuMjItNDQuMDQ3IDU5LjAwOCAxOS43OTYgMTAuNzEgMjgwLjk0NCAxMzkuNzI1IDMxNC4zMDggMTU4LjM1OSAxLjY1OC01My4xMTUgNTcuMzY2LTE2MC4zMDYgNTguMTg1LTE2MS45NjYgNDAuMDExLTgxLjA4IDkuMDY5LTE3OC4wODQtNjkuMTEyLTIxNi42NjV6IiBmaWxsPSIjZGRhODZhIi8+PHBhdGggZD0ibTQ2LjA4MSAxMDAuNjgxIDguMzMgMjMuNDIzYy4zNTcgMS4wMDMgMS4wNjMgMS43OTggMS45NTQgMi4xOTlsMjAuODEgOS4zNzZjMi45NCAxLjMyNSAyLjk0IDYuMDA5IDAgNy4zMzNsLTIwLjgxIDkuMzc2Yy0uODkxLjQwMS0xLjU5NyAxLjE5Ni0xLjk1NCAyLjE5OWwtOC4zMyAyMy40MjNjLTEuMTc3IDMuMzA5LTUuMzM5IDMuMzA5LTYuNTE1IDBsLTguMzMtMjMuNDIzYy0uMzU3LTEuMDAzLTEuMDYzLTEuNzk4LTEuOTU0LTIuMTk5bC0yMC44MS05LjM3NmMtMi45NC0xLjMyNS0yLjk0LTYuMDA5IDAtNy4zMzNsMjAuODEtOS4zNzZjLjg5MS0uNDAxIDEuNTk3LTEuMTk2IDEuOTU0LTIuMTk5bDguMzMtMjMuNDIzYzEuMTc2LTMuMzA5IDUuMzM4LTMuMzA5IDYuNTE1IDB6IiBmaWxsPSIjZmFmMWE5Ii8+PHBhdGggZD0ibTE0OS41MDMgMi42MDMgNi4xNzkgMTcuMzc0Yy4yNjUuNzQ0Ljc4OCAxLjMzMyAxLjQ0OSAxLjYzMWwxNS40MzcgNi45NTVjMi4xODEuOTgzIDIuMTgxIDQuNDU3IDAgNS40NGwtMTUuNDM3IDYuOTU1Yy0uNjYxLjI5OC0xLjE4NS44ODctMS40NDkgMS42MzFsLTYuMTc5IDE3LjM3NWMtLjg3MyAyLjQ1NS0zLjk2IDIuNDU1LTQuODMzIDBsLTYuMTc5LTE3LjM3NWMtLjI2NC0uNzQ0LS43ODgtMS4zMzMtMS40NDktMS42MzFsLTE1LjQzNy02Ljk1NWMtMi4xODEtLjk4My0yLjE4MS00LjQ1NyAwLTUuNDRsMTUuNDM3LTYuOTU1Yy42NjEtLjI5OCAxLjE4NS0uODg3IDEuNDQ5LTEuNjMxbDYuMTc5LTE3LjM3NGMuODczLTIuNDU1IDMuOTYtMi40NTUgNC44MzMgMHoiIGZpbGw9IiNmYWYxYTkiLz48ZyBmaWxsPSIjZjZlMDZlIj48ZWxsaXBzZSBjeD0iNDg3LjU0NSIgY3k9IjgxLjcxIiByeD0iMTguMTg5IiByeT0iMTguMTg5IiB0cmFuc2Zvcm09Im1hdHJpeCguMjMyIC0uOTczIC45NzMgLjIzMiAyOTUuMTYyIDUzNy4wODQpIi8+PGNpcmNsZSBjeD0iNjEuNDg4IiBjeT0iNTAuNzc5IiByPSI3Ljg0NiIvPjwvZz48L2c+PGc+PHBhdGggZD0ibTQ0OC42NTcgMTU0LjY4OWMtOS4zMjctMjkuMjQtMjUuODQ3LTU0LjU4Ny00Ny44ODItNzQuMTE1bDEwLjQ0Mi0xOC4wODZjNS41NjUtOS42MzggNy4wNDMtMjAuODY1IDQuMTYyLTMxLjYxNS0yLjg4LTEwLjc1LTkuNzc0LTE5LjczNC0xOS40MTItMjUuMjk4LTE5Ljg5Ni0xMS40ODctNDUuNDI2LTQuNjQ1LTU2LjkxMyAxNS4yNWwtMTIuNzc0IDIyLjEyNWMtMjkuNzk4LTYuMzYtNjEuMDQzLTQuMjU0LTkwLjkxMSA2LjQ4Ni00Mi45MDQgMTUuNDI4LTc3LjgzMiA0Ni44MjMtOTguMzUyIDg4LjQwNC0uMDgyLjE2Ny0uMjY3LjU1Mi0uNTQ4IDEuMTM3LTguMTAyIDE2Ljg5Ny0yNC42IDUwLjAwOS00NC4wNjcgODEuOTMzLTE2Ljg2NyAyNy42Ni0yOS43NjYgNDQuMjEyLTM5LjMxOCA1NC4wOTktMTUuNzUyLTQuMjY5LTMyLjg4IDMuMDQ1LTQwLjM3IDE4LjIyM2wtLjM5NS44MDJjLTQuMTIxIDguMzUtNC43NDMgMTcuODA0LTEuNzUyIDI2LjYyMnM5LjIzNiAxNS45NDQgMTcuNTg2IDIwLjA2NGwxNTcuODM3IDc3Ljg5Yy00LjM2OCA4LjY4OC02LjgzNyAxOC40ODYtNi44MzcgMjguODU1IDAgMzUuNTg0IDI4Ljk1IDY0LjUzNCA2NC41MzQgNjQuNTM0IDI1LjQ2IDAgNDcuNTExLTE0LjgyNyA1OC4wMDQtMzYuMjk0bDQxLjgzOSAyMC42NDZjNC45NDYgMi40NDEgMTAuMTk2IDMuNTk2IDE1LjM3MSAzLjU5NiAxMi44NiAwIDI1LjI1LTcuMTM4IDMxLjMxNC0xOS40MjdsLjM5OS0uODA4YzYuOTY0LTE0LjExMiAzLjQ1OS0zMC43MDUtNy40OTgtNDAuOTI3IDIuMDAzLTE0LjU5NCA3LjU3NC0zNy4wODggMjAuNTMyLTcxLjU5OCAxNS44OTQtNDIuMzI4IDM0LjQ5Mi04MC4yODggMzQuNjc3LTgwLjY2MSAyMC41MTgtNDEuNTc5IDI0LjE4OC04OC40MDEgMTAuMzMyLTEzMS44Mzd6bS05Mi4wMzgtMTIzLjcyNWMyLjg1Ni00Ljk0NiA3LjQ2Ni04LjQ4NCAxMi45ODMtOS45NjIgMS44NDItLjQ5NCAzLjcxMi0uNzM4IDUuNTY5LS43MzggMy43MDUgMCA3LjM2Mi45NzIgMTAuNjU2IDIuODc0IDQuOTQ2IDIuODU2IDguNDg0IDcuNDY2IDkuOTYyIDEyLjk4M3MuNzE5IDExLjI3OS0yLjEzNiAxNi4yMjVsLTkuMDI5IDE1LjYzOWMtNi4zNDEtNC4zMy0xMy4wMTgtOC4yNDktMjAuMDE5LTExLjcwMy01Ljk0OC0yLjkzNS0xMi4wMi01LjQ4LTE4LjE4NS03LjY1M3ptLTExMi45MzIgNDYwLjc1NWMtMjQuNDAxIDAtNDQuMjUzLTE5Ljg1Mi00NC4yNTMtNDQuMjUzIDAtNy4xNDkgMS43MS0xMy45MDMgNC43MzUtMTkuODg0bDc5LjMyNCAzOS4xNDVjLTcuMTcgMTQuNzc1LTIyLjMwOCAyNC45OTItMzkuODA2IDI0Ljk5MnptMTI4LjczOS0yMC45ODQtLjM5OS44MDhjLTMuNTU2IDcuMjA4LTEyLjMxNCAxMC4xNzktMTkuNTIzIDYuNjIxbC0zMTUuMzc2LTE1NS42MzFjLTMuNDkyLTEuNzIzLTYuMTA0LTQuNzAyLTcuMzU0LTguMzktMS4yNTEtMy42ODctLjk5MS03LjY0MS43MzUtMTEuMTM3bC4zOTUtLjgwMmMzLjU1OC03LjIwOCAxMi4zMTUtMTAuMTc5IDE5LjUyNC02LjYyMWwzMTUuMzc2IDE1NS42M2M3LjIwNyAzLjU1OCAxMC4xNzggMTIuMzE3IDYuNjIyIDE5LjUyMnptNDcuNzExLTE5My4xODRjLS4xODguMzgtMTkuMjI1IDM5LjIyOC0zNS40NzIgODIuNDk1LTExLjA5NiAyOS41NDktMTcuMjkxIDUxLjQxOS0yMC4zNDcgNjcuODE5bC0yOTEuODAyLTE0My45OThjMTAuMjg2LTExLjYxNSAyMi41MzQtMjguMzQxIDM3LjIwMi01Mi4zOTcgMTkuOTMtMzIuNjgyIDM2Ljc3My02Ni40ODQgNDUuMDQtODMuNzI0LjIyOS0uNDc4LjM4LS43OTMuNDQ4LS45MzEgMTguMTgzLTM2Ljg0NyA0OS4wOS02NC42NTMgODcuMDI2LTc4LjI5NCAzNy44MDUtMTMuNTk1IDc4LjA3Ny0xMS40ODMgMTEzLjM5NyA1Ljk0OCAzNS4zMiAxNy40MjkgNjEuNDk1IDQ4LjEwNyA3My43MDUgODYuMzgyIDEyLjI1MiAzOC40MDkgOC45ODUgNzkuODU0LTkuMTk3IDExNi43eiIgZmlsbD0iIzNjMTIyYyIvPjxnIGZpbGw9IiNmZmYiPjxwYXRoIGQ9Im0yMDMuMjcxIDE0OC4wOTljLTIuMjQxIDAtNC40OTUtLjczOC02LjM3Mi0yLjI1Ny00LjM1NC0zLjUyMy01LjAyOS05LjkwOC0xLjUwNy0xNC4yNjIgOS40OTktMTEuNzQzIDIwLjcyLTIxLjg3OSAzMy4zNS0zMC4xMjYgNC42ODgtMy4wNjMgMTAuOTc0LTEuNzQzIDE0LjAzNSAyLjk0NyAzLjA2MiA0LjY5IDEuNzQzIDEwLjk3My0yLjk0NyAxNC4wMzUtMTAuODU3IDcuMDg5LTIwLjUwMyAxNS44MDMtMjguNjcgMjUuODk5LTIuMDAzIDIuNDc3LTQuOTMzIDMuNzY0LTcuODg5IDMuNzY0eiIvPjxwYXRoIGQ9Im0yNjUuMTc0IDEwNS4yNDRjLTQuMjY1IDAtOC4yMzMtMi43MTItOS42MzQtNi45ODUtMS43NDUtNS4zMjIgMS4xNTYtMTEuMDUgNi40NzgtMTIuNzk1IDMuODUzLTEuMjYzIDcuODE1LTIuMzcxIDExLjc3Ni0zLjI5NCA1LjQ1NC0xLjI3MiAxMC45MDcgMi4xMTkgMTIuMTc3IDcuNTc0IDEuMjcxIDUuNDU0LTIuMTIgMTAuOTA2LTcuNTc0IDEyLjE3OC0zLjM4NC43ODktNi43NyAxLjczNS0xMC4wNjEgMi44MTQtMS4wNS4zNDQtMi4xMTUuNTA4LTMuMTYyLjUwOHoiLz48L2c+PC9nPjwvZz48L3N2Zz4=");
  background-image: url("/assets/bell.svg");
}

/*.badge-xs {
    padding: $badge-xs-padding;
    font-size: $badge-xs-font-size;
    line-height: $badge-xs-line-height;
}
.badge-sm {
    padding: $badge-sm-padding;
    font-size: $badge-sm-font-size;
    line-height: $badge-sm-line-height;  
}
.badge-md {
    padding: $badge-md-padding;
    font-size: $badge-md-font-size;
    line-height: $badge-md-line-height;  
}
.badge-lg {
    padding: $badge-lg-padding;
    font-size: $badge-lg-font-size;
    line-height: $badge-lg-line-height;
}
.badge-xl {
    padding: $badge-xl-padding;
    font-size: $badge-xl-font-size;
    line-height: $badge-xl-line-height;
}

.badge-rnd {
    border-radius: $button-border-rounded;
}*/
.cookie-popup-wrapper {
  /*background: rgba(0,0,0,.5); 
  z-index: 2147483646; 
  width: 100%; 
  height: 100%; 
  overflow: hidden; 
  position: fixed; 
  top: 0; 
  bottom: 0; 
  left: 0;*/
  display: none;
}

.cookie-popup {
  /*background: #03217d; 
  position: fixed; 
  bottom: 0; 
  z-index: 100; 
  width: 100%; 
  padding: 20px; 
  max-width: 320px;
  left: 25px;
  bottom: 25px;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 1px 6px 0 rgba(0,0,0,.06), 0 2px 32px 0 rgba(0,0,0,.16);*/
  z-index: 2147483646;
  position: fixed;
  width: 100%;
  max-width: 100%;
  padding: 10px 20px;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 0;
  color: #fff;
  background: #03217d;
  text-align: center;
  display: none;
}

.cookie-popup-deny {
  color: #fff;
  background: transparent;
}

.cookie-popup-text {
  font-size: 12px;
  margin: 0;
}

.cookie-popup-policy-link {
  text-decoration: underline;
  color: #fff;
}

.cookie-popup-content {
  display: inline-flex;
  align-items: center;
}

.cookie-popup-buttons {
  display: inline-flex;
  gap: 10px;
  margin-left: 20px;
}

@media (max-width: 575px) {
  .cookie-popup-content {
    display: flex;
    flex-direction: column;
  }
  .cookie-popup-buttons {
    margin: 10px 0 0 0;
  }
}
.progress-bar {
  width: 100%;
  height: 1rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  background-color: #eee;
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background-color: #999;
}

.sidal-wrap {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
  pointer-events: none;
}

.sidal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  background: rgba(17, 17, 17, 0.4);
  transform: translateX(0);
  transition: opacity cubic-bezier(0, 0, 1, 1) 200ms;
}

.sidal {
  position: absolute;
  width: 95%;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 0 0 0 0;
  color: #333;
  overflow: hidden;
  z-index: 99992;
  /*-webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;*/
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  transition: transform 200ms linear;
  will-change: transform;
}

.sidal-hdr {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  padding: 2rem 22px;
  line-height: 3rem;
  color: #333;
  background: #fff;
  margin-left: auto;
  margin-right: auto;
}

.sidal-hdr-title {
  flex: 1;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2.4rem;
  color: #000;
}

.sidal-cntrls {
  display: flex;
  display: -ms-flexbox;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  padding: 0;
}

.sidal-btns {
  line-height: 2.6rem;
}

.sidal-btn-close {
  position: relative;
  padding: 0;
  margin: 0;
  width: 24px;
  height: 24px;
  text-align: center;
  border: 0;
  background: none;
  transform: rotate(45deg);
  float: right;
}

.sidal-btn-close:before,
.sidal-btn-close:after {
  display: inline-block;
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
}

.sidal-btn-close:before {
  top: 11px;
  height: 2px;
  width: 20px;
  background: #000;
}

.sidal-btn-close:after {
  left: 11px;
  height: 20px;
  width: 2px;
  background: #000;
}

.sidal-cont {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0 44px 0 22px;
  margin-right: -22px;
  overflow-x: hidden;
  overflow-y: auto;
}

.sidal-cont td {
  vertical-align: middle !important;
}

.sidal-cont-anti {
  flex: 1;
  margin-left: -22px;
  margin-right: -22px;
  /*    padding: 2rem $grid-gutter-gap-smalldevice;*/
  background: #fff;
}

.sidal-ftr {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  line-height: 3rem;
  background: #fff;
  align-items: center;
  justify-content: center;
}

.sidal-ftr-cont {
  padding: 0 22px 0 22px;
  margin-top: 22px;
}

.sidal-open {
  overflow: hidden;
}

.sidal-wrap.closing,
.sidal-wrap.closing .sidal-overlay {
  z-index: 99991;
}

.sidal-wrap.open,
.sidal-wrap.open .sidal-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  z-index: 99991;
}

.prd-op-sidal-content a {
  font-weight: 700;
  text-decoration: underline;
  color: #03217D;
}

@media (max-width: 991px) {
  .sidal {
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-height: 90%;
    max-height: calc(100% - 8rem);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    transform: translateY(100%);
  }
  .sidal-wrap.open .sidal {
    transform: translateY(0);
    transition: transform 200ms linear;
  }
}
@media (min-width: 992px) {
  .sidal {
    max-width: 580px;
    /*right: -580px;*/
  }
  .sidal-wrap.open .sidal {
    /*transform: translateX(-100%);*/
    -webkit-transform: none;
    transform: none;
    transition: transform 200ms linear;
  }
  .sidal-hdr {
    padding-left: 24px;
    padding-right: 24px;
  }
  .sidal-cont {
    padding: 0 48px 0 24px;
    margin-right: -24px;
  }
  .sidal-ftr-cont {
    padding: 0 24px 0 24px;
    margin-top: 24px;
  }
  .sidal-cont-anti {
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
.divider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  margin-bottom: 24px;
}

.divider-line {
  width: 100%;
  height: 1px;
  background: #e4e4e4;
}

.divider-text {
  padding: 0 12px;
  white-space: nowrap;
}

.card {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
  box-sizing: border-box;
  cursor: pointer;
}

.card-media {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.card-media img {
  max-width: 100%;
  height: auto;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.card-details {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  justify-content: center;
  padding: 12px;
}

.card-details .card-name {
  width: 100%;
  font-size: 1.8rem;
  text-overflow: ellipsis;
}

.card-details .card-manufacturer-name {
  font-size: 1.2rem;
  font-weight: 500;
}

.card-details .card-product-name,
.card-details .card-name.card-product-name {
  text-overflow: ellipsis;
  line-height: 2rem;
  font-size: 1.5rem;
}

.card-details .card-ratings {
  width: 100%;
  margin: 0.6rem 0;
}

.card-details .card-price {
  width: 100%;
  margin-top: 0.6rem;
  line-height: 2.2rem;
  font-size: 1.8rem;
  font-weight: 500;
}

.card-details .card-price .old-price {
  font-weight: 400;
  /*color: #aaa;*/
}

.card-details .card-price .card-saveprice {
  margin-left: 5px;
}

.card-details .rating-reviews {
  font-weight: 500;
}

.crd {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  border-radius: 6px;
  margin-bottom: 2rem;
}

.crd-bdy {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 2rem;
}

.crd-shad {
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.08);
}

.post-card {
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  background: none;
}

.post-card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 6px;
}

.post-card-media {
  position: relative;
  display: flex;
  flex: 1;
  border-radius: 6px;
  overflow: hidden;
}

.post-card-media img {
  width: 100%;
  border-radius: 6px;
  transition: transform 0.2s ease;
}

.post-card-meta-cat {
  display: inline-block;
  line-height: 1.6rem;
  padding-left: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  border-left: 3px solid #03217D;
  color: #333;
  text-transform: capitalize;
}

.post-card-details {
  padding: 24px 24px;
  margin: -8rem 12px 0 12px;
  border-radius: 6px;
  background: #fff;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.08);
  z-index: 1;
  transition: transform 0.2s ease;
}

.post-card-title {
  margin-top: 1rem;
  height: 5.7rem;
  line-height: 1.9rem;
  font-size: 1.5rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post-card-text {
  display: block;
  margin: 1rem 0;
  line-height: 1.8rem;
  font-size: 1.3rem;
  font-weight: 400;
  height: 5.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post-card-auth {
  display: flex;
  align-items: center;
  padding-top: 1rem;
  margin-top: 1rem;
}

.post-card-auth-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.post-card-auth-dets {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-left: 1rem;
  line-height: 1.9rem;
  font-size: 1.4rem;
}

.post-card-auth-name {
  font-weight: 700;
}

.post-card-date {
  font-weight: 500;
  color: #505673;
}

.post-card-calendar {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 4.1rem;
  height: 4.2rem;
  background: #03217D;
  color: #fff;
  z-index: 3;
  border-radius: 6px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.08);
}

.post-card-calendar .post-day {
  display: block;
  line-height: 1.5rem;
  font-size: 1.3rem;
}

.post-card-calendar .post-mon {
  text-transform: uppercase;
  line-height: 1.4rem;
  font-size: 1.2rem;
}

.sldr-caro-wrap .post-card {
  cursor: pointer;
  pointer-events: all;
}

.thm-offset .post-card-details {
  background: #fff;
}

/*@media (max-width: 991px) {
    .post-card-details {
        padding: 0.5rem 1rem 1rem 1rem;
    }
}*/
@media (min-width: 992px) {
  .scale-hover .post-card:hover .post-card-media img {
    transform: scale3d(1.05, 1.05, 1);
    -webkit-transform: scale3d(1.05, 1.05, 1);
  }
  .scale-hover .post-card:hover .post-card-details {
    transform: translateY(-1rem);
    -webkit-transform: translateY(-1rem);
  }
}
table {
  border-collapse: collapse;
}

th {
  text-align: inherit;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 2rem;
  background-color: transparent;
}

.table td, .table th {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #e4e4e4;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #e4e4e4;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f4f5f9;
}

.table-bordered {
  border: 1px solid #e4e4e4;
}

.table-bordered td, .table-bordered th {
  border: 1px solid #e4e4e4;
}

.table-bordered thead td, .table-bordered thead th {
  border-bottom-width: 2px;
}

.accord {
  width: 100%;
  border-radius: 6px;
}

.accord-itm {
  background: #fff;
  border-top: 1px solid #e4e4e4;
}

.accord-hdr {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.6rem;
  font-weight: 400;
  overflow: hidden;
  cursor: pointer;
}

.accord-hdr svg {
  float: right;
}

.accord-hdr > svg {
  margin-top: 0.6rem;
}

.accord-bdy {
  padding: 1rem 2rem;
}

.accord-bdy.collapsed {
  display: none;
}

.accord-ico {
  float: right;
}

.accord-ind {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
  float: right;
  transition: opacity 0.4s ease-in-out;
}

.accord-ind:before,
.accord-ind:after {
  display: inline-block;
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  background: #141933;
}

.accord-ind:before {
  top: 11px;
  height: 2px;
  width: 12px;
}

.accord-ind:after {
  left: 11px;
  height: 12px;
  width: 2px;
}

.accord-itm.active .accord-ind:after {
  opacity: 0;
}

.accord-bordered {
  border: 1px solid #e4e4e4;
}

.accord-bordered .accord-itm {
  border-top: 1px solid #e4e4e4;
}

.accord-itm:first-child {
  border-top: 0;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.accord-itm:last-child {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: 6px;
}

.alert-primary {
  color: #fff;
  background-color: #03217D;
}

.alert-success {
  color: #fff;
  background-color: #51b17d;
}

.alert-warning {
  color: #fff;
  background-color: #ffcf57;
}

.alert-danger {
  color: #fff;
  background-color: #f74133;
}

.feat-hdr {
  margin-bottom: 24px;
  overflow: hidden;
}

.feat-heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: 700;
  color: #141933;
}

.feat-subheading {
  line-height: 1.8rem;
  font-weight: 500;
  color: #505673;
  margin: 0;
}

.feat-lnk {
  display: inline-block;
  margin: 0 auto;
  font-size: 1.5rem;
  text-decoration: underline;
  font-weight: 500;
}

.feat-heading .feat-lnk {
  margin: 0 0 0 auto;
}

.feat-grid-container {
  overflow: hidden;
}

.feat-grid {
  align-items: center;
  padding: 24px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -2rem;
  overflow: hidden;
}

.feat-grid-col {
  padding: 0 2rem;
}

.feat-grid-auto {
  flex: 1;
}

.feat-img {
  border-radius: 6px;
}

.feat-block {
  margin: 24px 0;
}

.banr {
  position: relative;
  display: flex;
  flex-direction: row;
}

.banr-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.block {
  position: relative;
  display: flex;
  flex-direction: column;
  color: #000;
  background-color: #fff;
  border-radius: 6px;
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}

.block-bdy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  overflow: hidden;
  z-index: 1;
}

.block-row .block-bdy {
  flex-direction: row;
  justify-content: start;
}

.block.full,
.block.full .block-bdy {
  height: 100%;
  overflow: hidden;
}

.block-tit {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: 700;
}

/*.block-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}*/
.block-btn-overlay {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  bottom: 0;
  left: 0;
  right: 0;
  margin-bottom: 3rem;
}

.cat {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  margin-bottom: 24px;
}

.cat-img {
  margin: 0 auto;
}

.cat-tit {
  margin-top: 1rem;
  line-height: 2rem;
  font-weight: 500;
  text-align: center;
}

.cat-subtit {
  margin-top: 0.5rem;
  line-height: 1.4rem;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
}

.cat .btn {
  margin-top: 24px;
}

.tabs-container {
  width: 100%;
  overflow: hidden;
}

.tabs {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
}

.tabs .tab-itm {
  display: block;
  display: inline-flex;
  height: 4.2rem;
  padding: 1rem 0;
  font-weight: 500;
  line-height: 2rem;
  border-bottom: 2px solid transparent;
  transition: border 0.2s ease-in-out;
  cursor: pointer;
  white-space: nowrap;
  flex: none;
}

.tabs .tab-itm + .tab-itm {
  margin-left: 2rem;
}

.tabs .tab-itm.active,
.tabs .tab-itm:hover {
  color: #141933;
  border-color: #141933;
}

.tabs-content {
  margin-top: 1.5rem;
}

.tab-pane {
  height: 0;
  z-index: -1;
  overflow: hidden;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}

.tab-pane.active {
  visibility: visible;
  opacity: 1;
  height: auto;
  z-index: auto;
}

.scrollable .tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.tabs-container.scrollable {
  max-height: 4.2rem;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}

.tabs-container.scrollable::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

/*@media(max-width: maxGridBreakpoint(map-get($grid-breakpoints, 'lg'))) {
    Obtain this
}*/
@media (max-width: 991px) {
  .tabs-container {
    margin-inline: -11px;
    width: auto;
  }
  .tabs {
    padding-inline: 11px;
  }
  .tabs-content {
    margin-inline: -5.5px;
  }
  .tabs-content .scroller-controls {
    width: auto;
    margin-inline: 11px;
  }
  .tabs-content .tab-pane {
    padding-inline: 11px;
  }
}
.scroller {
  position: relative;
}

.scroller-track-wrapper {
  overflow: hidden;
}

.scroller-track {
  scroll-behavior: smooth;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: -20px;
  padding: 24px 0 44px 0;
}

.draggable .scroller-track:hover {
  cursor: grab;
}

.dragging,
.dragging .scroller-track {
  cursor: grabbing !important;
}

.dragging .scroller-track,
.dragging .scroller-controls-track {
  scroll-behavior: auto;
}

.dragging .scroller-track a {
  pointer-events: none;
  cursor: grabbing !important;
}

.scroller.dragging > * {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.scroller-controls {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 0;
  padding-right: 116px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.scroller-btns {
  position: absolute;
  top: 0;
  padding-left: 20px;
  right: 0;
  width: 116px;
  height: 48px;
}

.scroller .arw {
  width: 48px;
  height: 48px;
  padding: 0px;
  line-height: 12px;
  outline: 0;
  border: 2px solid transparent;
  color: #141933;
  background: none;
  z-index: 1;
}

.scroller .arw:disabled {
  opacity: 30%;
}

.scroller .arw svg {
  fill: #141933;
}

.scroller:hover .arw {
  visibility: visible;
  opacity: 1;
}

.scroller:hover .arw:disabled {
  opacity: 30%;
}

.scroller-controls-track {
  flex: 1;
  position: relative;
  width: 100%;
  height: 4px;
  margin-top: 22px;
  margin-bottom: 22px;
  border-radius: 0;
  background: #f4f5f9;
  scroll-behavior: smooth;
}

.scroller-controls-bar {
  will-change: transform;
  position: absolute;
  top: -22px;
  bottom: -22px;
  transform-origin: 0 0;
  cursor: grab;
  z-index: 1;
}

.scroller-controls-bar:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  top: 22px;
  bottom: 22px;
  left: 0;
  right: 0;
  border-radius: 0;
  background: #141933;
}

.scroller-controls-track:hover .scroller-controls-bar:after {
  cursor: grab;
}

.scroller.show-controls {
  padding-bottom: 24px;
}

.show-controls .scroller-controls {
  height: auto;
  min-height: 48px;
  opacity: 1;
  visibility: visible;
}

.scroller {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

.scroller .scroller-track::-webkit-scrollbar {
  display: none !important;
  width: 0;
  height: 0;
}

@media (max-width: 991px) {
  /*.scroller .arw {
      margin-top: -((map-get($scroller, 'arrow-height') / 2) + map-get($scroller, 'grid-gutter-gap-smalldevice'));
  }*/
  .scroller-controls {
    left: 0;
    right: 0;
  }
  .show-controls .scroller-controls {
    min-height: 44px;
  }
  .scroller-controls-track {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .scroller-controls-bar {
    top: -20px;
    bottom: -20px;
  }
  .scroller-controls-bar:after {
    top: 20px;
    bottom: 20px;
  }
  .scroller-btns {
    width: 108px;
    height: 44px;
  }
  .scroller .arw {
    width: 44px;
    height: 44px;
  }
}
.scrollbar::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.scrollbar::-webkit-scrollbar-track {
  width: 4px;
  height: 4px;
  margin-top: 12px;
  margin-bottom: 12px;
  border-radius: 0;
  background: #f4f5f9;
}

.scrollbar::-webkit-scrollbar-thumb {
  border-radius: 0;
  background: #333;
  cursor: grab;
}

.scrollbar::-webkit-scrollbar-thumb:hover {
  background: #03217D;
  cursor: grab;
}

.icon {
  display: inline-block;
  background-repeat: no-repeat;
}

.icon-sm {
  display: inline-block;
  width: 18px;
  height: 18px;
}

.icon-md {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.icon-lg {
  display: inline-block;
  min-width: 24px;
  width: 24px;
  height: 24px;
}

.icon-xl {
  display: inline-block;
  width: 28px;
  height: 28px;
}

.fill-primary {
  fill: #03217D;
}

.fill-secondary {
  fill: #03217d;
}

.fill-tertiary {
  fill: #40579a;
}

.fill-accent {
  fill: #C994DD;
}

.fill-offset {
  fill: #f4f5f9;
}

.fill-softer {
  fill: #fff;
}

.fill-medium {
  fill: #0dcaf0;
}

.fill-med-firm {
  fill: #51b17d;
}

.fill-extra-firm {
  fill: #f74133;
}

.stroke-primary {
  stroke: #03217D;
}

.stroke-secondary {
  stroke: #03217d;
}

.stroke-tertiary {
  stroke: #40579a;
}

.stroke-accent {
  stroke: #C994DD;
}

.stroke-offset {
  stroke: #f4f5f9;
}

/*//firmness
.icon-softer {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg enable-background='new 0 0 511.996 511.996' style='height:24px;width:24px' version='1.1' viewBox='0 0 512 512' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m256.03 511.96c-65.578 0-131.16-24.962-181.08-74.885-6.378-6.378-6.38-16.72 0-23.099 6.378-6.378 16.72-6.38 23.1 0 87.11 87.11 228.85 87.11 315.96 0 87.11-87.11 87.11-228.85 0-315.96-87.11-87.11-228.85-87.11-315.96 0-56.361 56.361-78.483 139.24-57.733 216.3 2.345 8.711-2.814 17.673-11.525 20.018-8.707 2.345-17.673-2.814-20.018-11.525-23.783-88.306 1.575-183.29 66.173-247.89 99.849-99.849 262.31-99.847 362.16 0 99.847 99.849 99.847 262.31 0 362.16-49.925 49.923-115.5 74.886-181.08 74.886z' fill='%232D527C'/%3E%3Ccircle cx='256.04' cy='256.01' r='154.6' fill='%23CEE8FA'/%3E%3Cpath d='m256.03 426.92c-94.246 0-170.92-76.675-170.92-170.92s76.675-170.92 170.92-170.92 170.92 76.675 170.92 170.92-76.676 170.92-170.92 170.92zm0-309.18c-76.234 0-138.26 62.021-138.26 138.26s62.021 138.26 138.26 138.26 138.26-62.021 138.26-138.26-62.021-138.26-138.26-138.26z' fill='%232D527C'/%3E%3C/svg%3E%0A");
}
.icon-firmer {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg enable-background='new 0 0 511.996 511.996' style='height:24px;width:24px' version='1.1' viewBox='0 0 512 512' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m256.03 511.96c-65.578 0-131.16-24.962-181.08-74.885-6.378-6.378-6.38-16.72 0-23.099 6.378-6.378 16.72-6.38 23.1 0 87.11 87.11 228.85 87.11 315.96 0 87.11-87.11 87.11-228.85 0-315.96-87.11-87.11-228.85-87.11-315.96 0-56.361 56.361-78.483 139.24-57.733 216.3 2.345 8.711-2.814 17.673-11.525 20.018-8.707 2.345-17.673-2.814-20.018-11.525-23.783-88.306 1.575-183.29 66.173-247.89 99.849-99.849 262.31-99.847 362.16 0 99.847 99.849 99.847 262.31 0 362.16-49.925 49.923-115.5 74.886-181.08 74.886z' fill='%23b552ec'/%3E%3Ccircle cx='256.04' cy='256.01' r='154.6' fill='%23f0cefa'/%3E%3Cpath d='m256.03 426.92c-94.246 0-170.92-76.675-170.92-170.92s76.675-170.92 170.92-170.92 170.92 76.675 170.92 170.92-76.676 170.92-170.92 170.92zm0-309.18c-76.234 0-138.26 62.021-138.26 138.26s62.021 138.26 138.26 138.26 138.26-62.021 138.26-138.26-62.021-138.26-138.26-138.26z' fill='%23b552ec'/%3E%3C/svg%3E%0A");
}
.icon-medium {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg enable-background='new 0 0 511.996 511.996' style='height:24px;width:24px' version='1.1' viewBox='0 0 512 512' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m256.03 511.96c-65.578 0-131.16-24.962-181.08-74.885-6.378-6.378-6.38-16.72 0-23.099 6.378-6.378 16.72-6.38 23.1 0 87.11 87.11 228.85 87.11 315.96 0 87.11-87.11 87.11-228.85 0-315.96-87.11-87.11-228.85-87.11-315.96 0-56.361 56.361-78.483 139.24-57.733 216.3 2.345 8.711-2.814 17.673-11.525 20.018-8.707 2.345-17.673-2.814-20.018-11.525-23.783-88.306 1.575-183.29 66.173-247.89 99.849-99.849 262.31-99.847 362.16 0 99.847 99.849 99.847 262.31 0 362.16-49.925 49.923-115.5 74.886-181.08 74.886z' fill='%2353b37e'/%3E%3Ccircle cx='256.04' cy='256.01' r='154.6' fill='%23b9e9cf'/%3E%3Cpath d='m256.03 426.92c-94.246 0-170.92-76.675-170.92-170.92s76.675-170.92 170.92-170.92 170.92 76.675 170.92 170.92-76.676 170.92-170.92 170.92zm0-309.18c-76.234 0-138.26 62.021-138.26 138.26s62.021 138.26 138.26 138.26 138.26-62.021 138.26-138.26-62.021-138.26-138.26-138.26z' fill='%2353b37e'/%3E%3C/svg%3E%0A");
}
.icon-medium-firm {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg enable-background='new 0 0 511.996 511.996' style='height:24px;width:24px' version='1.1' viewBox='0 0 512 512' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m256.03 511.96c-65.578 0-131.16-24.962-181.08-74.885-6.378-6.378-6.38-16.72 0-23.099 6.378-6.378 16.72-6.38 23.1 0 87.11 87.11 228.85 87.11 315.96 0 87.11-87.11 87.11-228.85 0-315.96-87.11-87.11-228.85-87.11-315.96 0-56.361 56.361-78.483 139.24-57.733 216.3 2.345 8.711-2.814 17.673-11.525 20.018-8.707 2.345-17.673-2.814-20.018-11.525-23.783-88.306 1.575-183.29 66.173-247.89 99.849-99.849 262.31-99.847 362.16 0 99.847 99.849 99.847 262.31 0 362.16-49.925 49.923-115.5 74.886-181.08 74.886z' fill='%23dc732c'/%3E%3Ccircle cx='256.04' cy='256.01' r='154.6' fill='%23ffd3b6'/%3E%3Cpath d='m256.03 426.92c-94.246 0-170.92-76.675-170.92-170.92s76.675-170.92 170.92-170.92 170.92 76.675 170.92 170.92-76.676 170.92-170.92 170.92zm0-309.18c-76.234 0-138.26 62.021-138.26 138.26s62.021 138.26 138.26 138.26 138.26-62.021 138.26-138.26-62.021-138.26-138.26-138.26z' fill='%23dc732c'/%3E%3C/svg%3E%0A");
}
.icon-extra-firm {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg enable-background='new 0 0 511.996 511.996' style='height:24px;width:24px' version='1.1' viewBox='0 0 512 512' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m256.03 511.96c-65.578 0-131.16-24.962-181.08-74.885-6.378-6.378-6.38-16.72 0-23.099 6.378-6.378 16.72-6.38 23.1 0 87.11 87.11 228.85 87.11 315.96 0 87.11-87.11 87.11-228.85 0-315.96-87.11-87.11-228.85-87.11-315.96 0-56.361 56.361-78.483 139.24-57.733 216.3 2.345 8.711-2.814 17.673-11.525 20.018-8.707 2.345-17.673-2.814-20.018-11.525-23.783-88.306 1.575-183.29 66.173-247.89 99.849-99.849 262.31-99.847 362.16 0 99.847 99.849 99.847 262.31 0 362.16-49.925 49.923-115.5 74.886-181.08 74.886z' fill='%23c03c35'/%3E%3Ccircle cx='256.04' cy='256.01' r='154.6' fill='%23ffb1ac'/%3E%3Cpath d='m256.03 426.92c-94.246 0-170.92-76.675-170.92-170.92s76.675-170.92 170.92-170.92 170.92 76.675 170.92 170.92-76.676 170.92-170.92 170.92zm0-309.18c-76.234 0-138.26 62.021-138.26 138.26s62.021 138.26 138.26 138.26 138.26-62.021 138.26-138.26-62.021-138.26-138.26-138.26z' fill='%23c03c35'/%3E%3C/svg%3E%0A");
}
//specifications
.icon-open-coil {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg class='' enable-background='new 0 0 512 512' style='height:24px;width:24px' fill='%23222' version='1.1' viewBox='0 0 512 512' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath class='' d='M420.95 185.833c0-25.089-20.411-45.5-45.5-45.5h-72.433l95.531-55.635c13.02-7.575 22.401-22.266 22.401-39.199 0-25.089-20.411-45.5-45.5-45.5h-238.9c-25.089 0-45.5 20.411-45.5 45.5S111.461 91 136.55 91h69.766l-93.404 55.957c-12.69 7.601-21.862 22.167-21.862 38.877 0 25.089 20.411 45.5 45.5 45.5h69.639c-16.763 10.059-91.649 54.964-92.787 55.683-13.368 7.934-22.352 22.509-22.352 39.15 0 25.089 20.411 45.5 45.5 45.5h69.51c-29.577 17.776-92.804 55.72-93.798 56.387-12.735 8.073-21.212 22.284-21.212 38.446 0 25.089 20.411 45.5 45.5 45.5h238.9c25.089 0 45.5-20.411 45.5-45.5s-20.411-45.5-45.5-45.5h-72.69c22.101-12.839 94.975-55.136 96.141-55.858 13.202-7.973 22.049-22.459 22.049-38.975 0-25.089-20.411-45.5-45.5-45.5h-72.559l95.649-55.623c13.238-7.706 22.41-22.507 22.41-39.211zM121.05 45.5c0-8.547 6.953-15.5 15.5-15.5h238.9c8.547 0 15.5 6.953 15.5 15.5S383.997 61 375.45 61h-238.9c-8.547 0-15.5-6.953-15.5-15.5zM328.117 91l-84.711 49.333h-61.064L264.691 91zM121.05 185.833c0-8.547 6.953-15.5 15.5-15.5h238.9c8.547 0 15.5 6.953 15.5 15.5s-6.953 15.5-15.5 15.5h-238.9c-8.547 0-15.5-6.953-15.5-15.5zM390.95 466.5c0 8.547-6.953 15.5-15.5 15.5h-238.9c-8.547 0-15.5-6.953-15.5-15.5s6.953-15.5 15.5-15.5h238.9c8.547 0 15.5 6.953 15.5 15.5zM182.19 421l82.13-49.333h63.653L243.022 421zm208.76-94.833c0 8.547-6.953 15.5-15.5 15.5h-238.9c-8.547 0-15.5-6.953-15.5-15.5s6.953-15.5 15.5-15.5h238.9c8.547 0 15.5 6.953 15.5 15.5zm-208.681-45.5 82.235-49.333h63.544l-84.834 49.333z' fill='%23444' data-original='%23222'/%3E%3C/svg%3E%0A");
}
.icon-miracoil {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='Capa_1' viewBox='0 0 512 512' style='width:24px; height:24px' fill='%23222' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='m386 442h-260c-19.33 0-35 15.67-35 35 0 19.33 15.67 35 35 35h260c19.33 0 35-15.67 35-35 0-19.33-15.67-35-35-35z'/%3E%3Cpath  d='m126 70h128.06l-82.93 47.33h141.22l90.99-51.93c10.74-6.13 17.66-17.63 17.66-30.4 0-19.3-15.69-35-35-35h-260c-19.33 0-35 15.67-35 35 0 19.321 15.657 35 35 35z'/%3E%3Cpath d='m386 147h-260c-19.33 0-35 15.67-35 35 0 19.321 15.657 35 35 35h128.06l-82.93 47.33h141.22l90.99-51.93c10.74-6.13 17.66-17.63 17.66-30.4 0-19.3-15.69-35-35-35z'/%3E%3Cpath d='m386 294h-260c-19.33 0-35 15.67-35 35 0 19.321 15.657 35 35 35h128.06l-82.93 47.33h141.22l90.99-51.93c10.74-6.13 17.66-17.63 17.66-30.4 0-19.3-15.69-35-35-35z'/%3E%3C/g%3E%3C/svg%3E");
}
.icon-pocket-sprung, .icon-pocket-springs {
    background-image: url("data:image/svg+xml,%3Csvg id='fi_5098836' enable-background='new 0 0 512 512' style='height:24px;width:24px' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='m435.714 17.916c1.836-9.27-5.265-17.916-14.714-17.916h-330c-9.451 0-16.55 8.647-14.714 17.916 29.513 148.939 29.497 313.678-.045 476.404-1.669 9.195 5.4 17.68 14.759 17.68h330c9.344 0 16.431-8.471 14.759-17.68-29.542-162.726-29.558-327.465-.045-476.404zm-326.602 12.084h51.58c1.463.56-9.109-2.374 165.688 44.283l-151.905 31.985c-31.813 6.696-31.656 52.38.296 58.772l154.735 30.957-152.882 30.583c-32.055 6.413-32.114 52.412.001 58.835l152.955 30.587-154.796 30.958c-31.884 6.379-32.179 52.06-.297 58.774l151.893 31.983c-174.806 46.66-164.223 43.722-165.688 44.283h-51.838c25.979-154.137 26.063-309.628.258-452zm167.652 452 63.425-16.917c28.971-7.728 27.882-49.244-1.473-55.426l-158.049-33.278c0-.001 0-.001 0-.001l156.849-31.369c31.609-6.323 31.667-51.682-.001-58.015l-155.007-30.996 154.933-30.992c31.607-6.323 31.667-51.679.001-58.014l-156.786-31.368 158.061-33.281c29.342-6.179 30.459-47.694 1.473-55.426l-63.426-16.917h126.124c-25.805 142.372-25.721 297.863.258 452z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}
.icon-mirapocket {
    background-image: url("data:image/svg+xml,%3Csvg id='fi_5099089' enable-background='new 0 0 512 512' style='height:24px;width:24px' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='m331.277 463.929c.092-.423.092-.997.001-1.438l-157.206-37.776c-31.412-7.548-31.103-55.574.315-62.746l156.585-35.739c.431-.834.432-2.674 0-3.509l-154.743-35.313c-31.631-7.218-31.625-55.598-.002-62.82l154.669-35.308c.432-.834.432-2.675 0-3.509l-156.521-35.737c-31.486-7.189-31.657-55.213-.315-62.746l157.218-37.778c.091-.44.091-1.015-.001-1.438l-157.924-48.072h-82.353c-9.451 0-16.55 8.647-14.714 17.916 29.513 148.939 29.497 313.678-.045 476.404-1.669 9.195 5.4 17.68 14.759 17.68h82.353z'%3E%3C/path%3E%3Cpath d='m435.714 17.916c1.836-9.27-5.265-17.916-14.714-17.916h-144.627l64.319 19.578c28.332 8.624 27.188 51.989-1.562 58.897l-157.988 37.964c-.619.875-.617 3.472-.001 4.365l156.697 35.778c31.182 7.12 31.171 54.766 0 61.884l-154.848 35.349c-.63.9-.63 3.458-.002 4.361l154.923 35.356c31.184 7.115 31.176 54.769.001 61.884l-156.758 35.779c-.617.89-.62 3.486-.002 4.364l157.979 37.964c28.781 6.917 29.871 50.28 1.562 58.897l-64.32 19.58h144.627c9.344 0 16.431-8.471 14.759-17.68-29.542-162.726-29.558-327.465-.045-476.404z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}
.icon-soft-foam {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' x='0' y='0' viewBox='0 0 682.667 682.667' style='height:24px;width:24px;enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg transform='matrix(6.123233995736766e-17,1,-1,6.123233995736766e-17,682.6670188903809,0.002010345458984375)'%3E%3Cdefs%3E%3CclipPath id='a' clipPathUnits='userSpaceOnUse'%3E%3Cpath d='M0 512h512V0H0Z' fill='%23000000' data-original='%23000000'%3E%3C/path%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(../scss/theme/%23a)' transform='matrix(1.33333 0 0 -1.33333 0 682.667)'%3E%3Cpath d='M0 0h-300c-16.568 0-30 13.432-30 30v422c0 16.568 13.432 30 30 30H0c16.568 0 30-13.432 30-30V30C30 13.432 16.568 0 0 0Z' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(406 15)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(146.606 65.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(266.606 65.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(386.606 65.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(326.606 125.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(206.606 125.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(266.606 185.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(206.606 245.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(146.606 185.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(386.606 185.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(326.606 245.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(386.606 305.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(266.606 305.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(146.606 305.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(206.606 365.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(326.606 365.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(266.606 425.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(146.606 425.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(386.606 425.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.icon-geltex {
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='fi_597695' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 512 512' style='height:24px;width:24px;enable-background:new 0 0 512 512;' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cg%3E%3Cpath d='M427.361,376.09c7.845-4.522,10.538-14.554,6.006-22.399L311.101,141.898c-4.514-7.845-14.545-10.547-22.399-6.006 c-7.854,4.523-10.538,14.554-6.006,22.399l122.267,211.801c3.039,5.269,8.556,8.21,14.225,8.21 C421.968,378.302,424.784,377.592,427.361,376.09z'%3E%3C/path%3E%3Cpath d='M223.29,135.892c-7.837-4.54-17.868-1.839-22.399,6.006L78.624,353.7c-4.531,7.837-1.839,17.868,6.006,22.399 c2.586,1.493,5.402,2.204,8.183,2.204c5.669,0,11.186-2.941,14.225-8.21l122.258-211.801 C233.827,150.455,231.135,140.423,223.29,135.892z'%3E%3C/path%3E%3Cpath d='M378.28,416.348l-244.561,0.018c-9.054,0-16.402,7.339-16.402,16.402s7.339,16.402,16.402,16.402l244.561-0.018 c9.063,0,16.411-7.339,16.411-16.402C394.691,423.687,387.343,416.348,378.28,416.348z'%3E%3C/path%3E%3Cpath d='M256.004,131.201c28.636,0,51.933-23.305,51.942-51.96c0-28.619-23.297-51.897-51.942-51.897 s-51.951,23.279-51.942,51.889C204.063,107.895,227.359,131.201,256.004,131.201z M256.004,60.138 c10.547,0,19.138,8.574,19.138,19.094c0,10.564-8.583,19.165-19.138,19.165s-19.138-8.601-19.138-19.165 C236.866,68.712,245.449,60.138,256.004,60.138z'%3E%3C/path%3E%3Cpath d='M460.058,380.79c-28.645,0-51.951,23.305-51.951,51.96c0,28.628,23.305,51.906,51.951,51.906S512,461.378,512,432.75 C512,404.096,488.703,380.79,460.058,380.79z M460.058,451.853c-10.547,0-19.138-8.565-19.138-19.103 c0-10.555,8.583-19.156,19.138-19.156s19.138,8.592,19.129,19.156C479.188,443.279,470.605,451.853,460.058,451.853z'%3E%3C/path%3E%3Cpath d='M51.933,380.79C23.297,380.79,0,404.096,0,432.75c0,28.628,23.297,51.906,51.933,51.906 c28.645,0,51.951-23.279,51.951-51.906C103.884,404.096,80.578,380.79,51.933,380.79z M51.933,451.853 c-10.547,0-19.13-8.565-19.13-19.103c0-10.555,8.583-19.156,19.13-19.156c10.555,0,19.147,8.592,19.147,19.156 C71.08,443.279,62.488,451.853,51.933,451.853z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E");
}
.icon-gel-foam {
    background-image: url("data:image/svg+xml,%3Csvg id='fi_4007747' style='width:24px; height:24px' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m15.986 0c-.434.002-.82.267-.982.669-1.057 2.633-3.611 6.099-5.938 9.583-2.326 3.483-4.496 6.981-4.496 10.339 0 6.287 5.127 11.409 11.426 11.409s11.434-5.122 11.434-11.409c0-3.357-2.17-6.855-4.496-10.339s-4.889-6.95-5.945-9.583c-.165-.407-.563-.673-1.003-.669zm.01 3.071c1.381 2.692 3.244 5.496 5.156 8.361 2.281 3.417 4.143 6.805 4.143 9.159 0 5.131-4.15 9.275-9.299 9.275s-9.293-4.144-9.293-9.275c0-2.354 1.855-5.742 4.137-9.159 1.91-2.865 3.775-5.669 5.156-8.361zm-.002 22.197c-.59-.002-1.068.474-1.07 1.063-.002.59.475 1.069 1.092 1.071 4.42 0 7.955-3.576 7.955-7.96.008-.589-.465-1.072-1.068-1.07s-1.072.483-1.064 1.069c-.001 3.229-2.605 5.827-5.845 5.827z'%3E%3C/path%3E%3C/svg%3E");
}
.icon-latex-core {
    background-image: url("data:image/svg+xml,%3Csvg id='fi_2990966' style='width:24px; height:24px' enable-background='new 0 0 512.203 512.203' viewBox='0 0 512.203 512.203' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m390.537 385.842c47.303 0 85.787-38.484 85.787-85.787 0-19.457-6.698-38.514-18.861-53.658-8.379-10.434-19.124-18.758-31.172-24.303 3.261-10.71 4.908-21.834 4.908-33.232 0-27.334-9.801-53.791-27.597-74.496-14.979-17.429-34.818-29.902-56.752-35.87-2.823-19.661-11.922-37.797-26.274-51.995-17.276-17.09-40.173-26.501-64.474-26.501s-47.199 9.411-64.474 26.5c-14.352 14.198-23.451 32.334-26.274 51.995-21.934 5.968-41.772 18.441-56.752 35.87-17.796 20.705-27.597 47.162-27.597 74.496 0 11.398 1.646 22.522 4.908 33.232-12.048 5.545-22.793 13.869-31.172 24.303-12.163 15.145-18.861 34.201-18.861 53.658 0 47.303 38.484 85.787 85.787 85.787h119.436v96.361h-123.716v30h277.43v-30h-123.715v-96.361h119.435zm-268.871-30c-30.761 0-55.787-25.026-55.787-55.787 0-26.031 17.68-48.357 42.994-54.295l18.042-4.231-7.898-16.765c-5.316-11.285-8.012-23.364-8.012-35.902 0-20.163 7.227-39.675 20.348-54.942 12.989-15.112 30.908-25.174 50.457-28.332l12.457-2.012.15-12.617c.4-33.613 28.072-60.959 61.685-60.959s61.284 27.346 61.684 60.958l.15 12.617 12.457 2.012c19.549 3.158 37.468 13.22 50.457 28.332 13.122 15.268 20.348 34.779 20.348 54.942 0 12.538-2.696 24.617-8.012 35.902l-7.898 16.765 18.042 4.231c25.314 5.938 42.994 28.264 42.994 54.295 0 30.761-25.026 55.787-55.787 55.787h-119.435v-83.429l54.938-54.938-21.213-21.213-33.726 33.725v-99.405h-30v45.299l-33.726-33.725-21.213 21.213 54.938 54.938v65.785l-33.726-33.726-21.213 21.213 54.938 54.938v29.323h-119.433z'%3E%3C/path%3E%3C/svg%3E");
}
.icon-latex {
    background-image: url("data:image/svg+xml,%3Csvg id='fi_2990966' style='width:24px; height:24px' enable-background='new 0 0 512.203 512.203' viewBox='0 0 512.203 512.203'  xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m390.537 385.842c47.303 0 85.787-38.484 85.787-85.787 0-19.457-6.698-38.514-18.861-53.658-8.379-10.434-19.124-18.758-31.172-24.303 3.261-10.71 4.908-21.834 4.908-33.232 0-27.334-9.801-53.791-27.597-74.496-14.979-17.429-34.818-29.902-56.752-35.87-2.823-19.661-11.922-37.797-26.274-51.995-17.276-17.09-40.173-26.501-64.474-26.501s-47.199 9.411-64.474 26.5c-14.352 14.198-23.451 32.334-26.274 51.995-21.934 5.968-41.772 18.441-56.752 35.87-17.796 20.705-27.597 47.162-27.597 74.496 0 11.398 1.646 22.522 4.908 33.232-12.048 5.545-22.793 13.869-31.172 24.303-12.163 15.145-18.861 34.201-18.861 53.658 0 47.303 38.484 85.787 85.787 85.787h119.436v96.361h-123.716v30h277.43v-30h-123.715v-96.361h119.435zm-268.871-30c-30.761 0-55.787-25.026-55.787-55.787 0-26.031 17.68-48.357 42.994-54.295l18.042-4.231-7.898-16.765c-5.316-11.285-8.012-23.364-8.012-35.902 0-20.163 7.227-39.675 20.348-54.942 12.989-15.112 30.908-25.174 50.457-28.332l12.457-2.012.15-12.617c.4-33.613 28.072-60.959 61.685-60.959s61.284 27.346 61.684 60.958l.15 12.617 12.457 2.012c19.549 3.158 37.468 13.22 50.457 28.332 13.122 15.268 20.348 34.779 20.348 54.942 0 12.538-2.696 24.617-8.012 35.902l-7.898 16.765 18.042 4.231c25.314 5.938 42.994 28.264 42.994 54.295 0 30.761-25.026 55.787-55.787 55.787h-119.435v-83.429l54.938-54.938-21.213-21.213-33.726 33.725v-99.405h-30v45.299l-33.726-33.725-21.213 21.213 54.938 54.938v65.785l-33.726-33.726-21.213 21.213 54.938 54.938v29.323h-119.433z'%3E%3C/path%3E%3C/svg%3E");
}
.icon-reflex-foam {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs'  x='0' y='0' viewBox='0 0 682.667 682.667' style='width:24px; height:24px;enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg transform='matrix(6.123233995736766e-17,1,-1,6.123233995736766e-17,682.6670188903809,0.002010345458984375)'%3E%3Cdefs%3E%3CclipPath id='a' clipPathUnits='userSpaceOnUse'%3E%3Cpath d='M0 512h512V0H0Z' fill='%23000000' data-original='%23000000'%3E%3C/path%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(../scss/theme/%23a)' transform='matrix(1.33333 0 0 -1.33333 0 682.667)'%3E%3Cpath d='M0 0h-300c-16.568 0-30 13.432-30 30v422c0 16.568 13.432 30 30 30H0c16.568 0 30-13.432 30-30V30C30 13.432 16.568 0 0 0Z' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(406 15)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(146.606 65.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(266.606 65.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(386.606 65.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(326.606 125.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(206.606 125.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(266.606 185.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(206.606 245.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(146.606 185.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(386.606 185.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(326.606 245.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(386.606 305.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(266.606 305.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(146.606 305.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(206.606 365.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(326.606 365.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(266.606 425.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(146.606 425.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3Cpath d='m0 0-21.213 21.213' style='stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1' transform='translate(386.606 425.394)' fill='none' stroke='%23000000' stroke-width='30' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='none' stroke-opacity='' data-original='%23000000'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.icon-natural {
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 511.996 511.996' style='width:24px; height:24px; enable-background:new 0 0 511.996 511.996;' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='%23333' d='m241 452h210c8.271 0 15 6.729 15 15s-6.729 15-15 15h-105v30h105c24.813 0 45-20.187 45-45s-20.187-45-45-45h-98.069c67.516-39.052 113.069-112.283 113.069-196 0-124.617-100.935-226-225-226s-225 101.383-225 226 100.935 226 225 226zm-75-61c0-137.351 105.001-253.608 240.588-268.392 5.672 9.144 10.615 18.789 14.748 28.853-125.532 7.605-225.336 112.128-225.336 239.539 0 8.673.471 17.445 1.355 26.047-10.646-2.456-20.958-5.798-30.865-9.93-.316-5.364-.49-10.757-.49-16.117zm109.727-135.529c42.775 29.826 92.705 45.529 145.273 45.529.049 0 .099-.002.149-.002-4.276 10.339-9.407 20.233-15.307 29.594-53.455-2.786-104.18-20.23-147.889-50.815 5.349-8.532 11.293-16.652 17.774-24.306zm155.131 15.312c-3.287.142-6.58.217-9.858.217-44.664 0-87.17-12.851-123.957-37.306 8.008-7.082 16.55-13.571 25.572-19.381 29.803 17.484 63.614 26.687 98.385 26.687 4.824 0 9.655-.189 14.468-.544-.754 10.351-2.311 20.48-4.61 30.327zm-9.858-59.783c-22.875 0-45.249-4.728-65.924-13.773 23.414-9.815 48.965-15.509 75.746-16.161 2.231 9.523 3.77 19.31 4.558 29.307-4.777.414-9.582.627-14.38.627zm-192.897 210.561c-1.377-9.933-2.103-20.314-2.103-30.561 0-8.098.477-16.085 1.374-23.947 28.244 17.132 58.291 30.296 89.826 39.358-23.421 10.031-49.177 15.589-76.2 15.589-4.334 0-8.632-.158-12.897-.439zm127.169-36.844c-43.596-8.428-84.499-24.974-121.802-49.26 2.74-9.979 6.199-19.663 10.318-28.994 42.097 28.743 89.932 46.568 140.426 52.408-8.768 9.54-18.463 18.203-28.942 25.846zm30.792-289.549c-142.608 23.981-250.064 148.219-250.064 295.832 0 .032.001.064.001.096-10.46-6.744-20.237-14.467-29.209-23.034 9.867-143.39 112.443-264.622 252.174-298.018 9.8 7.508 18.875 15.922 27.098 25.124zm-127.057-17.717c-1.997-10.316-3.007-20.836-3.007-31.451 0-5.072.232-10.283.664-15.366 23.964 1.924 46.717 8.225 67.473 18.099-22.854 7.459-44.638 17.121-65.13 28.718zm-26.948 16.864c-8.848 6.1-17.403 12.58-25.64 19.418-6.913-21.811-10.419-44.509-10.419-67.733 0-3.588.092-7.193.262-10.787 9.844-2.332 19.972-3.913 30.323-4.677-.378 5.157-.585 10.377-.585 15.464 0 16.384 2.036 32.587 6.059 48.315zm-49.764 41.363c-7.874 7.837-15.38 16.03-22.496 24.551-13.826-31.464-21.684-64.832-23.424-99.559 9.367-6.01 19.277-11.234 29.636-15.588-.002.305-.011.612-.011.918 0 30.927 5.489 61.04 16.295 89.678zm-74.195-52.965c4.193 36.494 14.648 71.497 31.23 104.463-6.513 9.471-12.571 19.268-18.167 29.344-18.607-32.518-31.605-67.516-38.781-104.399 7.588-10.647 16.213-20.495 25.718-29.408zm-47.197 68.161c10.007 34.414 24.917 67.079 44.551 97.553-12.045 27.852-20.659 57.438-25.344 88.186-21.506-31.503-34.11-69.604-34.11-110.613 0-26.601 5.309-51.977 14.903-75.126z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}
.icon-hybrid {
    background-image: url("data:image/svg+xml,%3Csvg id='fi_5098637' style='width:24px; height:24px' enable-background='new 0 0 512 512' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='m475.947 194.441-17.071-9.856 17.071-9.856c19.993-11.543 20.019-40.407 0-51.964l-205.682-118.759c-9.253-5.342-20.749-5.342-30 0l-204.212 117.909c-19.994 11.543-20.018 40.407 0 51.964l17.071 9.857-17.071 9.857c-9.393 5.423-15 15.136-15 25.981v84.107c0 10.846 5.607 20.559 15 25.982l6.59 3.805-6.59 3.805c-19.994 11.543-20.018 40.407 0 51.964l205.683 118.757c9.252 5.341 20.747 5.343 30 0l204.212-117.908c19.994-11.543 20.018-40.407 0-51.964l-6.59-3.805 6.59-3.805c9.393-5.423 15-15.136 15-25.982v-84.107c0-.001 0-.001 0-.002-.002-10.845-5.609-20.557-15.001-25.98zm-204.947 219.761v-49.497c.245-.132.494-.253.735-.392l189.209-109.245-.004 49.467zm-219.947-110.527v-49.459l189.947 109.672v49.464zm204.212-273.686 205.683 118.757-204.21 117.909-.002-.001-205.683-118.758zm-172.141 171.067 158.612 91.58c9.252 5.341 20.747 5.343 30 0l157.141-90.73 32.071 18.517-204.213 117.908-205.678-118.76zm377.823 163.047-204.212 117.908-205.678-118.76 21.586-12.463 169.094 97.632c9.252 5.34 20.746 5.342 29.999-.001l167.623-96.782z'%3E%3C/path%3E%3Ccircle cx='256.025' cy='208.324' r='15'%3E%3C/circle%3E%3Ccircle cx='376.075' cy='148.321' r='15'%3E%3C/circle%3E%3Ccircle cx='315.975' cy='118.32' r='15'%3E%3C/circle%3E%3Ccircle cx='255.975' cy='148.321' r='15'%3E%3C/circle%3E%3Ccircle cx='255.975' cy='88.318' r='15'%3E%3C/circle%3E%3Ccircle cx='195.95' cy='178.323' r='15'%3E%3C/circle%3E%3Ccircle cx='316.075' cy='178.323' r='15'%3E%3C/circle%3E%3Ccircle cx='195.95' cy='118.32' r='15'%3E%3C/circle%3E%3Ccircle cx='135.925' cy='148.321' r='15'%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
}
.icon-delivery {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' stroke-width='4' style='width:24px; height:24px' stroke='%23222' fill='none' viewBox='1.71 15.94 55.63 32.63'%3E%3Cg%3E%3Cpath d='M21.68,42.22H37.17a1.68,1.68,0,0,0,1.68-1.68L44.7,19.12A1.68,1.68,0,0,0,43,17.44H17.61a1.69,1.69,0,0,0-1.69,1.68l-5,21.42a1.68,1.68,0,0,0,1.68,1.68h2.18'%3E%3C/path%3E%3Cpath d='M41.66,42.22H38.19l5-17.29h8.22a.85.85,0,0,1,.65.3l3.58,6.3a.81.81,0,0,1,.2.53L52.51,42.22h-3.6'%3E%3C/path%3E%3Cellipse cx='18.31' cy='43.31' rx='3.71' ry='3.76'%3E%3C/ellipse%3E%3Cellipse cx='45.35' cy='43.31' rx='3.71' ry='3.76'%3E%3C/ellipse%3E%3Cline x1='23.25' y1='22.36' x2='6.87' y2='22.36' stroke-linecap='round'%3E%3C/line%3E%3Cline x1='20.02' y1='27.6' x2='8.45' y2='27.6' stroke-linecap='round'%3E%3C/line%3E%3Cline x1='21.19' y1='33.5' x2='3.21' y2='33.5' stroke-linecap='round'%3E%3C/line%3E%3C/g%3E%3C/svg%3E");
    height: 13px;
    width: 22px;
}
.icon-sleeptrial {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' version='1.1'  x='0' y='0' viewBox='0 0 512 512' style='width:24px;height:24px;enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg%3E%3Cpath d='M512 12.275C494.669 4.608 475.498.341 455.327.341c-77.442 0-140.222 62.779-140.222 140.221s62.78 140.221 140.222 140.221c20.171 0 39.342-4.266 56.673-11.934-100.981-87.328-100.657-172.816 0-256.574z' fill='%23222' data-original='%23000000' class=''/%3E%3Cpath d='M332.565 263.326c-15.933-15.933-28.447-34.497-37.193-55.175-9.062-21.426-13.657-44.166-13.657-67.588 0-1.611.027-3.217.07-4.822-15.112-5.124-31.294-7.905-48.115-7.905-82.795 0-150.153 67.359-150.153 150.153s67.358 150.154 150.153 150.154c75.952 0 138.903-56.687 148.793-129.972-18.566-8.584-35.334-20.281-49.898-34.845zm-82.199 25.816-90.824 37.651-12.787-30.846 70.22-29.109v-93.739h33.391v116.043z' fill='%23222' data-original='%23000000' class=''/%3E%3Cpath d='M455.327 314.175c-13.886 0-27.529-1.628-40.803-4.832-14.921 86.321-90.336 152.191-180.854 152.191-101.207 0-183.544-82.339-183.544-183.544S132.463 94.445 233.67 94.445c18.175 0 35.737 2.668 52.328 7.612a172.596 172.596 0 0 1 9.374-29.083 173.827 173.827 0 0 1 8.757-17.79c-22.243-7.05-45.913-10.864-70.459-10.864C104.824 44.32 0 149.144 0 277.989s104.824 233.67 233.67 233.67c116.625 0 213.564-85.884 230.904-197.726a176.47 176.47 0 0 1-9.247.242z' fill='%23222' data-original='%23000000' class=''/%3E%3C/g%3E%3C/svg%3E");
}
.icon-fibre-fillings {
    background-image: url("data:image/svg+xml,%3Csvg id='fi_5482820' style='width:24px; height:24px' enable-background='new 0 0 512 512' viewBox='0 0 512 512' fill='%23222' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m475.967 318.625c3.809 1.098 7.922.64 11.408-1.289 3.481-1.926 6.055-5.155 7.155-8.978l16.593-57.66c2.291-7.961-2.306-16.272-10.267-18.563-8.101-2.285-32.271-9.141-39.857-11.796v-47.272l14.967 4.307c3.809 1.098 7.922.64 11.408-1.289 3.481-1.926 6.055-5.155 7.155-8.978l16.593-57.66c2.291-7.961-2.306-16.272-10.267-18.563l-28.831-8.297c-3.507-1.009-7.097-2.148-11.027-3.495v-64.092c0-8.284-6.716-15-15-15h-60c-8.284 0-15 6.716-15 15v37.151c-24.594-2.712-48.03 3.166-70 12.586v-49.737c0-8.284-6.716-15-15-15h-60c-8.284 0-15 6.716-15 15v49.722c-12.365-5.137-24.399-9.338-37.661-11.558-10.934-1.858-21.441-2.006-32.339-1.015v-37.149c0-8.284-6.716-15-15-15h-59.997c-8.284 0-15 6.716-15 15v64.029c-3.545 1.249-7.263 2.477-11.028 3.56l-28.83 8.297c-7.961 2.291-12.558 10.602-10.267 18.563l16.593 57.66c1.1 3.823 3.674 7.052 7.155 8.978 3.487 1.929 7.599 2.386 11.408 1.289l14.969-4.308v47.207c-3.691 1.301-7.378 2.514-11.027 3.564l-28.83 8.296c-3.823 1.1-7.052 3.674-8.978 7.155-1.926 3.481-2.389 7.585-1.289 11.408l16.593 57.66c1.1 3.823 3.674 7.052 7.155 8.978 3.487 1.929 7.599 2.386 11.408 1.289l14.968-4.307v47.211c-3.545 1.249-7.263 2.477-11.028 3.56l-28.83 8.297c-7.961 2.291-12.558 10.602-10.267 18.563l16.593 57.66c1.1 3.823 3.674 7.052 7.155 8.978 3.487 1.929 7.599 2.386 11.408 1.289l14.969-4.308v41.432c0 8.284 6.716 15 15 15h60c8.284 0 15-6.716 15-15v-71.517c.933-.184 1.86-.361 2.768-.513 14.022-3.242 26.863 2.557 40.552 8.723l2.581 1.147c8.244 3.647 16.137 7.04 24.1 9.906v52.253c0 8.284 6.716 15 15 15h60c8.284 0 15-6.716 15-15 0 0 0-52.278 0-52.286 0-.501 9.26-3.544 10.234-3.941 14.036-5.329 27.379-13.636 42.289-16.344 6.042-.897 10.87-.121 17.477 1.056v71.516c0 8.284 6.716 15 15 15h60c8.284 0 15-6.716 15-15v-41.432l14.967 4.307c3.809 1.098 7.922.64 11.408-1.289 3.481-1.926 6.055-5.155 7.155-8.978l16.593-57.66c2.291-7.961-2.306-16.272-10.267-18.563l-28.831-8.297c-3.507-1.009-7.097-2.148-11.027-3.495v-47.275zm2.179-61.808-8.296 28.83c-27.171-6.763-52.907-18.755-79.407-27.427-13.575-3.946-27.691-6.893-41.875-4.629-11.76 1.969-23.221 7.062-33.332 11.556l-2.273 1.008c-4.014 1.776-7.997 3.516-11.963 5.157v-32.669c27.128-12.476 49.411-19.365 77.137-14.1 30.04 5.074 55.989 19.718 85.594 28.126 0 0 14.415 4.148 14.415 4.148zm-107.146 77.834c-24.594-2.712-48.03 3.166-70 12.586v-43.757c8.177-2.936 16.1-6.351 24.099-9.89 9.129-4.05 18.49-8.749 28.424-10.412 5.983-.923 11.344-.05 17.477 1.06zm-197.661 1.014c-10.934-1.858-21.441-2.006-32.339-1.015v-50.424c.925-.182 1.847-.352 2.766-.506 14.025-3.241 26.863 2.556 40.554 8.724l2.581 1.147c8.314 3.678 16.11 7.039 24.099 9.909v43.723c-12.365-5.138-24.399-9.339-37.661-11.558zm-32.338-192.683c17.65-4.282 30.83 2.581 46.468 9.607 3.881 1.722 7.776 3.415 11.698 5.043 1.123.466 11.833 4.047 11.833 4.615v43.726c-12.364-5.137-24.399-9.338-37.663-11.558-10.846-1.86-21.62-1.997-32.337-1.017 0-.001 0-50.416.001-50.416zm99.999 86.054c0-.047 0-.095 0-.142v-59.078c10.004 1.356 20.211 1.338 30 .007v59.055.144 63.247.027 67.661c-3.725 1.342-7.37 2.424-10.732 2.987-6.624 1.136-11.956-.479-19.268-2.987zm130-35.635c-24.594-2.712-48.029 3.166-70 12.587 0 0 0-43.772 0-43.773 0-.624 11.971-4.657 13.223-5.178 13.776-5.611 28.376-14.888 43.568-15.498 3.999 0 8.379.486 13.209 1.446zm92.731-81.982 14.415 4.148-8.296 28.83-8.85-2.547v-31.237c.919.278 1.829.546 2.731.806zm-32.731-81.419v179.043c-9.627-3.683-19.521-7.258-30-10.116v-168.927zm-160 0v47.458c-11.198 4.251-18.306 4.47-30 0v-47.458zm-116.792 51.54c20.564-.123 40.103 8.438 58.61 16.621 12.426 5.443 25.229 11.075 38.894 12.31 42.23 2.392 70.193-35.444 119.288-28.15v30.241c-7.925-1.092-14.659-1.525-22.432-.221-16.087 2.693-30.497 10.575-45.321 16.891-35.971 16.325-64.046 14.384-99.401-2.151-19.655-9.17-40.539-18.957-62.846-14.522v-30.261c4.47-.503 8.852-.758 13.208-.758zm-43.208-51.54v168.911c-9.849 2.675-19.707 6.083-30 9.952v-178.863zm-68.849 114.397-8.296-28.83 14.414-4.148c.918-.264 1.827-.536 2.732-.811v31.243zm-8.297 112.42s14.414-4.148 14.414-4.148c39.379-11.44 77.634-35.511 120.116-28.667 14.132 2.366 27.125 7.791 42.616 14.641v32.68c-3.885-1.613-7.85-3.348-11.964-5.168l-2.508-1.115c-12.251-5.458-27.498-12.25-42.319-12.25-34.392.2-65.592 18.678-97.643 28.709 0 0-14.415 4.148-14.415 4.148zm8.297 170.08-8.296-28.83 14.414-4.148c.918-.264 1.827-.536 2.732-.811v31.243zm38.849 55.103v-176.996c5.994-2.18 11.947-4.514 17.794-6.813 4.128-1.623 8.195-3.22 12.206-4.74v188.549zm190 0h-30v-29.685c10.003 1.356 20.211 1.338 30 .008zm86.792-87.96c-2.947 0-6.051.27-9.224.801-11.76 1.969-23.221 7.062-33.332 11.556-45.405 20.772-73.597 21.811-118.708-.108-16.489-7.748-36.055-15.104-55.528-11.23v-30.261c9.318-1.026 18.053-1.132 27.385.455 24.833 3.467 50.5 21.305 76.217 26.932 42.97 7.261 76.313-35.215 126.398-27.363v30.241c-4.603-.671-8.999-1.023-13.208-1.023zm43.208 87.96v-188.305c9.983 3.852 19.909 7.851 30 11.415v176.89zm62.731-88.081 14.415 4.148-8.296 28.83-8.85-2.547v-31.237c.919.278 1.829.546 2.731.806z'%3E%3C/path%3E%3C/svg%3E");
}
.icon-eco-comfort {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='width:24px; height:24px' fill='%23222'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath d='M15.49 9.63c-.18-2.79-1.31-5.51-3.43-7.63-2.14 2.14-3.32 4.86-3.55 7.63 1.28.68 2.46 1.56 3.49 2.63 1.03-1.06 2.21-1.94 3.49-2.63zm-3.44-4.44c.63 1.03 1.07 2.18 1.3 3.38-.47.3-.91.63-1.34.98-.42-.34-.87-.67-1.33-.97.25-1.2.71-2.35 1.37-3.39zM12 15.45c-.82-1.25-1.86-2.34-3.06-3.2-.13-.09-.27-.16-.4-.26.13.09.27.17.39.25C6.98 10.83 4.59 10 2 10c0 5.32 3.36 9.82 8.03 11.49.63.23 1.29.4 1.97.51.68-.12 1.33-.29 1.97-.51C18.64 19.82 22 15.32 22 10c-4.18 0-7.85 2.17-10 5.45zm1.32 4.15c-.44.15-.88.27-1.33.37-.44-.09-.87-.21-1.28-.36-3.29-1.18-5.7-3.99-6.45-7.35 1.1.26 2.15.71 3.12 1.33l-.02.01c.13.09.26.18.39.25l.07.04c.99.72 1.84 1.61 2.51 2.65L12 19.1l1.67-2.55c.69-1.05 1.55-1.95 2.53-2.66l.07-.05c.09-.05.18-.11.27-.17l-.01-.02c.98-.65 2.07-1.13 3.21-1.4-.75 3.37-3.15 6.18-6.42 7.35zm-4.33-7.32c-.02-.01-.04-.03-.05-.04 0 0 .01 0 .01.01.01.01.02.02.04.03z'/%3E%3C/svg%3E");
}
.icon-memory-foam {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' style='width:24px; height:24px' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' x='0' y='0' viewBox='0 0 512 512' xml:space='preserve' class=''%3E%3Cg%3E%3Cpath d='m439.548 60.542c-24.364-.798-47.211 9.503-62.886 26.788-32.414-35.748-88.063-35.745-120.475 0-32.414-35.748-88.063-35.745-120.475 0-15.831-17.457-38.758-27.582-62.882-26.788-40.689 1.314-72.83 35.291-72.83 76.199v269.76c0 24.813 20.187 45 45 45h422c24.813 0 45-20.187 45-45v-270.15c0-40.669-31.945-74.501-72.452-75.809zm42.452 345.959c0 8.271-6.729 15-15 15h-422c-8.271 0-15-6.729-15-15v-269.76c0-24.703 19.648-45.435 43.805-46.214 20.672-.672 39.691 11.325 48.288 29.958 5.352 11.6 21.889 11.6 27.24 0 18.358-39.794 74.791-39.978 93.234 0 5.352 11.601 21.889 11.601 27.24 0 18.358-39.794 74.791-39.978 93.234 0 5.352 11.601 21.888 11.601 27.24 0 8.64-18.725 27.701-30.621 48.292-29.958 23.947.773 43.427 21.329 43.427 45.824z'%3E%3C/path%3E%3Ccircle cx='316.425' cy='180.501' r='15'%3E%3C/circle%3E%3Ccircle cx='196.05' cy='180.501' r='15'%3E%3C/circle%3E%3Ccircle cx='435.95' cy='180.501' r='15'%3E%3C/circle%3E%3Ccircle cx='76.05' cy='180.501' r='15'%3E%3C/circle%3E%3Ccircle cx='316.425' cy='300.501' r='15'%3E%3C/circle%3E%3Ccircle cx='196.05' cy='300.501' r='15'%3E%3C/circle%3E%3Ccircle cx='435.95' cy='300.501' r='15'%3E%3C/circle%3E%3Ccircle cx='76.05' cy='300.501' r='15'%3E%3C/circle%3E%3Ccircle cx='135.95' cy='240.501' r='15'%3E%3C/circle%3E%3Ccircle cx='255.95' cy='240.501' r='15'%3E%3C/circle%3E%3Ccircle cx='375.95' cy='240.501' r='15'%3E%3C/circle%3E%3Ccircle cx='135.95' cy='361.001' r='15'%3E%3C/circle%3E%3Ccircle cx='255.95' cy='361.001' r='15'%3E%3C/circle%3E%3Ccircle cx='375.95' cy='360.501' r='15'%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
}
.icon-measurement {
    background-image: url("data:image/svg+xml,%3Csvg id='fi_4621520' style='width:24px; height:24px' enable-background='new 0 0 512 512' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='m271.059 143.059v225.882h67.765c12.335 0 19.438 14.017 12.144 23.964l-82.824 112.941c-6.017 8.205-18.27 8.205-24.287 0l-82.824-112.941c-7.294-9.947-.191-23.964 12.143-23.964h67.765v-225.882h-67.765c-12.335 0-19.438-14.017-12.143-23.964l82.824-112.941c6.017-8.205 18.27-8.205 24.287 0l82.824 112.941c7.294 9.947.191 23.964-12.144 23.964zm-68.165-30.118h106.213l-53.107-72.418zm106.212 286.118h-106.212l53.106 72.418z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}
.icon-rolled {
    background-image: url("data:image/svg+xml,%3Csvg id='fi_11321816' style='width:24px; height:24px' enable-background='new 0 0 512 512' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='m360.209 256c0-82.768-67.336-150.104-150.105-150.104s-150.104 67.336-150.104 150.104 67.336 150.104 150.104 150.104 150.105-67.336 150.105-150.104zm-270.209 0c0-66.226 53.878-120.105 120.104-120.105s120.105 53.879 120.105 120.105-53.878 120.104-120.105 120.104-120.104-53.878-120.104-120.104z'%3E%3C/path%3E%3Cpath d='m300.209 256c0-49.684-40.421-90.105-90.105-90.105s-90.104 40.421-90.104 90.105 40.421 90.104 90.104 90.104 90.105-40.42 90.105-90.104zm-150.209 0c0-33.142 26.963-60.105 60.104-60.105s60.105 26.963 60.105 60.105-26.963 60.104-60.105 60.104-60.104-26.962-60.104-60.104z'%3E%3C/path%3E%3Cpath d='m497 436.104h-178.81c61.077-36.792 102.019-103.754 102.019-180.104 0-115.852-94.253-210.104-210.105-210.104s-210.104 94.252-210.104 210.104 94.252 210.104 210.104 210.104h286.896c8.284 0 15-6.716 15-15s-6.716-15-15-15zm-467-180.104c0-99.31 80.794-180.104 180.104-180.104s180.105 80.794 180.105 180.104-80.794 180.104-180.105 180.104-180.104-80.794-180.104-180.104z'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E");
}
.icon-pillow-top {
    background-image: url("data:image/svg+xml,%3Csvg id='fi_3884358'  style='width:24px; height:24px' enable-background='new 0 0 512.228 512.228' viewBox='0 0 512.228 512.228' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='m511.79 426.083c-11.763-.049-22.865-4.73-31.236-13.176-.4-.404-.772-.837-1.123-1.284l-17.106-21.8c-1.314-1.675-2.81-2.932-4.33-3.637-4.784-2.219-10.508-1.201-14.243 2.532l-24.335 24.336c-17.343 17.344-45.562 17.344-62.906 0l-24.337-24.336c-4.929-4.93-12.922-4.93-17.852 0l-24.313 24.313c-17.342 17.344-45.562 17.343-62.906.001l-24.04-24.042c-2.365-2.365-5.514-3.877-8.857-3.964-3.499-.091-6.803 1.229-9.267 3.693l-24.279 24.28c-17.277 17.276-45.441 17.331-62.782.124-7.67-7.613-15.94-15.844-23.636-23.52-.33-.28-.65-.574-.959-.884-4.921-4.92-12.93-4.922-17.853 0l-24.278 24.28c-8.354 8.354-19.396 12.982-31.091 13.031h-.061v31.222c0 9.778 7.927 17.705 17.705 17.705h476.817c9.778 0 17.705-7.927 17.705-17.705v-31.186c-.125.003-.245.019-.37.019h-.067z'%3E%3C/path%3E%3Cpath d='m494.522 308.336h-476.817c-9.778 0-17.705 7.927-17.705 17.705v68.125c3.255-.032 6.235-1.306 8.624-3.695l23.761-23.762c8.312-8.313 19.471-13.349 31.225-13.54 11.636-.189 22.635 4.055 31.076 11.937.4.328.787.677 1.158 1.047 7.928 7.91 16.525 16.466 24.475 24.356 4.919 4.879 12.909 4.865 17.813-.038l24.279-24.28c17.345-17.345 45.564-17.343 62.906 0l24.312 24.313c4.922 4.92 12.93 4.922 17.852 0l24.313-24.313c17.371-17.371 45.534-17.371 62.905 0l24.065 24.065c2.365 2.365 5.514 3.876 8.857 3.964 3.499.091 6.802-1.229 9.267-3.693l24.335-24.336c13.15-13.149 33.315-16.73 50.181-8.903 6.057 2.812 11.583 7.261 15.983 12.869l16.403 20.904c2.304 2.061 5.1 3.152 8.131 3.164.103 0 .202.014.305.017v-68.201c.002-9.778-7.925-17.705-17.704-17.705z'%3E%3C/path%3E%3Cpath d='m87.355 120.959h24.325v38.687c0 8.284 6.716 15 15 15s15-6.716 15-15v-38.687h24.324c8.284 0 15-6.716 15-15s-6.716-15-15-15h-24.324v-38.687c0-8.284-6.716-15-15-15s-15 6.716-15 15v38.687h-24.325c-8.284 0-15 6.716-15 15s6.716 15 15 15z'%3E%3C/path%3E%3Ccircle cx='103.357' cy='224.665' r='16.992'%3E%3C/circle%3E%3Cpath d='m422.368 208.366c-9.384 0-16.992 7.607-16.992 16.992s7.607 16.992 16.992 16.992c9.384 0 16.991-7.607 16.991-16.992s-7.607-16.992-16.991-16.992z'%3E%3C/path%3E%3Cpath d='m240.519 159.286c0 7.417 5.421 13.721 12.754 14.831l27.649 4.187c20.582 3.116 36.504 19.039 39.621 39.621l4.186 27.648c1.11 7.334 7.414 12.755 14.831 12.755s13.721-5.421 14.831-12.754l4.187-27.649c3.116-20.582 19.039-36.505 39.622-39.621l27.648-4.187c7.333-1.11 12.754-7.414 12.754-14.831s-5.421-13.721-12.755-14.831l-27.647-4.186c-20.583-3.117-36.506-19.04-39.622-39.623l-4.187-27.647c-1.11-7.333-7.414-12.754-14.831-12.754s-13.721 5.421-14.831 12.755l-4.186 27.646c-3.117 20.583-19.04 36.506-39.621 39.623l-27.648 4.186c-7.334 1.11-12.755 7.414-12.755 14.831z'%3E%3C/path%3E%3Ccircle cx='250.187' cy='74.226' r='16.992'%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
}
.icon-multiplesuiters {
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='fi_839860'  style='width:24px; height:24px' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 438.891 438.891' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cg%3E%3Cpath d='M347.968,57.503h-39.706V39.74c0-5.747-6.269-8.359-12.016-8.359h-30.824c-7.314-20.898-25.6-31.347-46.498-31.347 c-20.668-0.777-39.467,11.896-46.498,31.347h-30.302c-5.747,0-11.494,2.612-11.494,8.359v17.763H90.923 c-23.53,0.251-42.78,18.813-43.886,42.318v299.363c0,22.988,20.898,39.706,43.886,39.706h257.045 c22.988,0,43.886-16.718,43.886-39.706V99.822C390.748,76.316,371.498,57.754,347.968,57.503z M151.527,52.279h28.735 c5.016-0.612,9.045-4.428,9.927-9.404c3.094-13.474,14.915-23.146,28.735-23.51c13.692,0.415,25.335,10.117,28.212,23.51 c0.937,5.148,5.232,9.013,10.449,9.404h29.78v41.796H151.527V52.279z M370.956,399.185c0,11.494-11.494,18.808-22.988,18.808 H90.923c-11.494,0-22.988-7.314-22.988-18.808V99.822c1.066-11.964,10.978-21.201,22.988-21.42h39.706v26.645 c0.552,5.854,5.622,10.233,11.494,9.927h154.122c5.98,0.327,11.209-3.992,12.016-9.927V78.401h39.706 c12.009,0.22,21.922,9.456,22.988,21.42V399.185z'%3E%3C/path%3E%3Cpath d='M179.217,233.569c-3.919-4.131-10.425-4.364-14.629-0.522l-33.437,31.869l-14.106-14.629 c-3.919-4.131-10.425-4.363-14.629-0.522c-4.047,4.24-4.047,10.911,0,15.151l21.42,21.943c1.854,2.076,4.532,3.224,7.314,3.135 c2.756-0.039,5.385-1.166,7.314-3.135l40.751-38.661c4.04-3.706,4.31-9.986,0.603-14.025 C179.628,233.962,179.427,233.761,179.217,233.569z'%3E%3C/path%3E%3Cpath d='M329.16,256.034H208.997c-5.771,0-10.449,4.678-10.449,10.449s4.678,10.449,10.449,10.449H329.16 c5.771,0,10.449-4.678,10.449-10.449S334.931,256.034,329.16,256.034z'%3E%3C/path%3E%3Cpath d='M179.217,149.977c-3.919-4.131-10.425-4.364-14.629-0.522l-33.437,31.869l-14.106-14.629 c-3.919-4.131-10.425-4.364-14.629-0.522c-4.047,4.24-4.047,10.911,0,15.151l21.42,21.943c1.854,2.076,4.532,3.224,7.314,3.135 c2.756-0.039,5.385-1.166,7.314-3.135l40.751-38.661c4.04-3.706,4.31-9.986,0.603-14.025 C179.628,150.37,179.427,150.169,179.217,149.977z'%3E%3C/path%3E%3Cpath d='M329.16,172.442H208.997c-5.771,0-10.449,4.678-10.449,10.449s4.678,10.449,10.449,10.449H329.16 c5.771,0,10.449-4.678,10.449-10.449S334.931,172.442,329.16,172.442z'%3E%3C/path%3E%3Cpath d='M179.217,317.16c-3.919-4.131-10.425-4.363-14.629-0.522l-33.437,31.869l-14.106-14.629 c-3.919-4.131-10.425-4.363-14.629-0.522c-4.047,4.24-4.047,10.911,0,15.151l21.42,21.943c1.854,2.076,4.532,3.224,7.314,3.135 c2.756-0.039,5.385-1.166,7.314-3.135l40.751-38.661c4.04-3.706,4.31-9.986,0.603-14.025 C179.628,317.554,179.427,317.353,179.217,317.16z'%3E%3C/path%3E%3Cpath d='M329.16,339.626H208.997c-5.771,0-10.449,4.678-10.449,10.449s4.678,10.449,10.449,10.449H329.16 c5.771,0,10.449-4.678,10.449-10.449S334.931,339.626,329.16,339.626z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E");
}
.icon-adults {
    background-image: url("data:image/svg+xml,%3Csvg id='fi_3741589' style='width:24px; height:24px' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cg%3E%3Cpath d='m32 41c-3.4 0-4.6-.8-5.7-1.6-.3-.2-.5-.4-.8-.5-3-1.8-5.2-4.9-6.2-9.3-1.4-.5-3.3-2-3.3-5.6 0-2.8 1.3-3.7 1.4-3.8.5-.3 1.1-.2 1.4.3s.2 1.1-.3 1.4-.6.5-.6 2.2c0 3.4 2.1 3.8 2.3 3.8.4.1.8.4.9.8.6 2.8 1.9 6.6 5.3 8.6.4.2.7.4 1 .6 1 .7 1.8 1.2 4.5 1.2s3.5-.5 4.5-1.2c.3-.2.6-.4 1-.6 3.4-2 4.8-5.7 5.3-8.6.1-.4.5-.8.9-.8.2 0 2.3-.4 2.3-3.8 0-1.7-.6-2.2-.6-2.2-.5-.3-.6-.9-.2-1.4.3-.5 1-.6 1.4-.2.1.1 1.4 1.1 1.4 3.8 0 3.6-1.9 5.1-3.3 5.6-1 4.3-3.1 7.5-6.2 9.3-.3.2-.6.4-.8.5-1 .7-2.2 1.5-5.6 1.5z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m46 22c-3 0-3.8-2.7-4.5-4.9-.7-2.5-1.3-4.1-3.5-4.1-1.5 0-2.5.3-3.4.5-.9.3-1.6.5-2.6.5s-1.7-.2-2.6-.5c-.9-.2-1.9-.5-3.4-.5-2.2 0-2.8 1.6-3.5 4.1-.7 2.2-1.5 4.9-4.5 4.9-.6 0-1-.4-1-1s.4-1 1-1c1.4 0 1.8-1.1 2.6-3.5.7-2.3 1.7-5.5 5.4-5.5 1.8 0 3 .3 4 .6.7.2 1.3.4 2 .4s1.3-.2 2-.4c1-.3 2.2-.6 4-.6 3.8 0 4.7 3.2 5.4 5.5.7 2.4 1.2 3.5 2.6 3.5.6 0 1 .4 1 1s-.4 1-1 1z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m62 63c-.6 0-1-.4-1-1 0-5.5 0-9.9-7.8-11.8-6.5-1.5-14.2-4.5-14.2-9.6v-4.1c0-.6.4-1 1-1s1 .4 1 1v4.1c0 2.9 4.6 5.7 12.6 7.7 9.4 2.2 9.4 8.3 9.4 13.6 0 .6-.4 1.1-1 1.1z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m2 62h-1c0-5.4 0-11.5 9.4-13.7 8-1.9 12.6-4.7 12.6-7.7v-4.1c0-.6.4-1 1-1s1 .4 1 1v4.1c0 5.1-7.7 8.1-14.2 9.6-7.8 1.9-7.8 6.3-7.8 11.7z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m46.3 22.3c-.1 0-.2 0-.4-.1-.5-.2-.8-.8-.6-1.3.7-1.7.7-3.9.7-5.8 0-8.1-4.6-12.1-14-12.1-5.1 0-7.1 1.9-8.2 3.6-.1.2-.3.3-.5.4-2.5 1-5.4 4-5.4 9.1 0 2.1 0 3.2.7 4.9.2.5-.1 1.1-.6 1.3s-1.1-.1-1.3-.6c-.7-2.1-.7-3.6-.7-5.7 0-5.9 3.4-9.5 6.3-10.8 2.1-2.9 5.2-4.2 9.7-4.2 10.6 0 16 4.8 16 14.2 0 1.9 0 4.4-.8 6.5-.1.3-.5.6-.9.6z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m37 56c-.3 0-.6-.1-.8-.4l-5-6c-.2-.3-.3-.7-.2-1s.4-.6.8-.6c3.4-.5 6.4-2.4 8.4-5.2.3-.5.9-.6 1.4-.2.5.3.6.9.2 1.4-2 2.8-4.8 4.8-8.1 5.7l3.9 4.7c.4.4.3 1.1-.1 1.4 0 .1-.3.2-.5.2z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m27 56c-.2 0-.5-.1-.6-.2-.4-.4-.5-1-.1-1.4l3.9-4.7c-3.2-.9-6.1-2.9-8.1-5.7-.3-.5-.2-1.1.2-1.4.5-.3 1.1-.2 1.4.2 2 2.8 5 4.7 8.4 5.2.4.1.7.3.8.6s.1.7-.2 1l-5 6c-.1.3-.4.4-.7.4z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m37 56c-.3 0-.7-.2-.8-.5-.3-.5-.1-1.1.3-1.4 3.3-2.1 6.2-4.8 8.3-8.1.3-.5.9-.6 1.4-.3s.6.9.3 1.4c-2.3 3.5-5.4 6.5-8.9 8.7-.2.2-.4.2-.6.2z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m27 56c-.2 0-.4 0-.5-.2-3.5-2.2-6.6-5.2-8.9-8.7-.3-.5-.2-1.1.3-1.4s1.1-.2 1.4.3c2.1 3.2 5 6 8.3 8.1.5.3.6.9.3 1.4-.2.3-.6.5-.9.5z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m35 63c-.5 0-.9-.3-1-.8l-1-5c0-.2 0-.4 0-.6l1.5-3.8c.2-.5.8-.8 1.3-.6s.8.8.6 1.3l-1.4 3.6.9 4.7c.1.5-.2 1.1-.8 1.2 0 0 0 0-.1 0z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m29 63c-.1 0-.1 0-.2 0-.5-.1-.9-.6-.8-1.2l.9-4.7-1.4-3.6c-.2-.5.1-1.1.6-1.3s1.1.1 1.3.6l1.5 3.8c.1.2.1.4 0 .6l-1 5c0 .5-.4.8-.9.8z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m34 58h-4c-.6 0-1-.4-1-1s.4-1 1-1h4c.6 0 1 .4 1 1s-.4 1-1 1z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.icon-teens {
    background-image: url("data:image/svg+xml,%3Csvg id='fi_3741682' style='width:24px; height:24px' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cg%3E%3Cpath d='m47 48.2c-.1 0-.3 0-.4-.1-5-2.1-7.6-4.6-7.6-7.6v-4.1c0-.6.4-1 1-1s1 .4 1 1v4.1c0 2.6 3.5 4.5 6.4 5.7.5.2.8.8.5 1.3-.2.5-.5.7-.9.7z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m17 48.2c-.4 0-.8-.2-.9-.6-.2-.5 0-1.1.5-1.3 2.9-1.2 6.4-3.1 6.4-5.7v-4.1c0-.6.4-1 1-1s1 .4 1 1v4.1c0 3-2.6 5.5-7.6 7.6-.1 0-.3 0-.4 0z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m62 63c-.6 0-1-.4-1-1 0-4.3 0-7.8-7.9-11.8l-.3-.1c-.5-.1-.9-.6-.8-1.2.1-.5.7-.9 1.2-.8l.4.1c.1 0 .2 0 .2.1 9.2 4.7 9.2 9.1 9.2 13.7 0 .6-.4 1-1 1z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m2 63c-.6 0-1-.4-1-1 0-4.6 0-9 9.1-13.6.1 0 .2-.1.2-.1l.4-.1c.5-.1 1.1.2 1.2.8.1.5-.2 1.1-.8 1.2l-.3.1c-7.8 3.9-7.8 7.4-7.8 11.7 0 .6-.4 1-1 1z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m32 41c-3.4 0-4.6-.8-5.7-1.6-.3-.2-.5-.4-.8-.5-3-1.8-5.2-4.9-6.2-9.3-1.4-.5-3.3-2-3.3-5.6 0-.3 0-.5 0-.8.1-.7.4-1.3 1-1.8.6-.4 1.3-.6 2-.5.3 0 .6-.1.7-2.2.1-1.2.1-2.8.7-4.2 1.3-3 5.2-4.5 11.6-4.5s10.3 1.5 11.6 4.6c.6 1.4.7 2.9.7 4.2.1 2.2.3 2.2.7 2.2.7-.1 1.4 0 2 .4s.9 1.1 1 1.8v.8c0 3.6-1.9 5.1-3.3 5.6-1 4.3-3.1 7.5-6.2 9.3-.3.2-.6.4-.8.5-1.1.8-2.3 1.6-5.7 1.6zm-13.5-18c-.1 0-.2 0-.3.1s-.2.2-.2.4v.6c0 3.4 2.1 3.8 2.3 3.8.4.1.8.4.9.8.6 2.8 1.9 6.6 5.3 8.6.4.2.7.4 1 .6 1 .7 1.8 1.2 4.5 1.2s3.5-.5 4.5-1.2c.3-.2.6-.4 1-.6 3.4-2 4.8-5.7 5.3-8.6.1-.4.5-.8.9-.8.2 0 2.3-.4 2.3-3.8 0-.2 0-.4 0-.6 0-.1-.1-.3-.2-.4s-.3-.1-.4-.1c-.2 0-.4 0-.4 0-2.5 0-2.6-2.4-2.7-4.1-.1-1.1-.1-2.4-.6-3.5-1-2.2-4.3-3.4-9.8-3.4s-8.8 1.2-9.8 3.4c-.5 1-.5 2.3-.6 3.5.1 1.7 0 4.1-2.5 4.1 0 0-.2 0-.5 0 .1 0 .1 0 0 0z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m33.5 3.7c-.3 0-.6-.1-.8-.4s-.5-.3-.7-.3-.5 0-.7.3c-.3.4-1 .5-1.4.2s-.5-1-.2-1.4c.6-.7 1.4-1.1 2.3-1.1s1.7.4 2.3 1.1c.3.4.3 1.1-.2 1.4-.2.1-.4.2-.6.2z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m36.8 4.3c-.4 0-.8-.2-.9-.6-.1-.3-.4-.5-.7-.6s-.7.1-.9.3c-.4.4-1 .4-1.4.1-.4-.4-.4-1-.1-1.4.7-.8 1.7-1.1 2.8-.9 1 .2 1.9.9 2.2 1.9.2.5-.1 1.1-.6 1.3-.2-.1-.3-.1-.4-.1z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m27.2 4.3c-.1 0-.2 0-.4-.1-.5-.2-.8-.8-.6-1.3.4-1 1.2-1.7 2.2-1.9s2.1.2 2.8.9c.4.4.3 1-.1 1.4s-1 .3-1.4-.1c-.2-.2-.6-.4-.9-.3s-.6.3-.7.6c-.1.6-.5.8-.9.8z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m40 5.7c-.5 0-.9-.4-1-.9 0-.4-.3-.7-.6-.8s-.7-.1-1 .1c-.4.4-1 .3-1.4-.1-.3-.4-.3-1.1.2-1.4.9-.7 2-.8 3-.4s1.7 1.4 1.8 2.5c.1.5-.3 1-1 1 .1 0 .1 0 0 0z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m24 5.7c-.1 0-.1 0 0 0-.6-.1-1-.5-1-1.1.1-1.1.8-2 1.8-2.5 1-.4 2.2-.3 3 .4.4.3.5 1 .2 1.4s-1 .5-1.4.2c-.3-.2-.7-.3-1-.1-.4.1-.6.4-.6.8-.1.5-.5.9-1 .9z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m43.4 8c-.6 0-1-.5-1-1s-.2-.9-.6-1.2-.9-.3-1.3-.1c-.5.2-1.1 0-1.3-.5s0-1.1.5-1.3c1.1-.5 2.3-.4 3.3.3s1.5 1.8 1.5 2.9c-.1.5-.6.9-1.1.9z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m20.6 8c-.5 0-1-.4-1-1-.1-1.2.5-2.3 1.5-2.9 1-.7 2.2-.8 3.3-.3.5.2.7.8.5 1.3s-.8.7-1.3.5c-.4-.2-.9-.1-1.3.1-.5.3-.7.8-.7 1.3s-.4 1-1 1z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m46.1 11.1c-.1 0-.3 0-.4-.1-.5-.2-.7-.8-.5-1.3s.1-1-.2-1.4c-.3-.3-.9-.5-1.3-.3-.5.2-1.1-.1-1.2-.7-.2-.5.1-1.1.7-1.2 1.2-.4 2.6 0 3.4 1s1 2.4.5 3.5c-.3.3-.6.5-1 .5z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m17.9 11.1c-.4 0-.7-.2-.9-.6-.5-1.1-.3-2.5.5-3.5s2.2-1.4 3.4-1c.5.2.8.7.7 1.2-.2.5-.7.8-1.2.7s-1 0-1.3.4-.4.9-.2 1.4 0 1.1-.5 1.3c-.2.1-.3.1-.5.1z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m47 14.4c-.3 0-.6-.1-.8-.4-.4-.4-.3-1.1.1-1.4.3-.2.4-.6.3-.9s-.4-.6-.7-.6c-.5-.1-.9-.6-.8-1.1s.6-.9 1.1-.8c1.1.2 2 1 2.3 2 .3 1.1-.1 2.2-.9 3-.1.1-.4.2-.6.2z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m17 14.4c-.2 0-.5-.1-.6-.2-.9-.7-1.2-1.9-.9-3s1.2-1.9 2.3-2c.5-.1 1.1.3 1.1.8.1.5-.3 1.1-.8 1.1-.3 0-.6.3-.7.6s0 .7.3.9c.4.4.5 1 .1 1.4-.2.3-.5.4-.8.4z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m47.3 18c-.4 0-.7-.2-.9-.5-.3-.5-.1-1.1.4-1.3.3-.2.6-.6.5-.9 0-.4-.3-.7-.7-.8-.5-.2-.8-.7-.7-1.2s.7-.8 1.2-.7c1.2.4 2 1.4 2.1 2.6s-.5 2.3-1.6 2.9c0-.1-.1-.1-.3-.1z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m16.7 18c-.2 0-.3 0-.5-.1-1.1-.6-1.7-1.7-1.6-2.9s.9-2.2 2.1-2.6c.5-.2 1.1.1 1.2.7s-.1 1.1-.7 1.2c-.4.1-.6.4-.7.8 0 .4.2.8.5.9.5.3.7.9.4 1.3 0 .5-.4.7-.7.7z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m46 23.1c-.5 0-.9-.3-1-.8s.2-1.1.8-1.2c.4-.1 1-.8 1.2-1.5.2-.5-.1-1.6-.5-2s-.3-1 .1-1.4 1-.3 1.4.1c.8.9 1.3 2.8.9 3.9-.3 1-1.4 2.5-2.8 2.8 0 0 0 .1-.1.1z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m18 23.1c-.1 0-.1 0-.2 0-1.3-.3-2.4-1.8-2.8-2.8-.4-1.1 0-3 .9-3.9.4-.4 1-.4 1.4-.1.4.4.4 1 .1 1.4-.4.4-.6 1.5-.5 2 .2.7.9 1.4 1.2 1.5.5.1.9.6.8 1.2 0 .3-.4.7-.9.7z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m32 52c-4.8 0-9-2.9-10.8-7.4-.2-.5 0-1.1.6-1.3.5-.2 1.1 0 1.3.6 1.4 3.7 5 6.1 8.9 6.1s7.5-2.5 8.9-6.1c.2-.5.8-.8 1.3-.6s.8.8.6 1.3c-1.8 4.5-6 7.4-10.8 7.4z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m39 63c-.6 0-1-.4-1-1 0-4.7 4.4-6.7 8.3-8.4 2.9-1.4 5.7-2.6 5.7-4.6 0-4.9-6.8-7-9-7-.6 0-1-.4-1-1s.4-1 1-1c3.1 0 11 2.7 11 9 0 3.3-3.5 4.8-6.8 6.4-3.6 1.6-7.2 3.2-7.2 6.6 0 .6-.4 1-1 1z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m25 63c-.6 0-1-.4-1-1 0-3.4-3.6-5-7.2-6.6-3.3-1.6-6.8-3.1-6.8-6.4 0-6.3 7.9-9 11-9 .6 0 1 .4 1 1s-.4 1-1 1c-2.2 0-9 2.1-9 7 0 2 2.8 3.2 5.7 4.6 3.9 1.8 8.3 3.8 8.3 8.4 0 .6-.4 1-1 1z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m39.4 61c-.1 0-.1 0-.2 0-.5-.1-.9-.6-.8-1.2 1.1-5.6 4-8.5 5.9-10.4.9-.9 1.7-1.7 1.7-2.2 0-.6.4-1 1-1s1 .4 1 1c0 1.3-1 2.3-2.3 3.6-1.8 1.8-4.4 4.4-5.4 9.3 0 .6-.4.9-.9.9z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m24.6 61c-.5 0-.9-.3-1-.8-1-5-3.5-7.5-5.4-9.3-1.2-1.3-2.2-2.3-2.2-3.7 0-.6.4-1 1-1s1 .4 1 1c0 .5.8 1.3 1.7 2.2 1.9 1.9 4.8 4.8 5.9 10.4.1.5-.2 1.1-.8 1.2-.1 0-.1 0-.2 0z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m48 63c-.6 0-1-.4-1-1v-10c0-.6.4-1 1-1s1 .4 1 1v10c0 .6-.4 1-1 1z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m16 63c-.6 0-1-.4-1-1v-10c0-.6.4-1 1-1s1 .4 1 1v10c0 .6-.4 1-1 1z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.icon-older-children {
    background-image: url("data:image/svg+xml,%3Csvg id='fi_3741561' style='width:24px; height:24px' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cg%3E%3Cpath d='m32 43c-5.6 0-12.1-3.5-14.2-11.4-1.6-.4-3.8-2-3.8-5.6 0-2.8 1.5-3.8 1.6-3.9.5-.3 1.1-.1 1.4.3.3.5.1 1.1-.3 1.4s-.7.5-.7 2.1c0 3.5 2.6 3.8 2.7 3.8.4 0 .8.3.9.8 1.4 6.4 6.3 10.5 12.4 10.5s11-4.1 12.4-10.4c.1-.4.5-.7.9-.8.3 0 2.7-.4 2.7-3.8 0-1.6-.7-2.1-.7-2.2-.4-.3-.6-.9-.3-1.4.3-.4.9-.6 1.3-.3.2.1 1.6 1.1 1.6 3.9 0 3.7-2.2 5.2-3.8 5.6-2 7.9-8.5 11.4-14.1 11.4z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m48.5 24.7c-.1 0-.2 0-.3 0-.5-.2-.8-.7-.7-1.3 0 0 .5-1.7.5-6.4 0-2.3-.9-4.8-2.4-7-.3-.5-.2-1.1.2-1.4.5-.3 1.1-.2 1.4.2 1.8 2.6 2.8 5.4 2.8 8.2 0 5-.6 6.9-.6 7-.1.4-.5.7-.9.7z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m47.9 24c-1.1 0-1.4-1.1-2-3-1-3.1-2.7-8.3-7.1-9.5-.8-.2-2 0-3.3.2-1 .2-2.2.4-3.4.4s-2.4-.2-3.4-.4c-1.3-.2-2.5-.4-3.3-.2-4.4 1.2-6.1 6.4-7.1 9.5-.6 2-1 3-2 3-.6 0-1-.4-1-1 0-.4.2-.7.5-.9.2-.3.4-1.1.6-1.8 1-3.3 3-9.4 8.5-10.8 1.2-.3 2.7-.1 4.2.1.8.2 1.9.4 2.9.4s2.1-.2 3.1-.3c1.5-.2 2.9-.5 4.2-.1 5.5 1.5 7.4 7.6 8.5 10.8.2.6.5 1.4.6 1.8.3.2.5.5.5.9 0 .5-.5.9-1 .9z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m15.5 24.7c-.4 0-.8-.3-1-.7 0-.1-.6-1.9-.6-7 0-7.6 7.7-16 18-16 3.9 0 7.7 1.2 10.9 3.5.6.4 1.4.5 2 .2.7-.4 1.2-1 1.2-1.7 0-.6.5-1 1.1-.9.6 0 1 .5.9 1.1-.1 1.4-1 2.7-2.3 3.3s-2.8.5-4-.3c-2.8-2.1-6.2-3.2-9.7-3.2-9.2 0-16 7.4-16 14 0 4.7.5 6.4.5 6.4.2.5-.1 1.1-.7 1.2-.1.1-.2.1-.3.1z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m56 63c-.6 0-1-.4-1-1 0-7.2-4.8-10.1-9.4-12.9-3.9-2.3-7.5-4.6-7.5-9.1 0-.6.4-1 1-1s1 .4 1 1c0 3.4 2.9 5.2 6.6 7.4 4.6 2.8 10.3 6.3 10.3 14.6 0 .6-.4 1-1 1z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m8 63c-.6 0-1-.4-1-1 0-8.3 5.7-11.8 10.4-14.6 3.7-2.2 6.6-4 6.6-7.4 0-.6.4-1 1-1s1 .4 1 1c0 4.5-3.7 6.7-7.5 9.1-4.7 2.8-9.5 5.7-9.5 12.9 0 .6-.4 1-1 1z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m32 53c-4.8 0-9.4-2-12.7-5.4-.4-.4-.4-1 0-1.4s1-.4 1.4 0c2.9 3 7 4.8 11.2 4.8 4.3 0 8.2-1.7 11.2-4.8.4-.4 1-.4 1.4 0s.4 1 0 1.4c-3.2 3.5-7.7 5.4-12.5 5.4z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.icon-cooling {
    background-image: url("data:image/svg+xml,%3Csvg id='fi_2529995' style='width:24px; height:24px' enable-background='new 0 0 385.239 385.239' viewBox='0 0 385.239 385.239' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cg id='Snowflake'%3E%3Cpath d='m363.332 218.21c2.859 7.039-.529 15.063-7.567 17.923l-38.229 15.547 35.381 21.26c6.598 3.768 8.893 12.172 5.125 18.77s-12.172 8.893-18.77 5.125c-.178-.101-.353-.207-.526-.316l-35.379-21.257 4.221 41.069c.654 7.57-4.953 14.238-12.523 14.892-7.399.639-13.97-4.709-14.847-12.084l-6.329-61.59-67.611-40.615v78.874l49.531 37.148c6.079 4.559 7.311 13.183 2.752 19.262s-13.183 7.311-19.262 2.752l-33.02-24.765v41.276c0 7.599-6.16 13.759-13.759 13.759s-13.759-6.16-13.759-13.759v-41.276l-33.02 24.765c-6.079 4.559-14.703 3.327-19.262-2.752s-3.327-14.703 2.752-19.262l49.531-37.148v-78.874l-67.608 40.625-6.329 61.59c-.72 7.012-6.623 12.346-13.672 12.354-.473.002-.946-.022-1.417-.073-7.554-.771-13.053-7.519-12.282-15.073.001-.005.001-.01.002-.016l4.221-41.069-35.379 21.257c-6.424 4.059-14.922 2.141-18.98-4.283-4.059-6.424-2.141-14.922 4.283-18.98.173-.109.348-.215.526-.316l35.381-21.26-38.229-15.547c-6.993-2.973-10.252-11.051-7.28-18.044 2.906-6.836 10.713-10.131 17.638-7.445l57.354 23.323 68.82-41.358-68.826-41.354-57.354 23.33c-7.084 2.748-15.055-.766-17.803-7.851-2.687-6.925.609-14.733 7.445-17.638l38.229-15.547-35.382-21.267c-6.599-3.768-8.893-12.172-5.125-18.77 3.768-6.599 12.172-8.893 18.77-5.125.178.101.353.207.526.316l35.379 21.257-4.221-41.07c-.775-7.559 4.724-14.316 12.283-15.091s14.316 4.724 15.091 12.283l6.329 61.59 67.609 40.622v-78.874l-49.531-37.148c-6.081-4.557-7.317-13.18-2.76-19.261s13.18-7.317 19.261-2.76c.003.002.006.005.01.007l33.02 24.765v-41.274c0-7.599 6.16-13.759 13.759-13.759s13.759 6.16 13.759 13.759v41.276l33.02-24.765c6.079-4.559 14.703-3.327 19.262 2.752s3.327 14.703-2.752 19.262l-49.531 37.146v78.875l67.608-40.626 6.329-61.59c.897-7.546 7.741-12.935 15.286-12.039 7.375.876 12.723 7.448 12.084 14.847l-4.221 41.069 35.379-21.257c6.424-4.058 14.922-2.141 18.98 4.283s2.141 14.922-4.283 18.98c-.173.109-.348.215-.526.316l-35.381 21.26 38.229 15.547c6.993 2.973 10.252 11.051 7.279 18.044-2.906 6.836-10.713 10.131-17.638 7.445l-57.354-23.323-68.82 41.358 68.826 41.354 57.354-23.323c7.027-2.866 15.046.507 17.912 7.534.003.009.007.017.011.026z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.icon-warming {
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='fi_606795' style='width:24px; height:24px' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 302.4 302.4' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath d='M204.8,97.6C191.2,84,172,75.2,151.2,75.2s-40,8.4-53.6,22.4c-13.6,13.6-22.4,32.8-22.4,53.6s8.8,40,22.4,53.6 c13.6,13.6,32.8,22.4,53.6,22.4s40-8.4,53.6-22.4c13.6-13.6,22.4-32.8,22.4-53.6S218.8,111.2,204.8,97.6z M190.4,190.4 c-10,10-24,16-39.2,16s-29.2-6-39.2-16s-16-24-16-39.2s6-29.2,16-39.2s24-16,39.2-16s29.2,6,39.2,16s16,24,16,39.2 S200.4,180.4,190.4,190.4z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath d='M292,140.8h-30.8c-5.6,0-10.4,4.8-10.4,10.4c0,5.6,4.8,10.4,10.4,10.4H292c5.6,0,10.4-4.8,10.4-10.4 C302.4,145.6,297.6,140.8,292,140.8z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath d='M151.2,250.8c-5.6,0-10.4,4.8-10.4,10.4V292c0,5.6,4.8,10.4,10.4,10.4c5.6,0,10.4-4.8,10.4-10.4v-30.8 C161.6,255.6,156.8,250.8,151.2,250.8z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath d='M258,243.6l-22-22c-3.6-4-10.4-4-14.4,0s-4,10.4,0,14.4l22,22c4,4,10.4,4,14.4,0S262,247.6,258,243.6z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath d='M151.2,0c-5.6,0-10.4,4.8-10.4,10.4v30.8c0,5.6,4.8,10.4,10.4,10.4c5.6,0,10.4-4.8,10.4-10.4V10.4 C161.6,4.8,156.8,0,151.2,0z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath d='M258.4,44.4c-4-4-10.4-4-14.4,0l-22,22c-4,4-4,10.4,0,14.4c3.6,4,10.4,4,14.4,0l22-22C262.4,54.8,262.4,48.4,258.4,44.4z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath d='M41.2,140.8H10.4c-5.6,0-10.4,4.8-10.4,10.4s4.4,10.4,10.4,10.4h30.8c5.6,0,10.4-4.8,10.4-10.4 C51.6,145.6,46.8,140.8,41.2,140.8z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath d='M80.4,221.6c-3.6-4-10.4-4-14.4,0l-22,22c-4,4-4,10.4,0,14.4s10.4,4,14.4,0l22-22C84.4,232,84.4,225.6,80.4,221.6z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath d='M80.4,66.4l-22-22c-4-4-10.4-4-14.4,0s-4,10.4,0,14.4l22,22c4,4,10.4,4,14.4,0S84.4,70.4,80.4,66.4z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E");
}
.icon-disturbance {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 60 60' style='width:24px; height:24px' xmlns='http://www.w3.org/2000/svg' id='fi_3000586'%3E%3Cg id='Page-1' fill='none' fill-rule='evenodd'%3E%3Cg id='016---Jumping-On-Bed' fill='rgb(0,0,0)' fill-rule='nonzero' transform='translate(0 -1)'%3E%3Cpath id='Shape' d='m60 39c.0111801-1.849086-1.2465255-3.4648278-3.0418166-3.907743-1.7952911-.4429151-3.6601759.4024542-4.5103064 2.0445633-.8501305 1.642109-.463897 3.652897.934123 4.8631797-.8740013.752208-1.378281 1.8468819-1.382 3v2h-2c0-2.209139-1.790861-4-4-4h-22.184c-.4222546-1.1943509-1.5492146-1.9947486-2.816-2h-12c-.34143967.0033144-.67974302.0655622-1 .184v-9.184c-.00371895-1.1531181-.50799873-2.247792-1.382-3 1.38665941-1.2110928 1.76522309-3.2134336.91640804-4.8471665-.84881506-1.6337329-2.70483451-2.4750835-4.49295912-2.0366995s-3.04453229 2.0427901-3.04144892 3.883866c.00371895 1.1531181.50799873 2.247792 1.382 3-.87400127.752208-1.37828105 1.8468819-1.382 3v28c0 .5522847.44771525 1 1 1h58c.5522847 0 1-.4477153 1-1v-15c-.003719-1.1531181-.5079987-2.247792-1.382-3 .8740013-.752208 1.378281-1.8468819 1.382-3zm-38 14h-14v-4h14zm-14 2h14.184c.4222546 1.1943509 1.5492146 1.9947486 2.816 2h22c1.2667854-.0052514 2.3937454-.8056491 2.816-2h2.184v4h-44zm44-6v4h-2v-4zm-4-2v7c0 .5522847-.4477153 1-1 1h-22c-.5522847 0-1-.4477153-1-1v-9h22c1.1045695 0 2 .8954305 2 2zm-39-4h12c.5522847 0 1 .4477153 1 1v3h-14v-3c0-.5522847.44771525-1 1-1zm-7-17c0-1.1045695.8954305-2 2-2s2 .8954305 2 2-.8954305 2-2 2c-.53043298 0-1.03914081-.2107137-1.41421356-.5857864-.37507276-.3750728-.58578644-.8837806-.58578644-1.4142136zm0 33v-27c0-1.1045695.8954305-2 2-2s2 .8954305 2 2v27zm56-14v14h-4v-14c0-1.1045695.8954305-2 2-2s2 .8954305 2 2zm-4-6c0-1.1045695.8954305-2 2-2s2 .8954305 2 2-.8954305 2-2 2-2-.8954305-2-2z'%3E%3C/path%3E%3Cpath id='Shape' d='m43 11h-8.54c2.1618013-2.40228445 2.0324985-6.08519769-.2924552-8.32995737-2.3249536-2.24475968-6.010136-2.24475968-8.3350896 0-2.3249537 2.24475968-2.4542565 5.92767292-.2924552 8.32995737h-8.54c-1.6529917.0092882-2.9907118 1.3470083-3 3 0 1.6568542 1.3431458 3 3 3h8v8.294l-4.685 9.369c-.4629157.9298467-.411903 2.0329885.1348516 2.9161449.5467547.8831564 1.5114445 1.4206484 2.5501484 1.4208551 1.1394945.0061388 2.1823136-.6393604 2.685-1.662l4.32-8.631 4.308 8.625c.5012987 1.0256261 1.5454328 1.6737897 2.687 1.668 1.0387039-.0002067 2.0033937-.5376987 2.5501484-1.4208551.5467546-.8831564.5977673-1.9862982.1348516-2.9161449l-4.685-9.369v-8.294h8c1.6529917-.0092882 2.9907118-1.3470083 3-3 0-1.6568542-1.3431458-3-3-3zm-17-4c0-2.209139 1.790861-4 4-4s4 1.790861 4 4-1.790861 4-4 4-4-1.790861-4-4zm17.694 7.712c-.1823963.1865985-.4330776.2906276-.694.288h-9c-.5522847 0-1 .4477153-1 1v9.53c-.0016999.1547301.0325313.3077438.1.447l4.791 9.58c.2441018.4953999.0403934 1.0948848-.455 1.339-.4949942.2326993-1.0853988.0326594-1.337-.453l-4.44-8.89-.769-1.53c-.1686168-.3374448-.5127763-.5512877-.89-.553-.3787509.0009591-.7244565.2158153-.893.555l-5.214 10.423c-.2542144.4791635-.8384805.6762601-1.331.449-.2386844-.1166886-.4211225-.323563-.5070495-.5749652-.0859271-.2514021-.0682789-.5266642.0490495-.7650348l4.791-9.58c.0691972-.1388389.1051447-.2918727.105-.447v-9.53c0-.5522847-.4477153-1-1-1h-9c-.5522847 0-1-.4477153-1-1-.0003954-.2693445.110308-.526929.306-.712.1823963-.1865985.4330776-.2906276.694-.288h26c.5522847 0 1 .4477153 1 1 .0003954.2693445-.110308.526929-.306.712z'%3E%3C/path%3E%3Cpath id='Shape' d='m18 20v8c0 .5522847.4477153 1 1 1s1-.4477153 1-1v-8c0-.5522847-.4477153-1-1-1s-1 .4477153-1 1z'%3E%3C/path%3E%3Cpath id='Shape' d='m14 26v11c0 .5522847.4477153 1 1 1s1-.4477153 1-1v-11c0-.5522847-.4477153-1-1-1s-1 .4477153-1 1z'%3E%3C/path%3E%3Cpath id='Shape' d='m40 20v8c0 .5522847.4477153 1 1 1s1-.4477153 1-1v-8c0-.5522847-.4477153-1-1-1s-1 .4477153-1 1z'%3E%3C/path%3E%3Cpath id='Shape' d='m44 26v11c0 .5522847.4477153 1 1 1s1-.4477153 1-1v-11c0-.5522847-.4477153-1-1-1s-1 .4477153-1 1z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.icon-all-season, 
.icon-multi-seasons {
    background-image: url("data:image/svg+xml,%3Csvg id='fi_3651024' style='width:24px; height:24px'  enable-background='new 0 0 511.994 511.994' viewBox='0 0 511.994 511.994' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cg id='Page-1_22_'%3E%3Cg id='_x30_23---Warm-and-Cold-Settings'%3E%3Cpath id='Shape_180_' d='m172.311 292.602 120.293-120.293c-16.068-18.251-39.235-28.673-63.551-28.591-47.106.054-85.279 38.228-85.333 85.333-.083 24.316 10.34 47.483 28.591 63.551z'%3E%3C/path%3E%3Cpath id='Shape_179_' d='m15.333 500.393 485.053-485.052c3.51-3.507 3.512-9.196.004-12.706s-9.196-3.512-12.706-.004l-485.052 485.052c-3.507 3.508-3.507 9.194 0 12.701 3.554 3.391 9.143 3.395 12.701.009z'%3E%3C/path%3E%3Cpath id='Shape_178_' d='m233.67 82.682h.341c4.556-.148 8.279-3.685 8.659-8.228l5.389-64.674c.209-2.509-.644-4.99-2.352-6.839s-4.113-2.897-6.63-2.889h-11.093c-2.517-.009-4.923 1.039-6.63 2.889-1.708 1.849-2.561 4.331-2.352 6.839l5.389 64.719c.422 4.763 4.501 8.36 9.279 8.183z'%3E%3C/path%3E%3Cpath id='Shape_177_' d='m9.728 248.058 64.422-5.389c4.668-.389 8.253-4.299 8.237-8.982v-.898c.014-4.703-3.602-8.62-8.291-8.982l-64.431-4.922c-2.498-.19-4.962.671-6.798 2.377-1.835 1.706-2.875 4.1-2.867 6.606v11.192c-.014 2.52 1.032 4.931 2.882 6.642 1.85 1.71 4.334 2.565 6.846 2.356z'%3E%3C/path%3E%3Cpath id='Shape_176_' d='m146.1 100.324c2.728 3.928 8.055 5.03 12.117 2.506l.287-.18c3.875-2.406 5.332-7.335 3.386-11.462l-27.684-58.736c-1.073-2.26-3.04-3.97-5.427-4.718s-4.978-.468-7.149.775l-9.629 5.56c-2.176 1.255-3.726 3.364-4.276 5.815s-.048 5.02 1.383 7.084z'%3E%3C/path%3E%3Cpath id='Shape_175_' d='m102.283 308.501c-2.353-4.068-7.444-5.634-11.677-3.593l-58.269 27.935c-2.25 1.083-3.948 3.054-4.686 5.44s-.449 4.971.797 7.136l5.596 9.692c1.255 2.176 3.364 3.726 5.815 4.276s5.02.048 7.084-1.383l53.113-36.828c3.833-2.666 4.984-7.823 2.65-11.866z'%3E%3C/path%3E%3Cpath id='Shape_174_' d='m345.501 28.509c-2.175-1.258-4.777-1.547-7.176-.798-2.398.749-4.373 2.469-5.445 4.741l-27.684 58.745c-2.04 4.325-.334 9.49 3.88 11.749l.305.162c4.019 2.151 9.013.95 11.614-2.794l37.026-53.347c1.431-2.064 1.933-4.633 1.383-7.084s-2.1-4.56-4.276-5.815z'%3E%3C/path%3E%3Cpath id='Shape_173_' d='m100.289 145.443-53.329-36.478c-2.065-1.413-4.627-1.9-7.067-1.344s-4.537 2.104-5.787 4.273l-5.596 9.692c-1.242 2.171-1.523 4.762-.775 7.149s2.458 4.354 4.718 5.427l58.485 27.558c4.215 1.997 9.256.436 11.605-3.593l.449-.781c2.347-4.066 1.169-9.252-2.703-11.903z'%3E%3C/path%3E%3Cpath id='Shape_172_' d='m489.095 197.523-49.942 13.384 26.858-40.152c3.768-5.39 4.333-12.394 1.478-18.318s-8.686-9.846-15.249-10.257c-6.564-.411-12.838 2.753-16.409 8.275l-50.122 74.734-95.304 25.51-39.613 39.613-25.6 95.394-74.734 50.122c-5.968 3.961-9.048 11.061-7.864 18.125s6.411 12.772 13.344 14.571c5.073 1.312 10.465.397 14.821-2.515l40.152-26.858-13.384 49.942c-1.685 6.274.105 12.97 4.696 17.566s11.285 6.394 17.561 4.716 11.18-6.576 12.864-12.85l13.384-49.942 21.288 43.295c2.297 4.741 6.571 8.225 11.677 9.521 4.243 1.27 8.813.852 12.755-1.168 8.983-4.459 12.675-15.337 8.264-24.342l-39.702-80.752 23.085-86.052 62.967 62.967 6.018 89.825c.811 9.925 9.452 17.353 19.387 16.664 9.934-.689 17.468-9.237 16.902-19.179l-3.234-48.146 36.559 36.559c7.119 7.119 18.661 7.119 25.78 0s7.119-18.661 0-25.78l-36.559-36.559 48.146 3.234c9.942.566 18.491-6.968 19.179-16.902.689-9.934-6.739-18.576-16.664-19.387l-89.825-6.018-62.967-62.967 86.052-23.085 80.752 39.702c1.054.55 2.169.973 3.324 1.258 9.052 2.395 18.445-2.465 21.717-11.238s-.642-18.598-9.052-22.715l-43.295-21.288 49.942-13.384c6.274-1.685 11.172-6.589 12.85-12.864s-.12-12.97-4.716-17.561c-4.597-4.593-11.293-6.383-17.567-4.698z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.icon-pressure-relief {
    background-image: url("data:image/svg+xml,%3Csvg id='fi_10441050' style='width:24px; height:24px' enable-background='new 0 0 450 450' viewBox='0 0 450 450' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='_x35_974_-_Flexibility'%3E%3Cg%3E%3Cg%3E%3Cpath d='m440 225.6c0 7-5.7 12.7-12.7 12.7h-404.6c-7 0-12.7-5.7-12.7-12.7s5.7-12.7 12.7-12.7h404.6c7 0 12.7 5.7 12.7 12.7z'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m438.5 128.2c-1.6 3.1-4.4 5.4-7.7 6.4-68.3 21.1-137.6 31.7-205.8 31.7s-137.5-10.7-205.8-31.7c-3.3-1-6.1-3.3-7.7-6.4s-1.9-6.7-.9-10c1.8-5.5 6.9-9.1 12.4-9.1 1.3 0 2.5.2 3.8.6 131.5 40.4 264.8 40.4 396.2 0 6.8-2.1 14.1 1.7 16.3 8.5 1.1 3.3.8 6.9-.8 10z'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m439.4 333c-2.2 6.8-9.5 10.6-16.3 8.5-65.7-20.2-131.9-30.3-198.1-30.3s-132.4 10.1-198.1 30.3c-6.8 2.1-14.1-1.7-16.3-8.5-1.1-3.3-.8-6.9.9-10 1.6-3.1 4.4-5.4 7.7-6.4 68.3-21.1 137.6-31.7 205.8-31.7s137.5 10.7 205.8 31.7c3.3 1 6.1 3.3 7.7 6.4s1.9 6.7.9 10z'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m254.7 47-29.7 38.4-29.7-38.4h12.5c2.9 0 5.3-2.4 5.3-5.3v-31.1h23.7v31.1c0 2.9 2.4 5.3 5.3 5.3z'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m254.7 403h-12.5c-2.9 0-5.3 2.4-5.3 5.3v31.1h-23.7v-31.1c0-2.9-2.4-5.3-5.3-5.3h-12.5l29.7-38.4z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.icon-allergies {
    background-image: url("data:image/svg+xml,%3Csvg id='fi_2804780' style='width:24px; height:24px' enable-background='new 0 0 64 64' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='m59.218 35.589c-1.491-.485-3.119-.229-4.396.655l-3.982-1.949c.096-.755.16-1.521.16-2.295 0-.671-.038-1.367-.114-2.076l3.962-2.15c1.273.871 2.89 1.119 4.369.638 1.276-.411 2.313-1.295 2.92-2.487.606-1.191.71-2.546.294-3.813-.849-2.622-3.673-4.065-6.305-3.211-1.478.489-2.638 1.639-3.159 3.084l-4.483.595c-.719-1.259-1.585-2.437-2.588-3.519l2.072-3.907c1.551-.039 3.02-.79 3.951-2.057.786-1.082 1.103-2.404.892-3.724-.21-1.318-.921-2.477-2.003-3.263-2.229-1.62-5.364-1.121-6.986 1.111-.924 1.271-1.187 2.899-.739 4.388l-3.071 3.178c-1.331-.627-2.72-1.099-4.153-1.388-.126-.696-.365-1.99-.815-4.433 1.221-.942 1.956-2.405 1.956-3.966 0-2.757-2.243-5-5-5s-5 2.243-5 5c0 1.561.735 3.024 1.958 3.967l-.819 4.448c-1.43.289-2.818.75-4.147 1.375l-3.074-3.181c.447-1.489.185-3.116-.739-4.387-1.621-2.232-4.756-2.731-6.987-1.111-1.082.786-1.793 1.945-2.003 3.263-.21 1.319.106 2.642.896 3.728.928 1.263 2.396 2.014 3.947 2.053l2.07 3.904c-1.004 1.083-1.882 2.259-2.601 3.52l-4.468-.593c-.521-1.446-1.682-2.596-3.165-3.086-1.27-.412-2.625-.304-3.814.303-1.191.607-2.074 1.64-2.484 2.906-.417 1.27-.313 2.625.293 3.816.607 1.192 1.644 2.075 2.919 2.486 1.483.481 3.098.232 4.371-.638l3.978 2.155c-.078.693-.131 1.387-.131 2.072 0 .777.064 1.544.159 2.296l-3.981 1.949c-1.277-.885-2.904-1.138-4.395-.656-1.276.411-2.313 1.294-2.92 2.487-.606 1.191-.71 2.546-.294 3.813.684 2.111 2.648 3.456 4.761 3.456.511 0 1.032-.079 1.544-.245 1.487-.492 2.653-1.654 3.169-3.113l4.362-.767c.708 1.284 1.552 2.481 2.536 3.56l-1.941 4.066c-1.539.048-2.994.798-3.919 2.056-1.62 2.23-1.122 5.364 1.111 6.987.885.643 1.911.952 2.93.952 1.549 0 3.078-.716 4.057-2.063.918-1.262 1.183-2.877.748-4.357l3.275-3.112c1.324.6 2.716 1.044 4.158 1.326l.622 4.381c-1.237.941-1.982 2.413-1.982 3.984 0 2.757 2.243 5 5 5s5-2.243 5-5c0-1.571-.745-3.043-1.981-3.985l.622-4.381c1.442-.283 2.834-.727 4.158-1.326l3.275 3.112c-.435 1.48-.17 3.095.748 4.357.979 1.347 2.508 2.063 4.057 2.063 1.019 0 2.045-.31 2.93-.952 1.082-.786 1.793-1.945 2.003-3.263.21-1.319-.106-2.642-.896-3.728-.922-1.255-2.377-2.004-3.916-2.052l-1.948-4.081c.985-1.08 1.836-2.269 2.54-3.547l4.366.767c.516 1.459 1.683 2.622 3.175 3.115.511.166 1.029.244 1.54.244 2.11 0 4.076-1.345 4.759-3.453.417-1.27.313-2.625-.293-3.816-.609-1.191-1.646-2.074-2.921-2.485zm-14.259-23.044c.287-.296.362-.739.189-1.114-.458-.994-.347-2.156.291-3.033.974-1.342 2.854-1.641 4.193-.669.65.472 1.078 1.168 1.204 1.96.126.791-.064 1.584-.532 2.229-.645.876-1.726 1.343-2.811 1.219-.405-.048-.804.162-.997.525l-2.092 3.944c-.798-.687-1.65-1.304-2.551-1.847zm-28.338.585c-.038 0-.076.002-.114.006-1.09.127-2.167-.342-2.807-1.214-.472-.649-.662-1.442-.536-2.233.126-.792.554-1.488 1.204-1.96 1.338-.972 3.219-.671 4.194.669.637.877.749 2.039.29 3.033-.173.375-.098.817.189 1.114l3.105 3.213c-.9.542-1.753 1.16-2.551 1.847l-2.092-3.944c-.174-.329-.516-.531-.882-.531zm-6.544 26.995c-.405.071-.726.383-.807.786-.217 1.071-.993 1.948-2.018 2.288-.76.247-1.574.182-2.291-.182-.714-.364-1.244-.984-1.491-1.749-.25-.761-.188-1.572.175-2.285.364-.715.985-1.244 1.752-1.492 1.029-.332 2.169-.079 2.974.664.303.28.748.344 1.118.164l4.022-1.968c.238 1.032.564 2.035.973 3zm21.923 21.875c-1.654 0-3-1.346-3-3 0-1.085.594-2.092 1.549-2.628.36-.202.559-.604.501-1.013l-.628-4.427c.519.043 1.042.068 1.578.068s1.059-.025 1.578-.068l-.628 4.427c-.058.409.141.811.501 1.013.955.536 1.549 1.543 1.549 2.628 0 1.654-1.346 3-3 3zm15.494-11.136c1.09-.13 2.167.342 2.807 1.214.472.649.662 1.442.536 2.233-.126.792-.554 1.488-1.204 1.96-1.339.971-3.22.671-4.194-.669-.637-.877-.749-2.039-.29-3.033.179-.389.091-.849-.219-1.144l-4.24-4.03c-.007-.006-.016-.008-.022-.014-.056-.051-.123-.082-.189-.118-.049-.027-.093-.063-.145-.082-.063-.023-.131-.024-.197-.033-.06-.008-.118-.026-.178-.023-.059.002-.115.025-.173.038-.07.016-.14.025-.206.056-.009.004-.018.003-.026.007-1.549.775-3.217 1.305-4.957 1.576-1.712.267-3.481.267-5.192 0-1.463-.228-2.869-.649-4.202-1.235.077-.938-.327-2.202-2.012-3.434-.446-.327-1.071-.229-1.397.217s-.229 1.071.217 1.397c1.152.843 1.287 1.493 1.198 1.747l-4.137 3.931c-.31.295-.398.755-.219 1.144.458.994.347 2.156-.291 3.033-.974 1.341-2.857 1.64-4.193.669-1.341-.974-1.641-2.855-.672-4.188.645-.877 1.722-1.346 2.811-1.219.417.047.833-.178 1.016-.563l2.52-5.28c.182-.38.105-.833-.19-1.132-1.221-1.24-2.236-2.661-3.024-4.237-.792-1.537-1.331-3.194-1.603-4.939-.151-.881-.227-1.794-.227-2.713 0-.547.039-1.1.095-1.654.197-.045.408-.117.628-.229.89-.455 1.566-1.379 2.008-2.75.169-.525-.119-1.089-.645-1.259s-1.089.12-1.259.645c-.438 1.354-1.056 1.657-1.275 1.671l-5.027-2.723c-.376-.204-.841-.146-1.154.145-.804.743-1.942.999-2.975.663-.766-.247-1.387-.776-1.751-1.491-.363-.713-.425-1.524-.174-2.289.247-.761.776-1.38 1.49-1.745.716-.364 1.528-.428 2.285-.184 1.031.341 1.807 1.219 2.024 2.29.084.418.425.736.848.792l5.8.77c.418.057.824-.155 1.019-.529.798-1.531 1.837-2.942 3.089-4.194 1.238-1.227 2.65-2.25 4.198-3.038.001 0 .001-.001.002-.002.002-.001.004-.001.006-.002 1.311-.684 2.697-1.171 4.125-1.477.488.805 1.55 1.59 3.643 1.59.552 0 1-.448 1-1s-.448-1-1-1c-1.427 0-1.915-.443-1.991-.698l1.034-5.621c.078-.421-.121-.844-.494-1.053-.955-.536-1.549-1.543-1.549-2.628 0-1.654 1.346-3 3-3s3 1.346 3 3c0 1.085-.594 2.092-1.549 2.628-.373.209-.572.633-.494 1.053 0 0 1 5.423 1.056 5.737.067.42.396.759.828.829 1.714.277 3.372.828 4.927 1.64.002.001.004.001.006.002.001 0 .001.001.002.002 1.548.788 2.96 1.81 4.198 3.038 1.051 1.051 1.942 2.22 2.676 3.472-.615.715-1.029 1.977-.382 3.968.171.525.735.814 1.26.642.525-.171.813-.735.642-1.26-.443-1.362-.17-1.966.051-2.118l5.66-.751c.423-.056.764-.375.848-.792.217-1.071.993-1.948 2.018-2.288 1.578-.509 3.271.354 3.782 1.931.25.761.188 1.572-.175 2.285-.364.715-.985 1.244-1.752 1.492-1.028.332-2.169.08-2.974-.664-.314-.29-.779-.35-1.155-.144l-5.14 2.79c-.366.199-.571.604-.513 1.017.119.856.18 1.694.18 2.491 0 .919-.076 1.832-.229 2.726-.27 1.731-.808 3.389-1.606 4.937-.658 1.315-1.489 2.522-2.46 3.612-.87-.365-2.199-.371-3.892.855-.447.324-.547.949-.224 1.396.324.447.948.547 1.396.224 1.158-.838 1.819-.763 2.033-.6l2.458 5.151c.185.385.594.609 1.018.563zm13.035-9.592c-.247.761-.776 1.38-1.49 1.745-.715.365-1.527.429-2.285.184-1.031-.341-1.807-1.219-2.024-2.29-.082-.403-.402-.715-.807-.786l-4.407-.775c.411-.969.736-1.972.974-3l4.021 1.968c.37.182.814.117 1.118-.164.805-.742 1.944-.997 2.975-.663.766.247 1.387.776 1.751 1.491.363.714.425 1.525.174 2.29z'%3E%3C/path%3E%3Cpath d='m34 28c0 2.757 2.243 5 5 5s5-2.243 5-5-2.243-5-5-5-5 2.243-5 5zm5-3c1.654 0 3 1.346 3 3s-1.346 3-3 3-3-1.346-3-3 1.346-3 3-3z'%3E%3C/path%3E%3Cpath d='m24 31c-2.757 0-5 2.243-5 5s2.243 5 5 5 5-2.243 5-5-2.243-5-5-5zm0 8c-1.654 0-3-1.346-3-3s1.346-3 3-3 3 1.346 3 3-1.346 3-3 3z'%3E%3C/path%3E%3Cpath d='m27 28c2.206 0 4-1.794 4-4s-1.794-4-4-4-4 1.794-4 4 1.794 4 4 4zm0-6c1.103 0 2 .897 2 2s-.897 2-2 2-2-.897-2-2 .897-2 2-2z'%3E%3C/path%3E%3Cpath d='m37 35c-2.206 0-4 1.794-4 4s1.794 4 4 4 4-1.794 4-4-1.794-4-4-4zm0 6c-1.103 0-2-.897-2-2s.897-2 2-2 2 .897 2 2-.897 2-2 2z'%3E%3C/path%3E%3Ccircle cx='29.997' cy='44' r='1'%3E%3C/circle%3E%3Ccircle cx='31.997' cy='32' r='1'%3E%3C/circle%3E%3Ccircle cx='34.997' cy='20' r='1'%3E%3C/circle%3E%3Ccircle cx='43.997' cy='36' r='1'%3E%3C/circle%3E%3Ccircle cx='20.997' cy='28' r='1'%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
}
.icon-back-pain {
    background-image: url("data:image/svg+xml,%3Csvg id='fi_4876672' style='width:24px; height:24px'  enable-background='new 0 0 511.995 511.995' viewBox='0 0 511.995 511.995'  xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cg%3E%3Cpath d='m406.558 204.239-41.837-22.863c-1.902-1.039-3.558-2.431-4.909-4.103l10.855-26.71c5.936-14.605 5.624-30.559-.879-44.921-.853-1.884-1.801-3.701-2.831-5.456 16.589-3.79 30.61-16.396 35.312-33.944l1.76-6.569c3.277-12.229 1.595-25.003-4.735-35.968s-16.553-18.809-28.783-22.085v-.001c-25.244-6.76-51.289 8.272-58.054 33.519l-1.76 6.568c-2.838 10.59-1.827 21.314 2.152 30.703-.075.007-.15.008-.225.015-1.276-.157-2.573-.248-3.891-.248h-87.661c-8.735 0-17.164 3.66-23.125 10.04-5.963 6.379-9.045 15.036-8.456 23.752l6.08 89.787c.92 13.584 10.424 24.745 22.964 28.313l-4.485 11.194c-8.42 14.263-11.302 31.011-8.088 47.287.128.648 12.931 65.971 12.931 65.971l-56.593 127.888c-2.209 4.992-.007 10.833 4.949 13.124l46.598 21.54c1.328.614 2.761.923 4.196.923 1.19 0 2.382-.212 3.518-.639 2.506-.942 4.529-2.849 5.618-5.294l59.474-133.583v129.516c0 5.522 4.477 10 10 10h51.335c5.523 0 10-4.478 10-10v-29.674c0-5.522-4.477-10-10-10s-10 4.478-10 10v19.674h-31.338v-133.269c0-3.184-1.516-6.177-4.082-8.061l-58.547-42.983c-18.193-13.357-24.236-36.952-15.43-57.043l81.379 13.023 25.645 76.705c1.572 4.703 2.37 9.603 2.37 14.562v27.393c0 5.522 4.477 10 10 10s10-4.478 10-10v-27.393c0-7.118-1.145-14.151-3.402-20.903l-26.393-78.942 7.158-17.615 40.851 22.325c4.646 2.537 9.888 3.879 15.159 3.879 11.59 0 22.241-6.313 27.795-16.478 8.371-15.315 2.721-34.584-12.595-42.956zm-76.542-157.358 1.76-6.568c1.895-7.069 6.428-12.979 12.767-16.638 4.222-2.438 8.907-3.683 13.655-3.683 2.38 0 4.776.312 7.137.945 7.069 1.895 12.978 6.428 16.638 12.767 3.66 6.338 4.631 13.722 2.737 20.792l-1.76 6.569c-3.91 14.593-18.963 23.283-33.559 19.375-14.593-3.91-23.285-18.965-19.375-33.559zm-120.571 57.738c-.217-3.21.918-6.397 3.114-8.747 2.194-2.349 5.297-3.695 8.513-3.695h87.661c6.426 0 11.653 5.228 11.653 11.653s-5.228 11.652-11.653 11.652h-64.492c-2.77 0-5.415 1.148-7.306 3.172s-2.858 4.74-2.671 7.504l4.515 66.671c.434 6.411-4.976 12-11.377 12.433-6.094.001-11.465-4.763-11.878-10.858zm63.621 249.198-60.036 134.845-28.462-13.156 53.884-121.766c.828-1.871 1.062-3.95.671-5.958l-4.29-22.034zm-32.213-131.675c11.312-5.451 18.779-17.389 17.881-30.664l-.809-11.944 17.651-44.052h33.158c17.454 0 31.653-14.199 31.653-31.652 0-1.451-.107-2.877-.297-4.277 4.92 3.675 8.859 8.555 11.478 14.338 4.218 9.317 4.421 19.667.57 29.143l-40.875 100.581-74.253-11.882zm160.752 15.461c-2.046 3.744-5.972 6.069-10.246 6.069-1.958 0-3.833-.481-5.57-1.431 0 0-42.514-23.249-42.853-23.443l8.911-21.928c1.058.732 2.143 1.432 3.283 2.055l41.836 22.862c5.639 3.084 7.72 10.178 4.639 15.816z'%3E%3C/path%3E%3Cpath d='m128.453 244.561c1.957 0 3.9-.574 5.572-1.695 2.768-1.857 4.429-4.972 4.429-8.305v-6.021l20.901 5.989c5.312 1.521 10.847-1.549 12.368-6.858 1.521-5.31-1.549-10.847-6.858-12.368l-33.656-9.645c-3.018-.864-6.267-.262-8.774 1.628-2.507 1.889-3.981 4.846-3.981 7.985v4.384l-15.691-6.432c-5.11-2.095-10.951.351-13.045 5.46-2.095 5.11.35 10.951 5.46 13.046l29.483 12.085c1.222.501 2.51.747 3.792.747z'%3E%3C/path%3E%3Cpath d='m128.601 169.993c1.631 2.907 4.603 4.811 7.926 5.076 3.326.255 6.559-1.144 8.63-3.754l3.742-4.719 12.653 17.683c1.953 2.729 5.023 4.182 8.141 4.182 2.014 0 4.048-.607 5.811-1.868 4.491-3.215 5.527-9.461 2.313-13.952l-20.375-28.473c-1.827-2.553-4.747-4.1-7.885-4.178-3.144-.081-6.131 1.323-8.082 3.782l-2.725 3.436-8.296-14.79c-2.702-4.817-8.796-6.531-13.614-3.829-4.816 2.702-6.531 8.797-3.829 13.614z'%3E%3C/path%3E%3Cpath d='m172.865 300.79c.836-3.227.01-6.657-2.204-9.149l-4-4.502 19.604-9.404c4.979-2.39 7.08-8.362 4.691-13.342s-8.363-7.08-13.341-4.691l-31.566 15.144c-2.831 1.358-4.859 3.967-5.479 7.044-.619 3.078.243 6.268 2.328 8.614l2.912 3.277-16.001 5.613c-5.212 1.828-7.955 7.535-6.126 12.747 1.444 4.116 5.307 6.692 9.436 6.692 1.098 0 2.215-.183 3.31-.566l30.067-10.548c3.145-1.104 5.533-3.703 6.369-6.929z'%3E%3C/path%3E%3Ccircle cx='347.986' cy='427.317' r='10'%3E%3C/circle%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.icon-back-sleepers {
    background-image: url("data:image/svg+xml,%3Csvg id='fi_9583752' style='width:24px; height:24px'  enable-background='new 0 0 511.5 511.5' viewBox='0 0 511.5 511.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Outline_00000161615875104383550250000003183778337525636998_'%3E%3Cpath d='m48.5 275h83v-15h-83c-17.921 0-32.5-14.58-32.5-32.5v-76.571h-15v76.571c0 26.191 21.309 47.5 47.5 47.5z'%3E%3C/path%3E%3Cpath d='m348.5 0h-166.286v15h166.286c17.921 0 32.5 14.58 32.5 32.5v40.857h15v-40.857c0-26.191-21.309-47.5-47.5-47.5z'%3E%3C/path%3E%3Cpath d='m16 47.5c0-17.92 14.579-32.5 32.5-32.5h118.714v-15h-118.714c-26.191 0-47.5 21.309-47.5 47.5v88.429h15z'%3E%3C/path%3E%3Cpath d='m381 227.5c0 17.92-14.579 32.5-32.5 32.5h-83v15h83c26.191 0 47.5-21.309 47.5-47.5v-124.143h-15z'%3E%3C/path%3E%3Cpath d='m373.5 365h-2.613c-1.606-29.676-22.328-54.831-51.514-61.892l-72.373-17.51v-23.043c14.136-12.514 23.46-30.384 24.81-50.429 18.846-19.256 29.19-44.57 29.19-71.626v-10.659c0-26.709-10.688-51.809-30.097-70.674-12.084-11.746-27.084-20.428-43.38-25.108l-1.95-.56-8.593 2.183-5.003-4.848-2.58-.269c-3.595-.375-7.262-.565-10.897-.565-56.519 0-102.5 44.789-102.5 99.841v10.659c0 27.056 10.344 52.37 29.19 71.626 1.35 20.045 10.674 37.915 24.81 50.429v23.043l-72.373 17.51c-29.186 7.061-49.908 32.216-51.514 61.892h-2.613c-12.406 0-22.5 10.093-22.5 22.5v59c0 9.777 6.271 18.114 15 21.21v43.79h15v-42.5h27.5v-15h-35c-4.136 0-7.5-3.364-7.5-7.5v-59c0-4.136 3.364-7.5 7.5-7.5h158.857v-15h-141.217c1.584-22.721 17.585-41.886 40.014-47.313l69.752-16.875c4.356 22.302 24.036 39.188 47.594 39.188s43.238-16.886 47.594-39.188l69.752 16.875c22.429 5.427 38.43 24.592 40.014 47.313h-158.503v15h176.143c4.136 0 7.5 3.364 7.5 7.5v59c0 4.136-3.364 7.5-7.5 7.5h-300v15h292.5v42.5h15v-43.79c8.729-3.096 15-11.433 15-21.21v-59c0-12.407-10.094-22.5-22.5-22.5zm-248.5-221.126v44.12c-9.103-14.008-14-30.335-14-47.494v-10.659c0-46.781 39.252-84.841 87.5-84.841 2.267 0 4.547.086 6.807.256l7.25 7.025 12.733-3.235c13.191 4.114 25.312 11.305 35.158 20.876 16.478 16.017 25.552 37.296 25.552 59.919v10.659c0 17.159-4.897 33.485-14 47.494v-53.329l-5.692-1.414c-13.437-3.336-25.466-11.118-34.788-22.502l-7.76-9.477-4.913 11.219c-10.12 23.108-32.006 36.362-60.046 36.362-9.99 0-17.748-.807-24.414-2.54zm107 147.626c0 18.472-15.028 33.5-33.5 33.5s-33.5-15.028-33.5-33.5v-18.657c10.054 5.201 21.437 8.157 33.5 8.157s23.446-2.956 33.5-8.157zm-33.5-25.5c-32.257 0-58.5-26.429-58.5-58.915v-44.397c5.563.788 11.723 1.165 18.801 1.165 30.159 0 54.605-12.799 68.639-35.509 8.612 8.146 18.631 14.19 29.561 17.816v60.925c-.001 32.486-26.244 58.915-58.501 58.915z'%3E%3C/path%3E%3Cpath d='m458.274 78 51.726-62.809v-15.191h-71.5v15h52.226l-51.726 62.809v15.191h71.5v-15z'%3E%3C/path%3E%3Cpath d='m318.571 218h46.929v-15h-27.249l28.178-35.732v-14.268h-46.929v15h27.249l-28.178 35.732z'%3E%3C/path%3E%3Cpath d='m468 128.131v-15.131h-55.5v15h36.396l-35.896 44.869v15.131h55.5v-15h-36.396z'%3E%3C/path%3E%3Cpath d='m349.5 395h15v15h-15z'%3E%3C/path%3E%3Cpath d='m319.5 395h15v15h-15z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}
.icon-side {
    background-image: url("data:image/svg+xml,%3Csvg style='width:24px; height:24px'  viewBox='0 -33 512 512' xmlns='http://www.w3.org/2000/svg' id='fi_1830777'%3E%3Cpath d='m487.4375 135.710938h-42.054688c-4.175781 0-7.558593 3.382812-7.558593 7.554687 0 4.175781 3.382812 7.558594 7.558593 7.558594h42.054688c5.210938 0 9.449219 4.234375 9.449219 9.4375v157.289062c0 16.054688-2.378907 24.875-7.953125 29.5-5.652344 4.679688-16.15625 6.679688-35.132813 6.679688h-52.703125l17.667969-54.789063c5.09375-15.769531 3.460937-27.496094-.828125-41.308594l-8.523438-27.3125c2.761719-4.507812 4.675782-9.550781 5.601563-14.9375 1.921875-11.144531-.589844-22.335937-7.074219-31.519531l-22.757812-32.257812c-.195313-.269531-.394532-.519531-.589844-.78125h31.796875c4.175781 0 7.558594-3.382813 7.558594-7.558594 0-4.171875-3.382813-7.554687-7.558594-7.554687h-46.3125c-18.679687-14.59375-39.230469-14.730469-53.242187-9.121094-11.222657 4.492187-19.585938 12.535156-24.199219 22.5625-4.4375-6.78125-9.585938-12.828125-15.242188-17.742188 1.097657-5.519531.5625-11.683594-1.628906-17.640625-2.890625-7.859375-8.28125-14.0625-14.789063-17.011719l-7.984374-3.625c-3.988282-1.8125-8.445313-1.960937-12.558594-.414062-4.105469 1.542969-7.359375 4.585938-9.148438 8.542969l-2.394531 5.242187-1.800781-.820312c-.003906-.003906-.011719-.007813-.019532-.007813-22.402343-10.179687-45.71875-8.816406-65.65625 3.839844-23.03125 14.628906-39.148437 43.054687-41.175781 71.921875-10.992187-.039062-27.410156.554688-42.976562 4.792969v-87.492188c0-21.285156-17.324219-38.601562-38.617188-38.601562-21.308593 0-38.644531 17.3125-38.644531 38.601562v316.394531c0 17.019532 13.851562 30.867188 30.882812 30.867188h450.238282c17.027344 0 30.878906-13.847656 30.878906-30.867188v-254.871093c0-13.539063-11.019531-24.550781-24.5625-24.550781zm-83.058594 158.589843-18.164062 56.335938c-6.378906 19.761719-18.773438 25.980469-28.234375 23.378906-5.367188-1.480469-10.339844-6.085937-11.050781-13.21875-.007813-.140625-.027344-.28125-.042969-.421875-.136719-1.820312-.007813-3.789062.472656-5.914062.0625-.214844.253906-.726563.394531-1.101563.707032-1.902344 1.671875-4.507813 1.878906-7.398437.359376-5.0625-1.824218-9.304688-5.957031-11.617188-3.242187-1.832031-5.097656-4.144531-5.082031-6.347656.007812-1.359375.738281-2.605469 1.902344-3.246094 1.5625-.855469 3.71875-.511719 6.101562.980469 2.808594 1.746093 6.28125 2.054687 9.523438.855469 4.6875-1.738282 8.511718-6.328126 10.476562-12.582032l8.277344-26.066406c2.640625-8.34375 2.617188-10.707031 1.34375-19.054688-.046875-.292968-.105469-.582031-.1875-.867187l-2.410156-8.75c1.519531-.757813 3.019531-1.652344 4.492187-2.695313l19.394531-13.65625 5.996094 19.207032c4.179688 13.46875 4.394532 21.285156.875 32.179687zm-103.261718 3.109375c.71875-7.65625 2.648437-13.085937 4.886718-19.375 4.21875-11.851562 8.914063-25.089844 5.15625-54.039062l13.5625 18.875c7.96875 11.113281 20.847656 19.445312 34.136719 19.707031l2.488281 9.023437c.925782 6.070313.886719 6.199219-.875 11.769532l-8.28125 26.074218c-.226562.714844-.480468 1.300782-.722656 1.769532-6.207031-2.828125-12.703125-2.757813-18.242188.289062-5.96875 3.273438-9.699218 9.558594-9.742187 16.398438-.046875 7.164062 3.832031 13.746094 10.746094 18.359375-.210938.667969-.476563 1.382812-.644531 1.832031-.359376.96875-.699219 1.882812-.9375 2.894531-.015626.070313-.027344.140625-.042969.210938-21.066407-8.6875-33.734375-29.675781-31.488281-53.789063zm21.332031-156.789062c12.90625-5.164063 33.871093-3.0625 50.441406 19.773437l22.703125 32.179688c4.15625 5.886719 5.761719 13.078125 4.527344 20.242187-1.230469 7.164063-5.152344 13.398438-11.035156 17.542969l-19.679688 13.859375c-12.140625 8.582031-26.320312-1.675781-32.410156-10.160156l-28.09375-39.109375c-.714844-7.597657-2.417969-15.238281-4.949219-22.605469-1.691406-14.109375 5.519531-26.527344 18.496094-31.722656zm-33.175781 35.382812c.078124.261719.167968.519532.273437.769532 3.453125 9.960937 5.167969 20.53125 4.472656 30.457031-.054687.738281-.117187 1.457031-.1875 2.164062-.023437.175781-.046875.351563-.058593.53125-1.164063 10.671875-4.640626 17.625-12.625 25.648438-19.929688 20.042969-56.527344 28.941406-78.316407 19.042969l-30.648437-13.941407c4.738281-22.023437 13.785156-31.015625 24.140625-41.292969 13.824219-13.714843 29.359375-29.148437 34.261719-75.503906l26.300781 11.964844c2.445312 1.109375 4.828125 2.527344 7.136719 4.1875.125.09375.253906.183594.382812.273438 10.660156 7.8125 19.644531 21.054687 24.867188 35.699218zm-44.226563-68.488281c.171875-.382813.476563-.566406.707031-.652344.226563-.085937.589844-.152343.988282.03125l7.988281 3.625c2.804687 1.273438 5.367187 4.4375 6.847656 8.46875.335937.90625.585937 1.828125.789063 2.742188l-19.71875-8.972657zm-109.914063 79.15625c.324219-25.664063 14.144532-51.542969 34.386719-64.398437 6.765625-4.296876 16.144531-8.28125 27.644531-8.28125 5.773438 0 12.078126 1.003906 18.859376 3.476562-3.738282 44.792969-16.675782 57.625-30.339844 71.183594-10.550782 10.464844-21.414063 21.242187-27.363282 44.90625-20.304687-13.457032-23.347656-34.613282-23.1875-46.886719zm345.984376 244.214844h-450.234376c-8.695312 0-15.769531-7.066407-15.769531-15.753907v-316.394531c0-12.953125 10.558594-23.488281 23.53125-23.488281 12.960938 0 23.503907 10.535156 23.503907 23.488281v97.855469.070312 90.042969c0 9.679688 7.878906 17.554688 17.5625 17.554688h46.25c4.175781 0 7.558593-3.382813 7.558593-7.558594 0-4.171875-3.382812-7.554687-7.558593-7.554687h-46.25c-1.328126 0-2.449219-1.121094-2.449219-2.445313v-84.703125c14.882812-4.867188 32.058593-5.492188 43.234375-5.445312 2.710937 25.042968 16.917968 44.929687 40.019531 55.414062.003906.003906.007813.003906.007813.003906l36.050781 16.402344c7.960937 3.613281 17.292969 5.320312 27.128906 5.320312 23.980469 0 50.9375-10.140624 68.160156-27.464843 2.042969-2.050781 3.867188-4.082031 5.503907-6.125.476562 15.757812-2.597657 24.414062-5.605469 32.867187-1.753907 4.929688-3.550781 9.988282-4.726563 16.175782h-132.480468c-4.171876 0-7.554688 3.382812-7.554688 7.554687 0 4.175781 3.382812 7.558594 7.554688 7.558594h131.230468c.296875 13.710937 4.496094 26.917969 12.183594 37.871093 8.375 11.933594 20.578125 20.722657 34.734375 25.144532 2.882813 10.984375 11.546875 18.632812 21.265625 21.308594 2.703125.742187 5.527344 1.132812 8.398438 1.132812 11.480468 0 23.738281-6.234375 32.273437-20.875h59.160156c21.648438 0 34.402344-2.585938 43.085938-8.851562v55.140624c0 8.6875-7.074219 15.753907-15.769531 15.753907zm0 0'%3E%3C/path%3E%3Cpath d='m310.398438 50.464844h17.082031l-21.25 21.132812c-2.167969 2.15625-2.824219 5.410156-1.65625 8.238282 1.167969 2.828124 3.925781 4.675781 6.988281 4.675781h35.992188c4.171874 0 7.554687-3.382813 7.554687-7.558594 0-4.171875-3.382813-7.554687-7.554687-7.554687h-17.679688l21.25-21.132813c2.171875-2.160156 2.824219-5.414063 1.65625-8.242187-1.167969-2.828126-3.925781-4.671876-6.984375-4.671876h-35.398437c-4.171876 0-7.554688 3.382813-7.554688 7.554688 0 4.175781 3.382812 7.558594 7.554688 7.558594zm0 0'%3E%3C/path%3E%3Cpath d='m384.621094 15.113281h17.070312l-21.234375 21.101563c-2.171875 2.15625-2.828125 5.414062-1.660156 8.242187s3.925781 4.675781 6.988281 4.675781h35.992188c4.171875 0 7.554687-3.382812 7.554687-7.558593 0-4.171875-3.382812-7.554688-7.554687-7.554688h-17.667969l21.234375-21.101562c2.171875-2.15625 2.828125-5.410157 1.660156-8.242188-1.164062-2.828125-3.925781-4.675781-6.984375-4.675781h-35.398437c-4.175782 0-7.558594 3.382812-7.558594 7.558594 0 4.171875 3.382812 7.554687 7.558594 7.554687zm0 0'%3E%3C/path%3E%3C/svg%3E");
}
    //colour
    .icon-white {
        background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg enable-background='new 0 0 511.996 511.996' style='height:20px;width:20px' version='1.1' viewBox='0 0 512 512' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m256.03 511.96c-65.578 0-131.16-24.962-181.08-74.885-6.378-6.378-6.38-16.72 0-23.099 6.378-6.378 16.72-6.38 23.1 0 87.11 87.11 228.85 87.11 315.96 0 87.11-87.11 87.11-228.85 0-315.96-87.11-87.11-228.85-87.11-315.96 0-56.361 56.361-78.483 139.24-57.733 216.3 2.345 8.711-2.814 17.673-11.525 20.018-8.707 2.345-17.673-2.814-20.018-11.525-23.783-88.306 1.575-183.29 66.173-247.89 99.849-99.849 262.31-99.847 362.16 0 99.847 99.849 99.847 262.31 0 362.16-49.925 49.923-115.5 74.886-181.08 74.886z' fill='%23333333'/%3E%3Ccircle cx='256.04' cy='256.01' r='154.6' fill='%23ffffff'/%3E%3Cpath d='m256.03 426.92c-94.246 0-170.92-76.675-170.92-170.92s76.675-170.92 170.92-170.92 170.92 76.675 170.92 170.92-76.676 170.92-170.92 170.92zm0-309.18c-76.234 0-138.26 62.021-138.26 138.26s62.021 138.26 138.26 138.26 138.26-62.021 138.26-138.26-62.021-138.26-138.26-138.26z' fill='%23333333'/%3E%3C/svg%3E%0A");
    }

    .icon-grey {
        background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg enable-background='new 0 0 511.996 511.996' style='height:20px;width:20px' version='1.1' viewBox='0 0 512 512' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m256.03 511.96c-65.578 0-131.16-24.962-181.08-74.885-6.378-6.378-6.38-16.72 0-23.099 6.378-6.378 16.72-6.38 23.1 0 87.11 87.11 228.85 87.11 315.96 0 87.11-87.11 87.11-228.85 0-315.96-87.11-87.11-228.85-87.11-315.96 0-56.361 56.361-78.483 139.24-57.733 216.3 2.345 8.711-2.814 17.673-11.525 20.018-8.707 2.345-17.673-2.814-20.018-11.525-23.783-88.306 1.575-183.29 66.173-247.89 99.849-99.849 262.31-99.847 362.16 0 99.847 99.849 99.847 262.31 0 362.16-49.925 49.923-115.5 74.886-181.08 74.886z' fill='%23a3a2a2'/%3E%3Ccircle cx='256.04' cy='256.01' r='154.6' fill='%23a3a2a2'/%3E%3Cpath d='m256.03 426.92c-94.246 0-170.92-76.675-170.92-170.92s76.675-170.92 170.92-170.92 170.92 76.675 170.92 170.92-76.676 170.92-170.92 170.92zm0-309.18c-76.234 0-138.26 62.021-138.26 138.26s62.021 138.26 138.26 138.26 138.26-62.021 138.26-138.26-62.021-138.26-138.26-138.26z' fill='%23a3a2a2'/%3E%3C/svg%3E%0A");
    }

    .icon-black {
        background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg enable-background='new 0 0 511.996 511.996' style='height:20px;width:20px' version='1.1' viewBox='0 0 512 512' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m256.03 511.96c-65.578 0-131.16-24.962-181.08-74.885-6.378-6.378-6.38-16.72 0-23.099 6.378-6.378 16.72-6.38 23.1 0 87.11 87.11 228.85 87.11 315.96 0 87.11-87.11 87.11-228.85 0-315.96-87.11-87.11-228.85-87.11-315.96 0-56.361 56.361-78.483 139.24-57.733 216.3 2.345 8.711-2.814 17.673-11.525 20.018-8.707 2.345-17.673-2.814-20.018-11.525-23.783-88.306 1.575-183.29 66.173-247.89 99.849-99.849 262.31-99.847 362.16 0 99.847 99.849 99.847 262.31 0 362.16-49.925 49.923-115.5 74.886-181.08 74.886z' fill='%23333333'/%3E%3Ccircle cx='256.04' cy='256.01' r='154.6' fill='%23333333'/%3E%3Cpath d='m256.03 426.92c-94.246 0-170.92-76.675-170.92-170.92s76.675-170.92 170.92-170.92 170.92 76.675 170.92 170.92-76.676 170.92-170.92 170.92zm0-309.18c-76.234 0-138.26 62.021-138.26 138.26s62.021 138.26 138.26 138.26 138.26-62.021 138.26-138.26-62.021-138.26-138.26-138.26z' fill='%23333333'/%3E%3C/svg%3E%0A");
    }

    .icon-silver {
        background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg enable-background='new 0 0 511.996 511.996' style='height:20px;width:20px' version='1.1' viewBox='0 0 512 512' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m256.03 511.96c-65.578 0-131.16-24.962-181.08-74.885-6.378-6.378-6.38-16.72 0-23.099 6.378-6.378 16.72-6.38 23.1 0 87.11 87.11 228.85 87.11 315.96 0 87.11-87.11 87.11-228.85 0-315.96-87.11-87.11-228.85-87.11-315.96 0-56.361 56.361-78.483 139.24-57.733 216.3 2.345 8.711-2.814 17.673-11.525 20.018-8.707 2.345-17.673-2.814-20.018-11.525-23.783-88.306 1.575-183.29 66.173-247.89 99.849-99.849 262.31-99.847 362.16 0 99.847 99.849 99.847 262.31 0 362.16-49.925 49.923-115.5 74.886-181.08 74.886z' fill='%23d5d5d5'/%3E%3Ccircle cx='256.04' cy='256.01' r='154.6' fill='%23d5d5d5'/%3E%3Cpath d='m256.03 426.92c-94.246 0-170.92-76.675-170.92-170.92s76.675-170.92 170.92-170.92 170.92 76.675 170.92 170.92-76.676 170.92-170.92 170.92zm0-309.18c-76.234 0-138.26 62.021-138.26 138.26s62.021 138.26 138.26 138.26 138.26-62.021 138.26-138.26-62.021-138.26-138.26-138.26z' fill='%23d5d5d5'/%3E%3C/svg%3E%0A");
    }

    .icon-natural-color {
        background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg enable-background='new 0 0 511.996 511.996' style='height:20px;width:20px' version='1.1' viewBox='0 0 512 512' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m256.03 511.96c-65.578 0-131.16-24.962-181.08-74.885-6.378-6.378-6.38-16.72 0-23.099 6.378-6.378 16.72-6.38 23.1 0 87.11 87.11 228.85 87.11 315.96 0 87.11-87.11 87.11-228.85 0-315.96-87.11-87.11-228.85-87.11-315.96 0-56.361 56.361-78.483 139.24-57.733 216.3 2.345 8.711-2.814 17.673-11.525 20.018-8.707 2.345-17.673-2.814-20.018-11.525-23.783-88.306 1.575-183.29 66.173-247.89 99.849-99.849 262.31-99.847 362.16 0 99.847 99.849 99.847 262.31 0 362.16-49.925 49.923-115.5 74.886-181.08 74.886z' fill='%23b49d7d'/%3E%3Ccircle cx='256.04' cy='256.01' r='154.6' fill='%23b49d7d'/%3E%3Cpath d='m256.03 426.92c-94.246 0-170.92-76.675-170.92-170.92s76.675-170.92 170.92-170.92 170.92 76.675 170.92 170.92-76.676 170.92-170.92 170.92zm0-309.18c-76.234 0-138.26 62.021-138.26 138.26s62.021 138.26 138.26 138.26 138.26-62.021 138.26-138.26-62.021-138.26-138.26-138.26z' fill='%23b49d7d'/%3E%3C/svg%3E%0A");
    }

    .icon-brown {
        background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg enable-background='new 0 0 511.996 511.996' style='height:20px;width:20px' version='1.1' viewBox='0 0 512 512' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m256.03 511.96c-65.578 0-131.16-24.962-181.08-74.885-6.378-6.378-6.38-16.72 0-23.099 6.378-6.378 16.72-6.38 23.1 0 87.11 87.11 228.85 87.11 315.96 0 87.11-87.11 87.11-228.85 0-315.96-87.11-87.11-228.85-87.11-315.96 0-56.361 56.361-78.483 139.24-57.733 216.3 2.345 8.711-2.814 17.673-11.525 20.018-8.707 2.345-17.673-2.814-20.018-11.525-23.783-88.306 1.575-183.29 66.173-247.89 99.849-99.849 262.31-99.847 362.16 0 99.847 99.849 99.847 262.31 0 362.16-49.925 49.923-115.5 74.886-181.08 74.886z' fill='%2370593a'/%3E%3Ccircle cx='256.04' cy='256.01' r='154.6' fill='%2370593a'/%3E%3Cpath d='m256.03 426.92c-94.246 0-170.92-76.675-170.92-170.92s76.675-170.92 170.92-170.92 170.92 76.675 170.92 170.92-76.676 170.92-170.92 170.92zm0-309.18c-76.234 0-138.26 62.021-138.26 138.26s62.021 138.26 138.26 138.26 138.26-62.021 138.26-138.26-62.021-138.26-138.26-138.26z' fill='%2370593a'/%3E%3C/svg%3E%0A");
    }

    .icon-pink {
        background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg enable-background='new 0 0 511.996 511.996' style='height:20px;width:20px' version='1.1' viewBox='0 0 512 512' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m256.03 511.96c-65.578 0-131.16-24.962-181.08-74.885-6.378-6.378-6.38-16.72 0-23.099 6.378-6.378 16.72-6.38 23.1 0 87.11 87.11 228.85 87.11 315.96 0 87.11-87.11 87.11-228.85 0-315.96-87.11-87.11-228.85-87.11-315.96 0-56.361 56.361-78.483 139.24-57.733 216.3 2.345 8.711-2.814 17.673-11.525 20.018-8.707 2.345-17.673-2.814-20.018-11.525-23.783-88.306 1.575-183.29 66.173-247.89 99.849-99.849 262.31-99.847 362.16 0 99.847 99.849 99.847 262.31 0 362.16-49.925 49.923-115.5 74.886-181.08 74.886z' fill='%23ff7dfc'/%3E%3Ccircle cx='256.04' cy='256.01' r='154.6' fill='%23ff7dfc'/%3E%3Cpath d='m256.03 426.92c-94.246 0-170.92-76.675-170.92-170.92s76.675-170.92 170.92-170.92 170.92 76.675 170.92 170.92-76.676 170.92-170.92 170.92zm0-309.18c-76.234 0-138.26 62.021-138.26 138.26s62.021 138.26 138.26 138.26 138.26-62.021 138.26-138.26-62.021-138.26-138.26-138.26z' fill='%23ff7dfc'/%3E%3C/svg%3E%0A");
    }

    .icon-blue {
        background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg enable-background='new 0 0 511.996 511.996' style='height:20px;width:20px' version='1.1' viewBox='0 0 512 512' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m256.03 511.96c-65.578 0-131.16-24.962-181.08-74.885-6.378-6.378-6.38-16.72 0-23.099 6.378-6.378 16.72-6.38 23.1 0 87.11 87.11 228.85 87.11 315.96 0 87.11-87.11 87.11-228.85 0-315.96-87.11-87.11-228.85-87.11-315.96 0-56.361 56.361-78.483 139.24-57.733 216.3 2.345 8.711-2.814 17.673-11.525 20.018-8.707 2.345-17.673-2.814-20.018-11.525-23.783-88.306 1.575-183.29 66.173-247.89 99.849-99.849 262.31-99.847 362.16 0 99.847 99.849 99.847 262.31 0 362.16-49.925 49.923-115.5 74.886-181.08 74.886z' fill='%23143086'/%3E%3Ccircle cx='256.04' cy='256.01' r='154.6' fill='%23143086'/%3E%3Cpath d='m256.03 426.92c-94.246 0-170.92-76.675-170.92-170.92s76.675-170.92 170.92-170.92 170.92 76.675 170.92 170.92-76.676 170.92-170.92 170.92zm0-309.18c-76.234 0-138.26 62.021-138.26 138.26s62.021 138.26 138.26 138.26 138.26-62.021 138.26-138.26-62.021-138.26-138.26-138.26z' fill='%23143086'/%3E%3C/svg%3E%0A");
    }

    .icon-green {
        background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg enable-background='new 0 0 511.996 511.996' style='height:20px;width:20px' version='1.1' viewBox='0 0 512 512' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m256.03 511.96c-65.578 0-131.16-24.962-181.08-74.885-6.378-6.378-6.38-16.72 0-23.099 6.378-6.378 16.72-6.38 23.1 0 87.11 87.11 228.85 87.11 315.96 0 87.11-87.11 87.11-228.85 0-315.96-87.11-87.11-228.85-87.11-315.96 0-56.361 56.361-78.483 139.24-57.733 216.3 2.345 8.711-2.814 17.673-11.525 20.018-8.707 2.345-17.673-2.814-20.018-11.525-23.783-88.306 1.575-183.29 66.173-247.89 99.849-99.849 262.31-99.847 362.16 0 99.847 99.849 99.847 262.31 0 362.16-49.925 49.923-115.5 74.886-181.08 74.886z' fill='%2352b37e'/%3E%3Ccircle cx='256.04' cy='256.01' r='154.6' fill='%2352b37e'/%3E%3Cpath d='m256.03 426.92c-94.246 0-170.92-76.675-170.92-170.92s76.675-170.92 170.92-170.92 170.92 76.675 170.92 170.92-76.676 170.92-170.92 170.92zm0-309.18c-76.234 0-138.26 62.021-138.26 138.26s62.021 138.26 138.26 138.26 138.26-62.021 138.26-138.26-62.021-138.26-138.26-138.26z' fill='%2352b37e'/%3E%3C/svg%3E%0A");
    }

    .icon-cream {
        background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg enable-background='new 0 0 511.996 511.996' style='height:20px;width:20px' version='1.1' viewBox='0 0 512 512' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m256.03 511.96c-65.578 0-131.16-24.962-181.08-74.885-6.378-6.378-6.38-16.72 0-23.099 6.378-6.378 16.72-6.38 23.1 0 87.11 87.11 228.85 87.11 315.96 0 87.11-87.11 87.11-228.85 0-315.96-87.11-87.11-228.85-87.11-315.96 0-56.361 56.361-78.483 139.24-57.733 216.3 2.345 8.711-2.814 17.673-11.525 20.018-8.707 2.345-17.673-2.814-20.018-11.525-23.783-88.306 1.575-183.29 66.173-247.89 99.849-99.849 262.31-99.847 362.16 0 99.847 99.849 99.847 262.31 0 362.16-49.925 49.923-115.5 74.886-181.08 74.886z' fill='%23ebe9ca'/%3E%3Ccircle cx='256.04' cy='256.01' r='154.6' fill='%23ebe9ca'/%3E%3Cpath d='m256.03 426.92c-94.246 0-170.92-76.675-170.92-170.92s76.675-170.92 170.92-170.92 170.92 76.675 170.92 170.92-76.676 170.92-170.92 170.92zm0-309.18c-76.234 0-138.26 62.021-138.26 138.26s62.021 138.26 138.26 138.26 138.26-62.021 138.26-138.26-62.021-138.26-138.26-138.26z' fill='%23ebe9ca'/%3E%3C/svg%3E%0A");
    }
.icon-doctor {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' style='height:24px;width:24px' id='fi_4331766'%3E%3Cg id='Icons'%3E%3Cpath d='M23,4c-3,0-5,2.16-6,3.81C16,6.16,14,4,11,4a7,7,0,0,0-7,6.93,12.92,12.92,0,0,0,.44,3.33,1,1,0,0,0,1.93-.52A10.89,10.89,0,0,1,6,10.93,5,5,0,0,1,11,6c3.4,0,5,4.3,5.06,4.35a1,1,0,0,0,1.88,0S19.58,6,23,6a5,5,0,0,1,5,4.93A12.1,12.1,0,0,1,26.25,17H23.57l-2.71-4.51A1,1,0,0,0,20,12a1,1,0,0,0-.86.5l-3.2,5.6-3.1-4.65A1,1,0,0,0,12,13a1,1,0,0,0-.83.4L8.5,17H3a1,1,0,0,0,0,2H9a1,1,0,0,0,.8-.4L12,15.73l3.22,4.82A1,1,0,0,0,16,21h0a1,1,0,0,0,.83-.5L20,15l2.12,3.54A1,1,0,0,0,23,19h1.9A30.18,30.18,0,0,1,17,25.84a32.17,32.17,0,0,1-5.31-4,1,1,0,0,0-1.37,1.46,32.9,32.9,0,0,0,6.21,4.59,1,1,0,0,0,1,0C18,27.6,30,21,30,10.93A7,7,0,0,0,23,4Z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}
//**
.icon-easy {
    background-image: url("data:image/svg+xml,%3Csvg id='fi_5267975' enable-background='new 0 0 512 512' style='height:24px;width:24px' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='m457 66h-402c-30.327 0-55 24.673-55 55v270c0 30.327 24.673 55 55 55h402c30.327 0 55-24.673 55-55v-270c0-30.327-24.673-55-55-55zm25 325c0 13.785-11.215 25-25 25h-402c-13.785 0-25-11.215-25-25v-270c0-13.785 11.215-25 25-25h402c13.785 0 25 11.215 25 25z'%3E%3C/path%3E%3Cpath d='m209.962 202.991c-.043-.114-.088-.228-.134-.341-2.287-5.56-7.646-9.149-13.656-9.149-.005 0-.01 0-.016 0-6.017.006-11.375 3.609-13.653 9.178-.038.093-.075.188-.111.282l-37.55 98.591c-2.457 6.452.781 13.673 7.232 16.131 6.454 2.457 13.674-.781 16.131-7.232l6.286-16.504h43.075l6.215 16.468c1.889 5.006 6.646 8.09 11.697 8.09 1.466 0 2.958-.26 4.412-.809 6.459-2.438 9.719-9.649 7.281-16.108zm-25.949 65.954 12.115-31.809 12.004 31.809z'%3E%3C/path%3E%3Cpath d='m113.136 218.5c6.903 0 12.5-5.597 12.5-12.5s-5.597-12.5-12.5-12.5h-42.136c-6.903 0-12.5 5.597-12.5 12.5v100c0 6.903 5.597 12.5 12.5 12.5h42.136c6.903 0 12.5-5.597 12.5-12.5s-5.597-12.5-12.5-12.5h-29.636v-25h26.529c6.904 0 12.5-5.596 12.5-12.5s-5.596-12.5-12.5-12.5h-26.529v-25z'%3E%3C/path%3E%3Cpath d='m447.82 195.777c-5.786-3.765-13.528-2.129-17.295 3.657l-21.22 32.597-21.46-32.865c-3.775-5.781-11.521-7.409-17.301-3.632-5.78 3.774-7.407 11.52-3.633 17.3l29.9 45.791-.116 47.344c-.017 6.904 5.565 12.514 12.47 12.531h.031c6.889 0 12.482-5.576 12.499-12.469l.116-47.388 29.664-45.57c3.768-5.786 2.131-13.529-3.655-17.296z'%3E%3C/path%3E%3Cpath d='m321.388 245.061c-12.282-4.531-23.718-9.465-27.229-11.001-2.722-2.188-2.63-5.236-2.447-6.507.253-1.765 1.535-6.079 7.954-8.012 14.221-4.285 27.395 6.262 27.526 6.369l-.071-.06.007-.008c2.175 1.831 4.977 2.94 8.036 2.94 6.892 0 12.5-5.608 12.5-12.5 0-3.833-1.738-7.266-4.464-9.561l.007-.008c-.943-.793-23.437-19.338-50.752-11.11-13.805 4.159-23.572 15.04-25.49 28.397-1.799 12.533 3.634 24.589 14.178 31.464.553.36 1.133.676 1.734.944.579.258 14.351 6.388 29.858 12.108 4.385 1.617 14.439 6.181 13.112 13.615-.998 5.589-7.805 11.37-17.469 11.37-9.939 0-19.504-4.006-25.585-10.717-4.634-5.115-12.54-5.505-17.656-.869-5.115 4.636-5.505 12.541-.869 17.656 10.741 11.853 27.23 18.93 44.11 18.93 21.074 0 38.771-13.448 42.079-31.976 2.49-13.943-3.839-32.158-29.069-41.464z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}
.icon-images {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' fill='%23143086' style='height:24px;width:24px'  xmlns='http://www.w3.org/2000/svg' id='fi_4211763'%3E%3Cg id='_34-Add-image' data-name='34-Add-image'%3E%3Cpath d='m29 24h-3v-3a1 1 0 0 0 -2 0v3h-3a1 1 0 0 0 0 2h3v3a1 1 0 0 0 2 0v-3h3a1 1 0 0 0 0-2z'%3E%3C/path%3E%3Cpath d='m17 24h-12a1 1 0 0 1 -1-1v-18a1 1 0 0 1 1-1h18a1 1 0 0 1 1 1v12a1 1 0 0 0 2 0v-12a3 3 0 0 0 -3-3h-18a3 3 0 0 0 -3 3v18a3 3 0 0 0 3 3h12a1 1 0 0 0 0-2z'%3E%3C/path%3E%3Ccircle cx='11' cy='8.5' r='2.5'%3E%3C/circle%3E%3Cpath d='m7.29 14.29-1.29 1.3v6.41h16v-6.41l-4.29-4.3a1 1 0 0 0 -1.42 0l-5.29 5.3-2.29-2.3a1 1 0 0 0 -1.42 0z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}
.icon-video {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' fill='%23143086' style='height:24px;width:24px' xmlns='http://www.w3.org/2000/svg' id='fi_3318660'%3E%3Cg id='Play'%3E%3Cpath d='m37.324 20.026-22-12.412a4.685 4.685 0 0 0 -4.711.036 4.528 4.528 0 0 0 -2.28 3.938v24.824a4.528 4.528 0 0 0 2.28 3.938 4.687 4.687 0 0 0 4.711.036l22-12.412a4.543 4.543 0 0 0 0-7.948z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}
.icon-uk {
    background-image: url("data:image/svg+xml,%3Csvg style='height:24px;width:24px' viewBox='0 -89 512 512' xmlns='http://www.w3.org/2000/svg' id='fi_1665478'%3E%3Cpath d='m204.355469 104.683594v-104.683594h-182.28125zm0 0'%3E%3C/path%3E%3Cpath d='m163.113281 115.597656-163.113281-93.679687v93.679687zm0 0'%3E%3C/path%3E%3Cpath d='m277.644531 145.597656v-145.597656h-43.289062v145.597656h-234.355469v43.289063h234.355469v145.597656h43.289062v-145.597656h234.355469v-43.289063zm0 0'%3E%3C/path%3E%3Cpath d='m348.886719 218.886719 163.113281 93.679687v-93.679687zm0 0'%3E%3C/path%3E%3Cpath d='m307.644531 229.800781v104.683594h182.28125zm0 0'%3E%3C/path%3E%3Cpath d='m307.644531 0v104.683594l182.28125-104.683594zm0 0'%3E%3C/path%3E%3Cpath d='m348.886719 115.597656h163.113281v-93.679687zm0 0'%3E%3C/path%3E%3Cpath d='m204.355469 229.800781-182.28125 104.683594h182.28125zm0 0'%3E%3C/path%3E%3Cpath d='m0 218.886719v93.679687l163.113281-93.679687zm0 0'%3E%3C/path%3E%3C/svg%3E");
}
.icon-cotton {
    background-image: url("data:image/svg+xml,%3Csvg style='height:24px;width:24px' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg' id='fi_1199245'%3E%3Cpath d='m416.027344 127.03125c-17.761719-73.191406-83.207032-127.03125-160.027344-127.03125-76.832031 0-142.269531 53.851562-160.027344 127.03125-55.371094 17.203125-95.972656 69.277344-95.972656 128.96875 0 74.464844 61.425781 135 136 135 2.582031 0 15.8125-.21875 23.375-.34375 23.671875 16.53125 51.65625 27.035156 81.625 29.679688v91.664062h30v-91.664062c29.96875-2.648438 57.953125-13.148438 81.625-29.683594 7.5625.128906 20.792969.347656 23.375.347656 36.035156 0 70.078125-14.035156 95.859375-39.519531 25.882813-25.59375 40.140625-59.5 40.140625-95.480469 0-60.296875-41.285156-111.976562-95.972656-128.96875zm-289.304688 175.539062c30.96875 4.710938 59.8125 19.863282 81.289063 43.15625l41.609375 45.128907c-55.21875-2.507813-103.183594-37.402344-122.898438-88.285157zm125.277344 88.371094-18.640625-59.84375c-4.953125-15.902344-7.359375-30.652344-7.359375-45.097656 0-39.253906 17.71875-74.332031 30-93.933594 12.285156 19.605469 30 54.683594 30 93.933594 0 14.445312-2.40625 29.199219-7.359375 45.097656l-18.640625 59.84375c-2.664062.078125-5.335938.078125-8 0zm10.382812-.085937 41.605469-45.128907c21.476563-23.292968 50.320313-38.445312 81.289063-43.15625-19.714844 50.878907-67.683594 85.777344-122.894532 88.285157zm123.046876-30.277344c15.964843-19.089844 27.871093-41.925781 34.226562-67.355469l5.554688-22.222656h-19.210938c-32.203125 0-63.578125 9.316406-90.394531 26.308594.261719-3.785156.394531-7.550782.394531-11.308594 0-70.910156-46.519531-127.265625-48.5-129.632812l-11.5-13.726563-11.5 13.726563c-1.980469 2.367187-48.5 58.722656-48.5 129.632812 0 3.757812.132812 7.523438.394531 11.308594-26.816406-16.992188-58.191406-26.308594-90.394531-26.308594h-19.210938l5.554688 22.222656c6.355469 25.429688 18.261719 48.265625 34.226562 67.355469-54.046874-4.742187-96.570312-49.828125-96.570312-104.578125 0-58.300781 49.984375-105 106-105 14.183594 0 27.929688 2.773438 40.867188 8.246094l11.6875-27.632813c-16.65625-7.042969-34.335938-10.613281-52.554688-10.613281-2.378906 0-4.746094.0625-7.101562.1875 18.671874-53.917969 69.167968-91.1875 127.101562-91.1875s108.429688 37.269531 127.101562 91.1875c-2.355468-.125-4.722656-.1875-7.101562-.1875-18.21875 0-35.898438 3.570312-52.554688 10.613281l11.691407 27.632813c12.933593-5.472656 26.679687-8.246094 40.863281-8.246094 56.027344 0 106 46.710938 106 105 0 54.75-42.523438 99.835938-96.570312 104.578125zm0 0'%3E%3C/path%3E%3C/svg%3E");
}
.icon-man-made {
    background-image: url("data:image/svg+xml,%3Csvg id='fi_3334852' style='height:24px;width:24px' enable-background='new 0 0 24 24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='m12 13.5c-.084 0-.167-.021-.243-.063l-4.5-2.5c-.158-.088-.257-.255-.257-.437v-5c0-.182.099-.349.257-.437l4.5-2.5c.152-.084.334-.084.486 0l4.5 2.5c.158.088.257.255.257.437v5c0 .182-.099.349-.257.437l-4.5 2.5c-.076.042-.159.063-.243.063zm-4-3.294 4 2.223 4-2.223v-4.412l-4-2.223-4 2.223z'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m7.5 21c-.084 0-.167-.021-.243-.063l-4.5-2.5c-.158-.088-.257-.255-.257-.437v-5c0-.182.099-.349.257-.437l4.5-2.5c.152-.084.334-.084.486 0l4.5 2.5c.158.088.257.255.257.437v5c0 .182-.099.349-.257.437l-4.5 2.5c-.076.042-.159.063-.243.063zm-4-3.294 4 2.223 4-2.223v-4.411l-4-2.223-4 2.223z'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m.5 19.89c-.175 0-.346-.093-.437-.257-.135-.242-.048-.546.193-.68l2.5-1.39c.239-.134.545-.048.68.194s.048.546-.193.68l-2.5 1.39c-.077.043-.16.063-.243.063z'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m16.5 21c-.084 0-.167-.021-.243-.063l-4.5-2.5c-.158-.088-.257-.255-.257-.437v-5c0-.182.099-.349.257-.437l4.5-2.5c.152-.084.334-.084.486 0l4.5 2.5c.158.088.257.255.257.437v5c0 .182-.099.349-.257.437l-4.5 2.5c-.076.042-.159.063-.243.063zm-4-3.294 4 2.223 4-2.223v-4.411l-4-2.223-4 2.223z'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m21 13.5c-.175 0-.346-.093-.437-.257-.135-.242-.048-.546.193-.68l2.5-1.39c.24-.133.546-.048.68.194.135.242.048.546-.193.68l-2.5 1.39c-.077.043-.16.063-.243.063z'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m7.5 6c-.083 0-.166-.02-.243-.063l-2.5-1.39c-.241-.134-.328-.438-.193-.68.134-.243.439-.328.68-.194l2.5 1.39c.241.134.328.438.193.68-.091.164-.262.257-.437.257z'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m12 3.5c-.276 0-.5-.224-.5-.5v-2.5c0-.276.224-.5.5-.5s.5.224.5.5v2.5c0 .276-.224.5-.5.5z'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m7.5 24c-.276 0-.5-.224-.5-.5v-3c0-.276.224-.5.5-.5s.5.224.5.5v3c0 .276-.224.5-.5.5z'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m16.5 24c-.276 0-.5-.224-.5-.5v-3c0-.276.224-.5.5-.5s.5.224.5.5v3c0 .276-.224.5-.5.5z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}
.icon-box-pillow {
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' style='height:24px;width:24px' id='fi_964038' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 480 480' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cg%3E%3Cpath d='M472,72H8c-4.418,0-8,3.582-8,8v320c0,4.418,3.582,8,8,8h464c4.418,0,8-3.582,8-8V80C480,75.582,476.418,72,472,72z M464,392H16V88h448V392z'%3E%3C/path%3E%3Cpath d='M80,152h64v-48H32v112h48V152z M64,200H48v-80h80v16H64V200z'%3E%3C/path%3E%3Cpath d='M448,264h-48v64h-64v48h112V264z M432,360h-80v-16h64v-64h16V360z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E");
}
.icon-machine-wash, .icon-machine-washable {*/
/*background-image: url("data:image/svg+xml,%3Csvg id='fi_7092759' style='height:24px;width:24px' enable-background='new 0 0 512 512' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='m15.984 0v512h389.989v-15h-374.989v-390.947h284.989v-15h-284.989v-76.053h450.032v76.053h-150.043v15h150.043v390.947h-30.043v15h45.043v-512z'%3E%3C/path%3E%3Cpath d='m420.973 497h15v15h-15z'%3E%3C/path%3E%3Cpath d='m255.973 450.947c82.681 0 149.947-67.266 149.947-149.947s-67.266-149.947-149.947-149.947c-28.769 0-56.72 8.171-80.832 23.631l8.097 12.627c21.69-13.907 46.842-21.258 72.735-21.258 74.41 0 134.947 60.537 134.947 134.947s-60.537 134.947-134.947 134.947-134.946-60.537-134.946-134.947c0-40.71 18.11-78.838 49.687-104.607l-9.483-11.621c-25.145 20.52-42.601 48.097-50.474 78.728h-34.837v75h34.854c16.693 64.594 75.463 112.447 145.199 112.447zm-165.053-127.447v-45h16.799c-1.111 7.386-1.692 14.901-1.692 22.5 0 7.646.579 15.159 1.688 22.5z'%3E%3C/path%3E%3Cpath d='m255.973 420.947c66.139 0 119.947-53.808 119.947-119.947s-53.808-119.947-119.947-119.947-119.946 53.808-119.946 119.947 53.808 119.947 119.946 119.947zm0-15c-60.303.237-108.934-51.756-104.711-111.895 11.108 1.657 17.674 6.893 25.059 12.803 9.747 7.802 20.795 16.645 42.168 16.645s32.421-8.843 42.169-16.645c8.954-7.167 16.687-13.355 32.796-13.355s23.842 6.189 32.796 13.355c8.136 6.512 17.185 13.746 32.383 15.96-10.068 47.433-52.271 83.132-102.66 83.132zm0-209.894c60.303-.237 108.934 51.756 104.711 111.895-11.109-1.657-17.675-6.893-25.061-12.804-9.748-7.802-20.796-16.645-42.169-16.645-21.374 0-32.422 8.843-42.169 16.645-8.954 7.167-16.687 13.355-32.796 13.355s-23.841-6.189-32.795-13.355c-8.136-6.512-17.184-13.746-32.381-15.96 10.069-47.432 52.272-83.131 102.66-83.131z'%3E%3C/path%3E%3Cpath d='m60.888 53.617c0 12.424 10.108 22.532 22.532 22.532s22.532-10.108 22.532-22.532-10.108-22.532-22.532-22.532-22.532 10.108-22.532 22.532zm30.064 0c0 4.153-3.379 7.532-7.532 7.532s-7.532-3.379-7.532-7.532 3.379-7.532 7.532-7.532 7.532 3.379 7.532 7.532z'%3E%3C/path%3E%3Cpath d='m241.24 76.149v-45.064h-105.213v45.064zm-90.213-30.064h75.213v15.063h-75.213z'%3E%3C/path%3E%3Cpath d='m301.165 76.149v-45.064h-45.064v45.064zm-30.064-30.064h15.064v15.063h-15.064z'%3E%3C/path%3E%3Cpath d='m436.016 46h15v15h-15z'%3E%3C/path%3E%3Cpath d='m406.048 46h15v15h-15z'%3E%3C/path%3E%3Cpath d='m376.176 46h15v15h-15z'%3E%3C/path%3E%3Cpath d='m316.144 31h15v45h-15z'%3E%3C/path%3E%3Cpath d='m46.048 481.181h74.979v-60h-74.979zm15-45h44.979v30h-44.979z'%3E%3C/path%3E%3Cpath d='m203.473 226h15v15h-15z'%3E%3C/path%3E%3Cpath d='m233.473 226h15v15h-15z'%3E%3C/path%3E%3Cpath d='m46.048 121.106h15v15h-15z'%3E%3C/path%3E%3Cpath d='m75.92 121.106h15v15h-15z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");*/
/*background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="%23000000" viewBox="-12.92 0 122.88 122.88" enable-background="new 0 0 97.04 122.88" xml:space="preserve"><g><path d="M48.68,40.62c8.77,0,16.7,3.55,22.45,9.3c5.74,5.74,9.3,13.68,9.3,22.45c0,8.77-3.55,16.7-9.3,22.45 c-5.74,5.74-13.68,9.3-22.45,9.3c-8.77,0-16.7-3.55-22.45-9.3c-5.74-5.74-9.3-13.68-9.3-22.45c0-8.77,3.55-16.7,9.3-22.45 C31.97,44.17,39.91,40.62,48.68,40.62L48.68,40.62z M22.36,9.8c3.81,0,6.89,3.09,6.89,6.89s-3.09,6.89-6.89,6.89 s-6.89-3.09-6.89-6.89S18.56,9.8,22.36,9.8L22.36,9.8z M59.32,14.7c1.22,0,2.22,0.99,2.22,2.22c0,1.22-0.99,2.22-2.22,2.22 c-1.22,0-2.22-0.99-2.22-2.22C57.11,15.69,58.1,14.7,59.32,14.7L59.32,14.7z M68.93,14.7c1.22,0,2.22,0.99,2.22,2.22 c0,1.22-0.99,2.22-2.22,2.22c-1.22,0-2.22-0.99-2.22-2.22C66.71,15.69,67.7,14.7,68.93,14.7L68.93,14.7z M78.53,14.7 c1.22,0,2.22,0.99,2.22,2.22c0,1.22-0.99,2.22-2.22,2.22c-1.22,0-2.22-0.99-2.22-2.22C76.31,15.69,77.31,14.7,78.53,14.7 L78.53,14.7z M4.44,28.42h87.83V6.07c0-0.45-0.18-0.85-0.48-1.15c-0.3-0.3-0.7-0.48-1.15-0.48H6.07c-0.45,0-0.85,0.18-1.15,0.48 c-0.3,0.3-0.48,0.7-0.48,1.15V28.42L4.44,28.42z M96.71,29.47c0.21,0.34,0.33,0.74,0.33,1.17c0,0.43-0.12,0.83-0.33,1.17v85.01 c0,1.67-0.68,3.19-1.78,4.29c-1.1,1.1-2.62,1.78-4.29,1.78H6.07c-1.67,0-3.19-0.68-4.29-1.78C0.68,120,0,118.48,0,116.81V6.07 C0,4.4,0.68,2.88,1.78,1.78C2.88,0.68,4.4,0,6.07,0h84.57c1.67,0,3.19,0.68,4.29,1.78c1.1,1.1,1.78,2.62,1.78,4.29V29.47 L96.71,29.47z M92.27,32.86H4.44v83.95c0,0.45,0.18,0.85,0.48,1.15c0.3,0.3,0.7,0.48,1.15,0.48h84.57c0.45,0,0.85-0.18,1.15-0.48 c0.3-0.3,0.48-0.7,0.48-1.15V32.86L92.27,32.86z M23.53,74.3c-0.98-0.49-1.37-1.67-0.89-2.64c0.49-0.97,1.67-1.37,2.64-0.89 c0.43,0.21,1.07,0.55,1.72,0.89c3.7,1.95,8.34,4.38,12.24,2.31c12.99-6.93,14.55-5.06,17.08-2.02c0.93,1.11,2.07,2.48,5.5,2.9 c0.98,0.12,2.24-0.13,3.85-0.74c1.82-0.69,3.99-1.79,6.57-3.28c0.94-0.54,2.14-0.22,2.68,0.72c0.54,0.94,0.22,2.14-0.72,2.68 c-2.79,1.61-5.14,2.8-7.14,3.56c-2.22,0.84-4.09,1.17-5.71,0.97c-4.96-0.61-6.66-2.65-8.04-4.3c-1.26-1.51-2.04-2.45-12.2,2.98 c-5.74,3.06-11.4,0.08-15.92-2.29C24.66,74.88,24.17,74.62,23.53,74.3L23.53,74.3z M68.33,52.7c-5.03-5.03-11.98-8.14-19.65-8.14 c-7.68,0-14.62,3.11-19.65,8.14c-5.03,5.03-8.14,11.98-8.14,19.65c0,7.68,3.11,14.62,8.14,19.65c5.03,5.03,11.98,8.14,19.65,8.14 c7.68,0,14.62-3.11,19.65-8.14c5.03-5.03,8.14-11.98,8.14-19.65C76.47,64.68,73.36,57.73,68.33,52.7L68.33,52.7z"/></g></svg>');
}
.icon-anti-dust-mite {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' style='height:24px;width:24px' id='fi_3186045' data-name='Layer 3' viewBox='0 0 64 64' %3E%3Cpath d='M32,1A31,31,0,1,0,63,32,31.036,31.036,0,0,0,32,1Zm0,60A29,29,0,1,1,61,32,29.032,29.032,0,0,1,32,61Z'%3E%3C/path%3E%3Cpath d='M52.582,14.533a1,1,0,0,0-1.47-.059L14.474,51.112a1,1,0,0,0,.059,1.47A26.994,26.994,0,0,0,52.582,14.533ZM32,48a9.908,9.908,0,0,1-7.637-3.949L41.485,26.93A16.839,16.839,0,0,1,43,34C43,41.72,38.065,48,32,48Zm0,9a25.013,25.013,0,0,1-15.329-5.257l6.267-6.267A11.832,11.832,0,0,0,32,50c4.462,0,8.4-2.782,10.746-7.009l2.566,1.283A4.629,4.629,0,0,0,44,47.523a4.535,4.535,0,0,0,1.337,3.228l.956.956,1.414-1.414-.956-.956a2.622,2.622,0,0,1,0-3.674l.957-.956a1,1,0,0,0-.261-1.6L43.6,41.182A18.93,18.93,0,0,0,45,34c0-.456-.019-.908-.049-1.357L47,31.617a7.721,7.721,0,0,0,3.442,6.215l1.11-1.664A5.724,5.724,0,0,1,49,31.4V30a1,1,0,0,0-1.447-.895l-2.862,1.431a18.084,18.084,0,0,0-1.713-5.1l8.765-8.765A24.994,24.994,0,0,1,32,57Z'%3E%3C/path%3E%3Cpath d='M49.818,12.14a1,1,0,0,0-.351-.722A26.994,26.994,0,0,0,11.418,49.467a1,1,0,0,0,.722.351h.041a1,1,0,0,0,.707-.293L49.526,12.888A1,1,0,0,0,49.818,12.14ZM21,34c0-7.72,4.935-14,11-14a9.2,9.2,0,0,1,5.612,1.974L21.487,38.1A17.431,17.431,0,0,1,21,34ZM32,15c1.849,0,3.394,1.585,3.85,3.719a10.681,10.681,0,0,0-7.7,0C28.607,16.584,30.151,15,32,15Zm7.041,5.545a12.337,12.337,0,0,0-1.05-.747,7.537,7.537,0,0,0-1.873-4.876,8.233,8.233,0,0,1,3.069-3.844l.368-.246-1.11-1.664-.368.246a10.262,10.262,0,0,0-3.6,4.218,5.174,5.174,0,0,0-4.956,0,10.257,10.257,0,0,0-3.6-4.217l-.369-.247-1.11,1.664.369.246a8.237,8.237,0,0,1,3.068,3.844,7.536,7.536,0,0,0-1.874,4.893,14.024,14.024,0,0,0-4,3.965L20.9,21.553a1,1,0,0,0-.652-.523l-4-1-.486,1.94,3.554.888,1.509,3.018a18.157,18.157,0,0,0-1.5,4.663l-2.868-1.434A1,1,0,0,0,15,30V31.4a5.724,5.724,0,0,1-2.555,4.773l1.11,1.664A7.721,7.721,0,0,0,17,31.617l2.059,1.029c-.031.448-.056.9-.056,1.354a19.2,19.2,0,0,0,.87,5.716l-7.613,7.613A24.994,24.994,0,0,1,47.329,12.257Z'%3E%3C/path%3E%3C/svg%3E");
}
.icon-breathable {
    background-image: url("data:image/svg+xml,%3Csvg id='fi_9340918' style='height:24px;width:24px' enable-background='new 0 0 500 500' viewBox='0 0 500 500' xmlns='http://www.w3.org/2000/svg'%3E%3Cg display='none'%3E%3Cg display='inline'%3E%3Cpath d='m288.37 270.17h-149.33c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h149.32c38.69 0 52.42-23.59 52.42-43.79 0-14.52-11.6-26.33-25.86-26.33-8.5 0-15.41 7.06-15.41 15.74 0 2.47 1.06 4.79 2.92 6.36 4.25 3.6 4.77 9.97 1.17 14.22s-9.97 4.77-14.22 1.17c-6.39-5.41-10.05-13.34-10.05-21.75 0-19.81 15.96-35.92 35.58-35.92 25.38 0 46.03 20.86 46.03 46.51.02 30.81-22.7 63.97-72.57 63.97z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m187.49 219.74h-149.32c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h149.32c38.69 0 52.42-23.59 52.42-43.79 0-14.52-11.6-26.33-25.86-26.33-8.5 0-15.41 7.06-15.41 15.74 0 2.47 1.06 4.79 2.92 6.36 4.25 3.6 4.77 9.97 1.17 14.22s-9.97 4.77-14.22 1.17c-6.39-5.41-10.05-13.34-10.05-21.75 0-19.81 15.96-35.92 35.58-35.92 25.38 0 46.03 20.86 46.03 46.51.02 30.81-22.7 63.97-72.58 63.97z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m214.06 411.39c-19.62 0-35.58-16.11-35.58-35.92 0-8.41 3.66-16.34 10.05-21.75 4.25-3.6 10.61-3.08 14.22 1.17 3.6 4.25 3.08 10.61-1.17 14.22-1.86 1.57-2.92 3.89-2.92 6.36 0 8.68 6.91 15.75 15.41 15.75 14.26 0 25.86-11.81 25.86-26.33 0-20.2-13.73-43.79-52.42-43.79h-149.34c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h149.32c49.88 0 72.59 33.16 72.59 63.97.01 25.64-20.64 46.5-46.02 46.5z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m401.31 492.09c-1.84 0-3.68-.51-5.3-1.51-2.97-1.84-4.78-5.08-4.78-8.58v-433.74c0-3.82 2.16-7.31 5.58-9.02l60.52-30.26c3.13-1.56 6.84-1.4 9.81.44s4.78 5.08 4.78 8.58v433.75c0 3.82-2.16 7.31-5.58 9.02l-60.52 30.26c-1.42.71-2.97 1.06-4.51 1.06zm10.09-437.6v411.19l40.35-20.17v-411.19zm50.43 397.25h.01z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg display='none'%3E%3Cg display='inline'%3E%3Cpath d='m399.32 209.65h-149.32c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h149.32c38.69 0 52.42-23.59 52.42-43.79 0-15.26-9.99-26.33-23.75-26.33-9 0-17.52 7.65-17.52 15.74 0 2.47 1.06 4.79 2.92 6.36 4.25 3.6 4.77 9.97 1.17 14.22s-9.97 4.77-14.22 1.17c-6.39-5.41-10.05-13.34-10.05-21.75 0-19.47 17.26-35.92 37.69-35.92 25.04 0 43.92 19.99 43.92 46.51.02 30.81-22.7 63.97-72.58 63.97z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m296.68 391.16c-20.33 0-37.51-15.1-37.51-32.97 0-8.03 3.83-15.52 10.5-20.55 4.45-3.35 10.77-2.46 14.13 1.99 3.35 4.45 2.46 10.77-1.99 14.13-.92.69-2.47 2.19-2.47 4.43 0 6.58 8.43 12.8 17.34 12.8 14.78 0 23.93-12.84 23.93-24.73 0-21.74-20.09-35.24-52.42-35.24-.09 0-.18 0-.27 0l-18.19-.48c-5.57-.15-9.96-4.78-9.82-10.35.15-5.57 4.8-9.99 10.35-9.82l18.06.48c53.48.05 72.46 29.88 72.46 55.42 0 24.74-19.78 44.89-44.1 44.89z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m421.48 260.09h-171.48c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h171.48c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m179.39 209.65h-70.61c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h70.61c5.57 0 10.09 4.52 10.09 10.09 0 5.58-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m179.39 310.52h-70.61c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h70.61c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m179.39 260.09h-141.22c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h141.22c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m219.74 492.09c-2.06 0-4.1-.63-5.83-1.85-2.67-1.89-4.26-4.96-4.26-8.23v-403.49c0-4.28 2.7-8.09 6.73-9.51l171.48-60.53c3.09-1.09 6.51-.61 9.18 1.28s4.26 4.96 4.26 8.23v60.52c0 5.57-4.52 10.09-10.09 10.09s-10.09-4.52-10.09-10.09v-46.26l-151.31 53.4v382.09l151.31-53.4v-103.82c0-5.57 4.52-10.09 10.09-10.09s10.09 4.52 10.09 10.09v110.96c0 4.28-2.7 8.09-6.73 9.51l-171.47 60.53c-1.1.38-2.23.57-3.36.57z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg display='none'%3E%3Cg display='inline'%3E%3Cpath d='m323.67 199.56h-149.32c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h149.32c38.69 0 52.42-23.59 52.42-43.79 0-15.26-9.99-26.33-23.75-26.33-9 0-17.52 7.65-17.52 15.74 0 2.47 1.06 4.79 2.92 6.36 4.25 3.6 4.78 9.97 1.17 14.22-3.6 4.25-9.97 4.78-14.22 1.17-6.39-5.41-10.05-13.34-10.05-21.75 0-19.47 17.26-35.92 37.69-35.92 25.04 0 43.92 19.99 43.92 46.51.01 30.81-22.7 63.97-72.58 63.97z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m281.55 381.07c-20.33 0-37.51-15.1-37.51-32.97 0-8.03 3.83-15.52 10.5-20.55 4.45-3.35 10.77-2.46 14.13 1.99 3.35 4.45 2.46 10.77-1.99 14.13-.92.69-2.47 2.19-2.47 4.43 0 6.58 8.43 12.8 17.34 12.8 14.78 0 23.93-12.84 23.93-24.73 0-21.74-20.09-35.24-52.42-35.24l-129.19-.48c-5.57-.02-10.07-4.55-10.05-10.12.02-5.56 4.53-10.05 10.09-10.05h.04l129.15.48c53.54 0 72.56 29.85 72.56 55.42-.01 24.74-19.79 44.89-44.11 44.89z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m355.92 250h-282.45c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h282.44c5.57 0 10.09 4.52 10.09 10.09s-4.51 10.09-10.08 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m426.52 492.09c-1.13 0-2.26-.19-3.36-.58l-171.48-60.52c-4.03-1.42-6.73-5.24-6.73-9.51v-20.17c0-5.57 4.52-10.09 10.09-10.09s10.09 4.52 10.09 10.09v13.04l151.31 53.4v-382.1l-151.31-53.4v116.88c0 5.57-4.52 10.09-10.09 10.09s-10.09-4.52-10.09-10.09v-131.14c0-3.27 1.59-6.34 4.26-8.23s6.1-2.37 9.18-1.28l171.48 60.52c4.03 1.42 6.73 5.24 6.73 9.51v403.49c0 3.27-1.59 6.34-4.26 8.23-1.71 1.23-3.76 1.86-5.82 1.86z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg display='none'%3E%3Cg display='inline'%3E%3Cpath d='m250 425.51c-1.34 0-2.68-.27-3.93-.8l-231-97.84c-3.73-1.58-6.15-5.24-6.15-9.29s2.42-7.71 6.15-9.29l139.2-58.96c5.13-2.17 11.05.22 13.22 5.35s-.22 11.05-5.35 13.22l-117.27 49.68 205.13 86.89 205.13-86.89-119.67-50.69c-5.13-2.17-7.53-8.09-5.35-13.22 2.17-5.13 8.09-7.53 13.22-5.35l141.6 59.98c3.73 1.58 6.15 5.24 6.15 9.29s-2.42 7.71-6.15 9.29l-230.99 97.84c-1.26.53-2.6.79-3.94.79z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m250 486.04c-1.34 0-2.68-.27-3.93-.8l-231-97.85c-3.73-1.58-6.15-5.24-6.15-9.29s2.42-7.71 6.15-9.29l33.11-14.02c5.13-2.17 11.05.22 13.22 5.35s-.22 11.05-5.35 13.22l-11.18 4.74 205.13 86.89 205.13-86.89-11.18-4.74c-5.13-2.17-7.53-8.09-5.35-13.22s8.09-7.53 13.22-5.35l33.11 14.02c3.73 1.58 6.15 5.24 6.15 9.29s-2.42 7.71-6.15 9.29l-230.99 97.84c-1.26.54-2.6.81-3.94.81z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m248.99 356.93c-38.94 0-70.61-31.68-70.61-70.61 0-24.94 10.94-45.8 30.26-58.17v-173.84c0-22.25 18.1-40.35 40.35-40.35s40.35 18.1 40.35 40.35v173.84c19.32 12.37 30.26 33.23 30.26 58.17 0 38.93-31.68 70.61-70.61 70.61zm0-322.79c-11.12 0-20.17 9.05-20.17 20.17v179.65c0 3.77-2.1 7.22-5.44 8.95-16.01 8.3-24.82 23.72-24.82 43.41 0 27.81 22.63 50.44 50.44 50.44s50.44-22.63 50.44-50.44c0-19.69-8.82-35.1-24.82-43.41-3.34-1.73-5.44-5.19-5.44-8.95v-179.65c-.02-11.12-9.07-20.17-20.19-20.17z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m178.38 84.58h-40.35c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h40.35c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m178.38 135.01h-40.35c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h40.35c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m178.38 185.45h-40.35c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h40.35c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg display='none'%3E%3Cg display='inline'%3E%3Cpath d='m305.48 476.89c-1 0-2-.15-2.96-.44-4.8-1.47-33.67-13.77-66.71-34.2-43.4-26.84-74.1-55.13-91.25-84.08-2.84-4.79-1.25-10.98 3.54-13.82s10.98-1.25 13.82 3.54c19.2 32.42 56.33 59.74 84.09 76.95 27.24 16.88 50.98 27.64 59.39 31.13 10.89-4.83 47.07-22.82 81.8-47.23 48.83-34.31 74.63-66.51 74.63-93.11v-202.27c-22.91-2.25-54.92-11.48-88.3-25.65-15.76-6.69-49.94-22.34-68.03-39.22-18.31 16.72-53.31 32.47-69.49 39.24-26.51 11.09-61.56 22.84-86.89 25.57v51.03c0 5.57-4.52 10.09-10.09 10.09s-10.09-4.52-10.09-10.09v-60.53c0-5.57 4.52-10.09 10.09-10.09 18.44 0 53.45-9.66 89.2-24.6 40.41-16.89 63.64-32.86 68.73-41.18 1.83-3 5.09-4.82 8.6-4.82s6.77 1.83 8.61 4.82c13.16 21.51 112.83 65.79 157.75 65.79 5.57 0 10.09 4.52 10.09 10.09v211.83c0 34.12-28.28 71.2-84.06 110.21-40.62 28.41-83.22 48.67-89.5 50.6-.97.3-1.97.44-2.97.44z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m278.28 214.76h-189.68c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h189.67c38.69 0 52.42-23.59 52.42-43.79 0-15.26-9.99-26.33-23.75-26.33-9 0-17.52 7.65-17.52 15.74 0 2.47 1.06 4.79 2.92 6.36 4.25 3.6 4.78 9.97 1.17 14.22-3.6 4.25-9.97 4.77-14.22 1.17-6.39-5.41-10.05-13.34-10.05-21.75 0-19.47 17.26-35.92 37.69-35.92 25.04 0 43.92 19.99 43.92 46.51.02 30.81-22.7 63.97-72.57 63.97z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m256.34 396.27c-20.33 0-37.51-15.1-37.51-32.97 0-8.03 3.83-15.52 10.5-20.55 4.45-3.35 10.78-2.46 14.13 1.99s2.46 10.77-1.99 14.13c-.92.69-2.47 2.19-2.47 4.43 0 6.58 8.42 12.8 17.34 12.8 14.78 0 23.93-12.84 23.93-24.73 0-21.74-20.09-35.24-52.42-35.24l-159.45-.5c-5.57-.02-10.07-4.55-10.06-10.12.02-5.56 4.53-10.06 10.09-10.06h.03l159.41.48c53.55 0 72.56 29.85 72.56 55.42.01 24.77-19.78 44.92-44.09 44.92z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m310.52 265.2h-282.44c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h282.44c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg display='none'%3E%3Cg display='inline'%3E%3Cpath d='m239.91 184.43c-27.81 0-50.44-22.63-50.44-50.44s22.63-50.44 50.44-50.44 50.44 22.63 50.44 50.44-22.63 50.44-50.44 50.44zm0-80.69c-16.69 0-30.26 13.58-30.26 30.26s13.58 30.26 30.26 30.26 30.26-13.58 30.26-30.26-13.57-30.26-30.26-30.26z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m239.91 73.47c-5.57 0-10.09-4.52-10.09-10.09v-30.25c0-5.57 4.52-10.09 10.09-10.09s10.09 4.52 10.09 10.09v30.26c0 5.57-4.52 10.08-10.09 10.08z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m239.91 244.96c-5.57 0-10.09-4.52-10.09-10.09v-30.26c0-5.57 4.52-10.09 10.09-10.09s10.09 4.52 10.09 10.09v30.26c0 5.57-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m340.78 144.08h-30.26c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h30.26c5.57 0 10.09 4.52 10.09 10.09s-4.51 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m169.3 144.08h-30.26c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h30.26c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m311.24 215.41c-2.58 0-5.16-.98-7.13-2.95l-18.44-18.44c-3.94-3.94-3.94-10.33 0-14.27s10.33-3.94 14.27 0l18.44 18.44c3.94 3.94 3.94 10.33 0 14.27-1.98 1.97-4.56 2.95-7.14 2.95z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m187.03 91.2c-2.58 0-5.16-.98-7.13-2.95l-18.44-18.44c-3.94-3.94-3.94-10.33 0-14.27s10.33-3.94 14.27 0l18.44 18.44c3.94 3.94 3.94 10.33 0 14.27-1.98 1.97-4.56 2.95-7.14 2.95z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m168.59 215.41c-2.58 0-5.16-.98-7.13-2.95-3.94-3.94-3.94-10.33 0-14.27l18.44-18.44c3.94-3.94 10.33-3.94 14.27 0s3.94 10.33 0 14.27l-18.44 18.44c-1.98 1.97-4.56 2.95-7.14 2.95z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m292.8 91.2c-2.58 0-5.16-.98-7.13-2.95-3.94-3.94-3.94-10.33 0-14.27l18.44-18.44c3.94-3.94 10.33-3.94 14.27 0s3.94 10.33 0 14.27l-18.44 18.44c-1.98 1.97-4.56 2.95-7.14 2.95z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m451.74 295.39c-5.57 0-10.09-4.52-10.09-10.09v-30.26h-30.25c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h40.35c5.57 0 10.09 4.52 10.09 10.09v40.35c-.01 5.58-4.53 10.09-10.1 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m290.35 416.44c-2.58 0-5.16-.99-7.13-2.95l-20.17-20.17c-3.94-3.94-3.94-10.33 0-14.27s10.33-3.94 14.27 0l13.04 13.04 154.26-154.26c3.94-3.94 10.33-3.94 14.27 0s3.94 10.33 0 14.27l-161.4 161.4c-1.98 1.95-4.56 2.94-7.14 2.94z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m219.74 345.83c-2.58 0-5.16-.99-7.13-2.95l-70.61-70.61c-3.94-3.94-3.94-10.33 0-14.27s10.33-3.94 14.27 0l70.61 70.61c3.94 3.94 3.94 10.33 0 14.27-1.98 1.96-4.56 2.95-7.14 2.95z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m360.96 295.39c-5.57 0-10.09-4.52-10.09-10.09v-30.26h-30.26c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h40.35c5.57 0 10.09 4.52 10.09 10.09v40.35c0 5.58-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m199.56 416.44c-2.58 0-5.16-.99-7.13-2.95l-141.22-141.23c-3.94-3.94-3.94-10.33 0-14.27s10.33-3.94 14.27 0l134.09 134.09 154.26-154.26c3.94-3.94 10.33-3.94 14.27 0s3.94 10.33 0 14.27l-161.4 161.4c-1.97 1.96-4.55 2.95-7.14 2.95z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m482.01 476.96h-464.02c-3.29 0-6.37-1.6-8.26-4.3s-2.34-6.14-1.22-9.24l40.35-110.96c1.45-3.99 5.24-6.64 9.48-6.64h40.35c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09h-33.28l-33.01 90.79h435.2l-33.01-90.79h-33.28c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h40.35c4.24 0 8.03 2.65 9.48 6.64l40.35 110.96c1.12 3.09.67 6.54-1.22 9.24s-4.97 4.3-8.26 4.3z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg display='none'%3E%3Cg display='inline'%3E%3Cpath d='m91.86 481.39c-.68 0-1.36-.07-2.03-.21-3.35-.69-6.12-3.03-7.36-6.21l-73.87-189.19c-1.45-3.71-.58-7.92 2.21-10.75 23.27-23.61 60.51-36.08 107.72-36.08h.35c5.57.01 10.08 4.53 10.07 10.1s-4.52 10.07-10.09 10.07c-.08 0-.22 0-.33 0-27.35 0-64.03 4.61-88.66 25.69l66.14 169.41c45.99-35.08 112.8-26.24 183.22-16.92 67.94 8.99 138.09 18.27 190.37-13.16l-66.44-170.18c-8.94 5.09-18.56 9.34-28.73 12.69-5.3 1.74-10.99-1.14-12.73-6.43s1.14-10.99 6.43-12.73c12.52-4.12 24.04-9.78 34.26-16.84 2.54-1.75 5.74-2.25 8.68-1.35 2.95.9 5.32 3.1 6.44 5.98l73.87 189.2c1.7 4.36.18 9.31-3.66 11.97-59.29 40.94-136.48 30.73-211.14 20.85-71.32-9.43-138.69-18.35-177.55 21.09-1.9 1.94-4.49 3-7.17 3z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m142.61 339.83c-.03 0-.06 0-.09 0-5.57-.05-10.05-4.61-10-10.18.5-54.99 16.73-109.35 46.95-157.2 1.67-2.64 4.47-4.36 7.58-4.66 3.11-.29 6.18.87 8.32 3.15 12.41 13.27 18.28 34.23 20.21 41.12 1.5 5.36-1.63 10.93-6.99 12.43-5.37 1.5-10.93-1.63-12.43-6.99-2.29-8.17-4.84-15.12-7.64-20.8-23.06 41.27-35.4 86.99-35.82 133.13-.06 5.54-4.57 10-10.09 10z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m195.33 377.88c-5.2 0-9.62-4-10.04-9.28-.45-5.55 3.69-10.42 9.24-10.86 42.22-3.4 73.52-25.17 89.68-41.7-5.71-1.98-11.37-3.26-17.6-4.04-5.53-.69-9.45-5.73-8.76-11.26s5.73-9.46 11.26-8.76c12.91 1.61 23.72 4.94 36.15 11.13 2.64 1.32 4.58 3.73 5.29 6.59.71 2.87.13 5.9-1.58 8.3-13.33 18.63-54.05 55.11-112.8 59.84-.29.03-.57.04-.84.04z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m286.08 316.1c-2.87 0-5.72-1.22-7.71-3.58-3.59-4.26-3.05-10.62 1.2-14.21 22.89-19.31 44.29-44.81 60.26-71.81 10.14-17.14 15.36-30.13 17.58-37.9-6.93 1.6-16.48 5.84-24 11.65-4.41 3.4-10.74 2.59-14.15-1.82-3.4-4.41-2.59-10.74 1.82-14.15 11.4-8.8 35.31-20.65 50.91-14.98 3.11 1.13 5.47 3.71 6.31 6.91 4.08 15.5-14.28 48.83-20 58.67-9.97 17.15-31.76 50.19-65.72 78.84-1.89 1.6-4.2 2.38-6.5 2.38z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m199.95 207.52c-.71 0-1.43-.08-2.16-.23-5.44-1.19-8.9-6.56-7.71-12 8.31-38.14 17.63-62.39 30.22-78.63 12.33-15.9 26.78-23.1 43.5-31.44 21.67-10.8 48.64-24.25 85.39-63.42 2.49-2.65 6.22-3.76 9.76-2.9s6.33 3.57 7.31 7.08l.45 1.61c13.2 47.07 25.66 91.54-1.56 155.04-2.19 5.12-8.12 7.49-13.25 5.3-5.12-2.19-7.49-8.13-5.3-13.25 21.66-50.52 15.45-87.1 4.89-126.42-33.21 32.34-59.17 45.29-78.7 55.02-31.39 15.65-47.15 23.51-63.01 96.3-1.02 4.72-5.19 7.94-9.83 7.94z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m107.75 410.9c-3.3 0-6.53-1.61-8.46-4.58-3.04-4.67-1.73-10.92 2.94-13.96 77.36-50.44 152.92-182.09 182.06-244.65 2.35-5.05 8.36-7.24 13.4-4.88 5.05 2.35 7.24 8.35 4.88 13.4-7.18 15.41-33.8 70.36-75.08 130.49-39.63 57.72-78.06 98.95-114.24 122.54-1.7 1.11-3.61 1.64-5.5 1.64z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg display='none'%3E%3Cg display='inline'%3E%3Cpath d='m235.81 300.44c-50.06 0-90.79-40.21-90.79-89.64 0-39 22.68-69.75 44.62-99.49 16.24-22.02 31.58-42.82 36.3-65.14.99-4.66 5.1-8 9.87-8s8.88 3.34 9.87 8c4.72 22.31 20.06 43.11 36.3 65.14 21.93 29.74 44.62 60.5 44.62 99.49-.01 49.42-40.73 89.63-90.79 89.64zm0-222.84c-8.01 15.95-19.09 30.98-29.93 45.68-20.92 28.36-40.68 55.16-40.68 87.52 0 38.3 31.68 69.46 70.61 69.46s70.61-31.16 70.61-69.46c0-32.36-19.76-59.15-40.68-87.52-10.84-14.7-21.93-29.73-29.93-45.68z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m245.9 260.09c-4 0-7.78-2.39-9.36-6.33-2.08-5.17.43-11.04 5.6-13.12 11.69-4.7 20.37-14.62 23.22-26.53 1.3-5.42 6.74-8.76 12.16-7.47 5.42 1.3 8.76 6.74 7.47 12.16-4.37 18.27-17.57 33.43-35.32 40.56-1.25.5-2.52.73-3.77.73z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m235.81 461.83c-107.89 0-197.39-49.64-217.65-120.72-.74-2.59-.41-5.37.91-7.72s3.53-4.07 6.13-4.78l102.03-27.83c3.03-.83 6.28-.19 8.78 1.72s3.96 4.87 3.96 8.02c0 37.08 26.8 71.84 53.27 87.01 4.83 2.77 6.51 8.93 3.74 13.77-2.77 4.83-8.93 6.51-13.77 3.74-33.34-19.11-57.7-55.42-62.54-91.55l-79.78 21.76c10.49 25.69 32.93 48.8 64.19 65.86 23.76 12.97 52 22.1 82.27 26.83 38.57-6.24 73.37-19.99 100.68-39.82 23.95-17.38 40.62-38.34 48.68-61.06l-30.01-11.26c-3.54-1.33-6.04-4.53-6.48-8.28-.43-3.76 1.27-7.44 4.41-9.54l136.75-91.45c2.85-1.91 6.47-2.23 9.62-.87 3.14 1.36 5.38 4.23 5.94 7.61l25.14 152.2c.59 3.55-.77 7.15-3.55 9.44s-6.57 2.92-9.95 1.65l-33.18-12.45c-36.92 53.54-114.1 87.72-199.59 87.72zm122.89-127.66c-12.01 45.98-52.06 84.73-107.74 107.11 76.06-3.82 142.45-36.21 171.77-84.7 1.42-2.35 3.73-4.02 6.41-4.62 2.06-.46 4.2-.27 6.12.54l24.08 9.04-19.74-119.55-107.4 71.82 20.26 7.6c.2.07.4.15.6.23 4.88 2.08 7.31 7.56 5.64 12.53z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg display='none'%3E%3Cg display='inline'%3E%3Cpath d='m91.86 472.1c-.68 0-1.36-.07-2.03-.21-3.35-.69-6.12-3.03-7.36-6.21l-73.87-189.2c-1.45-3.71-.58-7.92 2.21-10.75 33.5-33.99 80.76-36.48 118.18-34.86 5.57.24 9.88 4.95 9.64 10.52s-4.95 9.88-10.52 9.64c-45.97-2-76.65 5.57-98.25 24.45l66.16 169.45c45.99-35.08 112.8-26.24 183.22-16.92 67.94 8.99 138.09 18.27 190.37-13.16l-66.44-170.17c-20.2 11.54-43.57 18.57-71.02 21.43-5.55.58-10.5-3.45-11.08-8.99s3.45-10.5 8.99-11.08c28.99-3.02 52.65-11.09 72.34-24.69 2.54-1.75 5.74-2.25 8.68-1.34 2.95.9 5.32 3.1 6.44 5.98l73.87 189.2c1.7 4.36.18 9.31-3.66 11.97-59.29 40.94-136.49 30.73-211.14 20.85-71.32-9.43-138.69-18.35-177.55 21.09-1.91 1.93-4.5 3-7.18 3z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m325.65 159.04c-25.03 0-45.39-20.59-45.39-45.91 0-19.52 10.89-35.19 20.49-49.01 6.78-9.75 13.18-18.97 15.01-28.11.94-4.71 5.08-8.11 9.89-8.11s8.95 3.39 9.89 8.11c1.83 9.15 8.23 18.36 15.01 28.11 9.6 13.82 20.49 29.48 20.49 49 .01 25.32-20.36 45.92-45.39 45.92zm0-95.87c-2.63 4.26-5.5 8.39-8.33 12.47-8.68 12.49-16.88 24.29-16.88 37.49 0 14.19 11.31 25.73 25.22 25.73 13.9 0 25.22-11.54 25.22-25.73 0-13.2-8.2-25-16.88-37.49-2.85-4.08-5.72-8.21-8.35-12.47z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m113.82 199.39c-25.03 0-45.39-20.59-45.39-45.91 0-19.52 10.89-35.19 20.49-49.01 6.78-9.75 13.18-18.97 15.01-28.11.94-4.71 5.08-8.11 9.89-8.11s8.95 3.39 9.89 8.11c1.83 9.15 8.23 18.36 15.01 28.11 9.6 13.82 20.49 29.48 20.49 49 0 25.32-20.36 45.92-45.39 45.92zm0-95.88c-2.63 4.26-5.5 8.39-8.33 12.47-8.68 12.49-16.88 24.29-16.88 37.49 0 14.19 11.31 25.73 25.22 25.73 13.9 0 25.22-11.54 25.22-25.73 0-13.2-8.2-25-16.88-37.49-2.85-4.07-5.72-8.21-8.35-12.47z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m230.44 360.78c-21.79 0-42.3-9.18-57.76-25.83-15.19-16.37-23.55-37.85-23.55-60.49 0-37.27 20.02-66.73 39.38-95.21 14.35-21.11 27.9-41.05 32.03-62.47.92-4.75 5.07-8.18 9.9-8.18s8.99 3.43 9.9 8.18c4.13 21.41 17.42 41.33 31.48 62.41 19.02 28.51 38.7 58 38.7 95.28 0 47.59-35.92 86.31-80.08 86.31zm-.05-211.38c-6.95 14.32-16.17 27.89-25.2 41.18-18.46 27.16-35.89 52.81-35.89 83.87 0 35.85 28 66.15 61.14 66.15 33.03 0 59.91-29.68 59.91-66.15 0-31.17-17.15-56.87-35.3-84.08-8.83-13.22-17.84-26.72-24.66-40.97z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg display='none'%3E%3Cg display='inline'%3E%3Cpath d='m78.52 451.75c-5.57 0-10.09-4.52-10.09-10.09v-60.52c0-5.57 4.52-10.09 10.09-10.09h60.52c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09h-50.44v50.44c0 5.56-4.51 10.08-10.08 10.08z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m247.27 471.92c-56.54 0-102.68-16.83-145.03-52.84-7.04-5.99-28.58-28.44-31.01-30.98-3.85-4.02-3.71-10.41.31-14.26s10.41-3.71 14.26.31c6.41 6.7 24.21 25.06 29.51 29.57 39.67 33.74 81.19 48.59 134.59 48.02 54.37-.53 104.84-21.35 142.11-58.62 38.63-38.63 59.85-89.45 59.74-143.1-.06-27.7-6.32-56.02-18.12-81.9-2.31-5.07-.08-11.05 4.99-13.36s11.05-.08 13.36 4.99c12.98 28.48 19.88 59.68 19.94 90.23.12 59.05-23.19 114.96-65.65 157.41-41.02 41.02-96.49 63.94-156.17 64.53-.94 0-1.89 0-2.83 0z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m57.21 346.16c-3.83 0-7.49-2.19-9.18-5.9-12.98-28.48-19.88-59.68-19.94-90.23-.12-59.06 23.19-114.96 65.65-157.41 41.03-41.03 96.49-63.94 156.17-64.53 57.85-.56 104.81 16.22 147.85 52.83 7.04 5.99 28.58 28.44 31.01 30.98 3.85 4.02 3.71 10.41-.31 14.26s-10.41 3.71-14.26-.31c-6.41-6.7-24.21-25.06-29.51-29.57-39.67-33.74-81.2-48.52-134.59-48.02-54.37.53-104.84 21.35-142.11 58.62-38.63 38.63-59.85 89.45-59.74 143.1.06 27.7 6.32 56.02 18.12 81.9 2.31 5.07.08 11.05-4.99 13.36-1.35.63-2.77.92-4.17.92z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m421.48 128.96h-60.52c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h50.44v-50.43c0-5.57 4.52-10.09 10.09-10.09s10.09 4.52 10.09 10.09v60.52c-.01 5.57-4.53 10.09-10.1 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m260.09 411.4c-38.93 0-70.61-31.68-70.61-70.61 0-24.94 10.94-45.8 30.26-58.17v-153.66c0-22.25 18.1-40.35 40.35-40.35s40.35 18.1 40.35 40.35v153.66c19.32 12.37 30.26 33.23 30.26 58.17 0 38.94-31.68 70.61-70.61 70.61zm0-302.62c-11.12 0-20.17 9.05-20.17 20.17v159.47c0 3.77-2.1 7.22-5.44 8.95-16.01 8.3-24.82 23.72-24.82 43.41 0 27.81 22.63 50.44 50.44 50.44s50.44-22.63 50.44-50.44c0-19.69-8.81-35.1-24.82-43.41-3.34-1.73-5.44-5.19-5.44-8.95v-159.46c-.02-11.13-9.07-20.18-20.19-20.18z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m189.48 159.22h-40.35c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h40.35c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m189.48 209.66h-40.35c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h40.35c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m189.48 260.09h-40.35c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h40.35c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg display='none'%3E%3Cg display='inline'%3E%3Cpath d='m219.07 464.09c-.04 0-.08 0-.12 0-38.19-.03-72.3-13.42-93.59-36.73-3.76-4.12-3.47-10.49.65-14.25s10.5-3.46 14.25.65c17.22 18.86 46.65 30.14 78.71 30.16h.11c32.14 0 61.66-11.28 78.97-30.17 3.76-4.11 10.14-4.39 14.25-.63s4.39 10.14.63 14.25c-21.08 22.99-56.15 36.72-93.86 36.72z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m144.66 479.66c-4.55 0-8.68-3.1-9.8-7.72l-11.86-49.02c-.63-2.6-.2-5.34 1.19-7.63 1.39-2.28 3.64-3.92 6.24-4.55l49.02-11.86c5.41-1.32 10.87 2.02 12.18 7.43s-2.02 10.87-7.43 12.18l-39.22 9.49 9.49 39.22c1.31 5.41-2.02 10.87-7.43 12.18-.79.19-1.59.28-2.38.28z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m356.79 191.63c-3.07 0-6.09-1.39-8.07-4.03-16.76-22.32-45.2-35.66-76.08-35.69-.03 0-.06 0-.08 0-30.95 0-59.47 13.34-76.31 35.7-3.35 4.45-9.68 5.34-14.13 1.99s-5.34-9.68-1.99-14.13c20.63-27.39 55.18-43.74 92.43-43.74h.1c37.19.03 71.66 16.38 92.2 43.75 3.34 4.46 2.44 10.78-2.01 14.12-1.83 1.38-3.95 2.03-6.06 2.03z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m356.77 191.63c-2.11 0-4.23-.66-6.05-2.02-4.46-3.34-5.36-9.67-2.01-14.12 20.87-27.8 56.59-43.75 97.99-43.75 5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09c-34.99 0-64.83 13.01-81.85 35.69-1.99 2.63-5.01 4.02-8.08 4.02z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m227.59 363.75c-37.25 0-71.8-16.35-92.43-43.74-3.35-4.45-2.46-10.77 1.99-14.13 4.45-3.35 10.77-2.46 14.13 1.99 16.84 22.36 45.36 35.7 76.31 35.7h.08c30.88-.02 59.32-13.36 76.08-35.69 3.34-4.46 9.67-5.36 14.12-2.01 4.46 3.34 5.36 9.67 2.01 14.12-20.55 27.37-55.01 43.72-92.2 43.75-.03.01-.06.01-.09.01z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m401.74 363.75c-41.4 0-77.11-15.95-97.99-43.75-3.34-4.46-2.44-10.78 2.01-14.12 4.46-3.35 10.78-2.44 14.12 2.01 17.03 22.68 46.86 35.69 81.85 35.69 5.57 0 10.09 4.52 10.09 10.09s-4.51 10.08-10.08 10.08z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m53.3 363.75c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09c34.99 0 64.83-13.01 81.85-35.69 3.34-4.46 9.67-5.36 14.12-2.01 4.46 3.34 5.36 9.67 2.01 14.12-20.87 27.81-56.58 43.76-97.98 43.76z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m188.19 191.63c-3.07 0-6.09-1.39-8.07-4.03-17.03-22.68-46.86-35.69-81.85-35.69-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09c41.4 0 77.11 15.95 97.99 43.75 3.34 4.46 2.44 10.78-2.01 14.12-1.83 1.38-3.95 2.03-6.06 2.03z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m162.39 267.57c-1.08 0-2.17-.17-3.24-.54-5.28-1.79-8.1-7.52-6.31-12.79l25.79-75.94c1.79-5.28 7.52-8.1 12.79-6.31 5.28 1.79 8.1 7.52 6.31 12.79l-25.79 75.94c-1.42 4.21-5.35 6.85-9.55 6.85z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m143.22 324.03c-1.08 0-2.17-.17-3.24-.54-5.28-1.79-8.1-7.52-6.31-12.79l5.66-16.68c1.79-5.28 7.52-8.1 12.79-6.31 5.28 1.79 8.1 7.52 6.31 12.79l-5.66 16.68c-1.42 4.2-5.35 6.85-9.55 6.85z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m350.83 209.17c-1.08 0-2.17-.17-3.24-.54-5.28-1.79-8.1-7.52-6.31-12.79l5.95-17.53c1.79-5.28 7.52-8.09 12.79-6.31 5.28 1.79 8.1 7.52 6.31 12.79l-5.95 17.53c-1.43 4.2-5.35 6.85-9.55 6.85z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m311.82 324.03c-1.08 0-2.17-.17-3.24-.54-5.28-1.79-8.1-7.52-6.31-12.79l24.19-71.25c1.79-5.28 7.52-8.09 12.79-6.31 5.28 1.79 8.1 7.52 6.31 12.79l-24.19 71.25c-1.42 4.2-5.35 6.85-9.55 6.85z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m366.01 89.53c-2.74 0-5.46-1.11-7.45-3.29-17.22-18.86-46.64-30.14-78.71-30.16-.04 0-.07 0-.11 0-32.14 0-61.66 11.28-78.97 30.17-3.76 4.11-10.14 4.39-14.25.63s-4.39-10.14-.63-14.25c21.06-23 56.14-36.72 93.84-36.72h.12c38.19.03 72.3 13.42 93.59 36.73 3.76 4.12 3.47 10.49-.65 14.25-1.92 1.77-4.36 2.64-6.78 2.64z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m316.97 101.39c-4.55 0-8.68-3.1-9.8-7.72-1.31-5.41 2.02-10.87 7.43-12.18l39.22-9.49-9.49-39.22c-1.31-5.41 2.02-10.87 7.43-12.18 5.41-1.32 10.87 2.02 12.18 7.43l11.86 49.02c.63 2.6.2 5.34-1.19 7.63-1.39 2.28-3.64 3.92-6.24 4.55l-49.02 11.86c-.79.21-1.59.3-2.38.3z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg display='none'%3E%3Cg display='inline'%3E%3Cpath d='m189.48 448.72c-3.67 0-7.22-2.01-9-5.51-2.53-4.96-.55-11.04 4.41-13.57 51-25.96 85.27-98.09 85.27-179.5v-.28c0-81.41-34.27-153.54-85.27-179.5-4.96-2.53-6.94-8.6-4.41-13.57 2.53-4.96 8.6-6.94 13.57-4.41 57.6 29.31 96.3 108.68 96.3 197.48v.28c0 88.8-38.7 168.17-96.3 197.48-1.46.75-3.03 1.1-4.57 1.1z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m300.43 470.91c-1.73 0-3.49-.45-5.09-1.39-4.81-2.82-6.42-9-3.6-13.8 15.07-25.71 38.97-104.25 38.97-205.57v-.31c0-101.32-23.9-179.86-38.97-205.57-2.82-4.81-1.2-10.99 3.6-13.8 4.81-2.82 10.99-1.21 13.8 3.6 20.23 34.52 41.74 121.88 41.74 215.77v.31c0 93.89-21.5 181.24-41.74 215.77-1.88 3.21-5.25 4.99-8.71 4.99z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m391.22 482.01c-5.57 0-10.09-4.52-10.09-10.09v-443.84c0-5.57 4.52-10.09 10.09-10.09s10.09 4.52 10.09 10.09v443.84c0 5.57-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m179.39 310.52c-2.58 0-5.16-.99-7.13-2.95-3.94-3.94-3.94-10.33 0-14.27l43.3-43.3-43.3-43.3c-3.94-3.94-3.94-10.33 0-14.27s10.33-3.94 14.27 0l50.44 50.44c3.94 3.94 3.94 10.33 0 14.27l-50.44 50.44c-1.98 1.96-4.56 2.94-7.14 2.94z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m229.83 260.09h-121.05c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h121.05c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg display='none'%3E%3Cg display='inline'%3E%3Cpath d='m118.88 452.04c-3.47 0-6.85-1.8-8.73-5.01-2.8-4.81-1.17-10.99 3.64-13.79 21.15-12.31 40.24-36.47 53.76-68.02 14.34-33.48 21.93-73.22 21.93-114.92v-.28c0-41.7-7.58-81.44-21.93-114.92-13.52-31.55-32.61-55.71-53.76-68.02-4.81-2.8-6.45-8.98-3.64-13.79 2.8-4.81 8.98-6.44 13.79-3.64 51.27 29.85 85.71 110.37 85.71 200.38v.28c0 90.01-34.44 170.53-85.71 200.38-1.59.91-3.34 1.35-5.06 1.35z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m381.12 452.04c-1.72 0-3.47-.44-5.07-1.37-51.26-29.85-85.71-110.37-85.71-200.38v-.28c0-90.01 34.44-170.53 85.71-200.38 4.82-2.8 10.99-1.17 13.79 3.64s1.17 10.99-3.64 13.79c-21.15 12.31-40.24 36.47-53.76 68.02-14.35 33.48-21.93 73.22-21.93 114.92v.28c0 41.7 7.58 81.44 21.93 114.92 13.52 31.55 32.61 55.71 53.76 68.02 4.81 2.8 6.44 8.98 3.64 13.79-1.86 3.23-5.24 5.03-8.72 5.03z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m250 482.01c-5.57 0-10.09-4.52-10.09-10.09v-443.84c0-5.57 4.52-10.09 10.09-10.09s10.09 4.52 10.09 10.09v443.84c0 5.57-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m98.69 310.52c-2.58 0-5.16-.99-7.13-2.95-3.94-3.94-3.94-10.33 0-14.27l43.3-43.3-43.3-43.3c-3.94-3.94-3.94-10.33 0-14.27s10.33-3.94 14.27 0l50.44 50.44c3.94 3.94 3.94 10.33 0 14.27l-50.44 50.44c-1.97 1.96-4.56 2.94-7.14 2.94z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m149.13 260.09h-110.96c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h110.96c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m401.31 310.52c-2.58 0-5.16-.99-7.13-2.95l-50.44-50.44c-3.94-3.94-3.94-10.33 0-14.27l50.44-50.44c3.94-3.94 10.33-3.94 14.27 0s3.94 10.33 0 14.27l-43.3 43.3 43.3 43.3c3.94 3.94 3.94 10.33 0 14.27-1.98 1.98-4.56 2.96-7.14 2.96z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m461.83 260.09h-110.96c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h110.96c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg display='none'%3E%3Cg display='inline'%3E%3Cpath d='m347.31 364.37c-8.95 0-21.07-3.26-31.71-8.76-12.51-6.47-28.71-18.79-34.88-40.79l-16.54-52.47-5.29-11.24c-24.56-24.28-54.56-51.64-61.21-54.37-6.34-2.29-12.74.28-30.34 8.04-2.37 1.05-4.89 2.16-7.58 3.32-1.6 1.59-3.91 4.63-3.55 7 2.11 14.14 7.96 24.35 13.13 33.37 3.5 6.11 6.81 11.89 8.63 18.18 5.81 20.12 4.75 36.79-3.17 49.53-4 6.44-10.41 10.13-18.06 10.38-10.52.32-22.35-6.06-29.44-15.95-5.4-7.53-67.93-99.9-86.96-128.03-3.37-4.98-5.54-10.54-6.44-16.53l-4.55-30.08c-.56-3.72-2.15-7.2-4.59-10.06l-13.69-16.07c-3.61-4.24-3.1-10.61 1.14-14.22s10.61-3.1 14.22 1.14l13.69 16.07c4.88 5.73 8.05 12.69 9.17 20.13l4.55 30.08c.45 2.99 1.53 5.77 3.2 8.24 39.15 57.86 82.48 121.76 86.65 127.58 3.33 4.64 9.11 7.61 12.38 7.54.98-.03 1.21-.26 1.58-.86 4.77-7.69 5.08-18.89.92-33.29-1.15-3.96-3.74-8.5-6.75-13.75-5.75-10.03-12.9-22.52-15.58-40.41-2.25-15.06 10.37-25.42 11.82-26.55.68-.53 1.43-.98 2.22-1.32 3.19-1.38 6.15-2.68 8.91-3.89 18.71-8.25 31.07-13.7 45.37-8.54 12.84 4.63 53.08 43.68 69.78 60.25.83.83 1.52 1.8 2.02 2.86l6.35 13.47c.19.41.36.83.49 1.27l16.79 53.27c.03.11.07.22.1.33 6.04 21.77 28.17 31.5 40.72 34.18l-21.31-85.85-48.03-102.01c-3.43-7.29-8.91-13.33-15.83-17.46l-128.64-76.76c-4.78-2.86-6.35-9.05-3.49-13.83s9.05-6.35 13.83-3.49l128.65 76.77c10.38 6.19 18.59 15.25 23.74 26.19l48.46 102.91c.28.6.5 1.23.66 1.87l24.25 97.71c.07.28.13.56.17.84.84 5.25-2.03 11.72-10.3 13.52-1.67.36-3.58.54-5.66.54z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m225.81 321.67c-1.87 0-3.74-.52-5.39-1.56-5.74-3.63-19.17-12.13-21.8-27.02-1.72-9.74 1.49-19.97 9.53-30.39 5.92-7.68 14.08-14.36 19.23-18.21l-1.68-28.88c-.33-5.56 3.92-10.33 9.48-10.66 5.55-.34 10.33 3.92 10.66 9.48l2.01 34.46c.21 3.61-1.53 7.06-4.56 9.04-.11.07-12.18 8.02-19.16 17.08-4.43 5.75-6.33 10.65-5.64 14.56.65 3.68 3.76 6.95 6.96 9.49l45.88-35.86c4.39-3.43 10.73-2.65 14.16 1.74s2.65 10.73-1.74 14.16l-51.73 40.42c-1.82 1.44-4.01 2.15-6.21 2.15z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m340.03 406.98c-27.37 0-43.92-8.2-59.92-16.13-14.66-7.27-28.5-14.13-51.46-14.13h-181.15c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h181.15c27.69 0 44.33 8.25 60.42 16.23 14.56 7.22 28.31 14.03 50.96 14.03 30.31 0 43.67-7.99 56.59-15.72 11.5-6.88 23.39-13.99 44.01-14.54 30.44-.82 41-.01 41.43.03 5.55.45 9.69 5.31 9.25 10.86-.45 5.55-5.3 9.71-10.85 9.25-.36-.03-10.67-.74-39.28.03-15.34.41-23.66 5.39-34.2 11.69-13.84 8.28-31.07 18.58-66.95 18.58z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m340.03 457.41c-28.47 0-50.03-9.86-69.06-18.56-13.74-6.28-25.61-11.71-36.86-11.71h-186.61c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h186.61c15.65 0 30.03 6.57 45.25 13.53 17.99 8.22 36.59 16.73 60.67 16.73 24.07 0 42.68-8.5 60.67-16.73 15.22-6.96 29.6-13.53 45.25-13.53h35.31c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09h-35.31c-11.25 0-23.12 5.43-36.86 11.71-19.03 8.71-40.59 18.56-69.06 18.56z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg display='none'%3E%3Cg display='inline'%3E%3Cpath d='m211.96 464.56c-3.87 0-7.44-2.23-9.12-5.78-1.81-3.83-3.74-8.19-5.79-12.81-11.24-25.33-26.64-60.02-54.82-88.2s-62.87-43.58-88.2-54.82c-4.61-2.05-8.97-3.98-12.8-5.79-3.87-1.82-6.17-5.89-5.73-10.15s3.51-7.78 7.67-8.78c42.42-10.25 104.32-37.76 150.81-84.26 46.5-46.5 74.02-108.39 84.26-150.81 1-4.16 4.52-7.23 8.78-7.67 4.25-.42 8.32 1.86 10.15 5.73 1.81 3.83 3.74 8.19 5.79 12.81 11.24 25.33 26.64 60.02 54.82 88.2s62.87 43.58 88.19 54.82c4.62 2.05 8.98 3.98 12.81 5.79 3.87 1.82 6.17 5.89 5.73 10.15s-3.51 7.77-7.67 8.78c-42.42 10.25-104.31 37.76-150.81 84.26-46.5 46.5-74.02 108.39-84.26 150.81-1 4.16-4.52 7.23-8.78 7.67-.35.03-.69.05-1.03.05zm-137.49-174.55c24.37 11.15 55.85 27.32 82.03 53.5s42.35 57.66 53.5 82.03c11.5-33.66 35.57-87.57 81.77-133.77s100.11-70.27 133.77-81.77c-24.37-11.15-55.85-27.32-82.03-53.5s-42.35-57.66-53.5-82.03c-11.5 33.66-35.57 87.57-81.77 133.77s-100.11 70.27-133.77 81.77zm224.43 8.89h.01z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m43.21 461.83c-2.58 0-5.16-.99-7.13-2.95-3.94-3.94-3.94-10.33 0-14.27l60.52-60.52c3.94-3.94 10.33-3.94 14.27 0s3.94 10.33 0 14.27l-60.52 60.52c-1.97 1.97-4.56 2.95-7.14 2.95z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m93.65 461.83h-50.44c-5.57 0-10.09-4.52-10.09-10.09v-50.44c0-5.57 4.52-10.09 10.09-10.09s10.09 4.52 10.09 10.09v40.35h40.35c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m396.26 118.87c-2.58 0-5.16-.99-7.13-2.95-3.94-3.94-3.94-10.33 0-14.27l60.52-60.52c3.94-3.94 10.33-3.94 14.27 0s3.94 10.33 0 14.27l-60.52 60.52c-1.97 1.96-4.55 2.95-7.14 2.95z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m456.79 108.78c-5.57 0-10.09-4.52-10.09-10.09v-40.35h-40.35c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h50.44c5.57 0 10.09 4.52 10.09 10.09v50.44c-.01 5.57-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg display='none'%3E%3Cg display='inline'%3E%3Cpath d='m366 239.91c-1.61 0-3.23-.39-4.71-1.17-3.3-1.75-5.37-5.18-5.37-8.92v-30.26h-110.96c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h121.04c5.57 0 10.09 4.52 10.09 10.09v21.26l82.97-56.57-82.97-56.56v21.26c0 5.57-4.52 10.09-10.09 10.09h-121.04c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h110.96v-30.25c0-3.74 2.07-7.17 5.37-8.92 3.31-1.75 7.31-1.52 10.4.58l110.96 75.65c2.76 1.88 4.4 5 4.4 8.33 0 3.34-1.65 6.45-4.4 8.33l-110.96 75.65c-1.71 1.18-3.7 1.77-5.69 1.77z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m134 431.57c-1.99 0-3.98-.59-5.68-1.75l-110.96-75.66c-2.76-1.88-4.4-5-4.4-8.33s1.65-6.45 4.4-8.33l110.96-75.65c3.09-2.11 7.09-2.33 10.4-.58 3.3 1.75 5.37 5.18 5.37 8.92v30.26h20.17c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09h-30.26c-5.57 0-10.09-4.52-10.09-10.09v-21.26l-82.97 56.57 82.97 56.57v-21.26c0-5.57 4.52-10.09 10.09-10.09h30.26c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09h-20.17v30.26c0 3.74-2.07 7.17-5.37 8.92-1.49.75-3.11 1.14-4.72 1.14z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m194.52 492.09c-2.04 0-4.07-.62-5.79-1.82-2.7-1.89-4.3-4.97-4.3-8.26v-464.01c0-3.29 1.6-6.37 4.3-8.26 2.69-1.89 6.14-2.34 9.24-1.22l110.96 40.35c3.99 1.45 6.64 5.24 6.64 9.48v30.26c0 5.57-4.52 10.09-10.09 10.09s-10.09-4.52-10.09-10.09v-23.2l-90.78-33.01v435.2l90.78-33.01v-23.2c0-5.57 4.52-10.09 10.09-10.09s10.09 4.52 10.09 10.09v30.26c0 4.24-2.65 8.03-6.64 9.48l-110.96 40.35c-1.12.41-2.29.61-3.45.61z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m164.26 128.95h-100.87c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h100.87c5.57 0 10.09 4.52 10.09 10.09 0 5.58-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m164.26 199.56h-50.44c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h50.44c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m406.35 320.61h-161.4c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h161.4c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m366 391.22h-121.04c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h121.04c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m305.48 290.35c-5.57 0-10.09-4.52-10.09-10.09v-60.52c0-5.57 4.52-10.09 10.09-10.09s10.09 4.52 10.09 10.09v60.52c0 5.57-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath d='m482.01 310.52h-464.02c-3.29 0-6.37-1.6-8.26-4.3s-2.34-6.14-1.22-9.24l40.35-110.96c1.45-3.99 5.24-6.64 9.48-6.64h80.7c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09h-73.63l-33.01 90.79h435.2l-33.01-90.78h-53.46c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h60.52c4.24 0 8.03 2.65 9.48 6.64l40.35 110.96c1.12 3.09.67 6.54-1.22 9.24-1.88 2.69-4.96 4.29-8.25 4.29z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m147.05 280.14c-.99 0-1.99-.15-2.98-.45-5.32-1.65-8.3-7.3-6.66-12.62 2.12-6.85 4.6-13.91 7.39-20.97 35.06-88.99 5.7-143.77-23.79-181.55-3.43-4.39-2.65-10.73 1.74-14.16s10.73-2.65 14.16 1.74c22.02 28.2 34.97 54.76 40.78 83.59 7.35 36.47 2.73 75-14.12 117.77-2.6 6.59-4.91 13.17-6.88 19.54-1.34 4.33-5.33 7.11-9.64 7.11z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m179.4 451.74c-3 0-5.97-1.33-7.96-3.88-18.87-24.17-43.99-62.53-44.3-116.27-.03-5.57 4.46-10.11 10.03-10.14h.06c5.54 0 10.05 4.48 10.09 10.03.21 36.71 12.55 68.78 40.03 103.97 3.43 4.39 2.65 10.73-1.74 14.16-1.86 1.44-4.04 2.13-6.21 2.13z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m237.84 280.14c-.99 0-1.99-.15-2.98-.45-5.32-1.65-8.3-7.3-6.66-12.62 2.12-6.85 4.6-13.91 7.39-20.97 35.06-88.99 5.7-143.77-23.79-181.55-3.43-4.39-2.65-10.73 1.74-14.16s10.73-2.65 14.16 1.74c22.02 28.2 34.97 54.76 40.78 83.59 7.35 36.47 2.73 75-14.12 117.77-2.6 6.59-4.91 13.17-6.88 19.54-1.35 4.33-5.34 7.11-9.64 7.11z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m270.18 451.74c-3 0-5.97-1.33-7.96-3.88-18.87-24.17-43.99-62.53-44.3-116.27-.03-5.57 4.46-10.11 10.03-10.14h.06c5.54 0 10.05 4.48 10.09 10.03.21 36.71 12.55 68.78 40.03 103.97 3.43 4.39 2.65 10.73-1.74 14.16-1.85 1.44-4.04 2.13-6.21 2.13z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m328.62 280.14c-.99 0-1.99-.15-2.98-.45-5.32-1.65-8.3-7.3-6.66-12.62 2.12-6.85 4.6-13.91 7.39-20.97 35.06-88.99 5.7-143.77-23.79-181.55-3.43-4.39-2.65-10.73 1.74-14.16s10.73-2.65 14.16 1.74c22.02 28.2 34.97 54.76 40.78 83.59 7.35 36.47 2.73 75-14.12 117.77-2.6 6.59-4.91 13.17-6.88 19.54-1.35 4.33-5.33 7.11-9.64 7.11z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m360.97 451.74c-3 0-5.97-1.33-7.96-3.88-18.87-24.17-43.99-62.53-44.3-116.27-.03-5.57 4.46-10.11 10.03-10.14h.06c5.54 0 10.05 4.48 10.09 10.03.21 36.71 12.55 68.78 40.03 103.97 3.43 4.39 2.65 10.73-1.74 14.16-1.86 1.44-4.04 2.13-6.21 2.13z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m229.83 199.56h-30.26c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h30.26c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m320.61 199.56h-30.26c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h30.26c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg display='none'%3E%3Cg display='inline'%3E%3Cpath d='m441.66 310.52h-50.44c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h43.37l33.01-90.78h-435.2l33.01 90.78h43.37c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09h-50.44c-4.24 0-8.03-2.65-9.48-6.64l-40.35-110.95c-1.12-3.09-.67-6.54 1.22-9.24s4.97-4.3 8.26-4.3h464.01c3.29 0 6.37 1.6 8.26 4.3s2.34 6.14 1.22 9.24l-40.35 110.96c-1.44 3.98-5.23 6.63-9.47 6.63z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m219.74 310.52h-50.44c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h50.44c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m330.7 310.52h-50.44c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h50.44c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m139.04 431.57c-5.57 0-10.09-4.52-10.09-10.09v-171.48c0-5.57 4.52-10.09 10.09-10.09s10.09 4.52 10.09 10.09v171.48c0 5.57-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m250 431.57c-5.57 0-10.09-4.52-10.09-10.09v-171.48c0-5.57 4.52-10.09 10.09-10.09s10.09 4.52 10.09 10.09v171.48c0 5.57-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m360.96 431.57c-5.57 0-10.09-4.52-10.09-10.09v-171.48c0-5.57 4.52-10.09 10.09-10.09s10.09 4.52 10.09 10.09v171.48c0 5.57-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m139.04 169.3c-5.57 0-10.09-4.52-10.09-10.09v-80.7c0-5.57 4.52-10.09 10.09-10.09s10.09 4.52 10.09 10.09v80.7c0 5.58-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m250 169.3c-5.57 0-10.09-4.52-10.09-10.09v-80.7c0-5.57 4.52-10.09 10.09-10.09s10.09 4.52 10.09 10.09v80.7c0 5.58-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m360.96 169.3c-5.57 0-10.09-4.52-10.09-10.09v-80.7c0-5.57 4.52-10.09 10.09-10.09s10.09 4.52 10.09 10.09v80.7c0 5.58-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m139.04 431.57c-2.58 0-5.16-.99-7.13-2.95l-30.26-30.26c-3.94-3.94-3.94-10.33 0-14.27s10.33-3.94 14.27 0l23.13 23.13 23.13-23.13c3.94-3.94 10.33-3.94 14.27 0s3.94 10.33 0 14.27l-30.26 30.26c-1.99 1.97-4.57 2.95-7.15 2.95z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m250 431.57c-2.58 0-5.16-.99-7.13-2.95l-30.26-30.26c-3.94-3.94-3.94-10.33 0-14.27s10.33-3.94 14.27 0l23.12 23.13 23.13-23.13c3.94-3.94 10.33-3.94 14.27 0s3.94 10.33 0 14.27l-30.26 30.26c-1.98 1.97-4.56 2.95-7.14 2.95z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m360.96 431.57c-2.58 0-5.16-.99-7.13-2.95l-30.26-30.26c-3.94-3.94-3.94-10.33 0-14.27s10.33-3.94 14.27 0l23.13 23.13 23.13-23.13c3.94-3.94 10.33-3.94 14.27 0s3.94 10.33 0 14.27l-30.26 30.26c-1.99 1.97-4.57 2.95-7.15 2.95z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg display='none'%3E%3Cg display='inline'%3E%3Cpath d='m482.01 355.92h-464.02c-3.29 0-6.37-1.6-8.26-4.3s-2.34-6.14-1.22-9.24l40.35-110.96c1.45-3.99 5.24-6.64 9.48-6.64h30.69c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09h-23.62l-33.01 90.78h435.2l-33.01-90.78h-23.2c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h30.26c4.24 0 8.03 2.65 9.48 6.64l40.35 110.96c1.12 3.09.67 6.54-1.22 9.24-1.88 2.69-4.96 4.3-8.25 4.3z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m199.56 315.57c-5.57 0-10.09-4.52-10.09-10.09v-110.96c0-5.57 4.52-10.09 10.09-10.09h21.26l-56.57-82.97-56.57 82.97h21.26c5.57 0 10.09 4.52 10.09 10.09v110.96c0 5.57-4.52 10.09-10.09 10.09s-10.09-4.52-10.09-10.09v-100.87h-30.25c-3.74 0-7.17-2.07-8.92-5.37-1.75-3.31-1.52-7.31.58-10.4l75.65-110.96c1.88-2.76 5-4.4 8.33-4.4 3.34 0 6.46 1.65 8.33 4.4l75.65 110.96c2.11 3.09 2.33 7.09.58 10.4-1.75 3.3-5.18 5.37-8.92 5.37h-30.26v100.87c.03 5.57-4.48 10.09-10.06 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m381.13 285.31c-5.57 0-10.09-4.52-10.09-10.09v-141.22c0-5.57 4.52-10.09 10.09-10.09h21.26l-56.57-82.97-56.57 82.97h21.26c5.57 0 10.09 4.52 10.09 10.09v141.22c0 5.57-4.52 10.09-10.09 10.09s-10.09-4.52-10.09-10.09v-131.14h-30.26c-3.74 0-7.17-2.07-8.92-5.37-1.75-3.31-1.52-7.31.58-10.4l75.65-110.96c1.88-2.76 5-4.4 8.33-4.4 3.34 0 6.46 1.65 8.33 4.4l75.65 110.96c2.11 3.09 2.33 7.09.58 10.4-1.75 3.3-5.18 5.37-8.92 5.37h-30.26v131.13c.04 5.58-4.48 10.1-10.05 10.1z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m280.26 244.96h-50.44c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h50.44c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m128.95 487.05c-5.57 0-10.09-4.52-10.09-10.09v-100.87c0-5.57 4.52-10.09 10.09-10.09s10.09 4.52 10.09 10.09v100.87c0 5.57-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m199.56 456.79c-5.57 0-10.09-4.52-10.09-10.09v-70.61c0-5.57 4.52-10.09 10.09-10.09s10.09 4.52 10.09 10.09v70.61c0 5.57-4.51 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m310.52 426.53c-5.57 0-10.09-4.52-10.09-10.09v-40.35c0-5.57 4.52-10.09 10.09-10.09s10.09 4.52 10.09 10.09v40.35c0 5.57-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m381.13 406.35c-5.57 0-10.09-4.52-10.09-10.09v-20.17c0-5.57 4.52-10.09 10.09-10.09s10.09 4.52 10.09 10.09v20.17c0 5.57-4.52 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg display='none'%3E%3Cg display='inline'%3E%3Cpath d='m17.99 461.83c-4.59 0-8.74-3.16-9.82-7.82-1.25-5.43 2.13-10.84 7.56-12.1 39.26-9.06 73.6-28.17 102.07-56.78 3.93-3.95 10.31-3.97 14.27-.04 3.95 3.93 3.97 10.32.04 14.27-31.18 31.35-68.81 52.28-111.84 62.21-.77.18-1.53.26-2.28.26z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m169.22 341.56c-1.59 0-3.19-.38-4.7-1.17-4.93-2.6-6.82-8.7-4.22-13.63 18.27-34.65 29.17-74.67 29.17-107.03v-10.09h-50.44c-3.8 0-7.28-2.14-9-5.53s-1.38-7.46.86-10.52l110.98-151.3c1.9-2.59 4.92-4.12 8.13-4.12s6.23 1.53 8.13 4.12l110.96 151.31c2.25 3.06 2.58 7.13.86 10.52s-5.2 5.53-9 5.53h-50.44v10.09c0 32.2 10.81 72.04 28.93 106.57 2.59 4.93.69 11.03-4.25 13.62-4.93 2.59-11.03.69-13.62-4.25-19.56-37.29-31.24-80.63-31.24-115.94v-20.17c0-5.57 4.52-10.09 10.09-10.09h40.62l-91.04-124.17-91.05 124.16h40.62c5.57 0 10.09 4.52 10.09 10.09v20.17c0 35.49-11.78 79.02-31.5 116.44-1.81 3.44-5.32 5.39-8.94 5.39z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m482.01 461.83c-.75 0-1.51-.08-2.28-.26-43.03-9.93-80.65-30.86-111.84-62.22-3.93-3.95-3.91-10.34.04-14.27s10.34-3.91 14.27.04c28.46 28.62 62.81 47.72 102.07 56.79 5.43 1.25 8.81 6.67 7.56 12.1-1.07 4.67-5.22 7.82-9.82 7.82z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m482.01 371.05h-464.02c-3.29 0-6.37-1.6-8.26-4.3s-2.34-6.14-1.22-9.24l40.35-110.96c1.45-3.99 5.24-6.64 9.48-6.64h100.87c5.57 0 10.09 4.52 10.09 10.09s-4.52 10.09-10.09 10.09h-93.8l-33.01 90.78h435.2l-33.01-90.78h-93.81c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h100.87c4.24 0 8.03 2.65 9.48 6.64l40.35 110.96c1.12 3.09.67 6.54-1.22 9.24-1.88 2.69-4.96 4.3-8.25 4.3z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3Cg display='inline'%3E%3Cpath d='m270.17 260.09h-40.35c-5.57 0-10.09-4.52-10.09-10.09s4.52-10.09 10.09-10.09h40.35c5.57 0 10.09 4.52 10.09 10.09s-4.51 10.09-10.09 10.09z' fill='rgb(0,0,0)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.icon-sheet-type, .icon-fitted {
    background-image: url("data:image/svg+xml,%3Csvg id='fi_2787195' style='height:24px;width:24px' enable-background='new 0 0 100 100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m86.4794922 76.0195312c.1376953-.2275391.1796875-.5.1171875-.7578125l-5.2733154-21.5273437.0438232-38.7539062c0-.265625-.1044922-.5195312-.2929688-.7080078-.1875-.1875-.4414062-.2929688-.7070312-.2929688h-8.7821045l-.788208-3.2177734c-.0634766-.2578125-.2275391-.4804688-.4550781-.6181641-.2275391-.1367188-.5-.1767578-.7587891-.1142578l-15.8209839 3.9501953h-31.1292114c-.5527344 0-1 .4472656-1 1v7.0220337l-7.1591797 1.7875366c-.5322266.1328125-.8583984.6699219-.7304688 1.2041016l7.8896484 32.7861328v27.2402344c0 .5527344.4472656 1 1 1h5.7957153l.7736206 3.2148438c.0625.2578125.2246094.4804688.4521484.6191406.1582033.0966796.3378908.1464843.520508.1464843.0791016 0 .1582031-.0097656.2363281-.0283203l16.2331543-3.9521484h33.7229004c.5527344 0 1-.4472656 1-1v-7.4536743l4.4941406-1.0941772c.2578125-.0625001.4804688-.225586.6181641-.4521486zm-7.1132813-60.040039-.0336304 29.6278687-7.2575684-29.6278687zm-55.7333984 0h22.1190186l-22.1190186 5.5227051zm0 68.040039v-17.9290161l4.3144531 17.9290161zm55.734375 0h-24.5080566l24.5080566-5.9667969zm-48.4550781 3.7714844-14.9921875-62.3017578 53.1728516-13.2753906 15.3222656 62.5517578z'%3E%3C/path%3E%3C/svg%3E");
}
.icon-polycotton {
    background-image: url("data:image/svg+xml,%3Csvg id='fi_5482821' style='height:24px;width:24px' enable-background='new 0 0 511.543 511.543' viewBox='0 0 511.543 511.543' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m454.997 410.632-29.93-17.28v-100.549l28.332-16.357c7.175-4.142 9.633-13.316 5.49-20.49-4.143-7.175-13.316-9.632-20.49-5.49l-29.211 16.865-85.454-49.337v-99.689l32.163-18.569c7.175-4.142 9.633-13.316 5.49-20.49-4.143-7.175-13.316-9.631-20.49-5.49l-32.163 18.569-86.333-49.845v-27.575c-.738-19.881-29.269-19.866-30 0v27.573l-87.501 50.52-33.332-19.244c-17.585-9.305-31.839 15.416-15 25.98l34.5 19.919v95.242l-34.5 19.919c-7.174 4.142-9.632 13.316-5.49 20.49 4.166 7.241 13.443 9.595 20.49 5.49l31.818-18.37 89.015 51.393v97.57l-36.333 20.977c-7.174 4.142-9.632 13.316-5.49 20.49 4.166 7.241 13.443 9.595 20.49 5.49l34.498-19.917 88.168 50.904v27.307c.738 19.881 29.269 19.866 30 0v-27.307l86.467-49.922 29.796 17.203c7.047 4.105 16.324 1.75 20.49-5.49 4.143-7.174 1.685-16.348-5.49-20.49zm-333.928-292.329 86.333-49.845 86.333 49.845v99.689l-86.333 49.844-86.333-49.844zm101.333 175.515 81.501-47.055 4.832-2.79 86.333 49.845v99.059c-.072.118-.154.226-.224.346-.111.192-.198.391-.3.586l-85.809 49.542-86.333-49.845z'%3E%3C/path%3E%3C/svg%3E");
}
.icon-check {
    background-image: url("data:image/svg+xml,%3Csvg id='fi_5299035' enable-background='new 0 0 512 512' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-rule='evenodd' fill-rule='evenodd'%3E%3Cpath d='m116.049 194.505c-12.749-12.749-30.04-19.911-48.07-19.911s-35.321 7.163-48.07 19.913v.001c-26.546 26.547-26.545 69.587.001 96.134 38.398 38.399 95.897 95.901 134.296 134.301 12.748 12.749 30.039 19.912 48.069 19.912 18.029 0 35.321-7.162 48.069-19.91l241.745-241.745c26.546-26.545 26.548-69.583.006-96.132l-.007-.007c-12.749-12.751-30.04-19.915-48.071-19.916-18.03-.001-35.323 7.161-48.072 19.911l-188.021 188.02c-1.499 1.499-3.532 2.342-5.652 2.342s-4.153-.843-5.652-2.342z' fill='%2303875b'%3E%3C/path%3E%3Cpath d='m433.014 68.041c13.952 2.287 26.946 8.89 37.074 19.02l.007.007c26.542 26.549 26.54 69.587-.006 96.132l-241.745 241.745c-10.126 10.126-23.118 16.728-37.068 19.014 3.613.593 7.29.896 10.999.896 18.029 0 35.321-7.162 48.069-19.91l241.745-241.745c26.546-26.545 26.548-69.583.006-96.132l-.007-.007c-12.749-12.751-30.04-19.915-48.071-19.916-3.71 0-7.39.303-11.003.896z' fill='%234caf50'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}
.icon-check-white {
    background-image: url("data:image/svg+xml,%3Csvg id='fi_5299035' enable-background='new 0 0 512 512' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-rule='evenodd' fill-rule='evenodd'%3E%3Cpath d='m116.049 194.505c-12.749-12.749-30.04-19.911-48.07-19.911s-35.321 7.163-48.07 19.913v.001c-26.546 26.547-26.545 69.587.001 96.134 38.398 38.399 95.897 95.901 134.296 134.301 12.748 12.749 30.039 19.912 48.069 19.912 18.029 0 35.321-7.162 48.069-19.91l241.745-241.745c26.546-26.545 26.548-69.583.006-96.132l-.007-.007c-12.749-12.751-30.04-19.915-48.071-19.916-18.03-.001-35.323 7.161-48.072 19.911l-188.021 188.02c-1.499 1.499-3.532 2.342-5.652 2.342s-4.153-.843-5.652-2.342z' fill='%23ffffff'%3E%3C/path%3E%3Cpath d='m433.014 68.041c13.952 2.287 26.946 8.89 37.074 19.02l.007.007c26.542 26.549 26.54 69.587-.006 96.132l-241.745 241.745c-10.126 10.126-23.118 16.728-37.068 19.014 3.613.593 7.29.896 10.999.896 18.029 0 35.321-7.162 48.069-19.91l241.745-241.745c26.546-26.545 26.548-69.583.006-96.132l-.007-.007c-12.749-12.751-30.04-19.915-48.071-19.916-3.71 0-7.39.303-11.003.896z' fill='%23ffffff'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}
.icon-tips {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24" fill="%230d2777"><rect fill="none" height="24" width="24" y="0"/><path d="M7,20h4c0,1.1-0.9,2-2,2S7,21.1,7,20z M5,19h8v-2H5V19z M16.5,9.5c0,3.82-2.66,5.86-3.77,6.5H5.27 C4.16,15.36,1.5,13.32,1.5,9.5C1.5,5.36,4.86,2,9,2S16.5,5.36,16.5,9.5z M14.5,9.5C14.5,6.47,12.03,4,9,4S3.5,6.47,3.5,9.5 c0,2.47,1.49,3.89,2.35,4.5h6.3C13.01,13.39,14.5,11.97,14.5,9.5z M21.37,7.37L20,8l1.37,0.63L22,10l0.63-1.37L24,8l-1.37-0.63L22,6 L21.37,7.37z M19,6l0.94-2.06L22,3l-2.06-0.94L19,0l-0.94,2.06L16,3l2.06,0.94L19,6z"/></svg>');
}
.icon-waterproof {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 512 512" viewBox="0 0 512 512" preserveAspectRatio="xMidYMid meet"><g transform="translate(0.000000,512.000000) scale(0.100000,-0.100000)" fill="%23000000" stroke="none"><path d="M1221 4661 c-10 -10 -27 -45 -36 -77 -25 -88 -75 -181 -195 -364 -137 -210 -172 -273 -209 -387 -81 -241 -36 -460 128 -624 112 -111 222 -159 371 -159 207 0 389 115 479 303 50 105 65 183 58 300 -10 169 -64 293 -255 584 -126 193 -152 241 -182 341 -14 44 -30 78 -43 87 -31 21 -93 19 -116 -4z m95 -378 c15 -27 62 -100 104 -163 153 -229 206 -346 217 -470 27 -319 -294 -529 -550 -359 -103 68 -160 181 -160 319 0 145 37 237 201 488 60 92 117 182 128 200 10 17 21 32 25 32 4 0 20 -21 35 -47z"/><path d="M3766 4297 c-13 -13 -31 -50 -41 -83 -22 -78 -30 -92 -148 -274 -166 -256 -214 -381 -204 -535 7 -101 31 -174 82 -250 139 -204 420 -258 623 -118 93 63 167 176 191 291 34 162 -9 318 -149 538 -35 54 -87 136 -116 182 -29 46 -65 119 -79 162 -16 49 -35 86 -48 95 -33 23 -84 19 -111 -8z m162 -468 c136 -211 183 -332 167 -438 -21 -147 -133 -251 -270 -251 -185 0 -311 184 -261 380 22 84 66 169 172 329 69 106 89 130 99 119 6 -7 48 -70 93 -139z"/><path d="M2514 4032 c-26 -17 -34 -32 -53 -105 -31 -116 -112 -274 -267 -517 -268 -419 -336 -570 -365 -811 -47 -382 185 -721 556 -814 84 -21 244 -24 330 -6 195 41 368 162 468 328 20 33 51 102 69 154 31 89 32 101 32 239 0 279 -62 437 -350 897 -153 243 -244 420 -269 525 -10 38 -27 81 -39 94 -29 33 -73 39 -112 16z m271 -741 c219 -350 292 -510 316 -700 46 -357 -193 -641 -539 -641 -186 0 -340 74 -446 214 -76 100 -108 203 -107 346 0 214 75 394 323 778 54 84 129 205 165 268 l66 115 48 -89 c26 -50 104 -180 174 -291z"/><path d="M460 1410 l0 -90 2090 0 2090 0 0 90 0 90 -2090 0 -2090 0 0 -90z"/><path d="M730 1040 l0 -90 135 0 135 0 0 90 0 90 -135 0 -135 0 0 -90z"/><path d="M1820 1040 l0 -91 138 3 137 3 3 88 3 87 -141 0 -140 0 0 -90z"/><path d="M2912 1043 l3 -88 138 -3 137 -3 0 91 0 90 -140 0 -141 0 3 -87z"/><path d="M4010 1040 l0 -90 135 0 135 0 0 90 0 90 -135 0 -135 0 0 -90z"/><path d="M1280 860 l0 -90 135 0 135 0 0 90 0 90 -135 0 -135 0 0 -90z"/><path d="M2370 860 l0 -90 135 0 135 0 0 90 0 90 -135 0 -135 0 0 -90z"/><path d="M3460 860 l0 -90 135 0 135 0 0 90 0 90 -135 0 -135 0 0 -90z"/><path d="M460 500 l0 -90 2090 0 2090 0 0 90 0 90 -2090 0 -2090 0 0 -90z"/></g></svg>');
}
.icon-cog, .icon-tog {
    background-image: url('data:image/svg+xml,<svg enable-background="new 0 0 24 24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 14.93C11.4205 14.93 10.854 14.7582 10.3722 14.4362C9.89035 14.1143 9.51481 13.6567 9.29304 13.1213C9.07128 12.5859 9.01325 11.9968 9.12631 11.4284C9.23936 10.86 9.51842 10.338 9.92819 9.92819C10.338 9.51842 10.86 9.23936 11.4284 9.12631C11.9968 9.01325 12.5859 9.07128 13.1213 9.29304C13.6567 9.51481 14.1143 9.89035 14.4362 10.3722C14.7582 10.854 14.93 11.4205 14.93 12C14.93 12.7771 14.6213 13.5224 14.0718 14.0718C13.5224 14.6213 12.7771 14.93 12 14.93ZM12 10.57C11.7172 10.57 11.4407 10.6539 11.2055 10.811C10.9704 10.9681 10.7871 11.1915 10.6789 11.4528C10.5706 11.7141 10.5423 12.0016 10.5975 12.279C10.6527 12.5564 10.7889 12.8112 10.9888 13.0112C11.1888 13.2112 11.4436 13.3474 11.721 13.4025C11.9984 13.4577 12.2859 13.4294 12.5472 13.3212C12.8085 13.2129 13.0319 13.0296 13.189 12.7945C13.3461 12.5593 13.43 12.2828 13.43 12C13.43 11.6207 13.2793 11.257 13.0112 10.9888C12.743 10.7207 12.3793 10.57 12 10.57Z" fill="%23000000"/><path d="M12.06 20.75C11.7676 20.7487 11.4784 20.6896 11.2089 20.5762C10.9394 20.4628 10.6949 20.2973 10.4896 20.0892C10.2842 19.881 10.122 19.6344 10.0123 19.3634C9.90252 19.0924 9.84737 18.8024 9.85001 18.51C9.84606 18.4198 9.81676 18.3326 9.76546 18.2583C9.71416 18.184 9.64295 18.1257 9.56001 18.09C9.46824 18.0479 9.36604 18.034 9.26634 18.05C9.16665 18.066 9.07396 18.1112 9.00001 18.18C8.58482 18.592 8.02493 18.8253 7.44001 18.83C6.8514 18.8338 6.28454 18.6077 5.86001 18.2C5.6538 17.9938 5.49022 17.7491 5.37861 17.4797C5.26701 17.2103 5.20956 16.9216 5.20956 16.63C5.20956 16.3384 5.26701 16.0497 5.37861 15.7803C5.49022 15.5109 5.6538 15.2662 5.86001 15.06C5.93053 14.9957 5.98119 14.9126 6.006 14.8205C6.0308 14.7283 6.02873 14.631 6.00001 14.54C5.95128 14.4556 5.88137 14.3854 5.79719 14.3363C5.71301 14.2872 5.61747 14.2609 5.52001 14.26C4.93163 14.2577 4.36714 14.027 3.94554 13.6166C3.52393 13.2062 3.27815 12.6481 3.26001 12.06C3.26132 11.7685 3.32004 11.48 3.43282 11.2112C3.5456 10.9424 3.71022 10.6984 3.9173 10.4931C4.12437 10.2879 4.36984 10.1255 4.63969 10.0152C4.90953 9.9048 5.19847 9.84868 5.49001 9.85C5.5802 9.84605 5.66746 9.81675 5.74175 9.76545C5.81604 9.71415 5.87436 9.64294 5.91001 9.56C5.95213 9.46823 5.96606 9.36603 5.95004 9.26633C5.93402 9.16664 5.88876 9.07395 5.82001 9C5.40797 8.58481 5.17468 8.02492 5.17001 7.44C5.1649 7.14801 5.21797 6.85792 5.32613 6.58665C5.4343 6.31538 5.59539 6.06836 5.80001 5.86C6.00616 5.65379 6.25092 5.49021 6.52031 5.3786C6.78969 5.267 7.07842 5.20955 7.37001 5.20955C7.6616 5.20955 7.95033 5.267 8.21971 5.3786C8.4891 5.49021 8.73385 5.65379 8.94001 5.86C9.01201 5.9285 9.10041 5.97735 9.19672 6.00187C9.29303 6.02638 9.39402 6.02574 9.49001 6C9.57752 5.95207 9.65169 5.88308 9.70582 5.79927C9.75995 5.71546 9.79232 5.61947 9.80001 5.52C9.79973 4.92989 10.0293 4.36287 10.4399 3.93912C10.8506 3.51537 11.4102 3.2682 12 3.25C12.2915 3.25261 12.5797 3.31263 12.8481 3.42662C13.1164 3.5406 13.3597 3.70633 13.564 3.91434C13.7682 4.12234 13.9296 4.36855 14.0387 4.63891C14.1478 4.90926 14.2026 5.19846 14.2 5.49C14.2038 5.5815 14.2317 5.67038 14.2809 5.74764C14.33 5.8249 14.3987 5.88781 14.48 5.93C14.5683 5.96241 14.6639 5.96927 14.7558 5.94982C14.8478 5.93036 14.9324 5.88537 15 5.82C15.4152 5.40796 15.9751 5.17467 16.56 5.17C16.8525 5.16083 17.1438 5.21204 17.4156 5.32044C17.6875 5.42883 17.9341 5.59208 18.14 5.8C18.3462 6.00615 18.5098 6.25091 18.6214 6.5203C18.733 6.78968 18.7905 7.07841 18.7905 7.37C18.7905 7.66159 18.733 7.95032 18.6214 8.2197C18.5098 8.48909 18.3462 8.73385 18.14 8.94C18.0767 9.01489 18.0333 9.10463 18.0141 9.20082C17.9949 9.29701 18.0003 9.3965 18.03 9.49C18.0779 9.57751 18.1469 9.65168 18.2307 9.70581C18.3145 9.75994 18.4105 9.79231 18.51 9.8C19.0949 9.80745 19.6544 10.0404 20.0717 10.4503C20.489 10.8602 20.732 11.4153 20.75 12C20.7474 12.2915 20.6874 12.5797 20.5734 12.848C20.4594 13.1164 20.2937 13.3597 20.0857 13.5639C19.8777 13.7682 19.6315 13.9296 19.3611 14.0387C19.0907 14.1478 18.8015 14.2026 18.51 14.2C18.4185 14.2038 18.3296 14.2317 18.2524 14.2809C18.1751 14.33 18.1122 14.3987 18.07 14.48C18.0376 14.5683 18.0307 14.6638 18.0502 14.7558C18.0696 14.8478 18.1146 14.9324 18.18 15C18.5921 15.4152 18.8253 15.9751 18.83 16.56C18.8351 16.852 18.782 17.1421 18.6739 17.4133C18.5657 17.6846 18.4046 17.9316 18.2 18.14C17.9939 18.3462 17.7491 18.5098 17.4797 18.6214C17.2103 18.733 16.9216 18.7904 16.63 18.7904C16.3384 18.7904 16.0497 18.733 15.7803 18.6214C15.5109 18.5098 15.2662 18.3462 15.06 18.14C14.9924 18.0746 14.9078 18.0296 14.8158 18.0102C14.7239 17.9907 14.6283 17.9976 14.54 18.03C14.4556 18.0787 14.3854 18.1486 14.3363 18.2328C14.2872 18.317 14.2609 18.4125 14.26 18.51C14.2526 19.0949 14.0196 19.6544 13.6097 20.0717C13.1998 20.489 12.6447 20.732 12.06 20.75ZM9.35001 16.54C9.61524 16.5369 9.87797 16.5915 10.12 16.7C10.4772 16.8489 10.7835 17.0982 11.0018 17.4177C11.2202 17.7372 11.3411 18.1131 11.35 18.5C11.3472 18.6929 11.4199 18.8792 11.5525 19.0193C11.6852 19.1594 11.8673 19.2422 12.06 19.25C12.2527 19.2348 12.4324 19.1466 12.5625 19.0036C12.6925 18.8605 12.7632 18.6733 12.76 18.48C12.7624 18.0918 12.8744 17.7121 13.0832 17.3848C13.292 17.0575 13.589 16.7958 13.94 16.63C14.3052 16.4781 14.7072 16.4379 15.0952 16.5144C15.4832 16.5909 15.8399 16.7808 16.12 17.06C16.2526 17.1926 16.4325 17.2671 16.62 17.2671C16.8075 17.2671 16.9874 17.1926 17.12 17.06C17.2526 16.9274 17.3271 16.7475 17.3271 16.56C17.3271 16.3725 17.2526 16.1926 17.12 16.06C16.8425 15.7788 16.6545 15.4216 16.5798 15.0336C16.505 14.6456 16.5469 14.2442 16.7 13.88C16.8577 13.5291 17.1133 13.2311 17.4362 13.0218C17.759 12.8126 18.1353 12.7008 18.52 12.7C18.7103 12.7028 18.8941 12.6311 19.0323 12.5004C19.1705 12.3696 19.2522 12.1901 19.26 12C19.2472 11.8064 19.1597 11.6253 19.0162 11.4947C18.8726 11.3642 18.684 11.2944 18.49 11.3C18.0986 11.2894 17.7179 11.1695 17.391 10.9539C17.0641 10.7383 16.804 10.4356 16.64 10.08C16.4903 9.71114 16.4513 9.30669 16.5277 8.91602C16.604 8.52535 16.7925 8.16536 17.07 7.88C17.1357 7.81434 17.1878 7.73639 17.2233 7.6506C17.2588 7.56481 17.2771 7.47286 17.2771 7.38C17.2771 7.28714 17.2588 7.19519 17.2233 7.1094C17.1878 7.02361 17.1357 6.94566 17.07 6.88C17.0043 6.81434 16.9264 6.76225 16.8406 6.72672C16.7548 6.69118 16.6629 6.67289 16.57 6.67289C16.4772 6.67289 16.3852 6.69118 16.2994 6.72672C16.2136 6.76225 16.1357 6.81434 16.07 6.88C15.7889 7.14113 15.4385 7.31587 15.0608 7.38337C14.6831 7.45088 14.2939 7.4083 13.9397 7.26072C13.5855 7.11314 13.2812 6.86679 13.0632 6.55105C12.8452 6.2353 12.7226 5.86351 12.71 5.48C12.7128 5.28976 12.6412 5.10595 12.5104 4.96773C12.3797 4.82951 12.2001 4.7478 12.01 4.74C11.8164 4.75286 11.6353 4.84026 11.5047 4.98385C11.3742 5.12744 11.3044 5.31603 11.31 5.51C11.2994 5.90145 11.1795 6.28212 10.9639 6.60903C10.7483 6.93593 10.4456 7.19605 10.09 7.36C9.72115 7.50966 9.3167 7.54869 8.92603 7.47233C8.53536 7.39598 8.17537 7.20753 7.89001 6.93C7.82435 6.86434 7.7464 6.81225 7.66061 6.77672C7.57482 6.74118 7.48287 6.72289 7.39001 6.72289C7.29715 6.72289 7.2052 6.74118 7.11941 6.77672C7.03362 6.81225 6.95567 6.86434 6.89001 6.93C6.82435 6.99566 6.77226 7.07361 6.73673 7.1594C6.70119 7.24519 6.6829 7.33714 6.6829 7.43C6.6829 7.52286 6.70119 7.61481 6.73673 7.7006C6.77226 7.78639 6.82435 7.86434 6.89001 7.93C7.16585 8.21235 7.35197 8.57002 7.42493 8.95795C7.49789 9.34588 7.45443 9.74673 7.30001 10.11C7.15113 10.4672 6.90183 10.7735 6.58234 10.9918C6.26284 11.2101 5.88687 11.3311 5.50001 11.34C5.30712 11.3372 5.12077 11.4099 4.98067 11.5425C4.84058 11.6752 4.75781 11.8572 4.75001 12.05C4.76525 12.2427 4.85336 12.4224 4.99641 12.5525C5.13947 12.6825 5.3267 12.7531 5.52001 12.75C5.90823 12.7524 6.28788 12.8644 6.6152 13.0732C6.94251 13.282 7.20417 13.579 7.37001 13.93C7.52192 14.2952 7.56215 14.6972 7.48561 15.0852C7.40907 15.4732 7.2192 15.8299 6.94001 16.11C6.87435 16.1757 6.82226 16.2536 6.78673 16.3394C6.75119 16.4252 6.7329 16.5171 6.7329 16.61C6.7329 16.7029 6.75119 16.7948 6.78673 16.8806C6.82226 16.9664 6.87435 17.0443 6.94001 17.11C7.00567 17.1757 7.08362 17.2277 7.16941 17.2633C7.2552 17.2988 7.34715 17.3171 7.44001 17.3171C7.53287 17.3171 7.62482 17.2988 7.71061 17.2633C7.7964 17.2277 7.87435 17.1757 7.94001 17.11C8.3201 16.7471 8.82451 16.5432 9.35001 16.54Z" fill="%23000000"/></svg>');
}
.icon-wood {
    background-image: url('data:image/svg+xml,<svg fill="%23000000" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" enable-background="new 0 0 512 512" viewBox="0 0 512 512" xml:space="preserve"><g transform="translate(1 1)"><g><g><path d="M508.44,152.6l-27.996-27.996c-0.426-0.975-1.047-1.9-1.871-2.724s-1.749-1.445-2.724-1.871L357.4,1.56c-3.413-3.413-8.533-3.413-11.947,0L1.56,345.453c-3.413,3.413-3.413,8.533,0,11.947L152.6,508.44c1.707,1.707,3.413,2.56,5.973,2.56s4.267-0.853,5.973-2.56L508.44,164.547C511.853,161.133,511.853,156.013,508.44,152.6z M158.573,490.52l-17.92-17.92l66.56-66.56c3.413-3.413,3.413-8.533,0-11.947c-3.413-3.413-8.533-3.413-11.947,0l-66.56,66.56l-18.773-18.773l23.893-23.893c3.413-3.413,3.413-8.533,0-11.947s-8.533-3.413-11.947,0l-23.893,23.893l-17.92-17.92l66.56-66.56c3.413-3.413,3.413-8.533,0-11.947c-3.413-3.413-8.533-3.413-11.947,0l-66.56,66.56l-17.92-17.92l96.427-96.427c3.413-3.413,3.413-8.533,0-11.947s-8.533-3.413-11.947,0L38.253,370.2L19.48,351.427L351.427,19.48l48.64,48.64l-60.587,60.587c-3.413,3.413-3.413,8.533,0,11.947c1.707,1.707,3.413,2.56,5.973,2.56c2.56,0,4.267-0.853,5.973-2.56l60.587-60.587l18.347,18.347l-24.32,24.32c-3.413,3.413-3.413,8.533,0,11.947c1.707,1.707,3.413,2.56,5.973,2.56s4.267-0.853,5.973-2.56l24.32-24.32l17.92,17.92l-36.267,36.267c-3.413,3.413-3.413,8.533,0,11.947c1.707,1.707,3.413,2.56,5.973,2.56s4.267-0.853,5.973-2.56l36.267-36.267l18.347,18.347L158.573,490.52z"/><path d="M182.467,245.613c2.56,0,5.12-0.853,5.973-2.56l78.507-78.507c3.413-3.413,3.413-8.533,0-11.947s-8.533-3.413-11.947,0l-78.507,78.507c-3.413,3.413-3.413,8.533,0,11.947C178.2,244.76,179.907,245.613,182.467,245.613z"/><path d="M291.693,137.24c1.707,0,4.267-0.853,5.973-2.56l54.613-54.613c3.413-3.413,3.413-8.533,0-11.947s-8.533-3.413-11.947,0l-54.613,54.613c-3.413,3.413-3.413,8.533,0,11.947C287.427,136.387,289.133,137.24,291.693,137.24z"/><path d="M315.587,152.6l-48.64,48.64c-3.413,3.413-3.413,8.533,0,11.947c1.707,1.707,3.413,2.56,5.973,2.56s5.12-0.853,5.973-2.56l48.64-48.64c3.413-3.413,3.413-8.533,0-11.947C324.12,149.187,319,149.187,315.587,152.6z"/><path d="M333.507,206.36c1.707,1.707,3.413,2.56,5.973,2.56s4.267-0.853,5.973-2.56l42.667-42.667c3.413-3.413,3.413-8.533,0-11.947c-3.413-3.413-8.533-3.413-11.947,0l-42.667,42.667C330.093,197.827,330.093,202.947,333.507,206.36z"/><path d="M231.107,309.613c-6.827-6.827-17.067-6.827-23.893,0s-6.827,17.067,0,23.893s17.067,6.827,23.893,0S237.933,316.44,231.107,309.613z"/><path d="M249.027,243.053c3.413-3.413,3.413-8.533,0-11.947s-8.533-3.413-11.947,0l-54.613,54.613c-13.653,13.653-17.92,43.52-5.12,65.707L158.573,370.2c-3.413,3.413-3.413,8.533,0,11.947c1.707,1.707,3.413,2.56,5.973,2.56s4.267-0.853,6.827-3.413l23.893-23.893c3.413-2.56,3.413-7.68,0.853-11.093c-12.8-15.36-9.387-40.107-0.853-48.64L249.027,243.053z"/><path d="M260.973,290.84l54.613-54.613c3.413-3.413,3.413-8.533,0-11.947c-3.413-3.413-8.533-3.413-11.947,0l-60.587,60.587c-1.707,1.707-2.56,3.413-2.56,5.973s0.853,4.267,2.56,5.973c5.12,5.12,11.093,13.653,11.947,23.04c0.853,8.533-3.413,17.067-11.947,25.6l-17.92,17.92c-3.413,3.413-3.413,8.533,0,11.947c1.707,1.707,3.413,2.56,5.973,2.56s4.267-0.853,5.973-3.413l17.92-17.92c11.947-11.947,17.92-24.747,17.067-38.4C271.213,308.76,267.8,299.373,260.973,290.84z"/><path d="M352.28,237.08l-60.587,60.587c-3.413,3.413-3.413,8.533,0,11.947c1.707,1.707,3.413,2.56,5.973,2.56c1.707,0,4.267-0.853,5.973-2.56l60.587-60.587c3.413-3.413,3.413-8.533,0-11.947S355.693,233.667,352.28,237.08z"/><path d="M394.093,195.267l-11.947,11.947c-3.413,3.413-3.413,8.533,0,11.947c1.707,1.707,3.413,2.56,5.973,2.56c1.707,0,4.267-0.853,5.973-2.56l11.947-11.947c3.413-3.413,3.413-8.533,0-11.947C402.627,191.853,397.507,191.853,394.093,195.267z"/></g></g></g></svg>');
}
.icon-bed, .icon-bedframe {
    background-image: url('data:image/svg+xml,<svg fill="%23000000" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512" xml:space="preserve"><g><g><path d="M451.866,63.373H60.134C26.976,63.373,0,90.344,0,123.494v188.574v71.558v51.669c0,7.362,5.968,13.331,13.331,13.331s13.331-5.968,13.331-13.331v-38.339h458.678v38.339c0,7.362,5.968,13.331,13.331,13.331S512,442.658,512,435.296v-51.669v-71.558V123.494C512,90.344,485.024,63.373,451.866,63.373z M26.661,123.494c0-18.449,15.016-33.46,33.473-33.46h391.732c18.458,0,33.473,15.01,33.473,33.46v98.437c-14.546-13.292-33.896-21.413-55.109-21.413h-8.465v-28.607c0-19.846-16.146-35.992-35.993-35.992H278.662c-8.582,0-16.47,3.025-22.662,8.057c-6.192-5.032-14.08-8.057-22.662-8.057H126.227c-19.847,0-35.992,16.146-35.992,35.992v28.607H81.77c-21.213,0-40.561,8.122-55.109,21.413V123.494z M395.104,171.911v28.607H269.331v-28.607c0-5.146,4.186-9.331,9.331-9.331h107.111C390.919,162.579,395.104,166.765,395.104,171.911z M242.669,171.911v28.607H116.896v-28.607c0-5.146,4.186-9.331,9.331-9.331h107.111C238.484,162.579,242.669,166.765,242.669,171.911z M485.339,298.738H145.356c-7.362,0-13.331,5.968-13.331,13.331c0,7.362,5.968,13.331,13.331,13.331h339.982v44.897H26.661v-44.897h25.827c7.362,0,13.331-5.968,13.331-13.331c0-7.362-5.968-13.331-13.331-13.331H26.661v-16.463c0-30.38,24.721-55.095,55.109-55.095h21.795H256h152.435h21.795c30.387,0,55.109,24.716,55.109,55.095V298.738z"/></g></g><g><g><path d="M101.366,298.738h-7.553c-7.362,0-13.331,5.968-13.331,13.331c0,7.362,5.968,13.331,13.331,13.331h7.553c7.362,0,13.331-5.968,13.331-13.331C114.696,304.706,108.728,298.738,101.366,298.738z"/></g></g></svg>');
}
.icon-paintbrush {
    background-image: url('data:image/svg+xml,<svg fill="%23000000" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512" xml:space="preserve"><g><g><path d="M331.842,0H180.157c-26.741,0-48.496,21.755-48.496,48.496v197.492c0,20.805,16.927,37.733,37.733,37.733h37.624c5.328,0,10.195,2.208,13.704,6.217c3.509,4.01,5.053,9.125,4.346,14.406l-19.995,149.461c-1.964,14.685,2.505,29.502,12.261,40.651c9.757,11.148,23.85,17.543,38.665,17.543c14.815,0,28.909-6.395,38.665-17.544c9.757-11.149,14.226-25.965,12.261-40.65l-19.992-149.462c-0.707-5.281,0.836-10.397,4.345-14.406c3.509-4.009,8.376-6.217,13.704-6.217h37.624c20.805,0,37.733-16.928,37.733-37.733V48.496C380.338,21.755,358.583,0,331.842,0z M342.605,263.323h-37.624c-11.132,0-21.722,4.805-29.052,13.182c-7.331,8.378-10.69,19.51-9.214,30.545l19.993,149.461c1.185,8.855-1.509,17.788-7.393,24.512c-5.883,6.723-14.381,10.579-23.315,10.579c-8.933,0-17.431-3.855-23.315-10.579s-8.579-15.658-7.394-24.512l19.995-149.461c1.476-11.034-1.883-22.168-9.214-30.545c-7.331-8.378-17.921-13.182-29.053-13.182h-37.624c-8.644,0-15.83-6.359-17.126-14.645H359.73C358.435,256.963,351.249,263.323,342.605,263.323z M359.94,228.28h-207.88v-53.693h207.88V228.28z M359.941,154.188H152.059V48.496c0-11.8,7.316-21.918,17.648-26.074v104.921c0,5.632,4.566,10.199,10.199,10.199s10.199-4.567,10.199-10.199V20.398h17.649v106.944c0,5.632,4.566,10.199,10.199,10.199s10.199-4.567,10.199-10.199V20.398H245.8v106.944c0,5.632,4.566,10.199,10.199,10.199c5.632,0,10.199-4.567,10.199-10.199V20.398h17.649v106.944c0,5.632,4.567,10.199,10.199,10.199s10.199-4.567,10.199-10.199V20.398h17.648v69.898c0,5.632,4.567,10.199,10.199,10.199c5.632,0,10.199-4.567,10.199-10.199V22.421c10.332,4.155,17.649,14.274,17.649,26.074V154.188z"/></g></g><g><g><path d="M332.092,112.137c-5.632,0-10.199,4.567-10.199,10.199v5.006c0,5.632,4.567,10.199,10.199,10.199s10.199-4.567,10.199-10.199v-5.006C342.291,116.704,337.725,112.137,332.092,112.137z"/></g></g><g><g><path d="M255.999,447.548c-5.633,0-10.199,4.567-10.199,10.199v5.006c0,5.632,4.566,10.199,10.199,10.199c5.632,0,10.199-4.567,10.199-10.199v-5.006C266.199,452.115,261.632,447.548,255.999,447.548z"/></g></g></svg>');
}
.icon-screwdriver, .icon-flatpack-assembly, .icon-assembly {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-0.5 0 65 65"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(2.000000, 2.000000)" stroke="%23000000" stroke-width="2"><path d="M38.6,32 L60.4,10.2 C61.2,9.4 61.2,8.2 60.4,7.4 L53.4,0.4 C52.6,-0.4 51.4,-0.4 50.6,0.4 L28.8,22.2 C28.2,22.8 28.1,23.7 28.4,24.5 C28,24.6 27.7,24.8 27.4,25 L25.3,25.7 C24.5,26.5 24.5,27.7 25.3,28.5 L32.3,35.5 C33.1,36.3 34.3,36.3 35.1,35.5 L35.8,33.4 C36.1,33.1 36.3,32.8 36.3,32.4 C37.1,32.7 38,32.6 38.6,32 L38.6,32 Z"/><path d="M51.3,5.2 L33.7,22.8"/><path d="M55.5,9.5 L37.9,27"/><path d="M2.8,60.8 L-0.1,58 L5.6,49.6 L9.1,47.4 L26.7,29.9 L30.9,34.1 L13.3,51.7 L11.2,55.2 L2.8,60.8 Z"/></g></g></svg>');
}
.icon-door, .icon-door-number {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="%23000000" viewBox="0 0 512 512" xml:space="preserve"><g><g><path d="M377.018,37.236H134.982c-5.145,0-9.309,4.164-9.309,9.309v148.945c0,5.145,4.164,9.309,9.309,9.309h111.709h18.618h111.709c5.145,0,9.309-4.164,9.309-9.309V46.545C386.327,41.4,382.164,37.236,377.018,37.236z M246.691,186.182h-102.4V55.855h102.4V186.182z M367.709,186.182h-102.4V55.855h102.4V186.182z"/></g></g><g><g><path d="M162.909,260.655h-27.927c-5.145,0-9.309,4.164-9.309,9.309c0,5.145,4.164,9.309,9.309,9.309H153.6v18.618c0,5.145,4.164,9.309,9.309,9.309c5.145,0,9.309-4.164,9.309-9.309v-27.927C172.218,264.818,168.054,260.655,162.909,260.655z"/></g></g><g><g><path d="M423.564,493.382V9.309c0-5.145-4.164-9.309-9.309-9.309H97.745c-5.145,0-9.309,4.164-9.309,9.309v484.073H51.2V512h46.545h316.509H460.8v-18.618H423.564z M404.945,493.382H107.055V18.618h297.891V493.382z"/></g></g></svg>');
}
.icon-bedside-cabinet, .icon-draws, .icon-draw-number {
    background-image: url('data:image/svg+xml,<svg fill="%23000000" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512" xml:space="preserve"><g><g><path d="M488.727,0H23.273c-5.141,0-9.309,4.168-9.309,9.309v204.8c0,5.141,4.168,9.309,9.309,9.309h465.455c5.141,0,9.309-4.168,9.309-9.309V9.309C498.036,4.168,493.868,0,488.727,0z M479.418,204.8H32.582V18.618h446.836V204.8z"/></g></g><g><g><path d="M488.727,242.036H23.273c-5.141,0-9.309,4.168-9.309,9.309v204.8c0,5.141,4.168,9.309,9.309,9.309h74.473V512h18.618v-46.545h269.964V512h18.618v-46.545h83.782c5.141,0,9.309-4.168,9.309-9.309v-204.8C498.036,246.205,493.868,242.036,488.727,242.036z M479.418,446.836H32.582V260.655h446.836V446.836z"/></g></g><g><g><rect x="181.527" y="102.4" width="139.636" height="18.618"/></g></g><g><g><rect x="181.527" y="344.436" width="139.636" height="18.618"/></g></g></svg>');
}
.icon-wardrobe {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="%23000000" viewBox="0 0 512 512" xml:space="preserve"><g><g><path d="M443.733,0H68.267c-4.713,0-8.533,3.817-8.533,8.533v443.733c0,4.717,3.821,8.533,8.533,8.533H76.8v42.667c0,4.717,3.821,8.533,8.533,8.533H153.6c4.713,0,8.533-3.817,8.533-8.533V460.8h85.333h17.067h85.333v42.667c0,4.717,3.821,8.533,8.533,8.533h68.267c4.713,0,8.533-3.817,8.533-8.533V460.8h8.533c4.713,0,8.533-3.817,8.533-8.533V8.533C452.267,3.817,448.446,0,443.733,0z M145.067,494.933h-51.2V460.8h51.2V494.933z M247.467,443.733H153.6H85.333H76.8V17.067h170.667V443.733z M418.133,494.933h-51.2V460.8h51.2V494.933z M435.2,443.733h-8.533H358.4h-93.867V17.067H435.2V443.733z"/></g></g><g><g><path d="M221.867,213.333h-34.133c-4.713,0-8.533,3.817-8.533,8.533v25.6c0,4.717,3.821,8.533,8.533,8.533s8.533-3.817,8.533-8.533V230.4h25.6c4.713,0,8.533-3.817,8.533-8.533C230.4,217.15,226.579,213.333,221.867,213.333z"/></g></g><g><g><path d="M324.267,213.333h-34.133c-4.713,0-8.533,3.817-8.533,8.533c0,4.717,3.821,8.533,8.533,8.533h25.6v17.067c0,4.717,3.821,8.533,8.533,8.533s8.533-3.817,8.533-8.533v-25.6C332.8,217.15,328.979,213.333,324.267,213.333z"/></g></g></svg>');
}
.icon-string, .icon-thread-count {
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 400 400" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24 219.943C73.8113 211.642 120.446 207.312 169.006 155.742" stroke="%23000000" stroke-opacity="0.9" stroke-width="16" stroke-linecap="round" stroke-linejoin="round"/><path d="M199.206 130.337C250.916 99.842 326.254 151.462 318.438 211.641C310.211 274.983 221.728 286.903 176.199 281.931C130.669 276.958 109.033 266.778 88.6484 233.191" stroke="%23000000" stroke-opacity="0.9" stroke-width="16" stroke-linecap="round" stroke-linejoin="round"/><path d="M27.875 242.635C92.0763 233.78 144.795 214.431 190.039 169.025" stroke="%23000000" stroke-opacity="0.9" stroke-width="16" stroke-linecap="round" stroke-linejoin="round"/><path d="M221.711 148.426C250.633 136.713 322.466 192.991 283.323 225.705C235.939 265.308 146.315 263.113 119.195 227.691" stroke="%23000000" stroke-opacity="0.9" stroke-width="16" stroke-linecap="round" stroke-linejoin="round"/><path d="M79.9414 189.261C82.332 133.37 147.283 104.175 182.528 122.421C216.417 139.967 245.676 179.692 289.891 197.842" stroke="%23000000" stroke-opacity="0.9" stroke-width="16" stroke-linecap="round" stroke-linejoin="round"/><path d="M319.883 205.305C347.282 210.877 363.254 212.284 375.998 206.857" stroke="%23000000" stroke-opacity="0.9" stroke-width="16" stroke-linecap="round" stroke-linejoin="round"/><path d="M104.094 184.721C132.549 119.68 181.475 149.902 198.771 163.673C216.068 177.444 258.788 215.116 282.202 219.8" stroke="%23000000" stroke-opacity="0.9" stroke-width="16" stroke-linecap="round" stroke-linejoin="round"/><path d="M315.047 228.935C328.797 233.688 357.329 236.533 376 230.429" stroke="%23000000" stroke-opacity="0.9" stroke-width="16" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.icon-swatch, .icon-weave-type, .icon-fabric-type {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="%23000000" viewBox="0 0 511 511" xml:space="preserve"><path d="M508.803,250.315l-19.991-19.991l19.991-19.991c2.929-2.929,2.929-7.678,0-10.606l-45.529-45.53c-1.406-1.407-3.314-2.197-5.303-2.197s-3.897,0.79-5.303,2.197l-19.932,19.932l-14.652-14.652l19.932-19.932c2.929-2.929,2.929-7.678,0-10.606l-46.741-46.741c-2.929-2.929-7.678-2.929-10.606,0l-19.991,19.991l-19.991-19.991l-3.873-3.873l19.991-19.991c2.929-2.929,2.929-7.678,0-10.606l-45.529-45.53C309.868,0.79,307.96,0,305.971,0s-3.897,0.79-5.303,2.197l-19.991,19.991L260.686,2.197C259.279,0.79,257.372,0,255.382,0s-3.897,0.79-5.303,2.197l-19.991,19.991L210.097,2.197C208.691,0.79,206.783,0,204.794,0s-3.897,0.79-5.303,2.197L179.5,22.188L159.509,2.197C158.103,0.79,156.195,0,154.206,0s-3.897,0.79-5.303,2.197l-19.991,19.991L108.921,2.197C107.515,0.79,105.607,0,103.618,0s-3.897,0.79-5.303,2.197L78.324,22.188L58.333,2.197C56.926,0.79,55.019,0,53.029,0s-3.897,0.79-5.303,2.197L2.197,47.727c-2.929,2.929-2.929,7.678,0,10.606l19.991,19.991L2.197,98.315c-2.929,2.929-2.929,7.678,0,10.606l19.991,19.991L2.197,148.903c-2.929,2.929-2.929,7.678,0,10.606L22.188,179.5L2.197,199.491c-2.929,2.929-2.929,7.678,0,10.606l19.991,19.991L2.197,250.08c-2.929,2.929-2.929,7.678,0,10.606l19.991,19.991L2.197,300.668c-2.929,2.929-2.929,7.678,0,10.606l45.529,45.529c1.464,1.465,3.384,2.197,5.303,2.197s3.839-0.732,5.303-2.197l19.991-19.99l3.873,3.873l19.991,19.991l-19.991,19.991c-2.929,2.929-2.929,7.678,0,10.606l46.688,46.688c1.406,1.407,3.314,2.197,5.303,2.197s3.897-0.79,5.303-2.197l19.991-19.991l14.705,14.705l-19.991,19.991c-2.929,2.929-2.929,7.678,0,10.606l45.529,45.529c2.929,2.93,7.678,2.929,10.606,0l19.991-19.991l19.991,19.991c2.929,2.929,7.678,2.929,10.606,0l19.991-19.991l19.991,19.991c2.929,2.929,7.678,2.929,10.606,0l19.991-19.991l19.991,19.991c2.929,2.93,7.678,2.929,10.606,0l19.991-19.991l19.991,19.991c1.464,1.464,3.384,2.197,5.303,2.197s3.839-0.732,5.303-2.197l19.991-19.991l19.991,19.991c2.929,2.929,7.678,2.929,10.606,0l20.183-20.183c0.018-0.017,0.035-0.034,0.052-0.052l25.294-25.294c2.929-2.929,2.929-7.678,0-10.606l-19.991-19.991l19.991-19.991c2.929-2.929,2.929-7.678,0-10.606l-19.991-19.991l19.991-19.991c2.929-2.929,2.929-7.678,0-10.606L488.813,331.5l19.991-19.991c2.929-2.929,2.929-7.678,0-10.606l-19.991-19.991l19.991-19.991C511.733,257.992,511.733,253.243,508.803,250.315z M159.545,346.143l-41.448-41.448c-0.224-0.224-0.461-0.424-0.704-0.614l-19.287-19.287l14.67-14.67l41.406,41.406c0.118,0.118,0.243,0.222,0.366,0.331l19.639,19.639L159.545,346.143z M159.483,295.617l-41.054-41.054c-0.108-0.123-0.213-0.249-0.331-0.366l-19.991-19.991l14.74-14.74l40.7,40.7c0.2,0.261,0.412,0.515,0.65,0.754l19.991,19.991L159.483,295.617z M159.552,244.96l-41.455-41.455c-0.239-0.239-0.494-0.451-0.755-0.652l-19.235-19.236l14.68-14.68l41.396,41.396c0.047,0.047,0.099,0.087,0.147,0.133l19.858,19.857L159.552,244.96z M159.493,194.43l-41.262-41.262c-0.046-0.048-0.086-0.1-0.133-0.147L98.107,133.03l12.158-12.158l61.393,61.393L159.493,194.43z M182.265,171.658l-61.394-61.394l12.158-12.158l19.991,19.991c0.02,0.02,0.042,0.037,0.062,0.056l41.343,41.343L182.265,171.658z M230.327,174.185l-61.394-61.394l14.685-14.685l19.991,19.991c0.116,0.116,0.241,0.221,0.363,0.329l41.057,41.056L230.327,174.185z M280.929,174.171l-61.394-61.394l14.671-14.671l19.991,19.991c0.188,0.188,0.385,0.362,0.59,0.528l40.844,40.844L280.929,174.171z M331.531,174.157l-61.393-61.393l14.657-14.657l19.991,19.991c0.219,0.219,0.455,0.418,0.697,0.607l40.75,40.75L331.531,174.157z M382.133,174.143L320.74,112.75l14.643-14.643l19.991,19.991c0.252,0.252,0.524,0.477,0.806,0.688l40.656,40.656L382.133,174.143z M385.971,98.107l36.135,36.135l-14.629,14.629l-36.135-36.135L385.971,98.107z M73.021,320.903l-19.991,19.991l-34.923-34.923l19.991-19.991c2.929-2.929,2.929-7.678,0-10.606l-19.991-19.991l19.991-19.991c2.929-2.929,2.929-7.678,0-10.606l-19.991-19.991l19.991-19.991c2.929-2.929,2.929-7.678,0-10.606l-19.991-19.991l19.991-19.991c2.929-2.929,2.929-7.678,0-10.606l-19.991-19.991l19.991-19.991c2.929-2.929,2.929-7.678,0-10.606L18.107,53.03l34.923-34.923l19.991,19.991c1.406,1.407,3.314,2.197,5.303,2.197s3.897-0.79,5.303-2.197l19.991-19.991l19.991,19.991c1.406,1.407,3.314,2.197,5.303,2.197s3.897-0.79,5.303-2.197l19.991-19.991l19.991,19.991c1.406,1.407,3.314,2.197,5.303,2.197s3.897-0.79,5.303-2.197l19.991-19.991l19.991,19.991c1.406,1.407,3.314,2.197,5.303,2.197s3.897-0.79,5.303-2.197l19.991-19.991l19.991,19.991c1.406,1.407,3.314,2.197,5.303,2.197s3.897-0.79,5.303-2.197l19.991-19.991l34.923,34.923l-19.991,19.991c-2.929,2.929-2.929,7.678,0,10.606l3.873,3.873l-14.688,14.688l-19.991-19.991C288.691,80.79,286.783,80,284.794,80s-3.897,0.79-5.303,2.197L259.5,102.188l-19.991-19.991C238.103,80.79,236.195,80,234.206,80s-3.897,0.79-5.303,2.197l-19.991,19.991l-19.991-19.991C187.515,80.79,185.607,80,183.618,80s-3.897,0.79-5.303,2.197l-19.991,19.991l-19.991-19.991C136.926,80.79,135.019,80,133.029,80s-3.897,0.79-5.303,2.197l-45.529,45.53c-2.929,2.929-2.929,7.678,0,10.606l19.991,19.991l-19.991,19.991c-2.929,2.929-2.929,7.678,0,10.606l19.991,19.991l-19.991,19.991c-2.929,2.929-2.929,7.678,0,10.606l19.991,19.991l-19.991,19.991c-2.929,2.929-2.929,7.678,0,10.606l19.991,19.991L87.5,324.776l-3.873-3.873c-1.406-1.407-3.314-2.197-5.303-2.197S74.427,319.496,73.021,320.903z M98.107,335.383l14.733-14.733l40.744,40.744c0.19,0.243,0.39,0.48,0.614,0.704l19.991,19.991l-14.708,14.709l-40.991-40.991c-0.126-0.146-0.252-0.293-0.391-0.432L98.107,335.383z M134.189,422.053l-36.082-36.082l14.667-14.667l36.082,36.082L134.189,422.053z M472.903,275.609c-2.929,2.929-2.929,7.678,0,10.606l19.991,19.991l-19.991,19.991c-2.929,2.929-2.929,7.678,0,10.606l19.991,19.991l-19.991,19.991c-2.929,2.929-2.929,7.678,0,10.606l19.991,19.991l-19.991,19.991c-2.929,2.929-2.929,7.678,0,10.606l19.991,19.991l-14.889,14.89c-0.015,0.014-0.029,0.028-0.043,0.042l-19.991,19.991l-19.991-19.991c-1.464-1.464-3.384-2.197-5.303-2.197s-3.839,0.732-5.303,2.197l-19.991,19.991l-19.991-19.991c-2.929-2.929-7.678-2.929-10.606,0l-19.991,19.991l-19.991-19.991c-2.929-2.929-7.678-2.929-10.606,0l-19.991,19.991l-19.991-19.991c-2.929-2.929-7.678-2.929-10.606,0l-19.991,19.991l-19.991-19.991c-2.928-2.929-7.677-2.929-10.606,0l-19.991,19.991l-34.923-34.923l19.991-19.991c2.929-2.929,2.929-7.678,0-10.606l-19.991-19.991l19.991-19.991c2.929-2.929,2.929-7.678,0-10.606l-19.991-19.991l19.991-19.991c2.929-2.929,2.929-7.678,0-10.606l-19.991-19.991l19.991-19.991c2.929-2.929,2.929-7.678,0-10.606l-19.991-19.991l19.991-19.991c2.929-2.929,2.929-7.678,0-10.606l-19.991-19.991l34.923-34.923l19.991,19.991c1.406,1.407,3.314,2.197,5.303,2.197s3.897-0.79,5.303-2.197l19.991-19.991l19.991,19.991c1.406,1.407,3.314,2.197,5.303,2.197s3.897-0.79,5.303-2.197l19.991-19.991l19.991,19.991c1.406,1.407,3.314,2.197,5.303,2.197s3.897-0.79,5.303-2.197l19.991-19.991l19.991,19.991c1.406,1.407,3.314,2.197,5.303,2.197s3.897-0.79,5.303-2.197l19.991-19.991l19.991,19.991c1.406,1.407,3.314,2.197,5.303,2.197s3.897-0.79,5.303-2.197l19.991-19.991l34.923,34.923l-19.991,19.991c-2.929,2.929-2.929,7.678,0,10.606l19.991,19.991L472.903,275.609z"/></svg>');
}
.icon-pillow, .icon-pillowcase, .icon-pillowcase-style, .icon-pillowcases-included {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="%23000000" viewBox="0 0 512 512" xml:space="preserve"><g><g><g><path d="M309.568,272.494c1.578,1.578,3.648,2.368,5.716,2.368s4.138-0.789,5.716-2.368l5.063-5.063l5.063,5.063c1.578,1.578,3.648,2.368,5.716,2.368s4.138-0.789,5.716-2.368c3.157-3.157,3.157-8.276,0-11.433l-5.063-5.063l5.063-5.063c3.157-3.157,3.157-8.276,0-11.433c-3.157-3.157-8.276-3.157-11.432,0l-5.063,5.063L321,239.502c-3.157-3.157-8.276-3.157-11.432,0c-3.157,3.157-3.157,8.276,0,11.433l5.063,5.063l-5.063,5.063C306.411,264.218,306.411,269.337,309.568,272.494z"/><path d="M412.621,174.828l-5.063-5.063l5.063-5.063c3.157-3.157,3.157-8.276,0-11.433c-3.157-3.157-8.276-3.157-11.432,0l-5.063,5.063l-5.063-5.063c-3.157-3.157-8.276-3.157-11.432,0c-3.157,3.157-3.157,8.276,0,11.433l5.063,5.063l-5.063,5.063c-3.157,3.157-3.157,8.276,0,11.433c1.578,1.578,3.648,2.368,5.716,2.368s4.138-0.789,5.716-2.368l5.063-5.063l5.063,5.063c1.578,1.578,3.648,2.368,5.716,2.368s4.138-0.789,5.716-2.368C415.779,183.104,415.779,177.985,412.621,174.828z"/><path d="M379.631,358.727c1.578,1.578,3.648,2.368,5.716,2.368s4.138-0.789,5.716-2.368l5.063-5.063l5.063,5.063c1.578,1.578,3.648,2.368,5.716,2.368s4.138-0.789,5.716-2.368c3.157-3.157,3.157-8.276,0-11.433l-5.063-5.063l5.063-5.063c3.157-3.157,3.157-8.276,0-11.433c-3.157-3.157-8.276-3.157-11.432,0l-5.063,5.063l-5.063-5.063c-3.157-3.157-8.276-3.157-11.432,0c-3.157,3.157-3.157,8.276,0,11.433l5.063,5.063l-5.063,5.063C376.474,350.45,376.474,355.569,379.631,358.727z"/><path d="M272.495,153.269c-3.157-3.157-8.276-3.157-11.432,0L256,158.332l-5.063-5.063c-3.157-3.157-8.276-3.157-11.432,0c-3.157,3.157-3.157,8.276,0,11.433l5.063,5.063l-5.063,5.063c-3.157,3.157-3.157,8.276,0,11.433c1.578,1.578,3.648,2.368,5.716,2.368s4.138-0.789,5.716-2.368l5.063-5.063l5.063,5.063c1.578,1.578,3.648,2.368,5.716,2.368s4.138-0.789,5.716-2.368c3.157-3.157,3.157-8.276,0-11.433l-5.063-5.063l5.063-5.063C275.652,161.545,275.652,156.426,272.495,153.269z"/><path d="M132.369,325.734c-3.157-3.157-8.276-3.157-11.432,0l-5.063,5.063l-5.063-5.063c-3.157-3.157-8.276-3.157-11.432,0c-3.157,3.157-3.157,8.276,0,11.433l5.063,5.063l-5.063,5.063c-3.157,3.157-3.157,8.276,0,11.433c1.578,1.578,3.648,2.368,5.716,2.368s4.138-0.789,5.716-2.368l5.063-5.063l5.063,5.063c1.578,1.578,3.648,2.368,5.716,2.368s4.138-0.789,5.716-2.368c3.157-3.157,3.157-8.276,0-11.433l-5.063-5.063l5.063-5.063C135.526,334.01,135.526,328.892,132.369,325.734z"/><path d="M191.326,102.395h195.223c14.566,0,29.151-3.442,42.176-9.955l40.576-20.287c2.19-1.095,4.354-1.762,6.431-1.984c5.231-0.561,10.238,1.044,14.101,4.517c3.813,3.428,6,8.33,6,13.451c0,2.792-0.661,5.587-1.909,8.084l-20.471,40.943c-6.515,13.027-9.958,27.614-9.958,42.179v108.99c0,4.465,3.62,8.084,8.084,8.084c4.465,0,8.084-3.62,8.084-8.084V179.341c0-12.069,2.853-24.153,8.25-34.949l20.471-40.943C510.75,98.719,512,93.423,512,88.135c0-9.702-4.14-18.988-11.361-25.476c-7.214-6.484-16.92-9.608-26.627-8.569c-4.002,0.428-8.019,1.638-11.943,3.6l-40.575,20.288c-10.792,5.396-22.876,8.248-34.945,8.248H191.326c-4.465,0-8.084,3.62-8.084,8.084C183.242,98.776,186.862,102.396,191.326,102.395z"/><path d="M272.495,325.734c-3.157-3.157-8.276-3.157-11.432,0L256,330.797l-5.063-5.063c-3.157-3.157-8.276-3.157-11.432,0c-3.157,3.157-3.157,8.276,0,11.433l5.063,5.063l-5.063,5.063c-3.157,3.157-3.157,8.276,0,11.433c1.578,1.578,3.648,2.368,5.716,2.368s4.138-0.789,5.716-2.368l5.063-5.063l5.063,5.063c1.578,1.578,3.648,2.368,5.716,2.368s4.138-0.789,5.716-2.368c3.157-3.157,3.157-8.276,0-11.433l-5.063-5.063l5.063-5.063C275.652,334.01,275.652,328.892,272.495,325.734z"/><path d="M132.369,153.269c-3.157-3.157-8.276-3.157-11.432,0l-5.063,5.063l-5.063-5.063c-3.157-3.157-8.276-3.157-11.432,0c-3.157,3.157-3.157,8.276,0,11.433l5.063,5.063l-5.063,5.063c-3.157,3.157-3.157,8.276,0,11.433c1.578,1.578,3.648,2.368,5.716,2.368s4.138-0.789,5.716-2.368l5.063-5.063l5.063,5.063c1.578,1.578,3.648,2.368,5.716,2.368s4.138-0.789,5.716-2.368c3.157-3.157,3.157-8.276,0-11.433l-5.063-5.063l5.063-5.063C135.526,161.545,135.526,156.426,132.369,153.269z"/><path d="M508.209,408.194l-20.297-40.594c-5.397-10.795-8.25-22.879-8.25-34.949v-11.98c0-4.465-3.62-8.084-8.084-8.084s-8.084,3.62-8.084,8.084v11.98c0,14.566,3.443,29.152,9.958,42.179l20.297,40.594c1.076,2.15,1.735,4.276,1.964,6.315c0.622,5.559-1.264,10.989-5.176,14.901c-3.911,3.912-9.348,5.8-14.9,5.176c-2.042-0.229-4.166-0.889-6.316-1.964l-40.592-20.297c-13.027-6.515-27.614-9.958-42.179-9.958H125.451c-14.566,0-29.151,3.443-42.179,9.958l-40.592,20.297c-2.15,1.075-4.275,1.735-6.315,1.964c-5.558,0.625-10.989-1.264-14.901-5.175c-3.911-3.911-5.798-9.342-5.176-14.901c0.229-2.04,0.889-4.165,1.964-6.315l20.297-40.594c6.515-13.029,9.958-27.615,9.958-42.18v-153.31c0-14.566-3.443-29.152-9.958-42.179l-20.47-40.944c-1.249-2.497-1.909-5.292-1.909-8.084c0-5.121,2.187-10.023,6-13.451c3.863-3.472,8.868-5.074,14.102-4.517c2.077,0.222,4.243,0.89,6.435,1.987l40.568,20.284c13.027,6.515,27.614,9.958,42.179,9.958h33.538c4.465,0,8.084-3.62,8.084-8.084c0-4.465-3.62-8.084-8.084-8.084h-33.539c-12.069,0-24.154-2.853-34.949-8.25L49.936,57.692c-3.926-1.963-7.945-3.174-11.947-3.602c-9.708-1.039-19.414,2.086-26.628,8.569C4.14,69.147,0,78.433,0,88.135c0,5.288,1.25,10.584,3.615,15.315l20.471,40.943c5.398,10.795,8.25,22.88,8.25,34.95v153.31c0,12.069-2.852,24.153-8.25,34.949L3.79,408.194c-1.929,3.858-3.13,7.81-3.571,11.749c-1.171,10.472,2.405,20.726,9.812,28.132c7.407,7.406,17.659,10.981,28.13,9.811c3.938-0.44,7.891-1.642,11.749-3.571l40.592-20.297c10.795-5.397,22.879-8.25,34.949-8.25h261.097c12.069,0,24.153,2.853,34.949,8.25l40.592,20.297c3.858,1.929,7.81,3.13,11.748,3.572c1.307,0.147,2.612,0.219,3.907,0.219c9.08,0,17.742-3.548,24.224-10.03c7.406-7.407,10.982-17.66,9.811-28.132C511.34,416.005,510.138,412.052,508.209,408.194z"/><path d="M169.442,272.493c1.578,1.578,3.648,2.368,5.716,2.368s4.138-0.789,5.716-2.368l5.063-5.063l5.063,5.063c1.578,1.578,3.648,2.368,5.716,2.368c2.068,0,4.138-0.789,5.716-2.368c3.157-3.157,3.157-8.276,0-11.433l-5.063-5.063l5.063-5.063c3.157-3.157,3.157-8.276,0-11.433c-3.157-3.157-8.276-3.157-11.432,0l-5.063,5.063l-5.063-5.063c-3.157-3.157-8.276-3.157-11.432,0c-3.157,3.158-3.157,8.277,0,11.433l5.063,5.063l-5.063,5.063C166.285,264.217,166.285,269.336,169.442,272.493z"/></g></g></g></svg>');
}
.icon-button {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="%23000000" viewBox="0 0 512 512" xml:space="preserve"><g><g><path d="M256.001,0C114.841,0,0,114.841,0,256.001s114.841,256.001,256.001,256.001S512.001,397.16,512.001,256.001S397.159,0,256.001,0z M256.001,493.389c-130.897,0-237.39-106.492-237.39-237.39S125.103,18.611,256.001,18.611s237.39,106.492,237.39,237.39S386.897,493.389,256.001,493.389z"/></g></g><g><g><path d="M256.001,49.81c-113.693,0-206.19,92.497-206.19,206.19s92.497,206.19,206.19,206.19c42.532,0,83.369-12.845,118.094-37.148c33.935-23.75,59.687-56.662,74.47-95.18c1.841-4.798-0.556-10.18-5.353-12.021c-4.799-1.841-10.18,0.556-12.021,5.353c-13.448,35.041-36.882,64.987-67.766,86.601c-31.582,22.101-68.728,33.784-107.423,33.784c-103.431,0-187.579-84.148-187.579-187.579S152.568,68.422,256.001,68.422S443.58,152.569,443.58,256.001c0,5.139,4.166,9.306,9.306,9.306c5.139,0,9.305-4.166,9.305-9.306C462.191,142.306,369.694,49.81,256.001,49.81z"/></g></g><g><g><path d="M207.018,176.171c-17.872,0-32.412,14.54-32.412,32.412c0,17.872,14.54,32.412,32.412,32.412c17.872,0,32.41-14.54,32.41-32.412C239.428,190.711,224.888,176.171,207.018,176.171z M207.018,222.382c-7.609,0-13.801-6.191-13.801-13.801s6.191-13.801,13.801-13.801c7.609,0,13.799,6.191,13.799,13.801S214.626,222.382,207.018,222.382z"/></g></g><g><g><path d="M304.984,176.171c-17.872,0-32.412,14.54-32.412,32.412c0,17.872,14.54,32.412,32.412,32.412c17.872,0,32.412-14.54,32.412-32.412C337.395,190.711,322.855,176.171,304.984,176.171z M304.984,222.382c-7.609,0-13.801-6.191-13.801-13.801s6.191-13.801,13.801-13.801c7.609,0,13.801,6.191,13.801,13.801S312.593,222.382,304.984,222.382z"/></g></g><g><g><path d="M207.018,271.007c-17.872,0-32.412,14.54-32.412,32.412c0,17.872,14.54,32.412,32.412,32.412s32.41-14.54,32.41-32.412C239.428,285.547,224.889,271.007,207.018,271.007z M207.018,317.22c-7.609,0-13.801-6.191-13.801-13.801c0-7.609,6.191-13.801,13.801-13.801c7.609,0,13.799,6.191,13.799,13.801C220.817,311.028,214.627,317.22,207.018,317.22z"/></g></g><g><g><path d="M304.984,271.007c-17.872,0-32.412,14.54-32.412,32.412c0,17.872,14.54,32.412,32.412,32.412c17.872,0,32.412-14.54,32.412-32.412C337.395,285.547,322.855,271.007,304.984,271.007z M304.984,317.218c-7.609,0-13.801-6.191-13.801-13.801c0-7.609,6.191-13.801,13.801-13.801c7.609,0,13.801,6.191,13.801,13.801C318.784,311.027,312.593,317.218,304.984,317.218z"/></g></g><g><g><circle cx="448.898" cy="293.582" r="9.306"/></g></g></svg>');
}
.icon-mail, .icon-envelope {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64 64"><path fill="%23231F20" d="M60,8H4c-2.211,0-4,1.789-4,4v40c0,2.211,1.789,4,4,4h56c2.211,0,4-1.789,4-4V12C64,9.789,62.211,8,60,8z M4,10h56c1.104,0,2,0.896,2,2v2.469L32,36.754L2,14.469V12C2,10.896,2.896,10,4,10z M60,54H4c-1.104,0-2-0.896-2-2v-2.808l18.584-13.381c0.448-0.322,0.55-0.947,0.228-1.396c-0.322-0.447-0.946-0.549-1.396-0.228L2,46.729V16.961l29.403,21.842C31.581,38.935,31.79,39,32,39s0.419-0.065,0.597-0.197L62,16.961v29.768l-17.416-12.54c-0.448-0.322-1.074-0.221-1.396,0.228c-0.322,0.448-0.221,1.073,0.228,1.396L62,49.192V52C62,53.104,61.104,54,60,54z"/></svg>');
}
.icon-anti-bacterial {
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" fill="none"><g><defs><style>.cls-all{stroke:%23000000;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px;}</style></defs><path class="cls-all" d="M42.5347,54.2538,32,60,21.4653,54.2538A22,22,0,0,1,10,34.94V14A10,10,0,0,0,20,4H44A10,10,0,0,0,54,14V34.94A22,22,0,0,1,42.5347,54.2538Z"/><circle class="cls-all" cx="32" cy="32" r="12"/><circle class="cls-all" cx="28" cy="35" r="3"/><circle class="cls-all" cx="37" cy="30" r="2"/><circle class="cls-all" cx="36" cy="39" r="1"/><circle class="cls-all" cx="27" cy="28" r="1"/><circle class="cls-all" cx="32" cy="24" r="1"/><line class="cls-all" x1="32" x2="32" y1="16" y2="20"/><line class="cls-all" x1="32" x2="32" y1="44" y2="48"/><line class="cls-all" x1="20.6863" x2="23.5147" y1="20.6863" y2="23.5147"/><line class="cls-all" x1="40.4853" x2="43.3137" y1="40.4853" y2="43.3137"/><line class="cls-all" x1="16" x2="20" y1="32" y2="32"/><line class="cls-all" x1="44" x2="48" y1="32" y2="32"/><line class="cls-all" x1="20.6863" x2="23.5147" y1="43.3137" y2="40.4853"/><line class="cls-all" x1="40.4853" x2="43.3137" y1="23.5147" y2="20.6863"/></g></svg>');
}
.icon-handle, .icon-turning-handles {
    background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="iso-8859-1"%3F><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="%23000000" viewBox="0 0 451.978 451.978" xml:space="preserve"><path d="M441.978,110.805h-91.534c-5.523,0-10,4.477-10,10v66.494h-228.91v-66.494c0-5.523-4.477-10-10-10H10c-5.523,0-10,4.477-10,10v210.369c0,5.523,4.477,10,10,10h91.534c5.523,0,10-4.477,10-10v-66.499h228.91v66.499c0,5.523,4.477,10,10,10h91.534c5.523,0,10-4.477,10-10V120.805C451.978,115.282,447.501,110.805,441.978,110.805z M91.534,130.805v31.636H20v-31.636H91.534z M91.534,182.441v87.097H20v-87.097H91.534z M20,321.173v-31.636h71.534v31.636H20z M111.534,244.675v-37.376h228.91v37.376H111.534z M431.978,130.805v31.636h-71.534v-31.636H431.978z M431.978,182.441v87.097h-71.534v-87.097H431.978z M360.444,321.173v-31.636h71.534v31.636H360.444z"/></svg>');
}
.icon-needle-and-thread, .icon-hand-tufted {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="%23000000" viewBox="0 0 512.001 512.001" xml:space="preserve"><g><g><path d="M380.205,98.595H190.041c-4.425-33.097-15.891-65.201-33.753-93.582c-1.745-2.773-4.792-4.454-8.066-4.454s-6.322,1.681-8.066,4.454c-17.861,28.382-29.328,60.485-33.752,93.582H42.478c-5.264,0-9.53,4.266-9.53,9.53s4.266,9.53,9.53,9.53h62.166c-0.555,10.853-0.358,21.754,0.624,32.614l31.778,350.965c0.529,5.82,5.333,10.209,11.177,10.209c5.844,0,10.648-4.389,11.177-10.21l31.778-350.965c0.982-10.858,1.179-21.761,0.624-32.612h188.404c62.162,0,112.735,50.572,112.735,112.735c0,62.155-50.557,112.722-112.708,112.735c-44.171-0.009-80.106-35.948-80.106-80.121c0-44.178,35.942-80.12,80.12-80.12c42.237,0,76.599,34.362,76.599,76.599c0,5.265,4.266,9.53,9.53,9.53c5.265,0,9.53-4.266,9.53-9.53c0-52.747-42.913-95.659-95.659-95.659c-54.688,0-99.18,44.492-99.18,99.18c0,54.668,44.459,99.149,99.121,99.182c0.006,0,0.014,0,0.02,0c0.013,0,0.028,0,0.039,0c0.005,0,0.009,0,0.013,0c72.648-0.028,131.743-59.141,131.743-131.795C512,157.719,452.877,98.595,380.205,98.595z M172.193,148.549l-23.97,264.749l-23.97-264.749c-3.726-41.135,4.747-82.95,23.97-119.407c11.43,21.678,19.025,45.256,22.548,69.452h-13.018V86.099c0-5.265-4.266-9.53-9.53-9.53c-5.264,0-9.53,4.266-9.53,9.53v66.924c0,5.264,4.266,9.53,9.53,9.53c5.265,0,9.53-4.266,9.53-9.53v-35.367h14.969C173.292,127.934,173.125,138.262,172.193,148.549z"/></g></g><g><g><circle cx="9.53" cy="108.125" r="9.53"/></g></g></svg>');
}
.icon-iron {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="%23000000" viewBox="0 0 446.838 446.838" enable-background="new 0 0 446.838 446.838"><g><path d="m445.244,253.923l-44.843-104.864 13.619-13.62c2.929-2.929 2.929-7.678 0-10.606-2.93-2.929-7.678-2.929-10.607,0l-9.366,9.367-2.427-5.675c-4.963-11.606-16.325-19.105-28.948-19.105h-106.5c-59.222,0-114.917,26.104-152.806,71.619l-18.395,22.096c-2.992-1.226-6.208-1.895-9.481-1.895-13.79,0-25.01,11.219-25.01,25.01 0,4.87 1.411,9.545 3.982,13.534l-10.411,12.505-2.961-2.961c-1.951-1.952-5.119-1.952-7.07,0-1.953,1.953-1.953,5.119 0,7.071l3.607,3.607-35.891,43.115c-1.862,2.236-2.262,5.347-1.027,7.981 1.234,2.634 3.882,4.317 6.791,4.317h8v7h-8c-4.143,0-7.5,3.358-7.5,7.5s3.357,7.5 7.5,7.5h331c4.143,0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-14v-14.015c37.105-5.783 73.62-15.124 109.224-27.981 5.121-1.849 9.303-5.773 11.474-10.766s2.188-10.728 0.046-15.734zm-342.762-48.379c15.467-2.624 30.094-9.7 41.688-20.282 30.628-27.95 70.403-43.343 112-43.343h84.896c6.511,0 12.565-3.227 16.196-8.632 1.81-2.694 2.89-5.742 3.214-8.868h0.102c17.958,39.96 31.957,78.709 37.718,104.545 1.967,8.823-3.029,17.67-11.621,20.58-115.471,39.104-297.185,33.791-347.008,31.455l62.815-75.455zm12.413-14.91c35.03-42.081 86.523-66.215 141.277-66.215h94.203c-0.253,1.15-0.722,2.263-1.413,3.292-1.796,2.674-4.673,4.208-7.895,4.208h-84.896c-44.097,0-86.266,16.321-118.74,45.957-6.945,6.338-15.133,11.238-23.945,14.451l1.409-1.693zm-54.415,35.615c0-8.276 6.733-15.01 15.01-15.01 0.859,0 1.712,0.076 2.55,0.221l-16.625,19.971c-0.603-1.639-0.935-3.387-0.935-5.182zm254.02,96.17h-289v-7h208.277c27.12,0 54.065-1.86 80.723-5.544v12.544zm116.941-58.742c-0.54,1.242-1.538,2.178-2.812,2.638-62.667,22.63-128.225,34.104-194.853,34.104h-210.274l8.164-9.807c12.073,0.665 42.524,2.087 82.105,2.087 13.234,0 27.489-0.159 42.413-0.559 67.313-1.803 162.497-9.013 233.699-33.125 13.442-4.552 21.255-18.406 18.174-32.228-5.514-24.728-18.314-60.823-34.843-98.548 1.964,1.635 3.565,3.729 4.614,6.182l53.624,125.399c0.533,1.245 0.528,2.615-0.011,3.857z"/><path d="m210.916,212.419h87.822c17.237,0 31.262-14.024 31.262-31.263 0-8.811-3.745-17.257-10.276-23.171-6.53-5.915-15.309-8.806-24.072-7.938l-87.393,8.673c-13.83,1.371-24.259,12.886-24.259,26.783 0,14.842 12.074,26.916 26.916,26.916zm61.584-15h-46.584v-1.184c0-1.241 1.01-2.25 2.25-2.25h42.084c1.24,0 2.25,1.009 2.25,2.25v1.184zm-62.761-23.773l87.393-8.673c4.626-0.46 9.076,1.007 12.522,4.129 3.447,3.122 5.346,7.403 5.346,12.054 0,8.967-7.295,16.263-16.262,16.263h-16.238v-1.184c0-6.755-5.495-12.25-12.25-12.25h-42.084c-6.755,0-12.25,5.495-12.25,12.25v1.184h-5c-6.57,0-11.916-5.345-11.916-11.916 0-6.152 4.617-11.25 10.739-11.857z"/><path d="m221,218.919c-9.649,0-17.5,7.851-17.5,17.5s7.851,17.5 17.5,17.5 17.5-7.851 17.5-17.5-7.851-17.5-17.5-17.5zm0,25c-4.136,0-7.5-3.364-7.5-7.5s3.364-7.5 7.5-7.5 7.5,3.364 7.5,7.5-3.364,7.5-7.5,7.5z"/><path d="m260.477,219.073c-9.649,0-17.5,7.851-17.5,17.5s7.851,17.5 17.5,17.5 17.5-7.851 17.5-17.5-7.851-17.5-17.5-17.5zm0,25c-4.136,0-7.5-3.364-7.5-7.5s3.364-7.5 7.5-7.5 7.5,3.364 7.5,7.5-3.365,7.5-7.5,7.5z"/></g></svg>');
}
.icon-no-iron, .icon-non-iron {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="%23000000" viewBox="0 0 490.667 490.667" xml:space="preserve"><g><g><g><path d="M202.667,330.667c-5.888,0-10.667,4.779-10.667,10.667v32c0,5.888,4.779,10.667,10.667,10.667s10.667-4.779,10.667-10.667v-32C213.333,335.445,208.555,330.667,202.667,330.667z"/><path d="M362.624,73.707C362.133,68.203,357.525,64,352,64H181.333c-5.888,0-10.667,4.779-10.667,10.667s4.779,10.667,10.667,10.667h160.917l5.824,64H224c-5.888,0-10.667,4.779-10.667,10.667s4.779,10.667,10.667,10.667h126.016l11.925,131.307c-1.813,1.92-2.944,4.501-2.944,7.36c0,5.888,4.779,10.667,10.667,10.667h3.669c3.008,0,5.845-1.259,7.872-3.456c2.027-2.219,3.029-5.184,2.752-8.171L362.624,73.707z"/><path d="M155.221,332.459c-4.907-3.264-11.541-1.941-14.784,2.965l-17.749,26.624c-3.264,4.907-1.941,11.52,2.965,14.784c1.835,1.216,3.883,1.792,5.909,1.792c3.456,0,6.848-1.664,8.875-4.757l17.749-26.624C161.451,342.336,160.128,335.723,155.221,332.459z"/><path d="M234.667,394.667c-5.888,0-10.667,4.779-10.667,10.667v32c0,5.888,4.779,10.667,10.667,10.667s10.667-4.779,10.667-10.667v-32C245.333,399.445,240.555,394.667,234.667,394.667z"/><path d="M162.155,384.213c-5.824-1.131-11.413,2.539-12.608,8.299l-6.464,31.339c-1.173,5.781,2.517,11.413,8.299,12.608c0.747,0.149,1.472,0.213,2.176,0.213c4.949,0,9.387-3.456,10.432-8.512l6.464-31.339C171.627,391.04,167.936,385.408,162.155,384.213z"/><path d="M266.667,330.667c-5.888,0-10.667,4.779-10.667,10.667v32c0,5.888,4.779,10.667,10.667,10.667s10.667-4.779,10.667-10.667v-32C277.333,335.445,272.555,330.667,266.667,330.667z"/><path d="M245.333,0C110.059,0,0,110.059,0,245.333s110.059,245.333,245.333,245.333s245.333-110.059,245.333-245.333S380.608,0,245.333,0z M245.333,469.333c-123.52,0-224-100.48-224-224c0-57.92,22.272-110.613,58.496-150.4l73.941,73.941C111.851,193.621,85.333,238.741,85.333,288v21.333C85.333,315.221,90.112,320,96,320h208.896l11.499,11.499c-0.789,0.277-1.6,0.469-2.304,0.96c-4.907,3.264-6.229,9.877-2.965,14.784l17.749,26.624c2.069,3.093,5.44,4.757,8.896,4.757c2.027,0,4.075-0.576,5.888-1.792c4.907-3.264,6.229-9.877,2.965-14.784l-0.64-0.96l49.749,49.749C355.947,447.061,303.253,469.333,245.333,469.333z M169.216,184.32l114.347,114.347H106.667V288C106.667,244.48,131.008,204.565,169.216,184.32z M410.816,395.755l-93.909-93.909c-0.021-0.021,0-0.021-0.021-0.043L178.944,163.861c-0.021-0.021-0.021,0-0.043-0.021L94.912,79.851c39.808-36.224,92.48-58.517,150.421-58.517c123.52,0,224,100.48,224,224C469.333,303.275,447.04,355.947,410.816,395.755z"/><path d="M319.787,392.512c-1.195-5.76-6.784-9.429-12.608-8.299c-5.781,1.195-9.493,6.827-8.299,12.608l6.464,31.339c1.045,5.035,5.483,8.512,10.432,8.512c0.704,0,1.451-0.064,2.176-0.213c5.781-1.195,9.493-6.827,8.299-12.608L319.787,392.512z"/></g></g></g></svg>');
}
.icon-machine-dry, .icon-tumble-dry {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="%23000000" viewBox="0 0 50 50"><path d="M9 3C7.3550302 3 6 4.3550302 6 6L6 44C6 45.64497 7.3550302 47 9 47L41 47C42.64497 47 44 45.64497 44 44L44 6C44 4.3550302 42.64497 3 41 3L9 3 z M 9 5L41 5C41.56503 5 42 5.4349698 42 6L42 44C42 44.56503 41.56503 45 41 45L9 45C8.4349698 45 8 44.56503 8 44L8 6C8 5.4349698 8.4349698 5 9 5 z M 31 8 A 2 2 0 0 0 29 10 A 2 2 0 0 0 31 12 A 2 2 0 0 0 33 10 A 2 2 0 0 0 31 8 z M 37 8 A 2 2 0 0 0 35 10 A 2 2 0 0 0 37 12 A 2 2 0 0 0 39 10 A 2 2 0 0 0 37 8 z M 25 15C18.384534 15 13 20.384534 13 27C13 33.615466 18.384534 39 25 39C31.613644 39 37 33.615686 37 27C37 20.510331 31.79579 15.272004 25.355469 15.072266 A 1.0001 1.0001 0 0 0 25 15 z M 25 17C30.532356 17 35 21.465686 35 27C35 32.534314 30.532356 37 25 37C19.465466 37 15 32.534534 15 27C15 21.465466 19.465466 17 25 17 z M 20.984375 21.986328 A 1.0001 1.0001 0 0 0 20 23C20 25.324499 19.656261 25.712059 19.158203 26.488281C18.660146 27.264504 18 28.439429 18 31 A 1.0001 1.0001 0 1 0 20 31C20 28.714571 20.339854 28.350637 20.841797 27.568359C21.343739 26.786082 22 25.595501 22 23 A 1.0001 1.0001 0 0 0 20.984375 21.986328 z M 25.984375 21.986328 A 1.0001 1.0001 0 0 0 25 23C25 25.324499 24.656261 25.712059 24.158203 26.488281C23.660146 27.264504 23 28.439429 23 31 A 1.0001 1.0001 0 1 0 25 31C25 28.714571 25.339854 28.350637 25.841797 27.568359C26.343739 26.786082 27 25.595501 27 23 A 1.0001 1.0001 0 0 0 25.984375 21.986328 z M 30.984375 21.986328 A 1.0001 1.0001 0 0 0 30 23C30 25.324499 29.656261 25.712059 29.158203 26.488281C28.660146 27.264504 28 28.439429 28 31 A 1.0001 1.0001 0 1 0 30 31C30 28.714571 30.339854 28.350637 30.841797 27.568359C31.343739 26.786082 32 25.595501 32 23 A 1.0001 1.0001 0 0 0 30.984375 21.986328 z"/></svg>');
}
.icon-line-dry {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill-rule="evenodd" xmlns:xlink="http://www.w3.org/1999/xlink"><g><path fill="%23000000" d="M 18.5,7.5 C 56.2237,23.5181 95.2237,35.5181 135.5,43.5C 135.336,40.8127 135.503,38.146 136,35.5C 136.5,33.6667 137.667,32.5 139.5,32C 150.167,31.3333 160.833,31.3333 171.5,32C 173.333,32.5 174.5,33.6667 175,35.5C 175.499,40.4889 175.666,45.4889 175.5,50.5C 228.842,56.8561 282.176,56.8561 335.5,50.5C 335.334,45.4889 335.501,40.4889 336,35.5C 336.5,33.6667 337.667,32.5 339.5,32C 350.167,31.3333 360.833,31.3333 371.5,32C 373.333,32.5 374.5,33.6667 375,35.5C 375.497,38.146 375.664,40.8127 375.5,43.5C 416.135,37.2323 454.968,25.2323 492,7.5C 494.628,12.5901 497.128,17.7568 499.5,23C 460.329,41.5009 419.329,54.1676 376.5,61C 375.522,67.4102 375.189,73.9102 375.5,80.5C 392.037,82.1791 407.371,87.3457 421.5,96C 449.299,117.805 476.466,140.305 503,163.5C 503.667,166.167 503.667,168.833 503,171.5C 486.626,199.083 470.126,226.583 453.5,254C 450.298,255.483 446.964,255.817 443.5,255C 431.667,247.167 419.833,239.333 408,231.5C 407.995,321.581 407.328,411.581 406,501.5C 405.25,502.126 404.416,502.626 403.5,503C 304.833,503.667 206.167,503.667 107.5,503C 106.584,502.626 105.75,502.126 105,501.5C 103.672,411.581 103.005,321.581 103,231.5C 91.1667,239.333 79.3333,247.167 67.5,255C 64.0357,255.817 60.7024,255.483 57.5,254C 40.8742,226.583 24.3742,199.083 8,171.5C 7.07149,167.756 7.57149,164.256 9.5,161C 36.1667,139.333 62.8333,117.667 89.5,96C 103.664,87.4566 118.997,82.2899 135.5,80.5C 135.811,73.9102 135.478,67.4102 134.5,61C 92.8638,52.8423 52.5305,40.5089 13.5,24C 12.9781,23.4387 12.6448,22.772 12.5,22C 14.3772,17.0837 16.3772,12.2504 18.5,7.5 Z M 151.5,47.5 C 154.167,47.5 156.833,47.5 159.5,47.5C 159.5,68.8333 159.5,90.1667 159.5,111.5C 156.833,111.5 154.167,111.5 151.5,111.5C 151.5,90.1667 151.5,68.8333 151.5,47.5 Z M 351.5,47.5 C 354.167,47.5 356.833,47.5 359.5,47.5C 359.5,68.8333 359.5,90.1667 359.5,111.5C 356.833,111.5 354.167,111.5 351.5,111.5C 351.5,90.1667 351.5,68.8333 351.5,47.5 Z M 175.5,67.5 C 228.849,73.655 282.182,73.655 335.5,67.5C 335.5,71.5 335.5,75.5 335.5,79.5C 325.828,79.3335 316.161,79.5002 306.5,80C 272.5,90 238.5,90 204.5,80C 194.839,79.5002 185.172,79.3335 175.5,79.5C 175.5,75.5 175.5,71.5 175.5,67.5 Z M 175.5,95.5 C 180.833,95.5 186.167,95.5 191.5,95.5C 198.378,130.711 219.711,149.711 255.5,152.5C 291.289,149.711 312.622,130.711 319.5,95.5C 324.833,95.5 330.167,95.5 335.5,95.5C 335.334,104.839 335.5,114.173 336,123.5C 336.374,124.416 336.874,125.25 337.5,126C 348.736,127.622 360.069,127.955 371.5,127C 373.333,126.5 374.5,125.333 375,123.5C 375.333,114.833 375.667,106.167 376,97.5C 390.337,99.7228 403.504,104.889 415.5,113C 438.52,131.696 461.187,150.696 483.5,170C 471.092,191.482 458.425,212.816 445.5,234C 444.5,234.667 443.5,234.667 442.5,234C 429.672,225.085 416.672,216.419 403.5,208C 400.833,207.333 398.167,207.333 395.5,208C 393.667,208.5 392.5,209.667 392,211.5C 391.5,303.499 391.333,395.499 391.5,487.5C 300.833,487.5 210.167,487.5 119.5,487.5C 119.667,395.499 119.5,303.499 119,211.5C 118.5,209.667 117.333,208.5 115.5,208C 112.833,207.333 110.167,207.333 107.5,208C 94.328,216.419 81.328,225.085 68.5,234C 67.5,234.667 66.5,234.667 65.5,234C 52.5748,212.816 39.9081,191.482 27.5,170C 49.813,150.696 72.4796,131.696 95.5,113C 107.496,104.889 120.663,99.7228 135,97.5C 135.333,106.167 135.667,114.833 136,123.5C 136.5,125.333 137.667,126.5 139.5,127C 150.931,127.955 162.264,127.622 173.5,126C 174.126,125.25 174.626,124.416 175,123.5C 175.5,114.173 175.666,104.839 175.5,95.5 Z M 209.5,98.5 C 224.538,102.462 239.872,104.129 255.5,103.5C 270.967,104.17 286.133,102.504 301,98.5C 294.61,121.373 279.443,133.373 255.5,134.5C 231.687,133.355 216.353,121.355 209.5,98.5 Z"/></g></svg>');
}
.icon-ladder, .icon-ladder-left, .icon-ladder-right, .icon-ladder-left-or-right {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="%23000000" viewBox="0 0 512 512" xml:space="preserve"><g><g><path d="M406.905,0c-16.345,0-29.642,13.297-29.642,29.642v45.811H134.737V29.642C134.737,13.297,121.44,0,105.095,0C88.75,0,75.453,13.297,75.453,29.642v452.716c0,16.345,13.297,29.642,29.642,29.642c16.345,0,29.642-13.297,29.642-29.642v-45.811h242.526v45.811c0,16.345,13.297,29.642,29.642,29.642c16.345,0,29.642-13.297,29.642-29.642V29.642C436.547,13.297,423.25,0,406.905,0z M118.568,482.358c0,7.43-6.044,13.474-13.474,13.474s-13.474-6.044-13.474-13.474V29.642c0-7.43,6.044-13.474,13.474-13.474s13.474,6.044,13.474,13.474V482.358z M377.263,420.379H134.737v-26.947h242.526V420.379z M377.263,377.263H134.737v-91.621h242.526V377.263z M377.263,269.474H134.737v-26.947h242.526V269.474z M377.263,118.568H338.1c-4.465,0-8.084,3.62-8.084,8.084c0,4.465,3.62,8.084,8.084,8.084h39.163v91.621H134.737v-91.621h171.342c4.465,0,8.084-3.62,8.084-8.084c0-4.465-3.62-8.084-8.084-8.084H134.737V91.621h242.526V118.568z M420.379,482.358c0,7.43-6.044,13.474-13.474,13.474s-13.474-6.044-13.474-13.474V29.642c0-7.43,6.044-13.474,13.474-13.474s13.474,6.044,13.474,13.474V482.358z"/></g></g></svg>');
}
.icon-splits-into-two-beds {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="%23000000" viewBox="0 0 503.322 503.322" xml:space="preserve"><g transform="translate(1 1)"><g><g><path d="M476.288,208.377v-46.232c0-23.43-18.224-41.654-40.786-41.654H327.027c-23.43,0-41.654,18.224-41.654,41.654v46.232c-14.928,3.879-26.034,17.508-26.034,33.606v43.39v78.102c0,9.546,7.81,17.356,17.356,17.356h17.356c9.546,0,17.356-7.81,17.356-17.356v-17.356h138.847v17.356c0,9.546,7.81,17.356,17.356,17.356h17.356c9.546,0,17.356-7.81,17.356-17.356v-78.102v-43.39C502.322,225.885,491.216,212.256,476.288,208.377z M302.729,162.146c0-13.885,10.414-24.298,24.298-24.298h107.607c13.885,0,24.298,10.414,24.298,24.298v45.125h-9.291c-4.144-29.649-29.24-52.068-60.133-52.068h-17.356c-30.893,0-55.989,22.419-60.133,52.068h-9.291V162.146z M432.031,207.271h-102.4c4.339-19.959,21.695-34.712,42.522-34.712h17.356C410.336,172.559,427.692,187.312,432.031,207.271z M276.695,241.983c0-9.546,7.81-17.356,17.356-17.356h26.034h121.492h26.034c9.546,0,17.356,7.81,17.356,17.356v34.712H276.695V241.983z M484.966,363.475H467.61v-26.034c0-5.207-3.471-8.678-8.678-8.678H302.729c-4.339,0-8.678,3.471-8.678,8.678v26.034h-17.356v-69.424h208.271V363.475z"/><path d="M215.949,208.377v-46.232c0-23.43-18.224-41.654-40.786-41.654H66.688c-23.43,0-41.654,18.224-41.654,41.654v46.232C10.106,212.256-1,225.885-1,241.983v43.39v78.102c0,9.546,7.81,17.356,17.356,17.356h17.356c9.546,0,17.356-7.81,17.356-17.356v-17.356h138.847v17.356c0,9.546,7.81,17.356,17.356,17.356h17.356c9.546,0,17.356-7.81,17.356-17.356v-78.102v-43.39C241.983,225.885,230.877,212.256,215.949,208.377z M42.39,162.146c0-13.885,10.414-24.298,24.298-24.298h107.607c13.885,0,24.298,10.414,24.298,24.298v45.125h-9.291c-4.144-29.649-29.24-52.068-60.133-52.068h-17.356c-30.893,0-55.989,22.419-60.133,52.068H42.39V162.146z M171.692,207.271h-102.4c4.339-19.959,21.695-34.712,42.522-34.712h17.356C149.997,172.559,167.353,187.312,171.692,207.271z M16.356,241.983c0-9.546,7.81-17.356,17.356-17.356h26.034h121.492h26.034c9.546,0,17.356,7.81,17.356,17.356v34.712H16.356V241.983z M224.627,363.475h-17.356v-26.034c0-5.207-3.471-8.678-8.678-8.678H42.39c-4.339,0-8.678,3.471-8.678,8.678v26.034H16.356v-69.424h208.271V363.475z"/></g></g></g></svg>');
}
.icon-solid-slats {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="%23000000" viewBox="0 0 512 512" xml:space="preserve"><g><g><path d="M176.589,0H69.301c-4.195,0-7.595,3.401-7.595,7.595v121.339c0,0.019,0,0.037,0,0.057v375.413c0,4.195,3.401,7.595,7.595,7.595h24.645c0.003,0,0.005,0,0.008,0c0.004,0,0.007,0,0.01,0h17.921c0.009,0,0.018,0.002,0.027,0.002c0.008,0,0.016-0.002,0.024-0.002h64.651c4.195,0,7.595-3.401,7.595-7.595V7.595C184.184,3.401,180.784,0,176.589,0z M144.614,15.191c-1.254,2.705-2.992,4.227-4.164,4.227s-2.91-1.521-4.164-4.227H144.614z M87.135,496.808H76.896V175.386C106.296,290.926,90.848,461.139,87.135,496.808z M106.091,496.807h-3.678c2.044-19.808,6.803-72.032,7.337-133.217c0.906-103.949-10.15-183.411-32.853-236.262V15.191h8.438c1.694,14.07,7.347,51.949,26.093,142.258c20.167,97.154,17.254,185.689,11.258,242.852C117.569,449.094,109.402,483.949,106.091,496.807z M121.777,496.808c3.852-15.506,11.149-48.726,15.974-94.512c6.147-58.331,9.151-148.695-11.45-247.934c-18.076-87.09-23.846-124.696-25.672-139.172h19.72c2.483,11.335,10.425,19.418,20.103,19.418s17.619-8.081,20.102-19.418h8.44v18.641c-7.5,8.923-28.748,41.217-28.748,120.653s21.248,111.73,28.748,120.653v119.901c-29.92,28.719-35.558,81.953-36.617,101.77H121.777z M168.994,64.788v179.377c-6.706-17.068-13.557-45.35-13.557-89.68C155.436,110.134,162.294,81.845,168.994,64.788z M168.995,496.808h-21.375c0.942-15.651,4.886-52.179,21.375-77.863V496.808z"/></g></g><g><g><path d="M309.041,0h-42.693c-0.02,0-0.041,0-0.061,0h-64.533c-4.195,0-7.595,3.401-7.595,7.595v496.808c0,4.195,3.401,7.595,7.595,7.595h107.287c4.196,0,7.595-3.401,7.595-7.595V383.059c0-0.016,0-0.032,0-0.049V7.595C316.636,3.401,313.237,0,309.041,0z M209.348,15.191h21.375c-0.942,15.652-4.886,52.179-21.375,77.863V15.191z M209.348,267.834c6.706,17.068,13.557,45.35,13.557,89.679c0,44.351-6.858,72.639-13.557,89.696V267.834z M233.728,496.808c1.254-2.705,2.992-4.227,4.163-4.227c1.172-0.001,2.91,1.521,4.164,4.227H233.728z M257.994,496.807c-2.483-11.335-10.426-19.418-20.103-19.418c-9.677,0-17.619,8.082-20.102,19.418h-8.44v-18.641h0c7.5-8.923,28.748-41.217,28.748-120.652s-21.248-111.73-28.748-120.652V116.961c29.92-28.718,35.56-81.952,36.617-101.77h10.6c-3.852,15.506-11.149,48.726-15.975,94.512c-6.147,58.331-9.151,148.695,11.449,247.934c18.077,87.089,23.848,124.696,25.674,139.17H257.994z M301.445,496.808h-8.438v0c-1.694-14.07-7.347-51.949-26.093-142.258c-20.167-97.154-17.254-185.689-11.258-242.852c5.118-48.793,13.285-83.647,16.596-96.506h3.677c-2.044,19.809-6.803,72.032-7.337,133.217c-0.907,103.949,10.15,183.412,32.853,236.262V496.808z M301.446,336.613c-29.4-115.539-13.952-285.753-10.239-321.422h10.239V336.613z"/></g></g><g><g><path d="M442.7,0H335.413c-4.196,0-7.595,3.401-7.595,7.595v121.344c0,0.016,0,0.032,0,0.049v375.416c0,4.195,3.4,7.595,7.595,7.595h24.646c0.003,0,0.005,0,0.008,0c0.004,0,0.007,0,0.01,0h17.92c0.009,0,0.018,0.002,0.027,0.002c0.008,0,0.016-0.002,0.024-0.002H442.7c4.196,0,7.595-3.401,7.595-7.595V7.595C450.296,3.401,446.896,0,442.7,0z M410.727,15.191c-1.254,2.705-2.992,4.227-4.164,4.227c-1.173,0-2.911-1.521-4.164-4.227H410.727z M353.247,496.808h-10.239V175.386C372.409,290.926,356.961,461.139,353.247,496.808z M372.202,496.807h-3.677c2.044-19.808,6.803-72.032,7.337-133.217c0.907-103.949-10.151-183.411-32.853-236.262V15.191h8.438c1.694,14.07,7.347,51.949,26.093,142.258c20.167,97.154,17.254,185.689,11.258,242.852C383.681,449.094,375.514,483.949,372.202,496.807z M387.888,496.807c3.851-15.506,11.149-48.726,15.975-94.512c6.147-58.331,9.151-148.695-11.449-247.934C374.337,67.273,368.565,29.667,366.74,15.191h19.72c2.483,11.335,10.426,19.418,20.103,19.418s17.619-8.081,20.102-19.418h8.44v18.641c-7.5,8.923-28.748,41.217-28.748,120.653s21.248,111.73,28.748,120.652v119.901c-29.919,28.719-35.558,81.953-36.617,101.77H387.888z M435.105,64.789v179.375c-6.706-17.068-13.557-45.35-13.557-89.679C421.548,110.134,428.405,81.846,435.105,64.789z M435.106,496.808h-21.375c0.942-15.651,4.886-52.179,21.375-77.863V496.808z"/></g></g></svg>');
}*/
.pos-shift {
  transform: translate3d(0, 0, 0);
  transition: transform 400ms ease-out;
}

.pos-shift.ani-pos {
  transform: translate3d(0, 10rem, 0);
}

.custom-select {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  align-self: flex-start;
  width: auto;
  user-select: none;
  z-index: 999;
}

.active.custom-select {
  overflow: visible;
}

.custom-select select {
  position: absolute;
  left: -1000px;
  display: none;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
}

.custom-select-list {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 100%;
  left: 0;
  right: 0;
  line-height: 2rem;
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.08);
  margin-bottom: 2px;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 999;
}

.active .custom-select-list {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.custom-select-list-option {
  line-height: 2.4rem;
  padding: 0.2rem 24px;
}

.custom-select-list-option:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.custom-select-list-option:last-child {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

.custom-select-arrow {
  display: inline-block;
  margin-left: 5px;
  width: 3px;
  height: 3px;
  padding: 2px;
  border: solid black;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

/*.custom-select-arrow::before, .custom-select-arrow::after {
     content: "";
     position: absolute;
     bottom: 0px;
     width: 0.15rem;
     height: 100%;
     transition: all 0.5s;
}
 .custom-select-arrow::before {
     left: -5px;
     transform: rotate(45deg);
     background-color: #394a6d;
}
 .custom-select-arrow::after {
     left: 5px;
     transform: rotate(-45deg);
     background-color: #394a6d;
}*/
.custom-select-list-option.selected {
  color: #fff;
  background-color: #03217D;
}

.custom-select-list:hover .custom-select-list-option {
  color: inherit;
  background: inherit;
}

.custom-select-list .custom-select-list-option:hover {
  color: #fff;
  background-color: #03217D;
}

.pricing-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pricing-block-img-container {
  width: 71px;
  margin-right: 14px;
}

.pricing-block-img-container img {
  width: 100%;
  max-width: 71px;
  height: auto;
}

.pricing-block-content {
  flex: 1;
}

.pricing-block-custom > span {
  display: flex;
}

h1, .h1 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 2.9rem;
  /*color: $heading_font_color;*/
}

h2, .h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.4rem;
  /*color: $heading_font_color;*/
}

h3, .h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 2.2rem;
  /*color: $heading_font_color;*/
}

h4, .h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.9rem;
  /*color: $heading_font_color;*/
}

h5, .h5 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.65rem;
  /*color: $heading_font_color;*/
}

h6, .h6 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4rem;
  /*color: $heading_font_color;*/
}

.h1 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 2.9rem;
}

.h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.4rem;
}

.h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 2.2rem;
}

.h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.9rem;
}

.h5 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.65rem;
}

.h6 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4rem;
}

@media (min-width: 576px) {
  .h1-sm {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 2.9rem;
  }
  .h2-sm {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.4rem;
  }
  .h3-sm {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 2.2rem;
  }
  .h4-sm {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.9rem;
  }
  .h5-sm {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.65rem;
  }
  .h6-sm {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4rem;
  }
}
@media (min-width: 768px) {
  .h1-md {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 2.9rem;
  }
  .h2-md {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.4rem;
  }
  .h3-md {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 2.2rem;
  }
  .h4-md {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.9rem;
  }
  .h5-md {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.65rem;
  }
  .h6-md {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4rem;
  }
}
@media (min-width: 992px) {
  .h1-lg {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 2.9rem;
  }
  .h2-lg {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.4rem;
  }
  .h3-lg {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 2.2rem;
  }
  .h4-lg {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.9rem;
  }
  .h5-lg {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.65rem;
  }
  .h6-lg {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4rem;
  }
}
@media (min-width: 1200px) {
  .h1-xl {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 2.9rem;
  }
  .h2-xl {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.4rem;
  }
  .h3-xl {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 2.2rem;
  }
  .h4-xl {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.9rem;
  }
  .h5-xl {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.65rem;
  }
  .h6-xl {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4rem;
  }
}
.btn-xs {
  min-height: 32px;
  line-height: 28px;
  padding: 0 12px;
  font-size: 1.1rem;
}

.btn-xs .btn-icon {
  margin-top: 8px;
  margin-right: 6px;
  width: 12px;
  height: auto;
  float: left;
}

.btn-xs.btn-circle {
  width: 32px;
  height: 32px;
  padding: 0;
}

.btn-xs.btn-circle .btn-icon {
  margin-top: 8px;
  margin-right: 0;
  float: none;
}

.btn-xs.btn-rnd {
  border-radius: 16px;
}

.btn-sm {
  min-height: 40px;
  line-height: 36px;
  padding: 0 16px;
  font-size: 1.3rem;
}

.btn-sm .btn-icon {
  margin-top: 10px;
  margin-right: 8px;
  width: 16px;
  height: auto;
  float: left;
}

.btn-sm.btn-circle {
  width: 40px;
  height: 40px;
  padding: 0;
}

.btn-sm.btn-circle .btn-icon {
  margin-top: 10px;
  margin-right: 0;
  float: none;
}

.btn-sm.btn-rnd {
  border-radius: 20px;
}

.btn-md {
  min-height: 48px;
  line-height: 44px;
  padding: 0 20px;
  font-size: 1.5rem;
}

.btn-md .btn-icon {
  margin-top: 12px;
  margin-right: 10px;
  width: 20px;
  height: auto;
  float: left;
}

.btn-md.btn-circle {
  width: 48px;
  height: 48px;
  padding: 0;
}

.btn-md.btn-circle .btn-icon {
  margin-top: 12px;
  margin-right: 0;
  float: none;
}

.btn-md.btn-rnd {
  border-radius: 24px;
}

.btn-lg {
  min-height: 56px;
  line-height: 52px;
  padding: 0 24px;
  font-size: 1.8rem;
}

.btn-lg .btn-icon {
  margin-top: 14px;
  margin-right: 12px;
  width: 24px;
  height: auto;
  float: left;
}

.btn-lg.btn-circle {
  width: 56px;
  height: 56px;
  padding: 0;
}

.btn-lg.btn-circle .btn-icon {
  margin-top: 14px;
  margin-right: 0;
  float: none;
}

.btn-lg.btn-rnd {
  border-radius: 28px;
}

.btn-xl {
  min-height: 62px;
  line-height: 58px;
  padding: 0 27px;
  font-size: 1.8rem;
}

.btn-xl .btn-icon {
  margin-top: 15.5px;
  margin-right: 13.5px;
  width: 27px;
  height: auto;
  float: left;
}

.btn-xl.btn-circle {
  width: 62px;
  height: 62px;
  padding: 0;
}

.btn-xl.btn-circle .btn-icon {
  margin-top: 15.5px;
  margin-right: 0;
  float: none;
}

.btn-xl.btn-rnd {
  border-radius: 31px;
}

.p-xs {
  padding: 16px !important;
}

.pt-xs {
  padding-top: 16px !important;
}

.pr-xs {
  padding-right: 16px !important;
}

.pb-xs {
  padding-bottom: 16px !important;
}

.pl-xs {
  padding-left: 16px !important;
}

.px-xs {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.py-xs {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.m-xs {
  margin: 16px !important;
}

.mt-xs {
  margin-top: 16px !important;
}

.mr-xs {
  margin-right: 16px !important;
}

.mb-xs {
  margin-bottom: 16px !important;
}

.ml-xs {
  margin-left: 16px !important;
}

.mx-xs {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.my-xs {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.p-sm {
  padding: 20px !important;
}

.pt-sm {
  padding-top: 20px !important;
}

.pr-sm {
  padding-right: 20px !important;
}

.pb-sm {
  padding-bottom: 20px !important;
}

.pl-sm {
  padding-left: 20px !important;
}

.px-sm {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.py-sm {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.m-sm {
  margin: 20px !important;
}

.mt-sm {
  margin-top: 20px !important;
}

.mr-sm {
  margin-right: 20px !important;
}

.mb-sm {
  margin-bottom: 20px !important;
}

.ml-sm {
  margin-left: 20px !important;
}

.mx-sm {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

.my-sm {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.p-md {
  padding: 24px !important;
}

.pt-md {
  padding-top: 24px !important;
}

.pr-md {
  padding-right: 24px !important;
}

.pb-md {
  padding-bottom: 24px !important;
}

.pl-md {
  padding-left: 24px !important;
}

.px-md {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.py-md {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.m-md {
  margin: 24px !important;
}

.mt-md {
  margin-top: 24px !important;
}

.mr-md {
  margin-right: 24px !important;
}

.mb-md {
  margin-bottom: 24px !important;
}

.ml-md {
  margin-left: 24px !important;
}

.mx-md {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

.my-md {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.p-lg {
  padding: 28px !important;
}

.pt-lg {
  padding-top: 28px !important;
}

.pr-lg {
  padding-right: 28px !important;
}

.pb-lg {
  padding-bottom: 28px !important;
}

.pl-lg {
  padding-left: 28px !important;
}

.px-lg {
  padding-left: 28px !important;
  padding-right: 28px !important;
}

.py-lg {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}

.m-lg {
  margin: 28px !important;
}

.mt-lg {
  margin-top: 28px !important;
}

.mr-lg {
  margin-right: 28px !important;
}

.mb-lg {
  margin-bottom: 28px !important;
}

.ml-lg {
  margin-left: 28px !important;
}

.mx-lg {
  margin-left: 28px !important;
  margin-right: 28px !important;
}

.my-lg {
  margin-top: 28px !important;
  margin-bottom: 28px !important;
}

.p-xl {
  padding: 32px !important;
}

.pt-xl {
  padding-top: 32px !important;
}

.pr-xl {
  padding-right: 32px !important;
}

.pb-xl {
  padding-bottom: 32px !important;
}

.pl-xl {
  padding-left: 32px !important;
}

.px-xl {
  padding-left: 32px !important;
  padding-right: 32px !important;
}

.py-xl {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.m-xl {
  margin: 32px !important;
}

.mt-xl {
  margin-top: 32px !important;
}

.mr-xl {
  margin-right: 32px !important;
}

.mb-xl {
  margin-bottom: 32px !important;
}

.ml-xl {
  margin-left: 32px !important;
}

.mx-xl {
  margin-left: 32px !important;
  margin-right: 32px !important;
}

.my-xl {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.p-1 {
  padding: 1rem !important;
}

.pt-1 {
  padding-top: 1rem !important;
}

.pr-1 {
  padding-right: 1rem !important;
}

.pb-1 {
  padding-bottom: 1rem !important;
}

.pl-1 {
  padding-left: 1rem !important;
}

.px-1 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-1 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.m-1 {
  margin: 1rem !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mr-1 {
  margin-right: 1rem !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.ml-1 {
  margin-left: 1rem !important;
}

.mx-1 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-1 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.p-2 {
  padding: 2rem !important;
}

.pt-2 {
  padding-top: 2rem !important;
}

.pr-2 {
  padding-right: 2rem !important;
}

.pb-2 {
  padding-bottom: 2rem !important;
}

.pl-2 {
  padding-left: 2rem !important;
}

.px-2 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.py-2 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.m-2 {
  margin: 2rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mr-2 {
  margin-right: 2rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.ml-2 {
  margin-left: 2rem !important;
}

.mx-2 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.my-2 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.p-3 {
  padding: 3rem !important;
}

.pt-3 {
  padding-top: 3rem !important;
}

.pr-3 {
  padding-right: 3rem !important;
}

.pb-3 {
  padding-bottom: 3rem !important;
}

.pl-3 {
  padding-left: 3rem !important;
}

.px-3 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-3 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.m-3 {
  margin: 3rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mr-3 {
  margin-right: 3rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.ml-3 {
  margin-left: 3rem !important;
}

.mx-3 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-3 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.p-4 {
  padding: 4rem !important;
}

.pt-4 {
  padding-top: 4rem !important;
}

.pr-4 {
  padding-right: 4rem !important;
}

.pb-4 {
  padding-bottom: 4rem !important;
}

.pl-4 {
  padding-left: 4rem !important;
}

.px-4 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.py-4 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.m-4 {
  margin: 4rem !important;
}

.mt-4 {
  margin-top: 4rem !important;
}

.mr-4 {
  margin-right: 4rem !important;
}

.mb-4 {
  margin-bottom: 4rem !important;
}

.ml-4 {
  margin-left: 4rem !important;
}

.mx-4 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.my-4 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.p-5 {
  padding: 5rem !important;
}

.pt-5 {
  padding-top: 5rem !important;
}

.pr-5 {
  padding-right: 5rem !important;
}

.pb-5 {
  padding-bottom: 5rem !important;
}

.pl-5 {
  padding-left: 5rem !important;
}

.px-5 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.py-5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.m-5 {
  margin: 5rem !important;
}

.mt-5 {
  margin-top: 5rem !important;
}

.mr-5 {
  margin-right: 5rem !important;
}

.mb-5 {
  margin-bottom: 5rem !important;
}

.ml-5 {
  margin-left: 5rem !important;
}

.mx-5 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

.my-5 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.p-gut {
  padding: 24px !important;
}

.pt-gut {
  padding-top: 24px !important;
}

.pr-gut {
  padding-right: 24px !important;
}

.pb-gut {
  padding-bottom: 24px !important;
}

.pl-gut {
  padding-left: 24px !important;
}

.px-gut {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.py-gut {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.m-gut {
  margin: 24px !important;
}

.mt-gut {
  margin-top: 24px !important;
}

.mr-gut {
  margin-right: 24px !important;
}

.mb-gut {
  margin-bottom: 24px !important;
}

.ml-gut {
  margin-left: 24px !important;
}

.mx-gut {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

.my-gut {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.p-gutpad {
  padding: 12px !important;
}

.pt-gutpad {
  padding-top: 12px !important;
}

.pr-gutpad {
  padding-right: 12px !important;
}

.pb-gutpad {
  padding-bottom: 12px !important;
}

.pl-gutpad {
  padding-left: 12px !important;
}

.px-gutpad {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.py-gutpad {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.m-gutpad {
  margin: 12px !important;
}

.mt-gutpad {
  margin-top: 12px !important;
}

.mr-gutpad {
  margin-right: 12px !important;
}

.mb-gutpad {
  margin-bottom: 12px !important;
}

.ml-gutpad {
  margin-left: 12px !important;
}

.mx-gutpad {
  margin-left: 12px !important;
  margin-right: 12px !important;
}

.my-gutpad {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

@media (max-width: 991px) {
  .btn-xs {
    min-height: 30px;
    line-height: 26px;
    padding: 0 11px;
    font-size: 1rem;
  }
  .btn-xs .btn-icon {
    margin-top: 7.5px;
    margin-right: 5.5px;
    width: 11px;
    height: auto;
    float: left;
  }
  .btn-xs.btn-circle {
    width: 30px;
    height: 30px;
    padding: 0;
  }
  .btn-xs.btn-circle .btn-icon {
    margin-top: 7.5px;
    margin-right: 0;
    float: none;
  }
  .btn-xs.btn-rnd {
    border-radius: 15px;
  }
  .btn-sm {
    min-height: 38px;
    line-height: 34px;
    padding: 0 15px;
    font-size: 1.2rem;
  }
  .btn-sm .btn-icon {
    margin-top: 9.5px;
    margin-right: 7.5px;
    width: 15px;
    height: auto;
    float: left;
  }
  .btn-sm.btn-circle {
    width: 38px;
    height: 38px;
    padding: 0;
  }
  .btn-sm.btn-circle .btn-icon {
    margin-top: 9.5px;
    margin-right: 0;
    float: none;
  }
  .btn-sm.btn-rnd {
    border-radius: 19px;
  }
  .btn-md {
    min-height: 46px;
    line-height: 42px;
    padding: 0 19px;
    font-size: 1.3rem;
  }
  .btn-md .btn-icon {
    margin-top: 11.5px;
    margin-right: 9.5px;
    width: 19px;
    height: auto;
    float: left;
  }
  .btn-md.btn-circle {
    width: 46px;
    height: 46px;
    padding: 0;
  }
  .btn-md.btn-circle .btn-icon {
    margin-top: 11.5px;
    margin-right: 0;
    float: none;
  }
  .btn-md.btn-rnd {
    border-radius: 23px;
  }
  .btn-lg {
    min-height: 54px;
    line-height: 50px;
    padding: 0 23px;
    font-size: 1.5rem;
  }
  .btn-lg .btn-icon {
    margin-top: 13.5px;
    margin-right: 11.5px;
    width: 23px;
    height: auto;
    float: left;
  }
  .btn-lg.btn-circle {
    width: 54px;
    height: 54px;
    padding: 0;
  }
  .btn-lg.btn-circle .btn-icon {
    margin-top: 13.5px;
    margin-right: 0;
    float: none;
  }
  .btn-lg.btn-rnd {
    border-radius: 27px;
  }
  .btn-xl {
    min-height: 60px;
    line-height: 56px;
    padding: 0 26px;
    font-size: 1.5rem;
  }
  .btn-xl .btn-icon {
    margin-top: 15px;
    margin-right: 13px;
    width: 26px;
    height: auto;
    float: left;
  }
  .btn-xl.btn-circle {
    width: 60px;
    height: 60px;
    padding: 0;
  }
  .btn-xl.btn-circle .btn-icon {
    margin-top: 15px;
    margin-right: 0;
    float: none;
  }
  .btn-xl.btn-rnd {
    border-radius: 30px;
  }
  h1, .h1 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 2.7rem;
    /*color: $heading_font_color;*/
  }
  h2, .h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2.2rem;
    /*color: $heading_font_color;*/
  }
  h3, .h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.95rem;
    /*color: $heading_font_color;*/
  }
  h4, .h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.7rem;
    /*color: $heading_font_color;*/
  }
  h5, .h5 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.45rem;
    /*color: $heading_font_color;*/
  }
  h6, .h6 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2rem;
    /*color: $heading_font_color;*/
  }
  .h1 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 2.7rem;
  }
  .h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2.2rem;
  }
  .h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.95rem;
  }
  .h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.7rem;
  }
  .h5 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.45rem;
  }
  .h6 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2rem;
  }
}
@media (max-width: 991px) and (min-width: 576px) {
  .h1-sm {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 2.7rem;
  }
  .h2-sm {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2.2rem;
  }
  .h3-sm {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.95rem;
  }
  .h4-sm {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.7rem;
  }
  .h5-sm {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.45rem;
  }
  .h6-sm {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .h1-md {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 2.7rem;
  }
  .h2-md {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2.2rem;
  }
  .h3-md {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.95rem;
  }
  .h4-md {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.7rem;
  }
  .h5-md {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.45rem;
  }
  .h6-md {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2rem;
  }
}
@media (max-width: 991px) and (min-width: 992px) {
  .h1-lg {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 2.7rem;
  }
  .h2-lg {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2.2rem;
  }
  .h3-lg {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.95rem;
  }
  .h4-lg {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.7rem;
  }
  .h5-lg {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.45rem;
  }
  .h6-lg {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2rem;
  }
}
@media (max-width: 991px) and (min-width: 1200px) {
  .h1-xl {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 2.7rem;
  }
  .h2-xl {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2.2rem;
  }
  .h3-xl {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.95rem;
  }
  .h4-xl {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.7rem;
  }
  .h5-xl {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.45rem;
  }
  .h6-xl {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2rem;
  }
}
@media (max-width: 991px) {
  .p-xs {
    padding: 14px !important;
  }
  .pt-xs {
    padding-top: 14px !important;
  }
  .pr-xs {
    padding-right: 14px !important;
  }
  .pb-xs {
    padding-bottom: 14px !important;
  }
  .pl-xs {
    padding-left: 14px !important;
  }
  .px-xs {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
  .py-xs {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }
  .m-xs {
    margin: 14px !important;
  }
  .mt-xs {
    margin-top: 14px !important;
  }
  .mr-xs {
    margin-right: 14px !important;
  }
  .mb-xs {
    margin-bottom: 14px !important;
  }
  .ml-xs {
    margin-left: 14px !important;
  }
  .mx-xs {
    margin-left: 14px !important;
    margin-right: 14px !important;
  }
  .my-xs {
    margin-top: 14px !important;
    margin-bottom: 14px !important;
  }
  .p-sm {
    padding: 18px !important;
  }
  .pt-sm {
    padding-top: 18px !important;
  }
  .pr-sm {
    padding-right: 18px !important;
  }
  .pb-sm {
    padding-bottom: 18px !important;
  }
  .pl-sm {
    padding-left: 18px !important;
  }
  .px-sm {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  .py-sm {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }
  .m-sm {
    margin: 18px !important;
  }
  .mt-sm {
    margin-top: 18px !important;
  }
  .mr-sm {
    margin-right: 18px !important;
  }
  .mb-sm {
    margin-bottom: 18px !important;
  }
  .ml-sm {
    margin-left: 18px !important;
  }
  .mx-sm {
    margin-left: 18px !important;
    margin-right: 18px !important;
  }
  .my-sm {
    margin-top: 18px !important;
    margin-bottom: 18px !important;
  }
  .p-md {
    padding: 22px !important;
  }
  .pt-md {
    padding-top: 22px !important;
  }
  .pr-md {
    padding-right: 22px !important;
  }
  .pb-md {
    padding-bottom: 22px !important;
  }
  .pl-md {
    padding-left: 22px !important;
  }
  .px-md {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
  .py-md {
    padding-top: 22px !important;
    padding-bottom: 22px !important;
  }
  .m-md {
    margin: 22px !important;
  }
  .mt-md {
    margin-top: 22px !important;
  }
  .mr-md {
    margin-right: 22px !important;
  }
  .mb-md {
    margin-bottom: 22px !important;
  }
  .ml-md {
    margin-left: 22px !important;
  }
  .mx-md {
    margin-left: 22px !important;
    margin-right: 22px !important;
  }
  .my-md {
    margin-top: 22px !important;
    margin-bottom: 22px !important;
  }
  .p-lg {
    padding: 26px !important;
  }
  .pt-lg {
    padding-top: 26px !important;
  }
  .pr-lg {
    padding-right: 26px !important;
  }
  .pb-lg {
    padding-bottom: 26px !important;
  }
  .pl-lg {
    padding-left: 26px !important;
  }
  .px-lg {
    padding-left: 26px !important;
    padding-right: 26px !important;
  }
  .py-lg {
    padding-top: 26px !important;
    padding-bottom: 26px !important;
  }
  .m-lg {
    margin: 26px !important;
  }
  .mt-lg {
    margin-top: 26px !important;
  }
  .mr-lg {
    margin-right: 26px !important;
  }
  .mb-lg {
    margin-bottom: 26px !important;
  }
  .ml-lg {
    margin-left: 26px !important;
  }
  .mx-lg {
    margin-left: 26px !important;
    margin-right: 26px !important;
  }
  .my-lg {
    margin-top: 26px !important;
    margin-bottom: 26px !important;
  }
  .p-xl {
    padding: 30px !important;
  }
  .pt-xl {
    padding-top: 30px !important;
  }
  .pr-xl {
    padding-right: 30px !important;
  }
  .pb-xl {
    padding-bottom: 30px !important;
  }
  .pl-xl {
    padding-left: 30px !important;
  }
  .px-xl {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .py-xl {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .m-xl {
    margin: 30px !important;
  }
  .mt-xl {
    margin-top: 30px !important;
  }
  .mr-xl {
    margin-right: 30px !important;
  }
  .mb-xl {
    margin-bottom: 30px !important;
  }
  .ml-xl {
    margin-left: 30px !important;
  }
  .mx-xl {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .my-xl {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .p-gut {
    padding: 22px !important;
  }
  .pt-gut {
    padding-top: 22px !important;
  }
  .pr-gut {
    padding-right: 22px !important;
  }
  .pb-gut {
    padding-bottom: 22px !important;
  }
  .pl-gut {
    padding-left: 22px !important;
  }
  .px-gut {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
  .py-gut {
    padding-top: 22px !important;
    padding-bottom: 22px !important;
  }
  .m-gut {
    margin: 22px !important;
  }
  .mt-gut {
    margin-top: 22px !important;
  }
  .mr-gut {
    margin-right: 22px !important;
  }
  .mb-gut {
    margin-bottom: 22px !important;
  }
  .ml-gut {
    margin-left: 22px !important;
  }
  .mx-gut {
    margin-left: 22px !important;
    margin-right: 22px !important;
  }
  .my-gut {
    margin-top: 22px !important;
    margin-bottom: 22px !important;
  }
  .p-gutpad {
    padding: 11px !important;
  }
  .pt-gutpad {
    padding-top: 11px !important;
  }
  .pr-gutpad {
    padding-right: 11px !important;
  }
  .pb-gutpad {
    padding-bottom: 11px !important;
  }
  .pl-gutpad {
    padding-left: 11px !important;
  }
  .px-gutpad {
    padding-left: 11px !important;
    padding-right: 11px !important;
  }
  .py-gutpad {
    padding-top: 11px !important;
    padding-bottom: 11px !important;
  }
  .m-gutpad {
    margin: 11px !important;
  }
  .mt-gutpad {
    margin-top: 11px !important;
  }
  .mr-gutpad {
    margin-right: 11px !important;
  }
  .mb-gutpad {
    margin-bottom: 11px !important;
  }
  .ml-gutpad {
    margin-left: 11px !important;
  }
  .mx-gutpad {
    margin-left: 11px !important;
    margin-right: 11px !important;
  }
  .my-gutpad {
    margin-top: 11px !important;
    margin-bottom: 11px !important;
  }
}
@media (max-width: 575px) {
  .btn-sm-xs {
    min-height: 32px;
    line-height: 28px;
    padding: 0 12px;
    font-size: 1.1rem;
  }
  .btn-sm-xs .btn-icon {
    margin-top: 8px;
    margin-right: 6px;
    width: 12px;
    height: auto;
    float: left;
  }
  .btn-sm-xs.btn-circle {
    width: 32px;
    height: 32px;
    padding: 0;
  }
  .btn-sm-xs.btn-circle .btn-icon {
    margin-top: 8px;
    margin-right: 0;
    float: none;
  }
  .btn-sm-xs.btn-rnd {
    border-radius: 16px;
  }
  .btn-sm-sm {
    min-height: 40px;
    line-height: 36px;
    padding: 0 16px;
    font-size: 1.3rem;
  }
  .btn-sm-sm .btn-icon {
    margin-top: 10px;
    margin-right: 8px;
    width: 16px;
    height: auto;
    float: left;
  }
  .btn-sm-sm.btn-circle {
    width: 40px;
    height: 40px;
    padding: 0;
  }
  .btn-sm-sm.btn-circle .btn-icon {
    margin-top: 10px;
    margin-right: 0;
    float: none;
  }
  .btn-sm-sm.btn-rnd {
    border-radius: 20px;
  }
  .btn-sm-md {
    min-height: 48px;
    line-height: 44px;
    padding: 0 20px;
    font-size: 1.5rem;
  }
  .btn-sm-md .btn-icon {
    margin-top: 12px;
    margin-right: 10px;
    width: 20px;
    height: auto;
    float: left;
  }
  .btn-sm-md.btn-circle {
    width: 48px;
    height: 48px;
    padding: 0;
  }
  .btn-sm-md.btn-circle .btn-icon {
    margin-top: 12px;
    margin-right: 0;
    float: none;
  }
  .btn-sm-md.btn-rnd {
    border-radius: 24px;
  }
  .btn-sm-lg {
    min-height: 56px;
    line-height: 52px;
    padding: 0 24px;
    font-size: 1.8rem;
  }
  .btn-sm-lg .btn-icon {
    margin-top: 14px;
    margin-right: 12px;
    width: 24px;
    height: auto;
    float: left;
  }
  .btn-sm-lg.btn-circle {
    width: 56px;
    height: 56px;
    padding: 0;
  }
  .btn-sm-lg.btn-circle .btn-icon {
    margin-top: 14px;
    margin-right: 0;
    float: none;
  }
  .btn-sm-lg.btn-rnd {
    border-radius: 28px;
  }
  .btn-sm-xl {
    min-height: 62px;
    line-height: 58px;
    padding: 0 27px;
    font-size: 1.8rem;
  }
  .btn-sm-xl .btn-icon {
    margin-top: 15.5px;
    margin-right: 13.5px;
    width: 27px;
    height: auto;
    float: left;
  }
  .btn-sm-xl.btn-circle {
    width: 62px;
    height: 62px;
    padding: 0;
  }
  .btn-sm-xl.btn-circle .btn-icon {
    margin-top: 15.5px;
    margin-right: 0;
    float: none;
  }
  .btn-sm-xl.btn-rnd {
    border-radius: 31px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .btn-md-xs {
    min-height: 32px;
    line-height: 28px;
    padding: 0 12px;
    font-size: 1.1rem;
  }
  .btn-md-xs .btn-icon {
    margin-top: 8px;
    margin-right: 6px;
    width: 12px;
    height: auto;
    float: left;
  }
  .btn-md-xs.btn-circle {
    width: 32px;
    height: 32px;
    padding: 0;
  }
  .btn-md-xs.btn-circle .btn-icon {
    margin-top: 8px;
    margin-right: 0;
    float: none;
  }
  .btn-md-xs.btn-rnd {
    border-radius: 16px;
  }
  .btn-md-sm {
    min-height: 40px;
    line-height: 36px;
    padding: 0 16px;
    font-size: 1.3rem;
  }
  .btn-md-sm .btn-icon {
    margin-top: 10px;
    margin-right: 8px;
    width: 16px;
    height: auto;
    float: left;
  }
  .btn-md-sm.btn-circle {
    width: 40px;
    height: 40px;
    padding: 0;
  }
  .btn-md-sm.btn-circle .btn-icon {
    margin-top: 10px;
    margin-right: 0;
    float: none;
  }
  .btn-md-sm.btn-rnd {
    border-radius: 20px;
  }
  .btn-md-md {
    min-height: 48px;
    line-height: 44px;
    padding: 0 20px;
    font-size: 1.5rem;
  }
  .btn-md-md .btn-icon {
    margin-top: 12px;
    margin-right: 10px;
    width: 20px;
    height: auto;
    float: left;
  }
  .btn-md-md.btn-circle {
    width: 48px;
    height: 48px;
    padding: 0;
  }
  .btn-md-md.btn-circle .btn-icon {
    margin-top: 12px;
    margin-right: 0;
    float: none;
  }
  .btn-md-md.btn-rnd {
    border-radius: 24px;
  }
  .btn-md-lg {
    min-height: 56px;
    line-height: 52px;
    padding: 0 24px;
    font-size: 1.8rem;
  }
  .btn-md-lg .btn-icon {
    margin-top: 14px;
    margin-right: 12px;
    width: 24px;
    height: auto;
    float: left;
  }
  .btn-md-lg.btn-circle {
    width: 56px;
    height: 56px;
    padding: 0;
  }
  .btn-md-lg.btn-circle .btn-icon {
    margin-top: 14px;
    margin-right: 0;
    float: none;
  }
  .btn-md-lg.btn-rnd {
    border-radius: 28px;
  }
  .btn-md-xl {
    min-height: 62px;
    line-height: 58px;
    padding: 0 27px;
    font-size: 1.8rem;
  }
  .btn-md-xl .btn-icon {
    margin-top: 15.5px;
    margin-right: 13.5px;
    width: 27px;
    height: auto;
    float: left;
  }
  .btn-md-xl.btn-circle {
    width: 62px;
    height: 62px;
    padding: 0;
  }
  .btn-md-xl.btn-circle .btn-icon {
    margin-top: 15.5px;
    margin-right: 0;
    float: none;
  }
  .btn-md-xl.btn-rnd {
    border-radius: 31px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .btn-lg-xs {
    min-height: 30px;
    line-height: 26px;
    padding: 0 11px;
    font-size: 1rem;
  }
  .btn-lg-xs .btn-icon {
    margin-top: 7.5px;
    margin-right: 5.5px;
    width: 11px;
    height: auto;
    float: left;
  }
  .btn-lg-xs.btn-circle {
    width: 30px;
    height: 30px;
    padding: 0;
  }
  .btn-lg-xs.btn-circle .btn-icon {
    margin-top: 7.5px;
    margin-right: 0;
    float: none;
  }
  .btn-lg-xs.btn-rnd {
    border-radius: 15px;
  }
  .btn-lg-sm {
    min-height: 38px;
    line-height: 34px;
    padding: 0 15px;
    font-size: 1.2rem;
  }
  .btn-lg-sm .btn-icon {
    margin-top: 9.5px;
    margin-right: 7.5px;
    width: 15px;
    height: auto;
    float: left;
  }
  .btn-lg-sm.btn-circle {
    width: 38px;
    height: 38px;
    padding: 0;
  }
  .btn-lg-sm.btn-circle .btn-icon {
    margin-top: 9.5px;
    margin-right: 0;
    float: none;
  }
  .btn-lg-sm.btn-rnd {
    border-radius: 19px;
  }
  .btn-lg-md {
    min-height: 46px;
    line-height: 42px;
    padding: 0 19px;
    font-size: 1.3rem;
  }
  .btn-lg-md .btn-icon {
    margin-top: 11.5px;
    margin-right: 9.5px;
    width: 19px;
    height: auto;
    float: left;
  }
  .btn-lg-md.btn-circle {
    width: 46px;
    height: 46px;
    padding: 0;
  }
  .btn-lg-md.btn-circle .btn-icon {
    margin-top: 11.5px;
    margin-right: 0;
    float: none;
  }
  .btn-lg-md.btn-rnd {
    border-radius: 23px;
  }
  .btn-lg-lg {
    min-height: 54px;
    line-height: 50px;
    padding: 0 23px;
    font-size: 1.5rem;
  }
  .btn-lg-lg .btn-icon {
    margin-top: 13.5px;
    margin-right: 11.5px;
    width: 23px;
    height: auto;
    float: left;
  }
  .btn-lg-lg.btn-circle {
    width: 54px;
    height: 54px;
    padding: 0;
  }
  .btn-lg-lg.btn-circle .btn-icon {
    margin-top: 13.5px;
    margin-right: 0;
    float: none;
  }
  .btn-lg-lg.btn-rnd {
    border-radius: 27px;
  }
  .btn-lg-xl {
    min-height: 60px;
    line-height: 56px;
    padding: 0 26px;
    font-size: 1.5rem;
  }
  .btn-lg-xl .btn-icon {
    margin-top: 15px;
    margin-right: 13px;
    width: 26px;
    height: auto;
    float: left;
  }
  .btn-lg-xl.btn-circle {
    width: 60px;
    height: 60px;
    padding: 0;
  }
  .btn-lg-xl.btn-circle .btn-icon {
    margin-top: 15px;
    margin-right: 0;
    float: none;
  }
  .btn-lg-xl.btn-rnd {
    border-radius: 30px;
  }
}
@media (min-width: 1200px) and (max-width: -1px) {
  .btn-xl-xs {
    min-height: 30px;
    line-height: 26px;
    padding: 0 11px;
    font-size: 1rem;
  }
  .btn-xl-xs .btn-icon {
    margin-top: 7.5px;
    margin-right: 5.5px;
    width: 11px;
    height: auto;
    float: left;
  }
  .btn-xl-xs.btn-circle {
    width: 30px;
    height: 30px;
    padding: 0;
  }
  .btn-xl-xs.btn-circle .btn-icon {
    margin-top: 7.5px;
    margin-right: 0;
    float: none;
  }
  .btn-xl-xs.btn-rnd {
    border-radius: 15px;
  }
  .btn-xl-sm {
    min-height: 38px;
    line-height: 34px;
    padding: 0 15px;
    font-size: 1.2rem;
  }
  .btn-xl-sm .btn-icon {
    margin-top: 9.5px;
    margin-right: 7.5px;
    width: 15px;
    height: auto;
    float: left;
  }
  .btn-xl-sm.btn-circle {
    width: 38px;
    height: 38px;
    padding: 0;
  }
  .btn-xl-sm.btn-circle .btn-icon {
    margin-top: 9.5px;
    margin-right: 0;
    float: none;
  }
  .btn-xl-sm.btn-rnd {
    border-radius: 19px;
  }
  .btn-xl-md {
    min-height: 46px;
    line-height: 42px;
    padding: 0 19px;
    font-size: 1.3rem;
  }
  .btn-xl-md .btn-icon {
    margin-top: 11.5px;
    margin-right: 9.5px;
    width: 19px;
    height: auto;
    float: left;
  }
  .btn-xl-md.btn-circle {
    width: 46px;
    height: 46px;
    padding: 0;
  }
  .btn-xl-md.btn-circle .btn-icon {
    margin-top: 11.5px;
    margin-right: 0;
    float: none;
  }
  .btn-xl-md.btn-rnd {
    border-radius: 23px;
  }
  .btn-xl-lg {
    min-height: 54px;
    line-height: 50px;
    padding: 0 23px;
    font-size: 1.5rem;
  }
  .btn-xl-lg .btn-icon {
    margin-top: 13.5px;
    margin-right: 11.5px;
    width: 23px;
    height: auto;
    float: left;
  }
  .btn-xl-lg.btn-circle {
    width: 54px;
    height: 54px;
    padding: 0;
  }
  .btn-xl-lg.btn-circle .btn-icon {
    margin-top: 13.5px;
    margin-right: 0;
    float: none;
  }
  .btn-xl-lg.btn-rnd {
    border-radius: 27px;
  }
  .btn-xl-xl {
    min-height: 60px;
    line-height: 56px;
    padding: 0 26px;
    font-size: 1.5rem;
  }
  .btn-xl-xl .btn-icon {
    margin-top: 15px;
    margin-right: 13px;
    width: 26px;
    height: auto;
    float: left;
  }
  .btn-xl-xl.btn-circle {
    width: 60px;
    height: 60px;
    padding: 0;
  }
  .btn-xl-xl.btn-circle .btn-icon {
    margin-top: 15px;
    margin-right: 0;
    float: none;
  }
  .btn-xl-xl.btn-rnd {
    border-radius: 30px;
  }
}
@media (min-width: ) {
  .btn-xxl-xs {
    min-height: 30px;
    line-height: 26px;
    padding: 0 11px;
    font-size: 1rem;
  }
  .btn-xxl-xs .btn-icon {
    margin-top: 7.5px;
    margin-right: 5.5px;
    width: 11px;
    height: auto;
    float: left;
  }
  .btn-xxl-xs.btn-circle {
    width: 30px;
    height: 30px;
    padding: 0;
  }
  .btn-xxl-xs.btn-circle .btn-icon {
    margin-top: 7.5px;
    margin-right: 0;
    float: none;
  }
  .btn-xxl-xs.btn-rnd {
    border-radius: 15px;
  }
  .btn-xxl-sm {
    min-height: 38px;
    line-height: 34px;
    padding: 0 15px;
    font-size: 1.2rem;
  }
  .btn-xxl-sm .btn-icon {
    margin-top: 9.5px;
    margin-right: 7.5px;
    width: 15px;
    height: auto;
    float: left;
  }
  .btn-xxl-sm.btn-circle {
    width: 38px;
    height: 38px;
    padding: 0;
  }
  .btn-xxl-sm.btn-circle .btn-icon {
    margin-top: 9.5px;
    margin-right: 0;
    float: none;
  }
  .btn-xxl-sm.btn-rnd {
    border-radius: 19px;
  }
  .btn-xxl-md {
    min-height: 46px;
    line-height: 42px;
    padding: 0 19px;
    font-size: 1.3rem;
  }
  .btn-xxl-md .btn-icon {
    margin-top: 11.5px;
    margin-right: 9.5px;
    width: 19px;
    height: auto;
    float: left;
  }
  .btn-xxl-md.btn-circle {
    width: 46px;
    height: 46px;
    padding: 0;
  }
  .btn-xxl-md.btn-circle .btn-icon {
    margin-top: 11.5px;
    margin-right: 0;
    float: none;
  }
  .btn-xxl-md.btn-rnd {
    border-radius: 23px;
  }
  .btn-xxl-lg {
    min-height: 54px;
    line-height: 50px;
    padding: 0 23px;
    font-size: 1.5rem;
  }
  .btn-xxl-lg .btn-icon {
    margin-top: 13.5px;
    margin-right: 11.5px;
    width: 23px;
    height: auto;
    float: left;
  }
  .btn-xxl-lg.btn-circle {
    width: 54px;
    height: 54px;
    padding: 0;
  }
  .btn-xxl-lg.btn-circle .btn-icon {
    margin-top: 13.5px;
    margin-right: 0;
    float: none;
  }
  .btn-xxl-lg.btn-rnd {
    border-radius: 27px;
  }
  .btn-xxl-xl {
    min-height: 60px;
    line-height: 56px;
    padding: 0 26px;
    font-size: 1.5rem;
  }
  .btn-xxl-xl .btn-icon {
    margin-top: 15px;
    margin-right: 13px;
    width: 26px;
    height: auto;
    float: left;
  }
  .btn-xxl-xl.btn-circle {
    width: 60px;
    height: 60px;
    padding: 0;
  }
  .btn-xxl-xl.btn-circle .btn-icon {
    margin-top: 15px;
    margin-right: 0;
    float: none;
  }
  .btn-xxl-xl.btn-rnd {
    border-radius: 30px;
  }
}
.clr-primary {
  color: #03217D !important;
}

.clr-secondary {
  color: #03217d !important;
}

.clr-tertiary {
  color: #40579a !important;
}

.clr-accent {
  color: #C994DD !important;
}

.clr-offset {
  color: #f4f5f9 !important;
}

.clr-success {
  color: #51b17d !important;
}

.clr-warning {
  color: #ffcf57 !important;
}

.clr-danger {
  color: #f74133 !important;
}

.clr-info {
  color: #0dcaf0 !important;
}

.clr-saving {
  color: #b70d00 !important;
}

.clr-indigo {
  color: #6610f2 !important;
}

.clr-teal {
  color: #20c997 !important;
}

.clr-cyan {
  color: #0dcaf0 !important;
}

.clr-light {
  color: #f8f9fa !important;
}

.clr-dark {
  color: #1a1c1e !important;
}

.clr-cream {
  color: #dbd7d1 !important;
}

.clr-blue {
  color: #193b51 !important;
}

.clr-grey {
  color: #6c757d !important;
}

.clr-dark-grey {
  color: #444 !important;
}

.clr-black {
  color: #000 !important;
}

.clr-white {
  color: #fff !important;
}

.clr-green {
  color: #198754 !important;
}

.clr-pink {
  color: #d63384 !important;
}

.clr-yellow {
  color: #ffcf57 !important;
}

.clr-purple {
  color: #6f42c1 !important;
}

.clr-red {
  color: #dc3545 !important;
}

.clr-brown {
  color: #6c4f46 !important;
}

.clr-bronze {
  color: #926d62 !important;
}

.clr-silver {
  color: #efefef !important;
}

.clr-orange {
  color: #fd7e14 !important;
}

.clr-natural {
  color: #d6d4cb !important;
}

.clr-clearance {
  color: #f3bb44 !important;
}

.clr-light-grey {
  color: #f4f5f9 !important;
}

.clr-softer {
  color: #fff !important;
}

.clr-medium {
  color: #0dcaf0 !important;
}

.clr-med-firm {
  color: #51b17d !important;
}

.clr-firm {
  color: #ffcf57 !important;
}

.clr-extra-firm {
  color: #f74133 !important;
}

.btn-primary, .thm-primary {
  color: #fff;
  border-color: #03217D;
  background: #03217D;
}

.btn-bord-primary {
  border-color: #03217D !important;
}

.btn-hov-primary:hover {
  color: #fff !important;
  border-color: #03217D !important;
  background: #03217D !important;
}

.txt-primary {
  color: #03217D !important;
}

.btn-secondary, .thm-secondary {
  color: #fff;
  border-color: #03217d;
  background: #03217d;
}

.btn-bord-secondary {
  border-color: #03217d !important;
}

.btn-hov-secondary:hover {
  color: #fff !important;
  border-color: #03217d !important;
  background: #03217d !important;
}

.txt-secondary {
  color: #03217d !important;
}

.btn-bord-tertiary {
  border-color: !important;
}

.btn-hov-tertiary:hover {
  color: !important;
  border-color: !important;
  background: !important;
}

.txt-tertiary {
  color: !important;
}

.btn-accent, .thm-accent {
  color: #141933;
  border-color: #C994DD;
  background: #C994DD;
}

.btn-bord-accent {
  border-color: #C994DD !important;
}

.btn-hov-accent:hover {
  color: #141933 !important;
  border-color: #C994DD !important;
  background: #C994DD !important;
}

.txt-accent {
  color: #C994DD !important;
}

.btn-offset, .thm-offset {
  color: #333;
  border-color: #f4f5f9;
  background: #f4f5f9;
}

.btn-bord-offset {
  border-color: #f4f5f9 !important;
}

.btn-hov-offset:hover {
  color: #333 !important;
  border-color: #f4f5f9 !important;
  background: #f4f5f9 !important;
}

.txt-offset {
  color: #f4f5f9 !important;
}

.btn-success, .thm-success {
  color: #fff;
  border-color: #51b17d;
  background: #51b17d;
}

.btn-bord-success {
  border-color: #51b17d !important;
}

.btn-hov-success:hover {
  color: #fff !important;
  border-color: #51b17d !important;
  background: #51b17d !important;
}

.txt-success {
  color: #51b17d !important;
}

.btn-warning, .thm-warning {
  color: #fff;
  border-color: #ffcf57;
  background: #ffcf57;
}

.btn-bord-warning {
  border-color: #ffcf57 !important;
}

.btn-hov-warning:hover {
  color: #fff !important;
  border-color: #ffcf57 !important;
  background: #ffcf57 !important;
}

.txt-warning {
  color: #ffcf57 !important;
}

.btn-danger, .thm-danger {
  color: #fff;
  border-color: #f74133;
  background: #f74133;
}

.btn-bord-danger {
  border-color: #f74133 !important;
}

.btn-hov-danger:hover {
  color: #fff !important;
  border-color: #f74133 !important;
  background: #f74133 !important;
}

.txt-danger {
  color: #f74133 !important;
}

.btn-info, .thm-info {
  border-color: #0dcaf0;
  background: #0dcaf0;
}

.btn-bord-info {
  border-color: #0dcaf0 !important;
}

.btn-hov-info:hover {
  color: !important;
  border-color: #0dcaf0 !important;
  background: #0dcaf0 !important;
}

.txt-info {
  color: #0dcaf0 !important;
}

.btn-white, .thm-white {
  color: #000;
  border-color: #fff;
  background: #fff;
}

.btn-bord-white {
  border-color: #fff !important;
}

.btn-hov-white:hover {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
}

.txt-white {
  color: #fff !important;
}

.btn-dark, .thm-dark {
  color: #fff;
  border-color: #1a1c1e;
  background: #1a1c1e;
}

.btn-bord-dark {
  border-color: #1a1c1e !important;
}

.btn-hov-dark:hover {
  color: #fff !important;
  border-color: #1a1c1e !important;
  background: #1a1c1e !important;
}

.txt-dark {
  color: #1a1c1e !important;
}

.btn-saving, .thm-saving {
  color: #fff;
  border-color: #b70d00;
  background: #b70d00;
}

.btn-bord-saving {
  border-color: #b70d00 !important;
}

.btn-hov-saving:hover {
  color: #fff !important;
  border-color: #b70d00 !important;
  background: #b70d00 !important;
}

.txt-saving {
  color: #b70d00 !important;
}

.btn-clearance, .thm-clearance {
  color: #333;
  border-color: #f3bb44;
  background: #f3bb44;
}

.btn-bord-clearance {
  border-color: #f3bb44 !important;
}

.btn-hov-clearance:hover {
  color: #333 !important;
  border-color: #f3bb44 !important;
  background: #f3bb44 !important;
}

.txt-clearance {
  color: #f3bb44 !important;
}

.firm-softer {
  border-color: #4dc6e1;
  border-radius: 6px;
  background: #fff;
}

.firm-mediumsoft {
  border-color: #59B0B7;
  border-radius: 6px;
  background: #fff;
}

.firm-medium {
  border-color: #b9d764;
  border-radius: 6px;
  background: #fff;
}

.firm-mediumfirm {
  border-color: #f7941e;
  border-radius: 6px;
  background: #fff;
}

.firm-firmer {
  border-color: #db61a5;
  border-radius: 6px;
  background: #fff;
}

.firm-extrafirm {
  border-color: #e84946;
  border-radius: 6px;
  background: #fff;
}

.firm-color-softer {
  color: #4dc6e1;
}

.firm-color-mediumsoft {
  color: #59B0B7;
}

.firm-color-medium {
  color: #b9d764;
}

.firm-color-mediumfirm {
  color: #f7941e;
}

.firm-color-firmer {
  color: #db61a5;
}

.firm-color-extrafirm {
  color: #e84946;
}

.firm-bg-softer {
  background: #4dc6e1;
}

.firm-bg-mediumsoft {
  background: #59B0B7;
}

.firm-bg-medium {
  background: #b9d764;
}

.firm-bg-mediumfirm {
  background: #f7941e;
}

.firm-bg-firmer {
  background: #db61a5;
}

.firm-bg-extrafirm {
  background: #e84946;
}

.firm-bdr-softer {
  border-color: #4dc6e1;
}

.firm-bdr-mediumsoft {
  border-color: #59B0B7;
}

.firm-bdr-medium {
  border-color: #b9d764;
}

.firm-bdr-mediumfirm {
  border-color: #f7941e;
}

.firm-bdr-firmer {
  border-color: #db61a5;
}

.firm-bdr-extrafirm {
  border-color: #e84946;
}

.firm-softer.firm-bdr {
  border-color: #4dc6e1;
  background: #fff;
}

.firm-mediumsoft.firm-bdr {
  border-color: #59B0B7;
  background: #fff;
}

.firm-medium.firm-bdr {
  border-color: #b9d764;
  background: #fff;
}

.firm-mediumfirm.firm-bdr {
  border-color: #f7941e;
  background: #fff;
}

.firm-firmer.firm-bdr {
  border-color: #db61a5;
  background: #fff;
}

.firm-extrafirm.firm-bdr {
  border-color: #e84946;
  background: #fff;
}

.firm-cube {
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 0.5rem;
  border-radius: 6px;
  float: left;
}

.firm-cube.softer {
  background: #4dc6e1;
}

.firm-cube.mediumsoft {
  background: #59B0B7;
}

.firm-cube.medium {
  background: #b9d764;
}

.firm-cube.mediumfirm {
  background: #f7941e;
}

.firm-cube.firmer {
  background: #db61a5;
}

.firm-cube.extrafirm {
  background: #e84946;
}

.prd-crd {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #e4e4e4;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.08);
  pointer-events: all;
  cursor: pointer;
  overflow: hidden;
}

.prd-crd-media {
  position: relative;
  margin: 0;
}

.prd-crd-img-alt {
  display: none;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.prd-crd-media-hov.hovering .prd-crd-img-alt {
  display: block;
}

.prd-crd-img {
  width: 100%;
  height: auto;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.prd-crd-bdy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 24px 0rem 24px;
  overflow: hidden;
}

.prd-crd-ftr {
  padding: 0 24px 1rem 24px;
}

.prd-crd-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 1rem;
}

.prd-crd-hldr {
  background: #e4e4e4;
  border-radius: 3px;
}

.prd-crd-rev-outer {
  justify-content: space-between;
}

.prd-crd-naming {
  flex-direction: column;
  align-items: start;
}

.prd-crds-slim .prd-crd-bdy,
.prd-crds-slim .prd-crd-ftr {
  padding-left: 1rem;
  padding-right: 1rem;
}

.prd-crd-mname {
  margin-bottom: 4px;
  line-height: 1.4rem;
  color: #505673;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.prd-crd-name {
  min-height: 3.6rem;
  max-height: 3.6rem;
  font-size: 1.5rem;
  line-height: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-overflow: clip;
  overflow: hidden;
}

.prd-crd-man {
  display: flex;
  flex-wrap: wrap;
  width: 90px;
  height: 49px;
  align-content: center;
  justify-content: flex-end;
}

.prd-crd-manimg {
  width: auto;
  max-height: 49px;
  float: right;
}

.prd-crd-awd-list {
  position: absolute;
  bottom: 1rem;
  left: 24px;
  z-index: 2;
}

/*.prd-crd-awd {
    max-width: 100px;
    margin: 5px;
}*/
.prd-crd-awd {
  position: absolute;
  width: 80px;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 1s;
}

.prd-crd-awd.in {
  opacity: 1;
}

.prd-crd-label-list {
  position: absolute;
  top: 2.4rem;
  z-index: 2;
  min-width: 15rem;
  max-width: 18rem;
  height: 3.6rem;
  overflow: hidden;
}

.prd-crd-label {
  height: 100%;
  width: 100%;
  align-content: space-evenly;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
  text-transform: uppercase;
  line-height: 3.6rem;
}

.prd-crd-rev-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  line-height: 2rem;
}

.prd-crd-revscore {
  margin-left: 0.8rem;
  font-weight: 500;
}

.prd-crd-revcount {
  line-height: 1.4rem;
  height: 1.4rem;
  margin-top: 0.5rem;
  color: #505673;
  font-size: 1.1rem;
}

.prd-crd-pricing {
  flex-direction: column;
  align-items: start;
  background: #f4f5f9;
  padding: 10px;
  border-radius: 6px;
}

.prd-crd-price {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2.4rem;
}

.prd-crd-from {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.4rem;
}

.prd-crd-pre {
  min-height: 1.8rem;
  line-height: 1.8rem;
  font-size: 1.4rem;
}

.prd-crd-prevprice {
  color: #505673;
  margin-right: 0.5rem;
  text-decoration: line-through;
}

.prd-crd-save {
  margin-right: 0.5rem;
  font-weight: 500;
  color: #b70d00;
}

.prd-attr {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.2rem;
  color: #fff !important;
  display: none;
}

.prd-crd-colourops {
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.1rem;
  z-index: 2;
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: 500;
}

.cop-list {
  display: inline-flex;
  margin-right: 0.3rem;
}

.cop-list-item {
  display: inline-block;
  margin-right: 0.3rem;
  width: 30px;
  height: 30px;
}

.cop-list-item img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  float: left;
}

.prd-crd-specs {
  margin: 4px 0;
  line-height: 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.prd-crd-specs span {
  display: inline-block;
  width: 100%;
  height: 2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prd-crd-del {
  margin-top: 0;
  width: 100%;
  padding: 1rem 24px;
  font-size: 1.3rem;
}

.prd-crd-specs i,
.prd-crd-specs img,
.prd-crd-del i,
.prd-crd-del img {
  margin-right: 0.8rem;
}

.prd-crd-badge-list {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 1rem;
  right: 24px;
  width: auto;
  height: auto;
  z-index: 2;
}

.prd-crd-badge + .prd-crd-badge {
  margin-top: 0.5rem;
}

.prd-crd-set .prd-crd-img:nth-child(2) {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 40%;
  border-radius: 6px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.08);
}

.prd-crd-set .prd-crd-name {
  min-height: 2rem;
  max-height: 2rem;
  line-height: 2rem;
}

.prd-crd-set .prd-crd-name + .prd-crd-name {
  margin-top: 0.5rem;
}

@media (max-width: 1199px) {
  .prd-crd-revs img {
    width: 100px;
    height: 19px;
  }
}
@media (max-width: 767px) {
  /*.prd-crd-del {
      padding-top: 0;
      font-size: 1.1rem;
  }*/
  .prd-crd-awd-list {
    left: 1rem;
    bottom: 1rem;
  }
  .prd-crd-revs {
    display: inline-flex;
    flex-direction: column;
  }
  .prd-crd-revscore {
    line-height: 19px;
    font-size: 1.2rem;
  }
  /*    .prd-crd-revcount {
          display: none;
      }*/
  .prd-crd-pre {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    min-height: 1.6rem;
    line-height: 1.6rem;
  }
  .prd-crd-prevprice {
    font-size: 1.2rem;
  }
  .prd-crd-save {
    font-size: 1.2rem;
  }
  .prd-crd-price {
    line-height: 2.2rem;
    font-size: 2.2rem;
  }
  .prd-crd-specs {
    font-size: 1rem;
    font-weight: 700;
  }
  .prd-crd-block:last-child {
    margin-bottom: 0px;
  }
  .prd-crd-label-list {
    height: 2.2rem;
    width: -webkit-fill-available;
    min-width: -webkit-fill-available;
    max-width: -webkit-fill-available;
  }
  .prd-crd-label {
    font-size: 1rem;
    line-height: 2.2rem;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    font-weight: 400;
  }
  .feat-block .prd-crd-label-list, #prdMoreManContent .prd-crd-label-list {
    top: 0rem;
  }
  .prds-list .prd-crd-label-list {
    top: 1rem;
  }
  /*.prd-slim-crds .prd-crd .prd-crd-img {
      border-bottom-left-radius: map-get($productcards, 'border-radius-inner');
      border-bottom-right-radius: map-get($productcards, 'border-radius-inner');
  }

  .prd-slim-crds .prd-crd .prd-crd-block:first-child {
      margin-top: 0;
  }

  .prd-slim-crds .prd-crd {
      flex-direction: row;
      flex-wrap: wrap;
  }

  .prd-slim-crds .prd-crd .prd-crd-media {
      width: 40%;
      max-width: 260px;
      padding: 1rem 0 1rem 1rem;
  }

  .prd-slim-crds .prd-crd .prd-crd-bdy {
      padding: 1rem 1rem 1rem 2rem;
  }
  .prd-slim-crds .prd-crd .prd-crd-colourops {
      position: static;
      padding: 1rem 0 0 0;
      background: none;
  }

  .prd-slim-crds .prd-crd .prd-crd-del {
      padding-bottom: 0.5rem;
      line-height: 2rem;
  }

  .prd-slim-crds .prd-crd .prd-crd-mname {
      line-height: 1.3rem;
      font-size: 1.3rem;
      font-weight: map-get($font-weights, 'semibold');
  }

  .prd-slim-crds .prd-crd .prd-crd-name {
      min-height: 1.5rem;
      max-height: 3rem;
      line-height: 1.5rem;
      font-size: 1.3rem;
  }

  .prd-slim-crds .prd-crd .prd-crd-man {
      display: none;
  }        

  .prd-slim-crds .prd-crd .prd-crd-del i {
      display: block;
  }

  .prd-slim-crds .prd-crd .prd-crd-block:first-child {
      margin-top: 0;
  }

  .prd-slim-crds .prd-crd .prd-crd-awd {
      width: 60px;
  }*/
}
@media (min-width: 768px) {
  .prd-crd-man + .prd-crd-revs {
    margin-left: auto;
  }
  .prd-crd-label {
    border-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .prd-crd-revs img {
    width: 100px;
    height: 19px;
  }
  .prd-crd-bdy, .prd-crd-ftr {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .prd-crd-awd-list {
    left: 1rem;
  }
  .prd-crd-block .badge {
    margin-bottom: 0.5rem;
  }
  /*.prd-crd-price{
      line-height:3.4rem;
  }*/
  .prd-crd-del {
    padding: 0.5rem 1rem;
  }
  /*.prd-slim-crds .prd-crd .prd-crd-del i {
      display: none;
  }*/
}
@media (min-width: 1081px) and (max-width: 1299px) {
  .prd-crd-stars {
    flex-direction: column;
    align-items: flex-start;
  }
  .prd-crd-man {
    margin-right: 0px;
    margin-left: auto;
  }
  .prd-crd-man {
    max-width: 68px;
  }
  .prd-crd-del {
    font-size: 1.1rem;
  }
  .prd-crd-del img {
    display: none;
  }
  .prd-crd-del span {
    margin-left: 0px;
  }
}
.prd-specs-outer {
  margin-top: 0.5rem;
}

.prd-crd-ottoman {
  position: absolute;
  width: 120px;
  left: 10px;
  top: 10px;
  opacity: 1;
  transition: opacity 1s;
}

@media (max-width: 768px) {
  .prd-crd-ottoman {
    display: none;
  }
  .cop-more {
    display: none;
  }
  .prd-crds-slim .prd-crd-man {
    display: none;
  }
}
.prd-crd-new-label {
  border: 1px solid #03217d;
  background: #f4f5f9;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 7px;
  font-size: 1.4rem;
  line-height: 2.8rem;
  font-weight: bold;
  color: #03217d;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.core-bsk-itms {
  display: flex;
  flex-direction: column;
  margin: 0.5rem 0;
}

.core-bsk-itm {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0.5rem 0;
}

.core-bsk-img {
  width: 160px;
  border-radius: 6px;
}

.core-bsk-details {
  flex: 1;
  margin-left: 1rem;
}

.core-bsk-itm-name {
  font-size: 1.5rem;
  line-height: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.core-bsk-attrs {
  display: flex;
  flex-direction: column;
}

.core-bsk-attr {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0.2rem 0;
  line-height: 1.3rem;
  font-size: 1.1rem;
}

.core-bsk-attr-lbl {
  margin-right: 1rem;
  font-weight: 700;
}

.core-bsk-attr-val {
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.core-bsk-itm-price {
  margin-top: 1rem;
  line-height: 2.2rem;
  font-size: 1.7rem;
  font-weight: 700;
}

/*.prd-sidal-ftr {
    flex: 1;
    padding: 1rem;
}*/
.core-upsell-con .wrap {
  width: 50%;
  margin-bottom: 2rem;
}

.core-upsell-cont {
  width: 100%;
}

.core-upsell-confirmation {
  display: flex;
  padding: 2rem;
  border-radius: 6px;
  margin-bottom: 2rem;
  background: #c2f1e2;
  align-items: center;
}

.core-upsell-cont .fa-check-circle {
  color: #00b67a;
}

.core-upsell-confirmation i {
  margin-right: 1rem;
  font-size: 3rem;
}

.core-upsell-title {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.2;
}

.core-upsell-con .card {
  height: 100%;
  cursor: auto;
}

.core-upsell-con .card-footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 5px;
}

.core-upsell-con .card-pricing {
  flex: 1;
  height: 3rem;
}

.core-upsell-con .card-pricing .new-price {
  font-size: 1.6rem;
  line-height: 1.8rem;
  font-weight: 500;
}

.core-upsell-con .card-pricing .prd-card-saveprice {
  font-size: 1.1rem;
  line-height: 1.2rem;
}

.core-upsell-con .card-footer .btn {
  margin-left: auto;
}

/*@media(max-width: maxGridBreakpoint(map-get($grid-breakpoints, 'md'))) {
    .core-upsell-con .card {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .core-upsell-con .wrap {
        width: 100%;
    }
}*/
@media (min-width: 768px) {
  .core-upsell-con .wrap {
    width: 50%;
    margin-bottom: 2rem;
  }
}
.hdr {
  position: relative;
  color: #fff;
  background-color: #03217D;
}

.hdr .container {
  display: flex;
  align-items: center;
}

.hdr-topper a,
.hdr-top a,
.hdr-wrapper a {
  color: inherit;
}

.hdr-wrapper {
  position: relative;
}

.hdr-top,
.hdr-middle,
.hdr-bottom {
  display: flex;
}

.hdr-left,
.hdr-center,
.hdr-right {
  display: flex;
  align-items: center;
}

.hdr-right {
  margin-left: auto;
}

.hdr-topper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0;
  min-height: 3rem;
  line-height: 1.8rem;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: #fff;
  background-color: #f74133;
}

.hdr-topper a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hdr-top {
  padding: 7px 0;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #fff;
  background-color: #03217D;
}

.hdr-top .hdr-right {
  padding-right: 0.2rem;
}

.hdr-top .hdr-right a {
  display: flex;
  align-items: center;
}

.hdr-top .hdr-right i {
  margin-right: 0.6rem;
  font-size: 1.5rem;
}

.hdr-top .hdr-right a {
  margin-left: 2rem;
}

.hdr-bottom {
  color: #fff;
  background-color: #03217d;
  font-size: 1.5rem;
  font-weight: 700;
}

/*.hdr-bottom .main-nav {
    margin-left: 2.1rem;
}*/
/*.hdr-bottom .hdr-right {
    padding-right: .2rem;
}

    .hdr-bottom .hdr-right > a {
        display: flex;
        align-items: center;
        padding: 1.5rem 0 1.3rem;
    }

        .hdr-bottom .hdr-right > a i {
            vertical-align: middle;
        }

            .hdr-bottom .hdr-right > a i.w-icon-map-marker {
                font-size: 2.2rem;
                margin-top: -.5rem;
            }

            .hdr-bottom .hdr-right > a i.w-icon-sale {
                font-size: 2.4rem;
                margin-right: .8rem;
            }

        .hdr-bottom .hdr-right > a:first-child {
            margin-right: 3.2rem;
        }*/
/*.welcome-msg {
    margin: 0;
    padding: 10px 0;
    font-size: 1.4rem;
}

.hdr-top .welcome-msg {
    padding: 0;
}*/
.hdr-middle {
  padding-top: 0rem;
  padding-bottom: 0rem;
  font-size: 1.5rem;
  border-bottom: 0;
  overflow: hidden;
}

.hdr-middle .hdr-left {
  flex: 1;
}

.hdr .inner-wrap {
  position: relative;
  width: 100%;
}

.hdr-search {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 38rem;
  margin-left: 3rem;
}

.hdr-search .hdr-search-input {
  display: block;
  flex: 1;
  width: 100%;
  min-height: 4.7rem;
  padding: 1rem;
  line-height: 2.7rem;
  font-size: 1.5rem;
  border: 0;
  box-shadow: none;
  outline: 0;
}

.hdr-search .hdr-search-input::placeholder {
  color: inherit;
}

.hdr-search .btn-search {
  margin: 0;
  padding: 0;
  min-width: 5.1rem;
  color: #fff;
  border: 0;
  font-size: 1.5rem;
  text-transform: none;
}

.hdr-search .btn-search i {
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 500;
}

.hdr-search.hs-expanded {
  flex: 1;
  margin: 0 auto;
  min-width: auto;
  max-width: 69.6rem;
}

.hdr-search.hs-expanded .hdr-search-input, #mobile-search-term, #mobile-search-term::placeholder {
  color: #f5fefe;
  border-right: none;
  border-left: none;
}

.hdr-search.hs-expanded .btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s, color 0.4s;
}

.hdr-search.hs-expanded .btn-search i {
  margin: 0;
}

.hdr-search.hs-expanded .btn-search span {
  margin-right: 0.5rem;
}

.hdr-search.hs-round .hdr-search-input {
  border-radius: 6px 0 0 6px;
}

.hdr-search.hs-round .btn-search {
  border-radius: 6px 0 0 6px;
}

.hdr-search.hs-round.hs-expanded .hdr-search-input {
  border-radius: 0 6px 6px 0;
}

.hdr-middle .hdr-search {
  margin-left: 4rem;
  margin-right: 2rem;
}

.hdr-search .hdr-search-input,
.hdr-search .btn-search,
#mobile-search-term, #mobile-search-go {
  background-color: #40579a;
  border-width: 0px;
}

.search-card-catbrand {
  height: 2rem;
  line-height: 2rem;
  width: 100%;
  line-height: 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  align-items: center;
  display: flex;
}

.search-card-catbrand img {
  margin-right: 6px;
  height: 14px;
  width: 14px;
}

.hdr-call {
  position: relative;
  margin-right: 4.8rem;
}

.hdr-call .w-icon-call {
  margin-right: 0.6rem;
  font-size: 3rem;
}

.hdr-call .w-icon-star {
  margin: 0 0.6rem 0.2rem 0;
  font-size: 3rem;
}

.hdr-call .w-icon-bed {
  margin: 0 0.6rem 0.2rem 0;
  font-size: 3rem;
}

.hdr-call .call-info {
  display: flex;
  flex-direction: column;
}

.hdr-call .phone-number {
  font-size: 1.8rem;
  line-height: 1.8rem;
}

.hdr-call .chat a {
  color: #333;
}

/*.hdr-call .chat a:hover {
        color: #044796;
    }*/
/*.hdr-call:hover .w-icon-call,
.hdr-call:hover .phone-number {
    color: #044796;
}*/
.hdr-call::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: -2.5rem;
  width: 1px;
  height: 4.1rem;
  background-color: #e5e5e5;
}

.cart-dropdown > a i {
  font-size: 26px;
  line-height: 26px;
  color: inherit;
}

.hdr-border .hdr-bottom {
  border-bottom: 1px solid #eee;
}

.hdr-logo {
  display: inline-block;
  height: 100px;
}

.hdr-icon-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 75px;
  cursor: pointer;
}

.hdr-icon {
  display: block;
  background: none;
}

.hdr-icon-round {
  position: absolute;
  display: none;
  bottom: 0;
  right: 0;
  min-width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 10px;
  font-weight: 700;
  color: #000;
  border-radius: 2px;
  background: #C994DD;
}

.active .hdr-icon-shortlist path,
.active .hdr-icon-cart path {
  fill: #C994DD;
}

/*.hdr-icon-block i {
    display: inline-block;
    min-width: 30px;
    height: 34px;
    line-height: 34px;
    font-size: 24px;
}*/
.hdr-icon-label {
  display: inline-block;
  width: 100%;
  height: 16px;
  line-height: 16px;
  font-size: 1.4rem;
}

.hdr-icons {
  display: flex;
  flex-direction: row;
  margin-left: auto;
}

.hdr-icons .hdr-icon-block {
  margin-left: 3rem;
}

.hdr-callus-group {
  width: 175px;
  text-align: left;
}

.hdr-callus {
  flex-direction: row;
  flex-wrap: wrap;
}

.hdr-callus i {
  min-width: 38px;
  height: 50px;
  line-height: 50px;
  font-size: 30px;
}

.hdr-callus .hdr-callus-label {
  height: 25px;
  line-height: 20px;
  padding-top: 5px;
  float: left;
}

.hdr-callus .hdr-callus-number {
  height: 25px;
  line-height: 20px;
  font-size: 18px;
  padding-bottom: 5px;
  float: left;
  font-weight: 500;
}

.mm-togl {
  display: none;
}

.hdr .menu-extra {
  display: none;
}

.hdr .menu-extra.menu-fixed,
.hdr.extra-menu-in .menu-extra {
  display: block !important;
}

/*.hdr .menu-cube {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 4px;
    border-radius: 4px;
    border: 1px solid #eee;
}*/
.hdr .menu-flex {
  display: flex;
  flex-wrap: wrap;
}

.hdr .menu-flex > * {
  flex: 1;
}

.hdr-mobile {
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
  font-size: 1.5rem;
  border-bottom: 1px solid #e1e1e1;
  border-bottom: 2px solid #e9eaed;
  background-color: #03217D;
}

.hdr-mobile .hdr-search {
  display: flex;
  width: 100%;
  max-width: 100%;
  border-radius: 6px;
  margin: 0;
}

.hdr-mobile .hdr-search .hdr-search-input,
.hdr-mobile .hdr-search .btn {
  color: #333;
  border: 1px solid #f1f1f1;
  background: #f8f8f8;
}

.hdr-mobile .hdr-search input {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.hdr-mobile .hdr-search .btn {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.hdr-mobile .hdr-search .btn {
  border-left: 0;
}

/* --------------------------------------------------------------------- */
/* SEARCH CARDS */
/* --------------------------------------------------------------------- */
.search-card {
  display: flex;
  flex-direction: row;
  border-radius: 6px;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.search-card .search-card-media {
  border-radius: 4px;
  margin: 1rem;
  overflow: hidden;
}

.search-card .search-card-media img {
  border-radius: inherit;
}

.search-card .search-card-details {
  justify-content: start;
  text-align: left;
}

.search-card .search-card-details .card-product-name {
  font-size: 1.5rem;
  line-height: 2rem;
  height: 2rem;
  overflow: hidden;
  font-weight: 700;
}

.search-card .card-price {
  font-size: 1.5rem;
  line-height: 2rem;
  height: 2.4rem;
  overflow: hidden;
  font-weight: 700;
  padding-top: 5px;
  border-top: 1px solid #eeeff2;
}

.search-card .card-review {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 20px;
  line-height: 20px;
  width: 100%;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.search-card .card-rev-count {
  padding-right: 6px;
  padding-left: 6px;
}

.search-card .search-card-media {
  align-items: center;
  justify-content: center;
}

.ser-res-con {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  color: #333;
  background: #f4f5f9;
  border-bottom: 4px solid #112c74;
  z-index: 999;
}

.ser-res-con.open {
  display: block;
}

.ser-res {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  border-bottom: 2px solid #eee;
}

.ser-res-side {
  width: 100%;
  flex: 0 0 100%;
  padding: 2rem;
  padding-bottom: 0px;
}

.ser-res-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.ser-res-content {
  flex: 1;
  width: 100%;
  padding: 2rem;
}

.ser-res-footer {
  width: 100%;
  padding: 1rem 2rem;
}

.ser-res-side-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ser-res-side-list li a {
  background: #fff;
  border-radius: 20px;
  padding: 12px 22px;
  font-size: 1.4rem;
  margin-right: 10px;
  margin-bottom: 10px;
  clear: both;
  display: block;
}

/*    .ser-res-side-list > li {
        width: 100%;
    }*/
.ser-res ul > li > a > span,
.ser-res-list > li > a > span {
  font-weight: 700;
}

.ser-res-articles-list {
  margin: -1rem;
}

.ser-res-articles-list > li {
  flex: 1;
  max-width: 20%;
  padding: 1rem;
}

.ser-res-articles-list > li .post-card {
  height: 100%;
}

.ser-res-articles-list > li .post-card .post-title {
  margin-bottom: 0.5rem;
}

.ser-res-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: -1rem;
}

.ser-res-list > li {
  width: 100%;
  padding: 1rem;
}

.ser-res-list > li:hover .search-card,
.ser-res-list > li:active .search-card,
.ser-res-list > li:focus .search-card {
  background: #F8F8F8;
}

/* --------------------------------------------------------------------- */
/* Key Messages */
/* --------------------------------------------------------------------- */
.key-msgs-con {
  background: #f4f5f9;
}

.key-msgs-wrap {
  height: 54px;
  overflow: hidden;
}

.key-msgs {
  position: relative;
  width: 100%;
  color: #444;
  font-weight: 400;
  text-align: center;
  overflow: hidden;
}

.key-msg {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  /*float: left;*/
  width: 20%;
  height: 54px;
  padding: 5px 0;
  line-height: 30px;
  text-align: center;
  color: #505673;
  font-size: 1.4rem;
}

.key-msg svg {
  margin-right: 10px;
}

.key-msg.clone {
  display: none;
}

/* --------------------------------------------------------------------- */
.ser-togl {
  display: none;
}

@media (min-width: 1200px) {
  .hdr-icons .hdr-icon-block {
    margin-left: 4rem;
  }
}
/* MEDIA QUERIES */
/* --------------------------------------------------------------------- */
@media (max-width: 767px) {
  .hdr-top .hdr-left {
    text-align: left;
    justify-content: left;
    overflow: hidden;
  }
  .hdr-top {
    display: none;
    background: #03217d;
  }
  .hdr-middle .hdr-right {
    margin-left: 0 !important;
    font-size: 1.1rem;
  }
  .hdr-middle .logo {
    display: inline-block;
    min-height: 26px;
    line-height: 26px;
    margin-left: 2rem;
    margin-right: 0;
  }
  .hdr-search {
    display: none;
  }
  .ser-togl {
    display: flex;
  }
  .ser-res-con .ser-res {
    padding-top: 8px;
    padding-bottom: 6px;
  }
  .ser-res-list > li {
    padding-left: 0px !important;
    padding-right: 0px !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  /*        .ser-res li {
      padding: 0.5rem 0;
      line-height: 1.7rem;
      font-size: 1.6rem;
  }*/
  /*        .ser-res-suggestions-list li,
  .ser-res-list li {
      padding: 0;
      height: 3.75rem;
      line-height: 3.75rem;
      text-overflow: ellipsis;
      overflow: hidden;
  }

  .ser-res-con ul.ser-res-suggestions-list > li > a,
  .ser-res-con ul.ser-res-list > li > a {
      display: inline-block;
      width: 100%;
      height: 3.75rem;
      line-height: 3.75rem;
      text-overflow: ellipsis;
      overflow: hidden;
  }*/
  .ser-res-con .ser-res h5 {
    margin-bottom: 4px;
  }
  .ser-res-side-left h5,
  .ser-res-side-list h5,
  .ser-res-main h5,
  .ser-res-side-right {
    display: none !important;
  }
  .ser-res-con .ser-res-content {
    padding-top: 0;
    padding-bottom: 0;
  }
  .ser-res-con .ser-res-footer {
    display: none;
  }
  .ser-res-con .ser-res-side,
  .ser-res-con .ser-res-main {
    padding-top: 0;
    padding-bottom: 0;
  }
  .ser-res-con .ser-res-list {
    margin: 0;
  }
  .ser-res-articles-list li {
    max-width: 50%;
  }
  .ser-res-articles-list li {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  .search-card .search-card-details,
  .ser-res-articles-list .post-card-details {
    align-items: center;
    padding: 5px;
  }
  .ser-res-articles-list .post-card {
    flex-direction: row;
  }
  .ser-res-articles-list .post-card-media {
    width: 80px;
    height: 72px;
    border-radius: 4px;
    margin: 1rem;
    overflow: hidden;
  }
  .ser-res-articles-list .post-card-media {
    width: 60px;
    height: 54px;
    border-radius: 4px;
    margin: 0.5rem;
    overflow: hidden;
  }
  .ser-res-articles-list .post-calendar {
    width: auto;
    height: auto;
    top: 5px;
    right: 5px;
    left: auto;
    padding: 3px;
  }
  .ser-res-articles-list .post-title {
    font-size: 1.5rem;
    line-height: 1.7rem;
    margin-bottom: 0.5rem;
  }
  .ser-res-articles-list .post-day {
    font-size: 1rem;
  }
  .hide-mobile {
    display: none;
  }
  .tbNds2 .content {
    display: block;
  }
  .tbNds2, .tbNds2 .content {
    height: auto;
  }
  .tbNds2 .content a {
    padding: 10px;
  }
}
@media (min-width: 768px) {
  .hdr-mobile {
    display: none;
  }
  .ser-res-list > li {
    flex: 0 0 50%;
    width: 50%;
  }
  .tbNds .content > * {
    width: 50%;
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-out;
    transition: opacity 0.4s ease-out;
    pointer-events: none;
  }
  .tbNds .content > *:nth-child(odd) {
    left: 0;
  }
  .tbNds .content > *:nth-child(even) {
    left: 50%;
  }
  .tbNds .content.with-vindex-of-1 > *:nth-child(1), .tbNds .content.with-vindex-of-3 > *:nth-child(1), .tbNds .content.with-vindex-of-1 > *:nth-child(2), .tbNds .content.with-vindex-of-3 > *:nth-child(2) {
    opacity: 1;
    pointer-events: auto;
  }
  .tbNds .content.with-vindex-of-1 > *:nth-child(2), .tbNds .content.with-vindex-of-3 > *:nth-child(2), .tbNds .content.with-vindex-of-1 > *:nth-child(3), .tbNds .content.with-vindex-of-3 > *:nth-child(3) {
    opacity: 0;
    pointer-events: none;
  }
  .tbNds .content.with-vindex-of-2 > *:nth-child(1), .tbNds .content.with-vindex-of-4 > *:nth-child(1), .tbNds .content.with-vindex-of-2 > *:nth-child(2), .tbNds .content.with-vindex-of-4 > *:nth-child(2) {
    opacity: 0;
    pointer-events: none;
  }
  .tbNds .content.with-vindex-of-2 > *:nth-child(3), .tbNds .content.with-vindex-of-4 > *:nth-child(3), .tbNds .content.with-vindex-of-2 > *:nth-child(4), .tbNds .content.with-vindex-of-4 > *:nth-child(4) {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .ser-res-articles-list > li:nth-child(1n+4) {
    display: none !important; /*hide after the 3 child*/
  }
}
@media (min-width: 992px) {
  .hdr-mobile {
    display: none;
  }
  .ser-res-list > li {
    flex: 0 0 33.33%;
    width: 33.33%;
  }
  .tbNds .content > * {
    width: 33.33%;
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-out;
    transition: opacity 0.4s ease-out;
    pointer-events: none;
  }
}
@media (max-width: 991px) {
  .hdr .main-nav {
    display: none;
  }
  .hdr .sticky-content-wrapper {
    display: none;
  }
  /*.hdr-middle .hdr-right > *:not(:last-child) {
      margin-right: 2rem;
  }*/
  .hdr-bottom {
    display: none;
  }
  .mm-togl {
    display: flex;
    margin-right: 2rem;
  }
  .hdr-call {
    margin-right: 1rem !important;
  }
  .hdr-call::after {
    content: none;
  }
  .hdr-middle {
    min-height: 90px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 1.1rem;
  }
  .hdr-logo {
    height: 70px;
    margin-right: 0;
  }
  #svglogo {
    width: auto;
    height: 70px;
  }
  .hdr-icon-block {
    height: 38px;
  }
  .hdr-icon-menutoggle {
    width: 20px;
    height: 16px;
  }
  /*.hdr-icon-shortlist {
      width: 26px;
      height: 26px;
  }*/
  /*.hdr-icon-cart {
      width: 27px;
      height: 24px;
  }*/
  /*.hdr-icon-block i {
      min-width: 22px;
      height: 27px;
      line-height: 27px;
      font-size: 22px;
  }*/
  .hdr-icon-label {
    display: none;
    height: 13px;
    line-height: 13px;
    font-size: 10px;
  }
  .hdr-icons .hdr-icon-block {
    margin-left: 1.6rem;
  }
  .hdr-search-input {
    min-height: 40px;
    height: 40px;
    padding-top: 9px;
    padding-bottom: 9px;
    line-height: 20px;
  }
  .hid-mob {
    display: none;
  }
  .key-msgs-wrap {
    height: 46px;
  }
  .key-msgs {
    display: flex;
    flex-direction: column;
  }
  .key-msg {
    width: 100%;
    height: 46px;
    font-size: 1.4rem;
  }
  .key-msg.clone {
    display: inline-flex;
  }
  .key-msgs.scrolling {
    -webkit-transition: -webkit-transform 500ms ease-in-out;
    transition: transform 500ms ease-in-out;
  }
  .key-msgs.ending {
    -webkit-transform: none;
    transform: none;
    -webkit-transition: none;
    transition: none;
  }
  .key-msgs.ending .key-msg.clone {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
@media (min-width: 992px) {
  .hdr-middle {
    min-height: 94px;
  }
  .hdr-middle .cart-dropdown {
    margin-right: 3rem;
  }
  .hdr-icon-round {
    bottom: 6px;
    right: -1px;
  }
  .hid-desk {
    display: none;
  }
  .key-msgs {
    display: flex;
    justify-content: space-between;
  }
  .key-msg {
    flex-direction: row;
    width: auto;
    align-items: center;
  }
  .key-msg:first-child {
    text-align: left;
    justify-content: start;
  }
  .key-msg:last-child {
    justify-content: end;
    text-align: right;
  }
  .key-msg-trust {
    display: none;
  }
}
@media (min-width: 1200px) {
  .hdr-middle .hdr-search {
    margin-left: 10rem;
    margin-right: 2rem;
  }
  .ser-res-side-left {
    /*            max-width: 400px;*/
    /*            border-right: 2px solid map-get($colors, 'offset');*/
  }
  .ser-res-side-right {
    max-width: 260px;
    border-left: 2px solid #f4f5f9;
  }
  .ser-res-articles-list {
    flex-direction: column;
  }
  .ser-res-articles-list li {
    flex: 1;
    max-width: 100%;
  }
  .ser-res-articles-list > li:nth-child(1n+3) {
    display: none !important; /*hide after the 2 child*/
  }
}
@media (min-width: 1280px) {
  .tbNds .content > *, .tbNds2 .content > * {
    width: auto;
    position: static;
    opacity: 1 !important;
    pointer-events: auto !important;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
#countdown-clock {
  min-width: 165px;
  margin-left: 0.5rem;
}

.daylabel, .hourlabel, .minutelabel, .secondlabel {
  margin-right: 0.3rem;
}

.days {
  margin-left: 0.3rem;
}

.flex {
  display: flex;
}

@media (max-width: 529px) {
  .hdr-middle {
    min-height: 80px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 1.1rem;
  }
  .hdr-logo {
    height: 60px;
    margin-right: 0;
  }
  #svglogo {
    width: auto;
    height: 60px;
  }
}
@media (max-width: 429px) {
  .hdr-top {
    display: block;
  }
  .hid-xxs-mob {
    display: none !important;
  }
  .hdr-middle {
    min-height: 70px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 1.1rem;
  }
  .hdr-logo {
    height: 50px;
    margin-right: 0;
  }
  #svglogo {
    width: auto;
    height: 50px;
  }
}
.menu {
  display: flex;
  align-items: center;
  margin-left: -2rem;
}

.menu > li {
  padding-left: 2rem;
  padding-right: 2rem;
}

.menu > li > a,
.menu-exp-lnk {
  position: relative;
  display: inline-block;
  display: inline-flex;
  padding: 1.7rem 0;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.8rem;
  color: #fff;
}

.menu-exp-lnk.sale-override {
  padding: 1.3rem 0;
}

.menu-exp-lnk-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 6px;
}

.menu-exp-lnk-badge-inner {
  display: inline-block;
  width: 100%;
  height: 1.8rem;
  line-height: 1.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-icon {
  margin-left: 0.5rem;
  width: 20px;
  height: 20px;
  fill: #fff;
  transition: transform 0.1s ease-in;
}

.open .menu-icon {
  transform: rotate(180deg);
}

.menu-tray {
  display: none;
  position: absolute;
  top: -9999px;
  left: 0;
  min-width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 35px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  visibility: hidden;
  transition: transform 0.2s ease-out;
}

.open .menu-tray {
  display: flex;
  visibility: visible;
  top: 100%;
  transform: translate3d(0, 0, 0);
}

.menu-grid-wrapper {
  display: flex;
  flex-direction: column;
  align-items: unset !important;
}

.menu-grid {
  padding: 12px 0;
}

.menu-ul {
  position: static;
  padding: 0;
  margin-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #333;
}

.menu-ul li a {
  display: inline-flex;
  padding: 8px 0 3px 0;
  line-height: 2rem;
  border-bottom: 2px solid transparent;
}

.menu-ul li a:hover {
  color: #333;
  border-color: #333;
}

.menu-ul li .badge {
  float: left;
}

.menu-ul li i,
.menu-ul li .icon-sm {
  margin-right: 1rem;
}

.menu-title {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7rem;
  color: #141933;
}

.menu-col-hdr {
  width: 100%;
  margin-bottom: 2rem;
  color: #141933;
  border-bottom: 2px solid #e4e4e4;
}

.menu-col-hdr span {
  display: inline-block;
  padding: 1rem;
}

.menu-colors a {
  padding-bottom: 3px !important;
  padding-top: 3px !important;
  height: 33px;
  align-items: center;
}

.menu-colors li {
  display: flex;
  align-items: center;
}

.menu-title-inline {
  margin-bottom: 0.6rem;
  margin-top: 4.3rem;
}

.menu-footer {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  color: #141933;
  border-radius: 6px;
}

.menu-footer a {
  text-decoration: underline;
}

/*.tip {
    display: inline-block;
    position: relative;
    top: -1px;
    left: 7px;
    padding: 0.3rem 0.5rem 0.2rem;
    border-radius: 0.2rem;
    font-size: 1rem;
    font-weight: map-get($font-weights, 'bold');
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
}

    .tip.tip-new {
        background-color: #044796;
    }

    .tip.tip-hot {
        background-color: #ff9742;
    }*/
.mm-wrap {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2400;
  transition: visibility 300ms linear;
}

.mm-con {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  color: #141933;
  background: #fff;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  transition: transform 300ms linear;
  will-change: transform;
  overflow-y: auto;
}

.mm-hdr,
.mm-bdy,
.mm-ftr {
  padding: 2rem 1.5rem;
}

.mm-con::-webkit-scrollbar-thumb {
  margin-right: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  cursor: pointer;
}

.mm-ovl {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: #000;
  opacity: 0;
  transition: opacity cubic-bezier(0, 0, 1, 1) 200ms;
}

.mm-menu {
  text-transform: capitalize;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 3.6rem;
}

.mm-menu ul {
  display: none;
  width: 100%;
  font-size: 1.6rem;
}

.mm-menu li {
  border-bottom: 0;
}

.mm-menu > li a,
.mm-lnk {
  /*display: flex;*/
  align-items: center;
  display: flex;
  position: relative;
  padding: 1.2rem 0.6rem 1.2rem 1rem;
  border-bottom: 1px solid #e4e4e4;
  padding: 1.2rem 0;
  color: inherit;
  transition: color 0.3s;
}

.mm-menu img {
  border-radius: 50%;
  margin-right: 1rem;
}

/* .mm-menu > li a svg {
        width: 15px;
        height: 15px;
        margin-right: 10px;
        stroke: #fff;
        fill: #fff;
        vertical-align: middle;
        transition: color .3s;
    }

.mm-menu > li:hover svg, 
.mm-menu > li.active svg {
    stroke: #ea1520;
    fill: #ea1520;
}*/
.mm-menu li li a {
  line-height: 3rem;
  padding: 1rem 0 1rem 2.4rem;
}

.mm-menu li li li a {
  padding-left: 3.6rem;
}

.mm-hdr {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  background: #fff;
}

.mm-ftr ul {
  width: 100%;
  list-style: none;
  margin: 0;
}

.mm-ftr ul li a {
  display: inline-block;
  padding: 0.6rem 0;
}

.mm-ftr ul {
  padding-left: 2rem;
  border-left: 1rem solid #03217d;
  color: #03217d;
  font-weight: 700;
}

.mm-ftr a {
  color: #03217d;
}

.mm-close {
  position: relative;
  padding: 0;
  margin: 0;
  width: 24px;
  height: 24px;
  text-align: center;
  border: 0;
  background: none;
  transform: rotate(45deg);
  float: right;
}

.mm-close:before,
.mm-close:after {
  display: inline-block;
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
}

.mm-close:before {
  top: 11px;
  height: 2px;
  width: 20px;
  background: #141933;
}

.mm-close:after {
  left: 11px;
  height: 20px;
  width: 2px;
  background: #141933;
}

.mm-act {
  overflow: hidden;
}

.mm-act .mm-wrap {
  visibility: visible;
}

.mm-act .mm-con {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.mm-act .mm-ovl {
  opacity: 0.5;
}

.mm-act .mm-close {
  opacity: 1;
}

.mm-menu .toggle-btn {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
  float: right;
  transition: opacity 0.4s ease-in-out;
  margin-left: 0.5rem;
}

.mm-menu .toggle-btn:before,
.mm-menu .toggle-btn:after {
  display: inline-block;
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
}

.mm-menu .toggle-btn:before {
  top: 11px;
  height: 2px;
  width: 12px;
  background: #333;
}

.mm-menu .toggle-btn:after {
  left: 11px;
  height: 12px;
  width: 2px;
  background: #333;
}

.mm-menu .show > a .toggle-btn:after {
  opacity: 0;
}

.breadcrumb-wrapper {
  width: 100%;
  height: 5.1rem;
  overflow: hidden;
}

.breadcrumb {
  display: flex;
  /*margin: 0 -0.5rem;*/
  font-size: 1.3rem;
  line-height: 3.1rem;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.page-header .breadcrumb {
  line-height: 2.1rem;
}

.breadcrumb::-webkit-scrollbar {
  display: none;
}

.breadcrumb li:after {
  content: "/";
  position: relative;
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
}

.breadcrumb li:last-child,
.breadcrumb .active {
  color: #141933;
}

.breadcrumb .active {
  font-weight: 700;
}

.breadcrumb li:last-child:after {
  content: "";
  display: none;
}

.breadcrumb span,
.breadcrumb a {
  display: inline-block;
  padding: 1rem 0.5rem;
  margin: 0;
}

.breadcrumb > li:first-child span,
.breadcrumb > li:first-child a {
  padding-left: 0;
}

/*.breadcrumb a {
    text-decoration: underline;
}*/
@media (max-width: 991px) {
  .breadcrumb {
    font-size: 1.1rem;
  }
}
footer, .footer {
  margin: 0;
  overflow: hidden;
}

.footer {
  position: relative;
  z-index: 1;
}

footer {
  background-color: #03217D;
}

.footer img,
.footer svg {
  vertical-align: top;
}

.footer-heading {
  display: inline-block;
  width: 100%;
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 700;
  color: #fff;
}

.footer-block {
  font-size: 1.4rem;
}

/* FOOTER HEADER */
/* -------------------------------------------------------- */
.footer-header {
  padding-top: 4rem;
}

.footer-trust-text {
  margin-top: 0.5rem;
}

/*.footer-ecologi-svg {
    height: 49px;
    margin-top: 6px;
    margin-bottom: -6px;
}
.footer-ecologi-planted {
    line-height: 4.9rem;
    margin-left: 1rem;
    font-size: 1.6rem;
    font-weight: map-get($font-weights, 'bold');
    color: $footer-color-text;
}*/
/* -------------------------------------------------------- */
/* LISTS */
/* -------------------------------------------------------- */
.footer ul {
  margin-bottom: 0;
}

.footer li {
  padding: 0;
  line-height: 2;
}

.footer a {
  display: inline-block;
  padding: 0.2rem 0;
  line-height: 2;
  font-size: 1.5rem;
  color: #fff;
  border-bottom: 2px solid transparent;
}

.footer a i {
  margin-right: 6px;
}

/* -------------------------------------------------------- */
/* FOOTER ACCORDION */
/* -------------------------------------------------------- */
.footer-accordion {
  display: inline-flex;
  width: 100%;
}

.footer-accordion .acrd {
  flex: 1;
  border: 0;
}

.footer-accordion .acrd-hdr {
  display: flex;
  flex-direction: row;
  align-items: center;
  /*font-size: 1.6rem;
  font-weight: map-get($font-weights, 'bold');*/
  cursor: pointer;
}

.footer-accordion .acrd-hdr i,
.footer-accordion .acrd-hdr svg {
  margin-left: auto;
  line-height: 2rem;
  font-size: 2rem;
  font-weight: 700;
  display: none;
}

.footer-accordion .acrd-bdy {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.1s ease;
}

/* -------------------------------------------------------- */
/* FOOTER GRID */
/* -------------------------------------------------------- */
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  color: #fff;
}

.footer-col {
  padding-left: 10px;
  padding-right: 10px;
}

.footer-col.auto {
  flex: 1;
}

/* -------------------------------------------------------- */
/* FOOTER CONTACT / SOCIALS */
/* -------------------------------------------------------- */
/*.footer-contact-ul {
    margin: 0 -1rem;
}
.footer-contact-ul li {
    padding: 0;
}
.footer-contact-ul a {
    padding: 0.6rem 1rem;
    line-height: 1.6rem;
    font-size: 1.4rem;
    border: 0;;
}*/
.footer-socials {
  align-items: center;
  justify-content: space-between;
}

.footer-socials-list {
  display: inline-flex;
  margin-left: auto;
}

.footer-socials-list a {
  width: 36px;
  text-align: center;
}

.footer-socials-list a + a {
  margin-left: 14px;
}

/* -------------------------------------------------------- */
/* FOOTER LINKS */
/* -------------------------------------------------------- */
.footer-links {
  font-size: 1.4rem;
}

.footer-links-title {
  font-weight: 500;
  margin-right: 8px;
  color: #fff;
}

.footer-links-group ul {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.footer-links-group li {
  line-height: 1.6rem;
  padding: 0;
}

.footer-links-group ul a {
  padding: 1rem;
  font-size: inherit;
  line-height: inherit;
  border: 0;
}

/* -------------------------------------------------------- */
/* FOOTER PRIVACY */
/* -------------------------------------------------------- */
.footer-privacy {
  color: #fff;
}

.footer-privacy ul {
  display: inline-flex;
  margin: 0 -1rem;
}

.footer-privacy li {
  padding: 0;
  line-height: 1.6rem;
  font-size: 1.3rem;
}

.footer-privacy a {
  color: #fff;
}

.footer-privacy ul a {
  border: 0;
}

.footer-privacy ul a,
.footer-privacy ul span {
  display: inline-block;
  padding: 1rem;
  font-size: inherit;
  line-height: inherit;
}

/* -------------------------------------------------------- */
/* HOVER */
/* -------------------------------------------------------- */
.footer ul.hover-bord li {
  align-items: center;
  display: flex;
}

.footer ul.hover-bord a:hover {
  border-color: #fff;
}

/* -------------------------------------------------------- */
/* Ecologi Tree Counter */
/* -------------------------------------------------------- */
.ecologi-treecounter {
  position: relative;
  text-align: center;
}

.ecologi-treecounter img {
  z-index: 1;
}

.ecologi-treecounter span {
  position: absolute;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  width: 100%;
  height: 27%;
  left: 0;
  right: 0;
  bottom: 0;
  font-weight: 900;
  font-size: 1.6rem;
  color: #222;
  z-index: 2;
}

/* -------------------------------------------------------- */
/* MEDIA QUERIES */
/* -------------------------------------------------------- */
@media (max-width: 500px) {
  .footer-ecologi-planted {
    margin: 0;
  }
  .footer-privacy ul {
    display: block;
  }
  .ecologi-treecounter span {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 2rem;
  }
  .footer-accordion {
    flex-direction: column;
  }
  .footer-block {
    margin-bottom: 3rem;
  }
  .acrd + .acrd {
    margin-top: 2rem;
  }
  .acrd .acrd-hdr svg {
    display: block;
  }
  .acrd .acrd-hdr .icon-open {
    display: inline-block;
  }
  .acrd .icon-close,
  .acrd.open .icon-open {
    display: none;
  }
  .acrd.open .icon-close {
    display: inline-block;
  }
  .acrd ul {
    margin-top: 2rem;
  }
  .acrd.open .acrd-bdy {
    opacity: 1;
    max-height: 800px;
  }
  .footer-accordion .footer-heading {
    line-height: 2.4rem;
    margin: 0;
  }
}
@media (min-width: 768px) {
  .acrd .acrd-bdy {
    opacity: 1;
    max-height: 800px;
  }
}
@media (max-width: 991px) {
  .footer-grid {
    flex-direction: column;
  }
  .footer-links-title {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .footer-socials {
    align-items: start;
  }
  .footer-checkout {
    margin-left: 0;
  }
}
/* -------------------------------------------------------- */
