@charset "UTF-8";
/* Mediaquery example --------------------

@media only screen and (max-width: $container-size-m) {

}

*/
/* IE 11 only example ---------------------

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	justify-content: space-around; // IE11 fix

}

*/
/* Safari only

_::-webkit-full-page-media, _:future, :root {
	//  Define here the CSS styles applied only to Safari browsers
}

*/
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
*/
/* Mediaquery example --------------------

@media only screen and (max-width: $container-size-m) {

}

*/
/* IE 11 only example ---------------------

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	justify-content: space-around; // IE11 fix

}

*/
/* Safari only

_::-webkit-full-page-media, _:future, :root {
	//  Define here the CSS styles applied only to Safari browsers
}

*/
body, html {
  font-family: "Work Sans", sans-serif;
  height: auto;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.8rem;
  color: black;
}

html {
  box-sizing: border-box;
}

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

* {
  background-repeat: no-repeat;
}

.overflow-hidden {
  overflow: hidden;
  position: fixed;
}

body.u-overflow-hidden,
html.u-overflow-hidden {
  overflow: hidden;
  position: fixed;
}

h1, h2, h3, h4, h5 {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

h2 {
  letter-spacing: 0.2rem;
}

hr {
  border: none;
  border-top: solid 1px #cccccc;
  width: 100%;
}

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

textarea {
  font-family: "Work Sans", sans-serif;
}

textarea:focus,
input:focus {
  outline: none;
}

input {
  font-family: "Work Sans", sans-serif;
}

input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #ffe9b4 inset !important;
  -webkit-box-shadow: 0 0 0 1000px #ffe9b4 inset !important;
}

::-moz-selection {
  background: rgb(180, 126, 0);
  color: white;
}

::selection {
  background: rgb(180, 126, 0);
  color: white;
}

select {
  outline: none;
  cursor: pointer;
  font-family: "Work Sans", sans-serif;
}

strong {
  font-weight: 500;
}

a {
  text-decoration: underline;
  font-size: inherit;
  text-decoration: none;
  color: rgb(0, 0, 0);
}
a:hover {
  text-decoration: underline;
  color: gray;
}

p {
  font-weight: 300;
  line-height: 1.8rem;
}

.flex {
  display: flex;
}
.flex.one {
  flex: 1;
}
.flex.two {
  flex: 2;
}
.flex.three {
  flex: 3;
}
.flex.four {
  flex: 4;
}
.flex.five {
  flex: 5;
}
.flex.six {
  flex: 6;
}
.flex.seven {
  flex: 7;
}
.flex.row {
  flex-direction: row;
  align-items: center;
}
.flex.row _::-webkit-full-page-media, .flex.row _:future, .flex.row :root {
  align-items: flex-start;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .flex.row {
    flex-basis: auto;
  }
}
@media only screen and (max-width: 768px) {
  .flex.row {
    flex-direction: column;
    align-items: flex-start;
    align-items: initial;
  }
}
.flex.column {
  flex-direction: column;
}
.flex.no-grow {
  flex-grow: 0;
}
.flex.no-shrink {
  flex-shrink: 0;
}
.flex.align-center {
  align-items: center;
}
.flex.align-start {
  align-self: flex-start;
}
.flex.align-items-start {
  align-items: flex-start;
}
.flex.align-end {
  justify-content: flex-end;
}
.flex.basis-auto {
  flex-basis: auto;
}
.flex.align-center-vert {
  align-self: center;
}
.flex.stretch {
  align-self: stretch;
}
@media only screen and (max-width: 1000px) {
  .flex.mobile-row {
    flex-direction: row;
  }
}
@media only screen and (max-width: 1000px) {
  .flex.mobile-column {
    flex-direction: column;
  }
}

.margin-right-s {
  margin-right: 1rem;
}

.margin-right-m {
  margin-right: 2rem;
}

.margin-right-ml {
  margin-right: 3rem;
}

.margin-right-l {
  margin-right: 4rem;
}

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

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

.margin-bottom-0 {
  margin-bottom: 0rem;
}

.margin-bottom-m {
  margin-bottom: 2rem;
}

.margin-bottom-l {
  margin-bottom: 4rem;
}

.padding-left-s {
  padding-left: 1rem;
}

.padding-left-m {
  padding-left: 2rem;
}

.padding-left-ml {
  padding-left: 3rem;
}

.padding-left-l {
  padding-left: 4rem;
}

.padding-right-s {
  padding-right: 1rem;
}

.padding-right-m {
  padding-right: 2rem;
}

.padding-right-ml {
  padding-right: 3rem;
}

.padding-right-l {
  margin-right: 4rem;
}

.dim {
  width: 100%;
  min-height: 100%;
  height: 100%;
  z-index: 100;
  display: none;
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.dim.open {
  opacity: 1;
  display: block;
  pointer-events: all;
}
.attention {
  color: rgb(180, 126, 0);
  text-decoration: none;
  font-weight: 500;
}

.available {
  color: #6da583;
}

.unavailable {
  color: #FF6969;
}

.anchor {
  display: block;
  position: relative;
  top: -45px;
  visibility: hidden;
}
.anchor#form {
  top: -100px;
}
@media only screen and (max-width: 768px) {
  .anchor#form {
    top: -80px;
  }
}
.anchor#form-thanks {
  top: -100px;
}
@media only screen and (max-width: 768px) {
  .anchor#form-thanks {
    top: -80px;
  }
}

.autocomplete-suggestions {
  background: white;
  margin-top: 0.1rem;
}
.autocomplete-suggestions .autocomplete-suggestion {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}
.autocomplete-suggestions .autocomplete-suggestion.autocomplete-selected {
  background: rgb(180, 126, 0);
  color: white;
  cursor: pointer;
}

form h2 {
  margin-top: 0;
  letter-spacing: normal;
}
@media only screen and (max-width: 768px) {
  form h2 {
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  form .margin-right-m {
    margin-right: 0;
  }
}
form .input-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  line-height: 1.4rem;
  align-items: initial;
}
@media only screen and (max-width: 768px) {
  form .input-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
form .input-wrapper.bg-white select,
form .input-wrapper.bg-white input,
form .input-wrapper.bg-white textarea {
  background-color: white !important;
}
form .input-wrapper.align-top {
  align-items: flex-start;
}
form .input-wrapper.multiple-inputs .multiple-input-wrapper {
  display: flex;
  margin-right: 0.5rem;
}
form .input-wrapper.multiple-inputs .multiple-input-wrapper:last-of-type {
  margin-right: 0;
}
form .input-wrapper.multiple-inputs .multiple-input-wrapper.ten {
  flex-basis: calc(10% - 0.5rem);
  width: calc(10% - 0.5rem);
}
form .input-wrapper.multiple-inputs .multiple-input-wrapper.twenty {
  flex-basis: calc(20% - 0.5rem);
  width: calc(20% - 0.5rem);
}
form .input-wrapper.multiple-inputs .multiple-input-wrapper.twentyfive {
  flex-basis: calc(25% - 0.5rem);
  width: calc(25% - 0.5rem);
}
form .input-wrapper.multiple-inputs .multiple-input-wrapper.thirty {
  flex-basis: calc(30% - 0.5rem);
  width: calc(30% - 0.5rem);
}
form .input-wrapper.multiple-inputs .multiple-input-wrapper.thirtythree {
  flex-basis: calc(33.33% - 0.5rem);
  width: calc(33.33% - 0.5rem);
}
form .input-wrapper.multiple-inputs .multiple-input-wrapper.fourty {
  flex-basis: calc(40% - 0.5rem);
  width: calc(40% - 0.5rem);
}
form .input-wrapper.multiple-inputs .multiple-input-wrapper.fifty {
  flex-basis: calc(50% - 0.5rem);
  width: calc(50% - 0.5rem);
}
form .input-wrapper.multiple-inputs .multiple-input-wrapper.sixty {
  flex-basis: calc(60% - 0.5rem);
  width: calc(60% - 0.5rem);
}
form .input-wrapper.multiple-inputs .multiple-input-wrapper.sixtysix {
  flex-basis: calc(66.66% - 0.5rem);
  width: calc(66.66% - 0.5rem);
}
form .input-wrapper.multiple-inputs .multiple-input-wrapper.seventyfive {
  flex-basis: calc(75% - 0.5rem);
  width: calc(75% - 0.5rem);
}
form .input-wrapper.multiple-inputs .multiple-input-wrapper.eighty {
  flex-basis: calc(80% - 0.5rem);
  width: calc(80% - 0.5rem);
}
form .input-wrapper.multiple-inputs .multiple-input-wrapper.hundred {
  flex-basis: 100%;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  form .input-wrapper.multiple-inputs .multiple-input-wrapper {
    width: 100% !important;
    flex-basis: 100%;
    margin-bottom: 0.5rem;
  }
}
form .input-wrapper ::-moz-placeholder {
  font-style: italic;
  color: darkgray;
}
form .input-wrapper ::placeholder {
  font-style: italic;
  color: darkgray;
}
form .input-wrapper.error > label {
  color: #cc0000;
}
form .input-wrapper.error input {
  border: solid 1px #cc0000;
}
form .input-wrapper.error input::-moz-placeholder {
  color: #cc0000;
}
form .input-wrapper.error input::placeholder {
  color: #cc0000;
}
form .input-wrapper.error .checkbox-wrapper label {
  color: #cc0000;
}
form .input-wrapper.error .checkbox-wrapper label a {
  color: #cc0000;
}
form .input-wrapper.error-message p {
  font-weight: bold;
  font-style: italic;
  color: #cc0000;
}
form .input-wrapper.success-message p {
  font-weight: bold;
  font-style: italic;
  color: rgb(180, 126, 0);
}
form .input-wrapper .star-rating-wrapper svg {
  cursor: pointer;
}
form .input-wrapper.select {
  position: relative;
  width: 100%;
}
form .input-wrapper.select select {
  flex: 2;
  width: 100%;
  border: solid 1px lightgrey;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-appearance: none;
  border-radius: 0;
  background-color: inherit;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  form .input-wrapper.select select {
    width: 100%;
  }
}
form .input-wrapper.select select .select-wrapper {
  position: relative;
}
form .input-wrapper.select select option {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
form .input-wrapper.select:after {
  content: "▸";
  font-size: 1.3rem;
  transform: rotate(90deg);
  position: absolute;
  right: 0.5rem;
  color: inherit;
  z-index: 1;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  form .input-wrapper.select:after {
    bottom: 0.4rem;
  }
}
form .input-wrapper.checkbox .checkbox-wrapper {
  display: flex;
  align-items: center;
  flex: 2;
  width: 100%;
}
form .input-wrapper.checkbox .checkbox-wrapper input[type=checkbox] {
  border: solid 1px green !important;
  flex: 1;
  flex-grow: 0;
  flex-basis: 2rem;
  width: 2rem;
}
@media only screen and (max-width: 768px) {
  form .input-wrapper.checkbox .checkbox-wrapper input[type=checkbox] {
    flex-basis: auto;
    max-width: 1rem;
  }
}
form .input-wrapper.checkbox .checkbox-wrapper label {
  flex: 1;
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-weight: normal;
  width: 100%;
  max-width: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
form .input-wrapper.checkbox .checkbox-wrapper label a {
  text-decoration: underline;
}
form .input-wrapper.radio .radio-options-wrapper {
  display: flex;
  flex-direction: column;
  flex: 2;
  width: 100%;
}
form .input-wrapper.radio .radio-options-wrapper.vertical {
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 1200px) {
  form .input-wrapper.radio .radio-options-wrapper.vertical {
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  form .input-wrapper.radio .radio-options-wrapper.vertical label {
    margin-left: 0rem;
    padding-left: 0rem;
  }
}
form .input-wrapper.radio .radio-options-wrapper.vertical .radio-wrapper label {
  margin-left: 0;
  padding-right: 1.5rem;
  cursor: pointer;
}
@media only screen and (max-width: 1200px) {
  form .input-wrapper.radio .radio-options-wrapper.vertical .radio-wrapper label {
    white-space: pre-wrap;
    word-break: break-word;
  }
}
@media only screen and (max-width: 768px) {
  form .input-wrapper.radio .radio-options-wrapper.vertical .radio-wrapper label {
    padding-left: 0.5rem;
    margin-left: 0.5rem;
  }
}
form .input-wrapper.radio .radio-options-wrapper .radio-wrapper {
  display: flex;
  flex: 1;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  form .input-wrapper.radio .radio-options-wrapper .radio-wrapper {
    flex-basis: auto;
  }
}
form .input-wrapper.radio .radio-options-wrapper .radio-wrapper input[type=radio] {
  flex: 1;
  flex-grow: 0;
  flex-basis: 2rem;
  width: 2rem;
}
@media only screen and (max-width: 768px) {
  form .input-wrapper.radio .radio-options-wrapper .radio-wrapper input[type=radio] {
    max-width: 1rem;
  }
}
form .input-wrapper.radio .radio-options-wrapper .radio-wrapper label {
  flex: 1;
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-weight: normal;
  width: 100%;
  flex-basis: 100%;
  max-width: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  form .input-wrapper.radio .radio-options-wrapper .radio-wrapper label {
    flex-basis: auto;
  }
}
form .input-wrapper.radio .radio-options-wrapper .radio-wrapper label .label-image-wrapper {
  margin-left: auto;
  justify-content: flex-end;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  form .input-wrapper.radio .radio-options-wrapper .radio-wrapper label .label-image-wrapper {
    flex-direction: column;
  }
}
form .input-wrapper.radio .radio-options-wrapper .radio-wrapper label .label-image-wrapper img {
  margin-right: 1rem;
}
form .input-wrapper.radio .radio-options-wrapper .radio-wrapper label .label-image-wrapper img:first-of-type {
  margin-left: 1rem;
}
@media only screen and (max-width: 768px) {
  form .input-wrapper.radio .radio-options-wrapper .radio-wrapper label .label-image-wrapper img:first-of-type {
    margin-left: 0;
  }
}
form .input-wrapper.radio .radio-options-wrapper .radio-wrapper label .label-image-wrapper img:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 768px) {
  form .input-wrapper.radio .radio-options-wrapper .radio-wrapper label .label-image-wrapper img {
    margin-left: 0;
    margin-right: 0;
  }
}
form .input-wrapper.textarea textarea {
  border: solid 1px lightgray;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  flex: 2;
  height: auto;
  min-height: 7rem;
  line-height: 1.4rem;
  border-radius: 0;
}
@media only screen and (max-width: 768px) {
  form .input-wrapper.textarea textarea {
    width: 100%;
  }
}
form .input-wrapper > label {
  flex: 2;
  max-width: 13rem;
  font-size: 0.9rem;
  font-weight: bold;
  flex-basis: 13rem;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  form .input-wrapper > label {
    margin-bottom: 0.3rem;
    max-width: none;
    width: 100%;
    flex-basis: auto;
    font-size: 1rem;
  }
}
form .input-wrapper input {
  flex: 2;
  border: solid 1px lightgrey;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-radius: 0;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  form .input-wrapper input {
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
  }
}
form .input-wrapper input.no_validate {
  color: inherit !important;
  border: solid 1px lightgray !important;
}
form .input-wrapper input.no_validate::-moz-placeholder {
  color: darkgray !important;
}
form .input-wrapper input.no_validate::placeholder {
  color: darkgray !important;
}
form.alt .input-wrapper {
  flex-direction: column;
  align-items: flex-start;
}
form.alt .input-wrapper label {
  flex-basis: auto;
  margin-bottom: 0.3rem;
}
form.alt .input-wrapper.multiple-inputs {
  flex-direction: column;
}
form.alt .input-wrapper.multiple-inputs label {
  display: block;
}
form.alt .input-wrapper.multiple-inputs .multiple-input-wrapper {
  flex-basis: 100%;
  width: 100%;
}
form.alt .input-wrapper.multiple-inputs .multiple-input-wrapper input {
  flex-basis: 100%;
  width: 100%;
  margin-bottom: 0.5rem;
}
form.alt .input-wrapper textarea {
  width: 100%;
}
form.alt .input-wrapper.select:after {
  bottom: 0.3rem;
  z-index: 2;
}
form input[type=submit],
form button[type=submit] {
  margin-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  align-items: center;
  display: flex;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 0;
  color: white;
  background: red;
}
form input[type=submit] svg,
form button[type=submit] svg {
  stroke: white;
}
form input[type=submit].xs,
form button[type=submit].xs {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
form input[type=submit].med,
form button[type=submit].med {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
form input[type=submit].lrg,
form button[type=submit].lrg {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
form input[type=submit].wide-m,
form button[type=submit].wide-m {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
form input[type=submit].padding-left-s,
form button[type=submit].padding-left-s {
  padding-left: 1rem;
}
form input[type=submit].padding-left-m,
form button[type=submit].padding-left-m {
  padding-left: 2rem;
}
form input[type=submit].padding-left-ml,
form button[type=submit].padding-left-ml {
  padding-left: 3rem;
}
form input[type=submit].padding-left-l,
form button[type=submit].padding-left-l {
  padding-left: 4rem;
}
form input[type=submit].padding-right-s,
form button[type=submit].padding-right-s {
  padding-right: 1rem;
}
form input[type=submit].padding-right-m,
form button[type=submit].padding-right-m {
  padding-right: 2rem;
}
form input[type=submit].padding-right-ml,
form button[type=submit].padding-right-ml {
  padding-right: 3rem;
}
form input[type=submit].padding-right-l,
form button[type=submit].padding-right-l {
  padding-right: 4rem;
}
form input[type=submit].pri,
form button[type=submit].pri {
  background-color: rgb(180, 126, 0);
}
form input[type=submit].pri:hover,
form button[type=submit].pri:hover {
  background-color: #ce9000;
}
form input[type=submit].sec,
form button[type=submit].sec {
  background-color: rgb(0, 0, 0);
}
form input[type=submit].sec:hover,
form button[type=submit].sec:hover {
  background-color: #4d4d4d;
}
form input[type=submit].pos,
form button[type=submit].pos {
  background-color: #6da583;
}
form input[type=submit].pos:hover,
form button[type=submit].pos:hover {
  background-color: #558a6a;
}
form input[type=submit].ghost,
form button[type=submit].ghost {
  background: transparent;
  border: solid 1px #cccccc;
  color: black;
}
form input[type=submit].ghost:hover,
form button[type=submit].ghost:hover {
  border-color: rgb(180, 126, 0);
  color: rgb(180, 126, 0);
}
form input[type=submit].ghost.lit,
form button[type=submit].ghost.lit {
  border-color: white;
  color: white;
}
form input[type=submit].ghost.lit:hover,
form button[type=submit].ghost.lit:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
}
form input[type=submit].ghost.dar,
form button[type=submit].ghost.dar {
  border-color: black;
  color: black;
}
form input[type=submit].ghost.dar:hover,
form button[type=submit].ghost.dar:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
  color: white;
}
form input[type=submit].text-link,
form button[type=submit].text-link {
  background: none;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  color: black;
}
form input[type=submit].text-link:hover,
form button[type=submit].text-link:hover {
  color: rgb(180, 126, 0);
}
form input[type=submit].center,
form button[type=submit].center {
  text-align: center;
  justify-content: center;
}
form input[type=submit].full-width,
form button[type=submit].full-width {
  width: 100%;
}
form input[type=submit].inline,
form button[type=submit].inline {
  display: inline-block;
}
form input[type=submit].right,
form button[type=submit].right {
  justify-content: flex-end;
}
form input[type=submit].bold,
form button[type=submit].bold {
  font-weight: 500;
}
form input[type=submit] .icon-wrapper,
form button[type=submit] .icon-wrapper {
  display: inline-flex;
  margin-right: 0.5rem;
}
form input[type=submit].disabled,
form button[type=submit].disabled {
  background-color: #999999;
  color: #4d4d4d;
  font-style: italic;
  cursor: initial;
}
form input[type=submit].disabled:hover,
form button[type=submit].disabled:hover {
  background-color: #999999;
  color: #4d4d4d;
}
form input[type=submit]:last-of-type,
form button[type=submit]:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 1200px) {
  form input[type=submit],
  form button[type=submit] {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  form input[type=submit],
  form button[type=submit] {
    width: 100%;
    margin-bottom: 1rem;
    margin-right: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.2rem;
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
  form input[type=submit],
  form button[type=submit] {
    font-size: 1rem;
  }
}

.cookie-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 2rem;
  height: auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: rgb(180, 126, 0);
  color: white;
  z-index: 999;
}
@media only screen and (max-width: 768px) {
  .cookie-wrapper {
    padding-top: 1rem;
    padding-bottom: 1rem;
    flex-direction: column;
  }
}
.cookie-wrapper .cookie-limiter {
  display: flex;
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media only screen and (max-width: 768px) {
  .cookie-wrapper .cookie-limiter {
    flex-direction: column;
  }
}
@media only screen and (max-width: 480px) {
  .cookie-wrapper .cookie-limiter {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cookie-wrapper .cookie-limiter .cookie-text {
  margin-right: 3rem;
  line-height: 1.5rem;
  font-size: 0.9rem;
}
@media only screen and (max-width: 768px) {
  .cookie-wrapper .cookie-limiter .cookie-text {
    margin-right: 0;
  }
}
.cookie-wrapper .cookie-limiter .cookie-text a {
  color: inherit;
  text-decoration: underline;
}
.cookie-wrapper .cookie-limiter .close-cta {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-left: 2rem;
  cursor: pointer;
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: bold;
  background-color: white;
  color: rgb(0, 0, 0);
  border: solid 1px white;
  align-self: center;
}
@media only screen and (max-width: 768px) {
  .cookie-wrapper .cookie-limiter .close-cta {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }
}
.cookie-wrapper .cookie-limiter .close-cta:hover {
  background: transparent;
  color: inherit;
  border: solid 1px white;
}

.grecaptcha-badge {
  visibility: hidden !important;
}

.lefttop {
  background-position-x: 0%;
  background-position-y: 0%;
}

.leftcenter {
  background-position-x: 0%;
  background-position-y: 50%;
}

.leftbottom {
  background-position-x: 0%;
  background-position-y: 100%;
}

.centertop {
  background-position-x: 50%;
  background-position-y: 0%;
}

.centercenter {
  background-position-x: 50%;
  background-position-y: 50%;
}

.centerbottom {
  background-position-x: 50%;
  background-position-y: 100%;
}

.righttop {
  background-position-x: 100%;
  background-position-y: 0%;
}

.rightcenter {
  background-position-x: 100%;
  background-position-y: 50%;
}

.rightbottom {
  background-position-x: 0%;
  background-position-y: 100%;
}

.contact-popup-widget {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  z-index: 99;
  display: block;
}
.contact-popup-widget:hover {
  cursor: pointer;
}
.contact-popup-widget:hover .circle {
  background-color: rgb(0, 0, 0);
}
.contact-popup-widget .circle {
  background-color: #6da583;
  border-radius: 100%;
  border: solid 1px white;
  height: 100%;
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  z-index: 31;
}
.contact-popup-widget .circle .indicator {
  width: 1rem;
  height: 1rem;
  border-radius: 100%;
  background-color: #1FB958;
  border: solid 2px white;
  position: absolute;
  left: 0.05rem;
  top: 0rem;
  animation: blink 4s infinite;
}
@keyframes blink {
  0% {
    background-color: #1FB958;
  }
  50% {
    background-color: #26db69;
  }
  100% {
    background-color: #1FB958;
  }
}
.contact-popup-widget .circle .indicator.available {
  background-color: #1FB958;
}
.contact-popup-widget .circle .indicator.unavailable {
  display: none;
}
.contact-popup-widget .circle .icon {
  width: 55%;
  height: 55%;
  stroke: white;
  transform: scaleX(-1);
}
.contact-popup-widget .circle .icon svg {
  width: 100%;
  height: 100%;
}

.contact-popup-wrapper {
  background-color: white;
  color: black;
  width: 45rem;
  height: auto;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 100;
  flex-direction: column;
  display: none;
}
@media only screen and (max-width: 768px) {
  .contact-popup-wrapper {
    width: 100%;
    max-width: 23rem;
    justify-content: center;
  }
}
.contact-popup-wrapper.active {
  display: flex;
}
.contact-popup-wrapper .close {
  position: absolute;
  right: 1.2rem;
  top: 1rem;
  z-index: 50;
  width: 1.2rem;
  height: 1.2rem;
}
.contact-popup-wrapper .close:hover {
  cursor: pointer;
}
.contact-popup-wrapper .close:hover svg {
  stroke: rgb(180, 126, 0);
}
.contact-popup-wrapper .close svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: black;
}
.contact-popup-wrapper .status-label {
  font-size: 0.8rem;
  line-height: 0.8rem;
  text-transform: uppercase;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  border-radius: 0.15rem;
  color: black;
}
.contact-popup-wrapper .status-label.available {
  background-color: rgba(109, 165, 131, 0.3);
}
.contact-popup-wrapper .status-label.unavailable {
  background-color: rgba(180, 126, 0, 0.3);
}
.contact-popup-wrapper .status-label.unavailable .indicator {
  background-color: rgb(180, 126, 0);
}
.contact-popup-wrapper .status-label .indicator {
  width: 0.9rem;
  height: 0.9rem;
  display: inline-flex;
  margin-right: 0.5rem;
  border-radius: 100%;
  border: solid 2px white;
  background-color: #6da583;
}
.contact-popup-wrapper h3 {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.contact-popup-wrapper .text {
  font-size: 1rem;
  line-height: 1.2rem;
  margin-top: 0;
  margin-bottom: 0;
}
.contact-popup-wrapper .contact-popup-body {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .contact-popup-wrapper .contact-popup-body {
    flex-direction: column;
  }
}
.contact-popup-wrapper .contact-popup-body .whatsapp {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  width: 50%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .contact-popup-wrapper .contact-popup-body .whatsapp {
    width: 100%;
  }
}
.contact-popup-wrapper .contact-popup-body .whatsapp a:hover {
  background-color: rgba(31, 185, 88, 0.5);
}
.contact-popup-wrapper .contact-popup-body .whatsapp a {
  background-color: rgb(31, 185, 88);
  color: white;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 0;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-top: 1rem;
}
.contact-popup-wrapper .contact-popup-body .whatsapp a span {
  width: 2rem;
  height: 2rem;
}
.contact-popup-wrapper .contact-popup-body .phone {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  width: 50%;
  background-color: #F2F2F2;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .contact-popup-wrapper .contact-popup-body .phone {
    width: 100%;
  }
}
.contact-popup-wrapper .contact-popup-body .phone a:hover {
  background-color: rgba(180, 126, 0, 0.5);
}
.contact-popup-wrapper .contact-popup-body .phone a {
  background-color: #B47E00;
  color: white;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 0;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-top: 1rem;
}
.contact-popup-wrapper .contact-popup-body .phone a span {
  width: 2rem;
  height: 2rem;
}
.contact-popup-wrapper .contact-popup-footer {
  background-color: #767676;
  display: flex;
  font-size: 0.9rem;
  align-items: center;
}
.contact-popup-wrapper .contact-popup-footer h3 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  color: white;
  text-transform: uppercase;
  width: 50%;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .contact-popup-wrapper .contact-popup-footer h3 {
    width: 100%;
    padding-bottom: 1rem;
  }
}
.contact-popup-wrapper .contact-popup-footer .button-wrapper {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 3rem;
  padding-right: 3rem;
  margin: 0 auto;
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .contact-popup-wrapper .contact-popup-footer .button-wrapper {
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0rem;
  }
}
.contact-popup-wrapper .contact-popup-footer .button-wrapper a {
  width: 100%;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .contact-popup-wrapper .contact-popup-footer {
    flex-direction: column;
  }
}
.contact-popup-wrapper .contact-popup-footer .cta-button {
  margin-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  align-items: center;
  display: flex;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 0;
  color: white;
  background: red;
  font-size: 0.9rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  flex: 1;
  display: inline-flex;
  align-items: center;
}
.contact-popup-wrapper .contact-popup-footer .cta-button svg {
  stroke: white;
}
.contact-popup-wrapper .contact-popup-footer .cta-button.xs {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.contact-popup-wrapper .contact-popup-footer .cta-button.med {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.contact-popup-wrapper .contact-popup-footer .cta-button.lrg {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.contact-popup-wrapper .contact-popup-footer .cta-button.wide-m {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.contact-popup-wrapper .contact-popup-footer .cta-button.padding-left-s {
  padding-left: 1rem;
}
.contact-popup-wrapper .contact-popup-footer .cta-button.padding-left-m {
  padding-left: 2rem;
}
.contact-popup-wrapper .contact-popup-footer .cta-button.padding-left-ml {
  padding-left: 3rem;
}
.contact-popup-wrapper .contact-popup-footer .cta-button.padding-left-l {
  padding-left: 4rem;
}
.contact-popup-wrapper .contact-popup-footer .cta-button.padding-right-s {
  padding-right: 1rem;
}
.contact-popup-wrapper .contact-popup-footer .cta-button.padding-right-m {
  padding-right: 2rem;
}
.contact-popup-wrapper .contact-popup-footer .cta-button.padding-right-ml {
  padding-right: 3rem;
}
.contact-popup-wrapper .contact-popup-footer .cta-button.padding-right-l {
  padding-right: 4rem;
}
.contact-popup-wrapper .contact-popup-footer .cta-button.pri {
  background-color: rgb(180, 126, 0);
}
.contact-popup-wrapper .contact-popup-footer .cta-button.pri:hover {
  background-color: #ce9000;
}
.contact-popup-wrapper .contact-popup-footer .cta-button.sec {
  background-color: rgb(0, 0, 0);
}
.contact-popup-wrapper .contact-popup-footer .cta-button.sec:hover {
  background-color: #4d4d4d;
}
.contact-popup-wrapper .contact-popup-footer .cta-button.pos {
  background-color: #6da583;
}
.contact-popup-wrapper .contact-popup-footer .cta-button.pos:hover {
  background-color: #558a6a;
}
.contact-popup-wrapper .contact-popup-footer .cta-button.ghost {
  background: transparent;
  border: solid 1px #cccccc;
  color: black;
}
.contact-popup-wrapper .contact-popup-footer .cta-button.ghost:hover {
  border-color: rgb(180, 126, 0);
  color: rgb(180, 126, 0);
}
.contact-popup-wrapper .contact-popup-footer .cta-button.ghost.lit {
  border-color: white;
  color: white;
}
.contact-popup-wrapper .contact-popup-footer .cta-button.ghost.lit:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
}
.contact-popup-wrapper .contact-popup-footer .cta-button.ghost.dar {
  border-color: black;
  color: black;
}
.contact-popup-wrapper .contact-popup-footer .cta-button.ghost.dar:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
  color: white;
}
.contact-popup-wrapper .contact-popup-footer .cta-button.text-link {
  background: none;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  color: black;
}
.contact-popup-wrapper .contact-popup-footer .cta-button.text-link:hover {
  color: rgb(180, 126, 0);
}
.contact-popup-wrapper .contact-popup-footer .cta-button.center {
  text-align: center;
  justify-content: center;
}
.contact-popup-wrapper .contact-popup-footer .cta-button.full-width {
  width: 100%;
}
.contact-popup-wrapper .contact-popup-footer .cta-button.inline {
  display: inline-block;
}
.contact-popup-wrapper .contact-popup-footer .cta-button.right {
  justify-content: flex-end;
}
.contact-popup-wrapper .contact-popup-footer .cta-button.bold {
  font-weight: 500;
}
.contact-popup-wrapper .contact-popup-footer .cta-button .icon-wrapper {
  display: inline-flex;
  margin-right: 0.5rem;
}
.contact-popup-wrapper .contact-popup-footer .cta-button.disabled {
  background-color: #999999;
  color: #4d4d4d;
  font-style: italic;
  cursor: initial;
}
.contact-popup-wrapper .contact-popup-footer .cta-button.disabled:hover {
  background-color: #999999;
  color: #4d4d4d;
}
.contact-popup-wrapper .contact-popup-footer .cta-button:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 1200px) {
  .contact-popup-wrapper .contact-popup-footer .cta-button {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  .contact-popup-wrapper .contact-popup-footer .cta-button {
    width: 100%;
    margin-bottom: 1rem;
    margin-right: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.2rem;
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
  .contact-popup-wrapper .contact-popup-footer .cta-button {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  .contact-popup-wrapper .contact-popup-footer .cta-button {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-right: 1rem;
    font-size: 1rem;
  }
}
.contact-popup-wrapper .contact-popup-footer .cta-button:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 768px) {
  .contact-popup-wrapper .contact-popup-footer .cta-button:last-of-type {
    margin-bottom: 0;
  }
}
.contact-popup-wrapper .contact-popup-footer .cta-button .icon {
  display: inline-flex;
  margin-right: 0.5rem;
  width: 1rem;
  height: 1rem;
}
.contact-popup-wrapper .contact-popup-form {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  background-color: #e6e6e6;
}
.contact-popup-wrapper .contact-popup-form form {
  display: flex;
  flex-direction: column;
}
.contact-popup-wrapper .contact-popup-form form label {
  font-size: 0.9rem;
  font-weight: bold;
}
.contact-popup-wrapper .contact-popup-form form input, .contact-popup-wrapper .contact-popup-form form textarea {
  margin-bottom: 0.5rem;
  border-radius: 0;
  border: none;
  border-bottom: solid 1px #b3b3b3;
  background-color: transparent;
  font-size: 1rem;
  padding-top: 0.1rem;
  padding-bottom: 0.2rem;
}
.contact-popup-wrapper .contact-popup-form form input::-moz-placeholder, .contact-popup-wrapper .contact-popup-form form textarea::-moz-placeholder {
  font-size: 1rem;
}
.contact-popup-wrapper .contact-popup-form form input::placeholder, .contact-popup-wrapper .contact-popup-form form textarea::placeholder {
  font-size: 1rem;
}
.contact-popup-wrapper .contact-popup-form form input.error, .contact-popup-wrapper .contact-popup-form form textarea.error {
  border-color: #cc0000;
  color: #cc0000;
}
.contact-popup-wrapper .contact-popup-form form textarea {
  border: solid 1px #b3b3b3;
  padding: 0.5rem;
  height: 6rem;
  margin-bottom: 1rem;
  line-height: 1.2rem;
}
.contact-popup-wrapper .contact-popup-form form button[type=submit] {
  margin-left: auto;
  font-size: 0.9rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-family: "Work Sans", sans-serif;
}
.contact-popup-wrapper .contact-popup-form .success-message {
  font-weight: bold;
}

h3.store-status-title {
  line-height: 2.5rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 768px) {
  h3.store-status-title {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.store-contact-options {
  display: flex;
  margin-left: auto;
  margin-right: auto;
}
.store-contact-options a {
  padding-right: 1rem;
  margin-right: 1rem;
  line-height: 1rem;
  border-right: solid 1px black;
}
@media only screen and (max-width: 768px) {
  .store-contact-options a {
    text-align: center;
    padding-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .store-contact-options a:first-of-type {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
  }
}
.store-contact-options a:hover {
  color: rgb(180, 126, 0);
}
.store-contact-options a:last-of-type {
  margin-right: 0;
  border: none;
}

.video-embed-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.video-embed-wrapper iframe,
.video-embed-wrapper .object,
.video-embed-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.add-to-cart-popup-background {
  background: gray;
  opacity: 0.8;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 101;
  display: none;
}
.add-to-cart-popup-background.open {
  display: block;
}

.add-to-cart-popup-wrapper {
  padding: 2rem;
  background-color: white;
  position: fixed;
  top: 9rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 102;
  display: flex;
  flex-direction: row;
  pointer-events: none;
  opacity: 0;
  visibility: none;
  transition: 0.2s ease-in-out opacity;
  width: 100%;
  max-width: 48rem;
}
@media only screen and (max-width: 1000px) {
  .add-to-cart-popup-wrapper {
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  .add-to-cart-popup-wrapper {
    padding: 1.5rem;
    width: 90%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}
@media only screen and (max-width: 480px) {
  .add-to-cart-popup-wrapper {
    width: 95%;
  }
}
.add-to-cart-popup-wrapper.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.add-to-cart-popup-wrapper h5 {
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: normal;
}
@media only screen and (max-width: 480px) {
  .add-to-cart-popup-wrapper h5 {
    font-size: 1rem;
  }
}
.add-to-cart-popup-wrapper .icon {
  width: 1.8rem;
  height: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: rgb(180, 126, 0);
  border-radius: 100%;
  fill: white;
  margin-right: 0.3rem;
}
.add-to-cart-popup-wrapper .product-description {
  display: flex;
  border: solid 1px lightgray;
  padding: 1rem;
  max-width: 90%;
}
@media only screen and (max-width: 1000px) {
  .add-to-cart-popup-wrapper .product-description {
    max-width: 100%;
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .add-to-cart-popup-wrapper .product-description {
    padding: 0.8rem;
  }
}
.add-to-cart-popup-wrapper .product-description .product-text-container {
  word-break: break-word;
  line-height: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .add-to-cart-popup-wrapper .product-description .product-text-container {
    line-height: 1.4rem;
  }
}
.add-to-cart-popup-wrapper .product-description .product-text-container:last-of-type {
  margin-bottom: 0;
}
.add-to-cart-popup-wrapper .divider {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.add-to-cart-popup-wrapper .price {
  font-weight: bold;
}
.add-to-cart-popup-wrapper .left {
  flex: 2;
  margin-right: 1rem;
}
@media only screen and (max-width: 768px) {
  .add-to-cart-popup-wrapper .left {
    margin-right: 0;
  }
}
.add-to-cart-popup-wrapper .right {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.add-to-cart-popup-wrapper .right .cta-button {
  margin-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  align-items: center;
  display: flex;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 0;
  color: white;
  background: red;
}
.add-to-cart-popup-wrapper .right .cta-button svg {
  stroke: white;
}
.add-to-cart-popup-wrapper .right .cta-button.xs {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.add-to-cart-popup-wrapper .right .cta-button.med {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.add-to-cart-popup-wrapper .right .cta-button.lrg {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.add-to-cart-popup-wrapper .right .cta-button.wide-m {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.add-to-cart-popup-wrapper .right .cta-button.padding-left-s {
  padding-left: 1rem;
}
.add-to-cart-popup-wrapper .right .cta-button.padding-left-m {
  padding-left: 2rem;
}
.add-to-cart-popup-wrapper .right .cta-button.padding-left-ml {
  padding-left: 3rem;
}
.add-to-cart-popup-wrapper .right .cta-button.padding-left-l {
  padding-left: 4rem;
}
.add-to-cart-popup-wrapper .right .cta-button.padding-right-s {
  padding-right: 1rem;
}
.add-to-cart-popup-wrapper .right .cta-button.padding-right-m {
  padding-right: 2rem;
}
.add-to-cart-popup-wrapper .right .cta-button.padding-right-ml {
  padding-right: 3rem;
}
.add-to-cart-popup-wrapper .right .cta-button.padding-right-l {
  padding-right: 4rem;
}
.add-to-cart-popup-wrapper .right .cta-button.pri {
  background-color: rgb(180, 126, 0);
}
.add-to-cart-popup-wrapper .right .cta-button.pri:hover {
  background-color: #ce9000;
}
.add-to-cart-popup-wrapper .right .cta-button.sec {
  background-color: rgb(0, 0, 0);
}
.add-to-cart-popup-wrapper .right .cta-button.sec:hover {
  background-color: #4d4d4d;
}
.add-to-cart-popup-wrapper .right .cta-button.pos {
  background-color: #6da583;
}
.add-to-cart-popup-wrapper .right .cta-button.pos:hover {
  background-color: #558a6a;
}
.add-to-cart-popup-wrapper .right .cta-button.ghost {
  background: transparent;
  border: solid 1px #cccccc;
  color: black;
}
.add-to-cart-popup-wrapper .right .cta-button.ghost:hover {
  border-color: rgb(180, 126, 0);
  color: rgb(180, 126, 0);
}
.add-to-cart-popup-wrapper .right .cta-button.ghost.lit {
  border-color: white;
  color: white;
}
.add-to-cart-popup-wrapper .right .cta-button.ghost.lit:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
}
.add-to-cart-popup-wrapper .right .cta-button.ghost.dar {
  border-color: black;
  color: black;
}
.add-to-cart-popup-wrapper .right .cta-button.ghost.dar:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
  color: white;
}
.add-to-cart-popup-wrapper .right .cta-button.text-link {
  background: none;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  color: black;
}
.add-to-cart-popup-wrapper .right .cta-button.text-link:hover {
  color: rgb(180, 126, 0);
}
.add-to-cart-popup-wrapper .right .cta-button.center {
  text-align: center;
  justify-content: center;
}
.add-to-cart-popup-wrapper .right .cta-button.full-width {
  width: 100%;
}
.add-to-cart-popup-wrapper .right .cta-button.inline {
  display: inline-block;
}
.add-to-cart-popup-wrapper .right .cta-button.right {
  justify-content: flex-end;
}
.add-to-cart-popup-wrapper .right .cta-button.bold {
  font-weight: 500;
}
.add-to-cart-popup-wrapper .right .cta-button .icon-wrapper {
  display: inline-flex;
  margin-right: 0.5rem;
}
.add-to-cart-popup-wrapper .right .cta-button.disabled {
  background-color: #999999;
  color: #4d4d4d;
  font-style: italic;
  cursor: initial;
}
.add-to-cart-popup-wrapper .right .cta-button.disabled:hover {
  background-color: #999999;
  color: #4d4d4d;
}
.add-to-cart-popup-wrapper .right .cta-button:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 1200px) {
  .add-to-cart-popup-wrapper .right .cta-button {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  .add-to-cart-popup-wrapper .right .cta-button {
    width: 100%;
    margin-bottom: 1rem;
    margin-right: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.2rem;
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
  .add-to-cart-popup-wrapper .right .cta-button {
    font-size: 1rem;
  }
}
.add-to-cart-popup-wrapper .right .cta-button.pos {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-right: 0;
  margin-bottom: 1rem;
  text-align: center;
}
.add-to-cart-popup-wrapper .right .cta-button.text-link {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.page-row-wrapper.product-details-view-wrapper.other .button-wrapper {
  display: flex;
  margin-top: 2rem;
  flex-direction: row;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: solid 1px #cccccc;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button {
  margin-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  align-items: center;
  display: flex;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 0;
  color: white;
  background: red;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button svg {
  stroke: white;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.xs {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.med {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.lrg {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.wide-m {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.padding-left-s {
  padding-left: 1rem;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.padding-left-m {
  padding-left: 2rem;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.padding-left-ml {
  padding-left: 3rem;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.padding-left-l {
  padding-left: 4rem;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.padding-right-s {
  padding-right: 1rem;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.padding-right-m {
  padding-right: 2rem;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.padding-right-ml {
  padding-right: 3rem;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.padding-right-l {
  padding-right: 4rem;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.pri {
  background-color: rgb(180, 126, 0);
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.pri:hover {
  background-color: #ce9000;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.sec {
  background-color: rgb(0, 0, 0);
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.sec:hover {
  background-color: #4d4d4d;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.pos {
  background-color: #6da583;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.pos:hover {
  background-color: #558a6a;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.ghost {
  background: transparent;
  border: solid 1px #cccccc;
  color: black;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.ghost:hover {
  border-color: rgb(180, 126, 0);
  color: rgb(180, 126, 0);
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.ghost.lit {
  border-color: white;
  color: white;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.ghost.lit:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.ghost.dar {
  border-color: black;
  color: black;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.ghost.dar:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
  color: white;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.text-link {
  background: none;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  color: black;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.text-link:hover {
  color: rgb(180, 126, 0);
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.center {
  text-align: center;
  justify-content: center;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.full-width {
  width: 100%;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.inline {
  display: inline-block;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.right {
  justify-content: flex-end;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.bold {
  font-weight: 500;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button .icon-wrapper {
  display: inline-flex;
  margin-right: 0.5rem;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.disabled {
  background-color: #999999;
  color: #4d4d4d;
  font-style: italic;
  cursor: initial;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button.disabled:hover {
  background-color: #999999;
  color: #4d4d4d;
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 1200px) {
  .page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  .page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button {
    width: 100%;
    margin-bottom: 1rem;
    margin-right: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.2rem;
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
  .page-row-wrapper.product-details-view-wrapper.other .button-wrapper .cta-button {
    font-size: 1rem;
  }
}
.page-row-wrapper.product-details-view-wrapper.other .button-wrapper .icon-wrapper {
  width: 1.3rem;
}
.page-row-wrapper.product-details-view-wrapper.other .product-info-wrapper .social-share span {
  font-weight: 600;
  display: block;
  padding-bottom: 6px;
}
.page-row-wrapper.product-details-view-wrapper.other .usp-list {
  display: flex;
  flex-direction: column;
}
.page-row-wrapper.product-details-view-wrapper.other .usp-list li {
  display: flex;
  margin-bottom: 0.2rem;
  margin-right: 1.5rem;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
.page-row-wrapper.product-details-view-wrapper.other .usp-list li a {
  display: flex;
  align-items: center;
  text-decoration: underline;
}
.page-row-wrapper.product-details-view-wrapper.other .usp-list li a .icon-wrapper {
  margin-right: 1rem;
}
.page-row-wrapper.product-details-view-wrapper.other .usp-list li a svg {
  width: 1.3rem;
  height: 1.2rem;
  fill: black;
}
.page-row-wrapper.product-details-view-wrapper.other .product-specs {
  display: flex;
  width: auto;
  flex-grow: 0;
  flex-basis: auto;
  flex-wrap: nowrap;
}
.page-row-wrapper.product-details-view-wrapper.other .product-specs .specs-row {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: solid 1px #cccccc;
}
.page-row-wrapper.product-details-view-wrapper.other .product-specs .specs-row .specs-label {
  flex: 1;
  flex-grow: 0;
  flex-basis: 10rem;
  margin-right: 1rem;
  font-weight: 500;
}
.page-row-wrapper.product-details-view-wrapper.other .product-specs-wrapper {
  background: transparent;
  color: black;
}
.page-row-wrapper.product-details-view-wrapper.other .product-specs-wrapper .specs-row {
  width: 100%;
  border-bottom: solid 1px #cccccc;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.page-row-wrapper.product-details-view-wrapper.other .product-specs-wrapper .specs-row .specs-label {
  flex: 1;
  flex-grow: 1;
  flex-basis: 10rem;
  margin-right: 1rem;
  font-weight: 500;
}

section.description-row-wrapper {
  background-color: rgb(180, 126, 0);
  color: white;
}
section.description-row-wrapper .specs-row {
  width: 100%;
  max-width: 50%;
  font-weight: normal;
}
section.description-row-wrapper .specs-row ::-moz-selection {
  background-color: black;
}
section.description-row-wrapper .specs-row ::selection {
  background-color: black;
}
@media only screen and (max-width: 768px) {
  section.description-row-wrapper .specs-row {
    max-width: none;
  }
}
section.description-row-wrapper .specs-row .specs-label {
  flex-basis: 10rem;
  margin-right: 1rem;
  flex-grow: 0;
  font-weight: bold;
  align-self: flex-start;
}
section.description-row-wrapper .specs-row .specs-label ::-moz-selection {
  background-color: black;
}
section.description-row-wrapper .specs-row .specs-label ::selection {
  background-color: black;
}
section.description-row-wrapper .specs-row .description-text {
  align-self: flex-start;
}
section.description-row-wrapper .specs-row .description-text ::-moz-selection {
  background-color: black;
}
section.description-row-wrapper .specs-row .description-text ::selection {
  background-color: black;
}
section.description-row-wrapper .specs-row .description-text p {
  margin-top: 0;
}
section.description-row-wrapper .specs-row .description-text p:last-of-type {
  margin-bottom: 0;
}

div.sales-form-landing section.sales-form-landing-header {
  min-height: 43rem;
  max-height: 70vh;
  color: white;
  background-color: black;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing section.sales-form-landing-header {
    background-position: 25% center;
    min-height: 30rem;
  }
}
div.sales-form-landing section.sales-form-landing-header .content-wrapper {
  color: inherit;
}
div.sales-form-landing section.sales-form-landing-header .header-content-limiter {
  max-width: -moz-fit-content;
  max-width: fit-content;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing section.sales-form-landing-header .header-content-limiter {
    width: 100%;
    max-width: 100%;
    align-self: center;
  }
}
div.sales-form-landing section.sales-form-landing-header h1 {
  color: white;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}
div.sales-form-landing section.sales-form-landing-header:after {
  display: none;
}
div.sales-form-landing section.sales-form-landing-header .sales-usp-wrapper {
  margin-bottom: 2.5rem;
}
div.sales-form-landing section.sales-form-landing-header .sales-usp-wrapper ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
}
div.sales-form-landing section.sales-form-landing-header .sales-usp-wrapper ul li {
  font-size: 0.9rem;
  line-height: 1.3rem;
  text-align: center;
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  margin-right: 0.25rem;
  padding-right: 0.25rem;
  width: 9rem;
}
@media only screen and (max-width: 480px) {
  div.sales-form-landing section.sales-form-landing-header .sales-usp-wrapper ul li {
    font-size: 0.75rem;
    line-height: 0.9rem;
    width: 7rem;
    margin-right: 0.5rem;
    padding-right: 0.5rem;
    word-break: break-word;
  }
}
div.sales-form-landing section.sales-form-landing-header .sales-usp-wrapper ul li .usp-icon {
  width: 0.8rem;
  height: 0.8rem;
  fill: #6da583;
  margin-bottom: 0.5rem;
}
div.sales-form-landing section.sales-form-landing-header .sales-usp-wrapper ul li.border-right {
  border-right: solid 1px white;
}
div.sales-form-landing section.sales-form-landing-header .sales-usp-wrapper ul li.last-visible {
  margin-right: 0;
  padding-right: 0;
}
div.sales-form-landing section.sales-form-landing-header .cta-button {
  margin-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  align-items: center;
  display: flex;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 0;
  color: white;
  background: red;
  margin-right: 0;
  margin-bottom: 1.5rem;
  text-align: center;
  justify-content: center;
  line-height: 1.3rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  width: 100%;
  max-width: 21rem;
  position: relative;
}
div.sales-form-landing section.sales-form-landing-header .cta-button svg {
  stroke: white;
}
div.sales-form-landing section.sales-form-landing-header .cta-button.xs {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
div.sales-form-landing section.sales-form-landing-header .cta-button.med {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
div.sales-form-landing section.sales-form-landing-header .cta-button.lrg {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
div.sales-form-landing section.sales-form-landing-header .cta-button.wide-m {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
div.sales-form-landing section.sales-form-landing-header .cta-button.padding-left-s {
  padding-left: 1rem;
}
div.sales-form-landing section.sales-form-landing-header .cta-button.padding-left-m {
  padding-left: 2rem;
}
div.sales-form-landing section.sales-form-landing-header .cta-button.padding-left-ml {
  padding-left: 3rem;
}
div.sales-form-landing section.sales-form-landing-header .cta-button.padding-left-l {
  padding-left: 4rem;
}
div.sales-form-landing section.sales-form-landing-header .cta-button.padding-right-s {
  padding-right: 1rem;
}
div.sales-form-landing section.sales-form-landing-header .cta-button.padding-right-m {
  padding-right: 2rem;
}
div.sales-form-landing section.sales-form-landing-header .cta-button.padding-right-ml {
  padding-right: 3rem;
}
div.sales-form-landing section.sales-form-landing-header .cta-button.padding-right-l {
  padding-right: 4rem;
}
div.sales-form-landing section.sales-form-landing-header .cta-button.pri {
  background-color: rgb(180, 126, 0);
}
div.sales-form-landing section.sales-form-landing-header .cta-button.pri:hover {
  background-color: #ce9000;
}
div.sales-form-landing section.sales-form-landing-header .cta-button.sec {
  background-color: rgb(0, 0, 0);
}
div.sales-form-landing section.sales-form-landing-header .cta-button.sec:hover {
  background-color: #4d4d4d;
}
div.sales-form-landing section.sales-form-landing-header .cta-button.pos {
  background-color: #6da583;
}
div.sales-form-landing section.sales-form-landing-header .cta-button.pos:hover {
  background-color: #558a6a;
}
div.sales-form-landing section.sales-form-landing-header .cta-button.ghost {
  background: transparent;
  border: solid 1px #cccccc;
  color: black;
}
div.sales-form-landing section.sales-form-landing-header .cta-button.ghost:hover {
  border-color: rgb(180, 126, 0);
  color: rgb(180, 126, 0);
}
div.sales-form-landing section.sales-form-landing-header .cta-button.ghost.lit {
  border-color: white;
  color: white;
}
div.sales-form-landing section.sales-form-landing-header .cta-button.ghost.lit:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
}
div.sales-form-landing section.sales-form-landing-header .cta-button.ghost.dar {
  border-color: black;
  color: black;
}
div.sales-form-landing section.sales-form-landing-header .cta-button.ghost.dar:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
  color: white;
}
div.sales-form-landing section.sales-form-landing-header .cta-button.text-link {
  background: none;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  color: black;
}
div.sales-form-landing section.sales-form-landing-header .cta-button.text-link:hover {
  color: rgb(180, 126, 0);
}
div.sales-form-landing section.sales-form-landing-header .cta-button.center {
  text-align: center;
  justify-content: center;
}
div.sales-form-landing section.sales-form-landing-header .cta-button.full-width {
  width: 100%;
}
div.sales-form-landing section.sales-form-landing-header .cta-button.inline {
  display: inline-block;
}
div.sales-form-landing section.sales-form-landing-header .cta-button.right {
  justify-content: flex-end;
}
div.sales-form-landing section.sales-form-landing-header .cta-button.bold {
  font-weight: 500;
}
div.sales-form-landing section.sales-form-landing-header .cta-button .icon-wrapper {
  display: inline-flex;
  margin-right: 0.5rem;
}
div.sales-form-landing section.sales-form-landing-header .cta-button.disabled {
  background-color: #999999;
  color: #4d4d4d;
  font-style: italic;
  cursor: initial;
}
div.sales-form-landing section.sales-form-landing-header .cta-button.disabled:hover {
  background-color: #999999;
  color: #4d4d4d;
}
div.sales-form-landing section.sales-form-landing-header .cta-button:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 1200px) {
  div.sales-form-landing section.sales-form-landing-header .cta-button {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  div.sales-form-landing section.sales-form-landing-header .cta-button {
    width: 100%;
    margin-bottom: 1rem;
    margin-right: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.2rem;
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
  div.sales-form-landing section.sales-form-landing-header .cta-button {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing section.sales-form-landing-header .cta-button {
    font-size: 1.3rem;
    max-width: none;
  }
}
div.sales-form-landing section.sales-form-landing-header .cta-button .arrow {
  position: absolute;
  right: 1.5rem;
  transform: rotate(90deg);
  transition: transform 0.1s ease-in-out;
}
div.sales-form-landing section.sales-form-landing-header .cta-button:hover .arrow {
  transform: rotate(90deg) translateX(0.15rem);
}
div.sales-form-landing section.sales-form-landing-header .usp-scroll-button {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}
div.sales-form-landing section.sales-form-landing-header .usp-scroll-button .scroll-text {
  text-decoration: underline;
}
div.sales-form-landing section.sales-form-landing-header .usp-scroll-button .usp-icon {
  width: 1rem;
  fill: rgb(180, 126, 0);
  margin-right: 0.5rem;
  display: inline-flex;
  align-items: center;
}
div.sales-form-landing section.sales-form-landing-header .usp-scroll-button .usp-icon svg {
  width: 100%;
  height: 100%;
}
div.sales-form-landing section.sales-form-landing-header .usp-scroll-button .arrow {
  display: inline-block;
  transform: rotate(90deg);
  transition: transform 0.1s ease-in-out;
  margin-left: 0.5rem;
  text-decoration: none;
}
div.sales-form-landing section.sales-form-landing-header .usp-scroll-button:hover {
  color: rgb(180, 126, 0);
  cursor: pointer;
}
div.sales-form-landing h2.subtitle {
  text-align: center;
  font-size: 3rem;
  line-height: 3.5rem;
  margin-top: 0;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing h2.subtitle {
    font-size: 1.6rem;
    line-height: 2rem;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 480px) {
  div.sales-form-landing h2.subtitle {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing h2.subtitle br {
    display: none;
  }
}
div.sales-form-landing .sales-form-intro-text {
  color: gray;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-form-intro-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 1rem;
    line-height: 1.3rem;
  }
}
div.sales-form-landing .sales-form-intro-text a {
  color: inherit;
  text-decoration: underline;
}
div.sales-form-landing .sales-form-intro-text a:hover {
  color: black;
}
div.sales-form-landing .sales-form-section-wrapper {
  margin-bottom: 3rem;
}
div.sales-form-landing .sales-form-section-wrapper .content-wrapper {
  justify-content: center;
  align-items: center;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-area {
  background-color: #f7f7f7;
  padding-left: 5rem;
  padding-right: 5rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  margin-bottom: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-form-section-wrapper .sales-form-area {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-area .select-line-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-form-section-wrapper .sales-form-area .select-line-wrapper {
    flex-direction: column;
  }
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-area .select-line-wrapper h3 {
  margin-right: 1.5rem;
  font-size: 1.79rem;
  font-weight: 200;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-form-section-wrapper .sales-form-area .select-line-wrapper h3 {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 2rem;
  }
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-area .select-line-wrapper .select-wrapper {
  position: relative;
  justify-content: flex-end;
  border-bottom: dotted 1px gray;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-form-section-wrapper .sales-form-area .select-line-wrapper .select-wrapper {
    margin-bottom: 1.5rem;
    width: 80%;
  }
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-area .select-line-wrapper .select-wrapper:after {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  position: absolute;
  border-radius: 100%;
  background-color: rgb(180, 126, 0);
  content: "";
  background-image: url(../svg/icon-arrow-down-lig.svg);
  background-repeat: no-repeat;
  background-position: center center;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-area .select-line-wrapper .select-wrapper:hover::after {
  background-color: black;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-area .select-line-wrapper select {
  margin-left: -0.5rem;
  background-color: transparent;
  padding-left: 0.5rem;
  padding-right: 2.5rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: -webkit-fill-available;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-area .select-line-wrapper select option:disabled {
  color: gray;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-area .button-bar {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-form-section-wrapper .sales-form-area .button-bar {
    flex-direction: column;
  }
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-area .button-bar .text-link {
  margin-right: 1rem;
  border: none;
  color: black;
  background: none;
  cursor: pointer;
  font-size: 0.9rem;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-form-section-wrapper .sales-form-area .button-bar .text-link {
    margin-bottom: 1rem;
  }
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-area .button-bar .text-link:hover {
  text-decoration: underline;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-area .button-bar button.next {
  font-size: 0.9rem;
  outline: none;
  border: none;
  background: #6da583;
  color: white;
  padding-left: 1.5rem;
  padding-right: 1.6rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  font-weight: 200;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-form-section-wrapper .sales-form-area .button-bar button.next {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-area .button-bar button.next strong {
  font-weight: 600;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-area .button-bar button.next:hover {
  background-color: black;
  cursor: pointer;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-area .button-bar .example-overlay-trigger {
  margin-right: auto;
  border: solid 1px gray;
  font-size: 0.9rem;
  outline: none;
  color: gray;
  padding-left: 1.5rem;
  padding-right: 1.6rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-weight: 200;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-form-section-wrapper .sales-form-area .button-bar .example-overlay-trigger {
    width: 100%;
    margin-bottom: 2.5rem;
    margin-right: 0;
    text-align: center;
    justify-content: center;
  }
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-area .button-bar .example-overlay-trigger .icon {
  width: 1.4rem;
  height: 1.4rem;
  margin-right: 0.5rem;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-area .button-bar .example-overlay-trigger .icon svg {
  width: 100%;
  height: 100%;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-area .button-bar .example-overlay-trigger:hover {
  border-color: rgb(180, 126, 0);
  color: rgb(180, 126, 0);
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-area .button-bar .example-overlay-trigger:hover icon svg {
  stroke: rgb(180, 126, 0);
}
div.sales-form-landing .sales-form-section-wrapper ul.paging-dots {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-form-section-wrapper ul.paging-dots {
    margin-bottom: 4rem;
  }
}
div.sales-form-landing .sales-form-section-wrapper ul.paging-dots li {
  margin-right: 2rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-form-section-wrapper ul.paging-dots li {
    margin-right: 1rem;
  }
}
div.sales-form-landing .sales-form-section-wrapper ul.paging-dots li:last-of-type {
  margin-right: 0;
}
div.sales-form-landing .sales-form-section-wrapper ul.paging-dots li.active .dot {
  border: solid 1px transparent;
  background-color: rgb(180, 126, 0);
}
div.sales-form-landing .sales-form-section-wrapper ul.paging-dots li:hover {
  cursor: pointer;
}
div.sales-form-landing .sales-form-section-wrapper ul.paging-dots li:hover .dot {
  border: solid 1px transparent;
  background-color: rgb(180, 126, 0);
}
div.sales-form-landing .sales-form-section-wrapper ul.paging-dots li:hover .label {
  color: rgb(0, 0, 0);
}
div.sales-form-landing .sales-form-section-wrapper ul.paging-dots .dot {
  width: 1rem;
  height: 1rem;
  border-radius: 100%;
  display: block;
  border: solid 1px gray;
  margin-bottom: 0.5rem;
}
div.sales-form-landing .sales-form-section-wrapper ul.paging-dots .label {
  text-align: center;
  font-size: 0.9rem;
  color: gray;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-form-section-wrapper ul.paging-dots .label {
    display: none;
  }
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper {
  display: none;
  width: 100%;
  justify-content: center;
  align-items: center;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper.active {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper.thanks {
  background-color: transparent;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper > h3 {
  text-align: center;
  font-size: 1.79rem;
  line-height: 2.5rem;
  font-weight: 200;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper > h3 {
    margin-top: 0;
  }
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper .thanks-title {
  font-size: 3rem;
  line-height: 3.5rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper .thanks-title {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
@media only screen and (max-width: 480px) {
  div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper .thanks-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media only screen and (max-width: 480px) {
  div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper .thanks-title br {
    display: none;
  }
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper .thanks-subtitle {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper .thanks-subtitle {
    margin-bottom: 0;
  }
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper .hr-thanks-split {
  margin-top: 3rem;
  margin-bottom: 3rem;
  border-color: gray;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper .hr-thanks-split {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper .thanks-next-title {
  font-size: 3rem;
  line-height: 3.5rem;
  font-weight: 200;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper .thanks-next-title {
    font-size: 2rem;
    line-height: 2.5rem;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 480px) {
  div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper .thanks-next-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media only screen and (max-width: 480px) {
  div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper .thanks-next-title br {
    display: none;
  }
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper ul.thanks-brands-bar {
  margin-bottom: 2rem;
  list-style: none;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 480px) {
  div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper ul.thanks-brands-bar {
    flex-wrap: wrap;
    justify-content: center;
  }
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper ul.thanks-brands-bar li {
  display: inline-flex;
  color: rgb(180, 126, 0);
  margin-right: 1rem;
  color: rgb(180, 126, 0);
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper ul.thanks-brands-bar li {
    white-space: nowrap;
  }
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper ul.thanks-brands-bar li:last-of-type {
  margin-right: 0;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper ul.thanks-brands-bar li a {
  color: inherit;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta {
  margin-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  align-items: center;
  display: flex;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 0;
  color: white;
  background: red;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta svg {
  stroke: white;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.xs {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.med {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.lrg {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.wide-m {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.padding-left-s {
  padding-left: 1rem;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.padding-left-m {
  padding-left: 2rem;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.padding-left-ml {
  padding-left: 3rem;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.padding-left-l {
  padding-left: 4rem;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.padding-right-s {
  padding-right: 1rem;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.padding-right-m {
  padding-right: 2rem;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.padding-right-ml {
  padding-right: 3rem;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.padding-right-l {
  padding-right: 4rem;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.pri {
  background-color: rgb(180, 126, 0);
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.pri:hover {
  background-color: #ce9000;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.sec {
  background-color: rgb(0, 0, 0);
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.sec:hover {
  background-color: #4d4d4d;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.pos {
  background-color: #6da583;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.pos:hover {
  background-color: #558a6a;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.ghost {
  background: transparent;
  border: solid 1px #cccccc;
  color: black;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.ghost:hover {
  border-color: rgb(180, 126, 0);
  color: rgb(180, 126, 0);
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.ghost.lit {
  border-color: white;
  color: white;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.ghost.lit:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.ghost.dar {
  border-color: black;
  color: black;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.ghost.dar:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
  color: white;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.text-link {
  background: none;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  color: black;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.text-link:hover {
  color: rgb(180, 126, 0);
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.center {
  text-align: center;
  justify-content: center;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.full-width {
  width: 100%;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.inline {
  display: inline-block;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.right {
  justify-content: flex-end;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.bold {
  font-weight: 500;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta .icon-wrapper {
  display: inline-flex;
  margin-right: 0.5rem;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.disabled {
  background-color: #999999;
  color: #4d4d4d;
  font-style: italic;
  cursor: initial;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta.disabled:hover {
  background-color: #999999;
  color: #4d4d4d;
}
div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 1200px) {
  div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta {
    width: 100%;
    margin-bottom: 1rem;
    margin-right: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.2rem;
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
  div.sales-form-landing .sales-form-section-wrapper .form-step-wrapper a.thanks-cta {
    font-size: 1rem;
  }
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-wrapper {
  max-width: 42rem;
  width: 100%;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-wrapper .form-message.error-container {
  padding: 2rem;
  margin-bottom: 3rem;
  border: solid 1px #cc0000;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-wrapper .form-message.error-container h4 {
  margin-top: 0;
  margin-bottom: 0;
  color: #cc0000;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-wrapper .form-message.error-container h4:last-child {
  margin-bottom: 0;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-wrapper .form-message.error-container h4 + .error-list {
  margin-top: 0.5rem;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-wrapper .form-message.error-container .error-list b {
  font-size: 0.9rem;
  font-weight: 500;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-wrapper .form-message.error-container .error-list p {
  margin-bottom: 0;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-wrapper .form-message.error-container .error-list ul {
  line-height: 1.4rem;
  font-size: 0.9rem;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-wrapper .form-message.error-container:last-child {
  margin-bottom: 0;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-wrapper .form-row-wrapper {
  display: flex;
  width: 100%;
  margin-bottom: 1.7rem;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-form-section-wrapper .sales-form-wrapper .form-row-wrapper {
    flex-direction: column;
  }
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-wrapper .form-row-wrapper.error .form-label-wrapper {
  color: #cc0000;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-wrapper .form-row-wrapper.error .form-input-wrapper {
  border-bottom-color: #cc0000;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-wrapper .form-label-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-form-section-wrapper .sales-form-wrapper .form-label-wrapper {
    margin-bottom: 0.2rem;
  }
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-wrapper .form-input-wrapper {
  display: flex;
  align-items: center;
  flex: 2;
  border-bottom: solid 1px #A2AAAD;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-wrapper .form-input-wrapper input {
  background-color: transparent;
  outline: none;
  border: none;
  width: 100%;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-wrapper .form-input-wrapper.select select {
  background-color: transparent;
  width: 100%;
  outline: none;
  border: none;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-wrapper .form-input-wrapper.textarea {
  border: solid 1px #A2AAAD;
  margin-top: 1rem;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-wrapper .form-input-wrapper.textarea textarea {
  background-color: transparent;
  width: 100%;
  padding: 0.7rem;
  outline: none;
  border: none;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-wrapper .form-input-wrapper.textarea textarea::-moz-placeholder {
  color: #A2AAAD;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-wrapper .form-input-wrapper.textarea textarea::placeholder {
  color: #A2AAAD;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-wrapper .form-input-wrapper.euro:before {
  content: "€";
  display: inline-block;
  margin-left: 5px;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-wrapper .form-input-wrapper.euro input[type=number] {
  padding-left: 10px; /* add some padding to make room for the euro sign */
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-upload-wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex-wrap: nowrap;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-form-section-wrapper .sales-form-upload-wrapper {
    flex-direction: column;
    margin-bottom: 1rem;
  }
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-upload-wrapper .upload-element-wrapper {
  flex: 1;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(25% - 2rem);
  min-width: 0;
  margin-right: 2.5rem;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-form-section-wrapper .sales-form-upload-wrapper .upload-element-wrapper {
    width: 100%;
    flex-basis: 100%;
    margin-right: 0;
    margin-bottom: 2.5rem;
  }
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-upload-wrapper .upload-element-wrapper:last-of-type {
  margin-right: 0;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-upload-wrapper .upload-title {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-upload-wrapper .upload-area {
  background: white;
  margin-bottom: 1rem;
  width: 100%;
  aspect-ratio: 4/3;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-upload-wrapper .upload-area .icon {
  border: solid 2px gray;
  border-radius: 100%;
  flex-basis: 3.5rem;
  height: 3.5rem;
  width: 3.5rem;
  padding: 0.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-upload-wrapper .upload-area .icon svg {
  width: 1rem;
  height: 1rem;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-upload-wrapper .upload-area .icon.plus svg {
  color: gray;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-upload-wrapper .upload-area .icon.checkmark {
  border-color: #62C17F;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-upload-wrapper .upload-area .icon.checkmark svg {
  color: gray;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-upload-wrapper .upload-area:hover {
  outline: solid 1px rgb(180, 126, 0);
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-upload-wrapper .upload-area:hover .plus {
  border-color: rgb(180, 126, 0);
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-upload-wrapper .upload-area:hover .plus svg {
  color: rgb(180, 126, 0);
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-upload-wrapper .upload-area.confirmed {
  background-color: rgba(98, 193, 127, 0.3);
  cursor: default;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-upload-wrapper .upload-area.confirmed:hover {
  outline-color: #62C17F;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-upload-wrapper .upload-filename-wrapper {
  display: flex;
  align-items: center;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-upload-wrapper .upload-filename-wrapper .upload-text {
  display: inline-block;
  align-items: center;
  font-size: 0.8rem;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: auto;
  overflow: hidden;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-upload-wrapper .upload-filename-wrapper span {
  border: solid 1.5px #FF6C6C;
  color: #FF6C6C;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  flex-basis: auto;
  flex-shrink: 0;
  flex-basis: 1.3rem;
  height: 1.3rem;
  width: 1.5rem;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-upload-wrapper .upload-filename-wrapper span:hover {
  border-color: rgb(180, 126, 0);
  cursor: pointer;
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-upload-wrapper .upload-filename-wrapper span:hover svg {
  fill: rgb(180, 126, 0);
}
div.sales-form-landing .sales-form-section-wrapper .sales-form-upload-wrapper .upload-filename-wrapper span svg {
  fill: #FF6C6C;
  width: 0.7rem;
  height: 0.7rem;
}
div.sales-form-landing .sales-usp-section-wrapper {
  background-color: #f7f7f7;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-usp-section-wrapper {
    padding-bottom: 4rem;
    margin-bottom: 3rem;
  }
}
div.sales-form-landing .sales-usp-section-wrapper h3 {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: 2rem;
}
div.sales-form-landing .sales-usp-section-wrapper .usp-intro-wrapper {
  margin-bottom: 5rem;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-usp-section-wrapper .usp-intro-wrapper {
    margin-bottom: 2.5rem;
  }
}
div.sales-form-landing .sales-usp-section-wrapper .usp-intro-wrapper .left {
  margin-right: 3rem;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-usp-section-wrapper .usp-intro-wrapper .left {
    margin-right: 0;
    margin-bottom: 3rem;
  }
}
div.sales-form-landing .sales-usp-section-wrapper .usp-intro-wrapper .left p {
  margin-top: 0;
}
div.sales-form-landing .sales-usp-section-wrapper .usp-intro-wrapper .left p:last-of-type {
  margin-bottom: 0;
}
div.sales-form-landing .sales-usp-section-wrapper .usp-intro-wrapper .right {
  align-self: flex-start;
}
div.sales-form-landing .sales-usp-section-wrapper .usp-intro-wrapper ul.usp-list-wrapper {
  background: none;
}
div.sales-form-landing .sales-usp-section-wrapper .usp-intro-wrapper ul.usp-list-wrapper li {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-usp-section-wrapper .usp-intro-wrapper ul.usp-list-wrapper li {
    align-items: baseline;
    display: inline-block;
  }
}
div.sales-form-landing .sales-usp-section-wrapper .usp-intro-wrapper ul.usp-list-wrapper li:before {
  width: 0.8rem;
  height: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  content: "";
  background-image: url(../svg/icon-checkmark.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
div.sales-form-landing .sales-usp-section-wrapper .usp-big-slider-wrapper {
  display: flex;
  flex-wrap: nowrap;
  overflow: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
div.sales-form-landing .sales-usp-section-wrapper .usp-big-slider-wrapper::-webkit-scrollbar {
  display: none;
}
div.sales-form-landing .sales-usp-section-wrapper .usp-big-slider-wrapper::-moz-scrollbar {
  display: none;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-usp-section-wrapper .usp-big-slider-wrapper {
    margin-bottom: 0;
  }
}
div.sales-form-landing .sales-usp-section-wrapper .usp-slide-wrapper {
  border-bottom: solid 1px #cccccc;
  width: calc(50% - 2rem);
  flex-basis: calc(50% - 2rem);
  flex-grow: 0;
  flex-shrink: 0;
  padding-bottom: 2rem;
  margin-right: 2rem;
  scroll-snap-align: start;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-usp-section-wrapper .usp-slide-wrapper {
    width: 100%;
    flex-basis: 100%;
    margin-right: 0;
    margin-bottom: 0;
  }
}
div.sales-form-landing .sales-usp-section-wrapper .usp-slide-wrapper .left {
  flex: 1;
  align-self: flex-start;
  justify-content: center;
  display: flex;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-usp-section-wrapper .usp-slide-wrapper .left {
    margin-bottom: 1rem;
    justify-content: flex-start;
    width: 100%;
  }
}
div.sales-form-landing .sales-usp-section-wrapper .usp-slide-wrapper .left img {
  width: 70%;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-usp-section-wrapper .usp-slide-wrapper .left img {
    aspect-ratio: 4/3;
    -o-object-fit: contain;
       object-fit: contain;
    margin-left: auto;
    margin-right: auto;
  }
}
div.sales-form-landing .sales-usp-section-wrapper .usp-slide-wrapper .right {
  flex: 1;
}
div.sales-form-landing .sales-usp-section-wrapper .usp-slide-wrapper .right p {
  margin-top: 0;
  font-size: 0.9rem;
  line-height: 1.3rem;
}
div.sales-form-landing .sales-usp-section-wrapper .usp-slide-wrapper .right p:last-of-type {
  margin-bottom: 0;
}
div.sales-form-landing .sales-usp-section-wrapper .usp-slide-wrapper h4 {
  text-transform: none;
  letter-spacing: normal;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
}
div.sales-form-landing .sales-usp-section-wrapper .usp-big-slider-paging-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-usp-section-wrapper .usp-big-slider-paging-wrapper {
    flex-direction: column-reverse;
  }
}
div.sales-form-landing .sales-usp-section-wrapper .usp-big-slider-paging-wrapper .paging-dots {
  display: flex;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-usp-section-wrapper .usp-big-slider-paging-wrapper .paging-dots {
    width: 100%;
    justify-content: space-around;
    margin-bottom: 1rem;
    display: none;
  }
}
div.sales-form-landing .sales-usp-section-wrapper .usp-big-slider-paging-wrapper .paging-dots .dot {
  width: 0.8rem;
  height: 0.8rem;
  display: flex;
  border: solid 1px rgb(180, 126, 0);
  display: inline-flex;
  margin-right: 1rem;
  border-radius: 100%;
  cursor: pointer;
}
div.sales-form-landing .sales-usp-section-wrapper .usp-big-slider-paging-wrapper .paging-dots .dot:hover {
  background-color: rgb(180, 126, 0);
  border: solid 1px transparent;
}
div.sales-form-landing .sales-usp-section-wrapper .usp-big-slider-paging-wrapper .paging-dots .dot:last-of-type {
  margin-right: 0;
}
div.sales-form-landing .sales-usp-section-wrapper .usp-big-slider-paging-wrapper .paging-dots .dot.active {
  background-color: rgb(180, 126, 0);
  border: solid 1px transparent;
}
div.sales-form-landing .sales-usp-section-wrapper .usp-big-slider-paging-wrapper .paging-next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-usp-section-wrapper .usp-big-slider-paging-wrapper .paging-next {
    position: relative;
    right: initial;
    top: initial;
    transform: none;
    margin-bottom: 2rem;
    margin-left: auto;
  }
}
div.sales-form-landing .sales-usp-section-wrapper .usp-big-slider-paging-wrapper .paging-next:hover {
  color: rgb(180, 126, 0);
}
div.sales-form-landing .sales-usp-section-wrapper .usp-big-slider-paging-wrapper .paging-next:hover .arrow {
  color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
}
div.sales-form-landing .sales-usp-section-wrapper .usp-big-slider-paging-wrapper .paging-next .arrow {
  margin-left: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border: solid 1px gray;
  border-radius: 100%;
  color: gray;
  font-size: 1.5rem;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
div.sales-form-landing .sales-opening-times-wrapper h4 {
  margin-top: 0;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.5rem;
  line-height: 2.3rem;
  font-weight: 200;
}
div.sales-form-landing .sales-opening-times-wrapper .sales-contact-info {
  text-align: center;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-opening-times-wrapper .sales-contact-info {
    display: flex;
    flex-direction: column;
  }
}
div.sales-form-landing .sales-opening-times-wrapper .divider {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
@media only screen and (max-width: 768px) {
  div.sales-form-landing .sales-opening-times-wrapper .divider {
    display: none;
  }
}

.example-overlay-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: #626364;
  color: white;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
}
.example-overlay-wrapper.active {
  display: flex;
}
.example-overlay-wrapper .search-close {
  position: absolute;
  right: 2rem;
  top: 1rem;
  font-size: 3rem;
  cursor: pointer;
  z-index: 60;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .example-overlay-wrapper .search-close {
    right: 1rem;
    top: 1rem;
  }
}
.example-overlay-wrapper .search-close:hover {
  color: rgb(180, 126, 0);
}
.example-overlay-wrapper .search-close:hover svg {
  stroke: rgb(180, 126, 0);
}
.example-overlay-wrapper .search-close svg {
  width: 2.2rem;
  height: 3.2rem;
  stroke: white;
}
@media only screen and (max-width: 768px) {
  .example-overlay-wrapper .search-close svg {
    width: 1.6rem;
    height: 1.6rem;
  }
}
.example-overlay-wrapper .search-close .search-close-text {
  font-size: 0.9rem;
}
@media only screen and (max-width: 768px) {
  .example-overlay-wrapper .search-close .search-close-text {
    display: none;
  }
}
.example-overlay-wrapper .content-wrapper {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.example-overlay-wrapper .back-link {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .example-overlay-wrapper .back-link {
    position: relative;
    bottom: initial;
    transform: none;
    left: initial;
  }
}
.example-overlay-wrapper .back-link:hover {
  text-decoration: underline;
}
.example-overlay-wrapper h1 {
  margin-top: 0;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  .example-overlay-wrapper h1 {
    font-size: 1.7rem;
    line-height: 2rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }
}
.example-overlay-wrapper .example-images-wrapper {
  display: flex;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .example-overlay-wrapper .example-images-wrapper {
    flex-direction: column;
    margin-bottom: 1rem;
  }
}
.example-overlay-wrapper .example-images-wrapper .example-wrapper {
  flex: 1;
  flex-basis: auto;
  flex-grow: 0;
  min-width: 0;
  margin-right: 3rem;
}
@media only screen and (max-width: 768px) {
  .example-overlay-wrapper .example-images-wrapper .example-wrapper {
    margin-right: 0;
    margin-bottom: 1.5rem;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
}
.example-overlay-wrapper .example-images-wrapper .example-wrapper:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 768px) {
  .example-overlay-wrapper .example-images-wrapper .example-wrapper:last-of-type {
    margin-bottom: 0;
  }
}
.example-overlay-wrapper .example-images-wrapper .example-wrapper .example-title {
  margin-bottom: 0.3rem;
}
@media only screen and (max-width: 768px) {
  .example-overlay-wrapper .example-images-wrapper .example-wrapper .example-title {
    margin-bottom: 0.15rem;
  }
}
.example-overlay-wrapper .example-images-wrapper .example-wrapper img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .example-overlay-wrapper .example-images-wrapper .example-wrapper img {
    max-width: 40%;
  }
}
.example-overlay-wrapper .limit-text {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .example-overlay-wrapper .limit-text {
    margin-bottom: 0.5rem;
  }
}

/* 
- Page layout elements
- Re-usable elements
- Homepage template elements
-
*/
.page-wrapper {
  display: flex;
  cursor: auto;
  width: 100%;
  height: auto;
  min-height: 100vh;
  flex: 1;
  flex-direction: column;
  position: relative;
}

.page-row-wrapper {
  display: flex;
  flex: 1;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  flex-basis: auto;
}
.page-row-wrapper.padding-top-bot-s {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.page-row-wrapper.padding-top-bot-m {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  .page-row-wrapper.padding-top-bot-m {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.page-row-wrapper.padding-top-bot-l {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media only screen and (max-width: 768px) {
  .page-row-wrapper.padding-top-bot-l {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.page-row-wrapper.padding-top {
  padding-top: 3rem;
}
.page-row-wrapper.padding-bot {
  padding-bottom: 3rem;
}
.page-row-wrapper > .content-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex: 1;
  flex-basis: auto;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 1200px) {
  .page-row-wrapper > .content-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  .page-row-wrapper > .content-wrapper {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1000px) {
  .page-row-wrapper > .content-wrapper.mobile-row {
    flex-direction: row;
  }
}
@media only screen and (max-width: 1000px) {
  .page-row-wrapper > .content-wrapper.mobile-column {
    flex-direction: column;
  }
}
.page-row-wrapper > .content-wrapper > .base {
  display: flex;
  flex-direction: column;
}
.page-row-wrapper > .content-wrapper > .base.margin-right {
  margin-right: 2rem;
  width: calc(50% - 2rem);
  flex-basis: calc(50% - 2rem);
}
@media only screen and (max-width: 1000px) {
  .page-row-wrapper > .content-wrapper > .base.margin-right {
    margin-right: 0;
    width: 100%;
    flex-basis: 100%;
    margin-bottom: 2rem;
  }
}
.page-row-wrapper > .content-wrapper > .base.margin-left {
  margin-left: 2rem;
  width: calc(50% - 2rem);
  flex-basis: calc(50% - 2rem);
}
@media only screen and (max-width: 1000px) {
  .page-row-wrapper > .content-wrapper > .base.margin-left {
    margin-left: 0;
    width: 100%;
    flex-basis: 100%;
  }
}

.header-wrapper {
  position: relative;
  display: block;
  background-color: black;
}
.header-wrapper svg .header-color {
  fill: white;
}
.header-wrapper .header-image-wrapper {
  background-color: white;
}
.header-wrapper ul.primary-nav > li > a {
  color: white !important;
  padding-bottom: 1.5rem;
}
.header-wrapper ul.primary-nav > li > a:hover {
  color: rgb(180, 126, 0) !important;
}
.header-wrapper .service-nav-wrapper ul.service-nav li a {
  color: gray;
}
.header-wrapper .service-nav-wrapper ul.service-nav li:hover a {
  color: white;
}
.header-wrapper .service-nav-wrapper ul.lang-switch li a {
  color: gray;
}
.header-wrapper .service-nav-wrapper ul.lang-switch li:hover a {
  color: white;
}
.header-wrapper .search-open svg,
.header-wrapper .cart-link svg {
  stroke: gray;
}
.header-wrapper .search-open:hover svg,
.header-wrapper .cart-link:hover svg {
  stroke: white;
}
.header-wrapper .search-open .cart-value,
.header-wrapper .cart-link .cart-value {
  color: white;
}
.header-wrapper .hamburger-menu-link svg .lines {
  stroke: white !important;
}
.header-wrapper .hamburger-menu-link svg .text {
  fill: white !important;
}
.header-wrapper .hamburger-menu-link:hover .lines, .header-wrapper .hamburger-menu-link:active .lines {
  stroke: rgb(180, 126, 0) !important;
}
.header-wrapper .hamburger-menu-link:hover .text, .header-wrapper .hamburger-menu-link:active .text {
  fill: rgb(180, 126, 0) !important;
}
.header-wrapper .overlay-menu-wrapper {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1000px;
  height: auto;
  z-index: 10;
  margin-top: 3rem;
  margin-left: auto;
  background-color: #fcfcfc;
}
@media only screen and (max-width: 768px) {
  .header-wrapper .overlay-menu-wrapper {
    display: none;
  }
}
.header-wrapper .overlay-menu-wrapper.open {
  display: block !important;
}
.header-wrapper .overlay-menu-wrapper .overlay-content-wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .header-wrapper .overlay-menu-wrapper .overlay-content-wrapper {
    flex-direction: column;
  }
}
.header-wrapper .overlay-menu-wrapper .overlay-content-wrapper .menu-column-wrapper {
  flex: 1;
  padding: 2rem;
  position: relative;
  padding: 1rem;
}
.header-wrapper .overlay-menu-wrapper .overlay-content-wrapper .menu-column-wrapper h3 {
  margin-top: 0;
  font-weight: 500;
}
.header-wrapper .overlay-menu-wrapper .overlay-content-wrapper .menu-column-wrapper.one {
  flex: 1;
}
.header-wrapper .overlay-menu-wrapper .overlay-content-wrapper .menu-column-wrapper.two {
  flex: 2;
}
.header-wrapper .overlay-menu-wrapper .overlay-content-wrapper .menu-column-wrapper.min {
  background-color: #f2f2f2;
}
.header-wrapper .overlay-menu-wrapper .overlay-content-wrapper .menu-column-wrapper.med {
  background-color: #e6e6e6;
}
.header-wrapper .overlay-menu-wrapper .overlay-content-wrapper .menu-column-wrapper.dark {
  background-color: #cccccc;
}
.header-wrapper .overlay-menu-wrapper .overlay-content-wrapper .menu-column-wrapper.background-watch:after {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../jpg/rolex_hires.jpg");
  background-size: cover;
  background-position: center center;
  opacity: 0.15;
  z-index: 1;
}
.header-wrapper .overlay-menu-wrapper .overlay-content-wrapper .menu-column-wrapper .menu-content-wrapper {
  z-index: 2;
  position: relative;
}
.header-wrapper .overlay-menu-wrapper .overlay-content-wrapper .menu-column-wrapper .menu-content-wrapper p {
  font-weight: 400;
}
.header-wrapper .overlay-menu-wrapper .overlay-content-wrapper .menu-column-wrapper > ul {
  line-height: 1.3rem;
}
.header-wrapper .overlay-menu-wrapper .overlay-content-wrapper .menu-column-wrapper > ul > li {
  display: flex;
}
.header-wrapper .overlay-menu-wrapper .overlay-content-wrapper .menu-column-wrapper > ul > li a {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}
.header-wrapper .overlay-menu-wrapper .overlay-content-wrapper .menu-column-wrapper > ul > li.highlight {
  color: rgb(180, 126, 0);
  font-weight: 500;
}
.header-wrapper .overlay-menu-wrapper .overlay-content-wrapper .menu-column-wrapper > ul.list-columns {
  -moz-columns: 2;
       columns: 2;
}
@media only screen and (max-width: 768px) {
  .header-wrapper .overlay-menu-wrapper .overlay-content-wrapper .menu-column-wrapper > ul.list-columns {
    -moz-columns: auto;
         columns: auto;
  }
}
.header-wrapper > .content-wrapper {
  display: flex;
  flex-direction: column;
}
.header-wrapper > .content-wrapper .instagram-link {
  padding-left: 0.3rem;
  padding-right: 0.3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.8rem;
  line-height: normal;
  position: relative;
  width: 3rem;
  display: none;
}
.header-wrapper > .content-wrapper .instagram-link svg {
  fill: white;
  width: 100%;
  height: 100%;
}
.header-wrapper > .content-wrapper .service-nav-wrapper {
  display: flex;
  flex-direction: row;
  margin-left: auto;
  background-color: #1f1f1f;
  align-items: center;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .header-wrapper > .content-wrapper .service-nav-wrapper {
    display: none;
  }
}
.header-wrapper > .content-wrapper .service-nav-wrapper ul.service-nav {
  margin-left: auto;
  margin-right: 1rem;
}
.header-wrapper > .content-wrapper .service-nav-wrapper ul.service-nav li {
  display: inline-flex;
  font-size: 0.8rem;
}
.header-wrapper > .content-wrapper .service-nav-wrapper ul.service-nav li a {
  color: #cccccc;
  margin-right: 0.2rem;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-decoration: none;
}
.header-wrapper > .content-wrapper .service-nav-wrapper ul.service-nav li:last-of-type a {
  margin-right: 0;
}
.header-wrapper > .content-wrapper .service-nav-wrapper ul.service-nav li:hover a {
  color: rgb(180, 126, 0);
}
.header-wrapper > .content-wrapper .service-nav-wrapper ul.lang-switch {
  margin-right: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .header-wrapper > .content-wrapper .service-nav-wrapper ul.lang-switch {
    margin-left: 0;
  }
}
.header-wrapper > .content-wrapper .service-nav-wrapper ul.lang-switch li {
  display: inline-flex;
  font-size: 0.8rem;
  align-items: center;
}
.header-wrapper > .content-wrapper .service-nav-wrapper ul.lang-switch li a {
  margin-right: 0.3rem;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-decoration: none;
  color: #cccccc;
}
.header-wrapper > .content-wrapper .service-nav-wrapper ul.lang-switch li:after {
  content: "|";
  color: #cccccc;
}
.header-wrapper > .content-wrapper .service-nav-wrapper ul.lang-switch li.active a {
  color: rgb(180, 126, 0);
}
.header-wrapper > .content-wrapper .service-nav-wrapper ul.lang-switch li:last-of-type a {
  margin-right: 0;
}
.header-wrapper > .content-wrapper .service-nav-wrapper ul.lang-switch li:last-of-type:after {
  display: none;
}
.header-wrapper > .content-wrapper .service-nav-wrapper ul.lang-switch li:hover a {
  color: rgb(180, 126, 0);
}
.header-wrapper > .content-wrapper .service-nav-wrapper .favorite-link {
  padding-left: 0.3rem;
  padding-right: 0.3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.8rem;
  line-height: normal;
  position: relative;
  width: 1.95rem;
  margin-right: 0.5rem;
}
.header-wrapper > .content-wrapper .service-nav-wrapper .favorite-link svg {
  stroke: #cccccc;
  fill: none;
  transition: transform 0.5s ease;
}
.header-wrapper > .content-wrapper .service-nav-wrapper .favorite-link svg path {
  stroke-width: 0.6;
}
.header-wrapper > .content-wrapper .service-nav-wrapper .favorite-link:hover svg {
  stroke: rgb(180, 126, 0);
}
.header-wrapper > .content-wrapper .service-nav-wrapper .favorite-link.active svg {
  fill: #ff6969;
  stroke: #ff6969;
}
.header-wrapper > .content-wrapper .service-nav-wrapper .favorite-link.active:hover svg {
  transform: scale(1.1);
  stroke: #ff9c9c;
  fill: #ff9c9c;
}
.header-wrapper > .content-wrapper .service-nav-wrapper .search-open {
  padding-left: 0.3rem;
  padding-right: 0.3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.8rem;
  margin-right: 0.5rem;
  display: flex;
  width: 1.9rem;
}
.header-wrapper > .content-wrapper .service-nav-wrapper .search-open svg {
  stroke: #cccccc;
}
.header-wrapper > .content-wrapper .service-nav-wrapper .search-open:hover svg {
  stroke: rgb(180, 126, 0);
}
.header-wrapper > .content-wrapper .cart-link {
  padding-left: 0.3rem;
  padding-right: 0.3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.8rem;
  line-height: normal;
  position: relative;
  width: 2rem;
}
.header-wrapper > .content-wrapper .cart-link svg {
  stroke: #cccccc;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .header-wrapper > .content-wrapper .cart-link svg {
    height: 2rem;
  }
}
.header-wrapper > .content-wrapper .cart-link:hover svg {
  stroke: rgb(180, 126, 0);
}
.header-wrapper > .content-wrapper .cart-link:hover .cart-value {
  color: rgb(180, 126, 0);
}
.header-wrapper > .content-wrapper .cart-link .cart-value {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: white;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  margin-left: -0.05rem;
  margin-top: 0.03rem;
}
@media only screen and (max-width: 768px) {
  .header-wrapper > .content-wrapper .cart-link .cart-value {
    color: white;
  }
}
.header-wrapper > .content-wrapper .instagram-link {
  display: none;
}
.header-wrapper > .content-wrapper .primary-nav-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 0.5rem;
  z-index: 51;
  padding: 1.5rem 0 0 0;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .header-wrapper > .content-wrapper .primary-nav-wrapper {
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 1rem 0 1rem 0;
  }
}
.header-wrapper > .content-wrapper .primary-nav-wrapper .sticky-search-cart-wrapper {
  display: none;
}
.header-wrapper > .content-wrapper .primary-nav-wrapper .sticky-search-cart-wrapper .cart-link {
  margin-right: 0;
}
.header-wrapper > .content-wrapper .primary-nav-wrapper .logo-wrapper {
  flex: 1;
  max-width: 20rem;
  line-height: 0;
  padding-bottom: 1.5rem;
  flex-basis: auto;
  width: 100%;
  transition: 0.5s max-width, width ease;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .header-wrapper > .content-wrapper .primary-nav-wrapper .logo-wrapper {
    height: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .header-wrapper > .content-wrapper .primary-nav-wrapper .logo-wrapper {
    display: none;
  }
}
.header-wrapper > .content-wrapper .primary-nav-wrapper .logo-wrapper img {
  width: 100%;
  height: auto;
}
.header-wrapper > .content-wrapper .primary-nav-wrapper .sticky-logo-wrapper {
  display: none;
}
@media only screen and (max-width: 768px) {
  .header-wrapper > .content-wrapper .primary-nav-wrapper .sticky-logo-wrapper {
    display: none;
  }
}
.header-wrapper > .content-wrapper .primary-nav-wrapper .cart-link {
  padding-top: 0;
  padding-bottom: 0;
  width: 2.5rem;
  display: none;
}
@media only screen and (max-width: 768px) {
  .header-wrapper > .content-wrapper .primary-nav-wrapper .cart-link {
    display: block;
  }
}
.header-wrapper > .content-wrapper .primary-nav-wrapper .cart-link svg {
  width: 100%;
  height: 100%;
  stroke: white;
}
.header-wrapper > .content-wrapper .primary-nav-wrapper .hamburger-menu-link {
  display: none;
}
@media only screen and (max-width: 768px) {
  .header-wrapper > .content-wrapper .primary-nav-wrapper .hamburger-menu-link {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: 0.05s;
    width: 2rem;
    flex-shrink: 0;
  }
  .header-wrapper > .content-wrapper .primary-nav-wrapper .hamburger-menu-link svg .lines {
    stroke: black;
  }
  .header-wrapper > .content-wrapper .primary-nav-wrapper .hamburger-menu-link svg .text {
    fill: black;
  }
  .header-wrapper > .content-wrapper .primary-nav-wrapper .hamburger-menu-link:hover .lines, .header-wrapper > .content-wrapper .primary-nav-wrapper .hamburger-menu-link:active .lines {
    stroke: rgb(180, 126, 0);
  }
  .header-wrapper > .content-wrapper .primary-nav-wrapper .hamburger-menu-link:hover .text, .header-wrapper > .content-wrapper .primary-nav-wrapper .hamburger-menu-link:active .text {
    fill: rgb(180, 126, 0);
  }
}
.header-wrapper > .content-wrapper .primary-nav-wrapper .mobile-logo-wrapper {
  display: none;
}
@media only screen and (max-width: 768px) {
  .header-wrapper > .content-wrapper .primary-nav-wrapper .mobile-logo-wrapper {
    width: auto;
    height: 3rem;
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    z-index: 99;
    margin-right: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .header-wrapper > .content-wrapper .primary-nav-wrapper .mobile-logo-wrapper svg {
    max-width: 15rem;
  }
}
.header-wrapper > .content-wrapper .primary-nav-wrapper ul.primary-nav {
  margin-left: auto;
  align-self: center;
}
@media only screen and (max-width: 1200px) {
  .header-wrapper > .content-wrapper .primary-nav-wrapper ul.primary-nav {
    white-space: nowrap;
  }
}
@media only screen and (max-width: 768px) {
  .header-wrapper > .content-wrapper .primary-nav-wrapper ul.primary-nav {
    display: none;
  }
}
.header-wrapper > .content-wrapper .primary-nav-wrapper ul.primary-nav > li {
  display: inline-flex;
}
.header-wrapper > .content-wrapper .primary-nav-wrapper ul.primary-nav > li > a {
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.1rem;
  margin-right: 0.2rem;
  padding-left: 0.7rem;
  padding-right: 0.7rem;
  text-decoration: none;
  color: black;
  flex-basis: auto;
}
@media only screen and (max-width: 1200px) {
  .header-wrapper > .content-wrapper .primary-nav-wrapper ul.primary-nav > li > a {
    margin-right: 0;
    letter-spacing: 0.1rem;
    padding-right: 0;
  }
}
@media only screen and (max-width: 1000px) {
  .header-wrapper > .content-wrapper .primary-nav-wrapper ul.primary-nav > li > a {
    font-size: 0.8rem;
    letter-spacing: 0.05rem;
    padding-left: 0.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .header-wrapper > .content-wrapper .primary-nav-wrapper ul.primary-nav > li > a {
    color: white;
  }
}
.header-wrapper > .content-wrapper .primary-nav-wrapper ul.primary-nav > li:last-of-type a {
  margin-right: 0;
  padding-right: 0;
}
.header-wrapper > .content-wrapper .primary-nav-wrapper ul.primary-nav > li:hover > a {
  color: white;
}
.header-wrapper > .content-wrapper .primary-nav-wrapper ul.primary-nav > li > ul li a {
  color: black;
}
.header-wrapper > .content-wrapper .sticky-placeholder {
  display: none;
}
.header-wrapper > .content-wrapper .sticky-placeholder.active {
  transition: 0;
  height: 111px;
  display: flex;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .header-wrapper > .content-wrapper .sticky-placeholder.active {
    height: 70px;
  }
}
.header-wrapper > .content-wrapper .sticky-wrapper.sticky {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  margin: 0 auto;
  z-index: 100;
  display: block;
  background-color: rgba(0, 0, 0, 0.98);
}
.header-wrapper > .content-wrapper .sticky-wrapper.sticky .overlay-menu-wrapper {
  margin-top: 3.1rem;
}
.header-wrapper > .content-wrapper .sticky-wrapper.sticky .sticky-content-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex: 1;
  flex-basis: auto;
  flex-wrap: nowrap;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media only screen and (max-width: 1200px) {
  .header-wrapper > .content-wrapper .sticky-wrapper.sticky .sticky-content-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  .header-wrapper > .content-wrapper .sticky-wrapper.sticky .sticky-content-wrapper {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1000px) {
  .header-wrapper > .content-wrapper .sticky-wrapper.sticky .sticky-content-wrapper.mobile-row {
    flex-direction: row;
  }
}
@media only screen and (max-width: 1000px) {
  .header-wrapper > .content-wrapper .sticky-wrapper.sticky .sticky-content-wrapper.mobile-column {
    flex-direction: column;
  }
}
.header-wrapper > .content-wrapper .sticky-wrapper.sticky .instagram-link {
  display: none;
}
.header-wrapper > .content-wrapper .sticky-wrapper.sticky .primary-nav-wrapper {
  margin-top: 0;
}
.header-wrapper > .content-wrapper .sticky-wrapper.sticky .primary-nav-wrapper .sticky-search-cart-wrapper {
  margin-left: 2rem;
  padding-bottom: 1.5rem;
  display: flex !important;
  margin-top: 0;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .header-wrapper > .content-wrapper .sticky-wrapper.sticky .primary-nav-wrapper .sticky-search-cart-wrapper {
    display: none !important;
  }
}
.header-wrapper > .content-wrapper .sticky-wrapper.sticky .primary-nav-wrapper .sticky-search-cart-wrapper .favorite-link {
  transition: transform 1s ease;
}
.header-wrapper > .content-wrapper .sticky-wrapper.sticky .primary-nav-wrapper .sticky-search-cart-wrapper .favorite-link svg path {
  stroke-width: 0.7;
}
.header-wrapper > .content-wrapper .sticky-wrapper.sticky .primary-nav-wrapper .sticky-search-cart-wrapper .favorite-link.active svg {
  fill: #ff6969;
  stroke: #ff6969 !important;
}
.header-wrapper > .content-wrapper .sticky-wrapper.sticky .primary-nav-wrapper .sticky-search-cart-wrapper .favorite-link.active:hover {
  transform: scale(1.1);
}
.header-wrapper > .content-wrapper .sticky-wrapper.sticky .primary-nav-wrapper .sticky-search-cart-wrapper .favorite-link.active:hover svg {
  fill: #ff9c9c;
  stroke: #ff9c9c !important;
}
.header-wrapper > .content-wrapper .sticky-wrapper.sticky .primary-nav-wrapper .sticky-search-cart-wrapper > a {
  align-items: center;
  display: flex;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.8rem;
  margin-right: 0.5rem;
  width: 2rem;
}
.header-wrapper > .content-wrapper .sticky-wrapper.sticky .primary-nav-wrapper .sticky-search-cart-wrapper > a .cart-value {
  color: white;
  margin-top: 0.15rem;
}
.header-wrapper > .content-wrapper .sticky-wrapper.sticky .primary-nav-wrapper .sticky-search-cart-wrapper > a:last-of-type {
  margin-right: 0;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .header-wrapper > .content-wrapper .sticky-wrapper.sticky .primary-nav-wrapper .sticky-search-cart-wrapper > a {
    align-self: center;
  }
}
.header-wrapper > .content-wrapper .sticky-wrapper.sticky .primary-nav-wrapper .sticky-search-cart-wrapper > a svg {
  stroke: white !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .header-wrapper > .content-wrapper .sticky-wrapper.sticky .primary-nav-wrapper .sticky-search-cart-wrapper > a svg {
    height: 1rem;
  }
}
.header-wrapper > .content-wrapper .sticky-wrapper.sticky .primary-nav-wrapper .sticky-search-cart-wrapper > a:hover svg {
  stroke: rgb(180, 126, 0) !important;
}
.header-wrapper > .content-wrapper .sticky-wrapper.sticky .primary-nav-wrapper .sticky-search-cart-wrapper > a:hover .cart-value {
  color: rgb(180, 126, 0);
}
.header-wrapper > .content-wrapper .sticky-wrapper.sticky .primary-nav-wrapper > ul > li > a {
  color: white;
}
.header-wrapper > .content-wrapper .sticky-wrapper.sticky .primary-nav-wrapper > ul > li > a:hover {
  color: rgb(180, 126, 0);
}
.header-wrapper > .content-wrapper .sticky-wrapper.sticky .service-nav-wrapper {
  display: none;
}
.header-wrapper > .content-wrapper .sticky-wrapper.sticky .logo-wrapper {
  display: none;
}
.header-wrapper > .content-wrapper .sticky-wrapper.sticky .mobile-logo-wrapper {
  display: none;
}
.header-wrapper > .content-wrapper .sticky-wrapper.sticky .hamburger-menu-link {
  order: 1;
}
@media only screen and (max-width: 768px) {
  .header-wrapper > .content-wrapper .sticky-wrapper.sticky .hamburger-menu-link svg .lines {
    stroke: white;
  }
  .header-wrapper > .content-wrapper .sticky-wrapper.sticky .hamburger-menu-link svg .text {
    fill: white;
  }
}
.header-wrapper > .content-wrapper .sticky-wrapper.sticky .sticky-logo-wrapper {
  display: flex;
  padding-bottom: 1.5rem;
  align-items: center;
  height: 100%;
  max-width: 15rem;
}
@media only screen and (max-width: 1000px) {
  .header-wrapper > .content-wrapper .sticky-wrapper.sticky .sticky-logo-wrapper {
    align-self: center;
  }
}
@media only screen and (max-width: 768px) {
  .header-wrapper > .content-wrapper .sticky-wrapper.sticky .sticky-logo-wrapper {
    padding-bottom: 0;
  }
}
.header-wrapper > .content-wrapper .sticky-wrapper.sticky .sticky-logo-wrapper a {
  display: flex;
  align-items: center;
}
.header-wrapper > .content-wrapper .sticky-wrapper.sticky .sticky-logo-wrapper a svg {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  height: 3rem;
  width: auto;
  fill: white;
}
@media only screen and (max-width: 1200px) {
  .header-wrapper > .content-wrapper .sticky-wrapper.sticky .sticky-logo-wrapper a svg {
    max-width: 85%;
  }
}
@media only screen and (max-width: 768px) {
  .header-wrapper > .content-wrapper .sticky-wrapper.sticky .sticky-logo-wrapper a svg {
    max-width: 100%;
  }
}
.header-wrapper > .content-wrapper .sticky-wrapper .sticky-content-wrapper .dim {
  z-index: 50;
}
.header-wrapper > .content-wrapper .sticky-wrapper .close-button {
  display: none;
}
.header-wrapper > .content-wrapper .sticky-wrapper.open {
  border: solid 1px;
  display: flex;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  margin: 0;
  background: black;
  padding: 1rem;
}
.header-wrapper > .content-wrapper .sticky-wrapper.open .close-button {
  display: flex;
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 999;
  width: 2.2rem;
}
.header-wrapper > .content-wrapper .sticky-wrapper.open .close-button svg {
  stroke: #b3b3b3;
}
.header-wrapper > .content-wrapper .sticky-wrapper.open .close-button:hover, .header-wrapper > .content-wrapper .sticky-wrapper.open .close-button:active {
  cursor: pointer;
}
.header-wrapper > .content-wrapper .sticky-wrapper.open .close-button:hover svg, .header-wrapper > .content-wrapper .sticky-wrapper.open .close-button:active svg {
  stroke: rgb(180, 126, 0);
}
.header-wrapper > .content-wrapper .sticky-wrapper.open .sticky-content-wrapper {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  width: 100%;
}
.header-wrapper > .content-wrapper .sticky-wrapper.open .sticky-content-wrapper .mobile-logo-wrapper {
  display: none;
}
.header-wrapper > .content-wrapper .sticky-wrapper.open .hamburger-menu-link {
  display: none;
}
.header-wrapper > .content-wrapper .sticky-wrapper.open .service-nav-wrapper {
  display: flex;
  margin-left: 0;
}
.header-wrapper > .content-wrapper .sticky-wrapper.open .service-nav-wrapper .favorite-link {
  margin-left: auto;
}
.header-wrapper > .content-wrapper .sticky-wrapper.open .instagram-link {
  display: block;
}
.header-wrapper > .content-wrapper .sticky-wrapper.open .primary-nav-wrapper {
  margin-top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header-wrapper > .content-wrapper .sticky-wrapper.open .primary-nav-wrapper .cart-link {
  display: none;
}
.header-wrapper > .content-wrapper .sticky-wrapper.open .primary-nav-wrapper ul.primary-nav {
  display: flex;
  flex-direction: column;
  align-self: center;
  padding-bottom: 1rem;
  margin-top: 0;
  margin-left: 0;
  text-align: center;
  border-bottom: solid 1px gray;
  width: 100%;
}
.header-wrapper > .content-wrapper .sticky-wrapper.open .primary-nav-wrapper ul.primary-nav li {
  display: flex;
  justify-content: center;
}
.header-wrapper > .content-wrapper .sticky-wrapper.open .primary-nav-wrapper ul.primary-nav li a {
  padding-bottom: 1rem;
  font-size: 1rem;
}
.header-wrapper > .content-wrapper .sticky-wrapper.open .primary-nav-wrapper ul.service-nav {
  display: flex;
  flex-direction: column;
  align-self: center;
  padding-top: 1rem;
  margin-top: 1rem;
  text-align: center;
  width: 100%;
}
.header-wrapper > .content-wrapper .sticky-wrapper.open .primary-nav-wrapper ul.service-nav li a {
  display: flex;
  justify-content: center;
  color: white;
  padding-top: 0.5rem;
  padding-bottom: 1rem;
  font-size: 0.9rem;
}
.header-wrapper .sticky-product-bar-wrapper {
  position: relative;
  display: none;
  width: 100%;
  background: white;
  color: black;
  min-height: 2.7rem;
}
.header-wrapper .sticky-product-bar-wrapper.active {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .header-wrapper .sticky-product-bar-wrapper.active {
    display: none;
  }
}
.header-wrapper .sticky-product-bar-wrapper .brand-name {
  text-decoration: underline;
  font-weight: 500;
}
.header-wrapper .sticky-product-bar-wrapper .product-name {
  font-weight: 300;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button {
  margin-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  align-items: center;
  display: flex;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 0;
  color: white;
  background: red;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button svg {
  stroke: white;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.xs {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.med {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.lrg {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.wide-m {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.padding-left-s {
  padding-left: 1rem;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.padding-left-m {
  padding-left: 2rem;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.padding-left-ml {
  padding-left: 3rem;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.padding-left-l {
  padding-left: 4rem;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.padding-right-s {
  padding-right: 1rem;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.padding-right-m {
  padding-right: 2rem;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.padding-right-ml {
  padding-right: 3rem;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.padding-right-l {
  padding-right: 4rem;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.pri {
  background-color: rgb(180, 126, 0);
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.pri:hover {
  background-color: #ce9000;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.sec {
  background-color: rgb(0, 0, 0);
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.sec:hover {
  background-color: #4d4d4d;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.pos {
  background-color: #6da583;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.pos:hover {
  background-color: #558a6a;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.ghost {
  background: transparent;
  border: solid 1px #cccccc;
  color: black;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.ghost:hover {
  border-color: rgb(180, 126, 0);
  color: rgb(180, 126, 0);
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.ghost.lit {
  border-color: white;
  color: white;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.ghost.lit:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.ghost.dar {
  border-color: black;
  color: black;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.ghost.dar:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
  color: white;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.text-link {
  background: none;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  color: black;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.text-link:hover {
  color: rgb(180, 126, 0);
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.center {
  text-align: center;
  justify-content: center;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.full-width {
  width: 100%;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.inline {
  display: inline-block;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.right {
  justify-content: flex-end;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.bold {
  font-weight: 500;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button .icon-wrapper {
  display: inline-flex;
  margin-right: 0.5rem;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.disabled {
  background-color: #999999;
  color: #4d4d4d;
  font-style: italic;
  cursor: initial;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button.disabled:hover {
  background-color: #999999;
  color: #4d4d4d;
}
.header-wrapper .sticky-product-bar-wrapper .cta-button:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 1200px) {
  .header-wrapper .sticky-product-bar-wrapper .cta-button {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  .header-wrapper .sticky-product-bar-wrapper .cta-button {
    width: 100%;
    margin-bottom: 1rem;
    margin-right: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.2rem;
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
  .header-wrapper .sticky-product-bar-wrapper .cta-button {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  .header-wrapper .sticky-product-bar-wrapper .cta-button {
    margin-bottom: 0;
  }
}
.header-wrapper .sticky-product-bar-wrapper .cta-button svg {
  margin-right: 0.5rem;
  width: 1.3rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .header-wrapper .sticky-product-bar-wrapper .cta-button svg {
    height: 2rem;
  }
}
.header-wrapper .sticky-product-bar-wrapper .product-price {
  font-weight: 300;
}
.header-wrapper .sticky-product-bar-wrapper .product-price:before {
  content: "|";
  margin-right: 0.8rem;
  margin-left: 0.5rem;
}
.header-wrapper .sticky-product-bar-wrapper .sticky-product-bar {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex: 1;
  flex-basis: auto;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 1200px) {
  .header-wrapper .sticky-product-bar-wrapper .sticky-product-bar {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  .header-wrapper .sticky-product-bar-wrapper .sticky-product-bar {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1000px) {
  .header-wrapper .sticky-product-bar-wrapper .sticky-product-bar.mobile-row {
    flex-direction: row;
  }
}
@media only screen and (max-width: 1000px) {
  .header-wrapper .sticky-product-bar-wrapper .sticky-product-bar.mobile-column {
    flex-direction: column;
  }
}

section.contact-location-footer-wrapper {
  background-image: url("../jpg/background-footer-location1b26.jpg");
  background-size: cover;
  background-position: center center;
  color: white;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  section.contact-location-footer-wrapper:before {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    content: " ";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 56;
    z-index: 1;
  }
}
@media only screen and (max-width: 768px) {
  section.contact-location-footer-wrapper {
    background-position-x: 55%;
  }
}
section.contact-location-footer-wrapper h3 {
  font-size: 2rem;
  font-weight: normal;
  color: inherit;
  z-index: 3;
  margin-top: 0;
}
section.contact-location-footer-wrapper h3 strong {
  font-weight: 400;
}
section.contact-location-footer-wrapper .contact-info-wrapper {
  color: white;
  z-index: 3;
}
section.contact-location-footer-wrapper .contact-info-wrapper h3 {
  font-weight: 300;
}
section.contact-location-footer-wrapper .contact-info-wrapper h3 strong {
  font-weight: 400;
}
section.contact-location-footer-wrapper .contact-info-wrapper p {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
section.contact-location-footer-wrapper .contact-info-wrapper p a {
  color: inherit;
  text-decoration: none;
  margin-bottom: 0.1rem;
}
section.contact-location-footer-wrapper .contact-info-wrapper p a:hover {
  border-bottom: solid 0.5px;
  text-decoration: none;
}
section.contact-location-footer-wrapper .contact-info-wrapper p a:hover {
  color: rgb(180, 126, 0);
  text-decoration: none;
}
section.contact-location-footer-wrapper .contact-info-wrapper p a.highlight {
  color: rgb(180, 126, 0);
  text-decoration: none;
}
section.contact-location-footer-wrapper .contact-info-wrapper .contact-info-links {
  margin-right: 5rem;
}
@media only screen and (max-width: 768px) {
  section.contact-location-footer-wrapper .contact-info-wrapper .contact-info-links {
    margin-right: 1rem;
    align-items: center;
  }
}
section.contact-location-footer-wrapper .contact-info-wrapper .social-links {
  align-items: center;
}
@media only screen and (max-width: 768px) {
  section.contact-location-footer-wrapper .contact-info-wrapper .social-links {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
section.contact-location-footer-wrapper .contact-info-wrapper .social-links a {
  color: white;
  margin-bottom: 1rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  section.contact-location-footer-wrapper .contact-info-wrapper .social-links a {
    height: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  section.contact-location-footer-wrapper .contact-info-wrapper .social-links a {
    display: flex;
    flex-direction: row;
  }
}
section.contact-location-footer-wrapper .contact-info-wrapper .social-links a:hover {
  color: rgb(180, 126, 0);
  text-decoration: none;
}
section.contact-location-footer-wrapper .contact-info-wrapper .social-links a:hover svg {
  fill: rgb(180, 126, 0);
}
section.contact-location-footer-wrapper .contact-info-wrapper .social-links a svg {
  fill: white;
  width: 2.5rem;
  height: auto;
  margin-right: 1rem;
}
section.contact-location-footer-wrapper .location-map-wrapper {
  margin-left: auto;
  z-index: 3;
  width: 100%;
  max-width: 17rem;
}
@media only screen and (max-width: 768px) {
  section.contact-location-footer-wrapper .location-map-wrapper {
    max-width: 50vw;
    margin-right: auto;
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (max-width: 480px) {
  section.contact-location-footer-wrapper .location-map-wrapper {
    max-width: 80vw;
  }
}
section.contact-location-footer-wrapper .location-map-wrapper img {
  width: 100%;
  height: 100%;
}

.footer-nav-bar {
  background: black;
  color: gray;
}
.footer-nav-bar .footer-stats-wrapper {
  display: flex;
  flex-direction: column;
  flex-basis: 47.5%;
  width: 47.5%;
  justify-content: center;
  font-size: 0.9rem;
}
@media only screen and (max-width: 768px) {
  .footer-nav-bar .footer-stats-wrapper {
    width: 100%;
    flex-basis: 100%;
    text-align: center;
    order: 1;
    margin-top: 3rem;
  }
}
.footer-nav-bar .footer-stats-wrapper p {
  margin-top: 0;
  margin-bottom: 0.3rem;
  font-weight: 300;
}
@media only screen and (max-width: 768px) {
  .footer-nav-bar .footer-stats-wrapper p {
    font-size: 0.9rem;
  }
}
.footer-nav-bar .footer-stats-wrapper p strong {
  font-weight: 400;
}
.footer-nav-bar .footer-logo-wrapper {
  flex-basis: 5%;
  width: 5%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media only screen and (max-width: 1000px) {
  .footer-nav-bar .footer-logo-wrapper {
    width: 10%;
    flex-basis: 10%;
    align-self: center;
  }
}
.footer-nav-bar .footer-logo-wrapper img {
  width: 100%;
  height: auto;
}
.footer-nav-bar .footer-nav-wrapper {
  display: flex;
  flex-basis: 47.5%;
  width: 47.5%;
  align-items: center;
}
@media only screen and (max-width: 1000px) {
  .footer-nav-bar .footer-nav-wrapper {
    width: 100%;
    flex-basis: 100%;
    margin-top: 1rem;
    text-align: center;
    justify-content: center;
  }
}
.footer-nav-bar .footer-nav-wrapper ul.footer-nav {
  margin-left: auto;
  line-height: 1.5rem;
}
@media only screen and (max-width: 1000px) {
  .footer-nav-bar .footer-nav-wrapper ul.footer-nav {
    margin-left: 0;
  }
}
.footer-nav-bar .footer-nav-wrapper ul.footer-nav li {
  display: inline;
  margin-right: 0.5rem;
}
@media only screen and (max-width: 1000px) {
  .footer-nav-bar .footer-nav-wrapper ul.footer-nav li {
    margin-right: 0.2rem;
    text-align: center;
  }
}
@media only screen and (max-width: 1000px) {
  .footer-nav-bar .footer-nav-wrapper ul.footer-nav li {
    display: inline-block;
  }
}
.footer-nav-bar .footer-nav-wrapper ul.footer-nav li a {
  color: white;
  font-size: 0.9rem;
  padding: 0.5rem;
}
.footer-nav-bar .footer-nav-wrapper ul.footer-nav li:last-of-type {
  margin-right: 0;
}

/* Re-usable elements ---------------------------------------- */
.contact-widget {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 10;
  background: white;
  display: flex;
  align-items: center;
  color: #b3b3b3;
  transition: top 0.5s ease;
  box-shadow: 0px 0px 20px 2px hsla(0, 0%, 29%, 0.05);
}
@media only screen and (max-width: 1000px) {
  .contact-widget {
    display: none;
  }
}
.contact-widget:hover {
  color: rgb(180, 126, 0);
  text-decoration: none;
}
.contact-widget:hover svg {
  stroke: rgb(180, 126, 0);
}
.contact-widget > div {
  display: flex;
  align-items: center;
  padding: 0.5rem;
}
.contact-widget > div svg {
  width: 1.2rem;
  height: 1.1rem;
  stroke: gray;
}

section.item-list-wrapper {
  position: relative;
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f7f7f7;
}
@media only screen and (max-width: 768px) {
  section.item-list-wrapper {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  section.item-list-wrapper.alt-view .item-wrapper {
    flex-basis: calc(33% - 1rem);
    width: calc(33% - 1rem);
    margin-right: 1rem;
    flex-grow: 0;
  }
}
@media only screen and (max-width: 768px) {
  section.item-list-wrapper.alt-view .item-wrapper:nth-of-type(3n) {
    margin-right: 1rem;
  }
}
@media only screen and (max-width: 480px) {
  section.item-list-wrapper.alt-view .item-wrapper {
    flex-basis: calc(50% - 0.5rem);
    width: calc(50% - 0.5rem);
    margin-right: 1rem;
  }
}
@media only screen and (max-width: 480px) {
  section.item-list-wrapper.alt-view .item-wrapper:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  section.item-list-wrapper.alt-view .item-image-wrapper {
    flex-shrink: 0;
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  section.item-list-wrapper.alt-view .item-image-wrapper img {
    padding: 0.5rem;
  }
}
section.item-list-wrapper .filter-popup-wrapper {
  position: relative;
  flex: 1;
  width: 100%;
  max-width: 1200px;
  height: auto;
  background: #f2f2f2;
  z-index: 101;
  padding: 2rem;
  display: none;
  margin-top: -1px;
}
@media only screen and (max-width: 1000px) {
  section.item-list-wrapper .filter-popup-wrapper {
    flex-direction: column;
    padding: 1rem;
    top: 0;
    border-top: none;
  }
}
@media only screen and (max-width: 768px) {
  section.item-list-wrapper .filter-popup-wrapper {
    border: solid 1px #999999;
    border-top: none;
    flex-basis: auto;
  }
}
section.item-list-wrapper .filter-popup-wrapper.open {
  display: flex;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper {
  flex: 0;
}
@media only screen and (max-width: 768px) {
  section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button {
    margin-top: 0 !important;
  }
}
section.item-list-wrapper .filter-popup-wrapper .title-wrapper {
  display: flex;
}
@media only screen and (max-width: 768px) {
  section.item-list-wrapper .filter-popup-wrapper .title-wrapper {
    margin-bottom: 0;
    flex: 0;
    flex-basis: auto;
  }
}
section.item-list-wrapper .filter-popup-wrapper .title-wrapper h3 {
  margin-top: 0;
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  section.item-list-wrapper .filter-popup-wrapper .title-wrapper h3 {
    margin-bottom: 0;
    line-height: 2rem;
  }
}
section.item-list-wrapper .filter-popup-wrapper .title-wrapper .deselect-button {
  margin-top: auto;
  text-decoration: underline;
}
section.item-list-wrapper .filter-popup-wrapper .margin-right {
  margin-right: 2rem;
}
section.item-list-wrapper .filter-popup-wrapper .list-wrapper {
  max-height: 20rem;
  overflow-y: auto;
  padding-right: 2rem;
}
@media only screen and (max-width: 768px) {
  section.item-list-wrapper .filter-popup-wrapper .list-wrapper {
    margin-top: 1rem;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
section.item-list-wrapper .filter-popup-wrapper .list-wrapper .input-wrapper {
  position: relative;
  display: inline-block;
}
section.item-list-wrapper .filter-popup-wrapper .list-wrapper .input-wrapper input {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  width: 100%;
  border-radius: 10rem;
  background-color: white;
  color: black;
  font-size: inherit;
  -webkit-appearance: none;
  outline: none;
  border: none;
}
section.item-list-wrapper .filter-popup-wrapper .list-wrapper .input-wrapper::before {
  content: "⚲";
  transform: rotate(45deg);
  width: 1rem;
  height: 100%;
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  margin-left: 0.7rem;
  justify-content: center;
  font-size: 1.2rem;
  top: 0;
  color: inherit;
}
section.item-list-wrapper .filter-popup-wrapper .list-wrapper ul.search-items-list {
  margin-top: 0.5rem;
  height: auto;
}
@media only screen and (max-width: 768px) {
  section.item-list-wrapper .filter-popup-wrapper .list-wrapper ul.search-items-list {
    margin-top: 0;
  }
}
section.item-list-wrapper .filter-popup-wrapper .list-wrapper ul.search-items-list li {
  display: flex;
  align-items: center;
}
section.item-list-wrapper .filter-popup-wrapper .list-wrapper ul.search-items-list li.active .item-toggle {
  background-color: rgb(180, 126, 0);
}
section.item-list-wrapper .filter-popup-wrapper .list-wrapper ul.search-items-list li:hover {
  cursor: pointer;
}
section.item-list-wrapper .filter-popup-wrapper .list-wrapper ul.search-items-list li:hover .item-toggle {
  background-color: rgb(180, 126, 0);
}
section.item-list-wrapper .filter-popup-wrapper .list-wrapper ul.search-items-list li:hover .item-text {
  color: rgb(180, 126, 0);
}
section.item-list-wrapper .filter-popup-wrapper .list-wrapper ul.search-items-list li .item-toggle {
  flex-grow: 0;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  border: solid 1px gray;
  margin-right: 1rem;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button {
  margin-top: auto;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input {
  margin-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  align-items: center;
  display: flex;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 0;
  color: white;
  background: red;
  width: 100%;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input svg {
  stroke: white;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.xs {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.med {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.lrg {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.wide-m {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.padding-left-s {
  padding-left: 1rem;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.padding-left-m {
  padding-left: 2rem;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.padding-left-ml {
  padding-left: 3rem;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.padding-left-l {
  padding-left: 4rem;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.padding-right-s {
  padding-right: 1rem;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.padding-right-m {
  padding-right: 2rem;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.padding-right-ml {
  padding-right: 3rem;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.padding-right-l {
  padding-right: 4rem;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.pri {
  background-color: rgb(180, 126, 0);
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.pri:hover {
  background-color: #ce9000;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.sec {
  background-color: rgb(0, 0, 0);
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.sec:hover {
  background-color: #4d4d4d;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.pos {
  background-color: #6da583;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.pos:hover {
  background-color: #558a6a;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.ghost {
  background: transparent;
  border: solid 1px #cccccc;
  color: black;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.ghost:hover {
  border-color: rgb(180, 126, 0);
  color: rgb(180, 126, 0);
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.ghost.lit {
  border-color: white;
  color: white;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.ghost.lit:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.ghost.dar {
  border-color: black;
  color: black;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.ghost.dar:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
  color: white;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.text-link {
  background: none;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  color: black;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.text-link:hover {
  color: rgb(180, 126, 0);
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.center {
  text-align: center;
  justify-content: center;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.full-width {
  width: 100%;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.inline {
  display: inline-block;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.right {
  justify-content: flex-end;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.bold {
  font-weight: 500;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input .icon-wrapper {
  display: inline-flex;
  margin-right: 0.5rem;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.disabled {
  background-color: #999999;
  color: #4d4d4d;
  font-style: italic;
  cursor: initial;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input.disabled:hover {
  background-color: #999999;
  color: #4d4d4d;
}
section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 1200px) {
  section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input {
    width: 100%;
    margin-bottom: 1rem;
    margin-right: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.2rem;
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
  section.item-list-wrapper .filter-popup-wrapper .button-wrapper .submit-button input {
    font-size: 1rem;
  }
}
section.item-list-wrapper .content-wrapper.filter-area-wrapper {
  border-bottom: solid 1px #cccccc;
  margin-bottom: 2rem;
  padding-bottom: 3rem;
}
section.item-list-wrapper .filter-bar-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  border: none;
  border-bottom: none;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 768px) {
  section.item-list-wrapper .filter-bar-wrapper {
    flex-wrap: wrap;
  }
}
section.item-list-wrapper .filter-bar-wrapper:last-of-type {
  margin-bottom: 1rem;
}
section.item-list-wrapper .filter-bar-wrapper:nth-of-type(3) .filter-item-wrapper:last-of-type {
  min-width: calc(15rem + 1px);
}
section.item-list-wrapper .filter-bar-wrapper .filter-item-wrapper {
  display: flex;
  flex-direction: row;
  flex: 1;
  flex-grow: 0;
  position: relative;
  border-left: solid 1px #999999;
  border-right: solid 1px transparent;
  border-top: solid 1px #999999;
  border-bottom: solid 1px #999999;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  cursor: pointer;
  white-space: nowrap;
  z-index: 11;
  min-width: 15rem;
}
section.item-list-wrapper .filter-bar-wrapper .filter-item-wrapper.open {
  z-index: 101;
  background-color: rgb(180, 126, 0);
  color: white;
  border-right: solid 1px #999999;
  outline: solid 1px #f2f2f2;
  outline-offset: -1px;
}
@media only screen and (max-width: 768px) {
  section.item-list-wrapper .filter-bar-wrapper .filter-item-wrapper.open {
    outline: none;
  }
}
section.item-list-wrapper .filter-bar-wrapper .filter-item-wrapper.show-more {
  background-color: gray;
  color: white;
}
@media only screen and (max-width: 1200px) {
  section.item-list-wrapper .filter-bar-wrapper .filter-item-wrapper {
    min-width: initial;
  }
}
@media only screen and (max-width: 768px) {
  section.item-list-wrapper .filter-bar-wrapper .filter-item-wrapper {
    width: 100%;
    flex-basis: 100%;
    flex-grow: 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    font-size: 1rem;
    border-right: solid 1px #999999;
    border-bottom: none;
  }
  section.item-list-wrapper .filter-bar-wrapper .filter-item-wrapper:last-of-type {
    border-right: solid 1px #999999;
    border-bottom: solid 1px #999999;
  }
  section.item-list-wrapper .filter-bar-wrapper .filter-item-wrapper:nth-of-type(5) {
    border-right: solid 1px #999999;
  }
}
section.item-list-wrapper .filter-bar-wrapper .filter-item-wrapper:first-of-type.open {
  border-left: solid 1px #999999;
}
section.item-list-wrapper .filter-bar-wrapper .filter-item-wrapper:hover {
  background-color: rgb(180, 126, 0);
  color: white;
}
section.item-list-wrapper .filter-bar-wrapper .filter-item-wrapper:last-of-type {
  border-right: solid 1px #999999;
}
section.item-list-wrapper .filter-bar-wrapper .filter-item-wrapper .filter-item-text {
  flex: 1;
  font-weight: 500;
  white-space: nowrap;
  margin-right: 0.5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 0.9rem;
}
@media only screen and (max-width: 1200px) {
  section.item-list-wrapper .filter-bar-wrapper .filter-item-wrapper .filter-item-text {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  section.item-list-wrapper .filter-bar-wrapper .filter-item-wrapper .filter-item-text {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  section.item-list-wrapper .filter-bar-wrapper .filter-item-wrapper .filter-item-text {
    font-size: 1rem;
  }
}
section.item-list-wrapper .filter-bar-wrapper .filter-item-wrapper .filter-item-icon {
  margin-left: auto;
  margin-right: 0.3rem;
  font-size: 1.2rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
section.item-list-wrapper .filter-bar-wrapper .filter-item-wrapper .filter-item-icon.arrow {
  transform: rotate(90deg);
  font-weight: 500;
}
section.item-list-wrapper .filter-bar-wrapper .filter-item-wrapper .filter-item-icon.plus {
  font-family: arial;
  font-weight: 500;
}
section.item-list-wrapper .filter-bar-wrapper.extra-row .filter-item-wrapper {
  border-top: none;
}
@media only screen and (max-width: 1000px) {
  section.item-list-wrapper .filter-bar-wrapper.extra-row .filter-item-wrapper {
    border-bottom: solid 1px #999999;
  }
}
section.item-list-wrapper .filter-bar-wrapper.extra-row .filter-item-wrapper:last-child {
  border-right: solid 1px #999999;
}
section.item-list-wrapper .contact-cta-wrapper {
  z-index: 3;
}
section.item-list-wrapper .contact-cta-wrapper .contact-cta-container {
  position: sticky;
  right: 3rem;
  top: 20px;
  width: auto;
  height: auto;
  background: rgb(0, 0, 0);
  color: white;
  border-radius: 20px;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
section.item-list-wrapper .content-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex: 1;
  flex-basis: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1200px) {
  section.item-list-wrapper .content-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  section.item-list-wrapper .content-wrapper {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1000px) {
  section.item-list-wrapper .content-wrapper.mobile-row {
    flex-direction: row;
  }
}
@media only screen and (max-width: 1000px) {
  section.item-list-wrapper .content-wrapper.mobile-column {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1000px) {
  section.item-list-wrapper .content-wrapper {
    flex-direction: row;
  }
}
section.item-list-wrapper ul.brands-list {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 3rem;
  line-height: 1.5rem;
}
@media only screen and (max-width: 768px) {
  section.item-list-wrapper ul.brands-list {
    margin-top: 1rem;
    margin-bottom: 3rem;
  }
}
section.item-list-wrapper ul.brands-list li {
  display: inline;
}
section.item-list-wrapper ul.brands-list li a {
  text-decoration: none !important;
  color: rgba(0, 0, 0, 0.5);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
@media only screen and (max-width: 768px) {
  section.item-list-wrapper ul.brands-list li a {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 480px) {
  section.item-list-wrapper ul.brands-list li a {
    font-size: 1rem;
  }
}
section.item-list-wrapper ul.brands-list li a:after {
  content: "›";
  margin-left: 0.3rem;
  margin-right: 1.5rem;
}
@media only screen and (max-width: 768px) {
  section.item-list-wrapper ul.brands-list li a:after {
    margin-left: 0.3rem;
    margin-right: 0.5rem;
  }
}
section.item-list-wrapper ul.brands-list li a:hover {
  color: rgb(180, 126, 0);
}
section.item-list-wrapper ul.brands-list li.highlight a {
  color: rgb(180, 126, 0);
}
section.item-list-wrapper ul.brands-list li.highlight:hover a {
  color: #815a00;
}
section.item-list-wrapper .title-wrapper {
  text-align: center;
  justify-content: center;
}
section.item-list-wrapper .title-wrapper h3 {
  font-size: 1.8rem;
  line-height: 1.8rem;
  margin-bottom: 3rem;
}

.item-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1 0 calc(25% - 0.75rem);
  width: calc(25% - 0.75rem);
  flex-grow: 0;
  margin-right: 1rem;
  margin-bottom: 3rem;
  justify-content: center;
  position: relative;
  justify-content: flex-start;
  text-align: center;
  flex-grow: 0;
  flex-shrink: 0;
}
@media only screen and (min-width: 1000px) {
  .item-wrapper:nth-of-type(4n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 1000px) {
  .item-wrapper {
    flex: 1 0 calc(33.333% - 1rem);
    width: calc(33.333% - 1rem);
    margin-right: 1.5rem;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .item-wrapper:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .item-wrapper {
    flex: 1 0 100%;
    width: 100%;
    margin-right: 0;
  }
  .item-wrapper:nth-of-type(3n) {
    margin-right: 1rem;
  }
  .item-wrapper:nth-of-type(4n) {
    margin-right: 1rem;
  }
  .item-wrapper:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 320px) {
  .item-wrapper {
    flex: 1 0 100%;
    width: 100%;
    margin-right: 0;
  }
}
.item-wrapper:link {
  text-decoration: none;
  color: inherit;
}
.item-wrapper .item-text-one {
  display: flex;
  flex: 1;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  text-align: center;
  font-weight: 500;
  justify-content: center;
  text-transform: uppercase;
  flex-basis: auto;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .item-wrapper .item-text-one {
    line-height: 1.2rem;
  }
}
.item-wrapper .item-text-two {
  display: flex;
  flex: 2;
  margin-bottom: 0.5rem;
  text-align: center;
  line-height: 1.4rem;
  justify-content: center;
  flex-basis: inherit;
  font-weight: 300;
}
@media only screen and (max-width: 768px) {
  .item-wrapper .item-text-two {
    flex-basis: auto;
    flex-shrink: 0;
    line-height: 1.2rem;
  }
}
@media only screen and (max-width: 480px) {
  .item-wrapper .item-text-two {
    font-size: 0.9rem;
  }
}
.item-wrapper .item-price {
  display: flex;
  align-items: center;
}
.item-wrapper .item-price .line-left {
  flex: 1;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
}
.item-wrapper .item-price .line-right {
  flex: 1;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
}
.item-wrapper .item-price span {
  padding-left: 1rem;
  padding-right: 1rem;
  flex-shrink: 0;
}
.item-wrapper .item-image-wrapper {
  position: relative;
  overflow: hidden;
  background-color: white;
  flex-basis: 100%;
  max-height: 18rem;
  min-height: 18rem;
  height: 100%;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .item-wrapper .item-image-wrapper {
    flex-basis: auto;
    flex-shrink: 1;
    max-height: none;
    min-height: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .item-wrapper .item-image-wrapper {
    flex-basis: auto;
  }
}
.item-wrapper .item-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
  padding: 1rem;
}
@media only screen and (max-width: 768px) {
  .item-wrapper .item-image-wrapper img {
    padding: 0.5rem;
  }
}
.item-wrapper .item-image-wrapper .item-favorite {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: auto;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.5s ease;
}
.item-wrapper .item-image-wrapper .item-favorite.small {
  top: 0.2rem;
  right: 0.2rem;
  padding: 0.3rem;
  width: 1.6rem;
  height: 1.6rem;
}
.item-wrapper .item-image-wrapper .item-favorite.medium {
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.3rem;
  width: 2rem;
  height: 2rem;
}
@media only screen and (max-width: 768px) {
  .item-wrapper .item-image-wrapper .item-favorite {
    width: 2.5rem;
    height: 2.5rem;
    margin-top: 0.5rem;
    margin-right: 0.5rem;
  }
  .item-wrapper .item-image-wrapper .item-favorite svg {
    width: 100%;
    height: 100%;
  }
}
.item-wrapper .item-image-wrapper .item-favorite svg {
  stroke: #cccccc;
  fill: white;
  transition: fill, stroke 0.3s ease;
}
.item-wrapper .item-image-wrapper .item-favorite:hover {
  transform: scale(1.2, 1.2);
}
.item-wrapper .item-image-wrapper .item-favorite:hover svg {
  stroke: none;
  fill: #ff6969;
}
.item-wrapper .item-image-wrapper .item-favorite.active svg {
  stroke: #ff6969;
  fill: #ff6969;
}
.item-wrapper .item-image-wrapper .item-favorite.active:hover svg {
  stroke: #ff9c9c;
  fill: #ff9c9c;
}
@media only screen and (max-width: 768px) {
  .item-wrapper .item-image-wrapper .item-favorite {
    width: 2.5rem !important;
    height: 2.5rem !important;
  }
}
@media only screen and (max-width: 768px) {
  .item-wrapper .item-image-wrapper .item-favorite svg path {
    stroke-width: 1;
  }
}
.item-wrapper .item-image-wrapper .item-label {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  color: white;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 480px) {
  .item-wrapper .item-image-wrapper .item-label {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
    font-size: 0.9rem;
  }
}
.item-wrapper .item-image-wrapper .item-label.reserved {
  background-color: #9ABAD2;
}
.item-wrapper .item-image-wrapper .item-label.reserved span {
  color: white;
}
.item-wrapper .item-image-wrapper .item-label.popular {
  background-color: #4D6046;
}
.item-wrapper .item-image-wrapper .item-label.popular span {
  color: white;
}
.item-wrapper .item-image-wrapper .item-label.rare {
  background-color: #597A86;
}
.item-wrapper .item-image-wrapper .item-label.rare span {
  color: white;
}
.item-wrapper .item-image-wrapper .item-label.new {
  background-color: rgb(180, 126, 0);
}
.item-wrapper .item-image-wrapper .item-label.new span {
  color: white;
}
.item-wrapper .item-image-wrapper .item-label.sold {
  background-color: #bf2d2d;
}
.item-wrapper .item-image-wrapper .item-label.sold span {
  color: white;
}
.item-wrapper:hover .item-text-one {
  color: rgb(180, 126, 0);
}
.item-wrapper:hover .item-text-two {
  color: rgb(180, 126, 0);
}
.item-wrapper:hover .item-price {
  color: rgb(180, 126, 0);
}
.item-wrapper:hover .item-price .line-left {
  background-color: rgb(180, 126, 0);
}
.item-wrapper:hover .item-price .line-right {
  background-color: rgb(180, 126, 0);
}
.item-wrapper.text-block {
  text-decoration: none;
  position: relative;
}
.item-wrapper.text-block .banner-text {
  text-align: left;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  color: rgb(180, 126, 0);
  position: absolute;
  padding: 1rem;
  text-transform: uppercase;
  font-weight: 300;
}
@media only screen and (max-width: 768px) {
  .item-wrapper.text-block .banner-text {
    font-size: 1.8rem;
  }
}
.item-wrapper.text-block .item-image-wrapper {
  transition: background 0.3s ease;
}
.item-wrapper.text-block .item-image-wrapper.white {
  background-color: white;
}
.item-wrapper.text-block .item-image-wrapper.black {
  background-color: black;
}
.item-wrapper.text-block .item-price .price-text {
  width: 0;
  visibility: none;
}
.item-wrapper.text-block:hover .item-image-wrapper .banner-text {
  color: white;
}

.item-grid-title-bar {
  display: flex;
  width: 100%;
  margin-bottom: 2rem;
  align-items: center;
}
.item-grid-title-bar h2 {
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 300;
}
@media only screen and (max-width: 768px) {
  .item-grid-title-bar h2 {
    display: none;
  }
}
.item-grid-title-bar h2 em {
  font-style: normal;
  font-weight: 400;
}
.item-grid-title-bar .layout-toggle-wrapper {
  display: none;
  align-items: center;
  color: #b3b3b3;
}
@media only screen and (max-width: 768px) {
  .item-grid-title-bar .layout-toggle-wrapper {
    display: flex;
  }
}
.item-grid-title-bar .layout-toggle-wrapper a {
  display: flex;
  padding: 0.3rem;
  margin-right: 0.3rem;
}
.item-grid-title-bar .layout-toggle-wrapper a svg {
  fill: #b3b3b3;
  height: 1.2rem;
  max-width: 1.3rem;
}
.item-grid-title-bar .layout-toggle-wrapper a:first-of-type {
  padding-left: 0;
}
.item-grid-title-bar .layout-toggle-wrapper a:last-of-type {
  margin-left: 0.3rem;
}
.item-grid-title-bar .layout-toggle-wrapper a.active svg {
  fill: rgb(0, 0, 0);
}
.item-grid-title-bar .layout-toggle-wrapper a:hover svg {
  fill: rgb(180, 126, 0);
}
.item-grid-title-bar .filter-wrapper {
  display: flex;
  position: relative;
  margin-left: auto;
  height: auto;
  white-space: nowrap;
  align-items: baseline;
}
.item-grid-title-bar .filter-wrapper select {
  font-size: inherit;
  color: inherit;
  padding-left: 0.7rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  z-index: 2;
}
.item-grid-title-bar .filter-wrapper select option {
  padding: 1rem;
}
.item-grid-title-bar .filter-wrapper select::-ms-expand {
  display: none;
  height: 0;
  width: 0;
}
.item-grid-title-bar .filter-wrapper .select-arrow {
  transform: rotate(90deg);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  right: 0.2rem;
  top: 0;
  height: 100%;
  font-size: 1.3rem;
  z-index: 1;
}

.star-rating-wrapper svg {
  cursor: default;
  width: 1.4rem;
  height: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .star-rating-wrapper svg {
    width: 1.1rem;
    height: 1.1rem;
  }
}
.star-rating-wrapper svg.filled {
  fill: rgb(180, 126, 0);
}
.star-rating-wrapper svg.half-filled {
  padding: 2.1px;
}
.star-rating-wrapper svg.empty {
  fill: #e6e6e6;
}

.popup-background {
  background: gray;
  opacity: 0.8;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 101;
  display: none;
}
.popup-background.open {
  display: block;
}

.popup-wrapper {
  position: fixed;
  top: 10%;
  background: white;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  display: none;
  flex-direction: row;
  height: auto;
  min-width: 20rem;
  max-width: 55vw;
  z-index: 102;
}
@media only screen and (max-width: 1200px) {
  .popup-wrapper {
    max-width: 75vw;
  }
}
@media only screen and (max-width: 1000px) {
  .popup-wrapper {
    max-width: 85vw;
  }
}
@media only screen and (max-width: 768px) {
  .popup-wrapper {
    max-width: 95vw;
    flex-direction: column;
    top: 2%;
  }
}
.popup-wrapper.open {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .popup-wrapper.open {
    overflow: scroll;
    height: 100%;
  }
}
.popup-wrapper.cookie {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  color: black;
  bottom: auto;
  max-width: 35vw;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media only screen and (max-width: 1500px) {
  .popup-wrapper.cookie {
    max-width: 40vw;
  }
}
@media only screen and (max-width: 1500px) {
  .popup-wrapper.cookie {
    max-width: 60vw;
  }
}
@media only screen and (max-width: 1200px) {
  .popup-wrapper.cookie {
    max-width: 80vw;
  }
}
@media only screen and (max-width: 768px) {
  .popup-wrapper.cookie {
    max-width: 92vw;
    top: 5vh;
    position: absolute;
  }
}
.popup-wrapper.cookie h3 {
  margin-top: 0;
}
.popup-wrapper.cookie .content-wrapper {
  background: transparent;
  padding-top: 0;
  padding-bottom: 0;
}
.popup-wrapper.cookie .content-wrapper > p {
  font-size: 0.9rem;
  line-height: 1.3rem;
}
@media only screen and (max-width: 768px) {
  .popup-wrapper.cookie .content-wrapper > p {
    line-height: 1.2rem;
  }
}
.popup-wrapper.cookie .details-foldout-wrapper {
  display: none;
  flex-direction: column;
}
.popup-wrapper.cookie .details-foldout-wrapper.active {
  display: flex;
}
.popup-wrapper.cookie .button-wrapper {
  display: flex;
  justify-content: flex-end;
}
.popup-wrapper.cookie .button-wrapper .cta-button {
  margin-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  align-items: center;
  display: flex;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 0;
  color: white;
  background: red;
}
.popup-wrapper.cookie .button-wrapper .cta-button svg {
  stroke: white;
}
.popup-wrapper.cookie .button-wrapper .cta-button.xs {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.popup-wrapper.cookie .button-wrapper .cta-button.med {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.popup-wrapper.cookie .button-wrapper .cta-button.lrg {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.popup-wrapper.cookie .button-wrapper .cta-button.wide-m {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.popup-wrapper.cookie .button-wrapper .cta-button.padding-left-s {
  padding-left: 1rem;
}
.popup-wrapper.cookie .button-wrapper .cta-button.padding-left-m {
  padding-left: 2rem;
}
.popup-wrapper.cookie .button-wrapper .cta-button.padding-left-ml {
  padding-left: 3rem;
}
.popup-wrapper.cookie .button-wrapper .cta-button.padding-left-l {
  padding-left: 4rem;
}
.popup-wrapper.cookie .button-wrapper .cta-button.padding-right-s {
  padding-right: 1rem;
}
.popup-wrapper.cookie .button-wrapper .cta-button.padding-right-m {
  padding-right: 2rem;
}
.popup-wrapper.cookie .button-wrapper .cta-button.padding-right-ml {
  padding-right: 3rem;
}
.popup-wrapper.cookie .button-wrapper .cta-button.padding-right-l {
  padding-right: 4rem;
}
.popup-wrapper.cookie .button-wrapper .cta-button.pri {
  background-color: rgb(180, 126, 0);
}
.popup-wrapper.cookie .button-wrapper .cta-button.pri:hover {
  background-color: #ce9000;
}
.popup-wrapper.cookie .button-wrapper .cta-button.sec {
  background-color: rgb(0, 0, 0);
}
.popup-wrapper.cookie .button-wrapper .cta-button.sec:hover {
  background-color: #4d4d4d;
}
.popup-wrapper.cookie .button-wrapper .cta-button.pos {
  background-color: #6da583;
}
.popup-wrapper.cookie .button-wrapper .cta-button.pos:hover {
  background-color: #558a6a;
}
.popup-wrapper.cookie .button-wrapper .cta-button.ghost {
  background: transparent;
  border: solid 1px #cccccc;
  color: black;
}
.popup-wrapper.cookie .button-wrapper .cta-button.ghost:hover {
  border-color: rgb(180, 126, 0);
  color: rgb(180, 126, 0);
}
.popup-wrapper.cookie .button-wrapper .cta-button.ghost.lit {
  border-color: white;
  color: white;
}
.popup-wrapper.cookie .button-wrapper .cta-button.ghost.lit:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
}
.popup-wrapper.cookie .button-wrapper .cta-button.ghost.dar {
  border-color: black;
  color: black;
}
.popup-wrapper.cookie .button-wrapper .cta-button.ghost.dar:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
  color: white;
}
.popup-wrapper.cookie .button-wrapper .cta-button.text-link {
  background: none;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  color: black;
}
.popup-wrapper.cookie .button-wrapper .cta-button.text-link:hover {
  color: rgb(180, 126, 0);
}
.popup-wrapper.cookie .button-wrapper .cta-button.center {
  text-align: center;
  justify-content: center;
}
.popup-wrapper.cookie .button-wrapper .cta-button.full-width {
  width: 100%;
}
.popup-wrapper.cookie .button-wrapper .cta-button.inline {
  display: inline-block;
}
.popup-wrapper.cookie .button-wrapper .cta-button.right {
  justify-content: flex-end;
}
.popup-wrapper.cookie .button-wrapper .cta-button.bold {
  font-weight: 500;
}
.popup-wrapper.cookie .button-wrapper .cta-button .icon-wrapper {
  display: inline-flex;
  margin-right: 0.5rem;
}
.popup-wrapper.cookie .button-wrapper .cta-button.disabled {
  background-color: #999999;
  color: #4d4d4d;
  font-style: italic;
  cursor: initial;
}
.popup-wrapper.cookie .button-wrapper .cta-button.disabled:hover {
  background-color: #999999;
  color: #4d4d4d;
}
.popup-wrapper.cookie .button-wrapper .cta-button:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 1200px) {
  .popup-wrapper.cookie .button-wrapper .cta-button {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  .popup-wrapper.cookie .button-wrapper .cta-button {
    width: 100%;
    margin-bottom: 1rem;
    margin-right: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.2rem;
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
  .popup-wrapper.cookie .button-wrapper .cta-button {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .popup-wrapper.cookie .button-wrapper .cta-button {
    margin-bottom: 0;
    margin-right: 0.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .popup-wrapper.cookie .button-wrapper .cta-button:last-of-type {
    margin-right: 0;
  }
}
.popup-wrapper.cookie .tabs-wrapper {
  margin-top: 1rem;
}
.popup-wrapper.cookie .tabs-wrapper a {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-decoration: none;
  border: solid 1px #cccccc;
  border-bottom: none;
  display: inline-flex;
}
@media only screen and (max-width: 480px) {
  .popup-wrapper.cookie .tabs-wrapper a {
    font-size: 0.9rem;
  }
}
.popup-wrapper.cookie .tabs-wrapper a.active {
  border: none;
  background: rgb(180, 126, 0);
  color: white;
  border-color: rgb(180, 126, 0);
}
.popup-wrapper.cookie .tabs-wrapper a.active:hover {
  background-color: #ce9000;
}
.popup-wrapper.cookie .content-block-wrapper {
  display: none;
  margin-top: -1px;
  border: solid 1px #cccccc;
  height: 100%;
  flex-direction: row;
}
.popup-wrapper.cookie .content-block-wrapper.active {
  display: flex;
}
.popup-wrapper.cookie .cookie-options-wrapper {
  flex-direction: row;
}
@media only screen and (max-width: 1000px) {
  .popup-wrapper.cookie .cookie-options-wrapper {
    flex-direction: column;
  }
}
.popup-wrapper.cookie .cookie-options-wrapper .content-block {
  padding-top: 0.3rem;
  max-height: 9rem;
  overflow-y: auto;
  flex-direction: column;
  font-size: 0.9rem;
  line-height: 1.3rem;
}
@media only screen and (max-width: 1366px) {
  .popup-wrapper.cookie .cookie-options-wrapper .content-block {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.popup-wrapper.cookie .cookie-options-wrapper .content-block > div {
  display: none;
  flex-direction: column;
}
.popup-wrapper.cookie .cookie-options-wrapper .content-block > div h2 {
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
}
.popup-wrapper.cookie .cookie-options-wrapper .content-block > div p {
  margin-top: 0.2rem;
  line-height: 1.3rem;
}
.popup-wrapper.cookie .cookie-options-wrapper .content-block > div p a {
  text-decoration: underline;
}
.popup-wrapper.cookie .cookie-options-wrapper .content-block > div.active {
  display: flex;
}
.popup-wrapper.cookie .cookie-options-wrapper .cookie-types-wrapper {
  margin-right: 1rem;
  width: auto;
}
@media only screen and (max-width: 768px) {
  .popup-wrapper.cookie .cookie-options-wrapper .cookie-types-wrapper {
    margin-right: 0;
    font-size: 0.9rem;
  }
}
.popup-wrapper.cookie .cookie-options-wrapper .cookie-types-wrapper .input-wrapper {
  margin-bottom: 0;
}
.popup-wrapper.cookie .cookie-options-wrapper .cookie-types-wrapper .input-wrapper label {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .popup-wrapper.cookie .cookie-options-wrapper .cookie-types-wrapper .cookie-type-wrapper {
    padding-left: 0.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .popup-wrapper.cookie .cookie-options-wrapper .cookie-types-wrapper .cookie-type-wrapper label {
    margin-right: 0;
  }
}
.popup-wrapper.cookie .cookie-options-wrapper .cookie-types-wrapper .cookie-type-wrapper.disabled label {
  font-weight: bold;
}
.popup-wrapper.cookie .cookie-options-wrapper .cookie-types-wrapper .cookie-type-wrapper:hover {
  background: #e6e6e6;
}
.popup-wrapper.cookie .cookie-options-wrapper .cookie-types-wrapper .cookie-type-wrapper.active {
  background: #e6e6e6;
}
.popup-wrapper.cookie .cookie-options-wrapper .cookie-types-wrapper .cookie-type-wrapper input[type=checkbox] {
  flex-shrink: 0;
  cursor: pointer;
}
.popup-wrapper.cookie .cookie-text-wrapper {
  max-height: 9rem;
  height: 100%;
  overflow-y: auto;
}
@media only screen and (max-width: 768px) {
  .popup-wrapper.cookie .cookie-text-wrapper {
    max-height: none;
  }
}
.popup-wrapper.cookie .cookie-text-wrapper .content-block {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.3rem;
}
.popup-wrapper.cookie .cookie-text-wrapper .content-block p {
  line-height: 1.3rem;
}
.popup-wrapper.cookie .cookie-text-wrapper h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
}
.popup-wrapper .popup-close {
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  cursor: pointer;
  z-index: 57;
}
.popup-wrapper .popup-close svg {
  width: 1.2rem;
  stroke: black;
}
.popup-wrapper .popup-close:hover svg {
  stroke: rgb(180, 126, 0);
}
.popup-wrapper .content-wrapper {
  padding: 2rem;
  background-color: #e6e6e6;
  z-index: 55;
}
@media only screen and (max-width: 768px) {
  .popup-wrapper .content-wrapper {
    padding: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.popup-wrapper .sidebar-wrapper {
  padding: 2rem;
  z-index: 51;
}
@media only screen and (max-width: 768px) {
  .popup-wrapper .sidebar-wrapper {
    padding: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .popup-wrapper .sidebar-wrapper > .flex {
    display: inline-block;
  }
}
.popup-wrapper.finder .content-wrapper {
  flex: 1;
}
.popup-wrapper.finder .content-wrapper h3 {
  margin-top: 0;
  margin-bottom: 0;
}
.popup-wrapper.finder .content-wrapper > p {
  margin-top: 0.3rem;
}
.popup-wrapper.finder .content-wrapper .product-wrapper {
  margin-top: 3rem;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .popup-wrapper.finder .content-wrapper .product-wrapper {
    margin-top: 1rem;
  }
}
.popup-wrapper.finder .content-wrapper .product-wrapper .product-image-wrapper {
  flex: 1;
  flex-basis: 5rem;
  flex-shrink: 0;
  margin-right: 2rem;
}
.popup-wrapper.finder .content-wrapper .product-wrapper .product-image-wrapper img {
  width: 100%;
}
.popup-wrapper.finder .content-wrapper .product-wrapper .product-description-wrapper {
  flex: 2;
}
.popup-wrapper.finder .content-wrapper .product-wrapper .product-description-wrapper .product-brand {
  margin-top: 0;
  margin-bottom: 0;
  text-transform: uppercase;
}
.popup-wrapper.finder .content-wrapper .product-wrapper .product-description-wrapper .product-name {
  margin-top: 0;
}
.popup-wrapper.finder .content-wrapper .product-wrapper .product-description-wrapper .product-status-label {
  margin-bottom: 0;
}
.popup-wrapper.finder .content-wrapper .product-wrapper .product-description-wrapper .product-status-text {
  margin-top: 0;
  color: red;
}
.popup-wrapper.finder .content-wrapper .text-wrapper {
  color: #cc0000;
}
.popup-wrapper.finder .sidebar-wrapper {
  display: flex;
  flex: 1;
  flex-direction: column;
  background-color: white;
  margin-top: 0;
}
@media only screen and (max-width: 768px) {
  .popup-wrapper.finder .sidebar-wrapper p {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.popup-wrapper.finder .sidebar-wrapper h4 {
  margin-top: 0;
}
.popup-wrapper.finder .sidebar-wrapper .button-wrapper {
  display: flex;
  align-items: flex-end;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 1000px) {
  .popup-wrapper.finder .sidebar-wrapper .input-wrapper {
    flex-direction: column;
    width: 100%;
    margin-bottom: 0.2rem;
    flex-basis: auto;
  }
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper label {
  flex: 1;
  width: 100%;
  cursor: pointer;
  margin-right: 0.3rem;
}
@media only screen and (max-width: 1000px) {
  .popup-wrapper.finder .sidebar-wrapper .input-wrapper label {
    margin-top: 0.5rem;
  }
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper .select-wrapper {
  display: flex;
  flex: 2;
  align-self: flex-start;
  width: 100%;
  position: relative;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper .select-wrapper select {
  width: 100%;
  height: auto;
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border: none;
  border-bottom: solid 1px #cccccc;
  border-radius: 0;
  webkit-appearance: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media only screen and (max-width: 1000px) {
  .popup-wrapper.finder .sidebar-wrapper .input-wrapper .select-wrapper select {
    margin-bottom: 1rem;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    flex-basis: auto;
    align-self: flex-start;
  }
}
@media only screen and (max-width: 480px) {
  .popup-wrapper.finder .sidebar-wrapper .input-wrapper .select-wrapper select {
    margin-bottom: 0.5rem;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper .select-wrapper select:focus, .popup-wrapper.finder .sidebar-wrapper .input-wrapper .select-wrapper select:hover {
  border-color: rgb(180, 126, 0);
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper .select-wrapper select option {
  padding-left: 0;
  text-indent: 10px;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper .select-wrapper:after {
  position: absolute;
  content: "›";
  height: 100%;
  width: 1rem;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  z-index: 2;
  font-size: 1.4rem;
  pointer-events: none;
  transform: rotate(90deg);
  color: #cccccc;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper .select-wrapper:after:hover {
  color: rgb(180, 126, 0);
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper .select-wrapper:hover select {
  color: black;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=text],
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=tel],
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=email] {
  flex: 2;
  align-self: flex-start;
  width: 100%;
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border: none;
  border-radius: 0;
  border-bottom: solid 1px #cccccc;
}
@media only screen and (max-width: 1000px) {
  .popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=text],
  .popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=tel],
  .popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=email] {
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 480px) {
  .popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=text],
  .popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=tel],
  .popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=email] {
    margin-bottom: 0.5rem;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=text]:-webkit-autofill,
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=tel]:-webkit-autofill,
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=email]:-webkit-autofill {
  background-color: rgb(180, 126, 0);
  color: white;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=text]:focus, .popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=text]:hover,
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=tel]:focus,
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=tel]:hover,
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=email]:focus,
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=email]:hover {
  border-color: rgb(180, 126, 0);
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit] {
  margin-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  align-items: center;
  display: flex;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 0;
  color: white;
  background: red;
  flex: 2;
  margin-top: 1rem;
  text-align: center;
  margin-left: auto;
  width: 100%;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit] svg {
  stroke: white;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].xs {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].med {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].lrg {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].wide-m {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].padding-left-s {
  padding-left: 1rem;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].padding-left-m {
  padding-left: 2rem;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].padding-left-ml {
  padding-left: 3rem;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].padding-left-l {
  padding-left: 4rem;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].padding-right-s {
  padding-right: 1rem;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].padding-right-m {
  padding-right: 2rem;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].padding-right-ml {
  padding-right: 3rem;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].padding-right-l {
  padding-right: 4rem;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].pri {
  background-color: rgb(180, 126, 0);
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].pri:hover {
  background-color: #ce9000;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].sec {
  background-color: rgb(0, 0, 0);
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].sec:hover {
  background-color: #4d4d4d;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].pos {
  background-color: #6da583;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].pos:hover {
  background-color: #558a6a;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].ghost {
  background: transparent;
  border: solid 1px #cccccc;
  color: black;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].ghost:hover {
  border-color: rgb(180, 126, 0);
  color: rgb(180, 126, 0);
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].ghost.lit {
  border-color: white;
  color: white;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].ghost.lit:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].ghost.dar {
  border-color: black;
  color: black;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].ghost.dar:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
  color: white;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].text-link {
  background: none;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  color: black;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].text-link:hover {
  color: rgb(180, 126, 0);
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].center {
  text-align: center;
  justify-content: center;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].full-width {
  width: 100%;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].inline {
  display: inline-block;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].right {
  justify-content: flex-end;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].bold {
  font-weight: 500;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit] .icon-wrapper {
  display: inline-flex;
  margin-right: 0.5rem;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].disabled {
  background-color: #999999;
  color: #4d4d4d;
  font-style: italic;
  cursor: initial;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit].disabled:hover {
  background-color: #999999;
  color: #4d4d4d;
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit]:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 1200px) {
  .popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit] {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  .popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit] {
    width: 100%;
    margin-bottom: 1rem;
    margin-right: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.2rem;
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
  .popup-wrapper.finder .sidebar-wrapper .input-wrapper input[type=submit] {
    font-size: 1rem;
  }
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper:hover .select-wrapper select {
  border-color: rgb(180, 126, 0);
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper:hover .select-wrapper:after {
  color: rgb(180, 126, 0);
}
.popup-wrapper.finder .sidebar-wrapper .input-wrapper .align-right {
  margin-left: auto;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit] {
  margin-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  align-items: center;
  display: flex;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 0;
  color: white;
  background: red;
  margin-top: 1rem;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit] svg {
  stroke: white;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].xs {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].med {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].lrg {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].wide-m {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].padding-left-s {
  padding-left: 1rem;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].padding-left-m {
  padding-left: 2rem;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].padding-left-ml {
  padding-left: 3rem;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].padding-left-l {
  padding-left: 4rem;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].padding-right-s {
  padding-right: 1rem;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].padding-right-m {
  padding-right: 2rem;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].padding-right-ml {
  padding-right: 3rem;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].padding-right-l {
  padding-right: 4rem;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].pri {
  background-color: rgb(180, 126, 0);
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].pri:hover {
  background-color: #ce9000;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].sec {
  background-color: rgb(0, 0, 0);
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].sec:hover {
  background-color: #4d4d4d;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].pos {
  background-color: #6da583;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].pos:hover {
  background-color: #558a6a;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].ghost {
  background: transparent;
  border: solid 1px #cccccc;
  color: black;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].ghost:hover {
  border-color: rgb(180, 126, 0);
  color: rgb(180, 126, 0);
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].ghost.lit {
  border-color: white;
  color: white;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].ghost.lit:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].ghost.dar {
  border-color: black;
  color: black;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].ghost.dar:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
  color: white;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].text-link {
  background: none;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  color: black;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].text-link:hover {
  color: rgb(180, 126, 0);
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].center {
  text-align: center;
  justify-content: center;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].full-width {
  width: 100%;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].inline {
  display: inline-block;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].right {
  justify-content: flex-end;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].bold {
  font-weight: 500;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit] .icon-wrapper {
  display: inline-flex;
  margin-right: 0.5rem;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].disabled {
  background-color: #999999;
  color: #4d4d4d;
  font-style: italic;
  cursor: initial;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit].disabled:hover {
  background-color: #999999;
  color: #4d4d4d;
}
.popup-wrapper.finder .sidebar-wrapper input[type=submit]:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 1200px) {
  .popup-wrapper.finder .sidebar-wrapper input[type=submit] {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  .popup-wrapper.finder .sidebar-wrapper input[type=submit] {
    width: 100%;
    margin-bottom: 1rem;
    margin-right: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.2rem;
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
  .popup-wrapper.finder .sidebar-wrapper input[type=submit] {
    font-size: 1rem;
  }
}

.search-overlay-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("../jpg/background-search-rolex.jpg");
  background-repeat: no-repeat;
  background-color: black;
  z-index: 9999;
  position: absolute;
  display: none;
}
.search-overlay-wrapper.open {
  display: flex;
}
.search-overlay-wrapper:before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: " ";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 56;
}
.search-overlay-wrapper .search-close {
  position: absolute;
  right: 2rem;
  top: 1rem;
  font-size: 3rem;
  cursor: pointer;
  z-index: 60;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .search-overlay-wrapper .search-close {
    right: 1rem;
  }
}
.search-overlay-wrapper .search-close svg {
  stroke: white;
  width: 2.2rem;
  height: 3.2rem;
}
.search-overlay-wrapper .search-close .search-close-text {
  font-size: 0.9rem;
}
.search-overlay-wrapper .search-close:hover {
  color: rgb(180, 126, 0);
}
.search-overlay-wrapper .search-close:hover svg {
  stroke: rgb(180, 126, 0);
}
.search-overlay-wrapper .search-content-wrapper {
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  z-index: 58;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .search-overlay-wrapper .search-content-wrapper {
    overflow-y: auto;
  }
}
.search-overlay-wrapper .search-content-wrapper .logo-wrapper {
  position: absolute;
  top: 2rem;
}
@media only screen and (max-width: 768px) {
  .search-overlay-wrapper .search-content-wrapper .logo-wrapper {
    display: none;
  }
}
.search-overlay-wrapper .search-content-wrapper .logo-wrapper .header-color {
  fill: white;
}
.search-overlay-wrapper .search-content-wrapper .search-form-wrapper {
  width: 100%;
  margin-top: 25vh;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .search-overlay-wrapper .search-content-wrapper .search-form-wrapper {
    margin-top: 5vh;
  }
}
.search-overlay-wrapper .search-content-wrapper .search-form-wrapper h1 {
  text-align: center;
  margin-bottom: 2rem;
  line-height: 2.5rem;
  font-weight: 300;
}
@media only screen and (max-width: 768px) {
  .search-overlay-wrapper .search-content-wrapper .search-form-wrapper h1 {
    font-size: 1.5rem;
  }
}
.search-overlay-wrapper .search-content-wrapper .search-form-wrapper h1 em {
  font-style: normal;
  font-weight: 500;
}
.search-overlay-wrapper .search-content-wrapper .search-input-wrapper {
  width: 100%;
}
.search-overlay-wrapper .search-content-wrapper .search-input-wrapper .input-wrapper {
  position: relative;
}
.search-overlay-wrapper .search-content-wrapper .search-input-wrapper .input-wrapper input {
  border-radius: 20rem;
  border: solid 1px white;
  background-color: transparent;
  padding-left: 2.5rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  width: 100%;
  font-size: 1.1rem;
  color: white;
}
.search-overlay-wrapper .search-content-wrapper .search-input-wrapper .input-wrapper::before {
  content: "⚲";
  transform: rotate(45deg);
  width: 1rem;
  height: 100%;
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  margin-left: 0.7rem;
  justify-content: center;
  font-size: 1.2rem;
  top: 0;
  color: inherit;
  color: white;
}
.search-overlay-wrapper .search-content-wrapper .search-input-wrapper .submit-wrapper {
  margin-top: 1.5rem;
  display: flex;
}
.search-overlay-wrapper .search-content-wrapper .search-input-wrapper .submit-wrapper a {
  font-size: 1.4rem;
  margin-left: auto;
  color: rgb(180, 126, 0);
  font-weight: 500;
}
.search-overlay-wrapper .search-content-wrapper .search-links-wrapper {
  margin-top: 10vh;
  text-align: center;
}
.search-overlay-wrapper .search-content-wrapper .search-links-wrapper p {
  text-align: center;
}
.search-overlay-wrapper .search-content-wrapper .search-links-wrapper ul.recent-searches {
  text-align: center;
}
.search-overlay-wrapper .search-content-wrapper .search-links-wrapper ul.recent-searches li {
  display: inline;
  margin-right: 0.5rem;
}
.search-overlay-wrapper .search-content-wrapper .search-links-wrapper ul.recent-searches li a {
  color: white;
  text-decoration: underline;
}
.search-overlay-wrapper .search-content-wrapper .search-links-wrapper ul.recent-searches li:after {
  content: "›";
}
.search-overlay-wrapper .search-content-wrapper .search-links-wrapper ul.popular-brands {
  margin-top: 5vh;
  text-align: center;
}
.search-overlay-wrapper .search-content-wrapper .search-links-wrapper ul.popular-brands li {
  display: inline;
  margin-right: 0.7rem;
}
.search-overlay-wrapper .search-content-wrapper .search-links-wrapper ul.popular-brands li a {
  color: white;
}
.search-overlay-wrapper .search-content-wrapper .search-links-wrapper ul.popular-brands li:after {
  margin-left: 0.3rem;
  content: "›";
}
.search-overlay-wrapper .search-content-wrapper .search-links-wrapper .all-products {
  margin-top: 1rem;
  text-align: center;
  color: rgb(180, 126, 0);
  font-weight: 500;
  display: block;
}

#product-loader {
  width: 100%;
  text-align: center;
}
#product-loader p {
  font-weight: bold;
}

#load-more {
  width: 100%;
  display: flex;
  justify-content: center;
}
@keyframes float {
  0% {
    transform: translatey(-2px) rotate(90deg);
  }
  50% {
    transform: translatey(3px) rotate(90deg);
  }
  100% {
    transform: translatey(-2px) rotate(90deg);
  }
}
#load-more a {
  margin-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  align-items: center;
  display: flex;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 0;
  color: white;
  background: red;
}
#load-more a svg {
  stroke: white;
}
#load-more a.xs {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
#load-more a.med {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
#load-more a.lrg {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
#load-more a.wide-m {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
#load-more a.padding-left-s {
  padding-left: 1rem;
}
#load-more a.padding-left-m {
  padding-left: 2rem;
}
#load-more a.padding-left-ml {
  padding-left: 3rem;
}
#load-more a.padding-left-l {
  padding-left: 4rem;
}
#load-more a.padding-right-s {
  padding-right: 1rem;
}
#load-more a.padding-right-m {
  padding-right: 2rem;
}
#load-more a.padding-right-ml {
  padding-right: 3rem;
}
#load-more a.padding-right-l {
  padding-right: 4rem;
}
#load-more a.pri {
  background-color: rgb(180, 126, 0);
}
#load-more a.pri:hover {
  background-color: #ce9000;
}
#load-more a.sec {
  background-color: rgb(0, 0, 0);
}
#load-more a.sec:hover {
  background-color: #4d4d4d;
}
#load-more a.pos {
  background-color: #6da583;
}
#load-more a.pos:hover {
  background-color: #558a6a;
}
#load-more a.ghost {
  background: transparent;
  border: solid 1px #cccccc;
  color: black;
}
#load-more a.ghost:hover {
  border-color: rgb(180, 126, 0);
  color: rgb(180, 126, 0);
}
#load-more a.ghost.lit {
  border-color: white;
  color: white;
}
#load-more a.ghost.lit:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
}
#load-more a.ghost.dar {
  border-color: black;
  color: black;
}
#load-more a.ghost.dar:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
  color: white;
}
#load-more a.text-link {
  background: none;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  color: black;
}
#load-more a.text-link:hover {
  color: rgb(180, 126, 0);
}
#load-more a.center {
  text-align: center;
  justify-content: center;
}
#load-more a.full-width {
  width: 100%;
}
#load-more a.inline {
  display: inline-block;
}
#load-more a.right {
  justify-content: flex-end;
}
#load-more a.bold {
  font-weight: 500;
}
#load-more a .icon-wrapper {
  display: inline-flex;
  margin-right: 0.5rem;
}
#load-more a.disabled {
  background-color: #999999;
  color: #4d4d4d;
  font-style: italic;
  cursor: initial;
}
#load-more a.disabled:hover {
  background-color: #999999;
  color: #4d4d4d;
}
#load-more a:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 1200px) {
  #load-more a {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  #load-more a {
    width: 100%;
    margin-bottom: 1rem;
    margin-right: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.2rem;
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
  #load-more a {
    font-size: 1rem;
  }
}
#load-more a.half {
  width: calc(50% - 0.5rem);
}
@media only screen and (max-width: 1000px) {
  #load-more a.half {
    width: 100%;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  #load-more a.half {
    font-size: 0.9rem;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
    letter-spacing: -0.01rem;
  }
}
#load-more a.full-width {
  width: 100%;
}
#load-more .load-more-icon {
  margin-left: 1rem;
  transform: translatey(0px) rotate(90deg);
  transform-origin: center;
  font-size: 1.5rem;
  animation: float 1.5s ease-in-out infinite;
  transition: all 1.5s ease;
}
@media only screen and (max-width: 768px) {
  #load-more .load-more-icon {
    margin-right: -0.2rem;
  }
}

.filter-label-bar {
  margin-top: 1rem;
}
.filter-label-bar.dark ul li {
  background-color: #e6e6e6;
}
.filter-label-bar ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.filter-label-bar ul li {
  display: flex;
  flex-direction: row;
  flex: 1;
  flex-grow: 0;
  flex-basis: auto;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  border-radius: 10rem;
  padding-left: 1rem;
  padding-right: 0.5rem;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  background-color: white;
  align-items: center;
  white-space: nowrap;
}
@media only screen and (max-width: 480px) {
  .filter-label-bar ul li {
    width: 100%;
    flex-basis: 100%;
  }
}
.filter-label-bar ul li.text-label {
  background: none;
}
.filter-label-bar ul li.text-label:hover {
  background: none;
  color: inherit;
}
.filter-label-bar ul li .label-item-text {
  flex: 1;
  flex-basis: auto;
}
.filter-label-bar ul li .label-item-text.search-open {
  cursor: pointer;
  align-items: center;
  display: inline-flex;
}
.filter-label-bar ul li .label-item-text.search-open .icon-wrapper {
  margin-left: 0;
  margin-right: 0.5rem;
  align-items: center;
  display: flex;
}
.filter-label-bar ul li .label-item-text .icon-wrapper {
  width: 1rem;
  display: inline-block;
}
.filter-label-bar ul li .label-item-text .icon-wrapper svg {
  width: 100%;
  height: 100%;
  stroke: black;
}
.filter-label-bar ul li .label-item-icon {
  margin-left: auto;
  font-size: 1.5rem;
  display: flex;
  margin-left: 0.5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.filter-label-bar ul li .label-item-icon a {
  text-decoration: none;
  color: gray;
  line-height: 1rem;
  font-weight: normal;
}
.filter-label-bar ul li .label-item-icon.cross {
  transform: rotate(45deg);
}
.filter-label-bar ul li .label-item-icon:hover a {
  color: rgb(0, 0, 0);
}
.filter-label-bar ul li:hover {
  background-color: rgb(180, 126, 0);
  color: white;
}
.filter-label-bar ul li:hover .label-item-icon a {
  color: white;
}
.filter-label-bar ul li:hover .icon-wrapper svg {
  stroke: white;
}
.filter-label-bar ul span {
  margin-left: 1rem;
  margin-right: 1rem;
}

#accept_sales_terms a {
  text-decoration: underline;
}

/* Homepage template ----------------------------------------- */
.slider-wrapper {
  background-color: rgb(0, 0, 0);
  position: relative;
  overflow: hidden;
}
.slider-wrapper > .content-wrapper.giftcard-banner {
  background-size: cover !important;
  background-position-x: unset;
  background-position-y: unset;
}
.slider-wrapper > .content-wrapper.giftcard-banner #video-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .slider-wrapper > .content-wrapper.giftcard-banner .slider-block-wrapper {
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  .slider-wrapper > .content-wrapper.giftcard-banner .slider-block-wrapper > .content-wrapper {
    align-self: center;
  }
}
.slider-wrapper > .content-wrapper.giftcard-banner .banner-decoration-wrapper {
  margin-right: auto;
}
@media only screen and (max-width: 1200px) {
  .slider-wrapper > .content-wrapper.giftcard-banner .banner-decoration-wrapper {
    margin-left: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .slider-wrapper > .content-wrapper.giftcard-banner .banner-decoration-wrapper {
    margin-bottom: 1.5rem;
  }
}
.slider-wrapper > .content-wrapper.giftcard-banner .banner-decoration-wrapper h1 {
  font-size: 1.5rem;
  text-align: left;
  letter-spacing: normal;
  font-weight: normal;
  margin: 0;
}
.slider-wrapper > .content-wrapper.giftcard-banner .banner-decoration-wrapper span {
  font-family: "Playfair Display", serif;
  font-size: 7rem;
  line-height: 7rem;
  font-style: italic;
  font-weight: 400;
  display: block;
  text-align: left;
  text-transform: none;
  margin-top: -1.5rem;
}
@media only screen and (max-width: 1200px) {
  .slider-wrapper > .content-wrapper.giftcard-banner .banner-decoration-wrapper span {
    font-size: 5rem;
    line-height: 5rem;
  }
}
@media only screen and (max-width: 1000px) {
  .slider-wrapper > .content-wrapper.giftcard-banner .banner-decoration-wrapper span {
    font-size: 4rem;
    line-height: 4rem;
  }
}
@media only screen and (max-width: 768px) {
  .slider-wrapper > .content-wrapper.giftcard-banner .banner-decoration-wrapper span {
    margin-top: 0;
    font-size: 3rem;
    line-height: 3rem;
  }
}
.slider-wrapper > .content-wrapper.giftcard-banner .brand-name {
  font-size: 2.2rem !important;
}
@media only screen and (max-width: 768px) {
  .slider-wrapper > .content-wrapper.giftcard-banner .brand-name {
    font-size: 1.6rem !important;
  }
}
@media only screen and (max-width: 768px) {
  .slider-wrapper > .content-wrapper.giftcard-banner .cta-link {
    font-size: 1.2rem !important;
  }
}
.slider-wrapper > .content-wrapper.giftcard-banner .slider-image-wrapper {
  display: none;
}
.slider-wrapper .slider-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 2;
  opacity: 1;
  animation: fadeinbackground 1s 0.3s ease-in-out;
  animation-fill-mode: forwards;
  pointer-events: none;
}
@keyframes fadeinbackground {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.slider-wrapper > .content-wrapper {
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 0;
  padding-right: 0;
  max-width: none;
  height: auto;
  min-height: 43rem;
  max-height: 70vh;
  position: relative;
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: 20%;
  background-image: url("../jpg/rolex_hires.jpg");
}
@media only screen and (max-width: 1366px) {
  .slider-wrapper > .content-wrapper {
    min-height: 70vh;
  }
}
@media only screen and (max-width: 1200px) {
  .slider-wrapper > .content-wrapper {
    min-height: 60vh;
  }
}
@media only screen and (max-width: 1000px) {
  .slider-wrapper > .content-wrapper {
    min-height: 35vh;
  }
}
@media only screen and (max-width: 768px) {
  .slider-wrapper > .content-wrapper {
    max-height: none;
    min-height: 0;
    background-size: cover;
    background-position-x: -14rem;
    padding-bottom: 2rem;
    min-height: 65vh;
  }
}
@media only screen and (max-width: 480px) {
  .slider-wrapper > .content-wrapper {
    min-height: 63vh;
  }
}
.slider-wrapper > .content-wrapper:after {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+35,000000+65,000000+100&1+0,0+35,0+65,1+100 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0) 65%, rgb(0, 0, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#000000", endColorstr="#000000",GradientType=0 ); /* IE6-9 */
}
@media only screen and (max-width: 768px) {
  .slider-wrapper > .content-wrapper:after {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+20,000000+55,000000+100&1+0,0.8+10,0+20,0.2+30,0.8+55,1+100 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 10%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0.8) 55%, rgb(0, 0, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#000000", endColorstr="#000000",GradientType=0 ); /* IE6-9 */
  }
}
.slider-wrapper > .content-wrapper .slider-image-wrapper {
  width: 18rem;
  height: 100%;
  display: flex;
  top: 0;
  position: absolute;
  overflow: hidden;
  transition: all 0.5s ease;
  transition-property: left, right, opacity;
}
.slider-wrapper > .content-wrapper .slider-image-wrapper img {
  position: absolute;
  width: 100%;
  height: auto;
  align-self: center;
  opacity: 0.2;
  transition: opacity 1s, margin 0.5s;
  backface-visibility: hidden;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.slider-wrapper > .content-wrapper .slider-image-wrapper.active img {
  opacity: 1;
}
.slider-wrapper > .content-wrapper .slider-image-wrapper.next {
  right: 0;
}
@media only screen and (max-width: 768px) {
  .slider-wrapper > .content-wrapper .slider-image-wrapper.next {
    display: none;
  }
}
.slider-wrapper > .content-wrapper .slider-image-wrapper.next img {
  margin-left: 50%;
}
.slider-wrapper > .content-wrapper .slider-image-wrapper.next.active img {
  margin-left: 40%;
}
.slider-wrapper > .content-wrapper .slider-image-wrapper.next.moveout {
  right: -15rem;
  opacity: 0;
}
.slider-wrapper > .content-wrapper .slider-image-wrapper.next.movein {
  right: 0;
  opacity: 1;
}
.slider-wrapper > .content-wrapper .slider-image-wrapper.previous {
  left: 0;
}
@media only screen and (max-width: 768px) {
  .slider-wrapper > .content-wrapper .slider-image-wrapper.previous {
    display: none;
  }
}
.slider-wrapper > .content-wrapper .slider-image-wrapper.previous img {
  margin-left: -50%;
}
.slider-wrapper > .content-wrapper .slider-image-wrapper.previous.active img {
  margin-left: -40%;
}
.slider-wrapper > .content-wrapper .slider-image-wrapper.previous.moveout {
  left: -15rem;
  opacity: 0;
}
.slider-wrapper > .content-wrapper .slider-image-wrapper.previous.movein {
  left: 0;
  opacity: 1;
}
.slider-wrapper > .content-wrapper .slider-arrow-wrapper {
  position: absolute;
  bottom: 3rem;
  z-index: 50;
  width: auto;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
@media only screen and (max-width: 768px) {
  .slider-wrapper > .content-wrapper .slider-arrow-wrapper {
    bottom: 2rem;
    height: auto;
  }
}
.slider-wrapper > .content-wrapper .slider-arrow-wrapper a {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
.slider-wrapper > .content-wrapper .slider-arrow-wrapper a .arrow-text {
  display: block;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
  transform: rotate(-90deg);
  transform-origin: center;
  margin-bottom: 3rem;
  font-size: 1rem;
  max-width: 8rem;
  line-height: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .slider-wrapper > .content-wrapper .slider-arrow-wrapper a .arrow-text {
    display: none;
  }
}
.slider-wrapper > .content-wrapper .slider-arrow-wrapper a .arrow-icon {
  display: block;
  text-decoration: none;
  width: 100%;
  animation-direction: alternate;
  transition: all 0.5s ease-in-out;
  width: 5rem;
}
@media only screen and (max-width: 768px) {
  .slider-wrapper > .content-wrapper .slider-arrow-wrapper a .arrow-icon {
    width: 4.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .slider-wrapper > .content-wrapper .slider-arrow-wrapper a .arrow-icon {
    width: 4rem;
  }
}
.slider-wrapper > .content-wrapper .slider-arrow-wrapper a .arrow-icon svg {
  stroke: white;
  width: 100%;
  height: 1rem;
}
.slider-wrapper > .content-wrapper .slider-arrow-wrapper a:hover {
  text-decoration: none;
}
.slider-wrapper > .content-wrapper .slider-arrow-wrapper a:hover .arrow-text {
  color: rgb(180, 126, 0);
  text-decoration: none;
}
.slider-wrapper > .content-wrapper .slider-arrow-wrapper a:hover .arrow-icon svg {
  stroke: rgb(180, 126, 0);
}
.slider-wrapper > .content-wrapper .slider-arrow-wrapper.previous {
  left: 0;
}
.slider-wrapper > .content-wrapper .slider-arrow-wrapper.previous a {
  padding-left: 3rem;
}
@media only screen and (max-width: 1000px) {
  .slider-wrapper > .content-wrapper .slider-arrow-wrapper.previous a {
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .slider-wrapper > .content-wrapper .slider-arrow-wrapper.previous a {
    padding-left: 1rem;
  }
}
.slider-wrapper > .content-wrapper .slider-arrow-wrapper.previous:hover .arrow-icon {
  transform: translateX(-0.7rem);
}
.slider-wrapper > .content-wrapper .slider-arrow-wrapper.next {
  right: 0;
}
.slider-wrapper > .content-wrapper .slider-arrow-wrapper.next a {
  padding-right: 3rem;
}
@media only screen and (max-width: 1000px) {
  .slider-wrapper > .content-wrapper .slider-arrow-wrapper.next a {
    padding-right: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .slider-wrapper > .content-wrapper .slider-arrow-wrapper.next a {
    padding-right: 1rem;
  }
}
.slider-wrapper > .content-wrapper .slider-arrow-wrapper.next:hover .arrow-icon {
  transform: translateX(0.7rem);
}
.slider-wrapper > .content-wrapper .slider-block-wrapper {
  display: flex;
  flex: 1;
  width: 100%;
  z-index: 2;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  justify-content: flex-end;
}
@media only screen and (max-width: 768px) {
  .slider-wrapper > .content-wrapper .slider-block-wrapper {
    padding-bottom: 0;
    justify-content: center;
    width: calc(100% - 2rem);
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .slider-wrapper > .content-wrapper .slider-block-wrapper {
    justify-content: flex-start;
  }
}
.slider-wrapper > .content-wrapper .slider-block-wrapper h1 {
  margin-top: 0;
  text-align: center;
  font-weight: normal;
  color: white;
  font-size: 2rem;
  line-height: 4rem;
  letter-spacing: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .slider-wrapper > .content-wrapper .slider-block-wrapper h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
.slider-wrapper > .content-wrapper .slider-block-wrapper h1 strong {
  font-weight: 400;
}
.slider-wrapper > .content-wrapper .slider-block-wrapper .content-wrapper {
  color: white;
  width: auto;
  flex-grow: 0;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  margin-right: 5rem;
  min-width: 25rem;
  max-width: 30rem;
}
@media only screen and (max-width: 1200px) {
  .slider-wrapper > .content-wrapper .slider-block-wrapper .content-wrapper {
    margin-right: 10rem;
  }
}
@media only screen and (max-width: 768px) {
  .slider-wrapper > .content-wrapper .slider-block-wrapper .content-wrapper {
    margin-right: 0;
    align-self: flex-end;
    min-width: initial;
  }
}
.slider-wrapper > .content-wrapper .slider-block-wrapper .content-wrapper .brand-link-wrapper {
  text-decoration: none;
}
.slider-wrapper > .content-wrapper .slider-block-wrapper .content-wrapper .brand-link-wrapper:hover .brand-name {
  letter-spacing: 0.3rem;
}
.slider-wrapper > .content-wrapper .slider-block-wrapper .content-wrapper .brand-link-wrapper:hover .cta-link {
  text-decoration: none;
  color: white;
  border-color: white;
}
.slider-wrapper > .content-wrapper .slider-block-wrapper .content-wrapper .brand-link-wrapper .brand-name {
  font-size: 4rem;
  color: white;
  font-weight: 300;
  text-shadow: 1px 2px 3px #000;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  margin-top: 0;
  margin-bottom: 2rem;
  letter-spacing: 0.2rem;
  transition: letter-spacing 1s;
  line-height: initial;
}
@media only screen and (max-width: 1000px) {
  .slider-wrapper > .content-wrapper .slider-block-wrapper .content-wrapper .brand-link-wrapper .brand-name {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .slider-wrapper > .content-wrapper .slider-block-wrapper .content-wrapper .brand-link-wrapper .brand-name {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
}
.slider-wrapper > .content-wrapper .slider-block-wrapper .content-wrapper .brand-link-wrapper .cta-link {
  border: solid 1px rgb(180, 126, 0);
  text-transform: uppercase;
  text-align: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1.3rem;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding-bottom: 1.3rem;
  margin-bottom: 1.5rem;
  color: rgb(180, 126, 0);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.08rem;
}
@media only screen and (max-width: 1200px) {
  .slider-wrapper > .content-wrapper .slider-block-wrapper .content-wrapper .brand-link-wrapper .cta-link {
    letter-spacing: 0.06rem;
  }
}
@media only screen and (max-width: 768px) {
  .slider-wrapper > .content-wrapper .slider-block-wrapper .content-wrapper .brand-link-wrapper .cta-link {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    letter-spacing: 0.05rem;
    margin-bottom: 1rem;
  }
}
.slider-wrapper > .content-wrapper .slider-block-wrapper .content-wrapper .slider-paging {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  .slider-wrapper > .content-wrapper .slider-block-wrapper .content-wrapper .slider-paging {
    order: 1;
    margin-bottom: 0;
  }
}
.slider-wrapper > .content-wrapper .slider-block-wrapper .content-wrapper .slider-paging .paging-dot {
  padding: 1rem;
  margin-right: 0.5rem;
}
@media only screen and (max-width: 1000px) {
  .slider-wrapper > .content-wrapper .slider-block-wrapper .content-wrapper .slider-paging .paging-dot {
    padding: 0.5rem;
    margin-right: 0.2rem;
  }
}
.slider-wrapper > .content-wrapper .slider-block-wrapper .content-wrapper .slider-paging .paging-dot .dot {
  border: solid 1px yellow;
  background-color: transparent;
  display: flex;
  flex: 1;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 0.7rem;
  width: 0.7rem;
  height: 0.7rem;
  border: solid 1px rgb(180, 126, 0);
  border-radius: 10rem;
  transition: background 0.3s;
}
@media only screen and (max-width: 768px) {
  .slider-wrapper > .content-wrapper .slider-block-wrapper .content-wrapper .slider-paging .paging-dot .dot {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.slider-wrapper > .content-wrapper .slider-block-wrapper .content-wrapper .slider-paging .paging-dot:last-of-type {
  margin-right: 0;
}
.slider-wrapper > .content-wrapper .slider-block-wrapper .content-wrapper .slider-paging .paging-dot.active .dot {
  background-color: rgb(180, 126, 0);
}
.slider-wrapper > .content-wrapper .slider-block-wrapper .content-wrapper .slider-paging .paging-dot:hover .dot {
  background-color: white;
  border-color: white;
}
.slider-wrapper > .content-wrapper .slider-block-wrapper .content-wrapper .text-link {
  margin-top: 0;
  padding-top: 0;
}
@media only screen and (max-width: 768px) {
  .slider-wrapper > .content-wrapper .slider-block-wrapper .content-wrapper .text-link {
    margin-bottom: 0.5rem;
  }
}
.slider-wrapper > .content-wrapper .slider-block-wrapper .content-wrapper .text-link a {
  text-transform: uppercase;
  color: rgb(180, 126, 0);
}
.slider-wrapper > .content-wrapper.default-slide {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .slider-wrapper > .content-wrapper.default-slide {
    background-size: cover;
  }
}
@media only screen and (max-width: 768px) {
  .slider-wrapper > .content-wrapper.default-slide .slider-block-wrapper {
    flex-direction: column;
  }
}
.slider-wrapper > .content-wrapper.default-slide .slider-image-wrapper {
  display: none;
}
.slider-wrapper > .content-wrapper.default-slide:after {
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  z-index: 1;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+27,ffffff+34,ffffff+66,000000+73,000000+100&1+0,1+27,0+34,0+66,1+73,1+100 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 27%, rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, 0) 66%, rgb(0, 0, 0) 73%, rgb(0, 0, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#000000", endColorstr="#000000",GradientType=1 ); /* IE6-9 */
}
@media only screen and (max-width: 1500px) {
  .slider-wrapper > .content-wrapper.default-slide:after {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+17,ffffff+25,ffffff+75,000000+82,000000+100&1+0,1+17,0+25,0+75,1+82,1+100 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 17%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 75%, rgb(0, 0, 0) 82%, rgb(0, 0, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#000000", endColorstr="#000000",GradientType=1 ); /* IE6-9 */
  }
}
@media only screen and (max-width: 768px) {
  .slider-wrapper > .content-wrapper.default-slide:after {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+20,000000+55,000000+100&0.2+0,0+20,0.8+55,1+100 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.8) 55%, rgb(0, 0, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#33000000", endColorstr="#000000",GradientType=0 ); /* IE6-9 */
  }
}
.slider-wrapper .search-block-wrapper {
  flex: 1;
  flex-basis: auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}
.slider-wrapper .search-block-wrapper h2 {
  margin-top: 0;
  color: white;
  font-weight: normal;
}
@media only screen and (max-width: 1000px) {
  .slider-wrapper .search-block-wrapper br {
    display: none;
  }
}
.slider-wrapper .search-block-wrapper .rating-wrapper {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex: 1;
  justify-content: flex-end;
}
@media only screen and (max-width: 768px) {
  .slider-wrapper .search-block-wrapper .rating-wrapper {
    margin-top: 1rem;
    justify-content: center;
  }
}
.slider-wrapper .search-block-wrapper .rating-wrapper img {
  margin-right: 1rem;
}
.slider-wrapper .search-block-wrapper .rating-wrapper a {
  font-size: 0.9rem;
  color: #b3b3b3;
  text-decoration: underline;
}
.slider-wrapper .search-block-wrapper .rating-wrapper a:hover {
  color: white;
}
.slider-wrapper .search-block-wrapper .rating-wrapper .star-rating-wrapper {
  margin-left: 1rem;
}
.slider-wrapper .content-limiter {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex: 1;
  flex-basis: auto;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 1200px) {
  .slider-wrapper .content-limiter {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  .slider-wrapper .content-limiter {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1000px) {
  .slider-wrapper .content-limiter.mobile-row {
    flex-direction: row;
  }
}
@media only screen and (max-width: 1000px) {
  .slider-wrapper .content-limiter.mobile-column {
    flex-direction: column;
  }
}
.slider-wrapper .content-limiter .scroll-arrow {
  position: absolute;
  bottom: -0.5rem;
  right: -1rem;
  z-index: 50;
  line-height: 0;
  transition: bottom 0.5s ease;
  width: 2rem;
  height: 5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
  cursor: pointer;
}
@media only screen and (max-width: 1500px) {
  .slider-wrapper .content-limiter .scroll-arrow {
    right: 5rem;
  }
}
@media only screen and (max-width: 1366px) {
  .slider-wrapper .content-limiter .scroll-arrow {
    right: 10rem;
  }
}
@media only screen and (max-width: 768px) {
  .slider-wrapper .content-limiter .scroll-arrow {
    display: none;
  }
}
.slider-wrapper .content-limiter .scroll-arrow svg text {
  stroke: white;
}
.slider-wrapper .content-limiter .scroll-arrow svg circle {
  stroke: white;
}
.slider-wrapper .content-limiter .scroll-arrow svg line {
  stroke: white;
}
.slider-wrapper .content-limiter .scroll-arrow:hover {
  bottom: 0;
}
.slider-wrapper .content-limiter .scroll-arrow:hover svg text {
  stroke: rgb(180, 126, 0);
}
.slider-wrapper .content-limiter .scroll-arrow:hover svg circle {
  stroke: rgb(180, 126, 0);
}
.slider-wrapper .content-limiter .scroll-arrow:hover svg line {
  stroke: rgb(180, 126, 0);
}

.homepage-title-bar-wrapper {
  padding-top: 3rem;
  padding-right: 1rem;
  background-color: #f2f2f2;
}
@media only screen and (max-width: 768px) {
  .homepage-title-bar-wrapper {
    padding-top: 2rem;
    padding-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .homepage-title-bar-wrapper .content-wrapper {
    margin-bottom: 0;
  }
}
.homepage-title-bar-wrapper .content-wrapper .search-wrapper {
  margin-left: auto;
  border: solid 1px black;
  border-radius: 20rem;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .homepage-title-bar-wrapper .content-wrapper .search-wrapper {
    margin-left: 0;
    width: 100%;
  }
}
.homepage-title-bar-wrapper .content-wrapper .search-wrapper input[type=text] {
  padding-left: 2.5rem;
  padding-right: 2rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  width: 100%;
  border-radius: 10rem;
  background-color: transparent;
  color: black;
  font-size: inherit;
  -webkit-appearance: none;
  outline: none;
  border: none;
  font-family: inherit;
}
@media only screen and (max-width: 768px) {
  .homepage-title-bar-wrapper .content-wrapper .search-wrapper input[type=text] {
    width: 100%;
  }
}
.homepage-title-bar-wrapper .content-wrapper .search-wrapper input[type=text]::-moz-placeholder {
  color: rgb(0, 0, 0);
}
.homepage-title-bar-wrapper .content-wrapper .search-wrapper input[type=text]::placeholder {
  color: rgb(0, 0, 0);
}
.homepage-title-bar-wrapper .content-wrapper .search-wrapper::before {
  content: "⚲";
  transform: rotate(45deg);
  width: 1rem;
  height: 100%;
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  margin-left: 0.7rem;
  justify-content: center;
  font-size: 1.2rem;
  top: 0;
  color: inherit;
}
.homepage-title-bar-wrapper .content-wrapper .input-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
.homepage-title-bar-wrapper .content-wrapper .input-wrapper input[type=submit] {
  opacity: 0;
  top: 0;
  right: 0;
  position: absolute;
  height: 100%;
  cursor: pointer;
  width: 3rem;
  padding: 0;
  margin: 0;
  z-index: 3;
}
.homepage-title-bar-wrapper .content-wrapper .input-wrapper::after {
  position: absolute;
  content: "›";
  height: 100%;
  width: 1rem;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  z-index: 2;
  font-size: 1.4rem;
  pointer-events: none;
  transform: rotate(0);
  transition: right 0.5s ease;
  animation-direction: alternate;
}
.homepage-title-bar-wrapper .content-wrapper .input-wrapper::after:hover {
  color: rgb(180, 126, 0);
}
.homepage-title-bar-wrapper .content-wrapper .input-wrapper:hover::after {
  right: 0.2rem;
  color: rgb(180, 126, 0);
}

.news-update-wrapper {
  background-color: white;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 5rem;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .news-update-wrapper {
    margin-bottom: 3rem;
  }
}
.news-update-wrapper .background-fade-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 2;
  opacity: 1;
  animation: fadeinbackground 1s 0.3s ease-in-out;
  animation-fill-mode: forwards;
}
@keyframes fadeinbackground {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.news-update-wrapper .content-wrapper {
  position: relative;
}
.news-update-wrapper .content-wrapper .one {
  flex-grow: 0;
  padding-left: 6rem;
  padding-right: 6rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: black;
  max-width: 40rem;
  color: white;
  position: relative;
  top: 5rem;
  z-index: 2;
}
@media only screen and (max-width: 1000px) {
  .news-update-wrapper .content-wrapper .one {
    background-color: rgba(0, 0, 0, 0.85);
  }
}
@media only screen and (max-width: 768px) {
  .news-update-wrapper .content-wrapper .one {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: none;
    top: 0;
  }
}
.news-update-wrapper .content-wrapper .one .news-line {
  margin-top: 3rem;
  margin-bottom: 3rem;
  width: 3rem;
  height: 1px;
  background-color: white;
}
@media only screen and (max-width: 768px) {
  .news-update-wrapper .content-wrapper .one .news-line {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
.news-update-wrapper .content-wrapper .one p {
  margin-top: 0;
  max-width: 23rem;
  line-height: 1.4rem;
  font-weight: 300;
}
.news-update-wrapper .content-wrapper .one h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 200;
}
.news-update-wrapper .content-wrapper .one a {
  color: inherit;
  text-decoration: none;
  border-bottom: solid 0.5px;
  margin-bottom: 0.1rem;
}
.news-update-wrapper .content-wrapper .one a:hover {
  text-decoration: none;
}
.news-update-wrapper .content-wrapper .one a:hover {
  color: rgb(180, 126, 0);
}

.homepage-instagram-bar {
  margin-top: 5rem;
}
@media only screen and (max-width: 768px) {
  .homepage-instagram-bar {
    margin-top: 2.5rem;
  }
}
.homepage-instagram-bar h2 {
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 300;
}
.homepage-instagram-bar h2 em {
  font-style: normal;
  font-weight: 400;
}
.homepage-instagram-bar .hr {
  display: flex;
  flex: 1;
  background-color: #cccccc;
  height: 1px;
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  .homepage-instagram-bar .contact-social-links .flex {
    flex-direction: row !important;
  }
}
@media only screen and (max-width: 768px) {
  .homepage-instagram-bar .contact-social-links .flex {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 768px) {
  .homepage-instagram-bar .contact-social-links .flex span {
    display: none;
  }
}
.homepage-instagram-bar .contact-social-links .flex a {
  align-items: center;
  display: inline-flex;
  margin-left: 1rem;
  margin-right: 1rem;
}
@media only screen and (max-width: 768px) {
  .homepage-instagram-bar .contact-social-links .flex a {
    margin-left: 0;
    margin-bottom: 1rem;
  }
}
.homepage-instagram-bar .contact-social-links .flex a:first-of-type {
  margin-left: 0rem;
}
.homepage-instagram-bar .contact-social-links .flex a:last-of-type {
  margin-right: 0;
}
.homepage-instagram-bar .contact-social-links .flex a svg {
  margin-right: 0.5rem;
  fill: black;
}
.homepage-instagram-bar .contact-social-links .flex a:hover {
  color: rgb(180, 126, 0);
  text-decoration: none;
}
.homepage-instagram-bar .contact-social-links .flex a:hover svg {
  fill: rgb(180, 126, 0);
}

.reviews-team-wrapper {
  background-color: white;
}
.reviews-team-wrapper .three {
  margin-right: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .reviews-team-wrapper .three {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
}
.reviews-team-wrapper .three:last-of-type {
  margin-right: 0;
}
.reviews-team-wrapper .line {
  background-color: #cccccc;
  height: 1px;
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.reviews-team-wrapper .reviews-wrapper {
  padding-top: 4rem;
}
.reviews-team-wrapper .employees-usp-wrapper {
  padding-bottom: 3rem;
  margin-top: 2rem;
  justify-content: center;
}
.reviews-team-wrapper .employees-usp-wrapper .employees-wrapper {
  border-right: solid 1px #cccccc;
  padding-right: 2rem;
  margin-right: 5rem;
  width: 50%;
}
@media only screen and (max-width: 1000px) {
  .reviews-team-wrapper .employees-usp-wrapper .employees-wrapper {
    border-right: none;
    margin-right: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .reviews-team-wrapper .employees-usp-wrapper .employees-wrapper {
    padding-right: 0;
  }
}
.reviews-team-wrapper .employees-usp-wrapper ul.usp-list {
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 768px) {
  .reviews-team-wrapper .employees-usp-wrapper ul.usp-list {
    flex-direction: column;
    align-items: center;
  }
}
.reviews-team-wrapper .employees-usp-wrapper ul.usp-list li {
  display: flex;
  margin-bottom: 0.2rem;
  margin-right: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .reviews-team-wrapper .employees-usp-wrapper ul.usp-list li {
    margin-right: 0;
  }
}
.reviews-team-wrapper .employees-usp-wrapper ul.usp-list li:last-of-type {
  margin-right: 0;
}
.reviews-team-wrapper .employees-usp-wrapper ul.usp-list li a {
  display: flex;
  align-items: center;
  display: flex;
  color: rgb(180, 126, 0);
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  padding-right: 0.3rem;
  text-decoration: none;
}
.reviews-team-wrapper .employees-usp-wrapper ul.usp-list li a:hover {
  text-decoration: none;
}
.reviews-team-wrapper .employees-usp-wrapper ul.usp-list li a .icon-wrapper {
  flex-grow: 0;
  flex-shrink: 0;
  margin-right: 1rem;
}
.reviews-team-wrapper .employees-usp-wrapper ul.usp-list li a .icon-wrapper svg {
  fill: rgb(180, 126, 0);
}
.reviews-team-wrapper .employees-usp-wrapper ul.usp-list li a span {
  text-decoration: none;
  margin-bottom: 0.1rem;
  border-bottom: 0.1rem solid transparent;
}
.reviews-team-wrapper .employees-usp-wrapper ul.usp-list li a span:hover {
  border-bottom: solid 0.5px;
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .reviews-wrapper {
    padding-top: 3rem;
  }
}
.reviews-wrapper .review-info-wrapper {
  display: flex;
}
.reviews-wrapper .review-info-wrapper .review-icon {
  margin-right: 1.5rem;
}
.reviews-wrapper .review-info-wrapper .review-details-wrapper .review-name {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 300;
}
.reviews-wrapper .star-rating-wrapper {
  margin-top: 1rem;
}
.reviews-wrapper .review-text {
  line-height: 1.5rem;
}
.reviews-wrapper .review-text a {
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
  display: block;
}
.reviews-wrapper .review-text a:hover {
  color: rgb(180, 126, 0);
}

.review-line-wrapper {
  display: flex;
  flex: 1;
  align-items: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  .review-line-wrapper {
    margin-top: 1rem;
    margin-bottom: 1rem;
    flex-direction: column;
  }
}
.review-line-wrapper .review-line {
  flex: 1;
  background-color: #cccccc;
  height: 1px;
  width: 100%;
  margin-right: 1rem;
  margin-left: 1rem;
}
.review-line-wrapper .review-link {
  flex-shrink: 0;
  flex-grow: 0;
}
.review-line-wrapper .review-link a {
  color: gray;
  text-transform: uppercase;
  text-decoration: none;
  text-decoration: none;
  margin-bottom: 0.1rem;
}
.review-line-wrapper .review-link a:hover {
  border-bottom: solid 0.5px;
  text-decoration: none;
}

.news-updates-wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.news-updates-wrapper .content-wrapper {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .news-updates-wrapper .content-wrapper {
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.news-updates-wrapper h3 {
  font-size: 1.5rem;
  color: rgb(0, 0, 0);
  padding-bottom: 1rem;
  border-bottom: solid 1px lightgrey;
}
.news-updates-wrapper a {
  color: rgb(0, 0, 0);
  text-decoration: underline;
}
.news-updates-wrapper a:hover {
  color: rgb(180, 126, 0);
}

.cycle-slideshow {
  z-index: 49;
}
@media only screen and (max-width: 768px) {
  .cycle-slideshow > .group {
    flex-direction: column;
    position: relative;
  }
}
.cycle-slideshow .ref-pager {
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .cycle-slideshow .ref-pager {
    margin-top: 1rem;
  }
}
.cycle-slideshow .ref-pager span {
  font-size: 2.3rem;
  color: rgba(0, 0, 0, 0.3);
  margin-left: -0.2rem;
  margin-right: 1rem;
  display: inline-block;
  height: 1rem;
  top: 0;
  line-height: 1rem;
}
.cycle-slideshow .ref-pager span.cycle-pager-active {
  color: rgb(180, 126, 0);
}
.cycle-slideshow .ref-pager span:hover {
  color: rgb(180, 126, 0);
}

.slide.group {
  display: flex !important;
  flex-direction: row;
  width: 100%;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 480px) {
  .slide.group {
    min-height: 9rem;
  }
}
.slide.group .employeesImg {
  border-radius: 100%;
  height: 6rem;
  width: 6rem;
  overflow: hidden;
  margin-right: 2rem;
  flex-shrink: 0;
  border: solid 1px #b3b3b3;
}
@media only screen and (max-width: 768px) {
  .slide.group .employeesImg {
    margin-right: 1rem;
  }
}
.slide.group .employeesImg img {
  width: 100%;
  height: auto;
  margin-top: -0.5rem;
}
.slide.group .employeesInfo {
  width: 100%;
}
.slide.group .employeesInfo .employee-name {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
}
.slide.group .employeesInfo .employee-name strong {
  font-weight: 300;
}
.slide.group .employeesInfo .employee-description {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.4rem;
}

.ref-pager {
  margin-left: 8rem;
}
@media only screen and (max-width: 768px) {
  .ref-pager {
    margin-left: 0;
  }
}

.finder-banner-wrapper {
  background-color: black;
  color: white;
  display: flex;
  position: relative;
}
.finder-banner-wrapper .content-wrapper {
  justify-content: center;
}
@media only screen and (max-width: 1000px) {
  .finder-banner-wrapper .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.finder-banner-wrapper .content-wrapper p {
  margin-top: 0;
  padding-bottom: 2rem;
}
.finder-banner-wrapper .content-wrapper h3 {
  margin-top: 0;
  font-size: 1.8rem;
  line-height: 1.8rem;
}
.finder-banner-wrapper .text-limiter {
  max-width: 38rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media only screen and (max-width: 1000px) {
  .finder-banner-wrapper .text-limiter {
    max-width: none;
    width: 100%;
  }
}
.finder-banner-wrapper .content-wrapper {
  color: white;
  justify-content: center;
  z-index: 2;
}
@media only screen and (max-width: 1000px) {
  .finder-banner-wrapper .content-wrapper {
    background: black;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.finder-banner-wrapper .content-wrapper .review-name {
  margin-bottom: 0;
  font-size: 1.2rem;
  display: flex;
}
.finder-banner-wrapper .content-wrapper .review-name .star-rating-wrapper {
  margin-left: auto;
}
.finder-banner-wrapper .content-wrapper .cta-button {
  margin-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  align-items: center;
  display: flex;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 0;
  color: white;
  background: red;
}
.finder-banner-wrapper .content-wrapper .cta-button svg {
  stroke: white;
}
.finder-banner-wrapper .content-wrapper .cta-button.xs {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.finder-banner-wrapper .content-wrapper .cta-button.med {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.finder-banner-wrapper .content-wrapper .cta-button.lrg {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.finder-banner-wrapper .content-wrapper .cta-button.wide-m {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.finder-banner-wrapper .content-wrapper .cta-button.padding-left-s {
  padding-left: 1rem;
}
.finder-banner-wrapper .content-wrapper .cta-button.padding-left-m {
  padding-left: 2rem;
}
.finder-banner-wrapper .content-wrapper .cta-button.padding-left-ml {
  padding-left: 3rem;
}
.finder-banner-wrapper .content-wrapper .cta-button.padding-left-l {
  padding-left: 4rem;
}
.finder-banner-wrapper .content-wrapper .cta-button.padding-right-s {
  padding-right: 1rem;
}
.finder-banner-wrapper .content-wrapper .cta-button.padding-right-m {
  padding-right: 2rem;
}
.finder-banner-wrapper .content-wrapper .cta-button.padding-right-ml {
  padding-right: 3rem;
}
.finder-banner-wrapper .content-wrapper .cta-button.padding-right-l {
  padding-right: 4rem;
}
.finder-banner-wrapper .content-wrapper .cta-button.pri {
  background-color: rgb(180, 126, 0);
}
.finder-banner-wrapper .content-wrapper .cta-button.pri:hover {
  background-color: #ce9000;
}
.finder-banner-wrapper .content-wrapper .cta-button.sec {
  background-color: rgb(0, 0, 0);
}
.finder-banner-wrapper .content-wrapper .cta-button.sec:hover {
  background-color: #4d4d4d;
}
.finder-banner-wrapper .content-wrapper .cta-button.pos {
  background-color: #6da583;
}
.finder-banner-wrapper .content-wrapper .cta-button.pos:hover {
  background-color: #558a6a;
}
.finder-banner-wrapper .content-wrapper .cta-button.ghost {
  background: transparent;
  border: solid 1px #cccccc;
  color: black;
}
.finder-banner-wrapper .content-wrapper .cta-button.ghost:hover {
  border-color: rgb(180, 126, 0);
  color: rgb(180, 126, 0);
}
.finder-banner-wrapper .content-wrapper .cta-button.ghost.lit {
  border-color: white;
  color: white;
}
.finder-banner-wrapper .content-wrapper .cta-button.ghost.lit:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
}
.finder-banner-wrapper .content-wrapper .cta-button.ghost.dar {
  border-color: black;
  color: black;
}
.finder-banner-wrapper .content-wrapper .cta-button.ghost.dar:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
  color: white;
}
.finder-banner-wrapper .content-wrapper .cta-button.text-link {
  background: none;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  color: black;
}
.finder-banner-wrapper .content-wrapper .cta-button.text-link:hover {
  color: rgb(180, 126, 0);
}
.finder-banner-wrapper .content-wrapper .cta-button.center {
  text-align: center;
  justify-content: center;
}
.finder-banner-wrapper .content-wrapper .cta-button.full-width {
  width: 100%;
}
.finder-banner-wrapper .content-wrapper .cta-button.inline {
  display: inline-block;
}
.finder-banner-wrapper .content-wrapper .cta-button.right {
  justify-content: flex-end;
}
.finder-banner-wrapper .content-wrapper .cta-button.bold {
  font-weight: 500;
}
.finder-banner-wrapper .content-wrapper .cta-button .icon-wrapper {
  display: inline-flex;
  margin-right: 0.5rem;
}
.finder-banner-wrapper .content-wrapper .cta-button.disabled {
  background-color: #999999;
  color: #4d4d4d;
  font-style: italic;
  cursor: initial;
}
.finder-banner-wrapper .content-wrapper .cta-button.disabled:hover {
  background-color: #999999;
  color: #4d4d4d;
}
.finder-banner-wrapper .content-wrapper .cta-button:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 1200px) {
  .finder-banner-wrapper .content-wrapper .cta-button {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  .finder-banner-wrapper .content-wrapper .cta-button {
    width: 100%;
    margin-bottom: 1rem;
    margin-right: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.2rem;
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
  .finder-banner-wrapper .content-wrapper .cta-button {
    font-size: 1rem;
  }
}
.finder-banner-wrapper .content-wrapper .review-info {
  margin-top: 0.2rem;
}
.finder-banner-wrapper .content-wrapper .review-text {
  line-height: 1.5rem;
  margin-bottom: 1rem;
}
.finder-banner-wrapper .content-wrapper .inline-link {
  font-weight: 500;
  color: inherit;
}
.finder-banner-wrapper .content-wrapper .button-wrapper {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  flex: 1;
  width: 100%;
  margin-top: 1rem;
}
.finder-banner-wrapper .content-wrapper .button-wrapper > a {
  align-self: flex-end;
}

.interested-block {
  background: #f2f2f2;
  color: black;
}
.interested-block a {
  color: black;
}
.interested-block .content-wrapper {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .interested-block {
    display: none;
  }
}

.sticky-overview-bar-wrapper {
  position: relative;
  display: none;
  width: 100%;
  background: white;
  color: black;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.sticky-overview-bar-wrapper.active {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .sticky-overview-bar-wrapper.active {
    display: none;
  }
}
.sticky-overview-bar-wrapper .sticky-content-bar {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex: 1;
  flex-basis: auto;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 1200px) {
  .sticky-overview-bar-wrapper .sticky-content-bar {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  .sticky-overview-bar-wrapper .sticky-content-bar {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1000px) {
  .sticky-overview-bar-wrapper .sticky-content-bar.mobile-row {
    flex-direction: row;
  }
}
@media only screen and (max-width: 1000px) {
  .sticky-overview-bar-wrapper .sticky-content-bar.mobile-column {
    flex-direction: column;
  }
}
.sticky-overview-bar-wrapper .filter-label-bar {
  margin-left: 1rem;
  margin-top: 0;
}
.sticky-overview-bar-wrapper .filter-label-bar ul li {
  margin-bottom: 0;
}

.product-details-view-wrapper {
  background-color: #f7f7f7;
}
.product-details-view-wrapper.padding-top-bot-m {
  padding-bottom: 2rem;
}
.product-details-view-wrapper .specs-row {
  border-bottom: solid 1px white;
}
.product-details-view-wrapper .specs-row .available svg {
  stroke: #62c17f;
  width: 1.2rem;
  height: 0.8rem;
}
.product-details-view-wrapper .specs-row .unavailable svg {
  stroke: #ff6969;
  fill: #ff6969;
  width: 1.2rem;
  height: 0.8rem;
}
.product-details-view-wrapper .specs-row .icon-wrapper {
  display: inline-flex;
  align-items: center;
}
.product-details-view-wrapper .breadcrumb-wrapper {
  display: flex;
  margin-bottom: 1rem;
  font-size: 0.8rem;
}
@media only screen and (max-width: 768px) {
  .product-details-view-wrapper .breadcrumb-wrapper {
    display: none;
  }
}
.product-details-view-wrapper .breadcrumb-wrapper .back-link {
  text-decoration: underline;
  margin-right: 1rem;
}
@media only screen and (max-width: 768px) {
  .product-details-view-wrapper .breadcrumb-wrapper .back-link {
    white-space: nowrap;
    margin-right: 0.5rem;
  }
}
.product-details-view-wrapper .breadcrumb-wrapper .back-link:before {
  content: "‹";
  margin-right: 0.5rem;
  text-decoration: none;
  display: inline-block;
  color: black;
}
.product-details-view-wrapper .breadcrumb-wrapper .back-link:after {
  content: "|";
  margin-left: 0.5rem;
  margin-right: 0;
  text-decoration: none;
  display: inline-block;
  color: black;
}
@media only screen and (max-width: 768px) {
  .product-details-view-wrapper .breadcrumb-wrapper .back-link:after {
    margin-left: 0.5rem;
    margin-right: 0.3rem;
  }
}
@media only screen and (max-width: 768px) {
  .product-details-view-wrapper .breadcrumb-wrapper ul.breadcrumbs {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}
.product-details-view-wrapper .breadcrumb-wrapper ul.breadcrumbs li {
  display: inline;
}
.product-details-view-wrapper .breadcrumb-wrapper ul.breadcrumbs li:after {
  content: "›";
  margin-left: 0.5rem;
  margin-right: 0.3rem;
  text-decoration: none;
  display: inline-block;
  color: black;
}
@media only screen and (max-width: 768px) {
  .product-details-view-wrapper .breadcrumb-wrapper ul.breadcrumbs li:after {
    margin-left: 0.5rem;
    margin-right: 0.3rem;
  }
}
.product-details-view-wrapper .breadcrumb-wrapper ul.breadcrumbs li:last-of-type:after {
  display: none;
}
.product-details-view-wrapper .breadcrumb-wrapper ul.breadcrumbs li a {
  text-decoration: underline;
}
.product-details-view-wrapper .product-details-wrapper {
  display: flex;
  margin-top: 2rem;
  flex-direction: row;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: solid 1px #cccccc;
}
@media only screen and (max-width: 768px) {
  .product-details-view-wrapper .product-details-wrapper {
    flex-direction: column;
    margin-top: 0;
    border-bottom: none;
  }
}
.product-details-view-wrapper .product-details-wrapper .description-text-title {
  display: none;
}
@media only screen and (max-width: 768px) {
  .product-details-view-wrapper .product-details-wrapper .description-text-title {
    display: flex;
    margin-bottom: 1rem;
    line-height: 2.1rem;
  }
  .product-details-view-wrapper .product-details-wrapper .description-text-title h2 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.2rem;
    line-height: 1.3rem;
  }
  .product-details-view-wrapper .product-details-wrapper .description-text-title h1 {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 0;
    margin-bottom: 0.3rem;
  }
  .product-details-view-wrapper .product-details-wrapper .description-text-title .reference {
    margin-top: 0.5rem;
  }
  .product-details-view-wrapper .product-details-wrapper .description-text-title .reference .label {
    padding-left: 0.6rem;
    padding-right: 0.6rem;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    color: white;
    display: inline;
    margin-left: 0.5rem;
  }
}
@media only screen and (max-width: 768px) and (max-width: 480px) {
  .product-details-view-wrapper .product-details-wrapper .description-text-title .reference .label {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 768px) {
  .product-details-view-wrapper .product-details-wrapper .description-text-title .reference .label.reserved {
    background-color: #9ABAD2;
  }
  .product-details-view-wrapper .product-details-wrapper .description-text-title .reference .label.reserved span {
    color: white;
  }
  .product-details-view-wrapper .product-details-wrapper .description-text-title .reference .label.popular {
    background-color: #4D6046;
  }
  .product-details-view-wrapper .product-details-wrapper .description-text-title .reference .label.popular span {
    color: white;
  }
  .product-details-view-wrapper .product-details-wrapper .description-text-title .reference .label.rare {
    background-color: #597A86;
  }
  .product-details-view-wrapper .product-details-wrapper .description-text-title .reference .label.rare span {
    color: white;
  }
  .product-details-view-wrapper .product-details-wrapper .description-text-title .reference .label.new {
    background-color: rgb(180, 126, 0);
  }
  .product-details-view-wrapper .product-details-wrapper .description-text-title .reference .label.new span {
    color: white;
  }
  .product-details-view-wrapper .product-details-wrapper .description-text-title .reference .label.sold {
    background-color: #bf2d2d;
  }
  .product-details-view-wrapper .product-details-wrapper .description-text-title .reference .label.sold span {
    color: white;
  }
}
@media only screen and (max-width: 768px) {
  .product-details-view-wrapper .product-details-wrapper .product-image-wrapper > .margin-right-ml {
    margin-right: 0;
  }
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper {
  background: white;
  position: relative;
  justify-content: center;
  width: 100%;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .product-image-loader {
  width: 3rem;
  height: 3rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  z-index: 1;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .product-image-loader svg {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  animation-name: loader;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: running;
  animation-timing-function: linear;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-delay: 0s;
  transform-origin: center center;
  color: rgb(180, 126, 0);
}
@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .item-favorite {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: auto;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.5s ease;
  top: 0.7rem !important;
  right: 3rem !important;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .item-favorite.small {
  top: 0.2rem;
  right: 0.2rem;
  padding: 0.3rem;
  width: 1.6rem;
  height: 1.6rem;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .item-favorite.medium {
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.3rem;
  width: 2rem;
  height: 2rem;
}
@media only screen and (max-width: 768px) {
  .product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .item-favorite {
    width: 2.5rem;
    height: 2.5rem;
    margin-top: 0.5rem;
    margin-right: 0.5rem;
  }
  .product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .item-favorite svg {
    width: 100%;
    height: 100%;
  }
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .item-favorite svg {
  stroke: #cccccc;
  fill: white;
  transition: fill, stroke 0.3s ease;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .item-favorite:hover {
  transform: scale(1.2, 1.2);
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .item-favorite:hover svg {
  stroke: none;
  fill: #ff6969;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .item-favorite.active svg {
  stroke: #ff6969;
  fill: #ff6969;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .item-favorite.active:hover svg {
  stroke: #ff9c9c;
  fill: #ff9c9c;
}
@media only screen and (max-width: 768px) {
  .product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .item-favorite {
    top: 0.4rem !important;
    right: 2rem !important;
  }
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .item-favorite svg path {
  stroke-width: 1.1;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .label {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  color: white;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
@media only screen and (max-width: 480px) {
  .product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .label {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
    font-size: 0.9rem;
  }
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .label.reserved {
  background-color: #9ABAD2;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .label.reserved span {
  color: white;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .label.popular {
  background-color: #4D6046;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .label.popular span {
  color: white;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .label.rare {
  background-color: #597A86;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .label.rare span {
  color: white;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .label.new {
  background-color: rgb(180, 126, 0);
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .label.new span {
  color: white;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .label.sold {
  background-color: #bf2d2d;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .label.sold span {
  color: white;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .item-enlarge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  z-index: 2;
  left: auto;
  right: 1rem;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .item-enlarge svg {
  stroke: #cccccc;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .item-enlarge:hover svg, .product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .item-enlarge:active svg {
  stroke: black;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .item-enlarge.active svg {
  stroke: black;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .button {
  position: absolute;
  left: 0;
  top: 0;
  width: 22%;
  height: 22%;
  z-index: 1;
  justify-content: center;
  align-items: center;
  opacity: 0;
  cursor: pointer;
  transition: 0.3s opacity ease;
  display: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .button svg {
  width: 100%;
  height: 100%;
  fill: rgb(180, 126, 0);
  opacity: 1;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .button svg path {
  fill: inherit;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .button.show {
  display: flex;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .button:hover {
  opacity: 0.95;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .button.play.show {
  transition: 1.3s opacity ease;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper .button.play.show:hover {
  transition: 0.3s opacity ease;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper > canvas,
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper > img {
  background-color: white;
  position: relative;
  z-index: 1;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  max-height: 30rem;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
  cursor: url("../svg/360_icon.svg"), auto;
}
@media only screen and (max-width: 768px) {
  .product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper > canvas,
  .product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper > img {
    height: 100%;
    max-height: 20rem;
    width: 100%;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper > canvas {
  background: none;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .product-preview-wrapper > img {
  cursor: default;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .thumbnails-wrapper {
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .thumbnails-wrapper .thumbnail-wrapper {
  flex: 1;
  flex-shrink: 0;
  flex-grow: 0;
  flex-basis: calc(14.2% - 0.58em);
  width: calc(14.2% - 0.58em);
  margin-right: 0.7rem;
  margin-bottom: 0.7rem;
  position: relative;
  align-items: center;
  display: flex;
  background: white;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .product-details-view-wrapper .product-details-wrapper .product-image-wrapper .thumbnails-wrapper .thumbnail-wrapper {
    align-self: flex-start;
  }
}
@media only screen and (max-width: 768px) {
  .product-details-view-wrapper .product-details-wrapper .product-image-wrapper .thumbnails-wrapper .thumbnail-wrapper {
    flex-basis: calc(25% - 0.75rem);
    width: calc(25% - 0.75rem);
    margin-right: 1rem;
    margin-bottom: 1rem;
  }
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .thumbnails-wrapper .thumbnail-wrapper:nth-of-type(7) {
  margin-right: 0;
}
@media only screen and (max-width: 768px) {
  .product-details-view-wrapper .product-details-wrapper .product-image-wrapper .thumbnails-wrapper .thumbnail-wrapper:nth-of-type(7) {
    margin-right: 0.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .product-details-view-wrapper .product-details-wrapper .product-image-wrapper .thumbnails-wrapper .thumbnail-wrapper:nth-of-type(4n) {
    margin-right: 0;
  }
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .thumbnails-wrapper .thumbnail-wrapper.active:before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: " ";
  position: absolute;
  background-color: rgba(180, 126, 0, 0.6);
  z-index: 56;
  pointer-events: none;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .thumbnails-wrapper .thumbnail-wrapper.enlarge:before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: " ";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 56;
  pointer-events: none;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .thumbnails-wrapper .thumbnail-wrapper.enlarge svg {
  left: 0;
  top: 0;
  position: absolute;
  height: 20%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  stroke: white;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .thumbnails-wrapper .thumbnail-wrapper a {
  position: relative;
  display: block;
  display: flex;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .thumbnails-wrapper .thumbnail-wrapper a img {
  width: 100%;
  height: auto;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper .thumbnails-wrapper .thumbnail-wrapper a:hover:before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: " ";
  position: absolute;
  background-color: rgba(180, 126, 0, 0.5);
  z-index: 56;
}
.product-details-view-wrapper .product-details-wrapper .product-image-wrapper img {
  width: auto;
  max-width: 100%;
  height: auto;
  align-self: flex-start;
}
@media only screen and (max-width: 768px) {
  .product-details-view-wrapper .product-details-wrapper .product-info-wrapper {
    margin-top: 1rem;
  }
}
.product-details-view-wrapper .product-details-wrapper .product-info-wrapper h1 {
  font-size: 3rem;
  line-height: 3rem;
  margin-top: 0;
  margin-bottom: 1rem;
  letter-spacing: 0.3rem;
  font-weight: 300;
}
@media only screen and (max-width: 768px) {
  .product-details-view-wrapper .product-details-wrapper .product-info-wrapper h1 {
    display: none;
  }
}
.product-details-view-wrapper .product-details-wrapper .product-info-wrapper h2 {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 0rem;
  text-transform: none;
  font-weight: 400;
  letter-spacing: normal;
}
@media only screen and (max-width: 768px) {
  .product-details-view-wrapper .product-details-wrapper .product-info-wrapper h2 {
    display: none;
  }
}
.product-details-view-wrapper .product-details-wrapper .product-info-wrapper .reference {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: solid 1px #cccccc;
}
@media only screen and (max-width: 768px) {
  .product-details-view-wrapper .product-details-wrapper .product-info-wrapper .reference {
    display: none;
  }
}
.product-details-view-wrapper .product-details-wrapper .product-info-wrapper .our-price {
  margin-top: 0.5rem;
  font-size: 1.5rem;
}
.product-details-view-wrapper .product-details-wrapper .product-info-wrapper .bag-product-added a {
  text-decoration: none;
  border-bottom: solid 0.5px;
  margin-bottom: 0.1rem;
}
.product-details-view-wrapper .product-details-wrapper .product-info-wrapper .bag-product-added a:hover {
  text-decoration: none;
}
.product-details-view-wrapper .product-details-wrapper .product-info-wrapper .sold-product {
  color: #cc0000;
  font-weight: bold;
}
.product-details-view-wrapper .product-details-wrapper .product-info-wrapper .social-share span {
  font-weight: 600;
  display: block;
  padding-bottom: 6px;
}
.product-details-view-wrapper .product-details-wrapper .product-info-wrapper .social-share .icon-wrapper {
  display: inline-block;
  cursor: pointer;
}
.product-details-view-wrapper .product-details-wrapper .product-info-wrapper .social-share .icon-wrapper svg {
  width: 2rem;
  height: 2rem;
}
.product-details-view-wrapper .product-details-wrapper .product-info-wrapper .social-share .icon-wrapper a:hover svg {
  fill: rgb(180, 126, 0);
}
.product-details-view-wrapper .product-details-description {
  border-bottom: solid 1px #cccccc;
  padding-bottom: 3rem;
}
.product-details-view-wrapper .product-details-description .description-text-title {
  margin-right: 12rem;
}
.product-details-view-wrapper .product-details-description .description-text-title h3 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 0.2rem;
}
.product-details-view-wrapper .product-details-description .description-text-title .description-model {
  margin-top: 0;
  font-size: 1.5rem;
  line-height: 2rem;
}
.product-details-view-wrapper .product-details-description .description-text-area {
  font-weight: normal;
  word-break: break-word;
}
.product-details-view-wrapper .product-details-description .description-text-area p {
  margin-top: 0;
  line-height: 1.7rem;
}

ul.mobile-specs-list {
  display: none;
}
@media only screen and (max-width: 768px) {
  ul.mobile-specs-list {
    display: block;
    margin-bottom: 3rem;
  }
}
ul.mobile-specs-list > li {
  border-bottom: solid 1px white;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 0.5rem;
}
ul.mobile-specs-list > li:first-of-type {
  border-top: solid 1px white;
}
ul.mobile-specs-list > li h3 {
  font-size: 1.5rem;
  line-height: 1.8rem;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  text-transform: none;
  cursor: pointer;
}
ul.mobile-specs-list > li h3:hover {
  color: rgb(180, 126, 0);
}
ul.mobile-specs-list > li h3:hover span {
  color: inherit;
}
ul.mobile-specs-list > li h3.active span {
  transform: rotate(45deg);
}
ul.mobile-specs-list > li h3 span {
  margin-right: 1rem;
  margin-left: auto;
  font-size: 2rem;
  font-weight: 300;
  color: lightgray;
  transition: transform 0.15s ease-in-out;
}
ul.mobile-specs-list > li > ul {
  display: none;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  ul.mobile-specs-list > li > ul {
    flex-direction: column;
  }
}
ul.mobile-specs-list > li > ul.active {
  display: flex;
}
@media only screen and (max-width: 768px) {
  ul.mobile-specs-list > li > ul li .specs-row {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

@media only screen and (max-width: 1000px) {
  .product-details-form .content-wrapper .margin-right-l {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}
.product-details-form h3 {
  text-align: center;
  width: 100%;
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .product-details-form h3 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.product-details-form h3 em {
  font-weight: 500;
}
.product-details-form form {
  padding-bottom: 3rem;
  border-bottom: solid 1px lightgray;
  margin-bottom: 3rem;
}
.product-details-form textarea {
  width: 100%;
  border: solid 1px #cccccc;
  border-radius: 0;
  outline: none transparent;
  height: auto;
  min-height: 13rem;
  padding: 1rem;
  line-height: 1.3rem;
  resize: none;
}
.product-details-form textarea:hover, .product-details-form textarea:focus {
  border-color: rgb(180, 126, 0);
}
@media only screen and (max-width: 768px) {
  .product-details-form .store-contact-options {
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  .product-details-form .store-contact-options a {
    margin-bottom: 0.5rem;
  }
}
.product-details-form .contact-details-form {
  display: flex;
  flex-direction: column;
}
.product-details-form .contact-details-form .input-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 1000px) {
  .product-details-form .contact-details-form .input-wrapper {
    flex-direction: column;
    width: 100%;
    margin-bottom: 0.2rem;
    flex-basis: auto;
  }
}
.product-details-form .contact-details-form .input-wrapper label {
  flex: 1;
  width: 100%;
  cursor: pointer;
  margin-right: 0.3rem;
}
@media only screen and (max-width: 1000px) {
  .product-details-form .contact-details-form .input-wrapper label {
    margin-top: 0.5rem;
  }
}
.product-details-form .contact-details-form .input-wrapper .select-wrapper {
  display: flex;
  flex: 2;
  align-self: flex-start;
  width: 100%;
  position: relative;
}
.product-details-form .contact-details-form .input-wrapper .select-wrapper select {
  width: 100%;
  height: auto;
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border: none;
  border-bottom: solid 1px #cccccc;
  border-radius: 0;
  webkit-appearance: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media only screen and (max-width: 1000px) {
  .product-details-form .contact-details-form .input-wrapper .select-wrapper select {
    margin-bottom: 1rem;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    flex-basis: auto;
    align-self: flex-start;
  }
}
@media only screen and (max-width: 480px) {
  .product-details-form .contact-details-form .input-wrapper .select-wrapper select {
    margin-bottom: 0.5rem;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }
}
.product-details-form .contact-details-form .input-wrapper .select-wrapper select:focus, .product-details-form .contact-details-form .input-wrapper .select-wrapper select:hover {
  border-color: rgb(180, 126, 0);
}
.product-details-form .contact-details-form .input-wrapper .select-wrapper select option {
  padding-left: 0;
  text-indent: 10px;
}
.product-details-form .contact-details-form .input-wrapper .select-wrapper:after {
  position: absolute;
  content: "›";
  height: 100%;
  width: 1rem;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  z-index: 2;
  font-size: 1.4rem;
  pointer-events: none;
  transform: rotate(90deg);
  color: #cccccc;
}
.product-details-form .contact-details-form .input-wrapper .select-wrapper:after:hover {
  color: rgb(180, 126, 0);
}
.product-details-form .contact-details-form .input-wrapper .select-wrapper:hover select {
  color: black;
}
.product-details-form .contact-details-form .input-wrapper input[type=text],
.product-details-form .contact-details-form .input-wrapper input[type=tel],
.product-details-form .contact-details-form .input-wrapper input[type=email] {
  flex: 2;
  align-self: flex-start;
  width: 100%;
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border: none;
  border-radius: 0;
  border-bottom: solid 1px #cccccc;
}
@media only screen and (max-width: 1000px) {
  .product-details-form .contact-details-form .input-wrapper input[type=text],
  .product-details-form .contact-details-form .input-wrapper input[type=tel],
  .product-details-form .contact-details-form .input-wrapper input[type=email] {
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 480px) {
  .product-details-form .contact-details-form .input-wrapper input[type=text],
  .product-details-form .contact-details-form .input-wrapper input[type=tel],
  .product-details-form .contact-details-form .input-wrapper input[type=email] {
    margin-bottom: 0.5rem;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }
}
.product-details-form .contact-details-form .input-wrapper input[type=text]:-webkit-autofill,
.product-details-form .contact-details-form .input-wrapper input[type=tel]:-webkit-autofill,
.product-details-form .contact-details-form .input-wrapper input[type=email]:-webkit-autofill {
  background-color: rgb(180, 126, 0);
  color: white;
}
.product-details-form .contact-details-form .input-wrapper input[type=text]:focus, .product-details-form .contact-details-form .input-wrapper input[type=text]:hover,
.product-details-form .contact-details-form .input-wrapper input[type=tel]:focus,
.product-details-form .contact-details-form .input-wrapper input[type=tel]:hover,
.product-details-form .contact-details-form .input-wrapper input[type=email]:focus,
.product-details-form .contact-details-form .input-wrapper input[type=email]:hover {
  border-color: rgb(180, 126, 0);
}
.product-details-form .contact-details-form .input-wrapper input[type=submit] {
  margin-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  align-items: center;
  display: flex;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 0;
  color: white;
  background: red;
  flex: 2;
  margin-top: 1rem;
  text-align: center;
  margin-left: auto;
  width: 100%;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit] svg {
  stroke: white;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].xs {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].med {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].lrg {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].wide-m {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].padding-left-s {
  padding-left: 1rem;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].padding-left-m {
  padding-left: 2rem;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].padding-left-ml {
  padding-left: 3rem;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].padding-left-l {
  padding-left: 4rem;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].padding-right-s {
  padding-right: 1rem;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].padding-right-m {
  padding-right: 2rem;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].padding-right-ml {
  padding-right: 3rem;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].padding-right-l {
  padding-right: 4rem;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].pri {
  background-color: rgb(180, 126, 0);
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].pri:hover {
  background-color: #ce9000;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].sec {
  background-color: rgb(0, 0, 0);
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].sec:hover {
  background-color: #4d4d4d;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].pos {
  background-color: #6da583;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].pos:hover {
  background-color: #558a6a;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].ghost {
  background: transparent;
  border: solid 1px #cccccc;
  color: black;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].ghost:hover {
  border-color: rgb(180, 126, 0);
  color: rgb(180, 126, 0);
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].ghost.lit {
  border-color: white;
  color: white;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].ghost.lit:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].ghost.dar {
  border-color: black;
  color: black;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].ghost.dar:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
  color: white;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].text-link {
  background: none;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  color: black;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].text-link:hover {
  color: rgb(180, 126, 0);
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].center {
  text-align: center;
  justify-content: center;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].full-width {
  width: 100%;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].inline {
  display: inline-block;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].right {
  justify-content: flex-end;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].bold {
  font-weight: 500;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit] .icon-wrapper {
  display: inline-flex;
  margin-right: 0.5rem;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].disabled {
  background-color: #999999;
  color: #4d4d4d;
  font-style: italic;
  cursor: initial;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit].disabled:hover {
  background-color: #999999;
  color: #4d4d4d;
}
.product-details-form .contact-details-form .input-wrapper input[type=submit]:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 1200px) {
  .product-details-form .contact-details-form .input-wrapper input[type=submit] {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  .product-details-form .contact-details-form .input-wrapper input[type=submit] {
    width: 100%;
    margin-bottom: 1rem;
    margin-right: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.2rem;
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
  .product-details-form .contact-details-form .input-wrapper input[type=submit] {
    font-size: 1rem;
  }
}
.product-details-form .contact-details-form .input-wrapper:hover .select-wrapper select {
  border-color: rgb(180, 126, 0);
}
.product-details-form .contact-details-form .input-wrapper:hover .select-wrapper:after {
  color: rgb(180, 126, 0);
}
.product-details-form .contact-details-form .input-wrapper .align-right {
  margin-left: auto;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .product-details-form .contact-details-form .input-wrapper {
    flex-basis: auto;
  }
}

@media only screen and (max-width: 1000px) {
  .recent-interesting-wrapper .content-wrapper .product-block {
    flex-direction: row;
  }
}
@media only screen and (max-width: 768px) {
  .recent-interesting-wrapper .content-wrapper .product-block {
    flex-direction: row;
  }
}
@media only screen and (max-width: 480px) {
  .recent-interesting-wrapper .content-wrapper .product-block {
    flex-direction: column;
  }
}
.recent-interesting-wrapper .content-wrapper .product-block .item-wrapper {
  flex-basis: calc(50% - 1rem);
  width: calc(50% - 1rem);
  margin-right: 1rem;
}
@media only screen and (max-width: 1000px) {
  .recent-interesting-wrapper .content-wrapper .product-block .item-wrapper {
    width: calc(50% - 0.5rem);
    flex-basis: calc(50% - 0.5rem);
    margin-right: 1rem;
  }
}
@media only screen and (max-width: 480px) {
  .recent-interesting-wrapper .content-wrapper .product-block .item-wrapper {
    width: 100%;
    flex-basis: 100%;
    margin-right: 0;
  }
}
.recent-interesting-wrapper .content-wrapper .product-block .item-wrapper:last-of-type {
  margin-right: 0;
}

body.threesixty-viewer {
  align-items: center;
  position: relative;
}
body.threesixty-viewer > canvas {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  cursor: url("../svg/360_icon.svg"), auto;
}
body.threesixty-viewer .button {
  position: absolute;
  left: 0;
  top: 0;
  width: 22%;
  height: 22%;
  z-index: 1;
  justify-content: center;
  align-items: center;
  opacity: 0;
  cursor: pointer;
  transition: 0.3s opacity ease;
  display: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
body.threesixty-viewer .button svg {
  width: 100%;
  height: 100%;
  fill: rgb(180, 126, 0);
  opacity: 1;
}
body.threesixty-viewer .button svg path {
  fill: inherit;
}
body.threesixty-viewer .button.show {
  display: flex;
}
body.threesixty-viewer .button:hover {
  opacity: 0.95;
}
body.threesixty-viewer .button.play.show {
  transition: 1.3s opacity ease;
}
body.threesixty-viewer .button.play.show:hover {
  transition: 0.3s opacity ease;
}
body.threesixty-viewer .description {
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 768px) {
  body.threesixty-viewer .description {
    width: 100%;
  }
}
body.threesixty-viewer .description p {
  padding: 0.5rem;
  margin-top: 0;
  margin-bottom: 0;
  color: black;
  font-size: 0.9rem;
}
@media only screen and (max-width: 768px) {
  body.threesixty-viewer .description p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    padding-right: 3rem;
  }
}
body.threesixty-viewer .icon {
  display: none;
}
@media only screen and (max-width: 768px) {
  body.threesixty-viewer .icon {
    display: flex;
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
  }
  body.threesixty-viewer .icon svg {
    width: 3.5rem;
    height: 3.5rem;
  }
}

.fancybox-slide--iframe {
  padding: 0 !important;
}
.fancybox-slide--iframe .fancybox-content {
  margin-bottom: 0 !important;
  height: 100% !important;
  width: 100%;
}

.fancybox-is-open .fancybox-toolbar {
  opacity: 1 !important;
  visibility: visible !important;
}
.fancybox-is-open .threesixty-viewer canvas {
  padding: 0 !important;
}

.contact-map-wrapper {
  background: black;
  width: 100%;
}
.contact-map-wrapper .maps-embed-wrapper {
  background: white;
  flex: 7;
  line-height: 0;
  align-self: stretch;
}
.contact-map-wrapper .maps-embed-wrapper #map-container {
  z-index: 1;
}
.contact-map-wrapper .contact-info-wrapper {
  flex: 5;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 3rem;
  padding-right: 1rem;
  color: white;
  line-height: 2.2rem;
}
@media only screen and (max-width: 768px) {
  .contact-map-wrapper .contact-info-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.contact-map-wrapper .contact-info-wrapper h1 {
  text-transform: none;
  font-weight: 300;
}
.contact-map-wrapper .contact-info-wrapper h1 em {
  font-style: normal;
  font-weight: 500;
}
.contact-map-wrapper .contact-info-wrapper a {
  color: inherit;
  padding-top: 0.2rem;
  line-height: normal;
  text-decoration: none;
  border-bottom: solid 0.5px;
  margin-bottom: 0.1rem;
}
.contact-map-wrapper .contact-info-wrapper a:hover {
  text-decoration: none;
}
.contact-map-wrapper .contact-info-wrapper a:hover {
  color: rgb(180, 126, 0);
}
.contact-map-wrapper .contact-info-wrapper a.attention {
  font-weight: 500;
  text-decoration: none;
  margin-top: 0.5rem;
  display: inline-block;
}
.contact-map-wrapper .contact-info-wrapper a.attention:hover {
  color: rgb(180, 126, 0);
}

.company-details-wrapper {
  background-color: #e6e6e6;
  line-height: 1.3rem;
}
.company-details-wrapper p {
  margin-top: 0;
}
.company-details-wrapper h2 {
  margin-top: 0;
  line-height: 3rem;
  font-weight: 300;
  font-size: 2.3rem;
  letter-spacing: normal;
  text-transform: none;
}
@media only screen and (max-width: 768px) {
  .company-details-wrapper h2 {
    font-size: 2rem;
  }
}
.company-details-wrapper h2 em {
  font-style: normal;
  font-weight: 500;
}
.company-details-wrapper .cta-button {
  margin-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  align-items: center;
  display: flex;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 0;
  color: white;
  background: red;
}
.company-details-wrapper .cta-button svg {
  stroke: white;
}
.company-details-wrapper .cta-button.xs {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.company-details-wrapper .cta-button.med {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.company-details-wrapper .cta-button.lrg {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.company-details-wrapper .cta-button.wide-m {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.company-details-wrapper .cta-button.padding-left-s {
  padding-left: 1rem;
}
.company-details-wrapper .cta-button.padding-left-m {
  padding-left: 2rem;
}
.company-details-wrapper .cta-button.padding-left-ml {
  padding-left: 3rem;
}
.company-details-wrapper .cta-button.padding-left-l {
  padding-left: 4rem;
}
.company-details-wrapper .cta-button.padding-right-s {
  padding-right: 1rem;
}
.company-details-wrapper .cta-button.padding-right-m {
  padding-right: 2rem;
}
.company-details-wrapper .cta-button.padding-right-ml {
  padding-right: 3rem;
}
.company-details-wrapper .cta-button.padding-right-l {
  padding-right: 4rem;
}
.company-details-wrapper .cta-button.pri {
  background-color: rgb(180, 126, 0);
}
.company-details-wrapper .cta-button.pri:hover {
  background-color: #ce9000;
}
.company-details-wrapper .cta-button.sec {
  background-color: rgb(0, 0, 0);
}
.company-details-wrapper .cta-button.sec:hover {
  background-color: #4d4d4d;
}
.company-details-wrapper .cta-button.pos {
  background-color: #6da583;
}
.company-details-wrapper .cta-button.pos:hover {
  background-color: #558a6a;
}
.company-details-wrapper .cta-button.ghost {
  background: transparent;
  border: solid 1px #cccccc;
  color: black;
}
.company-details-wrapper .cta-button.ghost:hover {
  border-color: rgb(180, 126, 0);
  color: rgb(180, 126, 0);
}
.company-details-wrapper .cta-button.ghost.lit {
  border-color: white;
  color: white;
}
.company-details-wrapper .cta-button.ghost.lit:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
}
.company-details-wrapper .cta-button.ghost.dar {
  border-color: black;
  color: black;
}
.company-details-wrapper .cta-button.ghost.dar:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
  color: white;
}
.company-details-wrapper .cta-button.text-link {
  background: none;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  color: black;
}
.company-details-wrapper .cta-button.text-link:hover {
  color: rgb(180, 126, 0);
}
.company-details-wrapper .cta-button.center {
  text-align: center;
  justify-content: center;
}
.company-details-wrapper .cta-button.full-width {
  width: 100%;
}
.company-details-wrapper .cta-button.inline {
  display: inline-block;
}
.company-details-wrapper .cta-button.right {
  justify-content: flex-end;
}
.company-details-wrapper .cta-button.bold {
  font-weight: 500;
}
.company-details-wrapper .cta-button .icon-wrapper {
  display: inline-flex;
  margin-right: 0.5rem;
}
.company-details-wrapper .cta-button.disabled {
  background-color: #999999;
  color: #4d4d4d;
  font-style: italic;
  cursor: initial;
}
.company-details-wrapper .cta-button.disabled:hover {
  background-color: #999999;
  color: #4d4d4d;
}
.company-details-wrapper .cta-button:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 1200px) {
  .company-details-wrapper .cta-button {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  .company-details-wrapper .cta-button {
    width: 100%;
    margin-bottom: 1rem;
    margin-right: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.2rem;
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
  .company-details-wrapper .cta-button {
    font-size: 1rem;
  }
}
.company-details-wrapper .contact-info-wrapper {
  padding-left: 1rem;
}
@media only screen and (max-width: 768px) {
  .company-details-wrapper .contact-info-wrapper {
    padding-left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .company-details-wrapper .contact-info-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .company-details-wrapper .contact-info-wrapper .flex {
    padding-right: 0;
    margin-left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .company-details-wrapper .contact-info-wrapper .flex .margin-right-m {
    margin-right: 0;
  }
}
@media only screen and (max-width: 1000px) {
  .company-details-wrapper .contact-info-wrapper {
    padding-left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .company-details-wrapper .opening-times-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .company-details-wrapper .opening-times-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.company-details-wrapper .opening-times-wrapper h2 {
  text-transform: none;
  margin-top: 0;
  margin-bottom: 1rem;
}
.company-details-wrapper .opening-times-wrapper .opening-times {
  line-height: 1.8rem;
}
.company-details-wrapper .opening-times-wrapper .opening-times .opening-row {
  font-weight: 300;
}
@media only screen and (max-width: 768px) {
  .company-details-wrapper .opening-times-wrapper .opening-times .opening-row {
    flex-direction: row;
  }
}
.company-details-wrapper .opening-times-wrapper .opening-times .opening-row.active {
  font-weight: 500;
  background: white;
}
.company-details-wrapper .opening-times-wrapper .opening-times .opening-row .opening-day {
  padding-left: 0.5rem;
}
.company-details-wrapper .opening-times-wrapper .opening-times .opening-row .opening-time {
  margin-left: auto;
}
.company-details-wrapper .opening-times-wrapper .opening-times .opening-row .opening-time p {
  padding: 0;
  margin: 0;
}

.streetview-wrapper {
  background-image: url("../jpg/maastricht_pand_juwelier_burger.jpg");
  background-size: cover;
  background-position: bottom right;
  align-self: stretch;
}
@media only screen and (max-width: 768px) {
  .streetview-wrapper {
    margin-right: 0;
  }
}

.contact-social-wrapper {
  background-color: #f2f2f2;
}
.contact-social-wrapper h2 {
  letter-spacing: normal;
  text-transform: none;
}
.contact-social-wrapper h2 em {
  font-style: normal;
}
@media only screen and (max-width: 768px) {
  .contact-social-wrapper .contact-social-links .flex {
    flex-direction: row;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 768px) {
  .contact-social-wrapper .contact-social-links .flex span {
    display: none;
  }
}
.contact-social-wrapper .contact-social-links .flex a {
  align-items: center;
  display: inline-flex;
  margin-left: 1rem;
  margin-right: 1rem;
}
@media only screen and (max-width: 768px) {
  .contact-social-wrapper .contact-social-links .flex a {
    margin-left: 0;
    margin-bottom: 1rem;
  }
}
.contact-social-wrapper .contact-social-links .flex a:first-of-type {
  margin-left: 0rem;
}
.contact-social-wrapper .contact-social-links .flex a:last-of-type {
  margin-right: 0;
}
.contact-social-wrapper .contact-social-links .flex a svg {
  margin-right: 0.5rem;
  fill: black;
}
.contact-social-wrapper .contact-social-links .flex a:hover {
  color: rgb(180, 126, 0);
  text-decoration: none;
}
.contact-social-wrapper .contact-social-links .flex a:hover svg {
  fill: rgb(180, 126, 0);
}

.contact-overlay-wrapper {
  background-color: #f2f2f2;
  position: relative;
  display: none;
  height: 100vh;
  padding-top: 10vh;
}
@media only screen and (max-width: 768px) {
  .contact-overlay-wrapper {
    padding-top: 3rem !important;
    height: auto;
  }
}
.contact-overlay-wrapper.active {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .contact-overlay-wrapper .margin-right-m {
    margin-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .contact-overlay-wrapper .contact-overlay-form {
    width: 100%;
  }
}
.contact-overlay-wrapper #close-contact-overlay {
  position: absolute;
  right: 2rem;
  top: 2rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .contact-overlay-wrapper #close-contact-overlay {
    top: 1rem;
    right: 1rem;
  }
}
.contact-overlay-wrapper #close-contact-overlay:hover svg {
  stroke: rgb(180, 126, 0);
}
.contact-overlay-wrapper #close-contact-overlay svg {
  stroke: #999999;
}
.contact-overlay-wrapper h1 {
  text-align: center;
  width: 100%;
  letter-spacing: normal;
  font-weight: 300;
  text-transform: none;
}
@media only screen and (max-width: 768px) {
  .contact-overlay-wrapper h1 {
    font-size: 1.5rem;
  }
}
.contact-overlay-wrapper h1 em {
  font-weight: 500;
}
.contact-overlay-wrapper textarea {
  width: 100%;
  height: auto;
  min-height: 10rem;
  background-color: transparent;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border: solid 1px #cccccc;
  line-height: 1.2rem;
  border-radius: 0;
}
@media only screen and (max-width: 768px) {
  .contact-overlay-wrapper textarea {
    min-height: 5rem;
    height: auto;
  }
}
.contact-overlay-wrapper h2 {
  font-size: 0.9rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
  letter-spacing: normal;
}
@media only screen and (max-width: 768px) {
  .contact-overlay-wrapper h2 {
    font-size: 1rem;
  }
}
.contact-overlay-wrapper .file {
  position: relative;
  margin-top: 1rem;
}
.contact-overlay-wrapper .file .file_input.active {
  border: dashed 2px rgb(180, 126, 0);
  background-color: white;
}
.contact-overlay-wrapper .file .file_input.active .file_input-label {
  color: rgb(180, 126, 0);
}
.contact-overlay-wrapper .file .file_input.active .file_input-label:after {
  background-color: rgb(180, 126, 0);
}
.contact-overlay-wrapper .file .file_input:hover .file_input-label {
  color: rgb(180, 126, 0);
}
.contact-overlay-wrapper .file .file_input:hover .file_input-label:after {
  background-color: rgb(180, 126, 0);
}
.contact-overlay-wrapper .file .file_value {
  margin-top: 1rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border: solid 1px #cccccc;
}
.contact-overlay-wrapper .file .file_input-file {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: auto;
  min-height: 3rem;
  cursor: pointer;
  z-index: 98;
}
.contact-overlay-wrapper .file .file_input-label {
  border: solid 1px #cccccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 1rem;
  margin-bottom: 0;
  cursor: pointer;
  color: black;
  font-size: 1rem;
  text-decoration: underline;
  z-index: 99;
}
.contact-overlay-wrapper .file .file_input-label:after {
  background: url("../svg/icon-upload.svg");
  background-color: rgb(0, 0, 0);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center center;
  content: " ";
  padding: 1rem 2rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  color: white;
  text-decoration: none;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .contact-overlay-wrapper .file .file_input-label:after {
    margin-left: 0.3rem;
  }
}
.contact-overlay-wrapper .file .file_value {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-overlay-wrapper .file .file_value:hover {
  cursor: pointer;
  color: rgb(180, 126, 0);
}
.contact-overlay-wrapper .file .file_value:hover:after {
  color: rgb(180, 126, 0);
}
.contact-overlay-wrapper .file .file_value:after {
  color: #cc0000;
  content: "✖";
  padding: 0.3rem;
  font-size: 1.4rem;
  margin-right: 1rem;
}
.contact-overlay-wrapper .file .file_value--text {
  font-style: italic;
}
.contact-overlay-wrapper .file .file_remove {
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #cccccc;
}
.contact-overlay-wrapper .file_add-more {
  margin-top: 1rem;
  cursor: pointer;
  text-decoration: underline;
}
.contact-overlay-wrapper .upload-instructions {
  margin-top: 0.2rem;
  font-size: 0.9rem;
}
.contact-overlay-wrapper .input-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 1000px) {
  .contact-overlay-wrapper .input-wrapper {
    flex-direction: column;
    width: 100%;
    margin-bottom: 0.2rem;
    flex-basis: auto;
  }
}
.contact-overlay-wrapper .input-wrapper label {
  flex: 1;
  width: 100%;
  cursor: pointer;
  margin-right: 0.3rem;
}
@media only screen and (max-width: 1000px) {
  .contact-overlay-wrapper .input-wrapper label {
    margin-top: 0.5rem;
  }
}
.contact-overlay-wrapper .input-wrapper .select-wrapper {
  display: flex;
  flex: 2;
  align-self: flex-start;
  width: 100%;
  position: relative;
}
.contact-overlay-wrapper .input-wrapper .select-wrapper select {
  width: 100%;
  height: auto;
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border: none;
  border-bottom: solid 1px #cccccc;
  border-radius: 0;
  webkit-appearance: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media only screen and (max-width: 1000px) {
  .contact-overlay-wrapper .input-wrapper .select-wrapper select {
    margin-bottom: 1rem;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    flex-basis: auto;
    align-self: flex-start;
  }
}
@media only screen and (max-width: 480px) {
  .contact-overlay-wrapper .input-wrapper .select-wrapper select {
    margin-bottom: 0.5rem;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }
}
.contact-overlay-wrapper .input-wrapper .select-wrapper select:focus, .contact-overlay-wrapper .input-wrapper .select-wrapper select:hover {
  border-color: rgb(180, 126, 0);
}
.contact-overlay-wrapper .input-wrapper .select-wrapper select option {
  padding-left: 0;
  text-indent: 10px;
}
.contact-overlay-wrapper .input-wrapper .select-wrapper:after {
  position: absolute;
  content: "›";
  height: 100%;
  width: 1rem;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  z-index: 2;
  font-size: 1.4rem;
  pointer-events: none;
  transform: rotate(90deg);
  color: #cccccc;
}
.contact-overlay-wrapper .input-wrapper .select-wrapper:after:hover {
  color: rgb(180, 126, 0);
}
.contact-overlay-wrapper .input-wrapper .select-wrapper:hover select {
  color: black;
}
.contact-overlay-wrapper .input-wrapper input[type=text],
.contact-overlay-wrapper .input-wrapper input[type=tel],
.contact-overlay-wrapper .input-wrapper input[type=email] {
  flex: 2;
  align-self: flex-start;
  width: 100%;
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border: none;
  border-radius: 0;
  border-bottom: solid 1px #cccccc;
}
@media only screen and (max-width: 1000px) {
  .contact-overlay-wrapper .input-wrapper input[type=text],
  .contact-overlay-wrapper .input-wrapper input[type=tel],
  .contact-overlay-wrapper .input-wrapper input[type=email] {
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 480px) {
  .contact-overlay-wrapper .input-wrapper input[type=text],
  .contact-overlay-wrapper .input-wrapper input[type=tel],
  .contact-overlay-wrapper .input-wrapper input[type=email] {
    margin-bottom: 0.5rem;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }
}
.contact-overlay-wrapper .input-wrapper input[type=text]:-webkit-autofill,
.contact-overlay-wrapper .input-wrapper input[type=tel]:-webkit-autofill,
.contact-overlay-wrapper .input-wrapper input[type=email]:-webkit-autofill {
  background-color: rgb(180, 126, 0);
  color: white;
}
.contact-overlay-wrapper .input-wrapper input[type=text]:focus, .contact-overlay-wrapper .input-wrapper input[type=text]:hover,
.contact-overlay-wrapper .input-wrapper input[type=tel]:focus,
.contact-overlay-wrapper .input-wrapper input[type=tel]:hover,
.contact-overlay-wrapper .input-wrapper input[type=email]:focus,
.contact-overlay-wrapper .input-wrapper input[type=email]:hover {
  border-color: rgb(180, 126, 0);
}
.contact-overlay-wrapper .input-wrapper input[type=submit] {
  margin-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  align-items: center;
  display: flex;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 0;
  color: white;
  background: red;
  flex: 2;
  margin-top: 1rem;
  text-align: center;
  margin-left: auto;
  width: 100%;
}
.contact-overlay-wrapper .input-wrapper input[type=submit] svg {
  stroke: white;
}
.contact-overlay-wrapper .input-wrapper input[type=submit].xs {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.contact-overlay-wrapper .input-wrapper input[type=submit].med {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.contact-overlay-wrapper .input-wrapper input[type=submit].lrg {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.contact-overlay-wrapper .input-wrapper input[type=submit].wide-m {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.contact-overlay-wrapper .input-wrapper input[type=submit].padding-left-s {
  padding-left: 1rem;
}
.contact-overlay-wrapper .input-wrapper input[type=submit].padding-left-m {
  padding-left: 2rem;
}
.contact-overlay-wrapper .input-wrapper input[type=submit].padding-left-ml {
  padding-left: 3rem;
}
.contact-overlay-wrapper .input-wrapper input[type=submit].padding-left-l {
  padding-left: 4rem;
}
.contact-overlay-wrapper .input-wrapper input[type=submit].padding-right-s {
  padding-right: 1rem;
}
.contact-overlay-wrapper .input-wrapper input[type=submit].padding-right-m {
  padding-right: 2rem;
}
.contact-overlay-wrapper .input-wrapper input[type=submit].padding-right-ml {
  padding-right: 3rem;
}
.contact-overlay-wrapper .input-wrapper input[type=submit].padding-right-l {
  padding-right: 4rem;
}
.contact-overlay-wrapper .input-wrapper input[type=submit].pri {
  background-color: rgb(180, 126, 0);
}
.contact-overlay-wrapper .input-wrapper input[type=submit].pri:hover {
  background-color: #ce9000;
}
.contact-overlay-wrapper .input-wrapper input[type=submit].sec {
  background-color: rgb(0, 0, 0);
}
.contact-overlay-wrapper .input-wrapper input[type=submit].sec:hover {
  background-color: #4d4d4d;
}
.contact-overlay-wrapper .input-wrapper input[type=submit].pos {
  background-color: #6da583;
}
.contact-overlay-wrapper .input-wrapper input[type=submit].pos:hover {
  background-color: #558a6a;
}
.contact-overlay-wrapper .input-wrapper input[type=submit].ghost {
  background: transparent;
  border: solid 1px #cccccc;
  color: black;
}
.contact-overlay-wrapper .input-wrapper input[type=submit].ghost:hover {
  border-color: rgb(180, 126, 0);
  color: rgb(180, 126, 0);
}
.contact-overlay-wrapper .input-wrapper input[type=submit].ghost.lit {
  border-color: white;
  color: white;
}
.contact-overlay-wrapper .input-wrapper input[type=submit].ghost.lit:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
}
.contact-overlay-wrapper .input-wrapper input[type=submit].ghost.dar {
  border-color: black;
  color: black;
}
.contact-overlay-wrapper .input-wrapper input[type=submit].ghost.dar:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
  color: white;
}
.contact-overlay-wrapper .input-wrapper input[type=submit].text-link {
  background: none;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  color: black;
}
.contact-overlay-wrapper .input-wrapper input[type=submit].text-link:hover {
  color: rgb(180, 126, 0);
}
.contact-overlay-wrapper .input-wrapper input[type=submit].center {
  text-align: center;
  justify-content: center;
}
.contact-overlay-wrapper .input-wrapper input[type=submit].full-width {
  width: 100%;
}
.contact-overlay-wrapper .input-wrapper input[type=submit].inline {
  display: inline-block;
}
.contact-overlay-wrapper .input-wrapper input[type=submit].right {
  justify-content: flex-end;
}
.contact-overlay-wrapper .input-wrapper input[type=submit].bold {
  font-weight: 500;
}
.contact-overlay-wrapper .input-wrapper input[type=submit] .icon-wrapper {
  display: inline-flex;
  margin-right: 0.5rem;
}
.contact-overlay-wrapper .input-wrapper input[type=submit].disabled {
  background-color: #999999;
  color: #4d4d4d;
  font-style: italic;
  cursor: initial;
}
.contact-overlay-wrapper .input-wrapper input[type=submit].disabled:hover {
  background-color: #999999;
  color: #4d4d4d;
}
.contact-overlay-wrapper .input-wrapper input[type=submit]:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 1200px) {
  .contact-overlay-wrapper .input-wrapper input[type=submit] {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  .contact-overlay-wrapper .input-wrapper input[type=submit] {
    width: 100%;
    margin-bottom: 1rem;
    margin-right: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.2rem;
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
  .contact-overlay-wrapper .input-wrapper input[type=submit] {
    font-size: 1rem;
  }
}
.contact-overlay-wrapper .input-wrapper:hover .select-wrapper select {
  border-color: rgb(180, 126, 0);
}
.contact-overlay-wrapper .input-wrapper:hover .select-wrapper:after {
  color: rgb(180, 126, 0);
}
.contact-overlay-wrapper .input-wrapper .align-right {
  margin-left: auto;
}
.contact-overlay-wrapper .input-wrapper input {
  background-color: transparent;
}
.contact-overlay-wrapper .input-wrapper select {
  background-color: transparent;
}

.team-wrapper {
  padding-top: 4rem;
  padding-bottom: 7rem;
}
@media only screen and (max-width: 768px) {
  .team-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.team-wrapper h2 {
  text-transform: none;
  margin-top: 4rem;
  margin-bottom: 3rem;
  letter-spacing: normal;
}
@media only screen and (max-width: 768px) {
  .team-wrapper h2 {
    margin-top: 2rem;
  }
}

ul.sidebar-subnav li a {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-decoration: none;
}
ul.sidebar-subnav li.active a {
  color: rgb(180, 126, 0);
}
ul.sidebar-subnav li:hover a {
  color: rgb(180, 126, 0);
}

.breadcrumbs-wrapper {
  max-width: 48rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media only screen and (max-width: 1200px) {
  .breadcrumbs-wrapper {
    max-width: 30rem;
  }
}
@media only screen and (max-width: 768px) {
  .breadcrumbs-wrapper {
    line-height: 1.2rem;
  }
}
.breadcrumbs-wrapper a,
.breadcrumbs-wrapper span {
  margin-right: 0.5rem;
  color: #b3b3b3;
  font-size: 0.9rem;
}
.breadcrumbs-wrapper a {
  text-decoration: underline;
}
.breadcrumbs-wrapper a:after {
  margin-left: 0.5rem;
  content: "›";
  display: inline-block;
}
.breadcrumbs-wrapper a:hover {
  color: rgb(180, 126, 0);
}

/* Banner / widgets */
.banner-widget-text {
  margin-top: 2rem;
  padding-top: 2rem;
  font-size: 0.9rem;
  border-top: solid 1px #cccccc;
}
.banner-widget-text a {
  text-decoration: none;
  margin-bottom: 0.1rem;
}
.banner-widget-text a:hover {
  border-bottom: solid 0.5px;
  text-decoration: none;
}

.banner-widget-link {
  font-size: 0.9rem;
}

@media only screen and (max-width: 768px) {
  .two-col-page-wrapper .two-col-sidebar-wrapper.margin-right-l {
    margin-right: 0;
  }
}
.two-col-page-wrapper .two-col-content-wrapper h1 {
  text-align: left;
}
.two-col-page-wrapper .two-col-content-wrapper h3 {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .two-col-page-wrapper .two-col-content-wrapper p img {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    float: none !important;
    display: block;
    margin-bottom: 1rem;
  }
}
.two-col-page-wrapper .two-col-content-wrapper a {
  text-decoration: none;
  border-bottom: solid 0.5px;
  margin-bottom: 0.1rem;
}
.two-col-page-wrapper .two-col-content-wrapper a:hover {
  text-decoration: none;
}
.two-col-page-wrapper .two-col-content-wrapper a:hover {
  color: rgb(180, 126, 0);
}
.two-col-page-wrapper .two-col-content-wrapper ul,
.two-col-page-wrapper .two-col-content-wrapper ol {
  line-height: 1.8rem;
  list-style-position: inside;
  padding-left: 0;
}
.two-col-page-wrapper .two-col-content-wrapper ul li,
.two-col-page-wrapper .two-col-content-wrapper ol li {
  font-weight: 300;
}
.two-col-page-wrapper .two-col-content-wrapper ul {
  list-style-type: disc;
}
.two-col-page-wrapper .two-col-content-wrapper ol {
  list-style-type: decimal;
}

/* Accordeon generic styling */
.accordeon {
  list-style-type: none !important;
}
.accordeon .accordeon_item {
  margin-bottom: 0.5rem;
}
.accordeon .accordeon_item.active .accordeon_title {
  color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
}
.accordeon .accordeon_item.active .accordeon_title:after {
  border-color: rgb(180, 126, 0) transparent transparent transparent;
}
.accordeon .active > .accordeon_title:after {
  transform: rotate(-90deg);
  transition: all ease 0.2s;
}
.accordeon .accordeon_title {
  position: relative;
  cursor: pointer;
  padding: 0.8rem;
  padding-left: 0;
  padding-bottom: 0.1rem;
  color: black;
  font-size: 1.1rem;
  border-bottom: solid 1px #b3b3b3;
  text-transform: none;
  letter-spacing: normal;
}
.accordeon .accordeon_title:after {
  position: absolute;
  top: 17px;
  right: 0.2rem;
  content: "›";
  transition: all ease 0.2s;
  transform: rotate(90deg);
}
.accordeon .accordeon_title:hover {
  color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
}
.accordeon .accordeon_title:hover:after {
  border-color: rgb(180, 126, 0) transparent transparent transparent;
}
.accordeon .accordeon_content {
  padding: 0.5rem;
  padding-left: 0;
  display: none;
}
.accordeon .accordeon_content .text {
  line-height: 1.4rem;
}

/* Image header */
.header-image-wrapper {
  background-image: url("../jpg/background-footer-location.jpg");
  background-size: cover;
  background-position: center center;
  position: relative;
}
.header-image-wrapper h1 {
  text-align: center;
  width: 100%;
  color: white;
  font-size: 3rem;
  line-height: initial;
  z-index: 3;
  font-weight: 300;
}
@media only screen and (max-width: 768px) {
  .header-image-wrapper h1 {
    font-size: 2rem;
  }
}
.header-image-wrapper h1 em {
  font-weight: 500;
}
.header-image-wrapper:after {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: " ";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 56;
  z-index: 2;
}

.notification-bar {
  flex-direction: row;
  background-color: rgb(180, 126, 0);
  color: white;
  display: none;
}
.notification-bar .content-wrapper {
  display: flex;
  flex-direction: column;
}
.notification-bar p {
  font-size: 1.1rem;
  text-align: center;
  width: 100%;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.notification-bar p strong {
  font-weight: 500;
}
.notification-bar.active {
  display: block;
}

@media only screen and (max-width: 768px) {
  .testimonial-form-wrapper {
    align-self: stretch !important;
  }
}
@media only screen and (max-width: 768px) {
  .testimonial-form-wrapper .testimonial-form .input-wrapper {
    align-self: stretch;
  }
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit] {
  margin-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  align-items: center;
  display: flex;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 0;
  color: white;
  background: red;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit] svg {
  stroke: white;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].xs {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].med {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].lrg {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].wide-m {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].padding-left-s {
  padding-left: 1rem;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].padding-left-m {
  padding-left: 2rem;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].padding-left-ml {
  padding-left: 3rem;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].padding-left-l {
  padding-left: 4rem;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].padding-right-s {
  padding-right: 1rem;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].padding-right-m {
  padding-right: 2rem;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].padding-right-ml {
  padding-right: 3rem;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].padding-right-l {
  padding-right: 4rem;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].pri {
  background-color: rgb(180, 126, 0);
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].pri:hover {
  background-color: #ce9000;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].sec {
  background-color: rgb(0, 0, 0);
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].sec:hover {
  background-color: #4d4d4d;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].pos {
  background-color: #6da583;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].pos:hover {
  background-color: #558a6a;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].ghost {
  background: transparent;
  border: solid 1px #cccccc;
  color: black;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].ghost:hover {
  border-color: rgb(180, 126, 0);
  color: rgb(180, 126, 0);
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].ghost.lit {
  border-color: white;
  color: white;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].ghost.lit:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].ghost.dar {
  border-color: black;
  color: black;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].ghost.dar:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
  color: white;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].text-link {
  background: none;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  color: black;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].text-link:hover {
  color: rgb(180, 126, 0);
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].center {
  text-align: center;
  justify-content: center;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].full-width {
  width: 100%;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].inline {
  display: inline-block;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].right {
  justify-content: flex-end;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].bold {
  font-weight: 500;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit] .icon-wrapper {
  display: inline-flex;
  margin-right: 0.5rem;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].disabled {
  background-color: #999999;
  color: #4d4d4d;
  font-style: italic;
  cursor: initial;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit].disabled:hover {
  background-color: #999999;
  color: #4d4d4d;
}
.testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit]:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 1200px) {
  .testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit] {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  .testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit] {
    width: 100%;
    margin-bottom: 1rem;
    margin-right: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.2rem;
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
  .testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit] {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .testimonial-form-wrapper .testimonial-form .input-wrapper input[type=submit] {
    width: 100%;
  }
}

/* Checkout pages styling --------------------------------- */
.order-overview-row {
  display: flex;
  flex: 1;
  flex-direction: row;
  margin-top: 0.5rem;
  border-bottom: solid 1px #cccccc;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .order-overview-row {
    flex-basis: auto;
  }
}
@media only screen and (max-width: 1000px) {
  .order-overview-row {
    flex-direction: column;
    padding-bottom: 0.5rem;
  }
}
.order-overview-row.giftcard-entry {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}
.order-overview-row.giftcard-entry input[type=text] {
  border-radius: 0;
  border: solid 1px black;
  -webkit-appearance: none;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  letter-spacing: 0.4rem;
  margin-right: 0.5rem;
  font-family: Consolas, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace;
}
@media only screen and (max-width: 768px) {
  .order-overview-row.giftcard-entry input[type=text] {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.5rem;
    text-align: center;
  }
}
.order-overview-row.giftcard-entry input[type=button] {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border: none;
  outline: none;
  background-color: black;
  color: white;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .order-overview-row.giftcard-entry input[type=button] {
    width: 100%;
    margin-right: 0;
  }
}
.order-overview-row.giftcard-entry input[type=button]:hover {
  background: rgb(180, 126, 0);
}
.order-overview-row.giftcard-validation p {
  font-weight: bold;
  color: #cc0000;
  margin-top: 0;
}
.order-overview-row.giftcard-validation.giftcard-success p {
  color: #6da583;
}
.order-overview-row.overview-shipping p strong {
  font-weight: 500;
}
.order-overview-row.overview-shipping .input-wrapper strong {
  font-weight: 500;
}
.order-overview-row.overview-shipping .input-wrapper label {
  cursor: pointer;
  color: rgb(0, 0, 0);
}
.order-overview-row.overview-shipping .input-wrapper .shipping_details {
  color: gray;
  margin-top: 0.3rem;
  margin-bottom: 0;
  font-style: italic;
}
.order-overview-row #shipping-price {
  color: #cccccc;
}
.order-overview-row #shipping-price .active {
  color: black;
}
.order-overview-row.no-margin {
  margin: 0;
}
.order-overview-row.no-border {
  border: none;
}
.order-overview-row > div {
  display: flex;
  flex: 1;
  align-items: center;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}
.order-overview-row > div.center {
  text-align: center;
  justify-content: center;
}
.order-overview-row > div.left {
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
}
.order-overview-row > div.no-grow {
  flex-grow: 0;
}
@media only screen and (max-width: 1000px) {
  .order-overview-row > div.empty-cell {
    display: none;
  }
}
.order-overview-row > div .mobile-label {
  display: none;
}
@media only screen and (max-width: 1000px) {
  .order-overview-row > div .mobile-label {
    display: inline-flex;
    margin-right: 0.2rem;
  }
}
.order-overview-row > div#remove-item a {
  text-decoration: none;
  color: #cc0000;
  font-size: 1.3rem;
}
@media only screen and (max-width: 1000px) {
  .order-overview-row > div#remove-item a {
    font-size: 1rem;
    display: flex;
    align-items: center;
  }
}
.order-overview-row > div#remove-item a svg {
  width: 1rem;
  height: 1rem;
}
@media only screen and (max-width: 1000px) {
  .order-overview-row > div#remove-item a svg {
    fill: #cc0000;
  }
}
.order-overview-row > div#remove-item a .remove-label {
  display: none;
}
@media only screen and (max-width: 1000px) {
  .order-overview-row > div#remove-item a .remove-label {
    display: inline-flex;
    margin-right: 0.5rem;
    text-decoration: underline;
  }
}
.order-overview-row > div#remove-item a:hover svg {
  fill: rgb(180, 126, 0);
}
.order-overview-row > div#remove-item:hover a {
  color: rgb(180, 126, 0);
}
@media only screen and (max-width: 1000px) {
  .order-overview-row > div.four {
    justify-content: center;
    font-weight: 500;
  }
}
@media only screen and (max-width: 1000px) {
  .order-overview-row > div.four a {
    text-align: center;
  }
}
@media only screen and (max-width: 1000px) {
  .order-overview-row > div.product-image-wrapper {
    justify-content: center;
    margin-bottom: 0.5rem;
  }
}
.order-overview-row > div.product-image-wrapper a {
  justify-content: center;
}
@media only screen and (max-width: 1000px) {
  .order-overview-row > div.product-image-wrapper a {
    text-align: center;
  }
}
.order-overview-row > div.product-image-wrapper a img {
  max-width: 70%;
  width: auto;
  height: auto;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  align-self: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .order-overview-row > div.product-image-wrapper a img {
    width: 100%;
    max-width: 10rem;
  }
}
@media only screen and (max-width: 1000px) {
  .order-overview-row > div.product-image-wrapper a img {
    max-width: 50%;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
  }
}
.order-overview-row.overview-header > div {
  justify-content: center;
  font-weight: 500;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media only screen and (max-width: 1000px) {
  .order-overview-row.overview-header {
    display: none;
  }
}
.order-overview-row.overview-shipping .four {
  align-items: flex-start;
}
@media only screen and (max-width: 1000px) {
  .order-overview-row.overview-shipping .four {
    text-align: center;
    justify-content: center;
    align-items: center;
  }
}
@media only screen and (max-width: 1000px) {
  .order-overview-row.overview-shipping .four p {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
@media only screen and (max-width: 1000px) {
  .order-overview-row.overview-totals > div {
    text-align: center;
    align-items: center;
    justify-content: center;
  }
}
@media only screen and (max-width: 1000px) {
  .order-overview-row.overview-totals > div p {
    margin-top: 1rem;
    margin-bottom: 0.2rem;
  }
}
.order-overview-row.overview-totals > div strong {
  font-size: 1.5rem;
  font-weight: 500;
}

.checkout-form-wrapper .input-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 1000px) {
  .checkout-form-wrapper .input-row {
    flex-direction: column;
    width: 100%;
    margin-bottom: 0.2rem;
    flex-basis: auto;
  }
}
.checkout-form-wrapper .input-row label {
  flex: 1;
  width: 100%;
  cursor: pointer;
  margin-right: 0.3rem;
}
@media only screen and (max-width: 1000px) {
  .checkout-form-wrapper .input-row label {
    margin-top: 0.5rem;
  }
}
.checkout-form-wrapper .input-row .select-wrapper {
  display: flex;
  flex: 2;
  align-self: flex-start;
  width: 100%;
  position: relative;
}
.checkout-form-wrapper .input-row .select-wrapper select {
  width: 100%;
  height: auto;
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border: none;
  border-bottom: solid 1px #cccccc;
  border-radius: 0;
  webkit-appearance: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media only screen and (max-width: 1000px) {
  .checkout-form-wrapper .input-row .select-wrapper select {
    margin-bottom: 1rem;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    flex-basis: auto;
    align-self: flex-start;
  }
}
@media only screen and (max-width: 480px) {
  .checkout-form-wrapper .input-row .select-wrapper select {
    margin-bottom: 0.5rem;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }
}
.checkout-form-wrapper .input-row .select-wrapper select:focus, .checkout-form-wrapper .input-row .select-wrapper select:hover {
  border-color: rgb(180, 126, 0);
}
.checkout-form-wrapper .input-row .select-wrapper select option {
  padding-left: 0;
  text-indent: 10px;
}
.checkout-form-wrapper .input-row .select-wrapper:after {
  position: absolute;
  content: "›";
  height: 100%;
  width: 1rem;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  z-index: 2;
  font-size: 1.4rem;
  pointer-events: none;
  transform: rotate(90deg);
  color: #cccccc;
}
.checkout-form-wrapper .input-row .select-wrapper:after:hover {
  color: rgb(180, 126, 0);
}
.checkout-form-wrapper .input-row .select-wrapper:hover select {
  color: black;
}
.checkout-form-wrapper .input-row input[type=text],
.checkout-form-wrapper .input-row input[type=tel],
.checkout-form-wrapper .input-row input[type=email] {
  flex: 2;
  align-self: flex-start;
  width: 100%;
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border: none;
  border-radius: 0;
  border-bottom: solid 1px #cccccc;
}
@media only screen and (max-width: 1000px) {
  .checkout-form-wrapper .input-row input[type=text],
  .checkout-form-wrapper .input-row input[type=tel],
  .checkout-form-wrapper .input-row input[type=email] {
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 480px) {
  .checkout-form-wrapper .input-row input[type=text],
  .checkout-form-wrapper .input-row input[type=tel],
  .checkout-form-wrapper .input-row input[type=email] {
    margin-bottom: 0.5rem;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }
}
.checkout-form-wrapper .input-row input[type=text]:-webkit-autofill,
.checkout-form-wrapper .input-row input[type=tel]:-webkit-autofill,
.checkout-form-wrapper .input-row input[type=email]:-webkit-autofill {
  background-color: rgb(180, 126, 0);
  color: white;
}
.checkout-form-wrapper .input-row input[type=text]:focus, .checkout-form-wrapper .input-row input[type=text]:hover,
.checkout-form-wrapper .input-row input[type=tel]:focus,
.checkout-form-wrapper .input-row input[type=tel]:hover,
.checkout-form-wrapper .input-row input[type=email]:focus,
.checkout-form-wrapper .input-row input[type=email]:hover {
  border-color: rgb(180, 126, 0);
}
.checkout-form-wrapper .input-row input[type=submit] {
  margin-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  align-items: center;
  display: flex;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 0;
  color: white;
  background: red;
  flex: 2;
  margin-top: 1rem;
  text-align: center;
  margin-left: auto;
  width: 100%;
}
.checkout-form-wrapper .input-row input[type=submit] svg {
  stroke: white;
}
.checkout-form-wrapper .input-row input[type=submit].xs {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.checkout-form-wrapper .input-row input[type=submit].med {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.checkout-form-wrapper .input-row input[type=submit].lrg {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.checkout-form-wrapper .input-row input[type=submit].wide-m {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.checkout-form-wrapper .input-row input[type=submit].padding-left-s {
  padding-left: 1rem;
}
.checkout-form-wrapper .input-row input[type=submit].padding-left-m {
  padding-left: 2rem;
}
.checkout-form-wrapper .input-row input[type=submit].padding-left-ml {
  padding-left: 3rem;
}
.checkout-form-wrapper .input-row input[type=submit].padding-left-l {
  padding-left: 4rem;
}
.checkout-form-wrapper .input-row input[type=submit].padding-right-s {
  padding-right: 1rem;
}
.checkout-form-wrapper .input-row input[type=submit].padding-right-m {
  padding-right: 2rem;
}
.checkout-form-wrapper .input-row input[type=submit].padding-right-ml {
  padding-right: 3rem;
}
.checkout-form-wrapper .input-row input[type=submit].padding-right-l {
  padding-right: 4rem;
}
.checkout-form-wrapper .input-row input[type=submit].pri {
  background-color: rgb(180, 126, 0);
}
.checkout-form-wrapper .input-row input[type=submit].pri:hover {
  background-color: #ce9000;
}
.checkout-form-wrapper .input-row input[type=submit].sec {
  background-color: rgb(0, 0, 0);
}
.checkout-form-wrapper .input-row input[type=submit].sec:hover {
  background-color: #4d4d4d;
}
.checkout-form-wrapper .input-row input[type=submit].pos {
  background-color: #6da583;
}
.checkout-form-wrapper .input-row input[type=submit].pos:hover {
  background-color: #558a6a;
}
.checkout-form-wrapper .input-row input[type=submit].ghost {
  background: transparent;
  border: solid 1px #cccccc;
  color: black;
}
.checkout-form-wrapper .input-row input[type=submit].ghost:hover {
  border-color: rgb(180, 126, 0);
  color: rgb(180, 126, 0);
}
.checkout-form-wrapper .input-row input[type=submit].ghost.lit {
  border-color: white;
  color: white;
}
.checkout-form-wrapper .input-row input[type=submit].ghost.lit:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
}
.checkout-form-wrapper .input-row input[type=submit].ghost.dar {
  border-color: black;
  color: black;
}
.checkout-form-wrapper .input-row input[type=submit].ghost.dar:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
  color: white;
}
.checkout-form-wrapper .input-row input[type=submit].text-link {
  background: none;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  color: black;
}
.checkout-form-wrapper .input-row input[type=submit].text-link:hover {
  color: rgb(180, 126, 0);
}
.checkout-form-wrapper .input-row input[type=submit].center {
  text-align: center;
  justify-content: center;
}
.checkout-form-wrapper .input-row input[type=submit].full-width {
  width: 100%;
}
.checkout-form-wrapper .input-row input[type=submit].inline {
  display: inline-block;
}
.checkout-form-wrapper .input-row input[type=submit].right {
  justify-content: flex-end;
}
.checkout-form-wrapper .input-row input[type=submit].bold {
  font-weight: 500;
}
.checkout-form-wrapper .input-row input[type=submit] .icon-wrapper {
  display: inline-flex;
  margin-right: 0.5rem;
}
.checkout-form-wrapper .input-row input[type=submit].disabled {
  background-color: #999999;
  color: #4d4d4d;
  font-style: italic;
  cursor: initial;
}
.checkout-form-wrapper .input-row input[type=submit].disabled:hover {
  background-color: #999999;
  color: #4d4d4d;
}
.checkout-form-wrapper .input-row input[type=submit]:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 1200px) {
  .checkout-form-wrapper .input-row input[type=submit] {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  .checkout-form-wrapper .input-row input[type=submit] {
    width: 100%;
    margin-bottom: 1rem;
    margin-right: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.2rem;
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
  .checkout-form-wrapper .input-row input[type=submit] {
    font-size: 1rem;
  }
}
.checkout-form-wrapper .input-row:hover .select-wrapper select {
  border-color: rgb(180, 126, 0);
}
.checkout-form-wrapper .input-row:hover .select-wrapper:after {
  color: rgb(180, 126, 0);
}
.checkout-form-wrapper .input-row .align-right {
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  .checkout-form-wrapper .margin-right-l {
    margin-right: 0;
  }
}

.checkout-cancelled-wrapper p a {
  text-decoration: none;
  border-bottom: solid 0.5px;
  margin-bottom: 0.1rem;
}
.checkout-cancelled-wrapper p a:hover {
  text-decoration: none;
}

.checkout-complete-wrapper {
  background-image: url("../jpg/background-checkout.jpg");
  background-position: center center;
  background-size: cover;
  min-height: 50rem;
  color: white;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .checkout-complete-wrapper {
    height: 70vh;
    min-height: 35rem;
    background-position-x: 90%;
  }
}
.checkout-complete-wrapper:before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: " ";
  position: absolute;
  background-color: rgba(180, 126, 0, 0.8);
  z-index: 56;
  z-index: 1;
}
.checkout-complete-wrapper .content-wrapper {
  z-index: 2;
  text-align: center;
  justify-content: center;
  align-items: center;
  max-width: 30rem;
  margin-bottom: 1rem;
}
.checkout-complete-wrapper .content-wrapper h1 {
  font-size: 3rem;
  line-height: 3.5rem;
  margin-top: 0;
}
@media only screen and (max-width: 768px) {
  .checkout-complete-wrapper .content-wrapper h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
.checkout-complete-wrapper .content-wrapper .order-details {
  font-size: 1.3rem;
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
}
.checkout-complete-wrapper .content-wrapper .order-details b {
  text-transform: uppercase;
}
.checkout-complete-wrapper .content-wrapper a {
  color: white;
  text-decoration: none;
  border-bottom: solid 0.5px;
  margin-bottom: 0.1rem;
}
.checkout-complete-wrapper .content-wrapper a:hover {
  text-decoration: none;
}

.checkout-progress {
  justify-content: center;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  .checkout-progress {
    margin-bottom: 1rem;
    justify-content: flex-start;
  }
}
.checkout-progress ul li {
  display: inline-flex;
  margin-right: 2rem;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .checkout-progress ul li {
    display: flex;
    font-size: 1.3rem;
  }
}
.checkout-progress ul li:hover a {
  color: rgb(180, 126, 0);
}
.checkout-progress ul li.active a {
  color: rgb(180, 126, 0);
}
.checkout-progress ul li a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.checkout-progress ul li a span {
  display: inline-flex;
  margin-right: 0.5rem;
}

.checkout-button-wrapper {
  margin-top: 3rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  .checkout-button-wrapper {
    flex-direction: column-reverse !important;
  }
}
@media only screen and (max-width: 768px) {
  .checkout-button-wrapper > div {
    margin-right: 0;
  }
}
.checkout-button-wrapper > div .cta-button {
  margin-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  align-items: center;
  display: flex;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 0;
  color: white;
  background: red;
}
.checkout-button-wrapper > div .cta-button svg {
  stroke: white;
}
.checkout-button-wrapper > div .cta-button.xs {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.checkout-button-wrapper > div .cta-button.med {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.checkout-button-wrapper > div .cta-button.lrg {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.checkout-button-wrapper > div .cta-button.wide-m {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.checkout-button-wrapper > div .cta-button.padding-left-s {
  padding-left: 1rem;
}
.checkout-button-wrapper > div .cta-button.padding-left-m {
  padding-left: 2rem;
}
.checkout-button-wrapper > div .cta-button.padding-left-ml {
  padding-left: 3rem;
}
.checkout-button-wrapper > div .cta-button.padding-left-l {
  padding-left: 4rem;
}
.checkout-button-wrapper > div .cta-button.padding-right-s {
  padding-right: 1rem;
}
.checkout-button-wrapper > div .cta-button.padding-right-m {
  padding-right: 2rem;
}
.checkout-button-wrapper > div .cta-button.padding-right-ml {
  padding-right: 3rem;
}
.checkout-button-wrapper > div .cta-button.padding-right-l {
  padding-right: 4rem;
}
.checkout-button-wrapper > div .cta-button.pri {
  background-color: rgb(180, 126, 0);
}
.checkout-button-wrapper > div .cta-button.pri:hover {
  background-color: #ce9000;
}
.checkout-button-wrapper > div .cta-button.sec {
  background-color: rgb(0, 0, 0);
}
.checkout-button-wrapper > div .cta-button.sec:hover {
  background-color: #4d4d4d;
}
.checkout-button-wrapper > div .cta-button.pos {
  background-color: #6da583;
}
.checkout-button-wrapper > div .cta-button.pos:hover {
  background-color: #558a6a;
}
.checkout-button-wrapper > div .cta-button.ghost {
  background: transparent;
  border: solid 1px #cccccc;
  color: black;
}
.checkout-button-wrapper > div .cta-button.ghost:hover {
  border-color: rgb(180, 126, 0);
  color: rgb(180, 126, 0);
}
.checkout-button-wrapper > div .cta-button.ghost.lit {
  border-color: white;
  color: white;
}
.checkout-button-wrapper > div .cta-button.ghost.lit:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
}
.checkout-button-wrapper > div .cta-button.ghost.dar {
  border-color: black;
  color: black;
}
.checkout-button-wrapper > div .cta-button.ghost.dar:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
  color: white;
}
.checkout-button-wrapper > div .cta-button.text-link {
  background: none;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  color: black;
}
.checkout-button-wrapper > div .cta-button.text-link:hover {
  color: rgb(180, 126, 0);
}
.checkout-button-wrapper > div .cta-button.center {
  text-align: center;
  justify-content: center;
}
.checkout-button-wrapper > div .cta-button.full-width {
  width: 100%;
}
.checkout-button-wrapper > div .cta-button.inline {
  display: inline-block;
}
.checkout-button-wrapper > div .cta-button.right {
  justify-content: flex-end;
}
.checkout-button-wrapper > div .cta-button.bold {
  font-weight: 500;
}
.checkout-button-wrapper > div .cta-button .icon-wrapper {
  display: inline-flex;
  margin-right: 0.5rem;
}
.checkout-button-wrapper > div .cta-button.disabled {
  background-color: #999999;
  color: #4d4d4d;
  font-style: italic;
  cursor: initial;
}
.checkout-button-wrapper > div .cta-button.disabled:hover {
  background-color: #999999;
  color: #4d4d4d;
}
.checkout-button-wrapper > div .cta-button:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 1200px) {
  .checkout-button-wrapper > div .cta-button {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  .checkout-button-wrapper > div .cta-button {
    width: 100%;
    margin-bottom: 1rem;
    margin-right: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.2rem;
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
  .checkout-button-wrapper > div .cta-button {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .checkout-button-wrapper > div .cta-button {
    justify-content: center;
  }
}

.payment-bar-wrapper .payment-bar-logo-wrapper {
  border-top: solid 1px #cccccc;
  border-bottom: solid 1px #cccccc;
  padding-top: 1rem;
  padding-bottom: 1rem;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
.payment-bar-wrapper .payment-bar-logo-wrapper img {
  width: auto;
  height: auto;
  max-width: 7rem;
  max-height: 2rem;
  align-self: center;
}
@media only screen and (max-width: 1200px) {
  .payment-bar-wrapper .payment-bar-logo-wrapper img {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .payment-bar-wrapper .payment-bar-logo-wrapper img {
    margin-bottom: 1rem;
    margin-left: 0.2rem;
    margin-right: 0.2rem;
  }
}

.cookie-table {
  display: block !important;
}
.cookie-table th {
  text-align: left;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .cookie-table th {
    display: none;
  }
}
.cookie-table tr td {
  padding-right: 2rem;
}
@media only screen and (max-width: 768px) {
  .cookie-table tr td {
    display: block;
  }
}
.cookie-table tr td span {
  display: none;
}
@media only screen and (max-width: 768px) {
  .cookie-table tr td span {
    display: inline-block;
  }
}
.cookie-table tr td:last-of-type {
  padding-right: 0;
}
@media only screen and (max-width: 768px) {
  .cookie-table tr td:nth-of-type(1) {
    font-weight: bold;
    margin-top: 1rem;
  }
}

.sold-login div.column {
  width: 100%;
  max-width: 20rem;
}
.sold-login form input,
.sold-login form button[type=submit] {
  width: 100%;
  max-width: 20rem;
}
.sold-login .error-message {
  color: #cc0000;
}

.product-details-header-wrapper {
  display: flex;
  flex-wrap: nowrap;
  border: solid 1px lightgray;
  border-right: none;
}
@media only screen and (max-width: 768px) {
  .product-details-header-wrapper {
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    border: none;
    border-top: solid 1px lightgray;
  }
}
.product-details-header-wrapper.other-type .product-image-block .label {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  color: white;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
@media only screen and (max-width: 480px) {
  .product-details-header-wrapper.other-type .product-image-block .label {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
    font-size: 0.9rem;
  }
}
.product-details-header-wrapper.other-type .product-image-block .label.reserved {
  background-color: #9ABAD2;
}
.product-details-header-wrapper.other-type .product-image-block .label.reserved span {
  color: white;
}
.product-details-header-wrapper.other-type .product-image-block .label.popular {
  background-color: #4D6046;
}
.product-details-header-wrapper.other-type .product-image-block .label.popular span {
  color: white;
}
.product-details-header-wrapper.other-type .product-image-block .label.rare {
  background-color: #597A86;
}
.product-details-header-wrapper.other-type .product-image-block .label.rare span {
  color: white;
}
.product-details-header-wrapper.other-type .product-image-block .label.new {
  background-color: rgb(180, 126, 0);
}
.product-details-header-wrapper.other-type .product-image-block .label.new span {
  color: white;
}
.product-details-header-wrapper.other-type .product-image-block .label.sold {
  background-color: #bf2d2d;
}
.product-details-header-wrapper.other-type .product-image-block .label.sold span {
  color: white;
}
.product-details-header-wrapper.other-type .product-image-block .block-content.zoomed-front {
  background-position: center center;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  .product-details-header-wrapper.other-type .product-image-block .block-content .item-favorite {
    left: initial !important;
    right: -1.3rem !important;
  }
}
.product-details-header-wrapper.other-type.one-image {
  width: 100%;
  max-width: 1200px;
  align-self: center;
}
.product-details-header-wrapper.other-type.one-image .product-image-block[data-image=image_0] .item-favorite {
  position: absolute;
  top: 1rem !important;
  left: initial !important;
  right: -1.45rem !important;
}
@media only screen and (max-width: 768px) {
  .product-details-header-wrapper.other-type.one-image .product-image-block[data-image=image_0] .item-favorite {
    left: 50% !important;
    right: auto !important;
    top: initial !important;
    bottom: -1.3rem;
    transform: translateX(-50%);
  }
}
.product-details-header-wrapper.other-type.one-image .product-image-block {
  flex: 1;
  flex-basis: 50%;
}
@media only screen and (max-width: 768px) {
  .product-details-header-wrapper.other-type.one-image .specs-block-wrapper {
    order: 1;
  }
}
.product-details-header-wrapper.other-type.one-image .specs-block-wrapper {
  flex: 1;
  flex-basis: 50%;
  height: 50%;
}
.product-details-header-wrapper.other-type.one-image .specs-block-wrapper .block-content {
  height: 100%;
}
.product-details-header-wrapper.other-type.one-image .specs-block-wrapper:after {
  padding-bottom: 100%;
}
.product-details-header-wrapper.other-type.two-images .product-image-block[data-image=image_1] .item-favorite {
  position: absolute;
  top: 1rem !important;
  left: initial !important;
  right: -1.45rem !important;
}
@media only screen and (max-width: 768px) {
  .product-details-header-wrapper.other-type.two-images .product-image-block[data-image=image_1] .item-favorite {
    right: -1.5rem !important;
    top: initial !important;
    bottom: -1.3rem;
    margin-right: 0;
  }
}
@media only screen and (max-width: 480px) {
  .product-details-header-wrapper.other-type.two-images .product-image-block[data-image=image_1] .item-favorite {
    right: -1.4rem !important;
  }
}
.product-details-header-wrapper.other-type.two-images .specs-block-wrapper {
  flex: 2;
  flex-basis: 50%;
  height: 50%;
  flex-basis: content;
}
.product-details-header-wrapper.other-type.two-images .specs-block-wrapper .block-content {
  height: 100%;
}
.product-details-header-wrapper.other-type.two-images .specs-block-wrapper .specs-row {
  max-width: 30rem;
}
.product-details-header-wrapper.other-type.two-images .specs-block-wrapper:after {
  padding-bottom: 50%;
}
.product-details-header-wrapper.other-type.three-images .item-favorite {
  position: absolute;
  top: 1rem !important;
  left: initial !important;
  right: -1.45rem !important;
}
@media only screen and (max-width: 768px) {
  .product-details-header-wrapper.other-type.three-images .item-favorite {
    right: -1.9rem !important;
    top: initial !important;
    bottom: -1.3rem;
  }
}
@media only screen and (max-width: 480px) {
  .product-details-header-wrapper.other-type.three-images .item-favorite {
    right: -1.5rem !important;
  }
}
.product-details-header-wrapper.other-type .specs-block-wrapper .block-content.specs-block {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.product-details-header-wrapper .product-image-block {
  flex: 1;
  flex-grow: 0;
  flex-basis: 25%;
  border-right: solid 1px lightgray;
  background-color: white;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .product-details-header-wrapper .product-image-block {
    flex-wrap: wrap;
    width: 50%;
    flex-basis: 50%;
    flex-grow: 0;
    border-bottom: solid 1px lightgray;
  }
}
.product-details-header-wrapper .product-image-block:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.product-details-header-wrapper .product-image-block:last-of-type {
  border-right: 0;
}
@media only screen and (max-width: 768px) {
  .product-details-header-wrapper .product-image-block:nth-of-type(2) {
    order: -1;
  }
}
@media only screen and (max-width: 768px) {
  .product-details-header-wrapper .product-image-block.specs-block-wrapper {
    width: 100%;
    flex-basis: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  .product-details-header-wrapper .product-image-block.specs-block-wrapper:after {
    display: none;
  }
}
.product-details-header-wrapper .product-image-block .image-overlay {
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  z-index: 5;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  cursor: zoom-in;
}
.product-details-header-wrapper .product-image-block .image-overlay svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  stroke: white;
}
.product-details-header-wrapper .product-image-block .item-360-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: auto;
  display: flex;
  align-items: center;
  height: 2.8rem;
  font-size: 0.9rem;
  z-index: 5;
  font-family: "Work Sans", sans-serif;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: solid 1px lightgray;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 2rem;
}
@media only screen and (max-width: 768px) {
  .product-details-header-wrapper .product-image-block .item-360-label {
    right: 0.5rem;
    top: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    height: 2rem;
  }
}
.product-details-header-wrapper .product-image-block .item-360-label:hover {
  background-color: rgb(180, 126, 0);
  color: white;
}
.product-details-header-wrapper .product-image-block .item-360-label:hover .icon svg {
  stroke: white;
}
.product-details-header-wrapper .product-image-block .item-360-label .icon {
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
}
.product-details-header-wrapper .product-image-block .item-360-label .icon svg {
  width: 0.8rem;
  height: 0.8rem;
  stroke: gray;
}
@media only screen and (max-width: 768px) {
  .product-details-header-wrapper .product-image-block .item-360-label .icon svg {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.product-details-header-wrapper .product-image-block:hover {
  cursor: pointer;
}
.product-details-header-wrapper .product-image-block:hover .image-overlay {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.product-details-header-wrapper .product-image-block .block-content {
  position: absolute;
  width: 100%;
  height: 100%;
}
.product-details-header-wrapper .product-image-block .block-content img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.product-details-header-wrapper .product-image-block .block-content .label-wrapper {
  position: absolute;
  display: flex;
  gap: 0.3rem;
  left: 0;
  top: 0;
  z-index: 2;
}
.product-details-header-wrapper .product-image-block .block-content .label-wrapper .label {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  color: white;
  position: relative;
}
@media only screen and (max-width: 480px) {
  .product-details-header-wrapper .product-image-block .block-content .label-wrapper .label {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
    font-size: 0.9rem;
  }
}
.product-details-header-wrapper .product-image-block .block-content .label-wrapper .label.reserved {
  background-color: #9ABAD2;
}
.product-details-header-wrapper .product-image-block .block-content .label-wrapper .label.reserved span {
  color: white;
}
.product-details-header-wrapper .product-image-block .block-content .label-wrapper .label.popular {
  background-color: #4D6046;
}
.product-details-header-wrapper .product-image-block .block-content .label-wrapper .label.popular span {
  color: white;
}
.product-details-header-wrapper .product-image-block .block-content .label-wrapper .label.rare {
  background-color: #597A86;
}
.product-details-header-wrapper .product-image-block .block-content .label-wrapper .label.rare span {
  color: white;
}
.product-details-header-wrapper .product-image-block .block-content .label-wrapper .label.new {
  background-color: rgb(180, 126, 0);
}
.product-details-header-wrapper .product-image-block .block-content .label-wrapper .label.new span {
  color: white;
}
.product-details-header-wrapper .product-image-block .block-content .label-wrapper .label.sold {
  background-color: #bf2d2d;
}
.product-details-header-wrapper .product-image-block .block-content .label-wrapper .label.sold span {
  color: white;
}
.product-details-header-wrapper .product-image-block .block-content.canvas-360 .product-image-loader {
  width: 3rem;
  height: 3rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  z-index: 1;
}
.product-details-header-wrapper .product-image-block .block-content.canvas-360 .product-image-loader svg {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  animation-name: loader;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: running;
  animation-timing-function: linear;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-delay: 0s;
  transform-origin: center center;
  color: rgb(180, 126, 0);
}
@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.product-details-header-wrapper .product-image-block .block-content.canvas-360 .item-enlarge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  z-index: 2;
  left: auto;
  right: 1rem;
}
.product-details-header-wrapper .product-image-block .block-content.canvas-360 .item-enlarge svg {
  stroke: #cccccc;
}
.product-details-header-wrapper .product-image-block .block-content.canvas-360 .item-enlarge:hover svg, .product-details-header-wrapper .product-image-block .block-content.canvas-360 .item-enlarge:active svg {
  stroke: black;
}
.product-details-header-wrapper .product-image-block .block-content.canvas-360 .item-enlarge.active svg {
  stroke: black;
}
.product-details-header-wrapper .product-image-block .block-content.canvas-360 .button {
  position: absolute;
  left: 0;
  top: 0;
  width: 22%;
  height: 22%;
  z-index: 1;
  justify-content: center;
  align-items: center;
  opacity: 0;
  cursor: pointer;
  transition: 0.3s opacity ease;
  display: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.product-details-header-wrapper .product-image-block .block-content.canvas-360 .button svg {
  width: 100%;
  height: 100%;
  fill: rgb(180, 126, 0);
  opacity: 1;
}
.product-details-header-wrapper .product-image-block .block-content.canvas-360 .button svg path {
  fill: inherit;
}
.product-details-header-wrapper .product-image-block .block-content.canvas-360 .button.show {
  display: flex;
}
.product-details-header-wrapper .product-image-block .block-content.canvas-360 .button:hover {
  opacity: 0.95;
}
.product-details-header-wrapper .product-image-block .block-content.canvas-360 .button.play.show {
  transition: 1.3s opacity ease;
}
.product-details-header-wrapper .product-image-block .block-content.canvas-360 .button.play.show:hover {
  transition: 0.3s opacity ease;
}
.product-details-header-wrapper .product-image-block .block-content.canvas-360 > canvas,
.product-details-header-wrapper .product-image-block .block-content.canvas-360 > img {
  background-color: white;
  position: relative;
  z-index: 1;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  max-height: 30rem;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
  cursor: url("../svg/360_icon.svg"), auto;
}
@media only screen and (max-width: 768px) {
  .product-details-header-wrapper .product-image-block .block-content.canvas-360 > canvas,
  .product-details-header-wrapper .product-image-block .block-content.canvas-360 > img {
    height: 100%;
    max-height: 20rem;
    width: 100%;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
.product-details-header-wrapper .product-image-block .block-content.canvas-360 > canvas {
  background: none;
}
.product-details-header-wrapper .product-image-block .block-content.canvas-360 > img {
  cursor: default;
}
.product-details-header-wrapper .product-image-block .block-content.canvas-360 canvas {
  width: 100%;
  height: 100%;
}
.product-details-header-wrapper .product-image-block .block-content.zoomed-front {
  background-size: 153%;
  background-position: 91% 50%;
}
.product-details-header-wrapper .product-image-block .block-content.specs-block {
  display: flex;
  flex-direction: column;
  cursor: default;
  background-color: #f2f2f2;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding: 2rem;
}
@media only screen and (max-width: 768px) {
  .product-details-header-wrapper .product-image-block .block-content.specs-block {
    padding: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    width: 100%;
    height: auto;
    position: relative;
  }
}
.product-details-header-wrapper .product-image-block .block-content.specs-block .specs-row {
  width: 100%;
  font-weight: normal;
  width: 100%;
  border-bottom: solid 1px #cccccc;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .product-details-header-wrapper .product-image-block .block-content.specs-block .specs-row {
    max-width: none;
  }
}
.product-details-header-wrapper .product-image-block .block-content.specs-block .specs-row .specs-label {
  flex-basis: 10rem;
  margin-right: 1rem;
  flex-grow: 0;
  font-weight: bold;
  align-self: flex-start;
}
.product-details-header-wrapper .product-image-block .block-content.specs-block .specs-row .description-text {
  align-self: flex-start;
}
.product-details-header-wrapper .product-image-block .block-content.specs-block .specs-row .description-text p {
  margin-top: 0;
}
.product-details-header-wrapper .product-image-block .block-content.specs-block .specs-row .description-text p:last-of-type {
  margin-bottom: 0;
}
.product-details-header-wrapper .product-image-block .block-content.specs-block .specs-block-link {
  margin-top: auto;
  display: block;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .product-details-header-wrapper .product-image-block .block-content.specs-block .specs-block-link {
    margin-top: 2rem;
    text-align: center;
  }
}
.product-details-header-wrapper .product-image-block .block-content.specs-block .specs-block-link:hover {
  cursor: pointer;
  color: rgb(180, 126, 0);
}
.product-details-header-wrapper .product-image-block .block-content.specs-block .specs-block-link .arrow.down {
  margin-left: 0.2rem;
  display: inline-block;
  transform: rotate(90deg);
}
.product-details-header-wrapper .product-image-block .item-favorite {
  background-color: white;
  border-radius: 100%;
  border: solid 1px lightgray;
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: auto;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.5s ease;
  top: 1rem !important;
  left: -1.45rem !important;
  padding: 0.8rem;
  display: flex;
  align-items: center;
  width: 2.8rem;
  height: 2.8rem;
  z-index: 10;
}
.product-details-header-wrapper .product-image-block .item-favorite.small {
  top: 0.2rem;
  right: 0.2rem;
  padding: 0.3rem;
  width: 1.6rem;
  height: 1.6rem;
}
.product-details-header-wrapper .product-image-block .item-favorite.medium {
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.3rem;
  width: 2rem;
  height: 2rem;
}
@media only screen and (max-width: 768px) {
  .product-details-header-wrapper .product-image-block .item-favorite {
    width: 2.5rem;
    height: 2.5rem;
    margin-top: 0.5rem;
    margin-right: 0.5rem;
  }
  .product-details-header-wrapper .product-image-block .item-favorite svg {
    width: 100%;
    height: 100%;
  }
}
.product-details-header-wrapper .product-image-block .item-favorite svg {
  stroke: #cccccc;
  fill: white;
  transition: fill, stroke 0.3s ease;
}
.product-details-header-wrapper .product-image-block .item-favorite:hover {
  transform: scale(1.2, 1.2);
}
.product-details-header-wrapper .product-image-block .item-favorite:hover svg {
  stroke: none;
  fill: #ff6969;
}
.product-details-header-wrapper .product-image-block .item-favorite.active svg {
  stroke: #ff6969;
  fill: #ff6969;
}
.product-details-header-wrapper .product-image-block .item-favorite.active:hover svg {
  stroke: #ff9c9c;
  fill: #ff9c9c;
}
@media only screen and (max-width: 768px) {
  .product-details-header-wrapper .product-image-block .item-favorite {
    top: calc(100% - 1.8rem) !important;
    right: 2rem !important;
  }
}
@media only screen and (max-width: 480px) {
  .product-details-header-wrapper .product-image-block .item-favorite {
    right: 0 !important;
    left: -1.3rem !important;
    margin-right: 0 !important;
  }
}
.product-details-header-wrapper .product-image-block .item-favorite svg {
  width: 1.3rem;
  height: 1.3rem;
}
.product-details-header-wrapper .product-image-block .item-favorite svg path {
  stroke: gray;
  stroke-width: 1;
}
.product-details-header-wrapper .product-image-block .item-favorite.active svg path {
  stroke: #ff6969;
}
.product-details-header-wrapper .product-image-block .item-favorite:hover svg path {
  stroke: #ff6969;
}

.product-details-header-intro {
  margin-top: 1rem;
  margin-bottom: 0;
}
.product-details-header-intro h1 {
  font-size: 2.7rem;
  margin-top: 0;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .product-details-header-intro h1 {
    font-size: 2rem;
    line-height: 2rem;
    margin-top: 0;
    margin-bottom: 0.3rem;
  }
}
.product-details-header-intro h2 {
  font-size: 1.5rem;
  line-height: 1.5rem;
  text-transform: none;
  letter-spacing: normal;
}
@media only screen and (max-width: 768px) {
  .product-details-header-intro h2 {
    margin-top: 0;
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}

.popular-item {
  font-weight: 500;
  max-width: -moz-fit-content;
  max-width: fit-content;
  display: inline;
  margin-bottom: 0;
  color: #4d6046;
  background: linear-gradient(to right, #4d6046 0%, #a6afa2 80%, #4d6046 100%);
  background-size: 15rem 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer ease-in-out 4s 5 forwards;
  background-repeat: no-repeat;
  background-position: -15rem 0;
  background-color: #4d6046;
}

@keyframes shimmer {
  0% {
    background-position: -20rem;
  }
  100% {
    background-position: 20rem;
  }
}
.offer-details-wrapper {
  border: solid 1px lightgray;
  margin-left: auto;
  background-color: #f7f7f7;
  padding: 1.5rem;
  margin-top: -3.5rem;
  position: relative;
  align-items: center;
}
@media only screen and (max-width: 1000px) {
  .offer-details-wrapper {
    margin-top: 0;
    margin-left: 0;
    padding: 0;
    padding-top: 1rem;
    border: none;
    border-top: solid 1px lightgray;
  }
}
.offer-details-wrapper .google-reviews {
  position: absolute;
  display: flex;
  bottom: -13px;
  padding: 0 0.3rem 0 0.3rem;
  align-items: center;
  background-color: #f7f7f7;
  left: 50%;
  gap: 0.3rem;
  transform: translateX(-50%);
}
.offer-details-wrapper .google-reviews p {
  margin: 0;
}
@media only screen and (max-width: 1000px) {
  .offer-details-wrapper .google-reviews {
    position: relative;
    justify-content: center;
  }
}
.offer-details-wrapper .google-reviews .star-rating-wrapper {
  display: flex;
}
.offer-details-wrapper .google-reviews .star-rating-wrapper svg {
  width: 1rem;
  height: 1rem;
}
.offer-details-wrapper .google-reviews a {
  font-size: 0.8rem;
  text-wrap: nowrap;
}
.offer-details-wrapper .our-price {
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.3rem;
  margin-bottom: 0.5rem;
}
.offer-details-wrapper .new-price {
  text-align: center;
  font-size: 0.9rem;
  line-height: 0.9rem;
  margin-bottom: 0.7rem;
}

.button-wrapper {
  margin-top: 0;
}
@media only screen and (max-width: 1000px) {
  .button-wrapper {
    flex-direction: column;
  }
}
.button-wrapper .cta-button {
  flex-grow: 0;
  flex-shrink: 0;
  margin-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  align-items: center;
  display: flex;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 0;
  color: white;
  background: red;
}
.button-wrapper .cta-button svg {
  stroke: white;
}
.button-wrapper .cta-button.xs {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.button-wrapper .cta-button.med {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.button-wrapper .cta-button.lrg {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.button-wrapper .cta-button.wide-m {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.button-wrapper .cta-button.padding-left-s {
  padding-left: 1rem;
}
.button-wrapper .cta-button.padding-left-m {
  padding-left: 2rem;
}
.button-wrapper .cta-button.padding-left-ml {
  padding-left: 3rem;
}
.button-wrapper .cta-button.padding-left-l {
  padding-left: 4rem;
}
.button-wrapper .cta-button.padding-right-s {
  padding-right: 1rem;
}
.button-wrapper .cta-button.padding-right-m {
  padding-right: 2rem;
}
.button-wrapper .cta-button.padding-right-ml {
  padding-right: 3rem;
}
.button-wrapper .cta-button.padding-right-l {
  padding-right: 4rem;
}
.button-wrapper .cta-button.pri {
  background-color: rgb(180, 126, 0);
}
.button-wrapper .cta-button.pri:hover {
  background-color: #ce9000;
}
.button-wrapper .cta-button.sec {
  background-color: rgb(0, 0, 0);
}
.button-wrapper .cta-button.sec:hover {
  background-color: #4d4d4d;
}
.button-wrapper .cta-button.pos {
  background-color: #6da583;
}
.button-wrapper .cta-button.pos:hover {
  background-color: #558a6a;
}
.button-wrapper .cta-button.ghost {
  background: transparent;
  border: solid 1px #cccccc;
  color: black;
}
.button-wrapper .cta-button.ghost:hover {
  border-color: rgb(180, 126, 0);
  color: rgb(180, 126, 0);
}
.button-wrapper .cta-button.ghost.lit {
  border-color: white;
  color: white;
}
.button-wrapper .cta-button.ghost.lit:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
}
.button-wrapper .cta-button.ghost.dar {
  border-color: black;
  color: black;
}
.button-wrapper .cta-button.ghost.dar:hover {
  background-color: rgb(180, 126, 0);
  border-color: rgb(180, 126, 0);
  color: white;
}
.button-wrapper .cta-button.text-link {
  background: none;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  color: black;
}
.button-wrapper .cta-button.text-link:hover {
  color: rgb(180, 126, 0);
}
.button-wrapper .cta-button.center {
  text-align: center;
  justify-content: center;
}
.button-wrapper .cta-button.full-width {
  width: 100%;
}
.button-wrapper .cta-button.inline {
  display: inline-block;
}
.button-wrapper .cta-button.right {
  justify-content: flex-end;
}
.button-wrapper .cta-button.bold {
  font-weight: 500;
}
.button-wrapper .cta-button .icon-wrapper {
  display: inline-flex;
  margin-right: 0.5rem;
}
.button-wrapper .cta-button.disabled {
  background-color: #999999;
  color: #4d4d4d;
  font-style: italic;
  cursor: initial;
}
.button-wrapper .cta-button.disabled:hover {
  background-color: #999999;
  color: #4d4d4d;
}
.button-wrapper .cta-button:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 1200px) {
  .button-wrapper .cta-button {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  .button-wrapper .cta-button {
    width: 100%;
    margin-bottom: 1rem;
    margin-right: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.2rem;
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
  .button-wrapper .cta-button {
    font-size: 1rem;
  }
}
.button-wrapper .cta-button .icon-wrapper {
  width: 1.3rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .button-wrapper .cta-button .icon-wrapper {
    height: 1.3rem;
  }
}

.product-details-summary-wrapper {
  display: flex;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .product-details-summary-wrapper {
    margin-bottom: 1rem;
  }
}
.product-details-summary-wrapper .summary-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  border-right: solid 1px lightgray;
}
@media only screen and (max-width: 768px) {
  .product-details-summary-wrapper .summary-wrapper {
    flex-direction: row;
    padding-right: 1rem;
    padding-bottom: 0.5rem;
    margin-right: 0;
    margin-bottom: 0.5rem;
    border-right: 0;
    border-bottom: solid 1px lightgray;
  }
}
.product-details-summary-wrapper .summary-wrapper:last-of-type {
  border-right: 0;
}
.product-details-summary-wrapper .summary-wrapper .label {
  text-align: center;
  line-height: 1rem;
  margin-bottom: 0.3rem;
}
@media only screen and (max-width: 768px) {
  .product-details-summary-wrapper .summary-wrapper .label {
    flex: 1;
    justify-content: flex-start;
    text-align: left;
  }
}
.product-details-summary-wrapper .summary-wrapper .detail {
  display: flex;
  align-items: center;
  text-align: center;
  font-weight: bold;
  line-height: 1rem;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .product-details-summary-wrapper .summary-wrapper .detail {
    flex: 1;
    justify-content: flex-start;
    text-align: left;
  }
}
.product-details-summary-wrapper .summary-wrapper .detail .icon-wrapper {
  display: inline-flex;
  align-items: center;
  margin-left: 0.5rem;
}
.product-details-summary-wrapper .summary-wrapper .detail .icon-wrapper.checkmark {
  fill: #62c17f;
  stroke: #62c17f;
  width: 0.8rem;
  height: 0.8rem;
}
.product-details-summary-wrapper .summary-wrapper .detail .icon-wrapper.cross {
  fill: #ff6969;
  width: 0.8rem;
  height: 0.8rem;
}

.product-specs-wrapper {
  background-color: #333333;
  color: white;
}
.product-specs-wrapper .content-wrapper {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 768px) {
  .product-specs-wrapper .desktop-specs-list {
    display: none;
  }
}
.product-specs-wrapper .specs-tab-bar-wrapper {
  margin-bottom: 5rem;
  width: 100%;
}
@media only screen and (max-width: 1000px) {
  .product-specs-wrapper .specs-tab-bar-wrapper {
    display: none;
  }
}
.product-specs-wrapper .specs-tab-bar-wrapper ul {
  list-style: none;
  display: flex;
}
.product-specs-wrapper .specs-tab-bar-wrapper ul li {
  display: inline-flex;
  flex: 1;
  justify-content: center;
  text-align: center;
  position: relative;
  border-bottom: solid 1px white;
  padding-bottom: 0.5rem;
  margin-right: 1rem;
}
.product-specs-wrapper .specs-tab-bar-wrapper ul li:last-of-type {
  margin-right: 0;
}
.product-specs-wrapper .specs-tab-bar-wrapper ul li:after {
  content: "";
  width: 100%;
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 5px;
  background: white;
  display: none;
}
.product-specs-wrapper .specs-tab-bar-wrapper ul li.active:after {
  display: block;
}
.product-specs-wrapper .specs-tab-bar-wrapper ul li:hover {
  cursor: pointer;
}
.product-specs-wrapper .specs-tab-bar-wrapper ul li:hover:after {
  display: block;
}
@media only screen and (max-width: 1000px) {
  .product-specs-wrapper .margin-right-l {
    margin-right: 0;
  }
}
@media only screen and (max-width: 1000px) {
  .product-specs-wrapper .mobile-row .specs-row {
    flex-direction: row;
  }
}
.product-specs-wrapper .specs-row {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}
@media only screen and (max-width: 768px) {
  .product-specs-wrapper .specs-row {
    flex-direction: row;
  }
}
.product-specs-wrapper .specs-row:last-of-type {
  border-bottom: 0;
}
.product-specs-wrapper .specs-row .specs-label {
  flex: 1;
  flex-grow: 0;
  flex-basis: 10rem;
  margin-right: 1rem;
  font-weight: 500;
}
@media only screen and (max-width: 1000px) {
  .product-specs-wrapper .specs-row .specs-label {
    flex-basis: auto;
    flex: 1;
  }
}
.product-specs-wrapper .specs-row .one {
  display: flex;
  align-items: center;
}
.product-specs-wrapper .specs-row .one p {
  margin-top: 0;
}
.product-specs-wrapper .specs-row .align-items-start {
  align-items: flex-start !important;
}
.product-specs-wrapper .specs-row .icon-wrapper {
  display: inline-flex;
  align-items: center;
  width: 0.8rem;
  height: 0.8rem;
  margin-left: 0.5rem;
}
.product-specs-wrapper .specs-row .icon-wrapper svg {
  stroke: white;
  fill: white;
  width: 100%;
  height: 100%;
  display: inline-block;
}
.product-specs-wrapper .specs-row .icon-wrapper.cross {
  width: 0.75rem;
  height: 0.75rem;
  stroke-width: 0;
}
.product-specs-wrapper .specs-row .icon-wrapper.cross svg {
  fill: #ff6969;
}
.product-specs-wrapper .specs-row .icon-wrapper.checkmark svg {
  stroke: #62c17f;
}
.product-specs-wrapper .specs-row.description-wrapper .specs-label {
  align-items: flex-start;
  align-self: flex-start;
}

.usp-list-wrapper {
  background-color: #f2f2f2;
}
.usp-list-wrapper ul.usp-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .usp-list-wrapper ul.usp-list {
    flex-direction: column;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.usp-list-wrapper ul.usp-list li {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  margin-right: 1.5rem;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .usp-list-wrapper ul.usp-list li:last-of-type {
    margin-bottom: 0;
  }
}
.usp-list-wrapper ul.usp-list li a {
  display: inline-flex;
  align-items: center;
}
.usp-list-wrapper ul.usp-list li a:hover {
  color: rgb(180, 126, 0);
}
.usp-list-wrapper ul.usp-list li a:hover .icon-wrapper svg {
  fill: rgb(180, 126, 0);
}
.usp-list-wrapper ul.usp-list li a .icon-wrapper {
  display: flex;
  align-items: center;
  padding: 0.7rem;
  margin-right: 0.5rem;
  background-color: white;
  border-radius: 100%;
}
.usp-list-wrapper ul.usp-list li a .icon-wrapper svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: rgb(180, 126, 0);
}

section.video-player-wrapper .video-embed-wrapper {
  width: 100%;
  padding-bottom: 41.1%;
  background-color: #000;
}
@media only screen and (max-width: 768px) {
  section.video-player-wrapper .video-embed-wrapper {
    padding-bottom: 36.1%;
  }
}

.dec-opening_2023 {
  margin-bottom: 3rem;
}
.dec-opening_2023 h3 {
  font-weight: 300;
  text-transform: none;
}
.dec-opening_2023 ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.dec-opening_2023 ul li {
  display: flex;
}
.dec-opening_2023 ul li span {
  flex: 3;
  white-space: nowrap;
  font-weight: 300;
}
.dec-opening_2023 ul li .sec-span {
  flex: 4;
  white-space: nowrap;
  font-weight: 300;
}

.opening-popup-wrapper {
  position: fixed;
  background-color: rgb(180, 126, 0);
  color: white;
  box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  left: 1rem;
  bottom: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-radius: 1rem;
}
.opening-popup-wrapper .header {
  display: flex;
  justify-content: end;
  gap: 2rem;
}
.opening-popup-wrapper .header p {
  margin-top: 0;
}
.opening-popup-wrapper .header div {
  width: 1.5rem;
  height: 1.5rem;
}
.opening-popup-wrapper .header div img {
  width: 1.5rem;
  height: 1.5rem;
}
.opening-popup-wrapper p {
  max-width: 20rem;
}
.opening-popup-wrapper h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 0.9rem;
}
.opening-popup-wrapper h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 0.8rem;
}
.opening-popup-wrapper table {
  width: 100%;
  padding-right: 2rem;
  max-width: 15rem;
}
.opening-popup-wrapper tbody {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.opening-popup-wrapper tr {
  display: flex;
  width: 100%;
}
.opening-popup-wrapper td {
  font-size: 0.8rem;
  line-height: normal;
  margin-top: 0.1rem;
  margin-bottom: 0.1rem;
  width: 7rem;
}

#opening-popup-close:hover {
  opacity: 30%;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  cursor: pointer;
}

.hamburger-shop-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media only screen and (max-width: 1200px) {
  .fix-pad-nav {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media only screen and (max-width: 1200px) {
  .fix-pad-nav-add {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

.mobile-sub-header {
  background-color: #1f1f1f;
  padding: 0.5rem 1rem 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-sub-header g {
  stroke: white;
}
@media only screen and (min-width: 768px) {
  .mobile-sub-header {
    display: none;
  }
}
.mobile-sub-header .search-open {
  width: 1.5rem;
  height: 1.5rem;
}

.specificWatch-wrapper {
  flex-direction: column;
  text-align: center;
  align-items: center;
  margin-top: 2rem;
}
.specificWatch-wrapper a {
  background-color: #bcbcbc;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 2rem;
  text-decoration: none;
  transition: all;
  transition-duration: 0.2s;
  margin: 1.5rem 0 2rem 0;
}
.specificWatch-wrapper a:hover {
  opacity: 70%;
}

.phone #contact-popup-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (max-width: 768px) {
  .phone #contact-popup-form button {
    width: 100% !important;
    margin-bottom: 0 !important;
  }
}
.phone #contact-popup-form .button_wrapper {
  display: flex;
  justify-content: end;
  width: 100%;
}
.phone #contact-popup-form .button_wrapper button {
  width: 60%;
  justify-content: center;
  padding: 1rem 0;
  font-weight: 400;
  font-size: 0.9rem;
}
.phone .input_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.phone .input_wrapper label {
  width: 40%;
  font-size: 0.8rem;
}
.phone .input_wrapper input {
  width: 60%;
  background-color: transparent;
  border: 0;
  border-bottom: black 1px solid;
}

.contact-popup-footer .button-wrapper {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.filter-row-wrapper {
  display: flex;
  width: 100%;
  margin-bottom: 1.7rem;
}
.filter-row-wrapper .filter-label-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
}
.filter-row-wrapper .filter-input-wrapper.select {
  display: flex;
  align-items: center;
  flex: 2;
  border-bottom: solid 1px #A2AAAD;
}
.filter-row-wrapper .filter-input-wrapper.select select {
  background-color: transparent;
  width: 100%;
  outline: none;
  border: none;
}/*# sourceMappingURL=style.css.map */