/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/
/*************** ADD CUSTOM CSS HERE.   ***************/
/* Color */
/* Fonts */
/* Responsive Size */
/**/
/* Misc */
/* BREAKPOINTS */
.clearfix {
  clear: both;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.fade {
  -webkit-animation: fade 0.5s alternate forwards;
          animation: fade 0.5s alternate forwards;
}

@-webkit-keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.color-white {
  color: #fff !important;
}

.color-green {
  color: #07a800 !important;
}

.color-blue {
  color: #183186 !important;
}

.color-orange {
  color: #FCAF17 !important;
}

.fixed {
  position: fixed !important;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.w-auto {
  width: auto !important;
}

.font-noto {
  font-family: "Noto Sans", sans-serif;
}

.font-simsun {
  font-family: "SimSun", sans-serif;
}

.border-0 {
  border: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.l-0 {
  left: 0 !important;
}

.r-0 {
  right: 0 !important;
}

.t-0 {
  top: 0 !important;
}

.b-0 {
  bottom: 0 !important;
}

.w-full {
  width: 100% !important;
}

.h-full {
  height: 100% !important;
}

.overflow-scrollbar {
  overflow: auto !important;
  max-width: 100%;
  scrollbar-width: thin;
  margin-bottom: 1.0714285714rem;
}
.overflow-scrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.overflow-scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.overflow-scrollbar::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}
.overflow-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  white-space: nowrap;
}

/**
 * Set up a decent box model on the root element
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*:focus,
*:hover {
  text-decoration: none !important;
  outline: none !important;
}

/**
 * Basic styles for links
 */
a {
  text-decoration: none;
  outline: none !important;
  color: #183186;
}
a:active, a:focus, a:hover {
  text-decoration: underline;
}
body {
  min-height: 100vh;
  background: #fff;
}
@media (min-width: 1200px) {
  .content-area > .row {
    padding-left: 3.7857142857rem;
    padding-right: 3.7857142857rem;
  }
}

.col, .columns, .gallery-item {
  padding-bottom: 0;
}

/**
 * Basic typography style for copy text
 */
html {
  font-size: 14px;
}
@media (min-width: 1950px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 1499px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 1198px) {
  html {
    font-size: 13px;
  }
}
@media (max-width: 849px) {
  html {
    font-size: 12px;
  }
}
@media (max-width: 549px) {
  html {
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}

body {
  font-size: 1rem;
  letter-spacing: 0;
}
@media (max-width: 549px) {
  body {
    font-size: 1rem;
  }
}

h1, h2, h3, h4, h5, span, p {
  line-height: 1.75;
}

#wrapper {
  overflow: hidden;
}

#top-bar {
  background: #f6f6f6;
  color: #000000;
  font-size: 0.8571428571rem;
  text-align: center;
}
#top-bar .nav > li > a {
  color: #000000;
  font-size: 0.8571428571rem;
  letter-spacing: 0.0857142857rem;
}

#logo img {
  max-height: 124px !important;
}
@media (max-width: 549px) {
  #logo {
    width: auto !important;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    margin: 0;
  }
  #logo img {
    max-width: 14.0714285714rem;
    max-height: 7.7142857143rem !important;
  }
}

#wrapper .stuck #logo img {
  max-height: 100px !important;
}
@media (max-width: 549px) {
  #wrapper .stuck #logo img {
    max-height: 68px !important;
    max-width: none !important;
    margin-top: 9px;
  }
}

.header-main {
  margin-bottom: 35px;
}
@media (max-width: 549px) {
  .header-main {
    margin-bottom: 1.4285714286rem;
  }
}
.header-main:after {
  content: "";
  display: block;
  width: 100%;
  height: 36px;
  margin-top: -1px;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ba1e1f;
  z-index: -1;
}
@media (max-width: 549px) {
  .header-main:after {
    height: 1.7142857143rem;
    margin-top: -0.2142857143rem;
  }
}
@media (max-width: 549px) {
  .stuck .header-main:after {
    height: 24px;
    margin-top: -14px;
  }
}
@media (max-width: 549px) {
  .header-main {
    height: 4.2857142857rem !important;
  }
  .stuck .header-main {
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  .header-inner {
    padding-left: 4.8571428571rem;
    padding-right: 4.8571428571rem;
  }
}

.header-nav.nav-left > li {
  margin-right: 0.7142857143rem;
  position: relative;
}
.header-nav.nav-left > li::before {
  content: "" !important;
  display: block !important;
  width: auto !important;
  margin: 0 !important;
  z-index: 0 !important;
  position: absolute;
  left: 0 !important;
  right: 0 !important;
  top: 50% !important;
  bottom: auto !important;
  height: 6.2857142857rem;
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
  border: 0 !important;
  pointer-events: auto;
}
.header-nav.nav-left > li > a {
  position: relative;
  color: #ffffff;
  font-size: 1rem;
  font-weight: normal;
  z-index: 1;
}
.header-nav.nav-left > li:hover > a::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.header-nav .sub-menu > .row {
  overflow: hidden;
}
.header-nav .sub-menu > .row > .col:first-child {
  margin-left: -1.5rem;
}
.header-nav .sub-menu .ux-menu {
  border-left: 1px solid #f6f6f6;
  padding-left: 1.4285714286rem;
}
.header-nav .sub-menu .ux-menu-link {
  font-size: 0.8571428571rem;
  font-weight: normal;
  color: #000;
}
.header-nav .sub-menu .ux-menu-link.is-bold {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.3571428571rem !important;
}
.header-nav .sub-menu .ux-menu-link:hover .ux-menu-link__text::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.header-nav .sub-menu .ux-menu-link__text {
  position: relative;
}
.header-nav .sub-menu .ux-menu-link__text::after {
  content: "";
  position: absolute;
  bottom: -0.1428571429rem;
  left: 0;
  width: 100%;
  height: 0.0714285714rem;
  background-color: #000;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header-nav .sub-menu .tabbed-content > .nav-tabs {
  width: 17.8571428571rem;
  font-size: 2.2857142857rem;
  padding-left: 1.4285714286rem;
}
.header-nav .sub-menu .tabbed-content > .nav-tabs > li {
  margin: 0;
  border: 0;
}
.header-nav .sub-menu .tabbed-content > .nav-tabs > li > a {
  padding: 0.7142857143rem 1.4285714286rem;
  font-weight: bold;
  color: #757575;
  font-size: 2.2857142857rem;
  background: none;
  position: relative;
  border: 0 !important;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-nav .sub-menu .tabbed-content > .nav-tabs > li > a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 2.1428571429rem;
  width: 0.2142857143rem;
  background-color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}
.header-nav .sub-menu .tabbed-content > .nav-tabs > li.active > a {
  color: #000;
}
.header-nav .sub-menu .tabbed-content > .nav-tabs > li.active > a:after {
  opacity: 1;
}
.header-nav .sub-menu .tabbed-content > .tab-panels {
  padding: 0;
  border: 0;
  width: calc(100% - 17.8571428571rem);
}
.header-nav .sub-menu .menu-new-arrivals .ux-menu-link {
  font-size: 1rem;
  font-weight: bold;
}
.header-nav .sub-menu.nav-dropdown > li > a {
  color: #000 !important;
}
.header-nav .sub-menu.nav-dropdown > li:hover > a {
  color: #d81f29 !important;
}
.header-nav.nav-right {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.header-nav.nav-right > li {
  margin: 0;
}
.header-nav.nav-right > li > a {
  position: relative;
  color: white;
  font-size: 1rem;
  font-weight: normal;
  z-index: 1;
  text-align: center;
  padding: 0.5rem;
  white-space: nowrap;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.header-nav.nav-right > li > a .header-account-title {
  max-width: 5.7142857143rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-nav.nav-right > li.header-button-1 {
  margin: 0;
}
.header-nav.nav-right > li.header-button-1 .button {
  padding: 0.5rem;
  height: auto;
  line-height: auto;
}
.header-nav.nav-right > li.header-button-1 .button i {
  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;
  width: 1.4285714286rem;
  height: 1.4285714286rem;
  margin: 0;
  background: url("icons/ic-pin-desktop-white.svg") no-repeat center center;
  background-size: contain;
  top: 0;
}
.header-nav.nav-right > li.header-button-1 .button i::before {
  display: none;
}
.header-nav.nav-right > li.header-button-1 .button span {
  display: none;
}
.header-nav.nav-right > li.header-divider {
  margin: 0 0.7142857143rem;
}

.header-search > a {
  color: #000;
}
.header-search > a > i {
  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;
  width: 1.4285714286rem;
  height: 1.4285714286rem;
  margin-right: 0.7142857143rem;
  background: url("icons/search-white.svg") no-repeat center center;
  background-size: contain;
}
.header-search > a > i::before {
  display: none;
}
.header-search > a::after {
  content: "Search";
  font-size: 1rem;
}
@media (max-width: 1199px) {
  .header-search > a::after {
    display: none;
  }
}

.account-item > a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.account-item > a .icon-user {
  width: 1.4285714286rem;
  height: 1.4285714286rem;
  margin-right: 0.7142857143rem;
  background: url("icons/ic-user-logged-desktop-white.svg") no-repeat center center;
  background-size: contain;
}
.account-item > a .icon-user::before {
  display: none;
}
.account-item > a.nav-top-not-logged-in {
  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;
}
@media (min-width: 1200px) {
  .account-item > a.nav-top-not-logged-in span {
    display: inline-block;
    width: 1.4285714286rem;
    height: 1.4285714286rem;
    margin-right: 0.7142857143rem;
    background: url("icons/ic-user-desktop-white.svg") no-repeat center center;
    background-size: contain;
    color: transparent;
    margin: 0;
  }
  .account-item > a.nav-top-not-logged-in span::before {
    display: none;
  }
}

.header-wishlist-icon > a,
.cart-item .header-button > a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0 !important;
  border-radius: 0 !important;
  min-width: 0;
  line-height: 0;
  padding: 0.5rem !important;
}
.header-wishlist-icon > a .icon-shopping-basket,
.cart-item .header-button > a .icon-shopping-basket {
  top: 0;
}
.header-wishlist-icon > a .icon-shopping-basket::before,
.cart-item .header-button > a .icon-shopping-basket::before {
  content: "";
  display: inline-block;
  width: 1.4285714286rem;
  height: 1.4285714286rem;
  background: url("icons/ic-bag-desktop-white.svg") no-repeat center center;
  background-size: contain;
}
.header-wishlist-icon > a .icon-shopping-basket:after,
.cart-item .header-button > a .icon-shopping-basket:after {
  right: -0.5rem;
  top: -0.2142857143rem;
  background: #e91d24;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 0.7142857143rem;
  min-width: 1.2142857143rem;
  height: 1.2142857143rem;
  line-height: 1.2142857143rem;
}
.header-wishlist-icon > a:hover,
.cart-item .header-button > a:hover {
  background: none;
}
.header-wishlist-icon > a .wishlist-icon,
.cart-item .header-button > a .wishlist-icon {
  width: 1.4285714286rem;
  height: 1.4285714286rem;
  background: url("icons/ic-heart-desktop-white.svg") no-repeat center center;
}
.header-wishlist-icon > a .wishlist-icon::before,
.cart-item .header-button > a .wishlist-icon::before {
  display: none;
}
.header-wishlist-icon > a .wishlist-icon:after,
.cart-item .header-button > a .wishlist-icon:after {
  right: -0.5rem;
  top: -0.2142857143rem;
  background: #e91d24;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 0.7142857143rem;
}
.header-wishlist-icon .header-wishlist-title,
.cart-item .header-button .header-wishlist-title {
  display: none;
}
@media (max-width: 1199px) {
  .header-wishlist-icon .header-wishlist-title,
  .cart-item .header-button .header-wishlist-title {
    display: inline-block !important;
  }
}

@media (max-width: 1199px) {
  .header-wishlist-icon > a {
    padding-left: 20px !important;
    padding-bottom: 15px !important;
    padding-top: 15px !important;
  }
  .header-wishlist-icon > a .wishlist-icon {
    float: left;
    margin-left: 0;
    margin-top: 0.2142857143rem;
    margin-right: 0.7142857143rem;
    background-image: url("icons/ic-heart-desktop.svg");
  }
}

.mfp-bg {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(1.4285714286rem);
}
.mfp-bg.mfp-ready {
  opacity: 1;
}

.header .flex-col.show-for-medium {
  display: block !important;
}
@media (min-width: 1200px) {
  .header .flex-col.show-for-medium {
    display: none !important;
  }
}
.header .flex-col.hide-for-medium {
  display: none !important;
}
@media (min-width: 1200px) {
  .header .flex-col.hide-for-medium {
    display: block !important;
  }
}

.mobile-nav.nav > li > a {
  font-size: 1rem;
}
.mobile-nav.nav > li.cart-item {
  margin-right: 0;
}
.mobile-nav.nav > li.cart-item .header-button a i:before, .mobile-nav.nav > li.header-search a i {
  width: 1.8571428571rem;
  height: 1.8571428571rem;
}

.mobile-sidebar {
  background: #f6f6f6;
}
.mobile-sidebar .sidebar-menu {
  padding-top: 0;
  padding-bottom: 0;
  background: #fff;
}
.mobile-sidebar .sidebar-menu > ul > li {
  border-bottom: 1px solid #D7D3C6;
  border-top: 1px solid #D7D3C6;
  margin-bottom: -1px;
}
.mobile-sidebar .sidebar-menu > ul > li > a {
  font-size: 1.1428571429rem;
  font-weight: 400;
  color: #000;
  display: block;
}
.mobile-sidebar .sidebar-menu > ul > li.account-item {
  background: #f6f6f6;
}
.mobile-sidebar .sidebar-menu > ul > li.account-item a {
  text-align: left;
}
.mobile-sidebar .sidebar-menu > ul > li.account-item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.mobile-sidebar .sidebar-menu > ul > li.account-item > a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0;
  margin-right: 0.7142857143rem;
  background: url(icons/ic-user-desktop.svg) no-repeat center center;
  background-size: contain;
  color: transparent;
  opacity: 1 !important;
  vertical-align: middle;
}
.mobile-sidebar .sidebar-menu > ul > li.account-item + li {
  background: #f6f6f6;
}

@media (max-width: 549px) {
  .medium-logo-center .flex-left,
  .medium-logo-center .flex-right {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}

#footer {
  border-bottom: 1px solid #bebebe;
  border-top: 1px solid #bebebe;
  clear: both;
  margin-top: 30px;
  overflow: hidden;
  padding-top: 3.7142857143rem;
  padding-bottom: 3.4285714286rem;
  background: #010837;
  color: #fff;
}
@media (min-width: 1200px) {
  #footer {
    padding-left: 3.7857142857rem;
    padding-right: 3.7857142857rem;
  }
}
#footer .social-icons a {
  color: #000;
}
@media (min-width: 550px) {
  #footer .accordion .accordion-item {
    border: 0;
  }
  #footer .accordion .accordion-title {
    padding: 0;
    border: 0;
    font-size: 0.8571428571rem;
    font-weight: normal;
    text-transform: uppercase;
    pointer-events: none;
  }
  #footer .accordion .accordion-title button {
    display: none;
  }
  #footer .accordion .accordion-inner {
    display: block !important;
    padding-top: 0.7142857143rem;
  }
}
@media (max-width: 549px) {
  #footer .accordion .accordion-title {
    font-size: 0.8571428571rem;
    font-weight: normal;
    padding-top: 1.2857142857rem;
    padding-bottom: 1.2857142857rem;
    text-transform: uppercase;
  }
}

.footer-info p {
  font-size: 0.8571428571rem;
  max-width: 28.5714285714rem;
}
.footer-info .wpcf7-form {
  max-width: 28.5714285714rem;
}

.footer-links .ux-menu-title {
  font-size: 0.8571428571rem;
  font-weight: normal;
}
.footer-links .ux-menu-link {
  font-size: 0.8571428571rem;
  text-shadow: 0 0 0 #2e2e2e;
}
.footer-links .ux-menu-link a {
  border: 0;
}
.footer-links .ux-menu-link a:hover {
  color: #ba1e1f !important;
}
.footer-links .ux-menu-link--active .ux-menu-link__link {
  color: #ba1e1f !important;
}
@media (max-width: 1199px) {
  .footer-links .large-3 {
    padding-bottom: 0;
  }
}

.footer-secondary {
  display: none;
}

.copyright-footer {
  font-weight: bold;
}

.absolute-footer {
  background: #010837 !important;
  color: #fff;
}

.social-icons a {
  color: #fff !important;
}
.social-icons a:hover {
  color: #d7d3c6 !important;
}

.button {
  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;
  height: 2.8571428571rem;
  line-height: 1.4;
  font-size: 1rem;
  font-weight: 600;
  gap: 0.5714285714rem;
}
.button.wc-forward, .button.secondary {
  background: none;
  border-color: #000;
  color: #000;
}
.button.checkout {
  background: #000;
  color: #fff;
}
.button.is-outline {
  border-width: 1px;
}

.quantity .button.plus {
  color: #000 !important;
}

ul.product_list_widget li a:not(.remove) {
  color: #000;
}

.quantity input[type=number] {
  color: #000;
}

.page-numbers .page-number {
  border-radius: 0.2857142857rem;
  border-width: 1px;
  font-weight: 500;
  min-width: 3rem;
  height: 3rem;
  line-height: 2.8571428571rem;
}

.accordion .accordion-item {
  margin-bottom: -1px;
  border-bottom: 1px solid #D7D3C6;
  border-top: 1px solid #D7D3C6;
}
.accordion .accordion-item .accordion-title {
  padding-top: 1.7857142857rem;
  padding-bottom: 1.7857142857rem;
  padding-left: 0;
  padding-right: 1.1428571429rem;
  position: relative;
  font-weight: 600;
  border: 0;
}
.accordion .accordion-item .accordion-title button {
  position: absolute;
  right: -10px;
  left: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0;
  opacity: 1;
}
.accordion .accordion-item .accordion-title button i {
  display: inline-block;
  width: 1.1428571429rem;
  height: 1.1428571429rem;
  position: relative;
}
.accordion .accordion-item .accordion-title button i::before, .accordion .accordion-item .accordion-title button i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.7142857143rem;
  height: 0.0714285714rem;
  background: #000;
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(0deg);
          transform: translateY(-50%) translateX(-50%) rotate(0deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.accordion .accordion-item .accordion-title button i:after {
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(90deg);
          transform: translateY(-50%) translateX(-50%) rotate(90deg);
}
.accordion .accordion-item .accordion-title.active {
  background: none;
  border-color: #D7D3C6;
}
.accordion .accordion-item .accordion-title.active button i::before {
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(0deg);
          transform: translateY(-50%) translateX(-50%) rotate(0deg);
}
.accordion .accordion-item .accordion-title.active button i::after {
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(0deg);
          transform: translateY(-50%) translateX(-50%) rotate(0deg);
}
.accordion .accordion-inner {
  padding: 0;
}

.wp-block-woocommerce-accordion-group .wp-block-woocommerce-accordion-item {
  margin-bottom: -0.0714285714rem;
  border-top: 1px solid #D7D3C6;
  border-bottom: 1px solid #D7D3C6;
}
.wp-block-woocommerce-accordion-group .wp-block-woocommerce-accordion-header .accordion-item__toggle {
  padding-top: 1.7857142857rem;
  padding-bottom: 1.7857142857rem;
  padding-left: 0;
  padding-right: 1.1428571429rem;
  position: relative;
  font-weight: 600;
  margin: 0;
}
.wp-block-woocommerce-accordion-group .accordion-content__wrapper {
  padding-top: 1.4285714286rem;
  padding-bottom: 1.4285714286rem;
}
.wp-block-woocommerce-accordion-group .accordion-content__wrapper h2, .wp-block-woocommerce-accordion-group .accordion-content__wrapper h3 {
  font-size: 1.1428571429rem;
}

.newsletter-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.7142857143rem;
}
.newsletter-form > .flex-row {
  gap: 0.7142857143rem;
}
.newsletter-form > .flex-row .flex-col {
  padding: 0;
}
.newsletter-form .wpcf7-form-control {
  height: 3.5714285714rem;
  line-height: 3.5714285714rem;
  border-radius: 0 !important;
  font-size: 1rem !important;
}
.newsletter-form .wpcf7-email, .newsletter-form .wpcf7-text {
  padding: 0rem 1.4285714286rem;
  border: 1px solid #d7d3c6;
  background: #80849b !important;
  color: #000 !important;
}
.newsletter-form .wpcf7-email::-webkit-input-placeholder, .newsletter-form .wpcf7-text::-webkit-input-placeholder {
  color: #000 !important;
  opacity: 1 !important;
}
.newsletter-form .wpcf7-email::-moz-placeholder, .newsletter-form .wpcf7-text::-moz-placeholder {
  color: #000 !important;
  opacity: 1 !important;
}
.newsletter-form .wpcf7-email:-ms-input-placeholder, .newsletter-form .wpcf7-text:-ms-input-placeholder {
  color: #000 !important;
  opacity: 1 !important;
}
.newsletter-form .wpcf7-email::-ms-input-placeholder, .newsletter-form .wpcf7-text::-ms-input-placeholder {
  color: #000 !important;
  opacity: 1 !important;
}
.newsletter-form .wpcf7-email::placeholder, .newsletter-form .wpcf7-text::placeholder {
  color: #000 !important;
  opacity: 1 !important;
}
.newsletter-form .wpcf7-email:focus, .newsletter-form .wpcf7-text:focus {
  background: #FFF !important;
}
.newsletter-form .wpcf7-submit {
  width: 100%;
  background-color: #f6f6f6 !important;
  color: #000 !important;
  border: 0 !important;
  font-weight: normal;
  margin: 0;
}
.newsletter-form .wpcf7-submit:hover {
  background: #000 !important;
  color: #fff !important;
}
.newsletter-form .wpcf7-spinner {
  position: absolute;
}
.newsletter-form ~ .wpcf7-response-output {
  color: #fff;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: 0 !important;
}

.pum-container .newsletter-form .wpcf7-email, .pum-container .newsletter-form .wpcf7-text {
  background: #80849b !important;
}

@media (min-width: 1200px) {
  .category-page-row {
    padding-left: 4.8571428571rem;
    padding-right: 4.8571428571rem;
  }
}
@media (min-width: 1200px) {
  .category-page-row > .col {
    padding-left: 0;
    padding-right: 0;
  }
}

.woocommerce-result-count {
  display: none;
}

.category-filtering {
  display: none;
}

.filter-btn {
  font-weight: normal;
  margin: 0;
  padding: 0;
  font-size: 0.8571428571rem;
  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;
}
.filter-btn i {
  display: inline-block;
  width: 1.4285714286rem;
  height: 1.4285714286rem;
  margin-left: 0.5714285714rem;
  background: url("icons/icon-filter.svg") no-repeat center center;
}

@media (min-width: 1200px) {
  .page-title-inner {
    padding-left: 4.8571428571rem;
    padding-right: 4.8571428571rem;
  }
}
.page-title-inner {
  font-size: 0.8571428571rem;
}
@media (max-width: 849px) {
  .page-title-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-title-inner:after {
    display: none;
  }
}
@media (max-width: 849px) {
  .page-title-inner > .flex-col {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 1;
        flex-shrink: 1;
    width: auto !important;
    -ms-flex: none;
        flex: none;
  }
}
@media (max-width: 849px) {
  .page-title-inner > .flex-col:first-child {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 100% !important;
  }
}
.page-title-inner .divider {
  margin: 0 1.0714285714rem;
}
@media (max-width: 849px) {
  .page-title-inner .divider {
    color: #d7d3c6;
  }
}
.page-title-inner .woocommerce-ordering {
  margin-left: 0rem;
}
.page-title-inner .woocommerce-ordering select {
  border: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  text-transform: uppercase;
}
@media (max-width: 849px) {
  .page-title-inner .woocommerce-ordering select {
    font-size: 0.8571428571rem;
  }
}

.catalog-sidebar {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.catalog-sidebar + .large-9 {
  margin-left: -25%;
  width: 100%;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 849px) {
  .catalog-sidebar + .large-9 {
    margin-left: 0;
  }
}
.catalog-sidebar.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.catalog-sidebar.is-active + .large-9 {
  margin-left: 0;
  width: 75%;
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  max-width: 75%;
}
@media (max-width: 849px) {
  .catalog-sidebar.is-active + .large-9 {
    width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

@media (max-width: 849px) {
  .products.row {
    margin-left: -0.2857142857rem !important;
    margin-right: -0.2857142857rem !important;
  }
}

@media (max-width: 849px) {
  .product-small.col {
    padding-left: 0.2857142857rem;
    padding-right: 0.2857142857rem;
  }
}
.product-small .ux-swatches {
  display: none;
}
.product-small .box-text-products {
  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;
  padding-top: 1.0714285714rem;
}
@media (max-width: 549px) {
  .product-small .box-text-products {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.product-small .title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.product-small .product-title a {
  font-size: 0.8571428571rem;
  font-weight: 600;
  color: #000;
}
.product-small .product-title a:hover {
  text-decoration: underline;
}
.product-small .price span.amount {
  font-weight: 600;
  color: #000;
}
.product-small .price del {
  opacity: 0.5;
}
.product-small > .col-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.product-small > .col-inner .cfvsw_variations_form {
  width: 100%;
}
.product-small > .col-inner .badge-container {
  width: 100%;
  margin-top: 0.2142857143rem;
  position: static !important;
  -webkit-box-ordinal-group: 100;
      -ms-flex-order: 99;
          order: 99;
}
.product-small > .col-inner .badge-container .badge {
  margin: 0;
  height: auto;
}
.product-small > .col-inner .badge-container .badge-inner {
  font-size: 0.8571428571rem;
  color: rgb(236, 52, 46);
  background: none;
  padding: 0;
  font-weight: normal;
}
.product-small .wishlist-icon {
  display: none;
}

.widget.widget-woof header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 4.7142857143rem;
}
.widget.widget-woof header span {
  font-size: 1.1428571429rem;
  font-weight: normal;
  margin-right: 0.7142857143rem;
}
.widget.widget-woof header .woof-icon-filter {
  display: inline-block;
  width: 1.4285714286rem;
  height: 1.4285714286rem;
  background: url("icons/icon-filter.svg") no-repeat center center;
  margin-right: 0.7142857143rem;
}
.widget.widget-woof header .is-divider {
  display: none;
}
.widget.widget-woof header .close-btn {
  display: inline-block;
  width: 3.5rem;
  height: 2.5714285714rem;
  background: url("icons/ic-close.svg") no-repeat center center;
  margin: 0;
  margin-left: auto;
  cursor: pointer;
  border-left: 1px solid #d7d3c6;
}
.widget.widget-woof .woof_container {
  padding: 0;
  margin: 0;
}
.widget.widget-woof .woof_container .woof_container_inner {
  margin-bottom: -1px;
}
.widget.widget-woof .woof_container .woof_container_inner h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: normal;
  color: #000;
  height: auto;
  line-height: 1.5rem;
  letter-spacing: 0.5px;
  padding: 1.1428571429rem 0 1.1428571429rem 0;
  text-transform: capitalize;
  position: relative;
  border-top: 1px solid #d7d3c6;
  border-bottom: 1px solid #d7d3c6;
}
.widget.widget-woof .woof_container .woof_container_inner h4 a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
}
.widget.widget-woof .woof_block_html_items {
  padding-top: 0.8571428571rem;
  padding-bottom: 0.8571428571rem;
}
.widget.widget-woof .woof_submit_search_form_container {
  padding-top: 0.8571428571rem;
  margin-top: 0;
}
.widget.widget-woof .woof_list_checkbox li {
  margin: 0.3571428571rem 0;
}
.widget.widget-woof .woof_list_checkbox label {
  font-weight: normal;
  margin: 0;
}
.widget.widget-woof .irs {
  margin-top: 1.4285714286rem;
}
.widget.widget-woof .irs-with-grid {
  display: none;
}
.widget.widget-woof .woof_fs_by_price h4 {
  cursor: pointer;
}
.widget.widget-woof .irs--round .irs-from, .widget.widget-woof .irs--round .irs-to, .widget.widget-woof .irs--round .irs-single {
  background-color: #000;
}
.widget.widget-woof .irs--round .irs-bar {
  background-color: #000;
}
.widget.widget-woof .irs--round .irs-handle {
  border-color: #000;
}
.widget.widget-woof .woof_is_closed {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.filter-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 4.7142857143rem;
}
.filter-header span {
  font-size: 1.1428571429rem;
  font-weight: normal;
  margin-right: 0.7142857143rem;
}
.filter-header .woof-icon-filter {
  display: inline-block;
  width: 1.4285714286rem;
  height: 1.4285714286rem;
  background: url("icons/icon-filter.svg") no-repeat center center;
  margin-right: 0.7142857143rem;
}
.filter-header .is-divider {
  display: none;
}
.filter-header .close-btn {
  display: inline-block;
  width: 3.5rem;
  height: 2.5714285714rem;
  background: url("icons/ic-close.svg") no-repeat center center;
  margin: 0;
  margin-left: auto;
  cursor: pointer;
  border-left: 1px solid #d7d3c6;
}

@media (min-width: 1200px) {
  #shop-sidebar {
    padding-right: 1.4285714286rem;
  }
}
#shop-sidebar .widget.woocommerce {
  margin: 0;
  margin-top: -1px;
}
#shop-sidebar .widget.woocommerce .widget-title,
#shop-sidebar .wpc-filter-header .widget-title {
  display: block;
  margin: 0;
  font-size: 1rem;
  font-weight: normal;
  color: #000;
  height: auto;
  line-height: 1.5rem;
  letter-spacing: 0.5px;
  padding: 1.1428571429rem 0 1.1428571429rem 0;
  text-transform: capitalize;
  position: relative;
  border-top: 1px solid #d7d3c6;
  border-bottom: 1px solid #d7d3c6;
  cursor: pointer;
}
#shop-sidebar .is-divider {
  display: none;
}
#shop-sidebar .widget.woocommerce > ul,
#shop-sidebar .widget.woocommerce > form,
#shop-sidebar .wpc-filter-content {
  padding-top: 0.8571428571rem;
  padding-bottom: 0.8571428571rem;
  display: none;
}
#shop-sidebar .widget.woocommerce > ul .cat-item > a,
#shop-sidebar .widget.woocommerce > form .cat-item > a,
#shop-sidebar .wpc-filter-content .cat-item > a {
  color: #757575;
}
#shop-sidebar .widget.woocommerce > ul .cat-item > a input,
#shop-sidebar .widget.woocommerce > form .cat-item > a input,
#shop-sidebar .wpc-filter-content .cat-item > a input {
  pointer-events: none;
  margin-bottom: 0;
}
#shop-sidebar .widget.woocommerce > ul .cat-item > a:hover,
#shop-sidebar .widget.woocommerce > form .cat-item > a:hover,
#shop-sidebar .wpc-filter-content .cat-item > a:hover {
  color: #ba1e1f;
}
#shop-sidebar .widget.woocommerce > form {
  padding-top: 2.1428571429rem;
}
#shop-sidebar .cfvsw-filters > li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}
#shop-sidebar .cfvsw-filters > li > a {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
#shop-sidebar .cfvsw-filters > li > a::before {
  position: static;
  line-height: 18px;
  opacity: 1;
}
#shop-sidebar .cfvsw-filters > li > a:hover::before {
  color: #ba1e1f !important;
}
#shop-sidebar .wpc-filters-section {
  margin: 0;
  margin-top: -1px;
}
#shop-sidebar .wpc-filter-content {
  padding-top: 0.8571428571rem;
  padding-bottom: 0.8571428571rem;
}
#shop-sidebar .wpc-filter-content .wpc-term-item a {
  color: #757575;
  font-size: 1rem;
}
#shop-sidebar .wpc-filter-content .wpc-term-item a:hover {
  color: #ba1e1f;
}
#shop-sidebar .wpc-posts-found {
  display: none;
}
#shop-sidebar .wpc-edit-filter-set {
  display: none;
}

.rtwpvg-slider-wrapper {
  margin: -0.1428571429rem !important;
}
@media (max-width: 849px) {
  .rtwpvg-slider-wrapper {
    margin: 0 !important;
    margin-bottom: 0.3571428571rem !important;
  }
}

.rtwpvg-slider-wrapper {
  width: 100%;
}

.rtwpvg-gallery-image img {
  width: 100%;
}

.rtwpvg-images.rtwpvg-has-product-thumbnail .rtwpvg-grid-layout .rtwpvg-thumbnail-wrapper .rtwpvg-thumbnail-slider .rtwpvg-thumbnail-image, .rtwpvg-images.rtwpvg-has-product-thumbnail .rtwpvg-wrapper .rtwpvg-thumbnail-wrapper .rtwpvg-thumbnail-slider .rtwpvg-thumbnail-image {
  opacity: 1;
}

.rtwpvg-thumbnail-wrapper {
  --rtwpvg-thumbnail-gap: rem(4);
}

.rtwpvg-thumbnail-slider {
  margin: 0 -0.1428571429rem;
}
.rtwpvg-thumbnail-slider > .rtwpvg-thumbnail-image:only-child {
  grid-column: 1/-1; /* span the entire row */
  width: 100%; /* ensure full width */
}

.rtwpvg-thumbnail-image {
  padding: 0.1428571429rem;
}

.single-product .product-main {
  padding-top: 0;
}

.product-gallery {
  font-size: 0;
}
.product-gallery .rtwpvg-trigger-position-top-right {
  right: 0.7142857143rem !important;
  top: 0.7142857143rem !important;
}

.product-info .product-stacked-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.product-info .product-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.7142857143rem;
  line-height: 2.8571428571rem;
  font-weight: 400;
  margin: 0;
}
.product-info .is-divider.small {
  display: none;
}
.product-info .price-wrapper {
  font-size: 1.4285714286rem;
}
.product-info .price-wrapper .price {
  margin: 0;
  font-size: 1.4285714286rem;
  font-weight: 400;
}
.product-info .price-wrapper .amount {
  font-size: 1.4285714286rem;
  font-weight: 400;
}
.product-info .variations {
  margin-top: 1.0714285714rem;
}
.product-info .variations .label {
  position: relative;
}
.product-info .variations label {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  margin-top: 0;
}
.product-info .variations td.value {
  padding-bottom: 1.7142857143rem;
}
.product-info .cfvsw-swatches-container .cfvsw-swatches-option {
  color: #000;
}
.product-info .cfvsw-swatches-container[swatches-attr=attribute_pa_size], .product-info .cfvsw-swatches-container[swatches-attr=attribute_size] {
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.2857142857rem;
}
.product-info .cfvsw-swatches-container[swatches-attr=attribute_pa_size] .cfvsw-swatches-option, .product-info .cfvsw-swatches-container[swatches-attr=attribute_size] .cfvsw-swatches-option {
  width: 100%;
  max-width: calc(25% - 0.2142857143rem);
  height: 3.4285714286rem;
  min-height: 3.4285714286rem;
  border-color: #d7d3c6;
}
.product-info .cfvsw-swatches-container[swatches-attr=attribute_pa_size] .cfvsw-swatches-option.cfvsw-selected-swatch, .product-info .cfvsw-swatches-container[swatches-attr=attribute_size] .cfvsw-swatches-option.cfvsw-selected-swatch {
  background: #d7d3c6;
  border-color: #000;
}
.product-info .cfvsw-swatches-container[swatches-attr=attribute_pa_color] {
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.2857142857rem;
}
.product-info .cfvsw-swatches-container[swatches-attr=attribute_pa_color] .cfvsw-swatches-option {
  width: 2rem;
  height: 2rem;
}
.product-info .variations_form {
  margin-bottom: 0;
}
.product-info .price-wrapper + .cart {
  margin-top: 1.0714285714rem;
}
.product-info .cart,
.product-info .woocommerce-variation-add-to-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
.product-info .cart .ux-quantity,
.product-info .woocommerce-variation-add-to-cart .ux-quantity {
  font-size: 1rem;
  height: 2.8571428571rem;
}
.product-info .cart .ux-quantity > *,
.product-info .woocommerce-variation-add-to-cart .ux-quantity > * {
  min-width: 2.8571428571rem;
  height: 2.8571428571rem;
  line-height: 2.8571428571rem;
  font-size: 1rem;
  color: #000;
  border-color: #d7d3c6;
}
.product-info .cart .single_add_to_cart_button,
.product-info .woocommerce-variation-add-to-cart .single_add_to_cart_button {
  margin-left: 4.4285714286rem;
  font-size: 1rem;
  height: 3.4285714286rem;
  line-height: 3.4285714286rem;
  color: #000;
  background-color: #000;
  border-color: #000;
  color: #fff;
  font-weight: 400;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  text-transform: uppercase;
}
.product-info .cart .single_add_to_cart_button:hover,
.product-info .woocommerce-variation-add-to-cart .single_add_to_cart_button:hover {
  background-color: #fff;
  color: #000;
}
.product-info .yith-wcwl-add-to-wishlist {
  background: #f6f6f6;
  margin-top: -3.4285714286rem !important;
  min-height: 3.4285714286rem !important;
  margin-bottom: 0.7142857143rem;
}
.product-info .yith-wcwl-add-button {
  margin: 0 !important;
}
.product-info .yith-wcwl-add-button a {
  font-size: 0;
  width: 4.4285714286rem;
  height: 3.4285714286rem;
  line-height: 3.4285714286rem;
  text-align: center;
  background: #f6f6f6 !important;
}
.product-info .yith-wcwl-add-button a svg {
  vertical-align: middle !important;
  margin: 0 !important;
}
.product-info .yith-wcwl-add-button a span {
  display: none;
}
.product-info .product-page-accordian .accordion-item {
  border-bottom: 1px solid #d7d3c6;
}
.product-info .product-page-accordian .accordion-item .accordion-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5714285714rem;
  padding-bottom: 0.5714285714rem;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  background: none;
  min-height: 3.4285714286rem;
  border: 0;
}
.product-info .product-page-accordian .accordion-item .accordion-title button {
  position: relative;
  width: 1.4285714286rem;
  height: 1.4285714286rem;
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
  margin: 0;
  padding: 0;
  -webkit-transform: none !important;
          transform: none !important;
}
.product-info .product-page-accordian .accordion-item .accordion-title button i {
  display: none;
}
.product-info .product-page-accordian .accordion-item .accordion-title button::before, .product-info .product-page-accordian .accordion-item .accordion-title button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.7142857143rem;
  height: 0.0714285714rem;
  background: #000;
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(0deg);
          transform: translateY(-50%) translateX(-50%) rotate(0deg);
}
.product-info .product-page-accordian .accordion-item .accordion-title button::after {
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(90deg);
          transform: translateY(-50%) translateX(-50%) rotate(90deg);
}
.product-info .product-page-accordian .accordion-item .accordion-title.active button::before {
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(0deg);
          transform: translateY(-50%) translateX(-50%) rotate(0deg);
}
.product-info .product-page-accordian .accordion-item .accordion-title.active button::after {
  display: none;
}
.product-info .product-page-accordian .accordion-item .accordion-inner {
  padding: 0 0 1.4285714286rem;
  font-size: 0.8571428571rem;
}
.product-info .woocommerce-breadcrumb {
  -webkit-box-ordinal-group: 1000;
      -ms-flex-order: 999;
          order: 999;
  margin-top: 0.7142857143rem;
}
.product-info .size-guide-wrapper {
  display: inline-block;
  margin-left: 10px;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.product-info .size-guide-btn {
  white-space: nowrap;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 3px;
  text-decoration: underline;
  color: #000;
  font-weight: normal;
}
.product-info .size-guide-btn:hover {
  text-decoration: none;
}
.product-info .value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-info .ppcp-messages {
  display: none !important;
}

@media (min-width: 1200px) {
  .product-container,
  .product-footer {
    padding: 0 3.7857142857rem;
  }
}
.product-container .product-section-title,
.product-footer .product-section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.4285714286rem;
  text-transform: capitalize;
  margin-top: 1.4285714286rem;
}

.product-gallery {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

.rtwpvg-images {
  max-width: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 849px) {
  .rtwpvg-images {
    width: 100%;
  }
}

@media (max-width: 849px) {
  .rtwpvg-thumbnail-slider > .rtwpvg-thumbnail-image:only-child {
    display: none !important;
  }
}

.variations .reset_variations {
  bottom: 0 !important;
}

.rtwpvg-thumbnail-image {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
.rtwpvg-thumbnail-image img {
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-id-352 .page-title {
  margin-bottom: 2.1428571429rem;
  margin-top: 7.1428571429rem;
  padding: 0;
}
@media (max-width: 549px) {
  .page-id-352 .page-title {
    margin-top: 0rem;
    margin-bottom: 1.4285714286rem;
  }
}
.page-id-352 .page-title .entry-title {
  font-size: 1.7142857143rem;
  font-weight: normal;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}
.page-id-352 .page-title-sub {
  margin: 0;
  font-size: 0.8571428571rem;
}
.page-id-352 .page-title-sub p.lead {
  font-size: 0.8571428571rem;
}
.page-id-352 .page-title-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.page-id-352 .title-content {
  text-align: left;
  margin: 0;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.page-id-352 .button.primary.is-underline {
  text-decoration: underline;
  font-weight: normal;
}
.page-id-352 .button.primary.is-underline::before {
  display: none;
}
.page-id-352 .store-info h3 {
  font-size: 1rem;
  font-weight: 400;
}
.page-id-352 .store-info td, .page-id-352 .store-info th {
  border: 0;
}
.page-id-352 .map-section {
  width: calc(50vw - 1.6428571429rem);
  margin-bottom: -1.2142857143rem;
  overflow: hidden;
}
@media (max-width: 549px) {
  .page-id-352 .map-section {
    width: 100%;
    margin-bottom: -1.0714285714rem;
  }
}

@media (min-width: 1200px) {
  .blog-wrapper > .row {
    padding-left: 3.7857142857rem;
    padding-right: 3.7857142857rem;
  }
}

.blog-hero-section {
  margin-top: -2.1428571429rem;
  margin-bottom: 2.1428571429rem;
}

.post-item .box-text {
  padding-top: 0.7142857143rem;
}
.post-item .box-text .button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.post-item .is-divider {
  display: none;
}
.post-item .cat-label {
  color: #757575;
  font-size: 0.8571428571rem;
  text-transform: uppercase;
}
.post-item .cat-label span {
  opacity: 1 !important;
}
.post-item .cat-label .divider {
  color: #000;
  margin: 0 0.3571428571rem;
}
.post-item .post-title {
  margin-top: 1rem;
  font-size: 1.4285714286rem;
  font-weight: 500;
}
.post-item .from_the_blog_excerpt {
  margin-top: 0.7142857143rem;
}

.featured-posts .post-item .box-text {
  text-align: left;
  padding: 1.4285714286rem !important;
}
.featured-posts .post-item .box-text .button {
  font-size: 1rem;
  font-weight: 500;
}
.featured-posts .post-item .cat-label {
  margin-bottom: 0.7142857143rem;
}
.featured-posts .post-item .cat-label span {
  color: #fff;
}
.featured-posts .post-item .post-title {
  font-size: 1.7142857143rem;
  font-weight: 500;
  margin-bottom: 0.7142857143rem;
}

#post-list .post-item .image-cover {
  padding-top: 100% !important;
}

.jobs-listing-section {
  margin-top: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.jobs-header {
  margin-bottom: 3rem;
}

.jobs-header h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: #333;
  letter-spacing: 2px;
}

.jobs-header p {
  color: #666;
  font-size: 1.1rem;
}

.jobs-filter-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 4px;
}

.job-filter {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  background: white;
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 3px;
}

.job-filter:focus {
  outline: none;
  border-color: #333;
}

#search-jobs {
  background: #000;
  color: white;
  border: none;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 16px;
  border-radius: 3px;
}

#search-jobs:hover {
  background: #333;
}

.jobs-list-container {
  background: white;
  border-radius: 4px;
  overflow: hidden;
}

.job-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5rem 2rem;
  border: 1px solid #e9ecef;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  margin-bottom: 1.4285714286rem;
}

.job-item:last-child {
  border-bottom: none;
}

.job-item:hover {
  background-color: #f8f9fa;
}

.job-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.job-location {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.job-action .button {
  background: transparent;
  border: 1px solid #333;
  color: #333;
  padding: 8px 24px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 3px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.job-action .button:hover {
  background: #333;
  color: white;
  border-color: #333;
}

.pagination-wrapper {
  margin-top: 2rem;
}

.pagination-wrapper .page-numbers {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  margin: 0 2px;
  background: transparent;
  border: 1px solid #ddd;
  color: #333;
  text-decoration: none;
  border-radius: 3px;
  font-size: 0.9rem;
}

.pagination-wrapper .page-numbers:hover,
.pagination-wrapper .page-numbers.current {
  background: #333;
  color: white;
  border-color: #333;
}

.pagination-wrapper .page-numbers.dots {
  border: none;
  background: none;
}

#banner-no-jobs {
  background-color: #f8f9fa;
  padding: 3rem 1rem;
  border-radius: 8px;
  margin: 2rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .job-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
  .job-action {
    margin-top: 1rem;
    width: 100%;
  }
  .job-action .button {
    width: 100%;
    text-align: center;
  }
  .jobs-filter-section .row .col {
    margin-bottom: 1rem;
  }
}
.single-job .entry-header {
  padding: 0;
  margin-top: 2.1428571429rem;
}
.single-job .entry-title {
  font-size: 1.7142857143rem;
  font-weight: 500;
}
.single-job .entry-header-text {
  padding-bottom: 0;
}
.single-job .job-application-section {
  margin-top: 3.5714285714rem;
  padding: 2.1428571429rem;
  background: #f8f8f8;
  border-radius: 0.2857142857rem;
}
.single-job .job-application-section h3 {
  margin-bottom: 1.4285714286rem;
}
.single-job .job-application-section .button {
  font-size: 1.1428571429rem;
  padding: 0.7142857143rem 2.1428571429rem;
}

.why-join-us .options-item .image-container {
  margin-bottom: 0.7142857143rem;
}
.why-join-us .options-item .image-container i {
  font-size: 1.7142857143rem;
  color: #ddd5c6;
}
.why-join-us .options-item .title {
  font-size: 1.1428571429rem;
  margin-bottom: 0.7142857143rem;
}

.jobs-listing-section .jobs-header h2 {
  font-size: 1.7142857143rem;
  font-weight: 600;
}

@media (min-width: 1200px) {
  .my-account {
    padding-left: 3.7857142857rem;
    padding-right: 3.7857142857rem;
  }
}

.my-account-header {
  padding-top: 1.4285714286rem;
  padding-bottom: 1.4285714286rem;
}

.page-id-532 .entry-title {
  font-size: 1.7142857143rem;
  font-weight: 500;
}
.page-id-532 .tabbed-content h4 {
  margin-bottom: 2.1428571429rem;
  font-size: 1.7142857143rem;
  font-weight: 500;
}
.page-id-532 .tabbed-content .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.2857142857rem;
}
.page-id-532 .tabbed-content .nav .tab {
  width: calc(33.33% - 1.5238095238rem);
}
.page-id-532 .tabbed-content .nav .tab a {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  color: #000000;
  background-color: #f6f6f6;
  border: 1px solid #231F20;
  -webkit-transition: -webkit-transform 0.25s linear;
  transition: -webkit-transform 0.25s linear;
  transition: transform 0.25s linear;
  transition: transform 0.25s linear, -webkit-transform 0.25s linear;
  margin: 0;
  font-size: 1.1428571429rem;
  padding: 1rem 2.2857142857rem;
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.page-id-532 .tabbed-content .nav .tab:hover a {
  font-weight: bold;
}
.page-id-532 .tabbed-content .nav .tab.active a {
  background-color: #000000;
  color: #ffffff;
}
.page-id-532 .tabbed-content table {
  margin: 0 auto 1.5em;
  overflow: hidden;
  display: table;
  width: 100%;
  overflow-x: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  white-space: nowrap;
  background-color: #fff;
}
.page-id-532 .tabbed-content table th, .page-id-532 .tabbed-content table td {
  background: #fff;
  text-align: right;
  padding-left: 10px;
  border: none;
  font-style: normal;
  font-weight: 400;
  font-size: 1.1428571429rem;
  line-height: 1.7142857143rem;
  text-transform: initial;
  letter-spacing: 1px;
  color: #000000;
  text-align: center;
  background-color: #fff;
  padding: 0.5714285714rem;
  white-space: initial;
}
.page-id-532 .tabbed-content table td:nth-child(even) {
  font-weight: 400;
  line-height: 1.3571428571rem;
}
.page-id-532 .tabbed-content table th, .page-id-532 .tabbed-content table td.alternate {
  background: #d8d8d8;
  text-align: right;
  padding-left: 0.7142857143rem;
}
.page-id-532 .tabbed-content table th {
  text-align: center;
}

.page-id-845 .entry-content > .row {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0;
}
@media (min-width: 1200px) {
  .page-id-845 .entry-content > .row {
    padding-left: 3.7857142857rem !important;
    padding-right: 3.7857142857rem !important;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.page-id-845 .entry-content > .row > div {
  min-width: 0;
}
.page-id-845 {
  /* --- This page only --- */
}
.page-id-845 table.table-bordered > tbody > tr > td {
  text-align: center;
  border: 1px solid #aaa;
}
.page-id-845 table.table-bordered tr td:first-child {
  text-align: left;
  font-weight: bold;
}
.page-id-845 tr.bg-grey {
  background-color: #dadada;
}
.page-id-845 table.table-bordered td, .page-id-845 th {
  padding: 0.5714285714rem;
}
@media only screen and (max-width: 600px) {
  .page-id-845 img.fit-img {
    height: 250px;
    width: auto;
    margin: 10px auto;
  }
}
@media (max-width: 549px) {
  .page-id-845 img {
    display: none;
  }
}

.contact-button {
  border: 1px solid #D7D3C6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 2.1428571429rem;
}
.contact-button .section-content {
  position: static !important;
}
.contact-button .button {
  opacity: 0;
}
.contact-button:hover {
  border-color: #000;
}

.woocommerce-cart .wc-block-cart-items__header th,
.woocommerce-cart .wp-block-woocommerce-cart-order-summary-heading-block {
  color: #231f20;
  font-family: inherit;
  font-style: normal;
  font-weight: 500 !important;
  font-size: 18px !important;
  line-height: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.woocommerce-cart td {
  color: #000000;
}

.woocommerce-mini-cart__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.woocommerce-mini-cart__buttons .button.wc-forward:first-child {
  text-decoration: underline;
  border: none;
}

.off-canvas .mfp-content.off-canvas-cart {
  --drawer-width: 450px !important;
  background: #fff !important;
}
@media (max-width: 549px) {
  .off-canvas .mfp-content.off-canvas-cart {
    --drawer-width: 360px !important;
  }
}
.off-canvas .mfp-content.off-canvas-cart ul.product_list_widget li img {
  width: 9.2857142857rem;
  top: 1.0714285714rem;
  height: auto;
}
.off-canvas .mfp-content.off-canvas-cart .widget_shopping_cart ul.product_list_widget li {
  padding-left: 10.7142857143rem;
  min-height: 13.1428571429rem;
  padding-top: 1.0714285714rem;
  padding-bottom: 1.0714285714rem;
}
.off-canvas .mfp-content.off-canvas-cart ul.product_list_widget li .quantity {
  position: absolute;
  bottom: 1.0714285714rem;
  opacity: 1;
}
.off-canvas .mfp-content.off-canvas-cart ul.product_list_widget li .quantity .button {
  height: auto;
  line-height: 1;
}
.off-canvas .mfp-content.off-canvas-cart ul.product_list_widget li .quantity input[type=number] {
  background: #f6f6f6;
  min-width: 2.1428571429rem;
  text-align: center;
}
.off-canvas .mfp-content.off-canvas-cart .woocommerce-mini-cart-item .ux-mini-cart-qty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.off-canvas .mfp-content.off-canvas-cart ul.product_list_widget li + li {
  border-top: 1px solid #d7d3c6;
}

.checkout-page-title {
  display: none !important;
}

.page-checkout {
  font-size: 1rem;
}
@media (min-width: 1200px) {
  .page-checkout {
    padding-left: 4.8571428571rem;
    padding-right: 4.8571428571rem;
  }
}
.page-checkout .is-large {
  font-size: 1rem;
}
.page-checkout .wc-block-components-button:hover {
  background: #ed1d23 !important;
  color: #fff !important;
}
.page-checkout .woocommerce-bacs-bank-details ul {
  padding-left: 1.2142857143rem;
}
.page-checkout .wc-block-components-checkout-step__description {
  font-size: 1rem;
}
.page-checkout .wc-block-components-checkout-step__heading {
  margin-bottom: 20px;
}
.page-checkout .wc-block-components-title {
  color: #231f20;
  font-family: inherit;
  font-style: normal;
  font-weight: 500;
  font-size: 18px !important;
  line-height: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.page-checkout .wc-block-components-form .wc-block-components-text-input input[type=email], .page-checkout .wc-block-components-form .wc-block-components-text-input input[type=number], .page-checkout .wc-block-components-form .wc-block-components-text-input input[type=password], .page-checkout .wc-block-components-form .wc-block-components-text-input input[type=tel], .page-checkout .wc-block-components-form .wc-block-components-text-input input[type=text], .page-checkout .wc-block-components-form .wc-block-components-text-input input[type=url], .page-checkout .wc-block-components-text-input input[type=email], .page-checkout .wc-block-components-text-input input[type=number], .page-checkout .wc-block-components-text-input input[type=password], .page-checkout .wc-block-components-text-input input[type=tel], .page-checkout .wc-block-components-text-input input[type=text], .page-checkout .wc-block-components-text-input input[type=url] {
  display: block;
  width: 100%;
  height: 45px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.5px;
  background: #fff;
  border: 1px solid #d7d3c6;
  border-radius: 0;
  color: #231f20;
  padding: 19.5px 0 6.5px 16px !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.page-checkout .wc-block-components-form .wc-block-components-text-input input[type=email] + label, .page-checkout .wc-block-components-form .wc-block-components-text-input input[type=number] + label, .page-checkout .wc-block-components-form .wc-block-components-text-input input[type=password] + label, .page-checkout .wc-block-components-form .wc-block-components-text-input input[type=tel] + label, .page-checkout .wc-block-components-form .wc-block-components-text-input input[type=text] + label, .page-checkout .wc-block-components-form .wc-block-components-text-input input[type=url] + label, .page-checkout .wc-block-components-text-input input[type=email] + label, .page-checkout .wc-block-components-text-input input[type=number] + label, .page-checkout .wc-block-components-text-input input[type=password] + label, .page-checkout .wc-block-components-text-input input[type=tel] + label, .page-checkout .wc-block-components-text-input input[type=text] + label, .page-checkout .wc-block-components-text-input input[type=url] + label {
  outline: none !important;
  font-size: 14px !important;
  left: 16px !important;
}
.page-checkout .wc-block-components-form .wc-block-components-text-input input[type=email].is-active + label, .page-checkout .wc-block-components-form .wc-block-components-text-input input[type=number].is-active + label, .page-checkout .wc-block-components-form .wc-block-components-text-input input[type=password].is-active + label, .page-checkout .wc-block-components-form .wc-block-components-text-input input[type=tel].is-active + label, .page-checkout .wc-block-components-form .wc-block-components-text-input input[type=text].is-active + label, .page-checkout .wc-block-components-form .wc-block-components-text-input input[type=url].is-active + label, .page-checkout .wc-block-components-text-input input[type=email].is-active + label, .page-checkout .wc-block-components-text-input input[type=number].is-active + label, .page-checkout .wc-block-components-text-input input[type=password].is-active + label, .page-checkout .wc-block-components-text-input input[type=tel].is-active + label, .page-checkout .wc-block-components-text-input input[type=text].is-active + label, .page-checkout .wc-block-components-text-input input[type=url].is-active + label {
  top: 5px !important;
}
.page-checkout .wc-blocks-components-select__container label {
  color: #2b2d2f;
  left: 16px;
  font-size: 14px;
  letter-spacing: inherit;
  line-height: inherit;
  line-height: 1.25;
  margin: 0;
  max-width: calc(100% - 32px);
  overflow: hidden;
  position: absolute;
  text-decoration: inherit;
  text-overflow: ellipsis;
  text-transform: inherit;
  top: 4px;
  -webkit-transform: translateY(15%) scale(0.75);
          transform: translateY(15%) scale(0.75);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  white-space: nowrap;
  z-index: 1;
}
.page-checkout .wc-blocks-components-select .wc-blocks-components-select__select {
  display: block;
  width: 100%;
  height: 45px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px !important;
  line-height: 17px;
  letter-spacing: 0.5px;
  background: #fff;
  border: 1px solid #d7d3c6;
  border-radius: 0;
  color: #231f20;
  padding: 19.5px 0 6.5px 16px !important;
}
.page-checkout .wc-blocks-components-select .wc-blocks-components-select__select + label {
  outline: none !important;
  font-size: 14px !important;
  left: 16px !important;
}
.page-checkout .wc-blocks-components-select .wc-blocks-components-select__select.is-active + label {
  top: 5px !important;
}
.page-checkout .wc-block-checkout__shipping-method .wc-block-components-checkout-step__heading,
.page-checkout .wc-block-checkout__shipping-method .wc-block-components-checkout-step__description {
  display: none;
}
.page-checkout .wc-block-components-checkout-step__container .components-button-group {
  padding: 0;
}
.page-checkout .wc-block-checkout__shipping-method .wc-block-checkout__shipping-method-container {
  gap: 16px;
  background: none;
}
.page-checkout .wc-block-checkout__shipping-method-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  min-height: 82px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: center;
  line-height: 19.49px !important;
  color: #757575;
  text-transform: uppercase;
  border: 1px solid #d7d3c6;
  border-radius: 0;
  -webkit-transition: 0s !important;
  transition: 0s !important;
  background: #fff;
}
.page-checkout .wc-block-checkout__shipping-method-option svg {
  display: none;
}
.page-checkout .wc-block-checkout__shipping-method-option .wc-block-checkout__shipping-method-option-title-wrapper {
  font-size: 16px;
  font-style: normal;
  font-weight: 500 !important;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 19.49px;
  color: #757575;
  text-transform: uppercase;
}
.page-checkout .wc-block-checkout__shipping-method-option .wc-block-checkout__shipping-method-option-title-wrapper .wc-block-checkout__shipping-method-option-title {
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
}
.page-checkout .wc-block-checkout__shipping-method-option .wc-block-checkout__shipping-method-option-price {
  font-size: 0 !important;
  font-weight: 400;
  line-height: 18px !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.page-checkout .wc-block-checkout__shipping-method-option .wc-block-checkout__shipping-method-option-price::before {
  font-size: 12px;
  text-transform: uppercase !important;
}
.page-checkout .wc-block-checkout__shipping-method-option:first-child .wc-block-checkout__shipping-method-option-title {
  font-size: 0 !important;
}
.page-checkout .wc-block-checkout__shipping-method-option:first-child .wc-block-checkout__shipping-method-option-title::before {
  content: "Delivery";
  font-size: 16px !important;
}
.page-checkout .wc-block-checkout__shipping-method-option:first-child .wc-block-checkout__shipping-method-option-price::before {
  content: "1-4 Business days";
}
.page-checkout .wc-block-checkout__shipping-method-option:last-child .wc-block-checkout__shipping-method-option-price::before {
  content: "Available within 24 hours";
}
.page-checkout .wc-block-checkout__shipping-method-option.wc-block-checkout__shipping-method-option--selected {
  background: #ebe9e2;
  border: 1px solid #231f20;
}
.page-checkout .wc-block-checkout__shipping-method-option.wc-block-checkout__shipping-method-option--selected::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  margin-left: -7px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #ebe9e2;
  border-left: 1px solid #231f20;
  border-bottom: 1px solid #231f20;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.page-checkout .wc-block-components-sidebar {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  position: relative;
  z-index: 0;
  margin-top: 0;
}
@media (min-width: 700px) {
  .page-checkout .wc-block-components-sidebar {
    top: 0;
  }
  .page-checkout .wc-block-components-sidebar::before {
    content: "";
    position: absolute;
    top: -999px;
    left: 0;
    right: -999px;
    bottom: -50px;
    background: #f6f6f6;
    z-index: -1;
  }
}
.page-checkout .wc-block-components-sidebar .wc-block-components-checkout-order-summary__title-text {
  text-align: center;
  color: #231f20;
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.page-checkout .wc-block-components-sidebar .wc-block-components-checkout-order-summary__title {
  margin-top: 0;
}
.page-checkout .wp-block-woocommerce-checkout-order-summary-block {
  border-radius: 0;
  border: 0;
  font-size: 1rem;
}
.page-checkout .wp-block-woocommerce-checkout-order-summary-block .wp-block-woocommerce-checkout-order-summary-shipping-block {
  padding: 8px 0;
}
.page-checkout .wp-block-woocommerce-checkout-order-summary-block .wp-block-woocommerce-checkout-order-summary-gst-block {
  padding-top: 0px;
}
.page-checkout .wc-block-components-radio-control__option {
  border: 1px solid #dddbd4;
  border-radius: 0 !important;
}
.page-checkout .wc-block-components-radio-control__option-checked {
  border: 1px solid #dddbd4;
  background: #f6f6f6;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.page-checkout .wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted, .page-checkout .wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted {
  border: 1px solid #dddbd4;
  background: #f6f6f6;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.page-checkout .wp-block-woocommerce-checkout-payment-block .wc-block-components-radio-control--highlight-checked:after {
  display: none !important;
}
.page-checkout .wp-block-woocommerce-checkout-payment-block .wc-block-components-radio-control-accordion-option {
  margin-bottom: 20px !important;
  border-radius: 0 !important;
  border: 1px solid #dddbd4;
}
.page-checkout .wp-block-woocommerce-checkout-payment-block .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__label {
  text-transform: uppercase;
}
.page-checkout .wp-block-woocommerce-checkout-payment-block .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control-accordion-content {
  background: #fff !important;
  padding-top: 8px !important;
}
.page-checkout .wp-block-woocommerce-checkout-payment-block .sq-card-message-no-error {
  display: none !important;
}
.page-checkout .wp-block-woocommerce-checkout-payment-block .sq-card-message:empty {
  display: none !important;
}
.page-checkout .wp-block-woocommerce-checkout-payment-block .wc-block-components-radio-control__option {
  padding-left: 20px !important;
}
.page-checkout .wp-block-woocommerce-checkout-payment-block .wc-block-components-radio-control__option > input {
  opacity: 0 !important;
}
.page-checkout .wp-block-woocommerce-checkout-payment-block .wc-block-components-radio-control__option[for=radio-control-wc-payment-method-options-ppcp-gateway] {
  background: url("images/paypal.svg") no-repeat left center;
  background-position: 17px center;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  background-size: 100px;
}
.page-checkout .wp-block-woocommerce-checkout-payment-block .wc-block-components-radio-control__option[for=radio-control-wc-payment-method-options-ppcp-gateway] .wc-block-components-radio-control__option-layout {
  opacity: 0;
}
.page-checkout .wp-block-woocommerce-checkout-payment-block .wc-block-components-radio-control__option[for=radio-control-wc-payment-method-options-square_credit_card] {
  position: relative;
}
.page-checkout .wp-block-woocommerce-checkout-payment-block .wc-block-components-radio-control__option[for=radio-control-wc-payment-method-options-square_credit_card]::before {
  content: "";
  position: absolute;
  right: 17px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 202px;
  height: 100%;
  background: url(images/cc-img.png) no-repeat left center;
  background-size: contain;
}
@media (min-width: 700px) {
  .page-checkout .wc-block-components-order-summary {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 700px) {
  .page-checkout .wc-block-components-sidebar .slot-wrapper .wc-block-components-panel, .page-checkout .wc-block-components-sidebar .wc-block-components-panel, .page-checkout .wc-block-components-sidebar .wc-block-components-totals-coupon, .page-checkout .wc-block-components-sidebar .wc-block-components-totals-item {
    padding-left: 0;
    padding-right: 0;
  }
}
.page-checkout .wc-block-components-sidebar {
  padding-left: 5%;
}
.page-checkout .wc-block-components-totals-item__label {
  font-weight: 600;
}
.page-checkout .wc-block-components-totals-item__value {
  font-weight: 400 !important;
}
.page-checkout .wc-block-components-totals-item__value strong {
  font-weight: 400 !important;
}

.page-id-668 .content-area .entry-title {
  text-align: center;
}
.page-id-668 .content-area .entry-content table {
  margin: 0 0 1.5em;
  overflow: scroll;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}
.page-id-668 .content-area .entry-content th {
  border: 1px solid #D7D3C6;
  padding: 1.4285714286rem;
  font-style: normal;
  font-weight: 600;
  text-transform: initial;
  color: #000000;
  background-color: #F5F5F5;
}
.page-id-668 .content-area .entry-content td {
  border: 1px solid #D7D3C6;
  padding: 1.0714285714rem 1.4285714286rem;
  font-style: normal;
  font-weight: 600;
  text-transform: initial;
  color: #000000;
  text-align: center;
}
.page-id-668 .content-area .entry-content td .checked {
  display: inline-block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  height: 1.7142857143rem;
  width: 0.8571428571rem;
  border-bottom: 0.2142857143rem solid #32CD32;
  border-right: 0.2142857143rem solid #32CD32;
}
.page-id-668 .content-area .entry-content {
  line-height: 1.5;
}
.page-id-668 .content-area .entry-content h3 {
  margin-bottom: 1.4285714286rem;
}
.page-id-668 .content-area .tab-box-nav {
  border: 1px solid #D7D3C6;
  background: #fff;
  color: #000000;
  padding: 2.1428571429rem 1.0714285714rem;
}
@media (max-width: 549px) {
  .page-id-668 .content-area .tab-box-nav {
    margin-bottom: 2.1428571429rem;
  }
}
.page-id-668 .content-area .tab-box-nav h2 {
  font-size: 1.1428571429rem;
}
.page-id-668 .content-area .tab-box-nav .box-text p {
  line-height: 1.5;
  margin: 1.4285714286rem 0;
  font-size: 1.1428571429rem;
}
.page-id-668 .content-area .tab-box-nav:hover {
  border-color: transparent;
  background: #f5f5f5;
}
.page-id-668 .content-area .tab-box-nav:hover a {
  background: #000000;
  color: #fff;
}
.page-id-668 .content-area .tab-box-nav.is-active.box a {
  border-color: transparent;
  background: transparent !important;
  color: #000 !important;
}
.page-id-668 .content-area .tab-box-nav.is-active.box a::before {
  content: "\f107";
  font-family: fl-icons !important;
  font-size: 2.5714285714rem;
  color: #000 !important;
}
.page-id-668 .content-area .tab-box-nav.is-active.box a span {
  display: none;
}
.page-id-668 .content-area .box a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: 0s;
  transition: 0s;
}
.page-id-668 .content-area .tabbed-content {
  padding: 3.5714285714rem 5.7142857143rem;
}
@media (max-width: 1199px) {
  .page-id-668 .content-area .tabbed-content {
    padding: 1.0714285714rem 0rem;
  }
}
.page-id-668 .content-area .tabbed-content .nav {
  display: none;
}
.page-id-668 .content-area .box-text h4 {
  margin-bottom: 1.0714285714rem;
}

.page-id-718 .content-area .entry-title {
  text-align: center;
}
.page-id-718 .content-area .entry-content table {
  margin: 0 0 1.5em;
  overflow: scroll;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}
.page-id-718 .content-area .entry-content th {
  border: 1px solid #D7D3C6;
  padding: 1.4285714286rem;
  font-style: normal;
  font-weight: 600;
  text-transform: initial;
  color: #000000;
  background-color: #F5F5F5;
}
.page-id-718 .content-area .entry-content td {
  border: 1px solid #D7D3C6;
  padding: 1.0714285714rem 1.4285714286rem;
  font-style: normal;
  font-weight: 600;
  text-transform: initial;
  color: #000000;
  text-align: center;
}
.page-id-718 .content-area .entry-content td .checked {
  display: inline-block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  height: 1.7142857143rem;
  width: 0.8571428571rem;
  border-bottom: 0.2142857143rem solid #32CD32;
  border-right: 0.2142857143rem solid #32CD32;
}
.page-id-718 .content-area .entry-content {
  line-height: 1.5;
}
.page-id-718 .content-area .entry-content h3 {
  margin-bottom: 1.4285714286rem;
}
.page-id-718 .content-area .tab-box-nav {
  border: 1px solid #D7D3C6;
  background: #fff;
  color: #000000;
  padding: 2.1428571429rem 1.0714285714rem;
}
@media (max-width: 549px) {
  .page-id-718 .content-area .tab-box-nav {
    margin-bottom: 2.1428571429rem;
  }
}
.page-id-718 .content-area .tab-box-nav h2 {
  font-size: 1.1428571429rem;
}
.page-id-718 .content-area .tab-box-nav .box-text p {
  line-height: 1.5;
  margin: 1.4285714286rem 0;
  font-size: 1.1428571429rem;
}
.page-id-718 .content-area .tab-box-nav:hover {
  border-color: transparent;
  background: #f5f5f5;
}
.page-id-718 .content-area .tab-box-nav:hover a {
  background: #000000;
  color: #fff;
}
.page-id-718 .content-area .tab-box-nav.is-active.box a {
  border-color: transparent;
  background: transparent !important;
  color: #000 !important;
}
.page-id-718 .content-area .tab-box-nav.is-active.box a::before {
  content: "\f107";
  font-family: fl-icons !important;
  font-size: 2.5714285714rem;
  color: #000 !important;
}
.page-id-718 .content-area .tab-box-nav.is-active.box a span {
  display: none;
}
.page-id-718 .content-area .box a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: 0s;
  transition: 0s;
}
.page-id-718 .content-area .tabbed-content {
  padding: 3.5714285714rem 5.7142857143rem;
}
@media (max-width: 1199px) {
  .page-id-718 .content-area .tabbed-content {
    padding: 1.0714285714rem 0rem;
  }
}
.page-id-718 .content-area .tabbed-content .nav {
  display: none;
}
.page-id-718 .content-area .box-text h4 {
  margin-bottom: 1.0714285714rem;
}