@import url("https://fonts.googleapis.com/css?family=Montserrat:700");

:root {
  --font-stack: -apple-system, system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-stack-heading: "Montserrat", sans-serif;
  --regular: 400;
  --bold: 700;
  --color-text: #555555;
  --color-light: #f0f0f0;
  --color-dark: #303035;
  --color-brand: #ab2425;
  --color-orange: #ea9b00;
  --color-red: #d0021b;
  --color-border: #ebebeb;
  --radius: 3px;
}

/* Defaults */
* {
  margin: 0;
  padding: 0;
  border: none;
  border-collapse: collapse;
  /* outline: 2px dotted blue; */
  letter-spacing: -0.03em;
  list-style: none;
}

.version2 {
  display: none !important;
}

body {
  background: white;
  font-family: var(--font-stack);
  font-size: 16px;
  font-weight: var(--regular);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

/* Mobile/desktop switches */
@media screen and (min-width: 769px) {
  .mobile {
    display: none;
  }
}

/* Main sections */
main:not(.home):not(.error-404):not(.brands):not(.brandcollections):not(.categories-list):not(.list) {
  margin-top: 30px;
}

main > section {
  margin-bottom: 30px;
}

main .section {
  position: relative;
  padding: 0 10px;
}

main section.padded {
  padding-top: 30px;
  padding-bottom: calc(30px - 16px);
}

main section.nomargin {
  margin-bottom: 0;
}

/* Headings */
h1,
.h1,
h2,
.h2,
#categories-atoz .mobile,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  font-family: var(--font-stack-heading);
  font-weight: var(--bold);
  color: var(--color-dark);
  margin-bottom: 20px;
}

h1,
.h1 {
  font-size: 30px;
}

h2,
.h2,
#categories-atoz .mobile {
  font-size: 24px;
}

h3,
.h3 {
  font-size: 17px;
}

h4,
.h4 {
  font-size: 16px;
  text-transform: uppercase;
}

h5,
.h5 {
  font-size: 16px;
}

h1 > a,
.h1 > a,
h2 > a,
.h2 > a,
#categories-atoz .mobile > a {
  font-family: var(--font-stack);
  font-weight: var(--regular);
  font-size: 16px;
  margin-left: 5px;
  color: var(--color-brand);
}

/* Typography */
.regular {
  font-family: var(--font-stack);
  font-weight: var(--regular);
}

.bold {
  font-weight: var(--bold);
}

.nowrap {
  white-space: nowrap;
}

sup {
  line-height: normal;
}

a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

a:hover {
  text-decoration: underline;
}

a.underlined {
  text-decoration: underline;
}

a.brand {
  color: var(--color-brand);
}

a.white {
  color: white;
}

a:focus,
details summary:focus {
  outline: 2px dotted var(--color-orange);
}

main ul li,
main ol li {
  margin-bottom: 10px;
}

main p {
  margin-bottom: 16px;
  line-height: 1.45em;
}

main ul.checkmarks {
  margin-bottom: 16px;
  line-height: 1.45em;
}

main ul.checkmarks li {
  position: relative;
  padding-left: 25px;
}

main ul.checkmarks li:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url(/site/v3/images/icon-tick.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: 0;
  top: 3px;
}

main ul.checkmarks li.cross:before {
  background-image: url(/site/v3/images/icon-cross-red.svg);
  width: 12px;
  height: 12px;
  top: 5px;
}

table td ul.checkmarks li:last-child {
  margin-bottom: 0;
}

small,
.small,
aside#filters .clerk-facet-count {
  font-size: 14px !important;
}

.smaller {
  font-size: 12px;
}

/* Utility styles */
.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.valign {
  vertical-align: middle;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.uppercase {
  text-transform: uppercase;
}

.hide {
  display: none;
}

hr {
  margin: 30px 10px;
  border-top: 2px solid var(--color-light);
}

hr.thin {
  margin: 5px 10px 20px 10px;
}

hr.nopadding {
  margin-left: 0;
  margin-right: 0;
}

/* Background colours */
.black-background {
  background-color: var(--color-dark);
}

.brand-background {
  background-color: var(--color-brand);
}

.orange-background {
  background-color: var(--color-orange);
}

.light-grey-background {
  background-color: var(--color-light);
}

.off-white-background {
  background-color: #f7f7f7;
}

.white-background {
  background-color: white;
}

/* Text colours */
.white {
  color: white;
}

.black {
  color: var(--color-dark);
}

.body-text {
  color: var(--color-text);
}

.brand {
  color: var(--color-brand);
}

.orange {
  color: var(--color-orange);
}

.light-grey,
aside#filters .clerk-facet-count {
  color: rgba(48, 48, 53, 0.5);
}

.price,
.red {
  color: var(--color-brand);
}

.error {
  color: var(--color-orange);
}

.error:before {
  content: "\26A0";
  margin-right: 4px;
  font-size: 18px;
}

/* Margins and paddings */
.nomargin {
  margin: 0 !important;
}

.padding {
  padding: 10px;
}

.spacer-top {
  margin-top: 10px;
}

.spacer-bottom {
  margin-bottom: 10px;
}

.spacer-right {
  margin-right: 10px;
}

.spacer-left {
  margin-left: 10px;
}

/* Native Browser Tabs */
details {
  margin-bottom: 20px;
}

details summary {
  box-sizing: border-box;
  position: relative;
  background: var(--color-light);
  padding: 12px 15px 12px 32px;
  cursor: pointer;
  font-family: var(--font-stack);
  font-weight: 600;
  font-size: 18px;
  color: #303035;
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary:before {
  position: absolute;
  left: 10px;
  top: 12px;
  content: "\25bc";
}

details[open] summary:before {
  transform: scaleY(-1);
}

details summary img {
  width: 24px;
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 8px;
}

details > div {
  padding: 10px;
}

details > p,
details > .content {
  display: block;
  padding-top: 10px;
}

/* Tooltips */
.tooltip {
  position: relative;
  cursor: default;
}

span.js--tooltip {
  position: absolute;
  z-index: 100;
  background-color: var(--color-dark);
  color: var(--color-light);
  font-family: var(--font-stack);
  font-size: 15px;
  padding: 3px 4px;
  border-radius: var(--radius);
  white-space: nowrap;
}

/* Return to top */
#return-top {
  display: block;
  position: fixed;
  bottom: 20px;
  right: calc(50% - 20px);
  z-index: 100;
  width: 40px;
  height: 40px;
  background-color: var(--color-orange);
  border-radius: var(--radius);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  cursor: pointer;
}

#return-top span {
  display: block;
  height: 40px;
  width: 40px;
  background-image: url(/site/v3/images/icon-dropdown-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 35% auto;
  cursor: pointer;
}

#return-top:hover span {
  -webkit-animation: return-top 1.5s ease-out infinite;
  animation: return-top 1.5s ease-out infinite;
}

/* Content styles */
.content a {
  color: var(--color-brand);
  background-color: white;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.content a:hover {
  color: white;
  background-color: var(--color-dark);
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.content ul {
  margin-left: 16px;
  margin-bottom: 16px;
}

.content ul li {
  list-style: disc;
  line-height: 1.45em;
}

.content ol {
  margin-left: 16px;
  margin-bottom: 16px;
}

.content ol li {
  list-style: decimal;
  line-height: 1.45em;
}

.content img {
  max-width: 100%;
}

.page .content > h2,
.page .content > .h2,
.page #categories-atoz .content > .mobile,
#categories-atoz .page .content > .mobile,
.page .content > h3,
.page .content > .h3 {
  margin-top: 36px;
}

/* Table styles */
table {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}

table th,
table td {
  border: 1px solid var(--color-border);
  padding: 9px 10px;
  line-height: 1.45em;
}

table th h4,
table th .h4,
table td h4,
table td .h4 {
  margin-bottom: 0;
}

table th strong,
table td strong {
  font-weight: 600;
}

table th.top,
table td.top {
  vertical-align: top;
}

table th {
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}

table th:empty {
  display: none;
}

table thead.sticky th,
table thead.sticky td {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

table.border {
  border: 4px solid var(--color-border);
}

table.borderless th,
table.borderless td {
  border: none;
  padding: 9px 10px;
}

table.borderless th .button.stretch,
table.borderless th #global-promo-bar a.stretch,
#global-promo-bar table.borderless th a.stretch,
table.borderless th #gdpr-cookie-message button.stretch,
#gdpr-cookie-message table.borderless th button.stretch,
table.borderless td .button.stretch,
table.borderless td #global-promo-bar a.stretch,
#global-promo-bar table.borderless td a.stretch,
table.borderless td #gdpr-cookie-message button.stretch,
#gdpr-cookie-message table.borderless td button.stretch {
  width: calc(100% - 20px);
}

table.borderless thead tr:last-child th,
table.borderless thead tr:last-child td {
  border-bottom: 1px solid var(--color-border);
}

table.borderless tbody th,
table.borderless tbody td {
  padding: 20px 10px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

table.borderless tfoot tr:first-child th,
table.borderless tfoot tr:first-child td {
  padding-top: 20px;
}

table.reduced-padding tbody th,
table.reduced-padding tbody td {
  padding: 10px;
}

/* Comparison table */
.comparison-table-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
}

.comparison-table-heading div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.comparison-table-heading div h4,
.comparison-table-heading div .h4 {
  font-size: 21px;
  margin-bottom: 0;
}

.comparison-table {
  overflow-x: auto;
  margin-bottom: 0;
}

.comparison-table:not(:last-child) {
  border-bottom: 8px solid var(--color-border);
}

@supports (display: grid) {
  table.comparison {
    display: -ms-grid;
    display: grid;
    grid-gap: 0;
  }

  table.comparison thead,
  table.comparison tbody,
  table.comparison tfoot,
  table.comparison tr {
    display: contents;
  }
}

table.comparison {
  margin-bottom: 0;
  table-layout: fixed;
  width: auto;
  min-width: 100%;
}

table.comparison tbody th,
table.comparison tbody td {
  width: calc(100% - 20px);
}

table.comparison tbody h3,
table.comparison tbody .h3,
table.comparison tbody .h4 {
  line-height: normal;
}

table.comparison tbody tr > td:not(.white-background):first-child {
  background-color: #fcfbfb;
}

table.comparison tbody tr > td:first-child {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  border-right: 1px solid var(--color-border);
}

table.comparison tbody .image {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 100%;
}

table.comparison.borderless tbody th,
table.comparison.borderless tbody td {
  padding: 9px 10px;
}

table.comparison.borderless tbody th.noborder,
table.comparison.borderless tbody td.noborder {
  border-bottom: none;
}

/* Flexbox */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 10px;
}

.flex.nopadding {
  padding: 0;
}

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

.flex.left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex.right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex.middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex.stretch > * {
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

form .flex,
.flex.flex-top {
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}

/* Grids */
@supports (display: grid) {
  .grid-2 {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-gap: 30px;
  }
}

@supports not (display: grid) {
  .grid-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .grid-2 > div {
    width: calc(50% - 15px);
    margin-bottom: 30px;
  }
}

@supports (display: grid) {
  .grid-4 {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(4, minmax(calc(25% - 30px), auto));
    grid-gap: 30px;
  }
}

@supports not (display: grid) {
  .grid-4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .grid-4 > div,
  .grid-4 > ul {
    width: calc(25% - 20px);
  }
}

@supports (display: grid) {
  .grid-5 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: calc(20% - 24px) [auto-fill];
    grid-template-columns: repeat(auto-fill, calc(20% - 24px));
    grid-gap: 30px;
  }
}

@supports not (display: grid) {
  .grid-5 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .grid-5 > div {
    width: calc(20% - 25px);
  }
}

/* Columns */
.columns {
  -webkit-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 30px;
  column-gap: 30px;
}

.w30 {
  width: 30%;
}

.w33 {
  width: 33.33%;
}

.w45 {
  width: 45%;
}

.w50 {
  width: 50%;
}

.w66 {
  width: 66.66%;
}

.w75 {
  width: 75%;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100%;
}

.fill-grid-5 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  grid-column-end: last;
}

/* Badges */
.badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  width: 70px;
  height: 70px;
  background-color: var(--color-orange);
  border-radius: 50%;
  color: white;
  text-transform: uppercase;
  font-family: var(--font-stack-heading);
  font-weight: var(--bold);
  font-size: 21px;
  line-height: 1;
  -webkit-transform: rotate(10deg);
  transform: rotate(10deg);
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}

/* Form fields */
input,
textarea {
  position: relative;
  font-family: var(--font-stack);
  font-size: 16px;
  color: var(--color-dark);
  background-color: var(--color-light);
  padding: 8px;
  border-radius: var(--radius);
}

input[readonly] {
  background-repeat: no-repeat;
  background-size: 24px auto;
  background-position: right center;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' enable-background='new 0 0 64 64'%3E%3Cpath d='M-237.7-401.3h-3v-6.4c0-6.2-5.1-11.3-11.3-11.3-6.2 0-11.3 5.1-11.3 11.3v6.4h-3v-6.4c0-7.9 6.4-14.3 14.3-14.3s14.3 6.4 14.3 14.3v6.4' transform='translate(284 430)' fill='%23828282' class='fill-134563'%3E%3C/path%3E%3Cpath d='M-239.2-374.1h-25.6c-2.6 0-4.8-2.2-4.8-4.8v-19.2c0-2.6 2.2-4.8 4.8-4.8h25.6c2.6 0 4.8 2.2 4.8 4.8v19.2c0 2.7-2.2 4.8-4.8 4.8zm-25.6-25.6c-.9 0-1.6.7-1.6 1.6v19.2c0 .9.7 1.6 1.6 1.6h25.6c.9 0 1.6-.7 1.6-1.6v-19.2c0-.9-.7-1.6-1.6-1.6h-25.6z' transform='translate(284 430)' fill='%23828282' class='fill-134563'%3E%3C/path%3E%3Cpath d='M-248.8-393.3c0 1.8-1.4 3.2-3.2 3.2s-3.2-1.4-3.2-3.2 1.4-3.2 3.2-3.2 3.2 1.5 3.2 3.2' transform='translate(284 430)' fill='%23828282' class='fill-134563'%3E%3C/path%3E%3Cpath d='M-251.2-393.3h-1.6l-1.6 9.6h4.8l-1.6-9.6' transform='translate(284 430)' fill='%23828282' class='fill-134563'%3E%3C/path%3E%3C/svg%3E");
}

input.w33,
textarea.w33 {
  width: calc(33.33% - 16px);
}

input.w45,
textarea.w45 {
  width: calc(45% - 16px);
}

input.w50,
textarea.w50 {
  width: calc(50% - 16px);
}

input.w66,
textarea.w66 {
  width: calc(66.66% - 16px);
}

input.w75,
textarea.w75 {
  width: calc(75% - 16px);
}

input.w90,
textarea.w90 {
  width: calc(90% - 16px);
}

input.w100,
textarea.w100 {
  width: calc(100% - 16px);
}

input[readonly="readonly"],
textarea[readonly="readonly"] {
  cursor: not-allowed;
}

input.error,
textarea.error {
  background-color: #ffdde1 !important;
  color: var(--color-red);
}

input[type="checkbox"].error:before,
span.input-error {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-red);
  -webkit-animation: pulse-red 2s infinite;
  animation: pulse-red 2s infinite;
  position: absolute;
  top: 22px;
  left: -4px;
  z-index: 10;
}

input[type="checkbox"].error:before {
  top: -4px;
}

input[type="range"] {
  padding: 0;
}

input[type="number"] {
  display: inline-block;
  width: 42px;
  border-radius: var(--radius);
}

input[type="number"]:disabled,
input[type="text"]:disabled {
  cursor: not-allowed;
}

select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: var(--font-stack);
  font-size: 16px;
  color: var(--color-dark);
  padding: 8px 30px 8px 8px;
  background-color: var(--color-light);
  background-image: url("images/icon-dropdown.svg");
  background-size: 12px 12px;
  background-position: calc(100% - 10px) center;
  background-repeat: no-repeat;
  border-radius: var(--radius);
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--color-light);
  cursor: pointer;
  padding: 0;
  margin-right: 8px;
  vertical-align: text-bottom;
}

input[type="checkbox"]:checked {
  background-image: url("images/icon-tick.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
}

input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--color-light);
  cursor: pointer;
  padding: 0;
  margin-right: 8px;
  vertical-align: text-bottom;
  position: relative;
}

input[type="radio"]:checked:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--color-brand);
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 2px;
}

/* Buttons */
.button,
#global-promo-bar a,
#gdpr-cookie-message button {
  background-color: var(--color-brand);
  color: white;
  border: none;
  text-transform: uppercase;
  text-align: center;
  padding: 15px 10px;
  border-radius: var(--radius);
  font-family: var(--font-stack);
  font-size: 16px;
  font-weight: var(--regular);
  cursor: pointer;
}

.button.small,
#global-promo-bar a.small,
#global-promo-bar aside#filters a.clerk-facet-count,
aside#filters #global-promo-bar a.clerk-facet-count,
aside#filters .button.clerk-facet-count,
aside#filters #gdpr-cookie-message button.clerk-facet-count,
#gdpr-cookie-message aside#filters button.clerk-facet-count,
#gdpr-cookie-message button.small {
  padding: 8px;
  font-weight: 500;
}

.button.large,
#global-promo-bar a.large,
#gdpr-cookie-message button.large {
  padding: 20px 10px;
}

.button.stretch,
#global-promo-bar a.stretch,
#gdpr-cookie-message button.stretch {
  width: calc(100% - 30px);
}

.button.disabled,
#global-promo-bar a.disabled,
#gdpr-cookie-message button.disabled,
.button:disabled,
#global-promo-bar a:disabled,
#gdpr-cookie-message button:disabled {
  background-color: #9b9b9b !important;
  cursor: not-allowed;
}

.button.unstyled,
#global-promo-bar a.unstyled,
#gdpr-cookie-message button.unstyled {
  background-color: #dcdcdc;
  color: var(--color-text);
}

.button.shadow,
#global-promo-bar a.shadow,
#gdpr-cookie-message button.shadow {
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.5);
}

a.button,
#global-promo-bar a {
  display: inline-block;
  padding: 14px 10px;
}

.button.dark {
  background-color: var(--color-dark);
}

button.wishlist {
  border-radius: var(--radius);
  background-color: var(--color-light);
  background-image: url(images/icon-star.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 21px 21px;
  width: 46px;
  height: 46px;
  cursor: pointer;
}

button.wishlist.active {
  background-color: #faecd0;
  background-image: url(images/icon-star-orange.svg);
}

.form-input {
  position: relative;
  padding-bottom: 16px;
}

.form-input label {
  display: block;
  padding-bottom: 8px;
  font-weight: 700;
  color: var(--color-dark);
}

.form-input label.required {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.form-input label.required:after {
  content: "Required";
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-red);
}

.form-input label.required span.red {
  display: none;
}

.form-input div {
  position: relative;
}

.form-input small,
.form-input .small,
.form-input aside#filters .clerk-facet-count,
aside#filters .form-input .clerk-facet-count {
  padding-top: 8px;
}

/* Breadcrumb */
ul.breadcrumb {
  color: #9b9b9b;
  font-size: 14px;
}

@media screen and (min-width: 1024px) {
  ul.breadcrumb {
    margin-bottom: 20px;
  }
}

ul.breadcrumb li {
  display: inline-block;
  position: relative;
}

ul.breadcrumb li:not(:last-child) {
  margin-right: 8px;
  padding-right: 18px;
}

ul.breadcrumb li:not(:last-child):after {
  position: absolute;
  right: 0;
  top: 4.5px;
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  background-image: url(images/icon-dropdown.svg);
  background-repeat: no-repeat;
  background-size: 9px 9px;
  background-position: center;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

ul.breadcrumb.white {
  color: white;
}

ul.breadcrumb.white li:not(:last-child):after {
  background-image: url(images/icon-dropdown-white.svg);
}

/* Global promotion bar */
#global-promo-bar {
  position: relative;
  z-index: 20;
  padding: 10px;
  text-align: center;
  color: white;
  background: #004069;
  font-weight: 500;
  -webkit-box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.15);
}

#global-promo-bar div.icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: text-bottom;
}

#global-promo-bar div.icon.icon-discount {
  background-image: url(/site/v3/images/icon-discount.svg);
}

#global-promo-bar div.icon.icon-news {
  background-image: url(/site/v3/images/icon-news.svg);
}

#global-promo-bar div.icon.icon-sale {
  background-image: url(/site/v3/images/icon-sale.svg);
}

#global-promo-bar div.icon.icon-alert {
  background-image: url(/site/v3/images/icon-alert.svg);
}

#global-promo-bar div.icon.icon-target {
  height: 18px;
  width: 18px;
  background-image: url(/site/v3/images/favicon.png);
}

#global-promo-bar a {
  line-height: normal;
  text-transform: uppercase;
  display: inline-block;
  padding: 5px 10px;
  background: white;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.05em;
  color: var(--color-brand);
  margin: 2px 5px;
  -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.3);
}

/* Header */
header {
  position: relative;
  z-index: 100;
  background-color: white;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.3);
}

header .top {
  height: 35px;
  text-transform: uppercase;
  background: #f9f9f9;
  font-size: 14px;
}

header .top strong {
  font-size: 13px;
}

header .top ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .top ul li {
  margin-left: 10px;
}

header #account-menu {
  position: relative;
}

header #account-menu > a {
  background-image: url(images/icon-dropdown.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 5px) center;
  background-size: 10px 10px;
  padding-right: 20px;
}

header #account-menu ul {
  display: none;
  position: absolute;
  top: 25px;
  left: 0;
  z-index: 1;
  background-color: white;
  padding: 15px 10px 5px 10px;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.4);
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  text-transform: none;
  font-size: 16px;
}

header #account-menu ul li {
  padding-left: 15px;
  padding-bottom: 10px;
  margin-left: 0;
  background-image: url(images/icon-arrow-orange.svg);
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: left 3px;
}

header #account-menu ul li a {
  white-space: nowrap;
}

header .middle {
  padding-top: 10px;
  padding-bottom: 10px;
}

header .search {
  position: relative;
  /* width: calc(45% - 20px); */
  background: var(--color-light);
  height: 40px;
  border-radius: var(--radius);
  padding-right: 0;
}

header .search input {
  width: 55%;
}

header .search select {
  border: none;
  max-width: 40%;
}

header .search button {
  height: 40px;
  width: 45px;
  text-align: center;
  background-color: var(--color-brand);
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  cursor: pointer;
}

header .counter {
  width: 23%;
}

header .counter div {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 3px 10px;
  border-radius: var(--radius);
  border: 1px solid var(--color-orange);
  background: var(--color-orange);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5cf33), to(var(--color-orange)));
  background-image: linear-gradient(-180deg, #f5cf33 0%, var(--color-orange) 100%);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
  line-height: 16px;
  margin-bottom: 3px;
}

header .counter div img {
  margin-right: 5px;
}

header .counter:hover {
  text-decoration: none;
}

/* Main navigation menu */
nav {
  background: var(--color-dark);
  min-height: 40px;
  position: relative;
}

nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

nav > ul > li {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

nav > ul > li img {
  vertical-align: bottom;
}

nav > ul > li.dropdown > a {
  background-image: url("images/icon-dropdown-white.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 12px 12px;
  padding-right: 20px;
}

nav > ul > li#menu-departments {
  background-color: var(--color-brand);
  padding: 0 8px;
  font-weight: var(--bold);
}

nav > ul > li#menu-departments > a {
  background-image: url("images/icon-dropdown-white.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 12px 12px;
  padding-right: 20px;
}

nav > ul > li.menu-list {
  border-right: none !important;
}

nav > ul > li.menu-list a {
  color: var(--color-orange);
}

.menu-basket {
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.menu-basket i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-dark);
  color: white;
  position: absolute;
  top: -4px;
  left: 2px;
  font-size: 13px;
  font-weight: var(--bold);
  font-style: normal;
  -webkit-animation: pulse-red 2s infinite;
  animation: pulse-red 2s infinite;
}

nav > ul a {
  color: white;
}

nav > ul:first-child li {
  margin-right: 35px;
}

nav > ul:last-child li {
  font-size: 14px;
  margin-left: 35px;
  border-right: 1px solid var(--color-text);
  margin-left: 13px;
  padding: 0 13px 0 0;
}

nav > ul:last-child li:last-child {
  border-right: none;
}

nav li.dropdown ul {
  display: none;
  position: absolute;
  top: 40px;
  left: -15px;
  background-color: white;
  padding: 15px 20px 5px 15px;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.4);
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  text-align: left;
}

nav li.dropdown ul li {
  padding-left: 15px;
  padding-bottom: 15px;
  margin-right: 0;
  margin-left: 0;
  background-image: url("images/icon-arrow-orange.svg");
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: left 3px;
}

nav li.dropdown ul li a {
  color: var(--color-text);
  white-space: nowrap;
}

nav li.dropdown.open > a {
  color: var(--color-orange);
}

nav li#menu-departments {
  position: static;
}

nav li#menu-departments ul.departments-all {
  display: none;
  background: white;
  position: absolute;
  top: 40px;
  left: 10px;
  right: 10px;
  z-index: 90;
  text-align: left;
  font-weight: normal;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.4);
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

nav li#menu-departments ul.departments-all > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

nav li#menu-departments ul.departments-all li {
  margin: 0;
}

nav li#menu-departments ul.departments-all ul.departments {
  width: 20%;
  background: var(--color-dark);
  padding: 10px 0;
}

nav li#menu-departments ul.departments-all ul.departments li {
  position: relative;
  border-top: 1px solid #242428;
}

nav li#menu-departments ul.departments-all ul.departments li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 40px;
  padding: 0 10px;
  font-weight: var(--bold);
}

nav li#menu-departments ul.departments-all ul.departments a.active {
  position: relative;
  background: var(--color-orange);
  background: -webkit-gradient(linear, left bottom, left top, from(var(--color-orange)), to(#efbd5c));
  background: linear-gradient(0deg, var(--color-orange) 0%, #efbd5c 100%);
  -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.15);
}

nav li#menu-departments ul.departments-all ul.departments a.active:after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: var(--color-orange);
  background: linear-gradient(-45deg, var(--color-orange) 0%, #efbd5c 100%);
  position: absolute;
  right: -15px;
  top: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

nav li#menu-departments ul.departments-all ul.department-categories {
  width: calc(80% - 30px);
  max-height: 650px;
  overflow-y: auto;
  padding: 20px 0 10px 0;
}

nav li#menu-departments ul.departments-all ul.department-categories li {
  padding-bottom: 10px;
}

nav li#menu-departments ul.departments-all ul.department-categories li:not(.h3) a {
  color: var(--color-text);
}

nav li#menu-departments ul.departments-all ul.department-categories li.h3 a {
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 3px;
  color: var(--color-dark);
}

nav li#menu-departments ul.departments-all li.department {
  display: none;
}

@supports (display: grid) {
  nav li#menu-departments ul.departments-all li.department.active {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-gap: 30px;
  }
}

@supports not (display: grid) {
  nav li#menu-departments ul.departments-all li.department.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  nav li#menu-departments ul.departments-all li.department.active ul {
    width: 30%;
    margin-right: 30px;
    margin-bottom: 30px;
  }
}

nav li#menu-departments ul.departments-all li.department a.mobile {
  display: none;
}

@media screen and (min-width: 769px) {
  nav:not(.mobile) {
    left: 0 !important;
  }

  nav:not(.mobile) .department ul {
    display: block !important;
  }

  nav:not(.mobile) .department ul li {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  nav {
    background: var(--color-dark);
    min-height: unset;
    position: fixed;
    z-index: 100;
    display: block !important;
    width: 300px;
    top: 0;
    left: -310px;
    bottom: 0;
    -webkit-box-shadow: 6px 0 10px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 6px 0 10px 0 rgba(0, 0, 0, 0.2);
    overflow-x: hidden;
    overflow-y: auto;
  }

  nav.flex {
    padding: 0;
  }

  nav ul {
    display: block;
    width: 100% !important;
    margin: 0 !important;
  }

  nav li.menu-basket {
    display: none !important;
  }

  nav li#menu-departments {
    margin: 0 !important;
    padding: 0 !important;
  }

  nav li#menu-departments > a {
    display: none;
  }

  nav li#menu-departments ul.departments-all {
    display: block !important;
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  nav li#menu-departments ul.departments-all ul.departments {
    display: none;
  }

  nav li#menu-departments ul.departments-all ul.department-categories {
    width: 100%;
    padding: 0;
    max-height: unset;
    overflow-y: visible;
  }

  nav li#menu-departments ul.departments-all ul.department-categories li {
    padding-bottom: 0;
  }

  nav li#menu-departments ul.departments-all li.department:not(.brands-grid) {
    display: block !important;
  }

  nav li#menu-departments ul.departments-all li.department:not(.brands-grid) a.mobile {
    position: relative;
    display: block;
    background-color: var(--color-dark);
    padding: 10px;
    font-weight: var(--bold);
    color: white;
    border-bottom: 1px solid #242428;
  }

  nav li#menu-departments ul.departments-all li.department:not(.brands-grid) a.mobile:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 10px;
    top: 12px;
    background-image: url(images/icon-dropdown-white.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 12px 12px;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }

  nav li#menu-departments ul.departments-all li.department:not(.brands-grid) a.mobile.open:after {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }

  nav li#menu-departments ul.departments-all li.department:not(.brands-grid) a.mobile.open {
    color: var(--color-orange);
  }

  nav li#menu-departments ul.departments-all li.department:not(.brands-grid) ul {
    display: none;
    background: white;
  }

  nav li#menu-departments ul.departments-all li.department:not(.brands-grid) ul .h3 {
    font-size: 16px;
    font-family: var(--font-stack);
    padding-left: 20px;
    font-weight: var(--regular);
  }

  nav li#menu-departments ul.departments-all li.department:not(.brands-grid) ul .h3 a {
    position: relative;
    border-bottom: none;
    color: var(--color-brand);
    background-color: transparent;
  }

  nav li#menu-departments ul.departments-all li.department:not(.brands-grid) ul .h3 a:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 10px;
    top: 10px;
    background-image: url(images/icon-dropdown.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 12px 12px;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }

  nav li#menu-departments ul.departments-all li.department:not(.brands-grid) ul .h3 a.open:after {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }

  nav li#menu-departments ul.departments-all li.department:not(.brands-grid) ul .h3 a.open {
    color: var(--color-dark);
    font-weight: var(--bold);
  }

  nav li#menu-departments ul.departments-all li.department:not(.brands-grid) ul li {
    border-bottom: 1px solid var(--color-border);
  }

  nav li#menu-departments ul.departments-all li.department:not(.brands-grid) ul li a {
    display: block;
    padding: 10px 0;
    color: var(--color-text);
  }

  nav li#menu-departments ul.departments-all li.department:not(.brands-grid) ul li:not(.h3) {
    display: none;
    border-bottom-color: white;
  }

  nav li#menu-departments ul.departments-all li.department:not(.brands-grid) ul li:not(.h3) a {
    padding-left: 30px;
    background-color: var(--color-light);
  }

  nav > ul > li:not(#menu-departments) {
    display: block;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
  }

  nav > ul > li:not(#menu-departments) > a {
    position: relative;
    display: block;
    background-color: var(--color-dark);
    padding: 10px;
    font-weight: var(--bold);
    color: white;
    border-bottom: 1px solid #242428;
  }

  nav > ul > li:not(#menu-departments).dropdown a {
    background-position: calc(100% - 12px) center;
  }

  nav > ul > li:not(#menu-departments).dropdown.open > a {
    color: var(--color-orange);
  }

  nav > ul > li:not(#menu-departments).dropdown ul {
    position: static;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: none;
    padding: 0;
  }

  nav > ul > li:not(#menu-departments).dropdown ul li {
    margin-left: 0;
    padding: 0 0 0 20px;
    border-bottom: 1px solid var(--color-border);
    background: none;
  }

  nav > ul > li:not(#menu-departments).dropdown ul li a {
    display: block;
    color: var(--color-brand);
    padding: 10px 0;
  }

  nav > ul:last-child li {
    font-size: 16px;
    margin-left: 0;
  }

  nav > ul:last-child li img {
    margin-right: 4px;
  }
}

#mobileMenu,
#mobileMenuClose,
#mobileBasket {
  display: none;
  width: 35px;
  height: 50px;
  background-color: transparent;
}

nav li#menu-departments ul.departments-all li.department.active.brands-grid {
  padding: 10px;
  margin-right: 10px;
  -ms-grid-columns: (minmax(100px, 1fr)) [auto-fill];
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  grid-gap: 10px;
}

nav li#menu-departments ul.departments-all li.department.active.brands-grid div {
  height: 100px;
  padding-top: 0;
  padding-bottom: 0;
}

nav li#menu-departments ul.departments-all li.department.active.brands-grid div img.w75 {
  width: 100%;
}

/* USPs bar */
.usps {
  text-transform: uppercase;
  font-size: 15px;
}

.usps ul {
  padding: 0;
}

@supports (display: grid) {
  .usps ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: calc(25% - 1px) calc(25% - 1px) calc(25% - 1px) 25%;
    grid-template-columns: calc(25% - 1px) calc(25% - 1px) calc(25% - 1px) 25%;
    grid-gap: 0 1px;
  }
}

@supports not (display: grid) {
  .usps ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.usps ul li {
  background-color: var(--color-light);
  padding: 15px 10px;
  text-align: center;
}

@supports not (display: grid) {
  .usps ul li {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    margin-left: 1px;
  }
}

.usps img {
  margin-top: -2px;
  margin-right: 4px;
}

/* Footer */
footer {
  position: relative;
  z-index: 0;
  padding: 20px 0;
  background-color: var(--color-dark);
  color: white;
}

footer:hover {
  z-index: 100;
}

footer .grid-4 {
  margin-left: 10px;
  margin-right: 10px;
}

footer h4,
footer .h4 {
  color: white;
  text-transform: none;
}

footer ul li {
  margin: 10px 0;
}

footer a {
  color: inherit;
}

footer .mailing-list {
  background: var(--color-light);
  border-radius: var(--radius);
  padding: 4px;
  margin: 24px 0;
}

footer .mailing-list input {
  width: 60%;
}

footer hr {
  margin: 25px 10px 20px 10px;
  border-color: rgba(176, 182, 197, 0.2);
}

/* Homepage intro */
#h-intro {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-light);
  padding: 50px 0;
  min-height: 120px;
}

#h-intro h1,
#h-intro .h1 {
  color: white;
  font-size: 48px;
  text-shadow: 0 3px 3px rgba(0, 0, 0, 0.5);
  margin: 0 45% 0 0;
  padding: 0 0 15px 0;
}

#h-intro p img {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  vertical-align: middle;
}

/* Categories */
#categories {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f9f9f9;
  padding: 50px 0;
}

.categories div {
  background: white;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
}

.categories div h3,
.categories div .h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 10px;
  height: 60px;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 0;
}

.categories div ul {
  padding: 5px 10px;
  line-height: 1.5em;
}

.categories div ul li {
  margin: 10px 0;
  padding-left: 15px;
  background-image: url("images/icon-arrow-orange.svg");
  background-repeat: no-repeat;
  background-size: 10px 10px;
  background-position: left 7px;
}

section:not(#categories) .categories li:last-child {
  background: none;
}

/* Homepage promotion blocks */
#h-promotions {
  padding-bottom: 20px;
}

#h-promotions .promotion {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 345px;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#h-promotions .promotion .title {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 40%;
}

#h-promotions .promotion .title > div {
  margin-bottom: 10px;
}

#h-promotions .promotion h2,
#h-promotions .promotion .h2,
#h-promotions .promotion #categories-atoz .mobile,
#categories-atoz #h-promotions .promotion .mobile {
  display: inline;
  background-color: var(--color-dark);
  color: white;
}

#h-promotions .promotion p.price {
  display: inline-block;
  background-color: var(--color-dark);
  color: white;
  font-size: 25px;
}

#h-promotions .promotion p.summary {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark);
  color: white;
  padding: 15px 20px;
  margin-bottom: 0;
}

#h-promotions .special.promotion {
  padding: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#h-promotions .special.promotion .badge {
  width: auto;
  height: auto;
  -webkit-transform: unset;
  transform: unset;
  border-radius: 5px;
  padding: 0 8px;
  position: static;
  margin-bottom: 10px;
  font-size: 18px;
}

#h-promotions .special.promotion div.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#h-promotions .special.promotion h2,
#h-promotions .special.promotion .h2,
#h-promotions .special.promotion #categories-atoz .mobile,
#categories-atoz #h-promotions .special.promotion .mobile {
  margin-bottom: 0;
}

#h-promotions .special.promotion p {
  margin: 0;
}

/* Homepage brands slider */
#brands {
  margin-bottom: 40px;
}

#brands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(124px, 1fr));
  grid-gap: 0 30px;
  align-items: center;
  text-align: center;
}

#brands img {
  width: 100%;
  height: auto;
}

.brands-grid {
  background-color: var(--color-light);
  padding: 30px 10px;
}

.brands-grid div {
  background-color: white;
  width: calc(100% - 20px);
  height: 175px;
  padding-top: 10px;
  padding-bottom: 10px;
}

@supports (display: grid) {
  .brands-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(175px, 1fr) [auto-fill];
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    grid-gap: 10px;
  }
}

@supports not (display: grid) {
  .brands-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .brands-grid > div {
    width: 175px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 10px;
  }
}

/* Brand collection pages */
main.brandcollections #h-intro {
  position: relative;
  padding: 70px 0;
}

main.brandcollections #h-intro .breadcrumb {
  position: absolute;
  left: 10px;
  top: 20px;
}

main.brandcollections #h-intro .brand-logo {
  width: 110px;
  height: 110px;
  padding: 3px;
  margin-bottom: 15px;
  background: white;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.5);
}

main.brandcollections #h-intro .brand-logo img {
  width: 95%;
  margin: 0 auto;
}

main.brandcollections #h-intro p {
  font-size: 18px;
  text-shadow: 0 3px 3px rgba(0, 0, 0, 0.5);
  margin-bottom: 50px;
}

main.brandcollections #h-intro .launch-video img {
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
}

main.brandcollections #h-intro .launch-video img:hover {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

main.brandcollections #brand-intro {
  position: relative;
  background-color: rgba(240, 240, 240, 0.5);
  min-height: 250px;
}

main.brandcollections #brand-intro > div:first-child {
  padding: 20px 0;
}

main.brandcollections #brand-intro h3,
main.brandcollections #brand-intro .h3 {
  margin-bottom: 10px;
}

main.brandcollections #brand-intro .brand-links {
  margin-top: 16px;
}

main.brandcollections #brand-intro .brand-links li {
  padding-left: 15px;
  background-image: url(images/icon-arrow-orange.svg);
  background-repeat: no-repeat;
  background-size: 10px 10px;
  background-position: left 4px;
}

main.brandcollections #brand-intro .brand-links li a {
  color: var(--color-brand);
}

main.brandcollections .brand-images {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

main.brandcollections .brand-image {
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
}

main.brandcollections .brand-image:first-child {
  left: 0;
  background-color: rgba(0, 0, 0, 0.016);
}

main.brandcollections .brand-image:last-child {
  right: 0;
  background-color: rgba(0, 0, 0, 0.008);
}

/* Homepage comments */
#comments {
  padding: 30px 0;
  margin-bottom: 0;
  background-color: #f6f6f6;
}

#comments .section {
  padding-top: 10px;
  padding-bottom: 10px;
}

#comments .comment {
  padding: 20px 10px 10px 10px;
  background-color: white;
  border: 1px solid var(--color-border);
  height: calc(100% - 30px);
}

#comments blockquote p:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 3px;
  background-image: url(images/icon-quote.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}

#comments blockquote p:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 3px;
  background-image: url(images/icon-quote.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

#comments cite {
  font-style: normal;
  color: var(--color-brand);
}

#comments small {
  color: #9b9b9b;
}

/* Guides */
.guide .image {
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-bottom: calc(100% - 2px);
  border: 1px solid var(--color-border);
}

.guide .image img {
  display: none;
}

.guide .tag {
  color: #9b9b9b;
  text-transform: uppercase;
  font-size: 13px;
  margin-top: 20px;
  margin-bottom: 5px;
}

.guide h3,
.guide .h3 {
  margin-top: 0;
  font-family: var(--font-stack);
  font-size: 19px;
}

/* Delivery message */
.delivery-message {
  text-transform: uppercase;
  background-color: var(--color-brand);
  color: white;
  font-size: 13px;
  line-height: normal;
  padding: 15px 10px;
  margin-bottom: 16px;
}

/* Product grid page */
#product-sort {
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

#products {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

#products #filters,
#products .clerk-facets {
  width: 300px;
}

#products .products-grid {
  width: calc(100% - 330px);
}

#products .products-empty {
  width: calc(100% - 330px);
}

main.collection #products .products-grid {
  width: 100%;
}

button.js--category_desc_open {
  display: none;
}

@supports (display: grid) {
  .products-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(220px, 1fr) [auto-fill];
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    grid-gap: 30px;
  }
}

@supports not (display: grid) {
  .products-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .products-grid > div {
    width: 270px;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 30px;
  }
}

/* Pagination */
.pagination {
  margin-top: 50px;
}

.pagination ul {
  padding: 0px 0 50px 0;
}

.pagination ul li {
  display: inline-block;
  margin: 0 7px;
  text-transform: uppercase;
}

.pagination ul li a:not(.button),
.pagination ul li strong {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: var(--color-light);
  color: var(--color-brand);
}

.pagination ul li.current {
  border-bottom: 3px solid var(--color-orange);
  padding-bottom: 4px;
}

.pagination ul li.current strong {
  background-color: var(--color-brand);
  color: white;
}

.pagination ul li.prev a,
.pagination ul li.next a {
  width: auto;
  padding: 0 8px;
}

.pagination ul li.prev {
  margin-right: 30px;
}

.pagination ul li.next {
  margin-left: 30px;
}

/* Product card */
.product-card {
  position: relative;
  border: 1px solid var(--color-border);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.product-card:hover {
  -webkit-box-shadow: 0 6px 13px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 13px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

.product-card .badge {
  font-size: 19px;
}

.product-card h3,
.product-card .h3 {
  font-family: var(--font-stack);
  font-weight: normal;
  font-size: 16px;
  color: var(--color-dark);
  margin: 0 10px;
}

.product-card h3 a,
.product-card .h3 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 64px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-card .buy-options {
  margin-top: 10px;
  margin-bottom: 15px;
}

.product-card .buy-options button {
  height: 46px;
  padding: 0 10px;
}

.product-card .buy-options ul {
  padding: 0;
}

.product-card .buy-options ul li {
  margin-bottom: 0;
}

.product-card .buy-options ul li:last-child {
  margin-left: 6px;
}

.product-card .image {
  border-bottom: 1px solid var(--color-border);
  font-size: 0;
  min-height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.product-card .image > .button,
.product-card #global-promo-bar .image > a,
#global-promo-bar .product-card .image > a,
.product-card #gdpr-cookie-message .image > button,
#gdpr-cookie-message .product-card .image > button {
  display: none;
  position: absolute;
  z-index: 20;
  bottom: 0;
  right: 0;
  border-radius: 0;
}

.product-card .image img {
  width: 100%;
  height: 100%;
}

.product-card:hover .image > .button,
.product-card:hover #global-promo-bar .image > a,
#global-promo-bar .product-card:hover .image > a,
.product-card:hover #gdpr-cookie-message .image > button,
#gdpr-cookie-message .product-card:hover .image > button {
  display: block;
}

.product-card .price {
  font-size: 16px;
}

/* Recently viewed section */
#recently-viewed {
  margin-bottom: 40px;
}

#recently-viewed.products-grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

#recently-viewed:empty p.rv-empty-message {
  display: none !important;
}

.page #recently-viewed {
  counter-reset: rv;
}

.page #recently-viewed .product-card {
  counter-increment: rv;
}

.page #recently-viewed .product-card:before {
  content: counter(rv);
  display: block;
  width: 22px;
  height: 22px;
  background-color: white;
  color: var(--color-orange);
  position: absolute;
  left: -8px;
  top: -8px;
  border-radius: 50%;
  border: 2px solid var(--color-orange);
  text-align: center;
  line-height: 22px;
  font-size: 13px;
  font-weight: 600;
}

#related-items.js--related_items.truncate {
  overflow: hidden;
  padding-bottom: 60px;
}

#related-items.js--related_items #js--related-items-more {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  background: white;
  height: 60px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* Product filters */
.filter-toggle {
  display: none;
}

aside#filters {
  display: block;
  padding: 0;
  background-color: white;
}

aside#filters hr {
  margin-left: 0;
  margin-right: 0;
}

aside#filters h3,
aside#filters .h3 {
  margin-left: 0px;
  margin-right: 5px;
  margin-top: 0;
  padding-left: 0;
}

aside#filters h3 button,
aside#filters .h3 button {
  cursor: pointer;
}

aside#filters h4,
aside#filters .h4,
aside#filters .clerk-facet-group-title {
  font-family: var(--font-stack-heading);
  font-size: 13px;
  color: var(--color-dark);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

aside#filters section,
aside#filters .clerk-facet-group {
  margin: 20px 15px 20px 0;
  padding: 0;
  padding-bottom: 20px;
  border: none;
  border-right: none;
  border-left: none;
  border-top: none;
  border-bottom: 2px solid var(--color-border);
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

aside#filters section ul li,
aside#filters .clerk-facet-group ul li {
  margin: 10px 0;
}

aside#filters section ul li.swatch,
aside#filters .clerk-facet-group ul li.swatch {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
}

aside#filters section ul li.swatch label,
aside#filters .clerk-facet-group ul li.swatch label {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
}

aside#filters section ul li.swatch label input,
aside#filters .clerk-facet-group ul li.swatch label input {
  visibility: hidden;
}

aside#filters section ul li.swatch label input:checked:after,
aside#filters .clerk-facet-group ul li.swatch label input:checked:after {
  visibility: visible;
  position: absolute;
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  top: 0;
  left: 0;
  background-image: url(/site/v3/images/icon-tick-white.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 14px 14px;
}

aside#filters section ul.grid-2,
aside#filters .clerk-facet-group ul.grid-2 {
  grid-gap: 13px;
}

@media screen and (min-width: 769px) {

  aside#filters section ul.grid-2,
  aside#filters .clerk-facet-group ul.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

aside#filters section ul.grid-2 li,
aside#filters .clerk-facet-group ul.grid-2 li {
  margin: 0;
}

aside#filters section ul.grid-2 li input[type="checkbox"],
aside#filters .clerk-facet-group ul.grid-2 li input[type="checkbox"] {
  float: left;
  position: relative;
  top: -1px;
}

@supports not (display: grid) {

  aside#filters section ul.grid-2 li,
  aside#filters .clerk-facet-group ul.grid-2 li {
    width: 50%;
    margin: 5px 0;
  }
}

aside#filters section:not(.clerk-facet-group):nth-last-child(2),
aside#filters .clerk-facet-group:not(.clerk-facet-group):nth-last-child(2) {
  border-bottom: none;
}

aside#filters section:last-child,
aside#filters .clerk-facet-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

aside#filters input[type="checkbox"].hidden {
  visibility: hidden;
}

aside#filters input[type="range"],
aside#filters input[type="search"] {
  width: 100%;
  -webkit-appearance: none;
}

aside#filters select {
  width: 100%;
}

aside#filters button.filter-toggle {
  background: white;
}

aside#filters button.filter-toggle img {
  width: 20px;
  height: 20px;
}

aside#filters .clerk-facet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

aside#filters .clerk-facet.hidden {
  display: none !important;
}

aside#filters .clerk-facet-count {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  float: none;
  padding-top: 0;
  margin-left: 4px;
}

aside#filters .clerk-facet-count:before {
  content: " (";
}

aside#filters .clerk-facet-count:after {
  content: ")";
}

aside#filters .clerk-facet-name {
  text-overflow: ellipsis;
}

aside#filters .clerk-facet-name:before {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--color-light);
  cursor: pointer;
  padding: 0;
  margin-right: 8px;
  border: none;
}

aside#filters .clerk-facet-selected .clerk-facet-name {
  font-weight: var(--regular);
}

aside#filters .clerk-facet-selected .clerk-facet-name:before {
  background-image: url("images/icon-tick.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
}

aside#filters .clerk-range {
  margin: 0 auto;
  width: calc(100% - 24px);
}

/* Modal */
#modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 150;
}

#modal #modal-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: calc(750px - 40px);
  height: 75%;
  padding: 30px 20px 20px 20px;
}

#modal #modal-container {
  position: relative;
  border-radius: var(--radius);
  background: white;
  width: calc(100% - 70px);
  padding: 20px 20px 10px 20px;
  margin: 0;
  max-height: calc(100% - 60px);
  -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.5);
  overflow: auto;
}

#modal button#modal-close {
  position: fixed;
  right: 8px;
  top: 9px;
  display: block;
  height: 24px;
  width: 24px;
  background: transparent;
  font-size: 40px;
  color: white;
  cursor: pointer;
  text-indent: -99px;
  overflow: hidden;
  background-image: url(/site/v3/images/icon-cross-white.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 21px auto;
  opacity: 0.5;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}

#modal button#modal-close:hover {
  opacity: 1;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}

#modal button#nextProduct,
#modal button#prevProduct {
  position: absolute;
  top: 35%;
  display: block;
  width: 100px;
  height: 40px;
  background-color: transparent;
  background-image: url(/site/v3/images/icon-dropdown-white.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 75%;
  cursor: pointer;
  opacity: 0.5;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}

#modal button#nextProduct span,
#modal button#prevProduct span {
  display: none;
}

#modal button#nextProduct:hover,
#modal button#prevProduct:hover {
  opacity: 1;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}

#modal button#prevProduct {
  left: -55px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

#modal button#nextProduct {
  right: -55px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

#modal #modal-content {
  margin-top: 0;
}

#modal #modal-content .price {
  font-size: 30px;
}

#modal #modal-content .image {
  margin-bottom: 16px;
}

#modal #modal-content .quickview-image {
  min-height: 350px;
}

#modal #modal-content hr {
  margin-left: 0;
  margin-right: 0;
}

#modal #modal-content .button.stretch,
#modal #modal-content #global-promo-bar a.stretch,
#global-promo-bar #modal #modal-content a.stretch,
#modal #modal-content #gdpr-cookie-message button.stretch,
#gdpr-cookie-message #modal #modal-content button.stretch {
  display: block;
  width: calc(100% - 20px);
}

#modal.video #modal-wrapper {
  position: relative;
  width: 80%;
  height: auto;
  padding-top: 15px;
}

#modal.video #modal-container {
  width: calc(100% - 40px);
  height: unset;
  padding: 0;
}

#modal.video #modal-content {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

#modal.video #modal-content iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

#modal.table #modal-wrapper {
  width: 80%;
  height: 95%;
}

#modal.table #modal-container {
  width: calc(100% - 20px);
  padding: 0;
}

/* Cart and checkout */
#basket-coupon {
  padding-bottom: 14px;
}

#basket-coupon a {
  background-image: url("/site/v3/images/icon-dropdown.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 12px 12px;
  padding-bottom: 16px;
}

#basket-coupon div {
  padding-top: 10px;
  margin: 0 0 10px 0;
}

.js--basket_lineitem_qty {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.js--basket_lineitem_qty.updated {
  background-color: #d4f0e5;
  color: var(--color-brand);
}

main.checkout section {
  margin-bottom: 30px;
}

main.checkout #sticky-order-summary {
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
}

main.checkout #sticky-order-summary table {
  border: 1px solid var(--color-border);
}

main.checkout button.payment-option {
  margin-bottom: 20px;
}

main.checkout button.payment-option.payment-option-paypal {
  background-color: #003087;
}

main.checkout button.payment-option.payment-option-pay4later {
  background-color: #122e35;
}

main.checkout #TCAgreement {
  margin-top: 16px;
}

main.checkout #TCAgreement p {
  margin-top: 12px;
  color: var(--color-dark);
}

.payl8r-checkout-button:not(#payl8r_precheck_btn) {
  background-color: black;
  width: 100% !important;
  height: 63px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#payl8r_precheck_btn {
  background-color: black;
  max-height: 50px;
}

/* A to Z Categories page */
#categories-atoz .mobile {
  display: block;
  border-bottom: 2px solid var(--color-light);
  padding-bottom: 15px;
}

#categories-atoz ul {
  margin-bottom: 30px;
}

#categories-atoz ul li:not(:first-child) {
  margin: 10px 0;
  padding-left: 15px;
  background-image: url(images/icon-arrow-orange.svg);
  background-repeat: no-repeat;
  background-size: 10px 10px;
  background-position: left 5px;
}

/* Info cards */
#cards {
  position: fixed;
  width: 360px;
  bottom: 30px;
  right: 30px;
  z-index: 200;
}

#cards li {
  position: relative;
  bottom: 0;
  display: none;
  opacity: 0;
  background-color: white;
  border-radius: var(--radius);
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
  padding: 16px 16px 4px 16px;
  margin-bottom: 16px;
  -webkit-animation: card 5s ease-out forwards;
  animation: card 5s ease-out forwards;
}

#cards li:nth-child(1) {
  display: block;
  bottom: unset;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

#cards li:nth-child(2) {
  display: block;
  bottom: unset;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

#cards li:nth-child(3) {
  display: block;
  bottom: unset;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

#cards li:nth-child(4) {
  display: block;
  bottom: unset;
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

#cards li:nth-child(5) {
  display: block;
  bottom: unset;
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

#cards li div.flex {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

#cards li div.flex div:first-child {
  margin-right: 14px;
}

#cards li p {
  line-height: 1.45em;
  padding-bottom: 16px;
}

#cards li .button,
#cards li #global-promo-bar a,
#global-promo-bar #cards li a,
#cards li #gdpr-cookie-message button,
#gdpr-cookie-message #cards li button {
  font-size: 14px;
}

#cards li .button:first-child,
#cards li #global-promo-bar a:first-child,
#global-promo-bar #cards li a:first-child,
#cards li #gdpr-cookie-message button:first-child,
#gdpr-cookie-message #cards li button:first-child {
  margin-right: 8px;
}

/* GDPR cookies */
#gdpr-cookie-message {
  position: fixed;
  z-index: 200;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 16px 16px 6px 16px;
  background-color: white;
  border-top: 4px solid var(--color-light);
}

#gdpr-cookie-message h4,
#gdpr-cookie-message .h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  text-transform: none;
}

#gdpr-cookie-message h4:before,
#gdpr-cookie-message .h4:before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 21px;
  background-image: url(/site/v3/images/favicon.png);
  background-size: 16px auto;
  background-repeat: no-repeat;
  vertical-align: middle;
}

#gdpr-cookie-message p {
  display: inline-block;
  margin-right: 20px;
}

#gdpr-cookie-message p:not(:last-child) {
  line-height: 1.45em;
}

#gdpr-cookie-message a {
  text-decoration: underline;
  color: var(--color-brand);
}

#gdpr-cookie-message button {
  padding: 6px;
  margin: 10px 0;
  font-size: 14px;
}

#gdpr-cookie-message button#gdpr-cookie-advanced {
  display: none;
}

/* Owl Carousel */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.no-js .owl-carousel {
  display: block;
}

.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.owl-carousel {
  margin-bottom: 30px;
}

.owl-carousel .owl-stage-outer {
  z-index: 1 !important;
}

.owl-carousel .owl-stage {
  margin: 0 auto;
}

.owl-carousel .owl-dots {
  position: absolute;
  height: 20px;
  bottom: -40px;
  left: 0;
  right: 0;
  text-align: center;
}

.owl-carousel button.owl-dot {
  position: relative;
  border: 2px solid var(--color-brand);
  background: white;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  display: inline-block;
  margin: 0 2px;
}

.owl-carousel button.owl-dot span {
  position: absolute;
  top: 2px;
  left: 2px;
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: white;
}

.owl-carousel button.owl-dot.active span {
  background: var(--color-brand);
}

/* jQuery UI Slider */
#jqueryui-price-range-slider-label {
  padding: 0;
}

.ui-slider {
  background-color: var(--color-light);
  height: 16px;
  margin-left: 8px;
  margin-right: 8px;
}

.ui-widget.ui-widget-content {
  border: none;
  margin-top: 15px;
}

.ui-corner-all {
  border-radius: 20px;
}

.ui-widget-header {
  background: var(--color-brand);
}

.ui-slider-horizontal .ui-slider-range {
  height: 8px;
  top: 4px;
}

.ui-slider .ui-slider-handle {
  width: 10px;
  height: 10px;
}

.ui-widget-content .ui-state-default {
  border: 5px solid var(--color-orange);
  background: white;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  cursor: -webkit-grab;
  cursor: grab;
}

.ui-widget-content .ui-state-default:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -3px;
}

/* Animations */
@-webkit-keyframes pulse-orange {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(231, 161, 23, 0.6);
    box-shadow: 0 0 0 0 rgba(231, 161, 23, 0.6);
  }

  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(231, 161, 23, 0);
    box-shadow: 0 0 0 20px rgba(231, 161, 23, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(231, 161, 23, 0);
    box-shadow: 0 0 0 0 rgba(231, 161, 23, 0);
  }
}

@keyframes pulse-orange {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(231, 161, 23, 0.6);
    box-shadow: 0 0 0 0 rgba(231, 161, 23, 0.6);
  }

  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(231, 161, 23, 0);
    box-shadow: 0 0 0 20px rgba(231, 161, 23, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(231, 161, 23, 0);
    box-shadow: 0 0 0 0 rgba(231, 161, 23, 0);
  }
}

@-webkit-keyframes pulse-red {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(208, 2, 27, 0.6);
    box-shadow: 0 0 0 0 rgba(208, 2, 27, 0.6);
  }

  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(208, 2, 27, 0);
    box-shadow: 0 0 0 20px rgba(208, 2, 27, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(208, 2, 27, 0);
    box-shadow: 0 0 0 0 rgba(208, 2, 27, 0);
  }
}

@keyframes pulse-red {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(208, 2, 27, 0.6);
    box-shadow: 0 0 0 0 rgba(208, 2, 27, 0.6);
  }

  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(208, 2, 27, 0);
    box-shadow: 0 0 0 20px rgba(208, 2, 27, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(208, 2, 27, 0);
    box-shadow: 0 0 0 0 rgba(208, 2, 27, 0);
  }
}

@-webkit-keyframes card {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  99% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  100% {
    opacity: 0;
  }
}

@keyframes card {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  99% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes return-top {
  from {
    opacity: 0;
    background-position: center top;
  }

  20% {
    opacity: 0;
    background-position: center top;
  }

  65% {
    opacity: 1;
    background-position: center bottom;
  }

  to {
    opacity: 1;
    background-position: center bottom;
  }
}

@keyframes return-top {
  from {
    opacity: 0;
    background-position: center top;
  }

  20% {
    opacity: 0;
    background-position: center top;
  }

  65% {
    opacity: 1;
    background-position: center bottom;
  }

  to {
    opacity: 1;
    background-position: center bottom;
  }
}