@charset "UTF-8";
/* ------------------------------------------------------------- Colours */
.bg-green {
  background: #194421;
}

.text-green {
  color: #194421;
}

.bg-black {
  background: black;
}

/* ------------------------------------------------------------- Common */
html {
  scroll-behavior: smooth;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  max-width: 100vw;
  overflow-x: hidden;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #3C3C3C;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

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

p:last-of-type:not(.title) {
  margin-bottom: 0;
}

ul,
ol {
  padding: 0;
}

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

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

.container {
  padding-right: 30px;
  padding-left: 30px;
}

@media (min-width: 576px) {
  .container {
    max-width: 560px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
    padding-right: 50px;
    padding-left: 50px;
  }
}

h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5,
b,
strong {
  font-weight: 600;
}

.pt-6 {
  padding-top: 4rem;
}

.pb-6 {
  padding-bottom: 4rem;
}

.pt-7 {
  padding-top: 5rem;
}

.pb-7 {
  padding-bottom: 5rem;
}

.mt-6 {
  margin-top: 4rem;
}

.mb-6 {
  margin-bottom: 4rem;
}

.mt-7 {
  margin-top: 5rem;
}

.mb-7 {
  margin-bottom: 5rem;
}

main ol,
main ul {
  padding-left: 21px;
}

.wcwl_notice_dismiss:before {
  content: url(../assets/times.svg) !important;
  width: 10px;
  height: 10px;
  display: block;
  margin-top: 9px;
}

/* ------------------------------------------------------------- FORM FIELDS */
form ul,
#shipping_method {
  list-style: none;
  padding: 0;
  margin: 0;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
select {
  width: 100% !important;
  border: none;
  background: white;
  padding: 7px 10px;
  margin-bottom: 15px;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  outline: none;
  border-radius: 2px;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not(.search-input),
select {
  border: 1px solid #f2f2f2;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):focus,
textarea:focus {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(25, 68, 33, 0.41) !important;
  box-shadow: 0 0.125rem 0.25rem rgba(25, 68, 33, 0.41) !important;
}

textarea {
  max-height: 175px;
  display: block;
  width: 100%;
  border: 0;
  margin-bottom: 15px;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  outline: none;
  padding: 10px;
  background: white;
  border-radius: 2px;
}

input[type="radio"],
input[type="checkbox"] {
  width: 0;
  height: 0;
  overflow: hidden;
  margin: 0 !important;
  opacity: 0;
}

input[type="radio"] + label:before,
input[type="checkbox"] + label:before {
  content: '';
  width: 15px;
  height: 15px;
  border: 1px solid #194421;
  display: inline-block;
  border-radius: 50%;
  margin-right: 5px;
  position: relative;
  top: 2px;
}

input[type="radio"]:checked + label:before,
input[type="checkbox"]:checked + label:before {
  content: url("../assets/check-circle.svg");
  width: 16px;
  height: 16px;
  border: 0;
}

input[type="checkbox"] + label:before,
input[type="checkbox"] + span:before {
  content: '';
  width: 15px;
  height: 15px;
  border: 1px solid #194421;
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: 2px;
  border-radius: 2px !important;
}

input[type="checkbox"]:checked + label:before,
input[type="checkbox"]:checked + span:before {
  content: url("../assets/check-square.svg");
  border: 0;
}

.ginput_recaptcha,
.validation_error {
  margin-bottom: 15px;
}

.validation_message {
  color: #dc3545;
  margin-bottom: 15px;
  margin-top: -5px;
  font-size: 90%;
}

.hidden_label > label {
  display: none;
}

.btn,
.button,
input[type="submit"] {
  background: #194421;
  color: white;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  border: none;
  padding: 12px 26px 8px 26px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  border-radius: 2px;
}

.btn:hover,
.button:hover,
input[type="submit"]:hover {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  background: #3C3C3C !important;
  color: white !important;
}

label.checkbox,
select {
  cursor: pointer;
}

/* ------------------------------------------------------------- Search form */
form#search,
form.search {
  position: relative;
  max-width: 550px;
  margin: 0 auto;
}

form#search input.search-input,
form.search input.search-input {
  border-radius: 0 !important;
  -webkit-appearance: none;
  background: transparent !important;
  border-bottom: 1px solid white !important;
  margin: 0;
  color: white;
  padding: 0 !important;
  margin-bottom: 0 !important;
}

form#search input.search-input::-webkit-input-placeholder,
form.search input.search-input::-webkit-input-placeholder {
  color: white;
  opacity: 1;
  font-weight: 300;
}

form#search input.search-input:-ms-input-placeholder,
form.search input.search-input:-ms-input-placeholder {
  color: white;
  opacity: 1;
  font-weight: 300;
}

form#search input.search-input::-ms-input-placeholder,
form.search input.search-input::-ms-input-placeholder {
  color: white;
  opacity: 1;
  font-weight: 300;
}

form#search input.search-input::placeholder,
form.search input.search-input::placeholder {
  color: white;
  opacity: 1;
  font-weight: 300;
}

form#search button,
form.search button {
  background: transparent;
  border: none;
  position: absolute;
  right: 0;
  bottom: 2px !important;
  outline: none;
  padding: 0 !important;
}

form#search button svg,
form.search button svg {
  height: 15px;
  color: white;
}

/* ------------------------------------------------------------- WOOCOMMERCE */
.u-column1.col-1,
.u-column2.col-2 {
  max-width: 100%;
  width: 100%;
  padding: 0;
}

.u-column1.col-1 .form-row,
.u-column2.col-2 .form-row {
  margin: 0;
  display: block;
}

.woocommerce-notices-wrapper,
.woocommerce form {
  width: 100%;
  margin-bottom: 25px;
}

.woocommerce-form-row {
  display: block;
  margin-right: 0;
  margin-left: 0;
}

.woocommerce-info,
.woocommerce-message {
  background-color: #f2f2f2 !important;
  padding: 10px;
}

.woocommerce-lost-password .woocommerce-message {
  margin-bottom: 15px;
  width: 100%;
}

.select2-selection {
  border: 0 !important;
  outline: none;
  height: 45px !important;
  border: 0;
  border-radius: 0;
  padding: 10px;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.select2-selection .select2-selection__arrow {
  top: 9px !important;
}

/* ------------------------------------------------------------- Woo LOGIN */
.login-register-notice {
  background: #194421;
  padding: 15px;
  color: white;
  text-align: center;
}

.login-register-notice svg {
  height: 40px;
  display: block;
  margin: 0 auto 15px auto;
}

@media (min-width: 992px) {
  .login-register-notice {
    padding: 30px;
  }
}

#customer_login .woocommerce-form-register__submit {
  margin-top: 20px;
}

#customer_login h2 {
  text-align: center;
  margin-bottom: 20px;
}

#customer_login > div {
  margin-top: 3rem;
}

#customer_login label {
  margin-top: 15px;
}

#customer_login button[type="submit"] {
  display: block;
  margin-left: auto;
}

@media (min-width: 768px) and (max-width: 991px) {
  #customer_login {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (min-width: 992px) {
  #customer_login {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  #customer_login .col-1,
  #customer_login .col-2 {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 25px;
  }
  #customer_login form {
    max-width: 450px;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .woocommerce-lost-password .woocommerce {
    max-width: 450px;
    margin: 50px auto;
  }
}

/* ------------------------------------------------------------- HEADER */
header .bg-dark svg {
  margin-top: -4px;
}

header .bg-dark #currency img {
  height: 19px;
  margin-left: 10px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

header .bg-dark #currency img.active {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

header .logo {
  width: 100%;
  max-width: 230px;
}

header .cart-qty {
  background: #f2f2f2;
  color: #3c3c3c;
  width: 15px;
  height: 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 50%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 65%;
  padding-top: 1px;
  position: relative;
  top: -5px;
  left: 3px;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  font-weight: 600;
}

header .menu-toggle svg {
  height: 30px;
}

header #menu {
  display: none;
}

@media (min-width: 1200px) {
  header #menu {
    display: block !important;
    border-top: 1px solid white;
    padding-top: 1rem;
  }
}

header .menu {
  width: 100%;
  margin-top: 15px;
  text-align: center;
}

header .menu a {
  display: block;
  padding: 7px;
}

header .menu .current-menu-item > a,
header .menu a:hover {
  color: #ded100;
}

@media (min-width: 1200px) {
  header .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: auto;
    margin: 0 !important;
  }
  header .menu a {
    padding: 0 25px;
  }
}

header .sub-menu {
  display: none;
  list-style: none;
}

@media (min-width: 1200px) {
  header .menu-item-has-children > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header .menu-item-has-children > a:after {
    content: url("../assets/menu-arrow.svg");
    height: 10px;
    width: 10px;
    margin-left: 10px;
    margin-top: 4px;
  }
  header .menu > .current-menu-ancestor > a,
  header .menu > .current-menu-item.menu-item-has-children > a,
  header .menu > li.menu-item-has-children:hover > a {
    color: #DED100;
  }
  header .menu > .current-menu-ancestor > a:after,
  header .menu > .current-menu-item.menu-item-has-children > a:after,
  header .menu > li.menu-item-has-children:hover > a:after {
    content: url(../assets/menu-arrow-active.svg);
  }
  header .sub-menu {
    position: absolute;
    background: #194421;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    text-align: left;
    z-index: 10;
    min-width: 110px;
    display: block;
    height: 0;
    overflow: hidden;
  }
  header .sub-menu li:first-child a {
    padding-top: 10px;
  }
  header .sub-menu li:last-child a {
    padding-bottom: 10px;
  }
  header .sub-menu a {
    padding: 5px 15px;
  }
  header .sub-menu .menu-item-has-children {
    position: relative;
  }
  header .sub-menu .menu-item-has-children > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .sub-menu .menu-item-has-children > a:after {
    content: url("../assets/arrow-right-white.svg");
    width: 6px;
    height: 22px;
    margin-left: 10px;
  }
  header .sub-menu .menu-item-has-children > a:hover:after {
    content: url("../assets/arrow-right-yellow.svg");
  }
  header .sub-menu .menu-item-has-children .sub-menu {
    top: 0;
    left: 100%;
  }
  header .sub-menu .current-menu-ancestor > a,
  header .sub-menu .current-menu-item.menu-item-has-children > a {
    color: #DED100;
  }
  header .sub-menu .current-menu-ancestor > a:after,
  header .sub-menu .current-menu-item.menu-item-has-children > a:after {
    content: url("../assets/arrow-right-yellow.svg");
  }
  header .menu-item-has-children:hover > .sub-menu {
    -webkit-animation: menuAnimation 0.5s forwards;
            animation: menuAnimation 0.5s forwards;
  }
}

header .search {
  margin: 15px auto;
  max-width: 290px;
}

header .search inpu:placeholder {
  font-weight: 100;
}

header .search button {
  padding: 0;
  height: 23px;
  width: 15px;
}

header .search button svg {
  width: 100%;
}

@media (min-width: 1200px) {
  header .search button {
    bottom: 5px !important;
  }
}

@media (min-width: 1200px) {
  header .search {
    margin: 0;
    margin-left: 25px;
    max-width: 190px;
  }
  header .search input {
    margin: 0 !important;
  }
}

@-webkit-keyframes menuAnimation {
  0% {
    height: 0;
    overflow: hidden;
  }
  100% {
    height: auto;
    overflow: initial;
  }
}

@keyframes menuAnimation {
  0% {
    height: 0;
    overflow: hidden;
  }
  100% {
    height: auto;
    overflow: initial;
  }
}

/* ------------------------------------------------------------- FOOTER */
footer .search button {
  height: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
}

footer a:hover {
  text-decoration: underline;
}

footer #newsletter form {
  position: relative;
  margin-top: 1rem;
}

footer #newsletter form li {
  width: 100%;
}

footer #newsletter form input {
  padding: 7px 10px 4px 10px;
}

footer #newsletter form input[type="submit"] {
  background: #194421;
  color: white;
  width: 100%;
}

footer #newsletter form input[type="submit"]:hover {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

footer #newsletter form #field_2_4 {
  width: 100%;
  display: block;
}

@media (min-width: 576px) {
  footer #newsletter form ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  footer #newsletter form ul #field_2_1,
  footer #newsletter form ul #field_2_2,
  footer #newsletter form ul #field_2_3 {
    width: 32%;
  }
}

/* ------------------------------------------------------------- MY ACCOUNT */
.woocommerce-account hr {
  display: none;
}

.woocommerce-account .order-again {
  margin-top: 20px;
  text-align: right;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--downloads {
  display: none !important;
}

.woocommerce-account .woocommerce {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.woocommerce-account h1.entry-title {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #3C3C3C;
}

.woocommerce-account .woocommerce-Message {
  background-color: #3C3C3C;
  color: white;
  padding-left: 7px;
}

.woocommerce-account .edit,
.woocommerce-account .waitlist-user-waitlist-wrapper p a {
  background: #194421;
  color: white;
  padding: 3px 15px;
  border-radius: 3px;
  margin-bottom: 10px;
  display: inline-block;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  max-width: 100%;
  overflow-x: auto;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  width: 100%;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  padding: 5px 10px;
  white-space: nowrap;
  margin-right: 25px;
  font-size: 1.1rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active {
  background: #194421;
  color: white;
  padding: 5px 10px;
  border-radius: 3px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link--dashboard {
  display: none;
}

@media (min-width: 992px) {
  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 200px;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation ul li {
    display: block;
    width: 100%;
    margin: 0;
  }
}

.woocommerce-account .woocommerce-MyAccount-content {
  width: 100%;
}

.woocommerce-account .woocommerce-MyAccount-content h2 {
  font-size: 1.5rem;
}

.woocommerce-account .woocommerce-MyAccount-content .order-number,
.woocommerce-account .woocommerce-MyAccount-content .order-date,
.woocommerce-account .woocommerce-MyAccount-content .order-status {
  background: white;
  font-weight: 600;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p:last-child {
  text-align: right;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .form-row {
  margin: 15px 0;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .form-row input {
  margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .woocommerce-input-wrapper {
  display: block;
  width: 100%;
}

@media (min-width: 992px) {
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .form-row {
    width: 48%;
  }
}

@media (min-width: 992px) {
  .woocommerce-account .woocommerce-MyAccount-content {
    width: calc(100% - 250px);
  }
}

.woocommerce-account button[type="submit"] {
  background: #194421;
  color: white;
  border: none;
  padding: 5px 15px;
}

.woocommerce-account .woocommerce-orders-table {
  width: 100%;
  border: 1px solid #f2f2f2;
  border-radius: 2px;
}

.woocommerce-account .woocommerce-orders-table thead {
  background: #f2f2f2;
}

.woocommerce-account .woocommerce-orders-table td,
.woocommerce-account .woocommerce-orders-table th {
  padding: 10px 15px;
}

@media (max-width: 576px) {
  .woocommerce-account .woocommerce-orders-table thead {
    display: none;
  }
  .woocommerce-account .woocommerce-orders-table tr,
  .woocommerce-account .woocommerce-orders-table th {
    display: block;
  }
  .woocommerce-account .woocommerce-orders-table td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .woocommerce-account .woocommerce-orders-table .woocommerce-orders-table__cell-order-number:before {
    content: 'Order:';
  }
  .woocommerce-account .woocommerce-orders-table .woocommerce-orders-table__cell-order-date:before {
    content: 'Date:';
  }
  .woocommerce-account .woocommerce-orders-table .woocommerce-orders-table__cell-order-status:before {
    content: 'Status:';
  }
  .woocommerce-account .woocommerce-orders-table .woocommerce-orders-table__cell-order-total:before {
    content: 'Total:';
    -webkit-box-flex: 0.9;
        -ms-flex: 0.9;
            flex: 0.9;
  }
}

.woocommerce-account .waitlist-products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.woocommerce-account .waitlist-products .waitlist-single-product {
  width: 100%;
  margin-bottom: 1.5rem;
}

@media (min-width: 576px) {
  .woocommerce-account .waitlist-products .waitlist-single-product {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1200px) {
  .woocommerce-account .waitlist-products .waitlist-single-product {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (min-width: 992px) {
  .addresses {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .addresses > div {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .edit-account {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .edit-account > .form-row,
  .edit-account fieldset {
    width: 48%;
  }
  .edit-account .clear {
    display: none;
  }
}

/* ------------------------------------------------------------- BASKET */
.cart_totals td,
.cart_totals th {
  padding: 10px !important;
}

.cart_totals th {
  border-right: 1px solid #f2f2f2;
}

.woocommerce-message a {
  margin-bottom: 15px;
}

@media (min-width: 992px) {
  .woocommerce-message a {
    margin-bottom: 0;
  }
}

.wc-proceed-to-checkout a {
  width: 100%;
}

.woocommerce-cart main #shipping_method li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.woocommerce-cart main #shipping_method li input {
  margin: 4px 5px 0 0;
}

.woocommerce-cart main .shipping-calculator-button {
  background: #194421;
  color: white;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  border: none;
  padding: 7px 20px 7px 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  border-radius: 2px;
  margin-top: 1rem;
  display: inline-block;
}

.woocommerce-cart main .cart,
.woocommerce-cart main table {
  width: 100%;
}

.woocommerce-cart main .cross-sells {
  text-align: center;
  margin: 50px 0;
}

.woocommerce-cart main .cross-sells > h2 {
  margin-bottom: 2rem;
}

.woocommerce-cart main .cross-sells ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  margin-right: -15px;
  margin-left: -15px;
}

.woocommerce-cart main .cross-sells ul h2 {
  font-size: 1.5rem;
}

.woocommerce-cart main .cross-sells ul li {
  margin-bottom: 30px;
  position: relative;
}

.woocommerce-cart main .cross-sells ul li .button {
  margin-top: 15px;
}

.woocommerce-cart main .cross-sells ul li span.onsale {
  position: absolute;
  left: 0;
  font-weight: bold;
  color: #da342f;
}

.woocommerce-cart main .cross-sells ul span.price {
  display: block;
}

@media (min-width: 572px) {
  .woocommerce-cart main .cross-sells ul li {
    width: 50%;
    padding: 0 15px;
  }
}

@media (min-width: 992px) {
  .woocommerce-cart main .cross-sells ul li {
    width: 25%;
  }
}

.woocommerce-cart main table {
  border: 1px solid #f2f2f2;
  margin-bottom: 30px;
}

.woocommerce-cart main button,
.woocommerce-cart main .button {
  background: #194421;
  color: white;
  border: 0;
  padding: 10px;
  display: inline-block;
  text-align: center;
  font-weight: 400;
}

.woocommerce-cart main .entry-title {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #3C3C3C;
}

.woocommerce-cart main input.qty {
  width: 60px !important;
  text-align: center;
  max-width: 70px;
}

.woocommerce-cart main .coupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.woocommerce-cart main .coupon label {
  display: none;
}

.woocommerce-cart main .coupon button {
  width: auto !important;
}

@media (min-width: 768px) {
  .woocommerce-cart main .coupon {
    width: 70%;
    max-width: 380px;
  }
  .woocommerce-cart main .coupon input {
    margin: 0 !important;
  }
}

.woocommerce-cart main .product-quantity label {
  display: none;
}

.woocommerce-cart main .product-remove {
  font-size: 2rem;
  min-width: 50px;
  text-align: center;
}

.woocommerce-cart main tr {
  border-bottom: 1px solid #f2f2f2;
}

@media (max-width: 991px) {
  .woocommerce-cart main button,
  .woocommerce-cart main .button {
    display: block;
    width: 100%;
  }
  .woocommerce-cart main .coupon {
    margin-bottom: 15px;
  }
  .woocommerce-cart main .woocommerce-cart-form thead {
    display: none;
  }
  .woocommerce-cart main .woocommerce-cart-form td {
    display: block;
    width: 100%;
  }
  .woocommerce-cart main .woocommerce-cart-form tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .woocommerce-cart main td:before {
    font-weight: 600;
  }
  .woocommerce-cart main tbody .product-quantity:before {
    content: 'Quantity:';
  }
  .woocommerce-cart main .product-thumbnail {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .woocommerce-cart main .product-thumbnail img {
    height: 100%;
    width: auto;
    max-height: 200px;
    margin: 0 auto;
    display: block;
  }
  .woocommerce-cart main .product-name {
    padding: 10px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .woocommerce-cart main .product-name:before {
    content: 'Product:';
  }
  .woocommerce-cart main .product-price {
    padding: 10px;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .woocommerce-cart main .product-price:before {
    content: 'Price:';
  }
  .woocommerce-cart main .product-quantity {
    padding: 10px;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .woocommerce-cart main .product-quantity:before {
    margin-right: 10px;
  }
  .woocommerce-cart main .product-subtotal {
    padding: 10px;
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .woocommerce-cart main .product-subtotal:before {
    content: 'Subtotal:';
  }
  .woocommerce-cart main .product-remove {
    background: #f2f2f2;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media (min-width: 768px) {
  .woocommerce-cart main .coupon {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    white-space: nowrap;
    float: left;
    margin: 0;
  }
  .woocommerce-cart main button[name="update_cart"] {
    float: right;
    width: auto;
  }
  .woocommerce-cart main .actions {
    padding: 10px;
  }
}

@media (min-width: 992px) {
  .woocommerce-cart main .cart-collaterals .cart_totals {
    max-width: 500px;
    margin-left: auto;
  }
}

.woocommerce-cart main .woocommerce-cart-form thead {
  background: #f2f2f2;
}

.woocommerce-cart main .woocommerce-cart-form thead th {
  padding: 10px 0;
}

/* ------------------------------------------------------------- CHECKOUT */
.woocommerce-info {
  margin-bottom: 20px;
}

.woocommerce-error {
  list-style: none;
  background: #dc3545;
  color: white;
  padding: 15px;
  margin-bottom: 30px;
}

.woocommerce-message a.button {
  margin-right: 20px;
}

.woocommerce-checkout .form-row {
  margin-right: 0;
  margin-left: 0;
}

.woocommerce-checkout #order_comments_field {
  display: block;
}

.woocommerce-checkout .woocommerce-privacy-policy-text {
  margin: 0 auto;
  max-width: 600px;
}

.woocommerce-checkout h3 {
  margin-bottom: 30px;
}

.woocommerce-checkout h3#ship-to-different-address {
  font-size: 1.5rem;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle {
  background: #f2f2f2;
  border-top: 2px solid #194421;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle:before {
  content: url(../assets/coupon.svg);
  float: left;
  height: 16px;
  width: 16px;
  margin-left: 15px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table {
  background: #f2f2f2;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 30px;
  width: 100%;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table thead {
  background: #194421;
  color: white;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table thead th {
  padding: 10px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tbody td,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
  padding: 10px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table input {
  margin-right: 10px;
}

.woocommerce-checkout .woocommerce-checkout-payment #place_order {
  margin-top: 30px;
}

.woocommerce-checkout .woocommerce-checkout-payment .form-row {
  margin: 0;
  display: block;
}

.woocommerce-checkout .woocommerce-checkout-payment .place-order label {
  width: 100%;
}

.woocommerce-checkout .woocommerce-form-coupon {
  border: 1px solid #f2f2f2;
  padding: 15px;
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}

.woocommerce-checkout .woocommerce-form-coupon input {
  margin: 0 !important;
}

.woocommerce-checkout .woocommerce-form-coupon p:first-child {
  width: 100%;
}

.woocommerce-checkout .woocommerce-form-coupon .form-row-first {
  width: 100%;
}

@media (min-width: 576px) {
  .woocommerce-checkout .woocommerce-form-coupon .form-row,
  .woocommerce-checkout .woocommerce-form-coupon input {
    margin: 0;
  }
  .woocommerce-checkout .woocommerce-form-coupon .form-row-first {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 500px;
  }
  .woocommerce-checkout .woocommerce-form-coupon .button {
    padding: 7px 15px;
  }
}

.woocommerce-checkout .entry-title {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #3C3C3C;
}

.woocommerce-checkout #customer_details > div {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

.woocommerce-checkout #customer_details > div .form-row {
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 15px;
}

.woocommerce-checkout #order_comments {
  width: 100%;
}

.woocommerce-checkout .select2-selection {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  border: none;
  height: 34px;
  outline: none;
}

.woocommerce-checkout .select2-selection .select2-selection__rendered {
  line-height: 34px;
}

.woocommerce-checkout .select2-selection .select2-selection__arrow {
  height: 34px;
}

@media (min-width: 992px) {
  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
  .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row,
  .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row {
    width: 48%;
  }
}

/* ------------------------------------------------------------- SINGLE PRODUCT */
.tabs-nav li {
  padding: 9px 23px 4px 23px !important;
  margin-bottom: -1px;
  cursor: pointer;
}

.tabs-nav li.active {
  border: 1px solid transparent;
  border-color: #dee2e6 #dee2e6 #f2f2f2;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  display: block;
  background: #f2f2f2;
}

.single-product .product-short-desc ul {
  list-style: none;
}

.single-product .product-short-desc ul li:before {
  content: '';
  width: 5px;
  height: 5px;
  background: #194421;
  display: inline-block;
  margin-right: 10px;
  top: -2.5px;
  position: relative;
}

.single-product .wcwl_elements {
  background: #f2f2f2;
  padding: 1.5rem;
  margin-top: 3rem;
  text-align: center;
}

.single-product .summary > .price {
  font-weight: 600;
  font-size: 1.25rem;
  color: #194421;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 1rem;
}

.single-product .screen-reader-text {
  display: none;
}

.single-product .rightpress_product_price_live_update {
  margin-top: 1rem;
}

.single-product .woocommerce-product-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.5rem;
}

.single-product .woocommerce-product-rating .star-rating {
  margin-right: 25px;
}

.single-product .stock {
  font-weight: 600;
  margin: 15px 0 !important;
}

.single-product .special-offer {
  font-weight: 300;
  margin-top: 0.8rem !important;
  display: block;
}

.single-product .cart .custom-quantity {
  margin-bottom: 1.8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 0.2rem 0.55rem rgba(0, 0, 0, 0.09);
          box-shadow: 0 0.2rem 0.55rem rgba(0, 0, 0, 0.09);
  border-radius: 2px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.single-product .cart .custom-quantity input,
.single-product .cart .custom-quantity input:focus {
  margin: 0;
  border: none;
  background: white;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none;
  border-radius: 2px;
  text-align: center;
  -moz-appearance: textfield;
}

.single-product .cart .custom-quantity input::-webkit-outer-spin-button,
.single-product .cart .custom-quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.single-product .cart .custom-quantity .qty-btn {
  width: 30px;
  text-align: center;
  padding: 0 10px;
  cursor: pointer;
  display: block;
}

.comment-form-rating p.stars {
  margin-bottom: 15px;
}

.comment-form-rating label {
  margin-bottom: 0 !important;
}

.stars.selected a::before,
p.stars.selected a:not(.active)::before,
p.stars:hover a::before {
  color: #194421 !important;
}

.comment-form {
  max-width: 600px;
}

.add-to-cart,
.woocommerce-cart-form__cart-item {
  position: relative;
}

.add-to-cart .custom-quantity,
.woocommerce-cart-form__cart-item .custom-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 0.2rem 0.55rem rgba(0, 0, 0, 0.09);
          box-shadow: 0 0.2rem 0.55rem rgba(0, 0, 0, 0.09);
  border-radius: 2px;
  max-width: 140px;
}

.add-to-cart .custom-quantity span,
.woocommerce-cart-form__cart-item .custom-quantity span {
  width: 30px;
  text-align: center;
  padding: 0 10px;
  cursor: pointer;
  display: block;
}

.add-to-cart .custom-quantity span svg,
.woocommerce-cart-form__cart-item .custom-quantity span svg {
  width: 12px;
}

.add-to-cart .custom-quantity input,
.woocommerce-cart-form__cart-item .custom-quantity input {
  max-width: 70px !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  margin: 0 !important;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}

.add-to-cart .custom-quantity input:focus,
.woocommerce-cart-form__cart-item .custom-quantity input:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.add-to-cart .custom-quantity input::-webkit-outer-spin-button,
.add-to-cart .custom-quantity input::-webkit-inner-spin-button,
.woocommerce-cart-form__cart-item .custom-quantity input::-webkit-outer-spin-button,
.woocommerce-cart-form__cart-item .custom-quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.add-to-cart .custom-quantity input[type=number],
.woocommerce-cart-form__cart-item .custom-quantity input[type=number] {
  -moz-appearance: textfield;
}

#product-reviews {
  max-height: 600px;
  overflow: hidden;
  -webkit-transition: max-height 0.3s;
  transition: max-height 0.3s;
}

#product-reviews.expand {
  max-height: 100% !important;
}

@media (min-width: 768px) {
  #product-reviews .row-comments {
    -webkit-column-count: 2;
            column-count: 2;
  }
}

@media (min-width: 992px) {
  #product-reviews .row-comments {
    -webkit-column-count: 3;
            column-count: 3;
  }
}

@media (min-width: 1200px) {
  #product-reviews .row-comments {
    -webkit-column-count: 4;
            column-count: 4;
  }
}

#product-reviews .row-comments .review {
  display: inline-block;
}

/* ------------------------------------------------------------- FLEX CONTENT */
.one-column a,
.two-column a,
.tabs a {
  color: #194421;
  text-decoration: underline !important;
}

.banner {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
}

.banner p {
  max-width: 900px;
}

.banner.text-center p {
  margin: 0 auto;
}

.banner.text-right p {
  margin-left: auto;
}

.banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.banner .btn {
  margin-top: 20px;
}

.banner.fullheight {
  min-height: calc(100vh - 139px);
}

@media (min-width: 992px) {
  .banner.fullheight {
    min-height: calc(100vh - 197px);
  }
}

.banner.medium {
  min-height: 40vh;
}

.banner.large {
  min-height: 60vh;
}

/* ------------------------------------------------------------- Archive page */
.products-row a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.products-row a p.h4 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-top: 1px solid #f2f2f2;
  display: block;
  width: 100%;
}

.products-row a .price {
  color: #194421;
  font-weight: 600;
}

.products-row a img {
  max-height: 300px;
  width: auto;
}

.pagination .page-numbers {
  background: #f2f2f2;
  width: 30px;
  height: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 4px;
}

.pagination .page-numbers.current, .pagination .page-numbers:hover {
  background: #194421;
  color: white;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.top-page-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .top-page-nav {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.top-page-nav span {
  margin-left: 0.8rem;
  font-size: 1.6em;
}

.top-page-nav span.disabled {
  color: #c2c2c2;
}

/* ------------------------------------------------------------- Thank you page */
.woocommerce-order-received h2,
.woocommerce-MyAccount-content h2 {
  font-size: 1.5rem;
}

.woocommerce-order-received .woocommerce-notice,
.woocommerce-MyAccount-content .woocommerce-notice {
  background: #194421;
  color: white;
  margin: 0;
  border-radius: 3px;
  padding: 15px;
  font-size: 1.3em;
}

.woocommerce-order-received .woocommerce-order-overview,
.woocommerce-MyAccount-content .woocommerce-order-overview {
  list-style: none;
  padding: 15px;
  background: #f2f2f2;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.woocommerce-order-received .woocommerce-order-overview strong,
.woocommerce-MyAccount-content .woocommerce-order-overview strong {
  display: block;
  text-transform: none;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .woocommerce-order-received .woocommerce-order-overview,
  .woocommerce-MyAccount-content .woocommerce-order-overview {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .woocommerce-order-received .woocommerce-order-overview strong,
  .woocommerce-MyAccount-content .woocommerce-order-overview strong {
    margin: 0;
  }
}

.woocommerce-order-received .woocommerce-table--order-details,
.woocommerce-MyAccount-content .woocommerce-table--order-details {
  width: 100%;
  border-radius: 2px;
  border: 1px solid #f2f2f2;
}

.woocommerce-order-received .woocommerce-table--order-details thead,
.woocommerce-MyAccount-content .woocommerce-table--order-details thead {
  background: #f2f2f2;
}

.woocommerce-order-received .woocommerce-table--order-details thead th,
.woocommerce-MyAccount-content .woocommerce-table--order-details thead th {
  padding: 10px 15px;
}

.woocommerce-order-received .woocommerce-table--order-details tbody td,
.woocommerce-order-received .woocommerce-table--order-details tfoot th,
.woocommerce-order-received .woocommerce-table--order-details tfoot td,
.woocommerce-MyAccount-content .woocommerce-table--order-details tbody td,
.woocommerce-MyAccount-content .woocommerce-table--order-details tfoot th,
.woocommerce-MyAccount-content .woocommerce-table--order-details tfoot td {
  padding: 10px 15px;
}

.woocommerce-order-received .woocommerce-customer-details .col-1,
.woocommerce-order-received .woocommerce-customer-details .col-2,
.woocommerce-MyAccount-content .woocommerce-customer-details .col-1,
.woocommerce-MyAccount-content .woocommerce-customer-details .col-2 {
  max-width: 100%;
  border: 1px solid #f2f2f2;
  padding: 15px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .woocommerce-order-received .woocommerce-customer-details .woocommerce-columns,
  .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
  .woocommerce-order-received .woocommerce-customer-details .woocommerce-column,
  .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-column {
    max-width: 48%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

/* ------------------------------------------------------------- Table styles */
.custom-table {
  height: auto;
  width: 100%;
}

.custom-table tr {
  border-bottom: 1px solid #194421;
}

.custom-table td,
.custom-table th {
  padding: 10px 0;
}

.custom-table th {
  text-transform: uppercase;
  font-weight: 600;
}

/* ------------------------------------------------------------- Star rating */
.star-rating {
  overflow: hidden;
  position: relative;
  height: 1.618em;
  line-height: 1.618;
  width: 71px;
  font-family: star;
  font-weight: 400;
}

.star-rating::before {
  content: "★★★★★";
  opacity: 0.25;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}

.star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}

.star-rating span::before {
  content: "★★★★★";
  top: 0;
  position: absolute;
  left: 0;
  color: #194421;
}

p.stars a {
  position: relative;
  height: 1em;
  width: 1em;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
  margin-right: 1px;
  font-weight: 400;
}

p.stars a::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-family: star;
  content: "★";
  color: #194421;
  text-indent: 0;
  opacity: 0.25;
  font-size: 1.4rem;
}

p.stars a:hover ~ a::before {
  content: "★";
  color: #194421;
  opacity: 0.25;
}

p.stars:hover a::before {
  content: "★";
  color: #194421;
  opacity: 1;
}

p.stars.selected a.active::before {
  content: "★";
  color: #194421;
  opacity: 1;
}

p.stars.selected a.active ~ a::before {
  content: "★";
  color: #194421;
  opacity: 0.25;
}

p.stars.selected a:not(.active)::before {
  content: "★";
  color: #194421;
  opacity: 1;
}

/* ------------------------------------------------------------- Single Product carousel */
.carousel-inner {
  position: relative;
  height: 300px;
}

@media (min-width: 768px) {
  .carousel-inner {
    height: 400px;
  }
}

.carousel-item {
  position: relative;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  transition: -webkit-transform 0.6s ease;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  height: 100%;
}

.carousel-item img {
  max-height: 100%;
  max-width: 70%;
  width: auto;
  display: block;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
  display: block;
}

.carousel-item-next,
.carousel-item-prev {
  position: absolute;
  top: 0;
}

.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  .carousel-item-next.carousel-item-left,
  .carousel-item-prev.carousel-item-right {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.active.carousel-item-right,
.carousel-item-next {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  .active.carousel-item-right,
  .carousel-item-next {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.active.carousel-item-left,
.carousel-item-prev {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  .active.carousel-item-left,
  .carousel-item-prev {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.carousel-control-next,
.carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 20px;
  color: #fff;
  text-align: center;
  opacity: 0.5;
}

.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.carousel-indicators {
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  margin-top: 30px;
  list-style: none;
}

.carousel-indicators li {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 80px;
  height: 80px;
  margin-right: 3px;
  margin-left: 15px;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.carousel-indicators li::before {
  position: absolute;
  top: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.carousel-indicators .active {
  border: 1px solid #dee2e6;
}

.woocommerce-form-coupon-toggle:before,
.woocommerce-notices-wrapper:before {
  display: none;
}

.woocommerce-form-coupon-toggle svg,
.woocommerce-notices-wrapper svg {
  background-color: #194421 !important;
}

.woocommerce-form-coupon-toggle .wc-block-components-notice-banner,
.woocommerce-notices-wrapper .wc-block-components-notice-banner {
  width: 100%;
  border-color: #194421 !important;
}
