@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  color: inherit;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
p, ul, ol, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

strong {
  font-weight: bold;
}

.container {
  width: 100%;
  margin-inline: auto;
  max-width: 1440px;
  padding-inline: 40px;
}
@media (max-width: 1024px) {
  .container {
    padding-inline: 30px;
  }
}
@media (max-width: 480px) {
  .container {
    padding-inline: 20px;
  }
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
  background-color: #fafafa;
}
body.no-scroll {
  overflow-y: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
}

label {
  color: inherit;
  color: #2b2d2f;
  cursor: text;
  font-family: inherit;
  font-size: inherit;
  font-size: 1em;
  font-style: inherit;
  font-weight: inherit;
  left: 0.5625em;
  letter-spacing: inherit;
  line-height: inherit;
  line-height: 1.5;
  margin: 0;
  max-width: calc(100% - 32px);
  overflow: hidden;
  position: absolute;
  text-decoration: inherit;
  text-overflow: ellipsis;
  text-transform: inherit;
  top: 1.562em;
  transform: translateY(-50%);
  transform-origin: top left;
  transition: all 0.2s ease;
}
.is-active label {
  top: 0;
  transform: translateY(4px) scale(0.75);
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password] {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0px;
  width: 100%;
  padding: 1.5em 0.5em 0.5em;
  border-radius: 4px;
  transition: all 300ms ease;
  border: 1px solid #505050;
  background-color: #ffffff;
  color: #2b2d2f;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=password]::-moz-placeholder {
  color: #A6A8AB;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder {
  color: #A6A8AB;
}
input[type=text]:hover, input[type=text]:focus,
input[type=email]:hover,
input[type=email]:focus,
input[type=tel]:hover,
input[type=tel]:focus,
input[type=number]:hover,
input[type=number]:focus,
input[type=password]:hover,
input[type=password]:focus {
  outline: none;
}

input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #ffffff;
  border: 1px solid #2551a3;
  border-radius: 4px;
  font-size: 1em;
  margin: 0 1em 0 0;
  width: 20px;
  height: 20px;
  min-height: 20px;
  min-width: 20px;
  overflow: hidden;
  position: relative;
  vertical-align: middle;
}

input[type=radio] {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 50%;
  display: inline-block;
  background: #ffffff;
  border: 2px solid #2551a3;
  top: 50%;
  left: 6px;
  margin: inherit;
  position: absolute;
  width: 20px;
  height: 20px;
  min-height: 20px;
  min-width: 20px;
  transform: translateY(-50%);
}
input[type=radio]:checked:before {
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  margin: 0;
  border-radius: 50%;
  position: absolute;
  width: 10px;
  height: 10px;
  min-height: 10px;
  min-width: 10px;
  background: #2551a3;
  transform: translate(-50%, -50%);
}

textarea {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0px;
  width: 100%;
  padding: 1.5em 0.5em 0.5em;
  border-radius: 4px;
  transition: all 300ms ease;
  border: 1px solid #505050;
  background-color: #ffffff;
  color: #2b2d2f;
  padding: 0.5em 0.5em;
}
textarea::-moz-placeholder {
  color: #A6A8AB;
}
textarea::placeholder {
  color: #A6A8AB;
}
textarea:hover, textarea:focus {
  outline: none;
}

select {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
  width: 100%;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 300ms ease;
  border: 1px solid #a2a1a1;
  background-color: #ffffff;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
select:hover, select:focus {
  outline: none;
  border: 1px solid #00ace6;
}
select:disabled {
  border: 1px solid #a2a1a1;
  background-color: #fafafa;
}

.icon {
  display: inline-block;
  margin-left: 0px;
  width: 16px;
  height: 16px;
  transition: all 300ms ease-in;
  background-repeat: no-repeat;
  vertical-align: sub;
}
.icon-chevron-right {
  background-image: url("../images/icons/icon_chevron-right.svg");
}

.wp-block-group {
  padding: 64px 0px;
}
@media (max-width: 768px) {
  .wp-block-group {
    padding: 48px 0px;
  }
}
.wp-block-group.intro-section {
  z-index: 99;
  margin-top: -200px;
  position: relative;
  background-color: transparent !important;
}
.wp-block-group.intro-section:before {
  content: "";
  position: absolute;
  top: 200px;
  left: 0px;
  bottom: 0px;
  width: 100%;
  background-color: #fafafa;
  z-index: -1;
}
@media (max-width: 768px) {
  .wp-block-group.intro-section {
    margin-top: -150px;
  }
  .wp-block-group.intro-section:before {
    top: 150px;
  }
}
.wp-block-group:last-of-type {
  padding-bottom: 96px !important;
}
.wp-block-group.has-dark-blue-background-color {
  background: #00ace6;
  background: linear-gradient(340deg, rgb(0, 0, 0) 0%, #2551a3 80%);
}
.wp-block-group.has-light-blue-background-color {
  background-color: #00ace6;
}
.wp-block-group.has-black-background-color {
  background-color: #1b1b1b;
}
.wp-block-group.has-white-background-color {
  background-color: #ffffff;
}
.wp-block-group.has-grey-10-background-color {
  background-color: #fafafa;
}
.wp-block-group.has-grey-20-background-color {
  background-color: #f2f2f2;
}
.wp-block-group.has-grey-30-background-color {
  background-color: #a2a1a1;
}
.wp-block-group.has-grey-60-background-color {
  background-color: #A6A8AB;
}
.wp-block-group.has-grey-80-background-color {
  background-color: #898888;
}
.wp-block-group.has-grey-90-background-color {
  background-color: #808384;
}
.wp-block-group.has-gradient-background {
  padding: 96px 0px;
  background-image: linear-gradient(270deg, #2551a3, #00ace6, #2551a3) !important;
  background-color: #00ace6 !important;
  box-shadow: 1px -20px 60px rgba(0, 0, 0, 0.15) !important;
}
@media (max-width: 768px) {
  .wp-block-group.has-gradient-background {
    background: #020024;
    background: linear-gradient(90deg, #2551a3 0%, #00ace6 100%) !important;
  }
}
.wp-block-group.faq-group h1, .wp-block-group.faq-group h2, .wp-block-group.faq-group h3, .wp-block-group.faq-group h4, .wp-block-group.faq-group h5, .wp-block-group.faq-group h6 {
  margin-top: 24px;
  margin-bottom: 16px;
}
.wp-block-group.is-contactform {
  background-repeat: no-repeat;
  background-position: top center;
  background-image: url("../images/retailer_top_clouds.svg") !important;
}
.wp-block-group .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-inline: auto;
  padding-inline: 40px;
  width: 100%;
  max-width: 1440px;
}
@media (max-width: 1220px) {
  .wp-block-group .wp-block-group__inner-container {
    padding-inline: 48px;
  }
}
@media (max-width: 768px) {
  .wp-block-group .wp-block-group__inner-container {
    padding: 0px 24px;
  }
}

.wp-block-columns {
  grid-column: 2/span 10;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 1220px) {
  .wp-block-columns {
    justify-content: center;
  }
}
@media (max-width: 1024px) {
  .wp-block-columns {
    grid-column: 1/span 12;
    flex-direction: column;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .wp-block-columns {
    grid-column: 1/span 12;
    gap: 20px;
  }
}
.retailers-page .wp-block-columns {
  grid-column: span 12 !important;
}
.has-gradient-background .wp-block-columns {
  flex-wrap: inherit !important;
  justify-content: flex-end;
}
.has-gradient-background .wp-block-columns .wp-block-column:last-child {
  display: flex;
  align-content: flex-end;
  align-items: center !important;
}
.wp-block-custom-tab .wp-block-columns {
  align-content: center;
  align-items: flex-start;
}
.wp-block-columns.column-spacing {
  gap: 40px !important;
}
.is-vertically-aligned .wp-block-columns {
  align-items: center !important;
}
.wp-block-columns.is-layout-flex .wp-block-column {
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}
.wp-block-columns.is-layout-flex .wp-block-column .wp-block-image {
  margin: 0;
}
.wp-block-columns.is-layout-flex .wp-block-column .wp-block-image figcaption {
  margin-bottom: 0;
}
.intro-section .wp-block-columns {
  flex-direction: row;
}
@media (max-width: 1024px) {
  .intro-section .wp-block-columns {
    flex-direction: column-reverse;
  }
}
.is-vertically-aligned .wp-block-columns {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .is-vertically-aligned .wp-block-columns {
    flex-direction: column;
    justify-content: center;
  }
}
.is-vertically-aligned .wp-block-columns .wp-block-column {
  flex-grow: 0 !important;
  flex-basis: auto !important;
  min-width: auto !important;
  width: 46%;
}
@media (max-width: 1220px) {
  .is-vertically-aligned .wp-block-columns .wp-block-column {
    padding: 0px 32px;
    width: 48%;
  }
}
@media (max-width: 768px) {
  .is-vertically-aligned .wp-block-columns .wp-block-column {
    padding: 0px;
    width: 100% !important;
  }
}
.wp-block-columns.is-polaroid-styled, .wp-block-columns.is-contactform, .wp-block-columns.is-compressed, .wp-block-columns.is-vertically-aligned {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .wp-block-columns.is-polaroid-styled, .wp-block-columns.is-contactform, .wp-block-columns.is-compressed, .wp-block-columns.is-vertically-aligned {
    flex-direction: column;
    justify-content: center;
  }
}
.wp-block-columns.is-polaroid-styled .wp-block-column, .wp-block-columns.is-contactform .wp-block-column, .wp-block-columns.is-compressed .wp-block-column, .wp-block-columns.is-vertically-aligned .wp-block-column {
  flex-grow: 0 !important;
  flex-basis: auto !important;
  min-width: auto !important;
  width: 46%;
}
@media (max-width: 1220px) {
  .wp-block-columns.is-polaroid-styled .wp-block-column, .wp-block-columns.is-contactform .wp-block-column, .wp-block-columns.is-compressed .wp-block-column, .wp-block-columns.is-vertically-aligned .wp-block-column {
    padding: 0px 32px;
    width: 48%;
  }
}
@media (max-width: 1024px) {
  .wp-block-columns.is-polaroid-styled .wp-block-column, .wp-block-columns.is-contactform .wp-block-column, .wp-block-columns.is-compressed .wp-block-column, .wp-block-columns.is-vertically-aligned .wp-block-column {
    padding: 0px;
    width: 100%;
  }
}
.wp-block-columns.is-polaroid-styled .wp-block-column .wp-block-buttons, .wp-block-columns.is-contactform .wp-block-column .wp-block-buttons, .wp-block-columns.is-compressed .wp-block-column .wp-block-buttons, .wp-block-columns.is-vertically-aligned .wp-block-column .wp-block-buttons {
  margin-top: -28px;
}
.wp-block-columns.is-polaroid-styled .wp-block-column .wp-block-buttons .wp-block-button__link, .wp-block-columns.is-contactform .wp-block-column .wp-block-buttons .wp-block-button__link, .wp-block-columns.is-compressed .wp-block-column .wp-block-buttons .wp-block-button__link, .wp-block-columns.is-vertically-aligned .wp-block-column .wp-block-buttons .wp-block-button__link {
  box-shadow: 2px 4px 20px rgba(1, 15, 27, 0.08);
}
.wp-block-columns.is-polaroid-styled h4, .wp-block-columns.is-polaroid-styled h5, .wp-block-columns.is-polaroid-styled h6, .wp-block-columns.is-contactform h4, .wp-block-columns.is-contactform h5, .wp-block-columns.is-contactform h6, .wp-block-columns.is-compressed h4, .wp-block-columns.is-compressed h5, .wp-block-columns.is-compressed h6, .wp-block-columns.is-vertically-aligned h4, .wp-block-columns.is-vertically-aligned h5, .wp-block-columns.is-vertically-aligned h6 {
  margin-bottom: 24px;
  color: #2551a3;
}
.wp-block-columns.is-polaroid-styled strong, .wp-block-columns.is-contactform strong, .wp-block-columns.is-compressed strong, .wp-block-columns.is-vertically-aligned strong {
  font-weight: 600;
  color: #2551a3;
}
.wp-block-columns.is-polaroid-styled .wp-block-image, .wp-block-columns.is-contactform .wp-block-image, .wp-block-columns.is-compressed .wp-block-image, .wp-block-columns.is-vertically-aligned .wp-block-image {
  position: relative;
  padding: 0px;
}
.wp-block-columns.is-polaroid-styled .wp-block-image img, .wp-block-columns.is-contactform .wp-block-image img, .wp-block-columns.is-compressed .wp-block-image img, .wp-block-columns.is-vertically-aligned .wp-block-image img {
  border-radius: 6px;
  border: 16px solid #ffffff;
  box-shadow: 21px 40px 60px rgba(0, 0, 0, 0.15);
}
.wp-block-columns.is-polaroid-styled .wp-block-image .wp-element-caption, .wp-block-columns.is-contactform .wp-block-image .wp-element-caption, .wp-block-columns.is-compressed .wp-block-image .wp-element-caption, .wp-block-columns.is-vertically-aligned .wp-block-image .wp-element-caption {
  font-family: "Shadows Into Light", cursive;
  font-weight: 600;
  font-size: 24px;
  background-color: #ffffff;
  position: absolute;
  text-align: center;
  padding: 24px 16px 48px 16px;
  bottom: 0px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .wp-block-columns {
    flex-direction: column;
  }
  .wp-block-columns.is-layout-flex .wp-block-column {
    flex: none !important;
    width: 100% !important;
  }
}
.wp-block-columns .wp-block-column {
  flex-basis: 0;
  flex-grow: 1;
  min-width: 0;
}
.wp-block-columns .wp-block-column[style*=flex-basis] {
  flex-grow: 0;
  flex-shrink: 0;
  width: auto;
}
@media (max-width: 1024px) {
  .wp-block-columns .wp-block-column[style*=flex-basis] {
    width: 100%;
  }
}
.extra-top-padding .wp-block-columns .wp-block-column {
  padding-top: 48px;
}
.wp-block-columns .wp-block-column .wp-block-image {
  max-width: 100%;
}
.wp-block-columns .wp-block-column .wp-block-image figcaption {
  margin-bottom: 0;
}
.wp-block-columns .wp-block-column .wp-block-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wp-block-columns .wp-block-column .wp-block-video,
.wp-block-columns .wp-block-column .wp-block-embed {
  max-width: 100%;
}
.wp-block-columns .wp-block-column.is-vertically-aligned-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wp-block-embed {
  grid-column: 4/span 6;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .wp-block-embed {
    grid-column: 1/span 12;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .wp-block-embed {
    grid-column: 1/span 12;
    gap: 20px;
  }
}
.wp-block-embed iframe,
.wp-block-embed object,
.wp-block-embed embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wp-block-image {
  grid-column: 4/span 6;
  display: flex;
  justify-content: center;
  /*
  @media (max-width: $tablet) { 
      grid-column: 1 / span 12;
      gap: 20px;
  }

  @media (max-width: $tablet-small) { 
      grid-column: 1 / span 12;
      gap: 20px;
  }
  */
}
.is-vertically-aligned .wp-block-image {
  justify-content: flex-end;
}
@media (max-width: 1024px) {
  .is-vertically-aligned .wp-block-image {
    justify-content: center;
  }
}
.is-vertically-aligned .wp-block-image img, .is-vertically-aligned .wp-block-image picture {
  display: block;
  margin: 0px !important;
}
.wp-block-image.size-medium img, .wp-block-image.size-medium picture {
  width: 75% !important;
}
.wp-block-image.size-thumbnail img, .wp-block-image.size-thumbnail picture {
  width: 50% !important;
}
.wp-block-image img, .wp-block-image picture {
  margin: 0px auto;
  width: 100%;
  height: auto;
}
.intro-section .wp-block-image img, .intro-section .wp-block-image picture {
  width: 80% !important;
}
@media (max-width: 1024px) {
  .intro-section .wp-block-image img, .intro-section .wp-block-image picture {
    width: 100% !important;
    aspect-ratio: 1/1 !important;
    min-height: 300px !important;
  }
}
.wp-block-image.size-thumbnail {
  grid-column: 4/span 4;
}
.wp-block-image.size-thumbnail img, .wp-block-image.size-thumbnail picture {
  max-width: 100%;
  height: auto;
}
.wp-block-image.size-medium {
  grid-column: 3/span 6;
}
.wp-block-image.size-medium img, .wp-block-image.size-medium picture {
  max-width: 100%;
  height: auto;
}
.wp-block-image.size-full {
  grid-column: 2/span 10;
}
.wp-block-image.size-full img, .wp-block-image.size-full picture {
  max-width: 100%;
  height: auto;
}
.wp-block-image figcaption {
  color: #898888;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
}

.wp-block-media-text {
  grid-column: 1/span 12;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 24px;
}
.wp-block-media-text__media {
  grid-column: span 6;
}
.wp-block-media-text__media img, .wp-block-media-text__media picture {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.wp-block-media-text__content {
  grid-column: span 6;
  padding: 20px;
}
.wp-block-media-text__content h1, .wp-block-media-text__content h2, .wp-block-media-text__content h3, .wp-block-media-text__content h4, .wp-block-media-text__content h5, .wp-block-media-text__content h6 {
  padding-bottom: 8px;
  margin-bottom: 24px;
  position: relative;
}
.wp-block-media-text__content h1:after, .wp-block-media-text__content h2:after, .wp-block-media-text__content h3:after, .wp-block-media-text__content h4:after, .wp-block-media-text__content h5:after, .wp-block-media-text__content h6:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  left: 0px;
  bottom: 0px;
}
.wp-block-media-text__content p {
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .wp-block-media-text {
    grid-template-columns: 1fr;
  }
  .wp-block-media-text__media, .wp-block-media-text__content {
    grid-row: auto !important;
    grid-column: span 12;
  }
}
@media (max-width: 768px) {
  .wp-block-media-text {
    grid-template-columns: 1fr;
  }
  .wp-block-media-text__media, .wp-block-media-text__content {
    grid-column: 1/span 12;
    padding: 0px;
  }
}

.wp-block-table {
  position: relative;
  grid-column: 3/span 8;
  margin: 24px 0px;
}
@media (max-width: 768px) {
  .wp-block-table {
    grid-column: 1/span 12;
  }
}
.wp-block-table table {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 20px 40px 60px rgba(0, 0, 0, 0.14);
}
.wp-block-table table thead {
  border-bottom: 2px solid #f2f2f2;
}
.wp-block-table table tbody tr,
.wp-block-table table thead tr {
  border-bottom: 1px solid #f2f2f2;
}
.wp-block-table table tbody tr:only-child,
.wp-block-table table thead tr:only-child {
  border-bottom: 0;
}
.wp-block-table table tbody tr:last-child,
.wp-block-table table thead tr:last-child {
  border-bottom: 0;
}
.wp-block-table table tbody tr th, .wp-block-table table tbody tr td,
.wp-block-table table thead tr th,
.wp-block-table table thead tr td {
  padding: 16px !important;
}
.wp-block-table table tbody tr th,
.wp-block-table table thead tr th {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0px;
  color: #2551a3;
  border: 0px;
  padding: 16px 0;
  text-align: left;
  border-bottom: 2px solid #f2f2f2;
}
.wp-block-table table tbody tr th strong,
.wp-block-table table thead tr th strong {
  font-weight: 900;
}
.wp-block-table table tbody tr th.has-text-align-right,
.wp-block-table table thead tr th.has-text-align-right {
  text-align: right;
}
.wp-block-table table tbody tr th.has-text-align-center,
.wp-block-table table thead tr th.has-text-align-center {
  text-align: center;
}
.wp-block-table table tbody tr td,
.wp-block-table table thead tr td {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0px;
  border: 0;
  padding: 16px 0;
  text-align: left;
}
.wp-block-table table tbody tr td.has-text-align-right,
.wp-block-table table thead tr td.has-text-align-right {
  text-align: right;
}
.wp-block-table table tbody tr td.has-text-align-center,
.wp-block-table table thead tr td.has-text-align-center {
  text-align: center;
}
.wp-block-table figcaption {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
  color: #898888;
  padding-top: 16px;
}

.wp-block-pullquote {
  grid-column: 3/span 8;
  position: relative;
  margin: 0px 0px !important;
  padding: 0px 0px !important;
}
@media (max-width: 1024px) {
  .wp-block-pullquote {
    grid-column: 1/span 12;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .wp-block-pullquote {
    grid-column: 1/span 12;
    gap: 20px;
  }
}
.wp-block-pullquote.has-light-blue-color p, .wp-block-pullquote.has-light-blue-color cite {
  color: #00ace6;
}
.wp-block-pullquote.has-dark-blue-color p, .wp-block-pullquote.has-dark-blue-color cite {
  color: #2551a3;
}
.wp-block-pullquote.has-black-color p, .wp-block-pullquote.has-black-color cite {
  color: #1b1b1b;
}
.wp-block-pullquote.has-white-color p, .wp-block-pullquote.has-white-color cite {
  color: #ffffff;
}
.wp-block-pullquote.has-grey-10-color p, .wp-block-pullquote.has-grey-10-color cite {
  color: #fafafa;
}
.wp-block-pullquote.has-grey-30-color p, .wp-block-pullquote.has-grey-30-color cite {
  color: #a2a1a1;
}
.wp-block-pullquote.has-grey-60-color p, .wp-block-pullquote.has-grey-60-color cite {
  color: #A6A8AB;
}
.wp-block-pullquote.has-grey-80-color p, .wp-block-pullquote.has-grey-80-color cite {
  color: #898888;
}
.wp-block-pullquote.has-grey-90-color p, .wp-block-pullquote.has-grey-90-color cite {
  color: #808384;
}
.wp-block-pullquote.has-text-align-left {
  text-align: left;
}
.wp-block-pullquote.has-text-align-left:before {
  right: auto;
  left: 0px;
}
@media only screen and (max-width: 1024px) {
  .wp-block-pullquote.has-text-align-left:before {
    left: 0px;
  }
}
.wp-block-pullquote.has-text-align-center {
  text-align: center;
}
.wp-block-pullquote.has-text-align-center:before {
  right: auto;
  left: 50%;
  margin-left: -15px;
}
.wp-block-pullquote.has-text-align-right {
  text-align: right;
}
.wp-block-pullquote.has-text-align-right:before {
  right: 0px;
  left: auto;
}
@media only screen and (max-width: 1024px) {
  .wp-block-pullquote.has-text-align-right:before {
    right: 0px;
  }
}
.wp-block-pullquote:before {
  content: "";
  width: 30px;
  height: 23px;
  display: block;
  position: absolute;
  top: 0px;
  background-size: contain;
  background-repeat: no-repeat;
}
.has-dark-blue-background-color .wp-block-pullquote:before {
  background-image: url("../images/rich-text/quote-white.svg");
  top: 64px;
}
.has-light-blue-background-color .wp-block-pullquote:before {
  background-image: url("../images/rich-text/quote-white.svg");
}
.has-black-background-color .wp-block-pullquote:before {
  background-image: url("../images/rich-text/quote-white.svg");
}
.has-white-background-color .wp-block-pullquote:before {
  background-image: url("../images/rich-text/quote-black.svg");
}
.has-grey-10-background-color .wp-block-pullquote:before {
  background-image: url("../images/rich-text/quote-black.svg");
}
.has-grey-20-background-color .wp-block-pullquote:before {
  background-image: url("../images/rich-text/quote-black.svg");
}
.has-grey-30-background-color .wp-block-pullquote:before {
  background-image: url("../images/rich-text/quote-black.svg");
}
.has-grey-60-background-color .wp-block-pullquote:before {
  background-image: url("../images/rich-text/quote-white.svg");
}
.has-grey-80-background-color .wp-block-pullquote:before {
  background-image: url("../images/rich-text/quote-white.svg");
}
.has-grey-90-background-color .wp-block-pullquote:before {
  background-image: url("../images/rich-text/quote-white.svg");
}
.wp-block-pullquote blockquote {
  padding-top: 48px;
  padding-bottom: 0px;
}
.has-dark-blue-background-color .wp-block-pullquote blockquote {
  padding: 128px 0px;
}
.wp-block-pullquote blockquote p {
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0px;
  line-height: 140%;
  max-width: 100%;
  margin: 0px 0px !important;
  font-style: normal !important;
}
.wp-block-pullquote blockquote p em {
  font-style: italic !important;
}
@media only screen and (max-width: 1024px) {
  .wp-block-pullquote blockquote p {
    margin: 0 8px;
  }
}
.wp-block-pullquote blockquote cite {
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0px;
  display: block;
  margin: 16px 0px 0px !important;
  line-height: 24px;
  font-style: normal;
}
@media only screen and (max-width: 1024px) {
  .wp-block-pullquote blockquote cite {
    margin: 16px 8px 0;
  }
}

.wp-block-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  white-space: normal;
}
.wp-block-group .wp-block-buttons {
  margin-top: 24px;
}
.is-vertically-aligned .wp-block-buttons {
  justify-content: flex-start !important;
}
.has-gradient-background .wp-block-buttons {
  margin-top: 0px !important;
}
.wp-block-buttons .wp-block-button {
  align-self: center;
}
.wp-block-buttons .wp-block-button .wp-block-button__link {
  display: inline-flex;
  position: relative;
  overflow: hidden;
}
.wp-block-buttons .wp-block-button.is-style-fill .wp-block-button__link {
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0px;
  position: relative;
  padding: 16px 24px;
  border-radius: 4px;
  background-color: #00ace6;
  color: #ffffff;
  border: 2px solid #00ace6 !important;
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  z-index: 1;
  box-shadow: none;
  outline: none;
}
.wp-block-buttons .wp-block-button.is-style-fill .wp-block-button__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -1;
}
.wp-block-buttons .wp-block-button.is-style-fill .wp-block-button__link:hover {
  cursor: pointer;
  color: #00ace6;
  box-shadow: 0 8px 24px rgba(166, 168, 171, 0.35);
  border-color: #00ace6 !important;
}
.wp-block-buttons .wp-block-button.is-style-fill .wp-block-button__link:hover::before {
  transform: translateY(0);
}
.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link {
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0px;
  position: relative;
  padding: 16px 24px;
  border-radius: 4px;
  background-color: #ffffff;
  color: #00ace6;
  border: 2px solid #00ace6 !important;
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  z-index: 1;
  box-shadow: none;
  outline: none;
}
.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2551a3;
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -1;
}
.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link:hover {
  cursor: pointer;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(166, 168, 171, 0.35);
  border-color: #2551a3 !important;
}
.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link:hover::before {
  transform: translateY(0);
}

.wp-block-list {
  grid-column: 4/span 6;
}
.wp-block-list.has-light-blue-color {
  color: #00ace6;
}
.wp-block-list.has-dark-blue-color {
  color: #2551a3;
}
.wp-block-list.has-black-color {
  color: #1b1b1b;
}
.wp-block-list.has-white-color {
  color: #ffffff;
}
.wp-block-list.has-grey-10-color {
  color: #fafafa;
}
.wp-block-list.has-grey-30-color {
  color: #a2a1a1;
}
.wp-block-list.has-grey-60-color {
  color: #A6A8AB;
}
.wp-block-list.has-grey-80-color {
  color: #898888;
}
.wp-block-list.has-grey-90-color {
  color: #808384;
}
@media (max-width: 1024px) {
  .wp-block-list {
    grid-column: 1/span 12;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .wp-block-list {
    grid-column: 1/span 12;
    gap: 20px;
  }
}
.wp-block-list li {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
  margin: 24px 0;
  line-height: 32px;
}
.wp-block-list li a {
  position: relative;
}
.wp-block-list li a:hover {
  cursor: pointer;
  text-decoration: none;
}

ul.wp-block-list {
  list-style-type: none;
}
ul.wp-block-list li {
  position: relative;
  padding-left: 36px;
}
ul.wp-block-list li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 2px;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-image: url("../images/rich-text/li-checkmark.svg");
}

ol.wp-block-list {
  list-style-type: decimal;
}

.wpcf7 {
  grid-column: 1/span 12;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 24px;
}
.wpcf7 .wpcf7-form {
  grid-column: 6/span 6;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 24px;
}
.is-contactform .wpcf7 .wpcf7-form {
  grid-column: span 12;
}
@media (max-width: 1024px) {
  .wpcf7 .wpcf7-form {
    grid-column: 1/span 12;
  }
}
@media (max-width: 768px) {
  .wpcf7 .wpcf7-form {
    grid-column: 1/span 12;
  }
}
.wpcf7 .wpcf7-form .hidden-field {
  display: none;
}
.wpcf7 .wpcf7-form .col-1 {
  grid-column: 1/span 12;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .wpcf7 .wpcf7-form .col-1 {
    grid-column: 1/span 12;
  }
}
.wpcf7 .wpcf7-form .col-2 {
  grid-column: span 6;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .wpcf7 .wpcf7-form .col-2 {
    grid-column: 1/span 12;
  }
}
.wpcf7 .wpcf7-form .button {
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0px;
  position: relative;
  padding: 16px 24px;
  border-radius: 4px;
  background-color: #00ace6;
  color: #ffffff;
  border: 2px solid #00ace6 !important;
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  z-index: 1;
  box-shadow: none;
  outline: none;
}
.wpcf7 .wpcf7-form .button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -1;
}
.wpcf7 .wpcf7-form .button:hover {
  cursor: pointer;
  color: #00ace6;
  box-shadow: 0 8px 24px rgba(166, 168, 171, 0.35);
  border-color: #00ace6 !important;
}
.wpcf7 .wpcf7-form .button:hover::before {
  transform: translateY(0);
}
.wpcf7 .wpcf7-form .col-1 p, .wpcf7 .wpcf7-form .col-2 p {
  position: relative;
}
.wpcf7 .wpcf7-form .col-1 p input.wpcf7-not-valid, .wpcf7 .wpcf7-form .col-1 p select.wpcf7-not-valid, .wpcf7 .wpcf7-form .col-2 p input.wpcf7-not-valid, .wpcf7 .wpcf7-form .col-2 p select.wpcf7-not-valid {
  border: 1px solid red;
}
.wpcf7 .wpcf7-form .col-1 .wpcf7-not-valid-tip, .wpcf7 .wpcf7-form .col-2 .wpcf7-not-valid-tip {
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
  text-align: left;
  padding-top: 4px;
}
.wpcf7 .wpcf7-form .wpcf7-response-output {
  grid-column: 1/span 12;
  margin: 0px 0px 8px 0px;
  padding: 0px;
  border: 0px !important;
  color: #2551a3;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
}
@media (max-width: 768px) {
  .wpcf7 .wpcf7-form .wpcf7-response-output {
    grid-column: 1/span 12;
  }
}
.wpcf7 .wpcf7-form .wpcf7-spinner {
  display: none !important;
}

.wp-block-woocommerce-product-categories {
  grid-column: 1/-1;
}

.wp-block-woocommerce-product-collection {
  grid-column: 1/span 12;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  align-items: center;
}
.wp-block-woocommerce-product-collection .wp-block-heading {
  grid-column: 1/span 12;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .wp-block-woocommerce-product-collection .wp-block-heading {
    grid-column: 1/span 12;
    gap: 20px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .wp-block-woocommerce-product-collection .wp-block-heading {
    grid-column: 1/span 12;
    gap: 20px;
    text-align: center;
  }
}
.wp-block-woocommerce-product-collection .wc-block-product-template.is-flex-container, .wp-block-woocommerce-product-collection .wp-block-woocommerce-product-template {
  grid-column: 1/span 12 !important;
  display: grid !important;
  grid-template-columns: repeat(12, 1fr) !important;
  gap: 20px !important;
  width: 100% !important;
}
.wp-block-woocommerce-product-collection .wp-block-query-pagination {
  grid-column: 1/span 12;
  margin-top: 24px;
  display: grid;
  grid-template-areas: "previous numbers next";
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 16px 0;
  transition: all 300ms ease-in;
}
@media (max-width: 768px) {
  .wp-block-woocommerce-product-collection .wp-block-query-pagination {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "numbers arrows";
  }
}
.wp-block-woocommerce-product-collection .wp-block-query-pagination .wp-block-query-pagination-previous {
  grid-area: previous;
  justify-self: start;
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0px;
  transition: all 300ms ease-in;
  color: #00ace6;
}
.wp-block-woocommerce-product-collection .wp-block-query-pagination .wp-block-query-pagination-previous:hover {
  color: #2551a3;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .wp-block-woocommerce-product-collection .wp-block-query-pagination .wp-block-query-pagination-previous {
    grid-area: arrows;
    justify-self: end;
  }
}
.wp-block-woocommerce-product-collection .wp-block-query-pagination .wp-block-query-pagination-numbers {
  grid-area: numbers;
  display: flex;
  gap: 8px;
  justify-self: start;
}
.wp-block-woocommerce-product-collection .wp-block-query-pagination .wp-block-query-pagination-numbers span,
.wp-block-woocommerce-product-collection .wp-block-query-pagination .wp-block-query-pagination-numbers a {
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0px;
  padding: 8px 12px;
  border-radius: 4px;
  display: inline-block;
  border: 2px solid #00ace6;
  background-color: #ffffff;
  color: #00ace6;
}
.wp-block-woocommerce-product-collection .wp-block-query-pagination .wp-block-query-pagination-numbers span:hover,
.wp-block-woocommerce-product-collection .wp-block-query-pagination .wp-block-query-pagination-numbers a:hover {
  background-color: #00ace6;
  color: #ffffff;
}
.wp-block-woocommerce-product-collection .wp-block-query-pagination .wp-block-query-pagination-numbers span {
  background-color: #00ace6;
  color: #ffffff;
}
.wp-block-woocommerce-product-collection .wp-block-query-pagination .wp-block-query-pagination-next {
  grid-area: next;
  justify-self: end;
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0px;
  transition: all 300ms ease-in;
  color: #00ace6;
}
.wp-block-woocommerce-product-collection .wp-block-query-pagination .wp-block-query-pagination-next:hover {
  color: #2551a3;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .wp-block-woocommerce-product-collection .wp-block-query-pagination .wp-block-query-pagination-next {
    grid-area: arrows;
    justify-self: end;
  }
}

.wp-block-woocommerce-single-product {
  grid-column: 1/span 12;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 24px;
}

.wc-block-product-categories-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin: 0;
  list-style: none;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media (max-width: 1024px) {
  .wc-block-product-categories-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .wc-block-product-categories-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.wc-block-product-categories-list li.wc-block-product-categories-list-item {
  margin: 0px;
}
.wc-block-product-categories-list li.wc-block-product-categories-list-item a {
  display: block;
  transition: all 300ms ease;
}
.wc-block-product-categories-list li.wc-block-product-categories-list-item a:hover .wc-block-product-categories-list-item__image {
  background-color: #a2a1a1;
}
.wc-block-product-categories-list li.wc-block-product-categories-list-item a:hover .wc-block-product-categories-list-item__name {
  color: #00ace6;
}
.wc-block-product-categories-list li.wc-block-product-categories-list-item a .wc-block-product-categories-list-item__image {
  transition: all 300ms ease;
  background-color: #fafafa;
  border: 0px;
  text-align: center;
  padding: 40px 16px;
  border-radius: 4px;
  display: block;
  margin: 0px;
  width: 100%;
  max-width: 100%;
}
.wc-block-product-categories-list li.wc-block-product-categories-list-item a .wc-block-product-categories-list-item__image .size-woocommerce_thumbnail {
  display: block;
  height: 72px;
  width: 72px;
  margin: 0 auto;
  max-width: 100%;
  padding: 0;
}
.wc-block-product-categories-list li.wc-block-product-categories-list-item a .wc-block-product-categories-list-item__name {
  transition: all 300ms ease;
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 8px;
  color: #1b1b1b;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
}
.wc-block-product-categories-list li.wc-block-product-categories-list-item .wc-block-product-categories-list-item-count {
  display: block;
  width: 100%;
  text-align: center;
  color: #898888;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
}
.wc-block-product-categories-list li.wc-block-product-categories-list-item .wc-block-product-categories-list-item-count:before {
  display: none;
}
.wc-block-product-categories-list li.wc-block-product-categories-list-item .wc-block-product-categories-list-item-count:after {
  content: " produkter";
}

/*
@use '../abstracts/variables' as *;
@use '../base/typography' as *;
@use '../base/button' as *;


.wc-block-product {
    grid-column: span 3; // Default: 4 per row
    width: 100% !important;
    border-radius: $space-xs;
    background-color: $white;
    transition: all 300ms ease-in;
    margin-bottom: 0px !important;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: top;


    &:not(:last-child) {
        margin-bottom: 0px !important;
    }

    @media (max-width: $tablet) { grid-column: span 4; }
    @media (max-width: $tablet-small) { grid-column: span 6; }
    @media (max-width: $mobile) { grid-column: span 12; }

    .wc-block-components-product-image {
        border-top-left-radius: $space-xs;
        border-top-right-radius: $space-xs;
        width: 100%;
        //flex-grow: 0;
        a {
            img {
                width: 100% !important;
                height: auto !important;
                aspect-ratio: 16 / 9; // Maintain 16:9 aspect ratio
                object-fit: cover;
            }
        }
    }
    .wp-block-post-title {
        @include h5(600);
        margin: 0px !important;
        padding-top: $space-md;
        padding-right: $space-md;
        padding-left: $space-md;
        text-overflow: ellipsis;
        min-height: 4.5em; /* sikrer plads til 2 linjer 
    }

    .wp-block-woocommerce-product-price {
        color: $primary;
        padding-bottom: $space-md;
        padding-right: $space-md;
        padding-left: $space-md;
        padding-top: $space-xs;
        text-align: center;
        width: 100%;
        margin: 0;

        &.has-text-align-left { text-align: left; }
        &.has-text-align-center { text-align: center; }
        &.has-text-align-right { text-align: right; }

        //.has-medium-font-size { @include body-medium(400); }
        //.has-small-font-size { @include body-small(400); }
        //.has-large-font-size { @include body-large(400); }
        //.has-xlarge-font-size { @include body-large(600); }

        // Price normal
        .woocommerce-Price-amount {
            @include body-medium(600);
            font-size: 20px;
            //background-color: lightgreen;
            bdi {
                .woocommerce-Price-currencySymbol {
                    margin-right: 0px;
                }
            }   
        }
        // Price before
		del {
            color: $grey-30;
            .woocommerce-Price-amount {
                bdi {
                    color: $grey-30;
                    .woocommerce-Price-currencySymbol {}
                }
            }
            .screen-reader-text {}
        }
        // Price after
        ins {
            text-decoration: none;
            .woocommerce-Price-amount {
                bdi {
                    //background-color: hotpink;
                    .woocommerce-Price-currencySymbol {}
                }
            }
            .screen-reader-text {}
        }
    }

    .wp-block-button {
        padding-bottom: $space-md;
        .wp-block-button__link {
            @include button;
            display: inline-flex;
            position: relative;
            overflow: hidden;
        }
    }
}


:where(.wc-block-product-template .wc-block-product)>:not(:last-child) {
    margin-bottom: 0px !important;
}*/
.contact-form__container h1, .product-details-page h1, .woocommerce-product-list h1, .retailer-login h1, .homepage h1, .wp-pages h1, .retailers-page h1, .footer h1, .contact-form__container h2, .product-details-page h2, .woocommerce-product-list h2, .retailer-login h2, .homepage h2, .wp-pages h2, .retailers-page h2, .footer h2, .contact-form__container h3, .product-details-page h3, .woocommerce-product-list h3, .retailer-login h3, .homepage h3, .wp-pages h3, .retailers-page h3, .footer h3, .contact-form__container h4, .product-details-page h4, .woocommerce-product-list h4, .retailer-login h4, .homepage h4, .wp-pages h4, .retailers-page h4, .footer h4, .contact-form__container h5, .product-details-page h5, .woocommerce-product-list h5, .retailer-login h5, .homepage h5, .wp-pages h5, .retailers-page h5, .footer h5, .contact-form__container h6, .product-details-page h6, .woocommerce-product-list h6, .retailer-login h6, .homepage h6, .wp-pages h6, .retailers-page h6, .footer h6 {
  grid-column: 4/span 6;
  margin-bottom: 16px;
}
.contact-form__container h1.has-text-align-center, .product-details-page h1.has-text-align-center, .woocommerce-product-list h1.has-text-align-center, .retailer-login h1.has-text-align-center, .homepage h1.has-text-align-center, .wp-pages h1.has-text-align-center, .retailers-page h1.has-text-align-center, .footer h1.has-text-align-center, .contact-form__container h2.has-text-align-center, .product-details-page h2.has-text-align-center, .woocommerce-product-list h2.has-text-align-center, .retailer-login h2.has-text-align-center, .homepage h2.has-text-align-center, .wp-pages h2.has-text-align-center, .retailers-page h2.has-text-align-center, .footer h2.has-text-align-center, .contact-form__container h3.has-text-align-center, .product-details-page h3.has-text-align-center, .woocommerce-product-list h3.has-text-align-center, .retailer-login h3.has-text-align-center, .homepage h3.has-text-align-center, .wp-pages h3.has-text-align-center, .retailers-page h3.has-text-align-center, .footer h3.has-text-align-center, .contact-form__container h4.has-text-align-center, .product-details-page h4.has-text-align-center, .woocommerce-product-list h4.has-text-align-center, .retailer-login h4.has-text-align-center, .homepage h4.has-text-align-center, .wp-pages h4.has-text-align-center, .retailers-page h4.has-text-align-center, .footer h4.has-text-align-center, .contact-form__container h5.has-text-align-center, .product-details-page h5.has-text-align-center, .woocommerce-product-list h5.has-text-align-center, .retailer-login h5.has-text-align-center, .homepage h5.has-text-align-center, .wp-pages h5.has-text-align-center, .retailers-page h5.has-text-align-center, .footer h5.has-text-align-center, .contact-form__container h6.has-text-align-center, .product-details-page h6.has-text-align-center, .woocommerce-product-list h6.has-text-align-center, .retailer-login h6.has-text-align-center, .homepage h6.has-text-align-center, .wp-pages h6.has-text-align-center, .retailers-page h6.has-text-align-center, .footer h6.has-text-align-center {
  text-align: center;
}
.contact-form__container h1.has-text-align-right, .product-details-page h1.has-text-align-right, .woocommerce-product-list h1.has-text-align-right, .retailer-login h1.has-text-align-right, .homepage h1.has-text-align-right, .wp-pages h1.has-text-align-right, .retailers-page h1.has-text-align-right, .footer h1.has-text-align-right, .contact-form__container h2.has-text-align-right, .product-details-page h2.has-text-align-right, .woocommerce-product-list h2.has-text-align-right, .retailer-login h2.has-text-align-right, .homepage h2.has-text-align-right, .wp-pages h2.has-text-align-right, .retailers-page h2.has-text-align-right, .footer h2.has-text-align-right, .contact-form__container h3.has-text-align-right, .product-details-page h3.has-text-align-right, .woocommerce-product-list h3.has-text-align-right, .retailer-login h3.has-text-align-right, .homepage h3.has-text-align-right, .wp-pages h3.has-text-align-right, .retailers-page h3.has-text-align-right, .footer h3.has-text-align-right, .contact-form__container h4.has-text-align-right, .product-details-page h4.has-text-align-right, .woocommerce-product-list h4.has-text-align-right, .retailer-login h4.has-text-align-right, .homepage h4.has-text-align-right, .wp-pages h4.has-text-align-right, .retailers-page h4.has-text-align-right, .footer h4.has-text-align-right, .contact-form__container h5.has-text-align-right, .product-details-page h5.has-text-align-right, .woocommerce-product-list h5.has-text-align-right, .retailer-login h5.has-text-align-right, .homepage h5.has-text-align-right, .wp-pages h5.has-text-align-right, .retailers-page h5.has-text-align-right, .footer h5.has-text-align-right, .contact-form__container h6.has-text-align-right, .product-details-page h6.has-text-align-right, .woocommerce-product-list h6.has-text-align-right, .retailer-login h6.has-text-align-right, .homepage h6.has-text-align-right, .wp-pages h6.has-text-align-right, .retailers-page h6.has-text-align-right, .footer h6.has-text-align-right {
  text-align: right;
}
.contact-form__container h1.has-light-blue-color, .product-details-page h1.has-light-blue-color, .woocommerce-product-list h1.has-light-blue-color, .retailer-login h1.has-light-blue-color, .homepage h1.has-light-blue-color, .wp-pages h1.has-light-blue-color, .retailers-page h1.has-light-blue-color, .footer h1.has-light-blue-color, .contact-form__container h2.has-light-blue-color, .product-details-page h2.has-light-blue-color, .woocommerce-product-list h2.has-light-blue-color, .retailer-login h2.has-light-blue-color, .homepage h2.has-light-blue-color, .wp-pages h2.has-light-blue-color, .retailers-page h2.has-light-blue-color, .footer h2.has-light-blue-color, .contact-form__container h3.has-light-blue-color, .product-details-page h3.has-light-blue-color, .woocommerce-product-list h3.has-light-blue-color, .retailer-login h3.has-light-blue-color, .homepage h3.has-light-blue-color, .wp-pages h3.has-light-blue-color, .retailers-page h3.has-light-blue-color, .footer h3.has-light-blue-color, .contact-form__container h4.has-light-blue-color, .product-details-page h4.has-light-blue-color, .woocommerce-product-list h4.has-light-blue-color, .retailer-login h4.has-light-blue-color, .homepage h4.has-light-blue-color, .wp-pages h4.has-light-blue-color, .retailers-page h4.has-light-blue-color, .footer h4.has-light-blue-color, .contact-form__container h5.has-light-blue-color, .product-details-page h5.has-light-blue-color, .woocommerce-product-list h5.has-light-blue-color, .retailer-login h5.has-light-blue-color, .homepage h5.has-light-blue-color, .wp-pages h5.has-light-blue-color, .retailers-page h5.has-light-blue-color, .footer h5.has-light-blue-color, .contact-form__container h6.has-light-blue-color, .product-details-page h6.has-light-blue-color, .woocommerce-product-list h6.has-light-blue-color, .retailer-login h6.has-light-blue-color, .homepage h6.has-light-blue-color, .wp-pages h6.has-light-blue-color, .retailers-page h6.has-light-blue-color, .footer h6.has-light-blue-color {
  color: #00ace6;
}
.contact-form__container h1.has-dark-blue-color, .product-details-page h1.has-dark-blue-color, .woocommerce-product-list h1.has-dark-blue-color, .retailer-login h1.has-dark-blue-color, .homepage h1.has-dark-blue-color, .wp-pages h1.has-dark-blue-color, .retailers-page h1.has-dark-blue-color, .footer h1.has-dark-blue-color, .contact-form__container h2.has-dark-blue-color, .product-details-page h2.has-dark-blue-color, .woocommerce-product-list h2.has-dark-blue-color, .retailer-login h2.has-dark-blue-color, .homepage h2.has-dark-blue-color, .wp-pages h2.has-dark-blue-color, .retailers-page h2.has-dark-blue-color, .footer h2.has-dark-blue-color, .contact-form__container h3.has-dark-blue-color, .product-details-page h3.has-dark-blue-color, .woocommerce-product-list h3.has-dark-blue-color, .retailer-login h3.has-dark-blue-color, .homepage h3.has-dark-blue-color, .wp-pages h3.has-dark-blue-color, .retailers-page h3.has-dark-blue-color, .footer h3.has-dark-blue-color, .contact-form__container h4.has-dark-blue-color, .product-details-page h4.has-dark-blue-color, .woocommerce-product-list h4.has-dark-blue-color, .retailer-login h4.has-dark-blue-color, .homepage h4.has-dark-blue-color, .wp-pages h4.has-dark-blue-color, .retailers-page h4.has-dark-blue-color, .footer h4.has-dark-blue-color, .contact-form__container h5.has-dark-blue-color, .product-details-page h5.has-dark-blue-color, .woocommerce-product-list h5.has-dark-blue-color, .retailer-login h5.has-dark-blue-color, .homepage h5.has-dark-blue-color, .wp-pages h5.has-dark-blue-color, .retailers-page h5.has-dark-blue-color, .footer h5.has-dark-blue-color, .contact-form__container h6.has-dark-blue-color, .product-details-page h6.has-dark-blue-color, .woocommerce-product-list h6.has-dark-blue-color, .retailer-login h6.has-dark-blue-color, .homepage h6.has-dark-blue-color, .wp-pages h6.has-dark-blue-color, .retailers-page h6.has-dark-blue-color, .footer h6.has-dark-blue-color {
  color: #2551a3;
}
.contact-form__container h1.has-black-color, .product-details-page h1.has-black-color, .woocommerce-product-list h1.has-black-color, .retailer-login h1.has-black-color, .homepage h1.has-black-color, .wp-pages h1.has-black-color, .retailers-page h1.has-black-color, .footer h1.has-black-color, .contact-form__container h2.has-black-color, .product-details-page h2.has-black-color, .woocommerce-product-list h2.has-black-color, .retailer-login h2.has-black-color, .homepage h2.has-black-color, .wp-pages h2.has-black-color, .retailers-page h2.has-black-color, .footer h2.has-black-color, .contact-form__container h3.has-black-color, .product-details-page h3.has-black-color, .woocommerce-product-list h3.has-black-color, .retailer-login h3.has-black-color, .homepage h3.has-black-color, .wp-pages h3.has-black-color, .retailers-page h3.has-black-color, .footer h3.has-black-color, .contact-form__container h4.has-black-color, .product-details-page h4.has-black-color, .woocommerce-product-list h4.has-black-color, .retailer-login h4.has-black-color, .homepage h4.has-black-color, .wp-pages h4.has-black-color, .retailers-page h4.has-black-color, .footer h4.has-black-color, .contact-form__container h5.has-black-color, .product-details-page h5.has-black-color, .woocommerce-product-list h5.has-black-color, .retailer-login h5.has-black-color, .homepage h5.has-black-color, .wp-pages h5.has-black-color, .retailers-page h5.has-black-color, .footer h5.has-black-color, .contact-form__container h6.has-black-color, .product-details-page h6.has-black-color, .woocommerce-product-list h6.has-black-color, .retailer-login h6.has-black-color, .homepage h6.has-black-color, .wp-pages h6.has-black-color, .retailers-page h6.has-black-color, .footer h6.has-black-color {
  color: #1b1b1b;
}
.contact-form__container h1.has-white-color, .product-details-page h1.has-white-color, .woocommerce-product-list h1.has-white-color, .retailer-login h1.has-white-color, .homepage h1.has-white-color, .wp-pages h1.has-white-color, .retailers-page h1.has-white-color, .footer h1.has-white-color, .contact-form__container h2.has-white-color, .product-details-page h2.has-white-color, .woocommerce-product-list h2.has-white-color, .retailer-login h2.has-white-color, .homepage h2.has-white-color, .wp-pages h2.has-white-color, .retailers-page h2.has-white-color, .footer h2.has-white-color, .contact-form__container h3.has-white-color, .product-details-page h3.has-white-color, .woocommerce-product-list h3.has-white-color, .retailer-login h3.has-white-color, .homepage h3.has-white-color, .wp-pages h3.has-white-color, .retailers-page h3.has-white-color, .footer h3.has-white-color, .contact-form__container h4.has-white-color, .product-details-page h4.has-white-color, .woocommerce-product-list h4.has-white-color, .retailer-login h4.has-white-color, .homepage h4.has-white-color, .wp-pages h4.has-white-color, .retailers-page h4.has-white-color, .footer h4.has-white-color, .contact-form__container h5.has-white-color, .product-details-page h5.has-white-color, .woocommerce-product-list h5.has-white-color, .retailer-login h5.has-white-color, .homepage h5.has-white-color, .wp-pages h5.has-white-color, .retailers-page h5.has-white-color, .footer h5.has-white-color, .contact-form__container h6.has-white-color, .product-details-page h6.has-white-color, .woocommerce-product-list h6.has-white-color, .retailer-login h6.has-white-color, .homepage h6.has-white-color, .wp-pages h6.has-white-color, .retailers-page h6.has-white-color, .footer h6.has-white-color {
  color: #ffffff;
}
.contact-form__container h1.has-grey-10-color, .product-details-page h1.has-grey-10-color, .woocommerce-product-list h1.has-grey-10-color, .retailer-login h1.has-grey-10-color, .homepage h1.has-grey-10-color, .wp-pages h1.has-grey-10-color, .retailers-page h1.has-grey-10-color, .footer h1.has-grey-10-color, .contact-form__container h2.has-grey-10-color, .product-details-page h2.has-grey-10-color, .woocommerce-product-list h2.has-grey-10-color, .retailer-login h2.has-grey-10-color, .homepage h2.has-grey-10-color, .wp-pages h2.has-grey-10-color, .retailers-page h2.has-grey-10-color, .footer h2.has-grey-10-color, .contact-form__container h3.has-grey-10-color, .product-details-page h3.has-grey-10-color, .woocommerce-product-list h3.has-grey-10-color, .retailer-login h3.has-grey-10-color, .homepage h3.has-grey-10-color, .wp-pages h3.has-grey-10-color, .retailers-page h3.has-grey-10-color, .footer h3.has-grey-10-color, .contact-form__container h4.has-grey-10-color, .product-details-page h4.has-grey-10-color, .woocommerce-product-list h4.has-grey-10-color, .retailer-login h4.has-grey-10-color, .homepage h4.has-grey-10-color, .wp-pages h4.has-grey-10-color, .retailers-page h4.has-grey-10-color, .footer h4.has-grey-10-color, .contact-form__container h5.has-grey-10-color, .product-details-page h5.has-grey-10-color, .woocommerce-product-list h5.has-grey-10-color, .retailer-login h5.has-grey-10-color, .homepage h5.has-grey-10-color, .wp-pages h5.has-grey-10-color, .retailers-page h5.has-grey-10-color, .footer h5.has-grey-10-color, .contact-form__container h6.has-grey-10-color, .product-details-page h6.has-grey-10-color, .woocommerce-product-list h6.has-grey-10-color, .retailer-login h6.has-grey-10-color, .homepage h6.has-grey-10-color, .wp-pages h6.has-grey-10-color, .retailers-page h6.has-grey-10-color, .footer h6.has-grey-10-color {
  color: #fafafa;
}
.contact-form__container h1.has-grey-30-color, .product-details-page h1.has-grey-30-color, .woocommerce-product-list h1.has-grey-30-color, .retailer-login h1.has-grey-30-color, .homepage h1.has-grey-30-color, .wp-pages h1.has-grey-30-color, .retailers-page h1.has-grey-30-color, .footer h1.has-grey-30-color, .contact-form__container h2.has-grey-30-color, .product-details-page h2.has-grey-30-color, .woocommerce-product-list h2.has-grey-30-color, .retailer-login h2.has-grey-30-color, .homepage h2.has-grey-30-color, .wp-pages h2.has-grey-30-color, .retailers-page h2.has-grey-30-color, .footer h2.has-grey-30-color, .contact-form__container h3.has-grey-30-color, .product-details-page h3.has-grey-30-color, .woocommerce-product-list h3.has-grey-30-color, .retailer-login h3.has-grey-30-color, .homepage h3.has-grey-30-color, .wp-pages h3.has-grey-30-color, .retailers-page h3.has-grey-30-color, .footer h3.has-grey-30-color, .contact-form__container h4.has-grey-30-color, .product-details-page h4.has-grey-30-color, .woocommerce-product-list h4.has-grey-30-color, .retailer-login h4.has-grey-30-color, .homepage h4.has-grey-30-color, .wp-pages h4.has-grey-30-color, .retailers-page h4.has-grey-30-color, .footer h4.has-grey-30-color, .contact-form__container h5.has-grey-30-color, .product-details-page h5.has-grey-30-color, .woocommerce-product-list h5.has-grey-30-color, .retailer-login h5.has-grey-30-color, .homepage h5.has-grey-30-color, .wp-pages h5.has-grey-30-color, .retailers-page h5.has-grey-30-color, .footer h5.has-grey-30-color, .contact-form__container h6.has-grey-30-color, .product-details-page h6.has-grey-30-color, .woocommerce-product-list h6.has-grey-30-color, .retailer-login h6.has-grey-30-color, .homepage h6.has-grey-30-color, .wp-pages h6.has-grey-30-color, .retailers-page h6.has-grey-30-color, .footer h6.has-grey-30-color {
  color: #a2a1a1;
}
.contact-form__container h1.has-grey-60-color, .product-details-page h1.has-grey-60-color, .woocommerce-product-list h1.has-grey-60-color, .retailer-login h1.has-grey-60-color, .homepage h1.has-grey-60-color, .wp-pages h1.has-grey-60-color, .retailers-page h1.has-grey-60-color, .footer h1.has-grey-60-color, .contact-form__container h2.has-grey-60-color, .product-details-page h2.has-grey-60-color, .woocommerce-product-list h2.has-grey-60-color, .retailer-login h2.has-grey-60-color, .homepage h2.has-grey-60-color, .wp-pages h2.has-grey-60-color, .retailers-page h2.has-grey-60-color, .footer h2.has-grey-60-color, .contact-form__container h3.has-grey-60-color, .product-details-page h3.has-grey-60-color, .woocommerce-product-list h3.has-grey-60-color, .retailer-login h3.has-grey-60-color, .homepage h3.has-grey-60-color, .wp-pages h3.has-grey-60-color, .retailers-page h3.has-grey-60-color, .footer h3.has-grey-60-color, .contact-form__container h4.has-grey-60-color, .product-details-page h4.has-grey-60-color, .woocommerce-product-list h4.has-grey-60-color, .retailer-login h4.has-grey-60-color, .homepage h4.has-grey-60-color, .wp-pages h4.has-grey-60-color, .retailers-page h4.has-grey-60-color, .footer h4.has-grey-60-color, .contact-form__container h5.has-grey-60-color, .product-details-page h5.has-grey-60-color, .woocommerce-product-list h5.has-grey-60-color, .retailer-login h5.has-grey-60-color, .homepage h5.has-grey-60-color, .wp-pages h5.has-grey-60-color, .retailers-page h5.has-grey-60-color, .footer h5.has-grey-60-color, .contact-form__container h6.has-grey-60-color, .product-details-page h6.has-grey-60-color, .woocommerce-product-list h6.has-grey-60-color, .retailer-login h6.has-grey-60-color, .homepage h6.has-grey-60-color, .wp-pages h6.has-grey-60-color, .retailers-page h6.has-grey-60-color, .footer h6.has-grey-60-color {
  color: #A6A8AB;
}
.contact-form__container h1.has-grey-80-color, .product-details-page h1.has-grey-80-color, .woocommerce-product-list h1.has-grey-80-color, .retailer-login h1.has-grey-80-color, .homepage h1.has-grey-80-color, .wp-pages h1.has-grey-80-color, .retailers-page h1.has-grey-80-color, .footer h1.has-grey-80-color, .contact-form__container h2.has-grey-80-color, .product-details-page h2.has-grey-80-color, .woocommerce-product-list h2.has-grey-80-color, .retailer-login h2.has-grey-80-color, .homepage h2.has-grey-80-color, .wp-pages h2.has-grey-80-color, .retailers-page h2.has-grey-80-color, .footer h2.has-grey-80-color, .contact-form__container h3.has-grey-80-color, .product-details-page h3.has-grey-80-color, .woocommerce-product-list h3.has-grey-80-color, .retailer-login h3.has-grey-80-color, .homepage h3.has-grey-80-color, .wp-pages h3.has-grey-80-color, .retailers-page h3.has-grey-80-color, .footer h3.has-grey-80-color, .contact-form__container h4.has-grey-80-color, .product-details-page h4.has-grey-80-color, .woocommerce-product-list h4.has-grey-80-color, .retailer-login h4.has-grey-80-color, .homepage h4.has-grey-80-color, .wp-pages h4.has-grey-80-color, .retailers-page h4.has-grey-80-color, .footer h4.has-grey-80-color, .contact-form__container h5.has-grey-80-color, .product-details-page h5.has-grey-80-color, .woocommerce-product-list h5.has-grey-80-color, .retailer-login h5.has-grey-80-color, .homepage h5.has-grey-80-color, .wp-pages h5.has-grey-80-color, .retailers-page h5.has-grey-80-color, .footer h5.has-grey-80-color, .contact-form__container h6.has-grey-80-color, .product-details-page h6.has-grey-80-color, .woocommerce-product-list h6.has-grey-80-color, .retailer-login h6.has-grey-80-color, .homepage h6.has-grey-80-color, .wp-pages h6.has-grey-80-color, .retailers-page h6.has-grey-80-color, .footer h6.has-grey-80-color {
  color: #898888;
}
.contact-form__container h1.has-grey-90-color, .product-details-page h1.has-grey-90-color, .woocommerce-product-list h1.has-grey-90-color, .retailer-login h1.has-grey-90-color, .homepage h1.has-grey-90-color, .wp-pages h1.has-grey-90-color, .retailers-page h1.has-grey-90-color, .footer h1.has-grey-90-color, .contact-form__container h2.has-grey-90-color, .product-details-page h2.has-grey-90-color, .woocommerce-product-list h2.has-grey-90-color, .retailer-login h2.has-grey-90-color, .homepage h2.has-grey-90-color, .wp-pages h2.has-grey-90-color, .retailers-page h2.has-grey-90-color, .footer h2.has-grey-90-color, .contact-form__container h3.has-grey-90-color, .product-details-page h3.has-grey-90-color, .woocommerce-product-list h3.has-grey-90-color, .retailer-login h3.has-grey-90-color, .homepage h3.has-grey-90-color, .wp-pages h3.has-grey-90-color, .retailers-page h3.has-grey-90-color, .footer h3.has-grey-90-color, .contact-form__container h4.has-grey-90-color, .product-details-page h4.has-grey-90-color, .woocommerce-product-list h4.has-grey-90-color, .retailer-login h4.has-grey-90-color, .homepage h4.has-grey-90-color, .wp-pages h4.has-grey-90-color, .retailers-page h4.has-grey-90-color, .footer h4.has-grey-90-color, .contact-form__container h5.has-grey-90-color, .product-details-page h5.has-grey-90-color, .woocommerce-product-list h5.has-grey-90-color, .retailer-login h5.has-grey-90-color, .homepage h5.has-grey-90-color, .wp-pages h5.has-grey-90-color, .retailers-page h5.has-grey-90-color, .footer h5.has-grey-90-color, .contact-form__container h6.has-grey-90-color, .product-details-page h6.has-grey-90-color, .woocommerce-product-list h6.has-grey-90-color, .retailer-login h6.has-grey-90-color, .homepage h6.has-grey-90-color, .wp-pages h6.has-grey-90-color, .retailers-page h6.has-grey-90-color, .footer h6.has-grey-90-color {
  color: #808384;
}
.has-gradient-background .contact-form__container h1, .has-gradient-background .product-details-page h1, .has-gradient-background .woocommerce-product-list h1, .has-gradient-background .retailer-login h1, .has-gradient-background .homepage h1, .has-gradient-background .wp-pages h1, .has-gradient-background .retailers-page h1, .has-gradient-background .footer h1, .has-gradient-background .contact-form__container h2, .has-gradient-background .product-details-page h2, .has-gradient-background .woocommerce-product-list h2, .has-gradient-background .retailer-login h2, .has-gradient-background .homepage h2, .has-gradient-background .wp-pages h2, .has-gradient-background .retailers-page h2, .has-gradient-background .footer h2, .has-gradient-background .contact-form__container h3, .has-gradient-background .product-details-page h3, .has-gradient-background .woocommerce-product-list h3, .has-gradient-background .retailer-login h3, .has-gradient-background .homepage h3, .has-gradient-background .wp-pages h3, .has-gradient-background .retailers-page h3, .has-gradient-background .footer h3, .has-gradient-background .contact-form__container h4, .has-gradient-background .product-details-page h4, .has-gradient-background .woocommerce-product-list h4, .has-gradient-background .retailer-login h4, .has-gradient-background .homepage h4, .has-gradient-background .wp-pages h4, .has-gradient-background .retailers-page h4, .has-gradient-background .footer h4, .has-gradient-background .contact-form__container h5, .has-gradient-background .product-details-page h5, .has-gradient-background .woocommerce-product-list h5, .has-gradient-background .retailer-login h5, .has-gradient-background .homepage h5, .has-gradient-background .wp-pages h5, .has-gradient-background .retailers-page h5, .has-gradient-background .footer h5, .has-gradient-background .contact-form__container h6, .has-gradient-background .product-details-page h6, .has-gradient-background .woocommerce-product-list h6, .has-gradient-background .retailer-login h6, .has-gradient-background .homepage h6, .has-gradient-background .wp-pages h6, .has-gradient-background .retailers-page h6, .has-gradient-background .footer h6 {
  font-weight: 900 !important;
}
@media (max-width: 1024px) {
  .contact-form__container h1, .product-details-page h1, .woocommerce-product-list h1, .retailer-login h1, .homepage h1, .wp-pages h1, .retailers-page h1, .footer h1, .contact-form__container h2, .product-details-page h2, .woocommerce-product-list h2, .retailer-login h2, .homepage h2, .wp-pages h2, .retailers-page h2, .footer h2, .contact-form__container h3, .product-details-page h3, .woocommerce-product-list h3, .retailer-login h3, .homepage h3, .wp-pages h3, .retailers-page h3, .footer h3, .contact-form__container h4, .product-details-page h4, .woocommerce-product-list h4, .retailer-login h4, .homepage h4, .wp-pages h4, .retailers-page h4, .footer h4, .contact-form__container h5, .product-details-page h5, .woocommerce-product-list h5, .retailer-login h5, .homepage h5, .wp-pages h5, .retailers-page h5, .footer h5, .contact-form__container h6, .product-details-page h6, .woocommerce-product-list h6, .retailer-login h6, .homepage h6, .wp-pages h6, .retailers-page h6, .footer h6 {
    grid-column: 1/span 12;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .contact-form__container h1, .product-details-page h1, .woocommerce-product-list h1, .retailer-login h1, .homepage h1, .wp-pages h1, .retailers-page h1, .footer h1, .contact-form__container h2, .product-details-page h2, .woocommerce-product-list h2, .retailer-login h2, .homepage h2, .wp-pages h2, .retailers-page h2, .footer h2, .contact-form__container h3, .product-details-page h3, .woocommerce-product-list h3, .retailer-login h3, .homepage h3, .wp-pages h3, .retailers-page h3, .footer h3, .contact-form__container h4, .product-details-page h4, .woocommerce-product-list h4, .retailer-login h4, .homepage h4, .wp-pages h4, .retailers-page h4, .footer h4, .contact-form__container h5, .product-details-page h5, .woocommerce-product-list h5, .retailer-login h5, .homepage h5, .wp-pages h5, .retailers-page h5, .footer h5, .contact-form__container h6, .product-details-page h6, .woocommerce-product-list h6, .retailer-login h6, .homepage h6, .wp-pages h6, .retailers-page h6, .footer h6 {
    grid-column: 1/span 12;
    gap: 20px;
  }
}
.contact-form__container h1, .product-details-page h1, .woocommerce-product-list h1, .retailer-login h1, .homepage h1, .wp-pages h1, .retailers-page h1, .footer h1 {
  font-size: 48px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0px;
}
.contact-form__container h1.has-medium-font-size, .product-details-page h1.has-medium-font-size, .woocommerce-product-list h1.has-medium-font-size, .retailer-login h1.has-medium-font-size, .homepage h1.has-medium-font-size, .wp-pages h1.has-medium-font-size, .retailers-page h1.has-medium-font-size, .footer h1.has-medium-font-size {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 24px;
}
.contact-form__container h2, .product-details-page h2, .woocommerce-product-list h2, .retailer-login h2, .homepage h2, .wp-pages h2, .retailers-page h2, .footer h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0px;
  line-height: 52px;
}
.has-gradient-background .contact-form__container h2, .has-gradient-background .product-details-page h2, .has-gradient-background .woocommerce-product-list h2, .has-gradient-background .retailer-login h2, .has-gradient-background .homepage h2, .has-gradient-background .wp-pages h2, .has-gradient-background .retailers-page h2, .has-gradient-background .footer h2 {
  color: #ffffff !important;
}
.contact-form__container h3, .product-details-page h3, .woocommerce-product-list h3, .retailer-login h3, .homepage h3, .wp-pages h3, .retailers-page h3, .footer h3 {
  font-size: 28px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
  line-height: 52px;
}
.contact-form__container h4, .product-details-page h4, .woocommerce-product-list h4, .retailer-login h4, .homepage h4, .wp-pages h4, .retailers-page h4, .footer h4 {
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
}
.contact-form__container h5, .product-details-page h5, .woocommerce-product-list h5, .retailer-login h5, .homepage h5, .wp-pages h5, .retailers-page h5, .footer h5 {
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
}
.contact-form__container h6, .product-details-page h6, .woocommerce-product-list h6, .retailer-login h6, .homepage h6, .wp-pages h6, .retailers-page h6, .footer h6 {
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  margin-bottom: 16px;
}
.contact-form__container p, .product-details-page p, .woocommerce-product-list p, .retailer-login p, .homepage p, .wp-pages p, .retailers-page p, .footer p {
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
  grid-column: 4/span 6;
  margin-bottom: 16px;
  line-height: 24px;
}
.wp-block-column .contact-form__container p, .wp-block-column .product-details-page p, .wp-block-column .woocommerce-product-list p, .wp-block-column .retailer-login p, .wp-block-column .homepage p, .wp-block-column .wp-pages p, .wp-block-column .retailers-page p, .wp-block-column .footer p {
  max-width: 780px !important;
}
.contact-form__container p:last-child, .product-details-page p:last-child, .woocommerce-product-list p:last-child, .retailer-login p:last-child, .homepage p:last-child, .wp-pages p:last-child, .retailers-page p:last-child, .footer p:last-child {
  margin-bottom: 0;
}
.contact-form__container p.has-small-font-size, .product-details-page p.has-small-font-size, .woocommerce-product-list p.has-small-font-size, .retailer-login p.has-small-font-size, .homepage p.has-small-font-size, .wp-pages p.has-small-font-size, .retailers-page p.has-small-font-size, .footer p.has-small-font-size {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
  line-height: 24px;
}
.contact-form__container p.has-medium-font-size, .product-details-page p.has-medium-font-size, .woocommerce-product-list p.has-medium-font-size, .retailer-login p.has-medium-font-size, .homepage p.has-medium-font-size, .wp-pages p.has-medium-font-size, .retailers-page p.has-medium-font-size, .footer p.has-medium-font-size {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
  line-height: 24px;
}
.contact-form__container p.has-large-font-size, .product-details-page p.has-large-font-size, .woocommerce-product-list p.has-large-font-size, .retailer-login p.has-large-font-size, .homepage p.has-large-font-size, .wp-pages p.has-large-font-size, .retailers-page p.has-large-font-size, .footer p.has-large-font-size {
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
}
.contact-form__container p.has-light-blue-color, .product-details-page p.has-light-blue-color, .woocommerce-product-list p.has-light-blue-color, .retailer-login p.has-light-blue-color, .homepage p.has-light-blue-color, .wp-pages p.has-light-blue-color, .retailers-page p.has-light-blue-color, .footer p.has-light-blue-color {
  color: #00ace6;
}
.contact-form__container p.has-dark-blue-color, .product-details-page p.has-dark-blue-color, .woocommerce-product-list p.has-dark-blue-color, .retailer-login p.has-dark-blue-color, .homepage p.has-dark-blue-color, .wp-pages p.has-dark-blue-color, .retailers-page p.has-dark-blue-color, .footer p.has-dark-blue-color {
  color: #2551a3;
}
.contact-form__container p.has-black-color, .product-details-page p.has-black-color, .woocommerce-product-list p.has-black-color, .retailer-login p.has-black-color, .homepage p.has-black-color, .wp-pages p.has-black-color, .retailers-page p.has-black-color, .footer p.has-black-color {
  color: #1b1b1b;
}
.contact-form__container p.has-white-color, .product-details-page p.has-white-color, .woocommerce-product-list p.has-white-color, .retailer-login p.has-white-color, .homepage p.has-white-color, .wp-pages p.has-white-color, .retailers-page p.has-white-color, .footer p.has-white-color {
  color: #ffffff;
}
.contact-form__container p.has-grey-10-color, .product-details-page p.has-grey-10-color, .woocommerce-product-list p.has-grey-10-color, .retailer-login p.has-grey-10-color, .homepage p.has-grey-10-color, .wp-pages p.has-grey-10-color, .retailers-page p.has-grey-10-color, .footer p.has-grey-10-color {
  color: #fafafa;
}
.contact-form__container p.has-grey-30-color, .product-details-page p.has-grey-30-color, .woocommerce-product-list p.has-grey-30-color, .retailer-login p.has-grey-30-color, .homepage p.has-grey-30-color, .wp-pages p.has-grey-30-color, .retailers-page p.has-grey-30-color, .footer p.has-grey-30-color {
  color: #a2a1a1;
}
.contact-form__container p.has-grey-60-color, .product-details-page p.has-grey-60-color, .woocommerce-product-list p.has-grey-60-color, .retailer-login p.has-grey-60-color, .homepage p.has-grey-60-color, .wp-pages p.has-grey-60-color, .retailers-page p.has-grey-60-color, .footer p.has-grey-60-color {
  color: #A6A8AB;
}
.contact-form__container p.has-grey-80-color, .product-details-page p.has-grey-80-color, .woocommerce-product-list p.has-grey-80-color, .retailer-login p.has-grey-80-color, .homepage p.has-grey-80-color, .wp-pages p.has-grey-80-color, .retailers-page p.has-grey-80-color, .footer p.has-grey-80-color {
  color: #898888;
}
.contact-form__container p.has-grey-90-color, .product-details-page p.has-grey-90-color, .woocommerce-product-list p.has-grey-90-color, .retailer-login p.has-grey-90-color, .homepage p.has-grey-90-color, .wp-pages p.has-grey-90-color, .retailers-page p.has-grey-90-color, .footer p.has-grey-90-color {
  color: #808384;
}
.contact-form__container p strong, .product-details-page p strong, .woocommerce-product-list p strong, .retailer-login p strong, .homepage p strong, .wp-pages p strong, .retailers-page p strong, .footer p strong {
  font-weight: 600;
}
@media (max-width: 1024px) {
  .contact-form__container p, .product-details-page p, .woocommerce-product-list p, .retailer-login p, .homepage p, .wp-pages p, .retailers-page p, .footer p {
    grid-column: 1/span 12;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .contact-form__container p, .product-details-page p, .woocommerce-product-list p, .retailer-login p, .homepage p, .wp-pages p, .retailers-page p, .footer p {
    grid-column: 1/span 12;
    gap: 20px;
  }
}
.contact-form__container p.has-text-align-center, .product-details-page p.has-text-align-center, .woocommerce-product-list p.has-text-align-center, .retailer-login p.has-text-align-center, .homepage p.has-text-align-center, .wp-pages p.has-text-align-center, .retailers-page p.has-text-align-center, .footer p.has-text-align-center {
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.contact-form__container p.has-text-align-right, .product-details-page p.has-text-align-right, .woocommerce-product-list p.has-text-align-right, .retailer-login p.has-text-align-right, .homepage p.has-text-align-right, .wp-pages p.has-text-align-right, .retailers-page p.has-text-align-right, .footer p.has-text-align-right {
  text-align: right;
}
.contact-form__container p a:hover, .product-details-page p a:hover, .woocommerce-product-list p a:hover, .retailer-login p a:hover, .homepage p a:hover, .wp-pages p a:hover, .retailers-page p a:hover, .footer p a:hover {
  text-decoration: underline;
}
.contact-form__container .error-page-button, .product-details-page .error-page-button, .woocommerce-product-list .error-page-button, .retailer-login .error-page-button, .homepage .error-page-button, .wp-pages .error-page-button, .retailers-page .error-page-button, .footer .error-page-button {
  grid-column: 4/span 6;
  text-align: center;
}
@media (max-width: 1024px) {
  .contact-form__container .error-page-button, .product-details-page .error-page-button, .woocommerce-product-list .error-page-button, .retailer-login .error-page-button, .homepage .error-page-button, .wp-pages .error-page-button, .retailers-page .error-page-button, .footer .error-page-button {
    grid-column: 1/span 12;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .contact-form__container .error-page-button, .product-details-page .error-page-button, .woocommerce-product-list .error-page-button, .retailer-login .error-page-button, .homepage .error-page-button, .wp-pages .error-page-button, .retailers-page .error-page-button, .footer .error-page-button {
    grid-column: 1/span 12;
    gap: 20px;
  }
}

:root {
  --wp--preset--spacing--20: 24px;
  --wp--preset--spacing--30: 32px;
  --wp--preset--spacing--40: 40px;
  --wp--preset--spacing--50: 48px;
  --wp--preset--spacing--60: 64px;
  --wp--preset--spacing--70: 72px;
}

.wp-block-spacer {
  width: 100%;
  display: block;
}
.intro-section .wp-block-spacer {
  height: 210px !important;
}
@media (max-width: 1024px) {
  .intro-section .wp-block-spacer {
    height: 20px !important;
  }
}

.wp-block-separator {
  border-color: #f2f2f2;
  border-style: solid;
  border-width: 1px;
}

.wp-block-custom-tabs {
  padding-top: 24px;
}
.wp-block-custom-tabs .tabs-nav {
  display: block;
  text-align: center;
}
.wp-block-custom-tabs .tabs-nav li {
  display: inline-block;
}
.wp-block-custom-tabs .tabs-nav li .tab-btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0px;
  padding: 24px 24px;
  background: #ffffff;
  border: none;
  cursor: pointer;
  border-radius: 0px;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.wp-block-custom-tabs .tabs-nav li .tab-btn:before {
  content: "";
  width: 56px;
  height: 56px;
  margin: 0px auto 16px auto;
  background-size: contain;
  background-image: url("../images/icons/helmet_othermounts.svg");
  display: block;
}
.wp-block-custom-tabs .tabs-nav li .tab-btn.active {
  background-color: #f2f2f2;
  border-top: 3px solid #00ace6;
  color: #00ace6;
}
.wp-block-custom-tabs .tabs-nav li:nth-child(1) .tab-btn:before {
  background-image: url("../images/icons/helmet_chinmounts.svg");
}
.wp-block-custom-tabs .tabs-nav li:nth-child(2) .tab-btn:before {
  background-image: url("../images/icons/helmet_topmounts.svg");
}
.wp-block-custom-tabs .tabs-nav li:nth-child(3) .tab-btn:before {
  background-image: url("../images/icons/helmet_othermounts.svg");
}
.wp-block-custom-tabs .tabs-content {
  background-color: #f2f2f2;
}
@media (max-width: 1024px) {
  .wp-block-custom-tabs .tabs-content {
    padding: 0px 24px;
  }
}
.wp-block-custom-tabs .tabs-content__wrapper {
  width: 100%;
  max-width: 1140px;
  margin: 0px auto;
}
.wp-block-custom-tabs .tabs-content__wrapper .wp-block-custom-tab {
  padding: 96px 0px;
  display: none;
}
@media (max-width: 1024px) {
  .wp-block-custom-tabs .tabs-content__wrapper .wp-block-custom-tab {
    padding: 48px 0px;
  }
}
.wp-block-custom-tabs .tabs-content__wrapper .wp-block-custom-tab.active {
  display: block !important;
}
.wp-block-custom-tabs .tabs-content__wrapper .wp-block-custom-tab .tab-content .wp-block-columns {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 1220px) {
  .wp-block-custom-tabs .tabs-content__wrapper .wp-block-custom-tab .tab-content .wp-block-columns {
    justify-content: center;
  }
}
@media (max-width: 1024px) {
  .wp-block-custom-tabs .tabs-content__wrapper .wp-block-custom-tab .tab-content .wp-block-columns {
    flex-direction: column;
    gap: 32px;
  }
}
.wp-block-custom-tabs .tabs-content__wrapper .wp-block-custom-tab .tab-content .wp-block-columns .wp-block-column {
  flex-grow: 0 !important;
  flex-basis: auto !important;
  min-width: auto !important;
  width: 46%;
}
@media (max-width: 1220px) {
  .wp-block-custom-tabs .tabs-content__wrapper .wp-block-custom-tab .tab-content .wp-block-columns .wp-block-column {
    padding: 0px 32px;
    width: 48%;
  }
}
@media (max-width: 1024px) {
  .wp-block-custom-tabs .tabs-content__wrapper .wp-block-custom-tab .tab-content .wp-block-columns .wp-block-column {
    padding: 0px;
    width: 100%;
  }
}
.wp-block-custom-tabs .tabs-content__wrapper .wp-block-custom-tab .tab-content .wp-block-columns .wp-block-column.column-content-tab .wp-block-buttons {
  margin-top: -28px;
}
.wp-block-custom-tabs .tabs-content__wrapper .wp-block-custom-tab .tab-content .wp-block-columns .wp-block-column.column-content-tab .wp-block-buttons .wp-block-button__link {
  box-shadow: 2px 4px 20px rgba(1, 15, 27, 0.08);
}
.wp-block-custom-tabs .tabs-content__wrapper .wp-block-custom-tab .tab-content h4 {
  margin-bottom: 24px;
  color: #2551a3;
}
.wp-block-custom-tabs .tabs-content__wrapper .wp-block-custom-tab .tab-content strong {
  font-weight: 600;
  color: #2551a3;
}
.wp-block-custom-tabs .tabs-content__wrapper .wp-block-custom-tab .tab-content .wp-block-image {
  position: relative;
  padding: 0px;
}
.wp-block-custom-tabs .tabs-content__wrapper .wp-block-custom-tab .tab-content .wp-block-image img {
  border-radius: 6px;
  border: 16px solid #ffffff;
  box-shadow: 21px 40px 60px rgba(0, 0, 0, 0.15);
}
.wp-block-custom-tabs .tabs-content__wrapper .wp-block-custom-tab .tab-content .wp-block-image .wp-element-caption {
  font-family: "Shadows Into Light", cursive;
  font-weight: 600;
  font-size: 24px;
  background-color: #ffffff;
  position: absolute;
  text-align: center;
  padding: 24px 16px 48px 16px;
  bottom: 0px;
  width: 100%;
}

.wp-block-custom-reviews {
  display: grid;
  gap: 20px;
  padding: 32px 0;
}
.wp-block-custom-reviews .reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.wp-block-custom-reviews .review-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  padding: 32px;
  box-shadow: 10px 20px 50px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wp-block-custom-reviews .review-item .review-text {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
  line-height: 140%;
  margin-bottom: 1.5rem;
  color: #2A2A2A;
  flex-grow: 1;
}
.wp-block-custom-reviews .review-item .review-text strong {
  font-weight: 600;
}
.wp-block-custom-reviews .review-item .review-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wp-block-custom-reviews .review-item .review-details .review-author {
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  color: #1A1A18;
  margin-bottom: 0;
}
.wp-block-custom-reviews .review-item .review-details .review-stars {
  color: #FFDA44;
  font-size: 1rem;
}
.wp-block-custom-reviews .review-item .review-details .review-stars .star {
  opacity: 0.3;
}
.wp-block-custom-reviews .review-item .review-details .review-stars .star.filled {
  opacity: 1;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 300ms ease, visibility 300ms ease;
  background-image: url("../images/vmag-icon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 32px 24px;
}

/* Loader animation */
.loader {
  border: 5px solid #F5F5F5;
  border-top: 5px solid #00ace6; /* blå, kan ændres */
  border-radius: 50%;
  width: 74px;
  height: 74px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.navigation {
  top: 0px;
  width: 100%;
  position: fixed;
  z-index: 100;
  transition: all 300ms ease-in;
}
@media (max-width: 768px) {
  .navigation {
    background-color: #ffffff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
}
.navigation.js-scrolled, .product-details-page .navigation, .product-list .navigation, .woocommerce-product-list .navigation, .checkout-pages .navigation {
  background-color: #ffffff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.navigation.is-open .navigation__container__nav {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.navigation__container {
  padding-top: 24px;
  padding-bottom: 24px;
  grid-template-areas: "logo navigation utility";
  display: grid;
  transition: all 300ms ease-in;
  padding-left: 40px;
  padding-right: 40px;
  grid-template-columns: 2fr 10fr;
  max-width: 1440px;
  margin: 0px auto;
  align-items: center;
}
@media (max-width: 768px) {
  .navigation__container {
    padding: 0px 24px;
  }
}
.js-scrolled .navigation__container, .product-details-page .navigation__container, .product-list .navigation__container, .woocommerce-product-list .navigation__container, .checkout-pages .navigation__container {
  padding-top: 0px;
  padding-bottom: 0px;
}
@media (max-width: 768px) {
  .js-scrolled .navigation__container, .product-details-page .navigation__container, .product-list .navigation__container, .woocommerce-product-list .navigation__container, .checkout-pages .navigation__container {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.navigation__container__logo {
  grid-column: 1/span 2;
  grid-area: logo;
}
.navigation__container__logo a {
  position: relative;
  display: block;
  transition: all 300ms ease-in;
  max-width: 160px;
  height: 52px;
}
.js-scrolled .navigation__container__logo a, .product-details-page .navigation__container__logo a, .product-list .navigation__container__logo a, .woocommerce-product-list .navigation__container__logo a, .checkout-pages .navigation__container__logo a {
  height: 37px;
}
@media (max-width: 768px) {
  .js-scrolled .navigation__container__logo a, .product-details-page .navigation__container__logo a, .product-list .navigation__container__logo a, .woocommerce-product-list .navigation__container__logo a, .checkout-pages .navigation__container__logo a {
    height: 52px;
  }
}
.navigation__container__logo a img {
  max-width: 156px;
  height: auto;
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 1;
  transition: all 300ms ease-in;
}
.navigation__container__logo a img.original {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
@media (max-width: 768px) {
  .navigation__container__logo a img {
    top: 0px;
    left: 0px;
    opacity: 0;
    transform: scale(0.7);
  }
  .navigation__container__logo a img.original {
    top: auto;
    left: -20px;
    opacity: 1;
    transform: scale(0.7);
  }
}
.js-scrolled .navigation__container__logo a img, .product-details-page .navigation__container__logo a img, .product-list .navigation__container__logo a img, .woocommerce-product-list .navigation__container__logo a img, .checkout-pages .navigation__container__logo a img {
  top: -7px;
  left: -20px;
  opacity: 0;
  transform: scale(0.7);
}
.js-scrolled .navigation__container__logo a img.original, .product-details-page .navigation__container__logo a img.original, .product-list .navigation__container__logo a img.original, .woocommerce-product-list .navigation__container__logo a img.original, .checkout-pages .navigation__container__logo a img.original {
  opacity: 1;
  transform: scale(0.7);
}
@media (max-width: 768px) {
  .js-scrolled .navigation__container__logo a img, .product-details-page .navigation__container__logo a img, .product-list .navigation__container__logo a img, .woocommerce-product-list .navigation__container__logo a img, .checkout-pages .navigation__container__logo a img {
    top: auto;
    left: -20px;
  }
  .js-scrolled .navigation__container__logo a img.original, .product-details-page .navigation__container__logo a img.original, .product-list .navigation__container__logo a img.original, .woocommerce-product-list .navigation__container__logo a img.original, .checkout-pages .navigation__container__logo a img.original {
    left: -22px;
    opacity: 1;
    transform: scale(0.7);
  }
}
.navigation__container__nav {
  grid-column: 3/span 10;
  grid-area: navigation;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 768px) {
  .navigation__container__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0px;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 300ms ease, opacity 300ms ease;
    z-index: 101;
  }
  .navigation__container__nav__list {
    flex-direction: column;
    text-align: center;
  }
  .navigation__container__nav__list li {
    display: block;
    margin: 16px 0;
  }
  .navigation__container__nav__list li a {
    color: #1b1b1b;
    font-size: 1.25rem;
    padding: 8px 0;
  }
  .navigation__container__nav__list li:after {
    display: none;
  }
}
.navigation__container__nav .navigation-button {
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0px;
  position: relative;
  padding: 16px 24px;
  border-radius: 4px;
  background-color: #00ace6;
  color: #ffffff;
  border: 2px solid #00ace6 !important;
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  z-index: 1;
  box-shadow: none;
  outline: none;
  display: none;
  position: absolute;
  top: 32px;
  right: 32px;
}
.navigation__container__nav .navigation-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -1;
}
.navigation__container__nav .navigation-button:hover {
  cursor: pointer;
  color: #00ace6;
  box-shadow: 0 8px 24px rgba(166, 168, 171, 0.35);
  border-color: #00ace6 !important;
}
.navigation__container__nav .navigation-button:hover::before {
  transform: translateY(0);
}
.navigation__container__nav .navigation-button svg path {
  fill: #ffffff;
}
.navigation__container__nav .navigation-button:hover svg path {
  fill: #00ace6;
}
@media (max-width: 768px) {
  .navigation__container__nav .navigation-button {
    display: inline-flex !important;
  }
}
.navigation__container__nav__list {
  list-style: none;
}
.navigation__container__nav__list li {
  display: inline-block;
  position: relative;
  margin-right: 16px;
}
@media (max-width: 768px) {
  .navigation__container__nav__list li {
    display: block;
    margin-right: 0px;
    margin-bottom: 16px;
  }
}
.navigation__container__nav__list li a {
  font-size: 14px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 1px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 200ms ease;
  padding: 24px 0px;
}
@media (max-width: 768px) {
  .navigation__container__nav__list li a {
    color: #1b1b1b;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 0px;
  }
}
.js-scrolled .navigation__container__nav__list li a, .product-details-page .navigation__container__nav__list li a, .product-list .navigation__container__nav__list li a, .woocommerce-product-list .navigation__container__nav__list li a, .checkout-pages .navigation__container__nav__list li a {
  color: #1b1b1b;
}
.navigation__container__nav__list li a:hover {
  color: #00ace6;
}
.navigation__container__nav__list li:after {
  content: "";
  left: 0px;
  right: 0px;
  height: 3px;
  bottom: 0px;
  opacity: 0;
  transition: all 300ms ease;
  position: absolute;
  background-color: #00ace6;
}
.js-scrolled .navigation__container__nav__list li:after, .product-details-page .navigation__container__nav__list li:after, .product-list .navigation__container__nav__list li:after, .woocommerce-product-list .navigation__container__nav__list li:after, .checkout-pages .navigation__container__nav__list li:after {
  bottom: 0px;
}
.navigation__container__nav__list li.current-menu-item:after {
  opacity: 1;
}
.navigation__container__nav__list li.menu-item-has-children {
  position: relative;
}
.navigation__container__nav__list li.menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  text-align: center;
  z-index: 3;
  padding: 8px;
  border-radius: 6px;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
@media (max-width: 768px) {
  .navigation__container__nav__list li.menu-item-has-children .sub-menu {
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    box-shadow: none;
  }
}
.navigation__container__nav__list li.menu-item-has-children .sub-menu:after {
  bottom: 100%;
  left: 50%;
  margin-bottom: -5px;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #fff;
  border-width: 10px;
  margin-left: -10px;
}
.navigation__container__nav__list li.menu-item-has-children .sub-menu li {
  float: none;
  display: block;
  padding: 0px;
  margin-right: 0px;
}
.navigation__container__nav__list li.menu-item-has-children .sub-menu li a {
  color: #1b1b1b;
  padding: 8px 16px;
}
@media (max-width: 768px) {
  .navigation__container__nav__list li.menu-item-has-children .sub-menu li a {
    font-size: 18px;
    font-weight: 500;
  }
}
.navigation__container__nav__list li.menu-item-has-children .sub-menu li:hover a {
  color: #00ace6;
}
.navigation__container__nav__list li.menu-item-has-children .sub-menu li.current-menu-item a {
  color: #00ace6;
  font-weight: 800;
}
.navigation__container__nav__list li.menu-item-has-children:hover .sub-menu {
  display: block;
}
.navigation__container__nav__list li.menu-item-has-children:hover .sub-menu li:after {
  display: none;
}
.navigation__container__nav a {
  display: inline-block;
}
.navigation__container__actions {
  grid-column: 1/span 2;
  grid-area: utility;
  margin-left: 32px;
  justify-self: end;
  align-content: center;
}
.navigation__container__actions .navigation-button {
  display: none !important;
}
@media (max-width: 768px) {
  .navigation__container__actions .navigation-button {
    display: inline-flex !important;
  }
}
.navigation__container__actions .button {
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0px;
  position: relative;
  padding: 16px 24px;
  border-radius: 4px;
  background-color: #00ace6;
  color: #ffffff;
  border: 2px solid #00ace6 !important;
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  z-index: 1;
  box-shadow: none;
  outline: none;
  padding: 6px 12px;
  display: block;
  position: relative;
  overflow: hidden;
  float: left;
}
.navigation__container__actions .button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -1;
}
.navigation__container__actions .button:hover {
  cursor: pointer;
  color: #00ace6;
  box-shadow: 0 8px 24px rgba(166, 168, 171, 0.35);
  border-color: #00ace6 !important;
}
.navigation__container__actions .button:hover::before {
  transform: translateY(0);
}
.navigation__container__actions .button svg path {
  fill: #ffffff;
}
.navigation__container__actions .button:hover svg path {
  fill: #00ace6;
}
.navigation__container__actions .button.cart-button {
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0px;
  position: relative;
  padding: 16px 24px;
  border-radius: 4px;
  background-color: #ffffff;
  color: #00ace6;
  border: 2px solid #00ace6 !important;
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  z-index: 1;
  box-shadow: none;
  outline: none;
  position: relative;
  padding: 6px 6px 6px 8px;
  margin-right: 8px;
}
.navigation__container__actions .button.cart-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2551a3;
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -1;
}
.navigation__container__actions .button.cart-button:hover {
  cursor: pointer;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(166, 168, 171, 0.35);
  border-color: #2551a3 !important;
}
.navigation__container__actions .button.cart-button:hover::before {
  transform: translateY(0);
}
.navigation__container__actions .button.cart-button svg path {
  fill: #00ace6;
}
.navigation__container__actions .button.cart-button .cart-indicator {
  position: absolute;
  z-index: 99;
  top: 6px;
  right: 7px;
  min-width: 10px;
  height: 10px;
  background: #e63600;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 50%;
  border: 1px solid #ffffff;
  opacity: 0;
  transform-origin: center;
}
.navigation__container__actions .button.cart-button .cart-indicator.active {
  opacity: 1;
  animation: pulseBadge 1.6s infinite ease-in-out;
}
.navigation__container__actions .button.cart-button:hover svg path {
  fill: #ffffff;
}
.navigation__container__actions .button:last-child {
  margin-left: 10px;
}
.navigation__container__actions .button.login-button {
  padding: 7px 12px 7px 12px;
}
@media (max-width: 768px) {
  .navigation__container {
    grid-template-columns: 2fr 1fr;
    gap: 32px;
  }
}

@keyframes pulseBadge {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}
.hero {
  height: 50vh;
  position: relative;
  background-size: cover;
  transition: opacity 400ms ease;
  background-position: center right;
  background-repeat: no-repeat;
}
.homepage .hero {
  height: 70vh;
}
@media (max-width: 768px) {
  .homepage .hero {
    height: 55vh;
  }
}
.checkout-pages .hero {
  height: 40vh;
}
@media (max-width: 768px) {
  .hero {
    background-size: cover;
    overflow: hidden;
    height: 40vh;
  }
}
.hero:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 300ms ease-in;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
}
.hero__divider {
  right: 0px;
  bottom: -1px;
  width: 970px;
  height: 215px;
  z-index: 1;
  position: absolute;
  background-size: contain;
  background-image: url("../images/hero_clouds_grey.svg");
  background-position: top right;
  background-repeat: no-repeat;
}
.retailers-page .hero__divider, .checkout-pages .hero__divider {
  background-image: url("../images/hero_clouds_grey-15.svg");
}
@media (max-width: 768px) {
  .hero__divider {
    right: -1px;
    width: 100%;
    height: 106px;
    background-position: bottom right;
  }
}
.hero__container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-align: center;
  padding-block: 64px;
}
@media (max-width: 768px) {
  .hero__container {
    padding-block: 48px;
  }
}
.hero__container__heading h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 140%;
  letter-spacing: 0px;
  position: relative;
  top: 30px;
  opacity: 0;
  margin-bottom: 16px;
  text-transform: uppercase;
  padding-bottom: 16px;
  color: #ffffff;
  transition: all 300ms ease-in;
}
.js-loaded .hero__container__heading h1 {
  top: 0;
  opacity: 1;
}
@media (max-width: 768px) {
  .hero__container__heading h1 {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  .hero__container__heading h1 {
    font-size: 32px;
  }
}
.hero__container__description {
  position: relative;
}
@media (max-width: 768px) {
  .hero__container__description {
    padding: 0px;
  }
}
.hero__container__description p {
  font-size: 32px;
  font-weight: 300;
  line-height: 28px;
  color: #ffffff;
  padding-bottom: 48px;
  top: 30px;
  opacity: 0;
  max-width: 760px;
  margin-inline: auto;
  transition: all 300ms ease-in;
}
@media (max-width: 768px) {
  .hero__container__description p {
    font-size: 18px !important;
    line-height: 32px;
  }
}
@media (max-width: 480px) {
  .hero__container__description p {
    font-size: 32px;
  }
}
.js-loaded .hero__container__description p {
  top: 0;
  opacity: 1;
  transition-delay: 200ms;
}
.hero__container__description p span {
  position: relative;
  display: inline-block;
}
.hero__container__description p span:after {
  content: "";
  position: absolute;
  left: 0px;
  right: 100%;
  bottom: -12px;
  height: 4px;
  z-index: 5;
  transition: all 200ms ease-in;
  background: linear-gradient(to right, rgb(0, 172, 230) 0%, rgb(37, 81, 163) 100%);
}
@media (max-width: 768px) {
  .hero__container__description p span:after {
    display: none;
  }
}
.js-effects-ready .hero__container__description p span:after {
  right: 0%;
}
@media (max-width: 480px) {
  .hero__container__description a {
    display: none;
  }
}
@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas: "heading" "description";
  }
}
@media (max-width: 768px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 32px;
    grid-template-areas: "heading" "description";
  }
}
@media (max-width: 480px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 0px;
    grid-template-areas: "heading";
  }
}

.retailers {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-inline: auto;
  width: 100%;
}
.retailers__filter {
  grid-column: span 6;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .retailers__filter {
    grid-column: span 12;
    position: sticky;
    top: 68px;
    z-index: 99;
    background: #00ace6;
    padding: 16px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  .retailers__filter label {
    color: #ffffff;
  }
}
.retailers__filter label {
  display: none;
}
.retailers__filter select {
  border: 1px solid #ccc;
}
.retailers__list {
  grid-column: span 12;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 items per række */
  grid-gap: 20px;
  grid-auto-flow: dense; /* masonry-effekt */
}
@media (max-width: 1024px) {
  .retailers__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .retailers__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .retailers__list {
    grid-template-columns: 1fr;
  }
}
.retailers__list__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  padding: 32px;
  box-shadow: 10px 20px 50px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.retailers__list__item.is-visible {
  opacity: 1;
}
.retailers__list__item.is-hidden {
  opacity: 0.2;
}
@media (max-width: 768px) {
  .retailers__list__item.is-hidden {
    display: none !important;
  }
}
.retailers__list__item__logo img {
  width: auto;
  max-height: 110px;
  margin-bottom: 24px;
}
.retailers__list__item__info h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  color: #00ace6;
  margin-bottom: 8px;
}
.retailers__list__item__info p {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0px;
  color: #898888;
}
.retailers__list__item__info p.retail-country {
  margin-bottom: 8px;
}
.retailers__list__item__info p.retail-phone {
  margin-bottom: 24px;
}
.retailers__list__item__info .retail-link {
  transition: color 300ms ease;
}
.retailers__list__item__info .retail-link .icon {
  opacity: 0;
}
.retailers__list__item__info .retail-link:hover {
  color: #00ace6;
  margin-bottom: 24px;
  text-decoration: none;
}
.retailers__list__item__info .retail-link:hover .icon {
  margin-left: 4px;
  opacity: 1;
}

.footer {
  padding-top: 100px;
  position: relative;
  color: #ffffff;
  background: #0197CA;
  background: linear-gradient(180deg, #2551a3 20%, rgb(0, 172, 230) 100%);
}
.footer__logo {
  top: -30px;
  left: 50%;
  width: 64px;
  height: 64px;
  margin-left: -32px;
  display: block;
  position: absolute;
  z-index: 2;
  background-color: #ffffff;
  transition: all 300ms ease;
  border-radius: 50px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.footer__logo img {
  display: block;
  width: 40px;
  height: auto;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  transition: all 300ms ease;
}
.footer__logo:hover {
  cursor: pointer;
}
.footer__logo:hover img {
  margin-top: 12px;
  transform-origin: 50% 50%;
  transform: rotate(180deg);
}
.footer__divider {
  left: 0px;
  top: 0px;
  width: 100%;
  height: 175px;
  position: absolute;
  background-image: url("../images/footer_clouds_grey.svg");
  background-repeat: no-repeat;
  background-position: top left;
}
.homepage .footer__divider, .retailers-page .footer__divider {
  background-image: url("../images/footer_clouds_white.svg");
}
@media (max-width: 768px) {
  .footer__divider {
    top: -1px;
    width: 100%;
    height: 70px;
    background-size: contain;
    background-position: top left;
  }
}
.footer__container {
  display: grid;
  position: relative;
  z-index: 3;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-inline: auto;
  width: 100%;
  max-width: 1440px;
  padding-inline: 0px;
}
.footer__container__contact {
  grid-column: 4/span 6;
  padding-bottom: 96px;
  text-align: center;
}
@media (max-width: 1024px) {
  .footer__container__contact {
    grid-column: 2/span 10;
  }
}
.footer__container__contact .social-icons a {
  display: inline-block;
  border-radius: 50px;
  width: 48px;
  height: 48px;
  padding: 0px;
  text-align: center;
  margin: 0px 8px;
  background-color: #f2f2f2;
  transition: all 300ms ease;
  box-shadow: none;
}
.footer__container__contact .social-icons a:hover {
  background-color: #00ace6;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.footer__container__contact .social-icons a:hover svg path {
  fill: #ffffff;
}
.footer__container__contact .social-icons a svg {
  display: block;
  margin: 12px auto 0px auto;
  transition: all 300ms ease;
}
.footer__container__contact .social-icons a svg path {
  transform: scale(1.5);
  fill: #2551a3;
  transition: all 300ms ease;
}
.footer__container__contact .disclaimer {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
}
.footer__container__contact .disclaimer p {
  margin: 24px 0px;
}
@media (max-width: 768px) {
  .footer__container__contact .disclaimer p {
    font-size: 14px !important;
  }
}
.footer__container__contact .copyright {
  margin-bottom: 16px;
}
.footer__container__contact .copyright p {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
}
.footer__container__contact .credit p {
  font-size: 10px;
  color: #fafafa;
}
@media (max-width: 768px) {
  .footer__container__contact .credit {
    text-align: center;
  }
}

.homepage, .wp-pages, .retailers-page {
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .homepage, .wp-pages, .retailers-page {
    padding-top: 52px;
  }
}

.retailers-page {
  background-color: #F5F5F5;
}
.retailers-page .wp-block-group.is-contactform .wp-block-group__inner-container {
  width: 100% !important;
  max-width: 1140px !important;
  margin: 0px auto !important;
}
.retailers-page .wp-block-group.is-contactform .wp-block-group__inner-container .wp-block-columns {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .retailers-page .wp-block-group.is-contactform .wp-block-group__inner-container .wp-block-columns {
    flex-direction: column !important;
  }
}
.retailers-page .wp-block-group.is-contactform .wp-block-group__inner-container .wp-block-columns .wp-block-column {
  flex-grow: 0 !important;
  flex-basis: auto !important;
  min-width: auto !important;
  width: 46%;
}

.retailer-login {
  padding-top: 60px;
  position: relative;
  background-color: #F5F5F5;
}
.woocommerce-product-list {
  background-color: #fafafa;
}
@media (max-width: 768px) {
  .woocommerce-product-list {
    padding-top: 52px;
  }
}
.woocommerce-product-list .category-description {
  text-align: center;
  margin-bottom: 32px;
}

.product-details-page {
  background-color: #fafafa;
  padding-top: 65px;
}

.checkout-pages {
  background-color: #F5F5F5;
}
@media (max-width: 768px) {
  .checkout-pages {
    padding-top: 52px;
  }
}

.contact-form {
  background-color: #fafafa;
  padding-top: 48px;
  padding-bottom: 48px;
  margin-top: 24px;
}
.contact-form__container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-inline: auto;
  padding-inline: 40px;
  width: 100%;
  text-align: center;
  max-width: 1440px;
}
.contact-form__container > * {
  padding: 0;
}
@media (max-width: 768px) {
  .contact-form__container {
    padding-inline: 30px;
    padding-inline: 20px;
  }
}
@media (max-width: 480px) {
  .contact-form__container {
    gap: 20px;
    padding-inline: 20px;
  }
}
.contact-form__container__header {
  grid-column: 3/span 8;
  position: relative;
  padding-bottom: 16px;
}
@media (max-width: 768px) {
  .contact-form__container__header {
    grid-column: 1/span 12;
  }
}
.contact-form__container__header:after {
  content: "";
  width: 100px;
  height: 2px;
  position: absolute;
  background-color: #00ace6;
  left: 50%;
  bottom: 0px;
  margin-left: -50px;
}
.contact-form__container__header p {
  color: #A6A8AB;
}
.contact-form__container__content {
  grid-column: 1/span 12;
}
.contact-form__container__action {
  grid-column: 3/span 8;
}

.woocommerce-notices-wrapper {
  position: fixed;
  bottom: 0px;
  width: 100%;
  z-index: 99;
}
.woocommerce-notices-wrapper .woocommerce-error, .woocommerce-notices-wrapper .woocommerce-info, .woocommerce-notices-wrapper .woocommerce-message {
  padding: 1em 2em 1em 3.5em;
  margin: 0px;
  position: relative;
  background-color: #ffffff;
  color: #1b1b1b;
  border-top: 3px solid #00ace6;
  list-style: none outside;
  width: auto;
  word-wrap: break-word;
}
.woocommerce-notices-wrapper .woocommerce-error li, .woocommerce-notices-wrapper .woocommerce-info li, .woocommerce-notices-wrapper .woocommerce-message li {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0px;
}
.woocommerce-notices-wrapper .woocommerce-error li strong, .woocommerce-notices-wrapper .woocommerce-info li strong, .woocommerce-notices-wrapper .woocommerce-message li strong {
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0px;
}

.category-list__container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  margin-inline: auto;
  padding: 64px 40px 24px;
  width: 100%;
  max-width: 1440px;
}
.category-list__container > * {
  padding: 0;
}
@media (max-width: 1024px) {
  .category-list__container {
    padding-inline: 30px;
  }
}
@media (max-width: 768px) {
  .category-list__container {
    padding-inline: 20px;
  }
}
@media (max-width: 480px) {
  .category-list__container {
    gap: 20px;
  }
}
.category-list__container__header {
  grid-column: 1/span 12;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 1px solid #a2a1a1;
}
.category-list__container__header:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: #00ace6;
}
.category-list__container__header span {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
  color: #898888;
}
.category-list__container__header h4 {
  font-size: 22px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
  color: #1b1b1b;
}
.category-list__container__list {
  grid-column: 1/span 12;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-inline: auto;
  width: 100%;
  max-width: 1440px;
}
.category-list__container__list__item {
  grid-column: span 2;
  margin: 0;
}
@media (max-width: 1024px) {
  .category-list__container__list__item {
    grid-column: span 4;
  }
}
@media (max-width: 768px) {
  .category-list__container__list__item {
    grid-column: span 6;
  }
}
@media (max-width: 480px) {
  .category-list__container__list__item {
    grid-column: span 6;
  }
}
.category-list__container__list__item__link {
  display: block;
  transition: all 300ms ease;
}
.category-list__container__list__item__link:hover .category-list__container__list__item__link__image {
  background-color: #a2a1a1;
}
.category-list__container__list__item__link:hover .category-list__container__list__item__link__name {
  color: #00ace6;
}
.category-list__container__list__item__link__image {
  display: block;
  background-color: #fafafa;
  border: 0;
  text-align: center;
  padding: 40px 16px;
  border-radius: 4px;
  transition: all 300ms ease;
  margin: 0;
  width: 100%;
  max-width: 100%;
}
.category-list__container__list__item__link__image .thumbnail {
  display: block;
  height: 72px;
  width: 72px;
  margin: 0 auto;
  max-width: 100%;
  padding: 0;
}
.category-list__container__list__item__link__name {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 8px;
  color: #1b1b1b;
  transition: all 300ms ease;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
}
.category-list__container__list__item__count {
  display: block;
  width: 100%;
  text-align: center;
  color: #A6A8AB;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
}

.product-list, .products {
  grid-column: 1/span 12;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-inline: auto;
  padding-inline: 40px;
  width: 100%;
  max-width: 1440px;
  box-shadow: none;
  border-radius: 0px;
  padding: 0px;
  background-color: transparent;
}
@media (max-width: 768px) {
  .product-list, .products {
    grid-column: span 12;
  }
}
.product-list__header, .products__header {
  grid-column: 1/-1;
  padding-bottom: 8px;
  border-bottom: 1px solid #a2a1a1;
  position: relative;
}
.product-list__header:after, .products__header:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: #00ace6;
}
.product-list__header h4, .products__header h4 {
  font-size: 22px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
  color: #1b1b1b;
}
.product-list__header span, .products__header span {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
  color: #898888;
}

.woocommerce-no-products-found {
  grid-column: 2/span 10;
}

.product-card,
.wc-block-grid__product {
  grid-column: span 3;
  width: 100%;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: rgba(17, 17, 26, 0.05) 0 4px 16px, rgba(17, 17, 26, 0.05) 0 8px 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 24px;
  transition: all 300ms ease-in;
}
@media (max-width: 1024px) {
  .product-card,
  .wc-block-grid__product {
    grid-column: span 6;
  }
}
@media (max-width: 768px) {
  .product-card,
  .wc-block-grid__product {
    grid-column: span 12;
  }
}
@media (max-width: 480px) {
  .product-card,
  .wc-block-grid__product {
    grid-column: span 12;
  }
}
.product-card .wc-block-grid__product-link,
.wc-block-grid__product .wc-block-grid__product-link {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.product-card .wc-block-grid__product-link:hover,
.wc-block-grid__product .wc-block-grid__product-link:hover {
  transform: translateY(-2px);
  box-shadow: rgba(17, 17, 26, 0.08) 0 6px 20px;
}
.product-card .wc-block-grid__product-link .wc-block-grid__product-onsale,
.wc-block-grid__product .wc-block-grid__product-link .wc-block-grid__product-onsale {
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0px;
  background: #00ace6;
  color: #ffffff;
  border: 0px;
  border-radius: 4px;
  display: inline-block;
  left: auto;
  padding: 4px 8px;
  position: absolute;
  right: 16px;
  text-align: center;
  text-transform: uppercase;
  top: 16px;
  width: auto;
  z-index: 9;
  margin: 0px;
}
.product-card .product-image,
.product-card .product-image-wrapper,
.product-card .wc-block-components-product-image,
.product-card .wc-block-grid__product-image,
.wc-block-grid__product .product-image,
.wc-block-grid__product .product-image-wrapper,
.wc-block-grid__product .wc-block-components-product-image,
.wc-block-grid__product .wc-block-grid__product-image {
  position: relative;
  width: 100%;
}
.product-card .product-image img,
.product-card .product-image picture,
.product-card .product-image-wrapper img,
.product-card .product-image-wrapper picture,
.product-card .wc-block-components-product-image img,
.product-card .wc-block-components-product-image picture,
.product-card .wc-block-grid__product-image img,
.product-card .wc-block-grid__product-image picture,
.wc-block-grid__product .product-image img,
.wc-block-grid__product .product-image picture,
.wc-block-grid__product .product-image-wrapper img,
.wc-block-grid__product .product-image-wrapper picture,
.wc-block-grid__product .wc-block-components-product-image img,
.wc-block-grid__product .wc-block-components-product-image picture,
.wc-block-grid__product .wc-block-grid__product-image img,
.wc-block-grid__product .wc-block-grid__product-image picture {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1/1 !important;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.product-card .product-image .onsale,
.product-card .product-image-wrapper .onsale,
.product-card .wc-block-components-product-image .onsale,
.product-card .wc-block-grid__product-image .onsale,
.wc-block-grid__product .product-image .onsale,
.wc-block-grid__product .product-image-wrapper .onsale,
.wc-block-grid__product .wc-block-components-product-image .onsale,
.wc-block-grid__product .wc-block-grid__product-image .onsale {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #00ace6;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  padding: 6px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}
.product-card .woocommerce-loop-product__title,
.product-card .wp-block-post-title,
.product-card .product-title,
.product-card .wc-block-grid__product-title,
.wc-block-grid__product .woocommerce-loop-product__title,
.wc-block-grid__product .wp-block-post-title,
.wc-block-grid__product .product-title,
.wc-block-grid__product .wc-block-grid__product-title {
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  margin: 16px 24px 24px 24px;
  color: #2551a3;
  text-align: center;
  line-height: 1.4;
}
.product-card .price,
.product-card .woocommerce-Price-amount,
.product-card .wp-block-woocommerce-product-price,
.product-card .product-price,
.product-card .wc-block-grid__product-price,
.wc-block-grid__product .price,
.wc-block-grid__product .woocommerce-Price-amount,
.wc-block-grid__product .wp-block-woocommerce-product-price,
.wc-block-grid__product .product-price,
.wc-block-grid__product .wc-block-grid__product-price {
  padding: 0;
  text-align: center;
  width: 100%;
  margin: 0px 0px 16px 0px;
}
.product-card .price .amount,
.product-card .woocommerce-Price-amount .amount,
.product-card .wp-block-woocommerce-product-price .amount,
.product-card .product-price .amount,
.product-card .wc-block-grid__product-price .amount,
.wc-block-grid__product .price .amount,
.wc-block-grid__product .woocommerce-Price-amount .amount,
.wc-block-grid__product .wp-block-woocommerce-product-price .amount,
.wc-block-grid__product .product-price .amount,
.wc-block-grid__product .wc-block-grid__product-price .amount {
  color: #2551a3;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
}
.product-card .price del .amount,
.product-card .woocommerce-Price-amount del .amount,
.product-card .wp-block-woocommerce-product-price del .amount,
.product-card .product-price del .amount,
.product-card .wc-block-grid__product-price del .amount,
.wc-block-grid__product .price del .amount,
.wc-block-grid__product .woocommerce-Price-amount del .amount,
.wc-block-grid__product .wp-block-woocommerce-product-price del .amount,
.wc-block-grid__product .product-price del .amount,
.wc-block-grid__product .wc-block-grid__product-price del .amount {
  color: #A6A8AB;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  margin-right: 8px;
}
.product-card .price br,
.product-card .woocommerce-Price-amount br,
.product-card .wp-block-woocommerce-product-price br,
.product-card .product-price br,
.product-card .wc-block-grid__product-price br,
.wc-block-grid__product .price br,
.wc-block-grid__product .woocommerce-Price-amount br,
.wc-block-grid__product .wp-block-woocommerce-product-price br,
.wc-block-grid__product .product-price br,
.wc-block-grid__product .wc-block-grid__product-price br {
  display: none;
}
.product-card .price ins,
.product-card .woocommerce-Price-amount ins,
.product-card .wp-block-woocommerce-product-price ins,
.product-card .product-price ins,
.product-card .wc-block-grid__product-price ins,
.wc-block-grid__product .price ins,
.wc-block-grid__product .woocommerce-Price-amount ins,
.wc-block-grid__product .wp-block-woocommerce-product-price ins,
.wc-block-grid__product .product-price ins,
.wc-block-grid__product .wc-block-grid__product-price ins {
  text-decoration: none;
}
.product-card .price ins .amount,
.product-card .woocommerce-Price-amount ins .amount,
.product-card .wp-block-woocommerce-product-price ins .amount,
.product-card .product-price ins .amount,
.product-card .wc-block-grid__product-price ins .amount,
.wc-block-grid__product .price ins .amount,
.wc-block-grid__product .woocommerce-Price-amount ins .amount,
.wc-block-grid__product .wp-block-woocommerce-product-price ins .amount,
.wc-block-grid__product .product-price ins .amount,
.wc-block-grid__product .wc-block-grid__product-price ins .amount {
  color: #2551a3;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  text-decoration: none;
}
.product-card .description p,
.product-card .product-description p,
.wc-block-grid__product .description p,
.wc-block-grid__product .product-description p {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0px;
  margin-bottom: 24px;
  text-align: center;
}
.product-card .product-button,
.product-card .wc-block-grid__product-add-to-cart,
.wc-block-grid__product .product-button,
.wc-block-grid__product .wc-block-grid__product-add-to-cart {
  text-align: center;
  padding-bottom: 24px;
}
.wc-block-grid__products .product-card .product-button,
.wc-block-grid__products .product-card .wc-block-grid__product-add-to-cart,
.wc-block-grid__products .wc-block-grid__product .product-button,
.wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-add-to-cart {
  padding-bottom: 0px;
}
.product-card .button,
.product-card .wp-block-button__link,
.wc-block-grid__product .button,
.wc-block-grid__product .wp-block-button__link {
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0px;
  position: relative;
  padding: 16px 24px;
  border-radius: 4px;
  background-color: #00ace6;
  color: #ffffff;
  border: 2px solid #00ace6 !important;
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  z-index: 1;
  box-shadow: none;
  outline: none;
  display: inline-flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin: 8px auto 0 auto;
  text-decoration: none;
}
.product-card .button::before,
.product-card .wp-block-button__link::before,
.wc-block-grid__product .button::before,
.wc-block-grid__product .wp-block-button__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -1;
}
.product-card .button:hover,
.product-card .wp-block-button__link:hover,
.wc-block-grid__product .button:hover,
.wc-block-grid__product .wp-block-button__link:hover {
  cursor: pointer;
  color: #00ace6;
  box-shadow: 0 8px 24px rgba(166, 168, 171, 0.35);
  border-color: #00ace6 !important;
}
.product-card .button:hover::before,
.product-card .wp-block-button__link:hover::before,
.wc-block-grid__product .button:hover::before,
.wc-block-grid__product .wp-block-button__link:hover::before {
  transform: translateY(0);
}

.single-product {
  padding: 64px 0px;
}
.single-product__container {
  display: grid;
  padding-bottom: 24px;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-inline: auto;
  padding-inline: 40px;
  width: 100%;
  max-width: 1440px;
}
.single-product__container > * {
  padding: 0;
}
@media (max-width: 768px) {
  .single-product__container {
    padding-top: 32px;
    padding-inline: 30px;
  }
}
@media (max-width: 480px) {
  .single-product__container {
    gap: 20px;
    padding-inline: 20px;
  }
}
.single-product__container .woocommerce-notices-wrapper {
  grid-column: 2/span 10;
  display: none;
}

.product-details {
  grid-column: span 12;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-inline: auto;
  padding-inline: 0px;
  width: 100%;
  max-width: 1440px;
  position: relative;
}
.product-details .onsale {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #00ace6;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  padding: 6px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}
.product-details .woocommerce-product-gallery {
  grid-column: span 6;
}
@media (max-width: 768px) {
  .product-details .woocommerce-product-gallery {
    grid-column: span 12 !important;
  }
}
.product-details .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
  opacity: 1 !important;
  transition: none !important;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.product-details .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
  background-color: #ffffff;
  box-shadow: rgba(17, 17, 26, 0.05) 0 4px 16px, rgba(17, 17, 26, 0.05) 0 8px 32px;
  transition: all 300ms ease;
}
.product-details .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image a img, .product-details .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image a picture {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  border: 8px solid #ffffff;
  transition: all 300ms ease;
}
.product-details .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:first-child {
  grid-column: span 6;
}
.product-details .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:not(:first-child) {
  grid-column: span 1;
}
.product-details .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:not(:first-child) a img, .product-details .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:not(:first-child) a picture {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border: 4px solid #ffffff;
}
.product-details .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:not(:first-child) a:hover img {
  border-color: #00ace6;
}
.product-details .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image.js-selected {
  border: 2px solid #00ace6;
}
.product-details .summary {
  grid-column: span 6;
  margin-left: 24px;
}
@media (max-width: 768px) {
  .product-details .summary {
    grid-column: span 12;
    margin-left: 0px;
  }
}
.product-details .summary .product-category {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
  color: #898888;
}
.product-details .summary .product_title {
  font-size: 32px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0px;
  color: #00ace6;
}
.product-details .summary .product_meta {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
  color: #505050;
  margin-bottom: 24px;
}
.product-details .summary .product_meta .sku_wrapper {
  display: block;
}
.product-details .summary .product_meta .posted_in {
  display: block;
}
.product-details .summary .price {
  margin-top: 24px;
}
.product-details .summary .price .woocommerce-Price-amount bdi {
  color: #2551a3;
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0px;
}
.product-details .summary .price del .woocommerce-Price-amount bdi {
  color: #898888;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0px;
}
.product-details .summary .price ins {
  text-decoration: none;
}
.product-details .summary .price ins .woocommerce-Price-amount bdi {
  color: #2551a3;
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
}
.product-details .summary .product-long-description p {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
  margin: 24px 0px;
  line-height: 150%;
  color: #1b1b1b;
  grid-column: span 7;
}
.product-details .summary .product-long-description p.has-small-font-size {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
}
.product-details .summary .product-long-description p.has-medium-font-size {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
}
.product-details .summary .product-long-description p.has-large-font-size {
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
}
.product-details .summary .product-long-description p.has-text-align-center {
  text-align: center;
}
.product-details .summary .product-long-description p.has-text-align-right {
  text-align: right;
}
.product-details .summary .product-long-description p a {
  color: #00ace6;
}
.related-products .product-details .summary .product-long-description p a {
  color: #ffffff !important;
}
.product-details .summary .product-long-description p a:hover {
  text-decoration: underline;
}
.product-details .summary .woocommerce-product-details__short-description, .product-details .summary h2 {
  display: none;
}
.product-details .summary .login-notice {
  padding: 16px;
  border: 2px solid #f2f2f2;
  border-radius: 5px;
  background-color: #ffffff;
}
.product-details .summary .login-notice p {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
}
.product-details .summary .login-notice .customer-message p {
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  margin-bottom: 16px;
}
.product-details .summary .login-notice .customer-message .button {
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0px;
  position: relative;
  padding: 16px 24px;
  border-radius: 4px;
  background-color: #00ace6;
  color: #ffffff;
  border: 2px solid #00ace6 !important;
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  z-index: 1;
  box-shadow: none;
  outline: none;
  display: inline-flex;
}
.product-details .summary .login-notice .customer-message .button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -1;
}
.product-details .summary .login-notice .customer-message .button:hover {
  cursor: pointer;
  color: #00ace6;
  box-shadow: 0 8px 24px rgba(166, 168, 171, 0.35);
  border-color: #00ace6 !important;
}
.product-details .summary .login-notice .customer-message .button:hover::before {
  transform: translateY(0);
}
.product-details .summary .wc-custom-table {
  margin-top: 32px;
  margin-bottom: 32px;
}
.product-details .summary .wc-custom-table table {
  width: 100%;
  border-collapse: collapse;
}
.product-details .summary .wc-custom-table table thead tr th {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  padding: 8px 0px;
  text-align: left;
  color: #2551a3;
}
.product-details .summary .wc-custom-table table tbody tr td {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
  padding: 8px 0px;
  border-top: 1px solid #f2f2f2;
  color: #1b1b1b;
}
.product-details .summary .variations_form table.variations {
  width: 100%;
}
.product-details .summary .variations_form table.variations tbody tr {
  vertical-align: baseline;
}
.product-details .summary .variations_form table.variations tbody tr th.label {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  text-align: left;
  color: #808384;
}
.product-details .summary .variations_form table.variations tbody tr td.value select {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
  padding: 12px 8px;
  border: 1px solid #1b1b1b;
  border-radius: 4px;
  width: 100%;
  margin-bottom: 8px;
}
.product-details .summary .variations_form table.variations tbody tr td.value .reset_variations {
  margin: 8px 0px;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
  color: #00ace6;
  text-decoration: underline;
  cursor: pointer;
}
.product-details .summary .variations_form table.variations tbody tr td.value .reset_variations:hover {
  color: #2551a3;
}
.product-details .summary .single_variation_wrap .woocommerce-variation-price {
  margin-bottom: 24px;
}
.product-details .summary .single_variation_wrap .woocommerce-variation-price .price .woocommerce-Price-amount bdi {
  color: #2551a3;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
}
.product-details .summary .single_variation_wrap .woocommerce-variation-add-to-cart {
  border-top: 1px solid #a2a1a1;
  padding-top: 24px;
  text-align: left;
}
.product-details .summary .single_variation_wrap .woocommerce-variation-add-to-cart .quantity {
  margin-right: 8px;
  display: inline-block;
}
.product-details .summary .single_variation_wrap .woocommerce-variation-add-to-cart .quantity input.qty {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
  width: 80px;
  padding: 13px 16px 13px 16px;
  border: 1px solid #00ace6;
  border-radius: 4px;
  text-align: center;
}
.product-details .summary .single_variation_wrap .woocommerce-variation-add-to-cart .button {
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0px;
  position: relative;
  padding: 16px 24px;
  border-radius: 4px;
  background-color: #00ace6;
  color: #ffffff;
  border: 2px solid #00ace6 !important;
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  z-index: 1;
  box-shadow: none;
  outline: none;
  display: inline-flex;
}
.product-details .summary .single_variation_wrap .woocommerce-variation-add-to-cart .button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -1;
}
.product-details .summary .single_variation_wrap .woocommerce-variation-add-to-cart .button:hover {
  cursor: pointer;
  color: #00ace6;
  box-shadow: 0 8px 24px rgba(166, 168, 171, 0.35);
  border-color: #00ace6 !important;
}
.product-details .summary .single_variation_wrap .woocommerce-variation-add-to-cart .button:hover::before {
  transform: translateY(0);
}
.product-details .summary .cart .quantity {
  margin-right: 8px;
  display: inline-block;
}
.product-details .summary .cart .quantity input.qty {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
  width: 80px;
  padding: 13px 16px 13px 16px;
  border: 1px solid #00ace6;
  border-radius: 4px;
  text-align: center;
}
.product-details .summary .cart .button {
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0px;
  position: relative;
  padding: 16px 24px;
  border-radius: 4px;
  background-color: #00ace6;
  color: #ffffff;
  border: 2px solid #00ace6 !important;
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  z-index: 1;
  box-shadow: none;
  outline: none;
  display: inline-flex;
}
.product-details .summary .cart .button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -1;
}
.product-details .summary .cart .button:hover {
  cursor: pointer;
  color: #00ace6;
  box-shadow: 0 8px 24px rgba(166, 168, 171, 0.35);
  border-color: #00ace6 !important;
}
.product-details .summary .cart .button:hover::before {
  transform: translateY(0);
}
.product-details .related-products__title {
  grid-column: span 12;
  font-size: 28px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  padding-top: 40px;
  color: #00ace6;
}
.product-details .related-products .products {
  grid-column: span 12;
}
.product-details .related-products .products .product-card {
  grid-column: span 3;
}

.related-products {
  grid-column: 1/span 12;
}
.related-products__header {
  grid-column: 1/span 12;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 1px solid #a2a1a1;
}
.related-products__header:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: #00ace6;
}
.related-products__header span {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
  color: #A6A8AB;
}
.related-products__header h4 {
  font-size: 22px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
  color: #1b1b1b;
}
.related-products__list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-inline: auto;
  width: 100%;
  max-width: 1440px;
  padding-left: 0px !important;
}
.related-products__list > li {
  list-style-type: none !important;
}

.woocommerce-breadcrumb {
  padding-top: 24px;
  grid-column: span 12;
  color: #A6A8AB;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0px;
}
.woocommerce-breadcrumb a {
  text-transform: uppercase;
  color: #00ace6;
}
.woocommerce-breadcrumb a:hover {
  text-decoration: underline;
}
.single-product .woocommerce-breadcrumb {
  grid-column: span 12;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .single-product .woocommerce-breadcrumb {
    grid-column: span 12;
  }
}

.woocommerce-pagination {
  grid-column: span 12;
}
.woocommerce-pagination .page-numbers {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
}
.woocommerce-pagination .page-numbers li .page-numbers {
  display: block;
  width: 32px;
  height: 32px;
  background-color: #00ace6;
  text-align: center;
  line-height: 32px;
  border-radius: 4px;
  border: 2px solid #00ace6;
  color: #ffffff;
  transition: all 300ms ease;
}
.woocommerce-pagination .page-numbers li .page-numbers.current {
  background-color: #ffffff;
  color: #00ace6;
}
.woocommerce-pagination .page-numbers li .page-numbers.current:hover {
  background-color: #ffffff;
  color: #00ace6;
}
.woocommerce-pagination .page-numbers li .page-numbers:hover {
  border: 2px solid #2551a3;
  background-color: #2551a3;
}

.pstore-columns {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-inline: auto;
  padding-inline: 40px;
  width: 100%;
  max-width: 1440px;
}
@media (max-width: 1024px) {
  .pstore-columns {
    grid-template-columns: repeat(8, 1fr);
    padding-inline: 32px;
  }
}
@media (max-width: 768px) {
  .pstore-columns {
    grid-template-columns: repeat(4, 1fr);
    padding-inline: 24px;
  }
}
.pstore-columns .pstore-column-1 {
  border-radius: 10px;
  grid-column: 5/span 4;
  padding: 32px 32px;
  background-color: #ffffff !important;
  box-shadow: rgba(17, 17, 26, 0.05) 0 4px 16px, rgba(17, 17, 26, 0.05) 0 8px 32px;
}
@media (max-width: 1024px) {
  .pstore-columns .pstore-column-1 {
    grid-column: span 8;
    padding: 24px 24px;
  }
}
@media (max-width: 768px) {
  .pstore-columns .pstore-column-1 {
    grid-column: span 4;
    padding: 24px 24px;
  }
}
.pstore-columns .pstore-column-1 h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0px;
  margin-top: 32px;
  margin-bottom: 32px;
  color: #00ace6;
  position: relative;
}
.pstore-columns .pstore-column-1 .woocommerce-form-login .woocommerce-form-row {
  position: relative;
  margin-bottom: 48px;
}
.pstore-columns .pstore-column-1 .woocommerce-form-login .form-row .woocommerce-Button {
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0px;
  position: relative;
  padding: 16px 24px;
  border-radius: 4px;
  background-color: #00ace6;
  color: #ffffff;
  border: 2px solid #00ace6 !important;
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  z-index: 1;
  box-shadow: none;
  outline: none;
}
.pstore-columns .pstore-column-1 .woocommerce-form-login .form-row .woocommerce-Button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -1;
}
.pstore-columns .pstore-column-1 .woocommerce-form-login .form-row .woocommerce-Button:hover {
  cursor: pointer;
  color: #00ace6;
  box-shadow: 0 8px 24px rgba(166, 168, 171, 0.35);
  border-color: #00ace6 !important;
}
.pstore-columns .pstore-column-1 .woocommerce-form-login .form-row .woocommerce-Button:hover::before {
  transform: translateY(0);
}
.pstore-columns .pstore-column-1 .woocommerce-form-login .form-row .woocommerce-form__label-for-checkbox {
  display: none !important;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  display: block;
  margin-top: 8px;
}
.pstore-columns .pstore-column-1 .woocommerce-form-login .form-row .woocommerce-form__label-for-checkbox .woocommerce-form__input-checkbox {
  margin-right: 8px;
  width: 24px;
  height: 24px;
  border: 2px solid #a2a1a1;
}
.pstore-columns .pstore-column-1 .woocommerce-form-login .woocommerce-LostPassword {
  display: none;
}

.cart-checkout {
  padding: 64px 0px;
}
.cart-checkout .wp-block-woocommerce-cart {
  container-type: unset;
}
.cart-checkout .wp-block-woocommerce-cart .with-scroll-to-top__scroll-point, .cart-checkout .wp-block-woocommerce-cart .wc-block-components-notices__snackbar {
  display: none;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-notices {
  grid-column: span 12;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout {
  display: grid;
  margin-inline: auto;
  max-width: 1440px;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-inline: auto;
  width: 100%;
  margin-bottom: 0px;
  padding-inline: 40px;
}
@media (max-width: 1024px) {
  .cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout {
    padding-inline: 24px;
  }
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main {
  grid-column: 2/span 6;
  width: 100%;
}
@media (max-width: 1220px) {
  .cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main {
    grid-column: 1/span 8;
  }
}
@media (max-width: 1024px) {
  .cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main {
    grid-column: span 12;
    padding: 16px;
  }
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main table.wc-block-cart-items thead .wc-block-cart-items__header {
  border-bottom: 1px solid #a2a1a1;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main table.wc-block-cart-items thead .wc-block-cart-items__header-image, .cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main table.wc-block-cart-items thead .wc-block-cart-items__header-product, .cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main table.wc-block-cart-items thead .wc-block-cart-items__header-total {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  color: #2551a3;
  text-transform: none;
  text-align: left;
  padding: 8px 0px;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main table.wc-block-cart-items thead .wc-block-cart-items__header-product {
  visibility: visible;
  padding: 0px 24px;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main table.wc-block-cart-items thead .wc-block-cart-items__header-total {
  text-align: right;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main table.wc-block-cart-items tbody tr.wc-block-cart-items__row {
  border-bottom: 1px solid #a2a1a1;
  vertical-align: top;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main table.wc-block-cart-items tbody tr.wc-block-cart-items__row:last-child {
  border-bottom: 0px solid #a2a1a1;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main table.wc-block-cart-items tbody tr.wc-block-cart-items__row td {
  padding-top: 16px;
  padding-bottom: 16px;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main table.wc-block-cart-items tbody tr.wc-block-cart-items__row td.wc-block-cart-item__image img {
  display: block;
  width: 120px;
  height: auto;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main table.wc-block-cart-items tbody tr.wc-block-cart-items__row td.wc-block-cart-item__product .wc-block-cart-item__wrap {
  padding: 0px 24px;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main table.wc-block-cart-items tbody tr.wc-block-cart-items__row td.wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-components-product-name {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  margin-bottom: 0px;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main table.wc-block-cart-items tbody tr.wc-block-cart-items__row td.wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-cart-item__prices {
  margin-top: 4px;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main table.wc-block-cart-items tbody tr.wc-block-cart-items__row td.wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-cart-item__prices .wc-block-components-product-price {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main table.wc-block-cart-items tbody tr.wc-block-cart-items__row td.wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-cart-item__prices .wc-block-components-product-price .wc-block-formatted-money-amount {
  color: #2551a3;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main table.wc-block-cart-items tbody tr.wc-block-cart-items__row td.wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-cart-item__prices .wc-block-components-product-price .wc-block-components-product-price__regular {
  color: #A6A8AB;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main table.wc-block-cart-items tbody tr.wc-block-cart-items__row td.wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-cart-item__prices .wc-block-components-product-price .wc-block-components-product-price__value {
  color: #2551a3;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main table.wc-block-cart-items tbody tr.wc-block-cart-items__row td.wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-components-sale-badge {
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  border: 0px solid;
  border-radius: 4px;
  display: inline-block;
  padding: 4px 6px;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: #00ace6;
  color: #ffffff;
  margin-bottom: 12px;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main table.wc-block-cart-items tbody tr.wc-block-cart-items__row td.wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-components-product-metadata {
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0px;
  color: #808384;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main table.wc-block-cart-items tbody tr.wc-block-cart-items__row td.wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-components-product-metadata .wc-block-components-product-metadata__description {
  display: none;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main table.wc-block-cart-items tbody tr.wc-block-cart-items__row td.wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-cart-item__quantity {
  display: flex;
  flex-direction: row;
  row-gap: 10px;
  align-items: center;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main table.wc-block-cart-items tbody tr.wc-block-cart-items__row td.wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-cart-item__quantity .wc-block-components-quantity-selector {
  margin-bottom: 0px;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main table.wc-block-cart-items tbody tr.wc-block-cart-items__row td.wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-cart-item__quantity .wc-block-cart-item__remove-link {
  color: #00ace6;
  margin-left: 16px;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main table.wc-block-cart-items tbody tr.wc-block-cart-items__row td.wc-block-cart-item__total {
  padding-top: 10px;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main table.wc-block-cart-items tbody tr.wc-block-cart-items__row td.wc-block-cart-item__total .wc-block-cart-item__total-price-and-sale-badge-wrapper .wc-block-components-product-price {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0px;
  color: #2551a3;
  margin: 0px;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main table.wc-block-cart-items tbody tr.wc-block-cart-items__row td.wc-block-cart-item__total .wc-block-cart-item__total-price-and-sale-badge-wrapper .wc-block-components-sale-badge {
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  border: 0px solid;
  border-radius: 4px;
  display: inline-block;
  padding: 4px 6px;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: #00ace6;
  color: #ffffff;
  margin-bottom: 12px;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-sidebar {
  grid-column: span 4;
  width: 100%;
}
@media (max-width: 1220px) {
  .cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-sidebar {
    grid-column: span 4;
  }
}
@media (max-width: 1024px) {
  .cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-sidebar {
    grid-column: span 12;
  }
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-block {
  border-radius: 16px;
  border: 1px solid #F5F5F5;
  padding: 0px;
  background-color: #ffffff;
  box-shadow: rgba(17, 17, 26, 0.05) 0 4px 16px, rgba(17, 17, 26, 0.05) 0 8px 32px;
}
@media (max-width: 1024px) {
  .cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-block {
    padding: 16px;
  }
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-block .wc-block-cart__totals-title {
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0px;
  color: #00ace6;
  padding: 16px;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-sidebar .wc-block-components-totals-wrapper {
  padding: 16px;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-sidebar .wc-block-components-totals-wrapper .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0px;
  color: #2551a3;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-sidebar .wc-block-components-totals-wrapper .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0px;
  color: #2551a3;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-sidebar .wp-block-woocommerce-proceed-to-checkout-block .wc-block-cart__submit-container .wc-block-cart__submit-button {
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0px;
  position: relative;
  padding: 16px 24px;
  border-radius: 4px;
  background-color: #00ace6;
  color: #ffffff;
  border: 2px solid #00ace6 !important;
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  z-index: 1;
  box-shadow: none;
  outline: none;
  width: auto;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-sidebar .wp-block-woocommerce-proceed-to-checkout-block .wc-block-cart__submit-container .wc-block-cart__submit-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -1;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-sidebar .wp-block-woocommerce-proceed-to-checkout-block .wc-block-cart__submit-container .wc-block-cart__submit-button:hover {
  cursor: pointer;
  color: #00ace6;
  box-shadow: 0 8px 24px rgba(166, 168, 171, 0.35);
  border-color: #00ace6 !important;
}
.cart-checkout .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-sidebar .wp-block-woocommerce-proceed-to-checkout-block .wc-block-cart__submit-container .wc-block-cart__submit-button:hover::before {
  transform: translateY(0);
}

.cart-checkout {
  padding: 64px 0px;
}
.cart-checkout .wp-block-woocommerce-cart .wp-block-woocommerce-empty-cart-block {
  display: grid;
  margin-inline: auto;
  max-width: 1440px;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-inline: auto;
  width: 100%;
  padding-inline: 40px;
}
@media (max-width: 1024px) {
  .cart-checkout .wp-block-woocommerce-cart .wp-block-woocommerce-empty-cart-block {
    padding-inline: 24px;
  }
}
.cart-checkout .wp-block-woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-separator {
  grid-column: span 12;
}
.cart-checkout .wp-block-woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-heading {
  grid-column: span 12;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  color: #2551a3;
}
.cart-checkout .wp-block-woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-heading:first-child {
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  color: #00ace6;
}
.cart-checkout .wp-block-woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-heading:first-child:before {
  display: none;
}
.cart-checkout .wp-block-woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-new {
  grid-column: span 12;
}
.cart-checkout .wp-block-woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-new .wc-block-grid__products {
  grid-column: span 12;
  margin: 0px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  width: 100%;
}
.cart-checkout .wp-block-woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-new .wc-block-grid__products .wc-block-grid__product {
  grid-column: span 3;
  max-width: 100%;
  border-bottom: 0px solid transparent;
  border-left: 0px solid transparent;
  border-right: 0px solid transparent;
}
@media (max-width: 1024px) {
  .cart-checkout .wp-block-woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-new .wc-block-grid__products .wc-block-grid__product {
    grid-column: span 6;
  }
}
@media (max-width: 768px) {
  .cart-checkout .wp-block-woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-new .wc-block-grid__products .wc-block-grid__product {
    grid-column: span 12;
  }
}
@media (max-width: 480px) {
  .cart-checkout .wp-block-woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-new .wc-block-grid__products .wc-block-grid__product {
    grid-column: span 12;
  }
}
.cart-checkout .wp-block-woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-new .wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-link:hover {
  transform: none;
  box-shadow: none;
}

.wc-block-components-notice-banner {
  align-content: flex-start;
  align-items: stretch;
  background-color: salmon;
  border: 1px solid #2b2d2f;
  border-radius: 4px;
  box-sizing: border-box;
  color: #2f2f2f;
  display: flex;
  font-size: 0.875em;
  font-weight: 400;
  gap: 12px;
  line-height: 1.5;
  margin: 16px 0;
  padding: 16px !important;
}
.wc-block-components-notice-banner.is-error {
  background-color: #fff0f0;
  border-color: #e63600;
}
.wc-block-components-notice-banner.is-error > svg {
  background-color: #e63600 !important;
}
.cart-checkout {
  padding: 64px 0px;
}
.cart-checkout .wp-block-woocommerce-checkout .with-scroll-to-top__scroll-point {
  display: none;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-notices {
  grid-column: span 12;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout {
  display: grid;
  margin-inline: auto;
  max-width: 1440px;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-inline: auto;
  width: 100%;
  padding-inline: 40px;
}
@media (max-width: 1024px) {
  .cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout {
    padding-inline: 24px;
  }
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main {
  grid-column: 2/span 6;
  padding: 0px;
  width: 100%;
  padding-right: 24px;
}
@media (max-width: 1220px) {
  .cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main {
    grid-column: 1/span 8;
  }
}
@media (max-width: 1024px) {
  .cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main {
    grid-column: span 12;
    padding: 16px;
  }
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wc-block-components-checkout-step__heading .wc-block-components-title {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0px;
  color: #00ace6;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-shipping-method-block {
  background-color: sandybrown;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-pickup-options-block {
  background-color: bisque;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-billing-address-block .wc-block-components-checkout-step__container .wc-block-components-checkout-step__content {
  background-color: #f2f2f2;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-billing-address-block .wc-block-components-checkout-step__container .wc-block-components-checkout-step__content .wc-block-components-address-address-wrapper .wc-block-components-address-card-wrapper .wc-block-components-address-card address .wc-block-components-address-card__address-section {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-billing-address-block .wc-block-components-checkout-step__container .wc-block-components-checkout-step__content .wc-block-components-address-address-wrapper .wc-block-components-address-card-wrapper .wc-block-components-address-card address .wc-block-components-address-card__address-section:first-child {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  color: #2551a3;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-billing-address-block .wc-block-components-checkout-step__container .wc-block-components-checkout-step__content .wc-block-components-address-address-wrapper .wc-block-components-address-card-wrapper .wc-block-components-address-card .wc-block-components-address-card__edit {
  color: #2551a3;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-shipping-methods-block .wc-block-components-checkout-step__container .wc-block-components-checkout-step__content .wc-block-components-shipping-rates-control .wc-block-components-shipping-rates-control__package .wc-block-components-radio-control {
  background-color: #f2f2f2;
  border: 1px solid #A6A8AB;
  border-radius: 4px;
  box-shadow: none;
  margin-bottom: 16px;
  padding: 16px;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-shipping-methods-block .wc-block-components-checkout-step__container .wc-block-components-checkout-step__content .wc-block-components-shipping-rates-control .wc-block-components-shipping-rates-control__package .wc-block-components-radio-control .wc-block-components-radio-control__option-checked {
  cursor: pointer;
  color: #1b1b1b;
  left: auto;
  margin: 0;
  overflow: visible;
  position: relative;
  text-decoration: inherit;
  text-overflow: ellipsis;
  text-transform: inherit;
  top: auto;
  transform: none;
  transition: all 0.2s ease;
  padding: 0px 0px 0px 36px;
  box-shadow: none;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-shipping-methods-block .wc-block-components-checkout-step__container .wc-block-components-checkout-step__content .wc-block-components-shipping-rates-control .wc-block-components-shipping-rates-control__package .wc-block-components-radio-control .wc-block-components-radio-control__option-checked:hover {
  color: #2551a3;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-shipping-methods-block .wc-block-components-checkout-step__container .wc-block-components-checkout-step__content .wc-block-components-shipping-rates-control .wc-block-components-shipping-rates-control__package .wc-block-components-radio-control .wc-block-components-radio-control__option-checked.wc-block-components-radio-control__option-checked {
  color: #2551a3;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-shipping-methods-block .wc-block-components-checkout-step__container .wc-block-components-checkout-step__content .wc-block-components-shipping-rates-control .wc-block-components-shipping-rates-control__package .wc-block-components-radio-control .wc-block-components-radio-control__option-checked .wc-block-components-radio-control__input {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 50%;
  display: inline-block;
  background: #ffffff;
  border: 2px solid #2551a3;
  top: 50%;
  left: 6px;
  margin: inherit;
  position: absolute;
  width: 20px;
  height: 20px;
  min-height: 20px;
  min-width: 20px;
  transform: translateY(-50%);
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-shipping-methods-block .wc-block-components-checkout-step__container .wc-block-components-checkout-step__content .wc-block-components-shipping-rates-control .wc-block-components-shipping-rates-control__package .wc-block-components-radio-control .wc-block-components-radio-control__option-checked .wc-block-components-radio-control__input:checked:before {
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  margin: 0;
  border-radius: 50%;
  position: absolute;
  width: 10px;
  height: 10px;
  min-height: 10px;
  min-width: 10px;
  background: #2551a3;
  transform: translate(-50%, -50%);
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-shipping-methods-block .wc-block-components-checkout-step__container .wc-block-components-checkout-step__content .wc-block-components-shipping-rates-control .wc-block-components-shipping-rates-control__package .wc-block-components-radio-control .wc-block-components-radio-control__option-checked .wc-block-components-radio-control__option-layout .wc-block-components-radio-control__label-group .wc-block-components-radio-control__secondary-label {
  font-weight: 700;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-payment-block .wc-block-components-checkout-step__container .wc-block-components-checkout-step__content .wc-block-components-radio-control--highlight-checked:after {
  display: none;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-payment-block .wc-block-components-checkout-step__container .wc-block-components-checkout-step__content .wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option {
  background-color: #f2f2f2;
  border: 1px solid #A6A8AB;
  border-radius: 4px;
  box-shadow: none;
  margin-bottom: 16px;
  padding: 16px;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-payment-block .wc-block-components-checkout-step__container .wc-block-components-checkout-step__content .wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted {
  background-color: #ffffff;
  border-color: #00ace6;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-payment-block .wc-block-components-checkout-step__container .wc-block-components-checkout-step__content .wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted:after {
  display: none !important;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-payment-block .wc-block-components-checkout-step__container .wc-block-components-checkout-step__content .wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__option {
  cursor: pointer;
  color: #1b1b1b;
  left: auto;
  margin: 0;
  overflow: visible;
  position: relative;
  text-decoration: inherit;
  text-overflow: ellipsis;
  text-transform: inherit;
  top: auto;
  transform: none;
  transition: all 0.2s ease;
  padding: 0px 0px 0px 36px;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-payment-block .wc-block-components-checkout-step__container .wc-block-components-checkout-step__content .wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__option:hover {
  color: #2551a3;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-payment-block .wc-block-components-checkout-step__container .wc-block-components-checkout-step__content .wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__option.wc-block-components-radio-control__option-checked {
  color: #2551a3;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-payment-block .wc-block-components-checkout-step__container .wc-block-components-checkout-step__content .wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__option .wc-block-components-radio-control__input {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 50%;
  display: inline-block;
  background: #ffffff;
  border: 2px solid #2551a3;
  top: 50%;
  left: 6px;
  margin: inherit;
  position: absolute;
  width: 20px;
  height: 20px;
  min-height: 20px;
  min-width: 20px;
  transform: translateY(-50%);
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-payment-block .wc-block-components-checkout-step__container .wc-block-components-checkout-step__content .wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__option .wc-block-components-radio-control__input:checked:before {
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  margin: 0;
  border-radius: 50%;
  position: absolute;
  width: 10px;
  height: 10px;
  min-height: 10px;
  min-width: 10px;
  background: #2551a3;
  transform: translate(-50%, -50%);
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-payment-block .wc-block-components-checkout-step__container .wc-block-components-checkout-step__content .wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__option .wc-block-components-radio-control__option-layout .wc-block-components-radio-control__label-group .wc-block-components-radio-control__label .wc-block-components-payment-method-label {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  color: inherit;
}
.wc-block-components-radio-control__option-checked .cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-payment-block .wc-block-components-checkout-step__container .wc-block-components-checkout-step__content .wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__option .wc-block-components-radio-control__option-layout .wc-block-components-radio-control__label-group .wc-block-components-radio-control__label .wc-block-components-payment-method-label {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0px;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-payment-block .wc-block-components-checkout-step__container .wc-block-components-checkout-step__content .wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__option.wc-block-components-radio-control__option-checked .wc-block-components-radio-control__option-layout .wc-block-components-radio-control__label-group .wc-block-components-radio-control__label .wc-block-components-payment-method-label {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0px;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-payment-block .wc-block-components-checkout-step__container .wc-block-components-checkout-step__content .wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control-accordion-content {
  padding: 0px;
  margin-top: 16px;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-payment-block .wc-block-components-checkout-step__container .wc-block-components-checkout-step__content .wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control-accordion-content div {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0px;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-order-note-block .wc-block-components-checkout-step__container .wc-block-components-checkout-step__content .wc-block-checkout__add-note .wc-block-components-checkbox {
  line-height: 1;
  margin-bottom: -3px;
  margin-top: 0;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-order-note-block .wc-block-components-checkout-step__container .wc-block-components-checkout-step__content .wc-block-checkout__add-note .wc-block-components-checkbox label {
  align-items: flex-start;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.875em;
  margin-bottom: 0 !important;
  position: relative;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-order-note-block .wc-block-components-checkout-step__container .wc-block-components-checkout-step__content .wc-block-checkout__add-note .wc-block-components-checkbox label .wc-block-components-checkbox__mark {
  fill: #2551a3;
  height: 1.125em;
  margin-left: 0.1875em;
  margin-top: 0.0625em;
  pointer-events: none;
  position: absolute;
  width: 1.125em;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wc-block-checkout__terms--with-separator .wc-block-components-checkbox__label {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0px;
  color: #505050;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-actions-block {
  padding: 0px;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-return-to-cart-button {
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0px;
  position: relative;
  padding: 16px 24px;
  border-radius: 4px;
  background-color: #ffffff;
  color: #00ace6;
  border: 2px solid #00ace6 !important;
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  z-index: 1;
  box-shadow: none;
  outline: none;
  padding: 16px 24px 16px 48px;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-return-to-cart-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2551a3;
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -1;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-return-to-cart-button:hover {
  cursor: pointer;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(166, 168, 171, 0.35);
  border-color: #2551a3 !important;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-return-to-cart-button:hover::before {
  transform: translateY(0);
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-return-to-cart-button svg {
  fill: currentColor;
  left: 16px;
  position: absolute;
  top: 11px;
  transform: translateY(0%);
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0px;
  position: relative;
  padding: 16px 24px;
  border-radius: 4px;
  background-color: #00ace6;
  color: #ffffff;
  border: 2px solid #00ace6 !important;
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  z-index: 1;
  box-shadow: none;
  outline: none;
  width: auto;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -1;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button:hover {
  cursor: pointer;
  color: #00ace6;
  box-shadow: 0 8px 24px rgba(166, 168, 171, 0.35);
  border-color: #00ace6 !important;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-form .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button:hover::before {
  transform: translateY(0);
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar {
  grid-column: span 4;
  width: 100%;
}
@media (max-width: 1220px) {
  .cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar {
    grid-column: span 4;
  }
}
@media (max-width: 1024px) {
  .cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar {
    grid-column: span 12;
  }
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar.is-sticky {
  top: 100px;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wp-block-woocommerce-checkout-order-summary-block {
  border-radius: 16px;
  border: 1px solid #F5F5F5;
  padding: 0px;
  background-color: #ffffff;
  box-shadow: rgba(17, 17, 26, 0.05) 0 4px 16px, rgba(17, 17, 26, 0.05) 0 8px 32px;
}
@media (max-width: 1024px) {
  .cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wp-block-woocommerce-checkout-order-summary-block {
    padding: 16px;
  }
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title .wc-block-components-checkout-order-summary__title-text {
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0px;
  color: #00ace6;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__content {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__content .wp-block-woocommerce-checkout-order-summary-cart-items-block .wc-block-components-order-summary .wc-block-components-order-summary__content .wc-block-components-order-summary-item {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0px;
  display: flex;
  padding-bottom: 1px;
  padding-top: 16px;
  width: 100%;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__content .wp-block-woocommerce-checkout-order-summary-cart-items-block .wc-block-components-order-summary .wc-block-components-order-summary__content .wc-block-components-order-summary-item:first-child {
  padding-top: 0px;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__content .wp-block-woocommerce-checkout-order-summary-cart-items-block .wc-block-components-order-summary .wc-block-components-order-summary__content .wc-block-components-order-summary-item__image {
  margin-top: 10px;
  padding-bottom: 16px;
  position: relative;
  width: 64px;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__content .wp-block-woocommerce-checkout-order-summary-cart-items-block .wc-block-components-order-summary .wc-block-components-order-summary__content .wc-block-components-order-summary-item__image img {
  display: block;
  width: 64px;
  max-width: 64px;
  height: auto;
  border-radius: 4px;
  border: 2px solid #00ace6;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__content .wp-block-woocommerce-checkout-order-summary-cart-items-block .wc-block-components-order-summary .wc-block-components-order-summary__content .wc-block-components-order-summary-item__image .wc-block-components-order-summary-item__quantity {
  align-items: center;
  border: 2px solid #00ace6;
  border-radius: 1em;
  box-shadow: none;
  color: #000;
  display: flex;
  justify-content: center;
  line-height: 1;
  height: 24px;
  width: 24px;
  padding: 0px;
  position: absolute;
  background: #ffffff;
  right: 50%;
  top: 0;
  transform: translate(50%, -50%);
  white-space: nowrap;
  z-index: 1;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__content .wp-block-woocommerce-checkout-order-summary-cart-items-block .wc-block-components-order-summary .wc-block-components-order-summary__content .wc-block-components-order-summary-item__image .wc-block-components-order-summary-item__quantity span {
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0px;
  font-size: 10px;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__content .wp-block-woocommerce-checkout-order-summary-cart-items-block .wc-block-components-order-summary .wc-block-components-order-summary__content .wc-block-components-order-summary-item__description {
  flex-grow: 4;
  padding: 10px 16px 16px 16px;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__content .wp-block-woocommerce-checkout-order-summary-cart-items-block .wc-block-components-order-summary .wc-block-components-order-summary__content .wc-block-components-order-summary-item__description .wc-block-components-product-name {
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__content .wp-block-woocommerce-checkout-order-summary-cart-items-block .wc-block-components-order-summary .wc-block-components-order-summary__content .wc-block-components-order-summary-item__description .wc-block-components-product-price {
  padding-top: 0px;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__content .wp-block-woocommerce-checkout-order-summary-cart-items-block .wc-block-components-order-summary .wc-block-components-order-summary__content .wc-block-components-order-summary-item__description .wc-block-components-product-price .wc-block-components-order-summary-item__individual-price {
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0px;
  padding-top: 4px;
  color: #2551a3;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__content .wp-block-woocommerce-checkout-order-summary-cart-items-block .wc-block-components-order-summary .wc-block-components-order-summary__content .wc-block-components-order-summary-item__description .wc-block-components-product-price .wc-block-components-order-summary-item__regular-individual-price {
  color: #A6A8AB;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__content .wp-block-woocommerce-checkout-order-summary-cart-items-block .wc-block-components-order-summary .wc-block-components-order-summary__content .wc-block-components-order-summary-item__description .wc-block-components-product-metadata {
  margin-top: 0px;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__content .wp-block-woocommerce-checkout-order-summary-cart-items-block .wc-block-components-order-summary .wc-block-components-order-summary__content .wc-block-components-order-summary-item__description .wc-block-components-product-metadata .wc-block-components-product-metadata__description {
  display: none;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__content .wp-block-woocommerce-checkout-order-summary-cart-items-block .wc-block-components-order-summary .wc-block-components-order-summary__content .wc-block-components-order-summary-item__description .wc-block-components-product-metadata .wc-block-components-product-details {
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0px;
  color: #808384;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__content .wp-block-woocommerce-checkout-order-summary-cart-items-block .wc-block-components-order-summary .wc-block-components-order-summary__content .wc-block-components-order-summary-item__total-price {
  padding: 16px 0px;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__content .wp-block-woocommerce-checkout-order-summary-totals-block {
  padding: 0px;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__content .wp-block-woocommerce-checkout-order-summary-totals-block .wc-block-components-totals-item {
  padding: 16px 16px;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__content .wp-block-woocommerce-checkout-order-summary-totals-block .wc-block-components-totals-item .wc-block-components-totals-item__label {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  color: #1b1b1b;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__content .wc-block-components-totals-wrapper {
  padding: 0px 0px;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__content .wc-block-components-totals-wrapper .wc-block-components-totals-footer-item {
  padding: 16px 16px;
  border-top: 1px solid hsla(0, 0%, 7%, 0.11);
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__content .wc-block-components-totals-wrapper .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0px;
  color: #2551a3;
}
.cart-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__content .wc-block-components-totals-wrapper .wc-block-components-totals-footer-item .wc-block-components-totals-item__value .wc-block-formatted-money-amount {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0px;
  color: #2551a3;
}
.cart-checkout .woocommerce .woocommerce-order {
  display: grid;
  margin-inline: auto;
  max-width: 1440px;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-inline: auto;
  width: 100%;
  padding-inline: 40px;
}
@media (max-width: 1024px) {
  .cart-checkout .woocommerce .woocommerce-order {
    padding-inline: 24px;
  }
}
.cart-checkout .woocommerce .woocommerce-order .woocommerce-thankyou-order-received {
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  color: #00ace6;
  grid-column: 2/span 10;
  padding-bottom: 32px;
}
@media (max-width: 1220px) {
  .cart-checkout .woocommerce .woocommerce-order .woocommerce-thankyou-order-received {
    grid-column: span 12;
  }
}
.cart-checkout .woocommerce .woocommerce-order .woocommerce-thankyou-order-details {
  grid-column: 2/span 10;
  display: flex;
  flex-direction: row;
  row-gap: 10px;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 1220px) {
  .cart-checkout .woocommerce .woocommerce-order .woocommerce-thankyou-order-details {
    grid-column: span 12;
    flex-direction: column;
    -moz-column-gap: 20px;
         column-gap: 20px;
    align-items: stretch;
  }
}
.cart-checkout .woocommerce .woocommerce-order .woocommerce-thankyou-order-details li {
  flex-grow: 1;
}
.cart-checkout .woocommerce .woocommerce-order .woocommerce-thankyou-order-details li.order, .cart-checkout .woocommerce .woocommerce-order .woocommerce-thankyou-order-details li.date, .cart-checkout .woocommerce .woocommerce-order .woocommerce-thankyou-order-details li.email, .cart-checkout .woocommerce .woocommerce-order .woocommerce-thankyou-order-details li.total, .cart-checkout .woocommerce .woocommerce-order .woocommerce-thankyou-order-details li.method {
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  color: #1b1b1b;
}
.cart-checkout .woocommerce .woocommerce-order .woocommerce-thankyou-order-details li.order strong, .cart-checkout .woocommerce .woocommerce-order .woocommerce-thankyou-order-details li.date strong, .cart-checkout .woocommerce .woocommerce-order .woocommerce-thankyou-order-details li.email strong, .cart-checkout .woocommerce .woocommerce-order .woocommerce-thankyou-order-details li.total strong, .cart-checkout .woocommerce .woocommerce-order .woocommerce-thankyou-order-details li.method strong {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0px;
  color: #2551a3;
}
.cart-checkout .woocommerce .woocommerce-order .woocommerce-bacs-bank-details {
  grid-column: 2/span 10;
}
@media (max-width: 1220px) {
  .cart-checkout .woocommerce .woocommerce-order .woocommerce-bacs-bank-details {
    grid-column: span 12;
    flex-direction: column;
    -moz-column-gap: 20px;
         column-gap: 20px;
    align-items: stretch;
  }
}
.cart-checkout .woocommerce .woocommerce-order .woocommerce-bacs-bank-details .wc-bacs-bank-details-heading {
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0px;
  color: #00ace6;
  margin-bottom: 16px;
}
.cart-checkout .woocommerce .woocommerce-order .woocommerce-bacs-bank-details .wc-bacs-bank-details-account-name {
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0px;
  color: #2551a3;
  margin-bottom: 16px;
}
.cart-checkout .woocommerce .woocommerce-order .woocommerce-bacs-bank-details .wc-bacs-bank-details li {
  flex-grow: 1;
}
.cart-checkout .woocommerce .woocommerce-order .woocommerce-bacs-bank-details .wc-bacs-bank-details li.bank_name, .cart-checkout .woocommerce .woocommerce-order .woocommerce-bacs-bank-details .wc-bacs-bank-details li.iban, .cart-checkout .woocommerce .woocommerce-order .woocommerce-bacs-bank-details .wc-bacs-bank-details li.bic {
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0px;
  color: #1b1b1b;
}
.cart-checkout .woocommerce .woocommerce-order .woocommerce-bacs-bank-details .wc-bacs-bank-details li.bank_name strong, .cart-checkout .woocommerce .woocommerce-order .woocommerce-bacs-bank-details .wc-bacs-bank-details li.iban strong, .cart-checkout .woocommerce .woocommerce-order .woocommerce-bacs-bank-details .wc-bacs-bank-details li.bic strong {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0px;
  color: #2551a3;
}
.cart-checkout .woocommerce .woocommerce-order .woocommerce-order-details {
  grid-column: 2/span 10;
}
@media (max-width: 1220px) {
  .cart-checkout .woocommerce .woocommerce-order .woocommerce-order-details {
    grid-column: span 12;
  }
}
.cart-checkout .woocommerce .woocommerce-order .woocommerce-order-details .woocommerce-order-details__title {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0px;
  color: #00ace6;
  margin-bottom: 16px;
}
.cart-checkout .woocommerce .woocommerce-order .woocommerce-order-details .woocommerce-table--order-details thead tr th {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0px;
  color: #2551a3;
}
.cart-checkout .woocommerce .woocommerce-order .woocommerce-order-details .woocommerce-table--order-details thead tr th.product-total {
  text-align: right;
}
.cart-checkout .woocommerce .woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tbody tr td {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0px;
}
.cart-checkout .woocommerce .woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tbody tr td.product-total {
  text-align: right;
  color: #2551a3;
}
.cart-checkout .woocommerce .woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tfoot tr th {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0px;
  color: #2551a3;
}
.cart-checkout .woocommerce .woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tfoot tr td {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0px;
  text-align: right;
  color: #2551a3;
}
.cart-checkout .woocommerce .woocommerce-order .woocommerce-customer-details {
  grid-column: 2/span 10;
}
@media (max-width: 1220px) {
  .cart-checkout .woocommerce .woocommerce-order .woocommerce-customer-details {
    grid-column: span 12;
  }
}
.cart-checkout .woocommerce .woocommerce-order .woocommerce-customer-details .woocommerce-column__title {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0px;
  color: #00ace6;
  margin-bottom: 16px;
}
.cart-checkout .woocommerce .woocommerce-order .woocommerce-customer-details address {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0px;
  border-color: #a2a1a1;
  border-bottom-width: 1px;
  border-right-width: 1px;
  padding: 16px;
}
.cart-checkout .woocommerce .woocommerce-order .woocommerce-customer-details address p.woocommerce-customer-details--phone {
  padding-left: 0px;
}
.cart-checkout .woocommerce .woocommerce-order .woocommerce-customer-details address p.woocommerce-customer-details--phone:before {
  display: none;
}
.cart-checkout .woocommerce .woocommerce-order .woocommerce-customer-details address p.woocommerce-customer-details--email {
  padding-left: 0px;
}
.cart-checkout .woocommerce .woocommerce-order .woocommerce-customer-details address p.woocommerce-customer-details--email:before {
  display: none;
}
/*# sourceMappingURL=style.css.map */
