@import url(https://fonts.googleapis.com/css2?family=Goldman:wght@400;700;900&family=Golos+Text:wght@400..900&display=swap);
/* Partials
================================================ */
/**
 * 1. Always reset this sucks.
 * 2. Inherit from default setting
 */
* {
  margin: 0; /* 1 */
  padding: 0; /* 1 */
  border: 0; /* 1 */
  background-repeat: no-repeat; /* 1 */
  box-sizing: inherit; /* 2 */
}

/**
 * 1. Prevent certain mobile browsers from automatically zooming fonts.
 * 2. Border box sizing
 * 3. Smooth scroll
 */
html {
  -ms-text-size-adjust: 100%; /* 1 */
  -webkit-text-size-adjust: 100%; /* 1 */
  box-sizing: border-box; /* 2 */
}

/**
 * 1. Set default font styles
 * 2. Beautiful fonts again
 * 3. Prevent horizontal scroll
 */
body {
  font-size: 16px; /* 1 */
  -moz-osx-font-smoothing: grayscale; /* 2 */
  -webkit-font-smoothing: antialiased; /* 2 */
}

/**
 * All Headings look the same
 */
h1,
h2,
h3,
h4,
h5 {
  font-size: 1em;
  font-weight: normal;
}

/**
 * 1. Reset link styles
 * 2. Sized links
 * 3. Remove the gray background on active links in IE 10.
 */
a {
  text-decoration: none; /* 1 */
  color: inherit; /* 1 */
  display: inline-block; /* 2 */
  background-color: transparent; /* 3 */
  outline: none;
}

a[href=""] {
  pointer-events: none;
}

/**
 * No bullets anymore
 */
ol,
ul {
  list-style: none;
}

/**
 * blockquote styles
 */
blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

/**
 * Layout styles
 */
article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

/**
 * Remove all default styles and all elements look the same
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  overflow: visible;
  border: 0;
  outline: 0;
  font: inherit;
  -webkit-font-smoothing: inherit;
  letter-spacing: inherit;
  background: none;
  vertical-align: top;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Avoid no background on Edge and IE
 */
option {
  background-color: inherit;
}

/**
 * Set a color on active state
 */
a:active,
button:active {
  color: inherit;
}

/**
 * Prevent chrome autofill style
 */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: "color 9999s ease-out, background-color 9999s ease-out";
  -webkit-transition-delay: 9999s;
}

/**
 * You should define size for textarea
 */
textarea {
  resize: none;
}

/**
 * Pointer cursor for buttons
 */
input[type=button],
button {
  cursor: pointer;
}

/**
 * Pointer default for disabled buttons
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Remove space after each image
 * 2. Ensure responsive images
 * 3. Remove the border on images inside links in IE 10.
 */
img {
  display: block; /* 1 */
  max-width: 100%; /* 2 */
  height: auto; /* 2 */
  border-style: none; /* 3 */
}

/**
 * Collapse border spacing
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * Attributes & states
 */
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

address {
  font-style: normal;
}

/* Media Query Variables
================================================ */
/* Colour Variables
================================================ */
/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
@keyframes touchPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}
/* Font stacks
================================================ */
/* Base Typography
================================================ */
body {
  font-family: "Golos Text", sans-serif !important;
  font-size: 16px;
  line-height: 1.5;
  color: #341B57;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings
================================================ */
.heading, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main table.wc-block-cart-items th span,
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .woocommerce-MyAccount-content h2, .h4, .woocommerce form legend, .woocommerce-MyAccount-content h3, body .wp-block-woocommerce-checkout .wc-block-components-sidebar h2, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar h2, .h5, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main .wc-block-components-product-name, .h6 {
  font-weight: 800;
  line-height: 1;
  font-family: "Goldman", sans-serif;
  text-transform: uppercase;
}
.heading:has(> span), body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main table.wc-block-cart-items th span:has(> span), .heading.outline, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main table.wc-block-cart-items th span.outline,
h1:has(> span),
h1.outline, h2:has(> span), h2.outline, h3:has(> span), h3.outline, h4:has(> span), h4.outline, h5:has(> span), h5.outline, h6:has(> span), h6.outline,
.h1:has(> span),
.h1.outline, .h2:has(> span), .h2.outline, .h3:has(> span), .woocommerce-MyAccount-content h2:has(> span), .h3.outline, .h4:has(> span), .woocommerce form legend:has(> span), .woocommerce-MyAccount-content h3:has(> span), body .wp-block-woocommerce-checkout .wc-block-components-sidebar h2:has(> span), body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar h2:has(> span), .h4.outline, .woocommerce form legend.outline, body .wp-block-woocommerce-checkout .wc-block-components-sidebar h2.outline, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar h2.outline, .h5:has(> span), body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main .wc-block-components-product-name:has(> span), .h5.outline, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main .outline.wc-block-components-product-name, .h6:has(> span), .h6.outline {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #341B57;
}
@media only screen and (min-width: 1400px) {
  .heading:has(> span), body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main table.wc-block-cart-items th span:has(> span), .heading.outline, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main table.wc-block-cart-items th span.outline,
  h1:has(> span),
  h1.outline, h2:has(> span), h2.outline, h3:has(> span), h3.outline, h4:has(> span), h4.outline, h5:has(> span), h5.outline, h6:has(> span), h6.outline,
  .h1:has(> span),
  .h1.outline, .h2:has(> span), .h2.outline, .h3:has(> span), .woocommerce-MyAccount-content h2:has(> span), .h3.outline, .h4:has(> span), .woocommerce form legend:has(> span), .woocommerce-MyAccount-content h3:has(> span), body .wp-block-woocommerce-checkout .wc-block-components-sidebar h2:has(> span), body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar h2:has(> span), .h4.outline, .woocommerce form legend.outline, body .wp-block-woocommerce-checkout .wc-block-components-sidebar h2.outline, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar h2.outline, .h5:has(> span), body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main .wc-block-components-product-name:has(> span), .h5.outline, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main .outline.wc-block-components-product-name, .h6:has(> span), .h6.outline {
    -webkit-text-stroke-width: 2px;
  }
}
.heading:has(> span) span, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main table.wc-block-cart-items th span:has(> span) span, .heading.outline span, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main table.wc-block-cart-items th span.outline span,
h1:has(> span) span,
h1.outline span, h2:has(> span) span, h2.outline span, h3:has(> span) span, h3.outline span, h4:has(> span) span, h4.outline span, h5:has(> span) span, h5.outline span, h6:has(> span) span, h6.outline span,
.h1:has(> span) span,
.h1.outline span, .h2:has(> span) span, .h2.outline span, .h3:has(> span) span, .woocommerce-MyAccount-content h2:has(> span) span, .h3.outline span, .h4:has(> span) span, .woocommerce form legend:has(> span) span, .woocommerce-MyAccount-content h3:has(> span) span, body .wp-block-woocommerce-checkout .wc-block-components-sidebar h2:has(> span) span, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar h2:has(> span) span, .h4.outline span, .woocommerce form legend.outline span, body .wp-block-woocommerce-checkout .wc-block-components-sidebar h2.outline span, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar h2.outline span, .h5:has(> span) span, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main .wc-block-components-product-name:has(> span) span, .h5.outline span, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main .outline.wc-block-components-product-name span, .h6:has(> span) span, .h6.outline span {
  color: transparent;
  -webkit-text-stroke-width: 1px;
}
.heading u, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main table.wc-block-cart-items th span u,
h1 u, h2 u, h3 u, h4 u, h5 u, h6 u,
.h1 u, .h2 u, .h3 u, .woocommerce-MyAccount-content h2 u, .h4 u, .woocommerce form legend u, .woocommerce-MyAccount-content h3 u, body .wp-block-woocommerce-checkout .wc-block-components-sidebar h2 u, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar h2 u, .h5 u, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main .wc-block-components-product-name u, .h6 u {
  text-decoration: none;
  position: relative;
}
.heading u span, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main table.wc-block-cart-items th span u span,
h1 u span, h2 u span, h3 u span, h4 u span, h5 u span, h6 u span,
.h1 u span, .h2 u span, .h3 u span, .woocommerce-MyAccount-content h2 u span, .h4 u span, .woocommerce form legend u span, .woocommerce-MyAccount-content h3 u span, body .wp-block-woocommerce-checkout .wc-block-components-sidebar h2 u span, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar h2 u span, .h5 u span, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main .wc-block-components-product-name u span, .h6 u span {
  position: relative;
  color: #fff;
}
.heading u:before, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main table.wc-block-cart-items th span u:before,
h1 u:before, h2 u:before, h3 u:before, h4 u:before, h5 u:before, h6 u:before,
.h1 u:before, .h2 u:before, .h3 u:before, .woocommerce-MyAccount-content h2 u:before, .h4 u:before, .woocommerce form legend u:before, .woocommerce-MyAccount-content h3 u:before, body .wp-block-woocommerce-checkout .wc-block-components-sidebar h2 u:before, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar h2 u:before, .h5 u:before, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main .wc-block-components-product-name u:before, .h6 u:before {
  content: "";
  position: absolute;
  top: 10%;
  left: -1%;
  width: 102%;
  height: 80%;
  background-color: #341B57;
}

.heading, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main table.wc-block-cart-items th span {
  font-size: max(16px, 1.11vw);
}

h1, .h1 {
  font-size: max(40px, 4.72vw);
}

h2, .h2 {
  font-size: max(30px, 2.77vw);
}

h3, .h3, .woocommerce-MyAccount-content h2 {
  font-size: max(19px, 1.73vw);
}

h4, .h4, .woocommerce form legend, .woocommerce-MyAccount-content h3, body .wp-block-woocommerce-checkout .wc-block-components-sidebar h2, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar h2 {
  font-size: max(18px, 1.25vw);
}

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

.tc-white {
  color: #fff;
}
.tc-white:has(span), .tc-white.outline {
  -webkit-text-stroke-color: #fff;
}
.tc-white:has(span) > span, .tc-white.outline > span {
  -webkit-text-stroke-color: #fff;
}

.tc-primary {
  color: #341B57;
}

.tc-secondary {
  color: #C3CC41;
}

.tc-grey {
  color: #F4F4F4;
}

.tc-black {
  color: #000;
}

/* Links
================================================ */
a {
  color: inherit;
  text-decoration: none;
}

@media only screen and (min-width: 1025px) {
  .heading, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main table.wc-block-cart-items th span,
  h1, h2, h3, h4, h5, h6,
  .h1, .h2, .h3, .woocommerce-MyAccount-content h2, .h4, .woocommerce form legend, .woocommerce-MyAccount-content h3, body .wp-block-woocommerce-checkout .wc-block-components-sidebar h2, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar h2, .h5, body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main .wc-block-components-product-name, .h6 {
    text-wrap: balance;
  }
}
body.mobile-nav-open, html.mobile-nav-open {
  overflow: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
  background-color: #F4F4F4;
}

.grecaptcha-badge {
  visibility: hidden;
}

input:not([type=submit]), textarea {
  cursor: text;
}

input[type=submit], select {
  cursor: pointer;
}

.wp-block-image .alignright, .wp-block-image .alignleft, .wp-block-image .alignone, .wp-block-image .aligncenter, img.alignright, img.alignleft, img.alignone, img.aligncenter {
  display: block;
  max-width: 100%;
  height: auto;
}
.wp-block-image .alignright img, .wp-block-image .alignleft img, .wp-block-image .alignone img, .wp-block-image .aligncenter img, img.alignright img, img.alignleft img, img.alignone img, img.aligncenter img {
  display: block;
  max-width: 100%;
  height: auto;
}

.wp-block-image .alignright, img.alignright {
  margin: 1em 0;
  float: none;
}

.wp-block-image .alignleft, img.alignleft {
  margin: 1em 0;
  float: none;
}

.wp-block-image .alignnone, img.alignnone {
  margin: 1em 0;
  float: none;
}

.wp-block-image .aligncenter, img.aligncenter {
  display: block;
  margin: 1em;
  float: none;
}

@media only screen and (min-width: 768px) {
  .wp-block-image .alignright, img.alignright {
    float: right;
    margin: 0 0 1em 1em;
  }
  .wp-block-image .alignleft, img.alignleft {
    float: left;
    margin: 0 1em 1em 0;
  }
  .wp-block-image .aligncenter, img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .section {
    padding: 65px 0;
  }
}
@media only screen and (max-width: 1199px) {
  .mobile-hide {
    display: none !important;
  }
}
@media only screen and (min-width: 1200px) {
  .desktop-hide {
    display: none !important;
  }
}
.ui-btn, .woocommerce .button,
.wp-element-button {
  height: 55px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  padding: 0 22px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  transition: all 0.2s ease;
}
.ui-btn--primary,
.wp-element-button--primary {
  background-color: #341B57;
  color: #fff;
}
.ui-btn--primary:hover,
.wp-element-button--primary:hover {
  background-color: rgb(75.2631578947, 39.0789473684, 125.9210526316);
}
.ui-btn--secondary, .woocommerce .button,
.wp-element-button--secondary {
  background-color: #C3CC41;
  color: #000;
}
.ui-btn--secondary:hover, .woocommerce .button:hover,
.wp-element-button--secondary:hover {
  background-color: rgb(163.7261410788, 171.867219917, 46.132780083);
}
.ui-btn--arrow,
.wp-element-button--arrow {
  padding: 0 11px 0 22px;
}
.ui-btn--arrow > svg,
.wp-element-button--arrow > svg {
  height: 37px;
  width: 37px;
  margin-left: 19px;
  transition: transform 0.2s ease;
}
.ui-btn--arrow > svg > *,
.wp-element-button--arrow > svg > * {
  transition: all 0.3s ease;
  transform-origin: center;
}
.ui-btn--arrow:hover svg path,
.wp-element-button--arrow:hover svg path {
  transform: rotate(45deg);
}

.bg-primary {
  background-color: #341B57;
}

.bg-secondary {
  background-color: #C3CC41;
}

.bg-grad {
  background: linear-gradient(to bottom, #341B57, #541E75);
  color: #fff;
}

.swiper-horizontal > .swiper-pagination-bullets {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 5px;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  border-radius: 0;
  border: 1px solid #fff;
  opacity: 1;
  transform: rotate(45deg);
  background-color: transparent;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: #fff;
}

@media only screen and (min-width: 1200px) {
  .swiper-horizontal > .swiper-pagination-bullets {
    gap: 0 7px;
  }
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    height: 14px;
    width: 14px;
  }
}
.swiper-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 11px;
}

body .swiper-button-prev,
body .swiper-button-next {
  position: relative;
  top: 0;
  left: 0;
  margin: 0;
  height: 47px;
  width: 47px;
  background-color: #C3CC41;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
}
body .swiper-button-prev:after,
body .swiper-button-next:after {
  content: "";
  width: 14px;
  height: 12px;
  background: url("../images/icons/arrow-right.svg") center/contain no-repeat;
  transition: all 0.2s ease;
}
body .swiper-button-prev:not(.swiper-button-disabled):hover,
body .swiper-button-next:not(.swiper-button-disabled):hover {
  background-color: rgb(163.7261410788, 171.867219917, 46.132780083);
}
body .swiper-button-prev:not(.swiper-button-disabled):hover:after,
body .swiper-button-next:not(.swiper-button-disabled):hover:after {
  transform: scale(1.2);
}

body .swiper-button-prev {
  transform: scaleX(-1);
}

.social-links {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0 10px;
}
.social-links .social-icon {
  height: 60px;
  width: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  transition: all 0.2s ease;
}
.social-links .social-icon > * {
  position: relative;
  z-index: 1;
}
.social-links .social-icon:before {
  content: "";
  height: 42px;
  width: 42px;
  position: absolute;
  border: 1px solid #C3CC41;
  transition: all 0.2s ease;
  transform: rotate(-45deg);
}
.social-links .social-icon:hover:before {
  transform: rotate(45deg);
  background-color: #C3CC41;
}

.woocommerce-breadcrumb {
  display: inline-flex;
  font-size: 14px;
  background-color: #541E75;
  padding: 2px 10px;
  align-items: center;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-inline-box;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  z-index: 1;
}
.woocommerce-breadcrumb .fa-solid {
  font-size: 10px;
  margin: 0 10px;
}

@media only screen and (max-width: 649px) {
  .woocommerce-breadcrumb {
    font-size: 12px;
  }
}
.quantity input {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  height: 54px;
  border: 1px solid #EBEBEB;
  width: 100%;
  padding: 0 18px;
  background: #F4F4F4;
}

/* Woocommerce Payload
================================================ */
.woocommerce .clear {
  clear: both;
}
.woocommerce .woocommerce-privacy-policy-text {
  font-size: 0.875rem;
  margin-bottom: 30px;
}
.woocommerce .cart_items .cart_item {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.woocommerce .cart_items .cart_item__remove {
  background: url(../images/icons/cross-black.svg) center/cover;
  width: 15px;
  height: 15px;
}
.woocommerce .cart_items .cart_item__image {
  display: flex;
  align-items: center;
  border: 1px solid #EBEBEB;
  width: 80px;
  height: 80px;
  margin-right: 30px;
  padding: 10px;
}
.woocommerce .cart_items .cart_item__image img {
  max-width: 100%;
  height: auto;
  display: block;
}
.woocommerce .cart_items .cart_item__details {
  flex: 1;
}
.woocommerce .cart_items .cart_item__title a {
  font-size: 1.125em;
  margin-bottom: 15px;
}
.woocommerce .cart_items .cart_item__price {
  font-size: 0.75em;
}
.woocommerce .cart_items .cart_item__price > span {
  font-weight: bold;
  font-size: 1.66em;
  color: #341B57;
}
.woocommerce .cart_items .cart_item__quantity {
  display: flex;
  align-items: center;
}
.woocommerce .cart_items .cart_item__quantity:before {
  content: "Qty: ";
  font-size: 14px;
  font-weight: bold;
  margin-right: 10px;
}
.woocommerce .cart_items .cart_item__quantity input {
  height: 40px;
  outline: none;
  width: 50px;
  border: 1px solid #EBEBEB;
  font-size: 14px;
  text-align: center;
  -moz-appearance: textfield;
  border-radius: 0;
}
.woocommerce .cart_items .cart_item:not(:last-of-type) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #EBEBEB;
}
.woocommerce .cart_items--marginbottom {
  margin-bottom: 30px;
}
.woocommerce .cart_items--condensed .cart_item__price {
  margin-left: auto;
  font-size: 1em;
}
.woocommerce .cart_items--condensed .cart_item__price > span {
  font-size: inherit;
}
.woocommerce .cart_items--condensed .cart_item:not(:last-of-type) {
  margin-bottom: 10px;
  padding-bottom: 10px;
}

@media only screen and (min-width: 768px) {
  .woocommerce .cart_items .cart_item__image {
    margin-bottom: 0;
    width: 100px;
    height: 100px;
  }
  .woocommerce .cart_items .cart_item__details {
    flex: 1;
    margin-right: 30px;
  }
  .woocommerce .cart_items .cart_item__title a {
    display: block;
  }
}
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
  padding: 15px 10px 10px;
  margin: 30px 0 0;
  position: relative;
  background-color: #ffffff;
  color: #515151;
  list-style: none outside;
  width: auto;
  word-wrap: break-word;
  overflow: auto;
}
.woocommerce-message:before,
.woocommerce-error:before,
.woocommerce-info:before {
  font-family: "Font Awesome 6 Free";
  content: "\f058";
  font-weight: 900;
  display: inline-block;
  float: left;
  font-size: 20px;
  line-height: 1;
}

.woocommerce-error:before {
  content: "\f06a";
  color: #b81c23;
}

.woocommerce-message:before {
  color: #C3CC41;
}

.woocommerce-info:before {
  content: "\f06a";
  color: #5b95a4;
}

@media only screen and (min-width: 768px) {
  .woocommerce-message,
  .woocommerce-error,
  .woocommerce-info {
    align-items: center;
    flex-direction: row;
    text-align: left;
    padding: 10px 10px 10px 20px;
  }
  .woocommerce-message a,
  .woocommerce-error a,
  .woocommerce-info a {
    margin: 0 0 0 auto;
  }
  .woocommerce-message:before,
  .woocommerce-error:before,
  .woocommerce-info:before {
    margin-right: 8px;
  }
  .woocommerce-NoticeGroup .woocommerce-message,
  .woocommerce-NoticeGroup .woocommerce-error,
  .woocommerce-NoticeGroup .woocommerce-info {
    display: block;
  }
  .woocommerce-NoticeGroup .woocommerce-message li:not(:first-of-type),
  .woocommerce-NoticeGroup .woocommerce-error li:not(:first-of-type),
  .woocommerce-NoticeGroup .woocommerce-info li:not(:first-of-type) {
    padding-left: 22px;
  }
  .woocommerce-NoticeGroup .woocommerce-message li:not(:last-of-type),
  .woocommerce-NoticeGroup .woocommerce-error li:not(:last-of-type),
  .woocommerce-NoticeGroup .woocommerce-info li:not(:last-of-type) {
    margin-bottom: 5px;
  }
}
body.woo-checkout-flow {
  background-color: #f7f8fa;
  color: #080A21;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}
body.woo-checkout-flow .checkout-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
}
body.woo-checkout-flow .checkout-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
body.woo-checkout-flow .checkout-header__logo {
  display: inline-flex;
  align-items: center;
}
body.woo-checkout-flow .checkout-header__logo img {
  max-height: 36px;
  width: auto;
  display: block;
}
body.woo-checkout-flow .checkout-header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
body.woo-checkout-flow .checkout-header__back, body.woo-checkout-flow .checkout-header__cart {
  font-size: 0.9375rem;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}
body.woo-checkout-flow .checkout-header__back:hover, body.woo-checkout-flow .checkout-header__cart:hover {
  color: #080A21;
}
body.woo-checkout-flow .checkout-footer {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 1.25rem 0;
}
body.woo-checkout-flow .checkout-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
body.woo-checkout-flow .checkout-footer__copy {
  font-size: 0.8125rem;
  color: #6b7280;
  margin: 0;
}
body.woo-checkout-flow .checkout-footer__link {
  font-size: 0.8125rem;
  color: #6b7280;
  text-decoration: none;
}
body.woo-checkout-flow .checkout-footer__link:hover {
  color: #080A21;
}
body.woo-checkout-flow .checkout-flow-main {
  min-height: calc(100vh - 145px);
  padding: clamp(20px, 4.86vw, 50px) 0;
}
body.woo-checkout-flow .checkout-flow-main:has(.wp-block-woocommerce-empty-cart-block) {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
body.woo-checkout-flow .woo-checkout {
  background: transparent;
  padding: 0;
}
body.woo-checkout-flow .woo-checkout .woocommerce-breadcrumb,
body.woo-checkout-flow .woo-checkout .entry-title,
body.woo-checkout-flow .woo-checkout h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #080A21;
  margin-bottom: 1.5rem;
}
body.woo-checkout-flow .woo-checkout .cart-empty {
  font-size: 1.125rem;
  color: #6b7280;
  text-align: center;
  padding: 2rem;
}
body.woo-checkout-flow .woo-checkout .woocommerce {
  color: #080A21;
}
body.woo-checkout-flow .woo-checkout .woocommerce a {
  color: #080a21;
  text-decoration: none;
}
body.woo-checkout-flow .woo-checkout .woocommerce a:hover {
  color: #1b2157;
  text-decoration: underline;
}
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-message,
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-error,
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-info {
  background: #ffffff;
  color: #080A21;
  border-left-color: #1ab9be;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-error {
  border-left-color: #dc2626;
}
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-info {
  border-left-color: #6b7280;
}
body.woo-checkout-flow .woo-checkout .woocommerce form .form-row label {
  color: #080A21;
  font-weight: 500;
}
body.woo-checkout-flow .woo-checkout .woocommerce form .form-row input[type=text],
body.woo-checkout-flow .woo-checkout .woocommerce form .form-row input[type=email],
body.woo-checkout-flow .woo-checkout .woocommerce form .form-row input[type=tel],
body.woo-checkout-flow .woo-checkout .woocommerce form .form-row input[type=number],
body.woo-checkout-flow .woo-checkout .woocommerce form .form-row select,
body.woo-checkout-flow .woo-checkout .woocommerce form .form-row textarea {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #080A21;
  border-radius: 8px;
}
body.woo-checkout-flow .woo-checkout .woocommerce form .form-row input[type=text]::-moz-placeholder, body.woo-checkout-flow .woo-checkout .woocommerce form .form-row input[type=email]::-moz-placeholder, body.woo-checkout-flow .woo-checkout .woocommerce form .form-row input[type=tel]::-moz-placeholder, body.woo-checkout-flow .woo-checkout .woocommerce form .form-row input[type=number]::-moz-placeholder, body.woo-checkout-flow .woo-checkout .woocommerce form .form-row select::-moz-placeholder, body.woo-checkout-flow .woo-checkout .woocommerce form .form-row textarea::-moz-placeholder {
  color: #6b7280;
}
body.woo-checkout-flow .woo-checkout .woocommerce form .form-row input[type=text]::placeholder,
body.woo-checkout-flow .woo-checkout .woocommerce form .form-row input[type=email]::placeholder,
body.woo-checkout-flow .woo-checkout .woocommerce form .form-row input[type=tel]::placeholder,
body.woo-checkout-flow .woo-checkout .woocommerce form .form-row input[type=number]::placeholder,
body.woo-checkout-flow .woo-checkout .woocommerce form .form-row select::placeholder,
body.woo-checkout-flow .woo-checkout .woocommerce form .form-row textarea::placeholder {
  color: #6b7280;
}
body.woo-checkout-flow .woo-checkout .woocommerce form .form-row input[type=text]:focus,
body.woo-checkout-flow .woo-checkout .woocommerce form .form-row input[type=email]:focus,
body.woo-checkout-flow .woo-checkout .woocommerce form .form-row input[type=tel]:focus,
body.woo-checkout-flow .woo-checkout .woocommerce form .form-row input[type=number]:focus,
body.woo-checkout-flow .woo-checkout .woocommerce form .form-row select:focus,
body.woo-checkout-flow .woo-checkout .woocommerce form .form-row textarea:focus {
  border-color: #080a21;
  outline: none;
  box-shadow: 0 0 0 2px rgba(8, 10, 33, 0.1);
}
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-cart-form,
body.woo-checkout-flow .woo-checkout .woocommerce .shop_table {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
}
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-cart-form th,
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-cart-form td,
body.woo-checkout-flow .woo-checkout .woocommerce .shop_table th,
body.woo-checkout-flow .woo-checkout .woocommerce .shop_table td {
  border-color: #e5e7eb;
  color: #080A21;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.075);
}
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-cart-form th,
body.woo-checkout-flow .woo-checkout .woocommerce .shop_table th {
  font-weight: 600;
}
body.woo-checkout-flow .woo-checkout .woocommerce .shop_table .wc-item-meta li {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
  align-items: center;
}
body.woo-checkout-flow .woo-checkout .woocommerce .shop_table .wc-item-meta li > * {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
  align-items: center;
}
body.woo-checkout-flow .woo-checkout .woocommerce .shop_table + .order-again {
  margin-top: 30px;
}
body.woo-checkout-flow .woo-checkout .woocommerce .cart_totals,
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-checkout-review-order {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
}
body.woo-checkout-flow .woo-checkout .woocommerce .cart_totals h2,
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-checkout-review-order h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #080A21;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
}
body.woo-checkout-flow .woo-checkout .woocommerce .cart_totals .order-total .amount,
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-checkout-review-order .order-total .amount {
  font-weight: 700;
  color: #080A21;
}
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-checkout-payment,
body.woo-checkout-flow .woo-checkout .woocommerce #payment {
  background: transparent;
  padding: 0;
}
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-checkout-payment .wc_payment_methods,
body.woo-checkout-flow .woo-checkout .woocommerce #payment .wc_payment_methods {
  border: none;
  padding: 0;
}
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-checkout-payment .wc_payment_methods li,
body.woo-checkout-flow .woo-checkout .woocommerce #payment .wc_payment_methods li {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  padding: 1rem 1.25rem;
}
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-checkout-payment .wc_payment_methods li label,
body.woo-checkout-flow .woo-checkout .woocommerce #payment .wc_payment_methods li label {
  color: #080A21;
  cursor: pointer;
}
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-checkout-payment .wc_payment_methods li .payment_box,
body.woo-checkout-flow .woo-checkout .woocommerce #payment .wc_payment_methods li .payment_box {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 8px;
  margin-top: 0.75rem;
  padding: 1rem;
  color: #6b7280;
  font-size: 0.875rem;
}
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-Price-amount,
body.woo-checkout-flow .woo-checkout .woocommerce .amount {
  color: #080A21;
  font-weight: 600;
}
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-order .woocommerce-thankyou-order-received {
  padding: 0.75rem 1.25rem;
  margin-bottom: 3rem;
  font-weight: 500;
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
  border-radius: 5px;
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-order .woocommerce-order-overview {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  color: #080A21;
}
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-order .woocommerce-order-overview li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-order .woocommerce-order-overview li:last-child {
  border-bottom: none;
}
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-order .woocommerce-order-overview li strong {
  display: inline;
  font-weight: 600;
}
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-order .woocommerce-order-details,
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-order .woocommerce-customer-details,
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-order .woocommerce-table--order-details + header {
  margin-top: 50px;
}
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-order .woocommerce-order-details h2,
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-order .woocommerce-customer-details h2,
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-order .woocommerce-table--order-details + header h2 {
  font-size: max(19px, 1.73vw);
  color: #341B57;
  margin-bottom: 20px;
}
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-order .woocommerce-customer-details .woocommerce-address,
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-order .woocommerce-customer-details address {
  color: #080A21;
  font-size: 0.9375rem;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  padding: 1.25rem 1.5rem;
}
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-order .woocommerce-customer-details .woocommerce-column--2 {
  margin-top: 50px;
}
body.woo-checkout-flow .woo-checkout .woocommerce .woocommerce-order .ldgr-goto-dashboard-div {
  margin-top: 30px;
  justify-content: flex-start;
}
body.woo-checkout-flow .wc-block-cart,
body.woo-checkout-flow .wc-block-checkout {
  color: #080A21;
}
body.woo-checkout-flow .wc-block-cart .wc-block-components-title,
body.woo-checkout-flow .wc-block-checkout .wc-block-components-title {
  color: #341B57;
  font-weight: 700;
}
body.woo-checkout-flow .wc-block-cart .wc-block-components-text,
body.woo-checkout-flow .wc-block-cart .wc-block-components-formatted-money-amount,
body.woo-checkout-flow .wc-block-checkout .wc-block-components-text,
body.woo-checkout-flow .wc-block-checkout .wc-block-components-formatted-money-amount {
  color: #080A21;
}
body.woo-checkout-flow .wc-block-cart .wc-block-components-totals-item,
body.woo-checkout-flow .wc-block-checkout .wc-block-components-totals-item {
  border-color: #e5e7eb;
  color: #080A21;
}
body.woo-checkout-flow .wc-block-cart .wc-block-components-totals-footer-item,
body.woo-checkout-flow .wc-block-checkout .wc-block-components-totals-footer-item {
  font-weight: 700;
  color: #080A21;
}
body.woo-checkout-flow .wc-block-cart .wc-block-components-text-input input,
body.woo-checkout-flow .wc-block-cart .wc-block-components-select select,
body.woo-checkout-flow .wc-block-cart .wc-block-components-combobox input,
body.woo-checkout-flow .wc-block-checkout .wc-block-components-text-input input,
body.woo-checkout-flow .wc-block-checkout .wc-block-components-select select,
body.woo-checkout-flow .wc-block-checkout .wc-block-components-combobox input {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #080A21;
  border-radius: 8px;
}
body.woo-checkout-flow .wc-block-cart .wc-block-components-text-input input:focus,
body.woo-checkout-flow .wc-block-cart .wc-block-components-select select:focus,
body.woo-checkout-flow .wc-block-cart .wc-block-components-combobox input:focus,
body.woo-checkout-flow .wc-block-checkout .wc-block-components-text-input input:focus,
body.woo-checkout-flow .wc-block-checkout .wc-block-components-select select:focus,
body.woo-checkout-flow .wc-block-checkout .wc-block-components-combobox input:focus {
  border-color: #080a21;
  outline: none;
}
body.woo-checkout-flow .woo-checkout .container {
  max-width: 100%;
}

@media only screen and (max-width: 767px) {
  .wp-block-woocommerce-checkout {
    padding-top: 0;
  }
  .wp-block-woocommerce-checkout-order-summary-block .checkout-order-summary-block-fill {
    background: #fff;
  }
  .wc-block-cart__sidebar {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  body.woo-checkout-flow .checkout-flow-main {
    padding: 2.5rem 0 4rem;
  }
  body.woo-checkout-flow .woo-checkout .entry-title,
  body.woo-checkout-flow .woo-checkout h1 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
  body.woo-checkout-flow .wp-block-woocommerce-checkout-order-summary-block {
    background: #fff;
  }
}
.wc-block-components-button {
  background: #C3CC41;
  font-weight: 500;
}

body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-components-sidebar-layout {
  align-items: flex-start;
}
body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart {
  margin-bottom: 0;
}
body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar {
  background: #fff;
  padding: 30px;
  margin-bottom: 0;
}
body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main {
  background: #fff;
  padding: 30px;
  margin-bottom: 0;
}
body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main table.wc-block-cart-items {
  margin-bottom: 0;
}
body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main .wc-block-components-product-name {
  font-size: 20px !important;
}
body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main .wc-block-components-product-badge {
  display: none;
}
body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-totals-coupon__button {
  background-color: #341B57;
  color: #fff;
}
body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-totals-coupon__button:hover {
  background-color: rgb(75.2631578947, 39.0789473684, 125.9210526316);
}
body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-totals-coupon__button[disabled] {
  opacity: 0.5;
}
body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart__submit-button {
  background-color: #C3CC41;
  color: #000;
}
body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart__submit-button:hover {
  background-color: rgb(163.7261410788, 171.867219917, 46.132780083);
}

body .wp-block-woocommerce-checkout {
  padding-top: 0;
}
body .wp-block-woocommerce-checkout .wc-block-components-sidebar {
  padding: 0;
  top: max(10px, 2.22vw);
}
body .wp-block-woocommerce-checkout .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block {
  background: #fff;
  border-radius: 0;
  border-color: #fff;
}
body .wp-block-woocommerce-checkout .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block table {
  border: none;
}
body .wp-block-woocommerce-checkout .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block table th,
body .wp-block-woocommerce-checkout .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block table td {
  border: none;
}
body .wp-block-woocommerce-checkout .wc-block-components-form {
  background: #fff;
}
body .wp-block-woocommerce-checkout .wc-block-components-main {
  background: #fff;
  padding: 30px;
  margin-bottom: 0;
}
body .wp-block-woocommerce-checkout .wc-block-components-main .components-input-control__container {
  border-radius: 4px;
}
body .wp-block-woocommerce-checkout .wc-block-components-main .components-input-control__container .components-select-control__input {
  height: 50px;
  padding: 0 20px;
  font-size: 1rem !important;
}
body .wp-block-woocommerce-checkout .wc-block-components-main .wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__label {
  font-weight: 600;
}
body .wp-block-woocommerce-checkout .wc-block-components-main .wc-block-checkout__shipping-option .wc-block-checkout__shipping-option--free {
  display: none;
}
body .wp-block-woocommerce-checkout .wc-block-components-main .wc-block-components-checkout-place-order-button {
  background-color: #C3CC41;
  color: #000;
}
body .wp-block-woocommerce-checkout .wc-block-components-main .wc-block-components-checkout-place-order-button:hover {
  background-color: rgb(163.7261410788, 171.867219917, 46.132780083);
}

@media only screen and (min-width: 768px) {
  body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main {
    width: 60%;
    margin-right: 5%;
  }
  body .wp-block-woocommerce-checkout .wc-block-components-main {
    width: 60%;
    margin-right: 5%;
  }
}
@media only screen and (min-width: 1025px) {
  body.woo-checkout-flow .checkout-header {
    padding: 1.25rem 0;
  }
  body.woo-checkout-flow .checkout-header__logo img {
    max-height: 40px;
  }
  body.woo-checkout-flow .checkout-flow-main {
    padding: 3rem 0 4rem;
  }
}
.woocommerce-MyAccount-navigation {
  margin-bottom: 15px;
}
.woocommerce-MyAccount-navigation > ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: normal;
  gap: 15px;
}
.woocommerce-MyAccount-navigation-link {
  flex: 1;
}
.woocommerce-MyAccount-navigation-link a {
  background: #fff;
  padding: 20px 30px 16px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #341B57;
  font-weight: 500;
  border-bottom: 4px solid #fff;
}
.woocommerce-MyAccount-navigation-link a:before {
  content: "";
  position: relative;
  margin-right: 20px;
  height: 20px;
  width: 20px;
}
.woocommerce-MyAccount-navigation-link:not(.is-active) {
  opacity: 0.7;
}
.woocommerce-MyAccount-navigation-link:not(.is-active):hover {
  opacity: 1;
}
.woocommerce-MyAccount-navigation-link.is-active a {
  border-bottom: 4px solid #C3CC41;
}
.woocommerce-MyAccount-navigation-link:not(:last-of-type) {
  margin-bottom: 10px;
}
.woocommerce-MyAccount-navigation-link--dashboard {
  display: none !important;
}
.woocommerce-MyAccount-navigation-link--dashboard a:before {
  background: url(../images/icons/account.svg) center/contain no-repeat;
}
.woocommerce-MyAccount-navigation-link--orders a:before {
  background: url(../images/icons/orders.svg) center/contain no-repeat;
}
.woocommerce-MyAccount-navigation-link--edit-address a:before, .woocommerce-MyAccount-navigation-link--hc-address-book a:before {
  background: url(../images/icons/addresses.svg) center/contain no-repeat;
}
.woocommerce-MyAccount-navigation-link--edit-account a:before {
  background: url(../images/icons/account-details.svg) center/contain no-repeat;
}
.woocommerce-MyAccount-navigation-link--customer-logout a:before {
  background: url(../images/icons/logout.svg) center/contain no-repeat;
}

.woocommerce-MyAccount-content {
  background: #fff;
  padding: 50px;
  color: #341B57;
}
.woocommerce-MyAccount-content .woocommerce-message,
.woocommerce-MyAccount-content .woocommerce-error,
.woocommerce-MyAccount-content .woocommerce-info {
  background-color: #F4F4F4;
  margin: 0;
}
.woocommerce-MyAccount-content .woocommerce-info + h2 {
  margin-top: 50px;
}
.woocommerce-MyAccount-content h1 {
  display: none;
}
.woocommerce-MyAccount-content > p:not(:last-of-type) {
  margin-bottom: 30px;
}
.woocommerce-MyAccount-content > p a {
  color: #541E75;
  font-weight: 500;
  text-decoration: underline;
}
.woocommerce-MyAccount-content h2 {
  margin-bottom: 20px;
}
.woocommerce-MyAccount-content #hc_wcma_add_address_fields_wrapper,
.woocommerce-MyAccount-content #hc_wcma_limit_notice + h2 {
  display: none !important;
}
.woocommerce-MyAccount-content .hc-wcma-address-list {
  margin-bottom: 0;
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(3, 1fr);
}
.woocommerce-MyAccount-content .hc-wcma-address-list + h2 {
  margin-top: 35px;
}
.woocommerce-MyAccount-content .hc-wcma-address-list .hc-wcma-address-card {
  padding: 30px;
  background-color: #F4F4F4;
  border-radius: 0;
  border-color: #EBEBEB;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 15px;
}
.woocommerce-MyAccount-content .hc-wcma-address-list .hc-wcma-address-card h3 {
  margin-bottom: 15px;
  width: 100%;
  -webkit-text-stroke-width: 0px;
  gap: 5px;
}
.woocommerce-MyAccount-content .hc-wcma-address-list .hc-wcma-address-card h3 .hc-wcma-default-badge,
.woocommerce-MyAccount-content .hc-wcma-address-list .hc-wcma-address-card h3 .hc-wcma-incomplete-badge {
  border-radius: 0;
  font-size: 14px;
  color: #fff;
  padding: 4px 8px;
  -webkit-text-stroke-width: 0;
}
.woocommerce-MyAccount-content .hc-wcma-address-list .hc-wcma-address-card h3 .hc-wcma-default-badge {
  color: #155724;
  background: #d4edda;
}
.woocommerce-MyAccount-content .hc-wcma-address-list .hc-wcma-address-card h3 .hc-wcma-incomplete-badge {
  color: #721c24;
  background: #f8d7da;
}
.woocommerce-MyAccount-content .hc-wcma-address-list .hc-wcma-address-card address {
  margin-bottom: auto;
}
.woocommerce-MyAccount-content .hc-wcma-address-list .hc-wcma-address-card .hc-wcma-actions {
  border: none;
}
.woocommerce-MyAccount-content #hc_wcma_edit_modal {
  border-radius: 0;
}
.woocommerce-MyAccount-content #hc_wcma_edit_modal .hc-wcma-address-form #hc_wcma_edit_modal_close {
  width: 47px;
  height: 47px;
  background: #C3CC41 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="15.557" height="15.557" viewBox="0 0 15.557 15.557"><path id="Union_9" data-name="Union 9" d="M7.778,9.192,1.414,15.557,0,14.142,6.364,7.778,0,1.414,1.414,0,7.778,6.364,14.142,0l1.415,1.414L9.192,7.778l6.364,6.364-1.415,1.415Z" fill="%23341B57"/></svg>') center/14px no-repeat;
  font-size: 0;
  padding: 0;
}
.woocommerce-MyAccount-content .woocommerce-orders-table {
  width: 100%;
}
.woocommerce-MyAccount-content .woocommerce-orders-table__header, .woocommerce-MyAccount-content .woocommerce-orders-table__cell {
  padding: 15px;
  text-align: left;
}
.woocommerce-MyAccount-content .woocommerce-orders-table__header {
  background: #F4F4F4;
  font-weight: 600;
}
.woocommerce-MyAccount-content .woocommerce-orders-table__row {
  border-bottom: 1px solid #EBEBEB;
}

@media only screen and (max-width: 1024px) {
  .woocommerce-MyAccount-navigation > ul {
    flex-wrap: wrap;
    gap: 10px;
  }
  .woocommerce-MyAccount-navigation-link {
    flex: 0 0 calc(50% - 5px);
  }
  .woocommerce-MyAccount-navigation-link a {
    padding: 15px 20px 12px;
    font-size: 14px;
  }
  .woocommerce-MyAccount-navigation-link a:before {
    margin-right: 10px;
    height: 18px;
    width: 18px;
  }
  .woocommerce-MyAccount-navigation-link:not(:last-of-type) {
    margin-bottom: 0;
  }
  .woocommerce-MyAccount-content {
    padding: 30px;
  }
  .woocommerce-MyAccount-content .hc-wcma-address-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .woocommerce-MyAccount-navigation > ul {
    flex-direction: column;
    gap: 8px;
  }
  .woocommerce-MyAccount-navigation-link {
    flex: 1 1 100%;
  }
  .woocommerce-MyAccount-navigation-link a {
    justify-content: flex-start;
    padding: 14px 16px 12px;
  }
  .woocommerce-MyAccount-content {
    padding: 20px;
  }
  .woocommerce-MyAccount-content h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .woocommerce-MyAccount-content > p:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .woocommerce-MyAccount-content .hc-wcma-address-list {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
  .woocommerce-MyAccount-content .hc-wcma-address-list + h2 {
    margin-top: 25px;
  }
  .woocommerce-MyAccount-content .hc-wcma-address-list .hc-wcma-address-card {
    padding: 20px;
    margin-bottom: 0;
  }
  .woocommerce-MyAccount-content .hc-wcma-address-list .hc-wcma-address-card h3 {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .woocommerce-MyAccount-content .hc-wcma-address-list .hc-wcma-address-card h3 .hc-wcma-default-badge,
  .woocommerce-MyAccount-content .hc-wcma-address-list .hc-wcma-address-card h3 .hc-wcma-incomplete-badge {
    font-size: 12px;
    padding: 4px 8px;
  }
  .woocommerce-MyAccount-content .hc-wcma-address-list .hc-wcma-address-card .hc-wcma-actions {
    margin-top: 15px;
    padding-top: 15px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  .woocommerce-MyAccount-content .hc-wcma-address-list .hc-wcma-address-card .hc-wcma-actions a {
    font-size: 13px;
  }
  .woocommerce-MyAccount-content .woocommerce-orders-table {
    display: block;
  }
  .woocommerce-MyAccount-content .woocommerce-orders-table thead {
    display: none;
  }
  .woocommerce-MyAccount-content .woocommerce-orders-table tbody {
    display: block;
  }
  .woocommerce-MyAccount-content .woocommerce-orders-table__row {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #EBEBEB;
  }
  .woocommerce-MyAccount-content .woocommerce-orders-table__row:first-child {
    padding-top: 0;
  }
  .woocommerce-MyAccount-content .woocommerce-orders-table__cell {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border: none;
  }
  .woocommerce-MyAccount-content .woocommerce-orders-table__cell:before {
    content: attr(data-title);
    font-weight: 600;
    margin-right: 10px;
  }
  .woocommerce-MyAccount-content .woocommerce-orders-table__cell--order-actions {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .woocommerce-MyAccount-content .woocommerce-orders-table__cell--order-actions:before {
    display: none;
  }
  .woocommerce-MyAccount-content .woocommerce-orders-table__cell--order-actions a {
    display: inline-block;
  }
  .woocommerce-MyAccount-content #hc_wcma_edit_modal {
    width: calc(100% - 30px) !important;
    max-height: 90vh;
    overflow-y: auto;
  }
  .woocommerce-MyAccount-content #hc_wcma_edit_modal .hc-wcma-address-form {
    padding: 20px;
  }
  .woocommerce-MyAccount-content #hc_wcma_edit_modal .hc-wcma-address-form #hc_wcma_edit_modal_close {
    width: 36px;
    height: 36px;
    top: 10px;
    right: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .woocommerce-MyAccount-navigation-link a {
    padding: 12px 14px 10px;
    font-size: 13px;
  }
  .woocommerce-MyAccount-navigation-link a:before {
    height: 16px;
    width: 16px;
    margin-right: 8px;
  }
  .woocommerce-MyAccount-content {
    padding: 15px;
  }
  .woocommerce-MyAccount-content h2 {
    font-size: 18px;
  }
  .woocommerce-MyAccount-content .hc-wcma-address-list .hc-wcma-address-card {
    padding: 15px;
  }
  .woocommerce-MyAccount-content .hc-wcma-address-list .hc-wcma-address-card address {
    font-size: 14px;
  }
}
.woocommerce form .form-row {
  margin-bottom: 15px;
}
.woocommerce form .form-row label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 7px;
  color: #341B57;
}
.woocommerce form .form-row label .required {
  color: #F44336;
}
.woocommerce form .form-row input:not([type=checkbox]),
.woocommerce form .form-row select {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #EBEBEB;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  background-color: #F4F4F4;
  font-size: 14px;
}
.woocommerce form .form-row input:not([type=checkbox]):focus,
.woocommerce form .form-row select:focus {
  border-color: #C3CC41;
  outline: none;
}
.woocommerce form .form-row input:not([type=checkbox])[aria-invalid=true],
.woocommerce form .form-row select[aria-invalid=true] {
  background-color: #ffe6e6;
  border: 1px solid #cc0000;
}
.woocommerce form .form-row select {
  background: #F4F4F4 url("../images/icons/arrow-down.svg") calc(100% - 1rem) 50%/12px no-repeat;
}
.woocommerce form .form-row textarea {
  width: 100%;
  min-height: 150px;
  padding: 20px;
  resize: none;
  border: 1px solid #EBEBEB;
  outline: none;
  box-shadow: none;
}
.woocommerce form .form-row .password-input .woocommerce-password-strength.short {
  color: #b81c23;
  margin-top: 10px;
  font-weight: 500;
}
.woocommerce form .form-row .password-input .woocommerce-password-strength.bad, .woocommerce form .form-row .password-input .woocommerce-password-strength.good, .woocommerce form .form-row .password-input .woocommerce-password-strength.strong {
  display: none !important;
}
.woocommerce form .form-row.form-row-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.woocommerce form .form-row.form-row-submit .button {
  max-width: 200px;
}
.woocommerce form .form-row.form-row-submit .button:before {
  content: "\f023";
  font-family: "Font Awesome 5 Free";
  margin-right: 15px;
}
.woocommerce form .form-row.form-row-wide {
  clear: both;
}
.woocommerce form .form-row em {
  font-size: 12px;
}
.woocommerce form .woocommerce-form__label-for-checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.woocommerce form .woocommerce-form__label-for-checkbox span {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.woocommerce form .woocommerce-form__label-for-checkbox span:before {
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #EBEBEB;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  content: "";
  cursor: pointer;
  margin-right: 8px;
  padding: 6px;
  position: relative;
}
.woocommerce form .woocommerce-form__label-for-checkbox span:after {
  border: solid #000;
  border-width: 0 2px 2px 0;
  content: "";
  display: block;
  height: 8px;
  opacity: 0;
  left: 5.5px;
  position: absolute;
  top: 6px;
  transform: rotate(45deg);
  transition: all 0.3s ease, transform 0s linear;
  width: 5px;
}
.woocommerce form .woocommerce-form__label-for-checkbox input:checked + span:after {
  opacity: 1;
}
.woocommerce form legend {
  display: block;
  float: left;
  margin: 20px 0 10px;
}

@media only screen and (min-width: 481px) {
  .woocommerce form .form-row.form-row-submit {
    flex-direction: row;
  }
  .woocommerce form .form-row.form-row-submit .button {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) {
  .woocommerce form .form-row.form-row-first {
    float: left;
    width: calc(50% - 15px);
  }
  .woocommerce form .form-row.form-row-last {
    float: right;
    width: calc(50% - 15px);
  }
}
.woocommerce form .form-row .select2 {
  width: 100% !important;
}
.woocommerce form .form-row .select2-container .select2-selection {
  height: auto;
  min-height: 0;
  padding: 16px 20px;
  border: 1px solid #EBEBEB;
  background-color: #F4F4F4;
  font-size: 14px;
  transition: border-color 0.2s ease;
  border-radius: 0;
  display: flex;
  align-items: center;
  position: relative;
}
.woocommerce form .form-row .select2-container .select2-selection:focus, .woocommerce form .form-row .select2-container .select2-selection:focus-within {
  border-color: #C3CC41;
  outline: none;
}
.woocommerce form .form-row .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0;
  line-height: 1.2;
  color: #341B57;
  flex: 1;
}
.woocommerce form .form-row .select2-container .select2-selection--single .select2-selection__placeholder {
  color: rgba(52, 27, 87, 0.6);
}
.woocommerce form .form-row .select2-container .select2-selection--single .select2-selection__arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url("../images/icons/arrow-down.svg") 50% 50%/12px no-repeat;
  pointer-events: none;
}
.woocommerce form .form-row .select2-container .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.woocommerce form .form-row .select2-container .select2-selection--multiple {
  padding: 12px 14px;
}
.woocommerce form .form-row .select2-container .select2-selection--multiple .select2-selection__rendered {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.woocommerce form .form-row .select2-container .select2-selection--multiple .select2-selection__choice {
  margin: 0;
  padding: 6px 10px;
  border: 1px solid #EBEBEB;
  background: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1;
}
.woocommerce form .form-row .select2-container .select2-selection--multiple .select2-selection__choice__remove {
  margin-right: 8px;
}
.woocommerce form .form-row .select2-container .select2-selection--multiple .select2-search__field {
  margin: 0;
  padding: 6px 4px;
  font-size: 14px;
}
.woocommerce form .form-row .select2-container.select2-container--open .select2-selection {
  border-color: #C3CC41;
}
.woocommerce form .form-row .select2-container.select2-container--open .select2-selection__arrow {
  transform: translateY(-50%) rotate(180deg);
}
.woocommerce form .form-row .select2-container.select2-container--disabled .select2-selection {
  opacity: 0.6;
  cursor: not-allowed;
}
.woocommerce form .form-row.woocommerce-invalid .select2-container .select2-selection, .woocommerce form .form-row.woocommerce-invalid-required-field .select2-container .select2-selection {
  background-color: #ffe6e6;
  border: 1px solid #cc0000;
}

.select2-container--default .select2-dropdown {
  border: 1px solid #EBEBEB;
  background: #fff;
}
.select2-container--default .select2-search--dropdown {
  padding: 10px;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #EBEBEB;
  font-size: 14px;
  outline: none;
}
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: #C3CC41;
}
.select2-container--default .select2-results__options {
  max-height: 260px;
}
.select2-container--default .select2-results__option {
  padding: 10px 14px;
  font-size: 14px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: rgba(195, 204, 65, 0.12);
  color: #341B57;
}
.select2-container--default .select2-results__option[aria-selected=true] {
  background: rgba(195, 204, 65, 0.2);
}

.select2-container {
  z-index: 9999;
}

.woocommerce .blockUI.blockOverlay:before, .woocommerce .loader:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: trasnlate(-50%, -50%);
  display: block;
  content: "";
  background: url("../images/icons/loader.svg") center center;
  width: 40px;
  height: 40px;
  background-size: cover;
  text-align: center;
  animation: fa-spin 2s infinite linear;
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.woocommerce table {
  width: 100%;
}
.woocommerce table th {
  padding: 10px 0;
  text-align: left;
  font-weight: bold;
}
.woocommerce table td {
  padding: 10px;
}
.woocommerce table td:last-child {
  padding-right: 0;
  text-align: right;
}
.woocommerce table tr:not(:first-of-type) {
  border-top: 1px solid #EBEBEB;
}
.woof_container {
  padding: 20px 0;
  margin-bottom: 0;
}
.woof_container:not(:first-child) {
  border-top: 1px solid #fff;
}
.woof_container_inner {
  position: relative;
}
.woof_container_inner > h4 {
  font-family: "Goldman", sans-serif;
  font-weight: 600;
  padding-right: 30px;
  line-height: 1;
}
.woof_container_inner .woof_front_toggle {
  position: absolute;
  right: 0;
  top: 5px;
}
.woof_container_inner .woof_list {
  font-size: 14px;
  padding-top: 20px;
}
.woof_container_inner .woof_list > li {
  padding: 0 !important;
  margin: 0 !important;
}
.woof_container_inner .woof_list > li:not(:last-child) {
  margin-bottom: 10px !important;
}
.woof_container_inner .woof_list > li .woof_radio_term_reset {
  display: none !important;
}
.woof_container_inner .woof_list > li label {
  padding: 0;
  margin: 0;
  padding-left: 20px;
  position: relative;
}
.woof_container_inner .woof_list > li label:before {
  content: "";
  width: 12px;
  height: 12px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 4px;
  border-radius: 3px;
}
.woof_container_inner .woof_list > li input:checked + label:before {
  background: #C3CC41;
}
.woof .woof_submit_search_form_container {
  margin: 0;
}
.woof .woof_submit_search_form_container .button {
  width: 100%;
  margin: 25px 0 0;
}

/*# sourceMappingURL=woocommerce.css.map*/