/*!
	PLEASE DO NOT EDIT STYLE.CSS - YOUR EDITS WILL BE OVERWRITTEN
	Always edit style.scss and compile (see sass-lang.com for more info)

	@author development@bronte.co.nz
*/
/*
    Variables
*/
/* Convert site specific variables into SCSS variables @todo refactor later, inherited from PESG */
body.slug-set-password {
  --color-spring-wood: #f8f9f3;
  --color-dark: #0b1a23;
  --color-xdark: #032125;
  --color-light: #7e9393;
  --color-xlight: #f1f4f9;
  --color-highlight: #0b1a23;
  --color-highlight-dark: #6b8e29;
  --color-link: #32799f;
  --color-link-bright: #32799f;
  --color-button: #32799f;
  --color-button-solid-bg: #32799f;
  --color-button-outline: #084b56;
  --color-vdark: #0b1a23;
  --color-header-nav-bg: #0b1a23;
}

/*
    Animations, Mixins etc.
*/
.is-loading {
  position: relative;
}
.is-loading:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.9) url("../images/loader.svg") 50% 50% no-repeat;
  z-index: 2;
  transition: 2s ease-in-out;
}

.half-right {
  width: 100vw;
}
@media (min-width: 992px) {
  .half-right {
    position: absolute;
    left: 50%;
    width: 50vw;
    top: 0;
    height: 100%;
    object-fit: cover;
    object-position: center left;
  }
}

.z-item {
  z-index: 20;
}

.h100p {
  height: 100%;
}

.lc > :last-child {
  margin-bottom: 0;
}

.posr {
  position: relative;
}

.text-center {
  text-align: center;
}

.bg-red-2 {
  background-color: #811622;
}

.bg-black {
  background-color: #000;
}

.bg-grey-light {
  background-color: #f7f4f4;
}

.bg-green-light {
  background-color: #7ea835;
}

.c-white {
  color: #fff;
}

.c-grey {
  color: #8c8c8c;
}

.c-blue-light {
  color: #4396c3;
}

.cursor-pointer {
  cursor: pointer;
}

.fw-500 {
  font-weight: 500;
}

.lc > :last-child {
  margin-bottom: 0;
}

/*
    General / Universal Styles
*/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100vh;
}

body {
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  color: #000;
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.5;
}

a {
  transition: 0.2s ease-in-out;
  text-decoration: none;
  color: #8d001d;
}
a:hover {
  text-decoration: none;
}
main p a, main li a, main label a {
  border-bottom: 1px solid rgba(141, 0, 29, 0.3);
}
main p a:hover, main li a:hover, main label a:hover {
  border-bottom: 1px solid #8d001d;
  text-decoration: none;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

svg {
  max-width: 100%;
  height: auto;
}

p {
  margin: 0 0 1em;
}
p img {
  display: inline-block;
}

.text > :first-child {
  margin-top: 0;
}
.text ol,
.text ul {
  line-height: inherit;
  padding-left: 20px;
  margin-bottom: 1em;
}
.text li:last-child {
  margin-bottom: 0;
}
.text-bigger {
  font-size: 20px;
}

h1 {
  margin-top: 0;
  font-weight: 400;
  font-family: "Times New Roman", Arial, sans-serif;
  font-size: 42px;
  letter-spacing: -0.48px;
  line-height: 1;
}
@media (min-width: 992px) {
  h1 {
    font-size: 60px;
    letter-spacing: -0.52px;
  }
}
@media (min-width: 1200px) {
  h1 {
    font-size: 70px;
    letter-spacing: -0.58px;
  }
}

.h2,
h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5em;
  font-weight: 500;
}
@media (min-width: 992px) {
  .h2,
  h2 {
    font-size: 1.75rem;
    margin-bottom: 0.8em;
  }
}

.small {
  font-size: 13px;
}

.testimonial-item {
  margin-bottom: 40px;
}
.testimonial-item blockquote {
  margin: 0;
  padding: 0;
}
.testimonial-item p {
  line-height: 1.5;
  margin-top: 15px;
}
.testimonial-item .stars {
  width: 119px;
}
.testimonial-item .inner {
  overflow: hidden;
}
.testimonial-item img {
  max-width: none;
}
.testimonial-item cite {
  font-style: normal;
  font-size: 14px;
  margin-top: 7px;
}

/**
 * WooCommerce My Account page
 */
body.woocommerce-page main .woocommerce-MyAccount-navigation,
body.woocommerce-page main .woocommerce-MyAccount-content {
  padding: 30px 0 0;
}
@media (min-width: 992px) {
  body.woocommerce-page main .woocommerce-MyAccount-navigation,
  body.woocommerce-page main .woocommerce-MyAccount-content {
    padding: 60px 0 0;
  }
}
body.woocommerce-page main .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin-top: 0;
}
body.woocommerce-page main .woocommerce-MyAccount-navigation ul li {
  padding: 10px;
}
body.woocommerce-page main .woocommerce-MyAccount-content > .col-1 {
  width: 100%;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
}

.popup {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: 10px;
  background: #ffffff !important;
  text-align: center;
  position: fixed;
  bottom: 30px;
  right: 30px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: 1px solid rgb(194, 191, 191);
  z-index: 99999999 !important;
}

.popup .popexit {
  position: absolute;
  top: 20px;
  right: 25px;
  width: 5%;
  object-fit: cover;
  cursor: pointer;
}

.popup__title {
  font-size: 22px;
  font-weight: 600;
  text-align: left !important;
}

.popup__text {
  font-size: 15px;
  max-width: 340px;
  padding-top: 16px;
  padding-bottom: 32px;
  color: #777;
  font-weight: 400;
  text-align: left !important;
}

.popup__action {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.btn {
  padding: 10px 30px;
  color: #fff;
  font-weight: 500;
  border: none;
  border-radius: 7px;
  background: #811622;
  cursor: pointer;
  width: 100%;
}

.btn:focus {
  outline: 1px dashed #ed4747;
  outline-offset: 5px;
}

.btn.secondary {
  color: #00031e;
  background: #ebf6fd;
}

.buttons .btn {
  margin-right: 8px;
}
.buttons .btn:last-child {
  margin-right: 0;
}

.btn {
  -webkit-appearance: none;
  border-radius: 0;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
  padding: 9px 20px;
  cursor: pointer;
  transition: 0.2s all;
  border: 0;
}
.btn-solid {
  color: white;
  background: #8d001d;
}
.btn-outline-dark {
  border: 2px solid #fff;
  color: #fff;
  padding-top: 7px;
  padding-bottom: 7px;
}
.btn-order {
  color: #fff;
  background: #811622;
  height: 36px;
  line-height: 36px;
  white-space: nowrap;
  padding: 0;
  width: 164px;
  flex: 0 0 164px;
  margin-left: 22px;
  font-size: 15px;
}
.btn-order svg {
  margin-left: 7px;
}
.btn-order span:last-child {
  display: none;
}
.btn-order:hover {
  background: #69121c;
}
.btn-order.active {
  background: #69121c;
  font-weight: 700;
}
.btn-order.active span:first-child {
  display: none;
}
.btn-order.active span:last-child {
  display: block;
}
.btn-order.item-added {
  background-color: #8c8c8c;
}
.btn-order.order-disabled {
  pointer-events: none;
}

.masthead {
  padding: 16px 0 12px;
}
@media (min-width: 992px) {
  .masthead {
    padding: 20px 0 15px;
  }
}

.preheader {
  padding: 5px 0;
  font-size: 0.9rem;
}

.theme-options-phone p {
  color: #000;
  margin-bottom: 0;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .preheader-shim {
    position: fixed;
    top: 30px;
    left: 80vw;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 420;
  }
}
@media screen and (min-width: 1200px) {
  .preheader-shim {
    left: 60vw;
  }
}
@media screen and (min-width: 1600px) {
  .preheader-shim {
    left: 50vw;
  }
}
.preheader-active .preheader-shim {
  pointer-events: all;
}

.preheader-nav {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  z-index: 400;
  color: #323130;
  padding-top: 40px;
  transform: translateX(-40px);
  transition: 0.2s all;
  opacity: 0;
  pointer-events: none;
  height: 100%;
}
.preheader-active .preheader-nav {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.preheader-nav .container {
  height: 100%;
}
.preheader-nav:before {
  content: "";
  position: absolute;
  background: #fff;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: calc(100vh - 30px);
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .preheader-nav:before {
    width: 80vw;
  }
}
@media screen and (min-width: 1200px) {
  .preheader-nav:before {
    width: 60vw;
  }
}
@media screen and (min-width: 1600px) {
  .preheader-nav:before {
    width: 50vw;
  }
}
.preheader-nav .inner {
  position: relative;
  z-index: 200;
  max-width: 600px;
  height: 100%;
  padding-bottom: 50px;
  overflow: auto;
  padding-right: 20px;
}
.preheader-nav .text {
  font-size: 1.25rem;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .preheader-nav .text {
    font-size: 1.75rem;
    margin-bottom: 44px;
  }
}
.preheader-nav .small {
  margin-bottom: 20px;
}
.preheader-nav .inner-text {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 576px) {
  .preheader-nav .inner-text {
    max-width: 420px;
  }
}
@media (min-width: 992px) {
  .preheader-nav .inner-text {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.preheader-nav .item {
  margin-bottom: 30px;
}

[data-action=toggle-ccr-sites] svg {
  transition: 0.2s all;
}
.preheader-active [data-action=toggle-ccr-sites] svg {
  transform: rotate(180deg);
}

.preheader-active {
  overflow: hidden;
}

.logo-header {
  display: inline-block;
  text-indent: -999px;
  overflow: hidden;
  width: 234px;
  height: 45px;
  background: url("../images/logo@2x.png") no-repeat 50% 50%;
  background-size: contain;
}
@media (min-width: 992px) {
  .logo-header {
    width: 294px;
    height: 54px;
  }
}

.checkout-item.has-items a {
  position: relative;
  padding-right: 38px;
}
.checkout-item.has-items a span {
  font-size: 13px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  background: #95232e;
  border-radius: 100%;
  text-align: center;
  line-height: 25px;
  font-weight: 700;
  right: 0;
  top: -2px;
}

.side-menu {
  position: fixed;
  pointer-events: none;
  top: 105px;
  right: 0;
  bottom: 0;
  z-index: 750;
  transition: all ease-in-out 0.4s;
}
.side-menu .inner {
  height: calc(100vh - 61px);
  padding: 0;
  overflow: hidden;
  background: #f7f4f4;
  padding: 30px 12px;
  width: 100vw;
}
@media (min-width: 576px) {
  .side-menu .inner {
    width: 300px;
    padding: 30px;
  }
}
.side-menu a {
  color: #000;
  position: relative;
}
.side-menu li {
  padding: 8px 0;
}
.side-menu span {
  top: -4px !important;
}

.opened {
  overflow: hidden;
}
.opened .side-menu {
  transform: translateX(0) !important;
  pointer-events: all;
}
.opened .mobile-logo-shop {
  display: none;
}
.opened .mobile-logo-site {
  display: block;
}

.mobile-logo-site {
  display: none;
}

.menu-opener {
  z-index: 50;
  cursor: pointer;
  position: relative;
  width: 28px;
  height: 40px;
  flex: 0 0 28px;
  margin-left: auto;
}
.menu-opener:before, .menu-opener:after {
  content: "";
  backface-visibility: hidden;
  transition: all 0.4s;
  background: #8d001d;
  height: 2px;
  left: 0;
  right: 0;
  top: 12px;
  position: absolute;
}
.menu-opener:before {
  box-shadow: 0 17px 0 0 #8d001d;
}
.menu-opener:after {
  top: 21px;
}
.opened .menu-opener:before {
  box-shadow: 0 0 0 0 transparent;
  transform: rotate(225deg);
  top: 19px;
}
.opened .menu-opener:after {
  transform: rotate(315deg);
  top: 19px;
}
.side-menu .menu-opener {
  position: absolute;
  right: 12px;
  top: 28px;
}

.copyright {
  text-align: center;
  font-size: 14px;
  margin-top: 35px;
}
@media (min-width: 992px) {
  .copyright {
    text-align: right;
    margin-top: 0;
  }
}

.logo-footer {
  display: inline-block;
  text-indent: -999px;
  overflow: hidden;
  background: url("../images/logo-footer@2x.png") no-repeat 50% 50%;
  background-size: contain;
  margin-right: 16px;
  width: 132px;
  height: 44px;
}
@media (min-width: 992px) {
  .logo-footer {
    margin-right: 30px;
    width: 161px;
    height: 54px;
  }
}

footer {
  border-top: 2px solid #f1f4f9;
  padding: 30px 0;
}
@media (min-width: 992px) {
  footer {
    padding: 50px 0;
    border-top-width: 3px;
  }
}
footer .theme-options-phone {
  font-size: 18px;
}
footer .il {
  margin-bottom: 35px;
}
@media (min-width: 992px) {
  footer .il {
    margin-bottom: 0;
  }
}

/** @todo refactor later, inherited from PESG ***/
form.set-password textarea,
form.set-password input[type=search],
form.set-password input[type=text],
form.set-password input[type=password] {
  background: var(--color-xlight);
  padding: 10px;
  font-size: 1.2rem;
  border: 0;
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  width: 100%;
  display: block;
}
form.set-password textarea:focus-visible,
form.set-password input[type=search]:focus-visible,
form.set-password input[type=text]:focus-visible,
form.set-password input[type=password]:focus-visible {
  outline-color: var(--color-highlight);
}
form.set-password.search {
  position: relative;
}
form.set-password.search button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}
form.set-password label {
  font-weight: bold;
  display: inline-block;
  margin-bottom: 8px;
}
form.set-password :-ms-input-placeholder {
  opacity: 0.4;
  color: var(--color-dark);
}
form.set-password ::-moz-placeholder {
  opacity: 0.4;
  color: var(--color-dark);
}
form.set-password ::-webkit-input-placeholder {
  opacity: 0.4;
  color: var(--color-dark);
}

body.slug-set-password h2 {
  font-weight: bold;
}
body.slug-set-password main textarea,
body.slug-set-password main input[type=email],
body.slug-set-password main input[type=text],
body.slug-set-password main input[type=password] {
  border: 1px solid transparent;
  padding: 26px 0 11px 15px;
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  border-radius: 1px;
  color: var(--color-dark);
}
@media screen and (min-width: 1200px) {
  body.slug-set-password main textarea,
  body.slug-set-password main input[type=email],
  body.slug-set-password main input[type=text],
  body.slug-set-password main input[type=password] {
    padding: 16px 0 8px 15px;
  }
}
body.slug-set-password main textarea:focus,
body.slug-set-password main input[type=email]:focus,
body.slug-set-password main input[type=text]:focus,
body.slug-set-password main input[type=password]:focus {
  outline: none;
}
body.slug-set-password .notice {
  background-color: var(--color-xlight);
  padding: 15px;
  border-top: 3px #69121c solid;
}

.menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-header {
  justify-content: flex-end;
}
.menu-header li {
  margin-left: 16px;
}
.menu-header li:first-child {
  margin-left: 0;
}
@media (min-width: 992px) {
  .menu-header li {
    margin-left: 20px;
  }
}
@media (min-width: 1400px) {
  .menu-header li {
    margin-left: 40px;
  }
}
.menu-header a {
  font-size: 16px;
  color: #000;
  font-weight: 500;
}
@media (min-width: 992px) {
  .menu-header a {
    font-size: 18px;
  }
}
.menu-header a:hover {
  color: #8d001d;
}
.menu-header li:last-child {
  position: relative;
  top: -3px;
}
.menu-header li:last-child a:before {
  content: "";
  background-image: url("../images/icon-shopping-cart.svg");
  background-repeat: no-repeat;
  width: 23px;
  height: 23px;
  display: inline-block;
  margin-right: 5px;
  position: relative;
  top: 4px;
}
.menu-dashboard a {
  color: white;
  display: flex;
  padding: 16px 10px;
  align-items: baseline;
  position: relative;
  font-weight: 500;
  font-size: 14px;
}
@media (min-width: 992px) {
  .menu-dashboard a {
    font-size: 16px;
    padding: 20px 10px;
  }
}
.menu-dashboard a svg {
  margin-left: 5px;
}
.menu-dashboard a:after {
  transition: 0.2s ease-in-out;
  content: "";
  width: 100%;
  height: 0px;
  bottom: 0;
  left: 0;
  position: absolute;
  background: rgba(255, 255, 255, 0.55);
}
.menu-dashboard a:hover:after {
  height: 4px;
}
.menu-dashboard .current_page_parent a:after,
.menu-dashboard .current-menu-item a:after {
  content: "";
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
}
.menu-dashboard .current_page_parent a:hover:after,
.menu-dashboard .current-menu-item a:hover:after {
  background: rgba(255, 255, 255, 0.55);
}
.menu-login li:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 30px;
}
.menu .has-icon {
  padding-right: 32px;
}
@media (min-width: 992px) {
  .menu .has-icon {
    padding-right: 35px;
  }
}
.menu .has-icon img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.woocommerce a.remove {
  background-image: url("../images/remove-icon.svg");
  background-repeat: no-repeat;
  background-color: transparent;
  width: 20px;
  height: 20px;
  font-size: 0;
}
.woocommerce a.remove:hover {
  background: url("../images/remove-icon-red.svg") !important;
}

.woocommerce-invalid {
  position: relative;
}
.woocommerce-invalid .border {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #811622;
}

/*
	Page-specific styling. Please use as little as possible to ensure DRYness.
*/
.s-banner-home {
  overflow: hidden;
}
.s-banner-home .inner {
  padding: 24px 0;
}
@media (min-width: 992px) {
  .s-banner-home .inner {
    min-height: 408px;
    padding: 50px 0;
  }
}
.s-banner-home .text {
  max-width: 416px;
  margin-top: 30px;
}

.label-new {
  font-size: 10px;
  font-weight: 700;
  line-height: normal;
  border-radius: 2px;
  line-height: 14px;
  padding: 0 4px;
  margin-left: 7px;
  position: relative;
  top: 2px;
}

.s-sites {
  padding: 40px 0;
}
@media (min-width: 992px) {
  .s-sites {
    padding: 84px 0 100px;
  }
}

.sites-holder {
  margin-bottom: 40px;
  margin-left: -12px;
  margin-right: -12px;
}
.sites-holder h2 {
  padding-left: 12px;
}
@media (min-width: 576px) {
  .sites-holder h2 {
    padding-left: 0;
  }
}
@media (min-width: 576px) {
  .sites-holder {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .sites-holder {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .sites-holder {
    padding-right: 56px;
  }
}

.site-holder {
  transition: 0.2s all;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0);
  padding: 12px 12px 0;
}
@media (min-width: 576px) {
  .site-holder {
    padding: 20px 30px 0;
  }
}
.site-holder.active {
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
  padding: 20px 12px 0;
  margin-bottom: 14px;
}
@media (min-width: 576px) {
  .site-holder.active {
    padding: 30px 30px 0;
  }
}
.site-holder.active:not(:first-child) {
  margin-top: 34px;
}
.site-holder .site-icon {
  margin-right: 12px;
  width: 32px;
}
@media (min-width: 768px) {
  .site-holder .site-icon {
    margin-right: 18px;
    width: 64px;
  }
}

.site-opener {
  font-size: 20px;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  cursor: pointer;
}
@media (min-width: 768px) {
  .site-opener {
    font-size: 24px;
  }
}
.site-opener:hover {
  color: #8d001d;
}

.site-separation {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .site-separation {
    margin-top: 45px;
  }
}

.site-content {
  display: none;
  padding-top: 28px;
  padding-bottom: 1px;
}
.site-content .text {
  margin-bottom: 25px;
}

.site-opener-icon {
  position: absolute;
  top: 10px;
  right: 0;
  transition: 0.2s all;
}
@media (min-width: 768px) {
  .site-opener-icon {
    top: 22px;
  }
}
.active .site-opener-icon {
  transform: rotate(180deg);
}

.outer-link {
  padding-right: 25px;
  line-height: 20px;
  background: url("../images/outer.svg?v=220303") no-repeat 100% 50%;
}

.products-preview {
  padding-bottom: 38px;
  color: #032125;
}
.products-preview .description {
  font-size: 14px;
  line-height: 24px;
}
.products-preview .title {
  margin-right: 8px;
}

.loading-sp {
  opacity: 0.8;
  pointer-events: none;
}

.sh-price {
  width: 60px;
  flex: 0 0 60px;
  white-space: nowrap;
  font-size: 18px;
  line-height: 24px;
  margin-right: 4px;
}
@media (min-width: 768px) {
  .sh-price {
    text-align: right;
  }
}

.sh-price-pa {
  width: 24px;
  text-align: right;
  flex: 0 0 24px;
  font-size: 13px;
  line-height: normal;
}

.pp-item {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .pp-item {
    margin-bottom: 6px;
  }
}
.pp-item .il {
  flex: 0 0 100%;
  width: 100%;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .pp-item .il {
    flex: 0 1 auto;
    width: auto;
    margin-bottom: 0;
  }
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
  max-width: none;
}

#payment,
#order_review_heading,
#order_review {
  display: none;
}

.woocommerce-checkout .fee td,
.woocommerce-checkout .order-total td {
  position: relative;
}
.woocommerce-checkout .fee td:before,
.woocommerce-checkout .order-total td:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff url("../images/loader.svg") 50% 50% no-repeat;
  z-index: 2;
  transition: 2s ease-in-out;
}
.data-updated .woocommerce-checkout .fee td:before,
.data-updated .woocommerce-checkout .order-total td:before {
  display: none;
}

.order-details table {
  width: 100%;
  border: 1px #8c8c8c solid;
}
.order-details td {
  border-bottom: 1px #8c8c8c solid;
  padding: 15px 10px;
}
.order-details td input[type=text],
.order-details td input[type=email] {
  width: 100%;
}
.order-details tr:last-child td {
  border-bottom: none;
}

.common-questions h4 {
  font-size: 1rem;
  line-height: 1.5;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .common-questions h4 {
    line-height: 2;
  }
}
.common-questions h4:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 8px;
  height: 12px;
  background: url("../images/ch-r.svg") no-repeat center;
  background-size: contain;
  transition: 0.2s all;
}
@media (min-width: 992px) {
  .common-questions h4:before {
    top: 10px;
  }
}
.common-questions .question.active h4:before {
  transform: rotate(90deg);
}
.common-questions .answer {
  display: none;
  padding-left: 24px;
}

.select2-container--default .select2-selection--single {
  border: 0;
  border-radius: 0;
  margin: 0;
  height: 48px;
  background: url("../images/ch-d.svg") no-repeat calc(100% - 12px) 50% #f5f5f5;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 48px;
  padding-top: 8px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  display: none;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.woocommerce-checkout {
  padding-bottom: 50px;
}
@media (min-width: 992px) {
  .woocommerce-checkout {
    padding-bottom: 110px;
  }
}
.woocommerce-checkout h3 {
  border-bottom: 2px solid #f5f5f5;
  padding-bottom: 8px;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 18px;
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
@media (min-width: 992px) {
  .woocommerce-checkout h3 {
    font-size: 24px;
    margin-bottom: 22px;
    border-bottom-width: 3px;
    padding-bottom: 10px;
  }
}
.woocommerce-checkout input[type=text],
.woocommerce-checkout input[type=tel],
.woocommerce-checkout input[type=email] {
  background: #f5f5f5;
  height: 48px;
  line-height: 48px;
  font-size: 1rem;
  color: #000;
  padding-left: 7px;
  border: 0;
  padding: 14px 0 0 7px;
}
.woocommerce-checkout input[type=text]:focus,
.woocommerce-checkout input[type=tel]:focus,
.woocommerce-checkout input[type=email]:focus {
  outline: 1px solid #032125;
}

.woocommerce form .form-row {
  padding: 0;
  margin-bottom: 16px;
  position: relative;
}
.woocommerce form .form-row .required {
  display: none;
}
.woocommerce form .form-row label {
  position: absolute;
  transform: translate(12px, 17px);
  pointer-events: none;
  transition: 0.2s all;
  color: #8c8c8c;
  z-index: 2;
  font-size: 16px;
}
@media (min-width: 1200px) {
  .woocommerce form .form-row label {
    transform: translate(12px, 8px);
  }
}
.woocommerce form .form-row label[for^=stripe] {
  position: static;
  font-size: 14px;
  transform: unset;
  color: #323130;
}
@media (min-width: 1200px) {
  .woocommerce form .form-row label[for^=stripe] {
    transform: unset;
  }
}

.form-row:focus-within label,
.focus-within label {
  top: 0;
  transform: translate(6px, 0) !important;
  font-size: 12px !important;
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
  width: 100%;
}
@media (min-width: 576px) {
  .woocommerce form .form-row-first,
  .woocommerce form .form-row-last,
  .woocommerce-page form .form-row-first,
  .woocommerce-page form .form-row-last {
    width: calc(50% - 4px);
  }
}

.account-values .form-row {
  width: 100% !important;
}

@media (min-width: 992px) {
  .checkout-terms {
    margin-top: 45px;
  }
}
.checkout-terms textarea {
  width: 100%;
  height: 200px;
  padding: 20px 25px 70px;
  background: #f5f5f5;
  border: 0;
  font-size: 14px;
  line-height: 23px;
  color: #032125;
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
.checkout-terms textarea:focus {
  outline: none;
}
.checkout-terms h3 {
  border: 0;
  padding-bottom: 0;
}

.txa-holder {
  position: relative;
}

.woocommerce-cart-form .product-price {
  display: none;
}
.woocommerce-cart-form tbody tr:last-child {
  display: none;
}
.woocommerce-cart-form .cart_item {
  display: flex;
  width: 100%;
  align-items: center;
  margin-bottom: 24px;
}
.woocommerce-cart-form .cart_item > * {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.woocommerce-cart-form .product-name {
  flex: 1;
}
.woocommerce-cart-form .product-remove {
  order: 4;
}
.woocommerce-cart-form .product-thumbnail {
  padding: 0 !important;
  flex: 0 0 64px;
  width: 64px;
  margin-right: 10px;
  height: 64px;
  background: #8d001d;
}
@media (min-width: 768px) {
  .woocommerce-cart-form .product-thumbnail {
    margin-right: 20px;
  }
}

.woocommerce .quantity .qty {
  height: 34px;
  line-height: 34px;
  width: 45px;
  border: 0;
  padding: 0;
  text-align: center;
  background: #f5f5f5;
  font-size: 16px;
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  color: #8c8c8c;
}
@media (min-width: 768px) {
  .woocommerce .quantity .qty {
    height: 48px;
    line-height: 48px;
  }
}
.woocommerce .quantity input::-webkit-outer-spin-button,
.woocommerce .quantity input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
.woocommerce .quantity input[type=number] {
  -moz-appearance: textfield; /* Firefox */
}

.js-confirm-order {
  font-size: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
  min-width: 190px;
  text-align: center;
}

.woocommerce table.shop_table {
  border: 0;
}

@media (min-width: 768px) {
  .confirm-order {
    margin-top: 35px;
  }
}

.terms-chk-holder {
  font-size: 14px;
  margin-top: 25px;
}
.terms-chk-holder [type=checkbox] {
  width: 16px;
  height: 16px;
  margin: 0 16px 0 0;
}

body.inquiry-only .woocommerce-checkout-review-order-table .fee {
  display: none !important;
}

.banner-inner {
  padding: 22px 0 28px;
  margin-bottom: 46px;
}

.woocommerce-checkout table.cart img {
  width: 64px;
}

.shop_table.cart thead {
  display: none;
}
.shop_table.cart .product-name {
  font-size: 18px;
  font-weight: 500;
  flex-wrap: wrap;
  line-height: 1.3;
}
.shop_table.cart .product-name,
.shop_table.cart .product-subtotal {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .shop_table.cart .product-name,
  .shop_table.cart .product-subtotal {
    flex-wrap: nowrap;
  }
}
.shop_table.cart .product-subtotal {
  min-width: 75px;
}
.shop_table.cart .description {
  font-size: 14px;
  line-height: 24px;
}
.shop_table.cart .quantity {
  padding-top: 30px;
  padding-bottom: 6px;
}
@media (min-width: 768px) {
  .shop_table.cart .quantity {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 768px) {
  .shop_table.cart .quantity:before {
    content: "Quantity";
    font-size: 14px;
    line-height: 24px;
    color: #333;
    margin-right: 8px;
  }
}

.woocommerce-additional-fields {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .woocommerce-additional-fields {
    margin-top: 0;
  }
}

.woocommerce table.shop_table td {
  border: 0;
}

.inquiry-only-notice {
  font-size: 18px;
  line-height: 1.333;
  padding: 22px 25px 6px 25px;
  background: #f5f5f5;
  margin-bottom: 44px;
}
.inquiry-only-notice a {
  color: #000;
}

.slug-checkout .woocommerce > .woocommerce {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.slug-checkout .woocommerce > .woocommerce .woocommerce-notices-wrapper {
  margin: 20px 0;
  flex: 0 0 100%;
  width: 100%;
}
.slug-checkout .woocommerce > .woocommerce .woocommerce-notices-wrapper:empty {
  display: none;
}
.slug-checkout .woocommerce > .woocommerce .cart-side-info,
.slug-checkout .woocommerce > .woocommerce form {
  flex: 0 0 100%;
  width: 100%;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  background: transparent;
  border-radius: 0;
}
#add_payment_method #payment p,
.woocommerce-cart #payment p,
.woocommerce-checkout #payment p {
  font-size: 16px;
  color: #000;
}
#add_payment_method #payment p a,
.woocommerce-cart #payment p a,
.woocommerce-checkout #payment p a {
  color: #000;
}
#add_payment_method #payment label[for=payment_method_stripe],
.woocommerce-cart #payment label[for=payment_method_stripe],
.woocommerce-checkout #payment label[for=payment_method_stripe] {
  padding-bottom: 10px;
  margin-bottom: 22px;
  font-weight: 500;
  font-size: 24px;
}
#add_payment_method #payment div.form-row,
.woocommerce-cart #payment div.form-row,
.woocommerce-checkout #payment div.form-row {
  padding: 0;
}
#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods {
  padding: 0;
  border-bottom: 0;
}
#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
  background: #f7f4f4;
}
#add_payment_method #payment div.payment_box:before,
.woocommerce-cart #payment div.payment_box:before,
.woocommerce-checkout #payment div.payment_box:before {
  border-bottom-color: #f7f4f4;
}
#add_payment_method #payment div.payment_box .form-row,
.woocommerce-cart #payment div.payment_box .form-row,
.woocommerce-checkout #payment div.payment_box .form-row {
  margin: 0;
}
#add_payment_method fieldset,
.woocommerce-cart fieldset,
.woocommerce-checkout fieldset {
  border: 0;
}

.payment_box .form-row:focus-within label {
  top: auto !important;
  font-size: 14px !important;
  transform: none !important;
}

.woocommerce-checkout-review-order .product-total {
  display: flex;
  align-items: baseline;
}
.woocommerce-checkout-review-order th:first-child,
.woocommerce-checkout-review-order td:first-child {
  padding-left: 0 !important;
}

.checkout-payment-shown .cart-side-info {
  display: none;
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: #8d001d;
  border-radius: 0;
  font-weight: normal;
  padding: 1rem 1.7rem;
  font-size: 1.1rem;
}
@media (min-width: 992px) {
  .woocommerce #respond input#submit.alt,
  .woocommerce a.button.alt,
  .woocommerce button.button.alt,
  .woocommerce input.button.alt {
    font-size: 1.3rem;
  }
}
.woocommerce #respond input#submit.alt:hover, .woocommerce #respond input#submit.alt:focus,
.woocommerce a.button.alt:hover,
.woocommerce a.button.alt:focus,
.woocommerce button.button.alt:hover,
.woocommerce button.button.alt:focus,
.woocommerce input.button.alt:hover,
.woocommerce input.button.alt:focus {
  background: #811622;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  float: none;
}

.woocommerce-thankyou-order-received {
  border-bottom: 3px solid rgb(245, 245, 245);
  padding-bottom: 10px;
  margin-bottom: 22px;
  font-weight: 500;
  font-size: 24px;
}

.woocommerce-thankyou-order-details {
  padding: 2rem;
  background: #f7f4f4;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
  background: #fff;
  padding: 0;
}

#add_payment_method #payment div.payment_box:before,
.woocommerce-cart #payment div.payment_box:before,
.woocommerce-checkout #payment div.payment_box:before {
  display: none;
}

.woocommerce-checkout table.cart .product-thumbnail {
  display: block;
}
.woocommerce-checkout table.cart .product-thumbnail:before {
  display: none !important;
}

.wc-credit-card-form {
  display: flex;
  flex-wrap: wrap;
}
.wc-credit-card-form .form-row-wide {
  margin-right: 0 !important;
  flex: 0 1 100%;
  width: 100%;
  margin-bottom: 10px !important;
}
@media (min-width: 768px) {
  .wc-credit-card-form .form-row-wide {
    flex: 1;
    margin-right: 8px !important;
    margin-bottom: 0 !important;
  }
}
.wc-credit-card-form .form-row-first {
  width: 50%;
  flex: 0 0 50%;
  margin-right: 8px !important;
}
@media (min-width: 768px) {
  .wc-credit-card-form .form-row-first {
    width: 120px;
    flex: 0 0 120px;
  }
}
.wc-credit-card-form .form-row-last {
  width: 50%;
  flex: 0 0 50%;
}
@media (min-width: 768px) {
  .wc-credit-card-form .form-row-last {
    width: 120px;
    flex: 0 0 120px;
  }
}

.wc-stripe-elements-field,
.wc-stripe-iban-element-field {
  background: #f5f5f5 !important;
  height: 48px;
  line-height: 48px;
  font-size: 1rem;
  color: #000;
  padding: 0 0 0 7px !important;
  margin: 0 !important;
  border: 0 !important;
  padding: 14px 0 0 7px;
}
.wc-stripe-elements-field iframe,
.wc-stripe-iban-element-field iframe {
  top: 14px;
  position: relative;
}

.woocommerce table.shop_table td {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .woocommerce table.shop_table td {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.woocommerce table.shop_table td.product-remove {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .woocommerce table.shop_table td.product-remove {
    margin-bottom: 0;
  }
}
.woocommerce table.shop_table td.product-price {
  display: none !important;
}

.woocommerce table.shop_table_responsive tr td::before,
.woocommerce-page table.shop_table_responsive tr td::before {
  flex: 0 0 100%;
  width: 100%;
  text-align: left;
}

div.woocommerce table.shop_table_responsive tr td,
div.woocommerce-page table.shop_table_responsive tr td {
  text-align: left !important;
}/*# sourceMappingURL=style.css.map */