@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;
  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, .wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title, .h4, 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), .wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title:has(> span), .h3.outline, .wp-block-woocommerce-empty-cart-block .outline.wc-block-cart__empty-cart__title, .h4: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, 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;
  -webkit-text-stroke-color: #341B57;
}
.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, .wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title:has(> span) span, .h3.outline span, .wp-block-woocommerce-empty-cart-block .outline.wc-block-cart__empty-cart__title span, .h4: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, 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, .wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title u, .h4 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, .wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title u span, .h4 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, .wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title u:before, .h4 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, .wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title {
  font-size: max(19px, 1.73vw);
}

h4, .h4, 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, .wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title, .h4, 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.noscroll, html.noscroll {
  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;
  }
}
.ui-btn, .woocommerce .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 {
  background-color: #341B57;
  color: #fff;
}
.ui-btn--primary:hover {
  background-color: rgb(75.2631578947, 39.0789473684, 125.9210526316);
}
.ui-btn--secondary, .woocommerce .button {
  background-color: #C3CC41;
  color: #000;
}
.ui-btn--secondary:hover, .woocommerce .button:hover {
  background-color: rgb(163.7261410788, 171.867219917, 46.132780083);
}
.ui-btn--arrow {
  padding: 0 11px 0 22px;
}
.ui-btn--arrow > svg {
  height: 37px;
  width: 37px;
  margin-left: 19px;
  transition: transform 0.2s ease;
}
.ui-btn--arrow > svg > * {
  transition: all 0.3s ease;
  transform-origin: center;
}
.ui-btn--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 7px;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  height: 14px;
  width: 14px;
  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;
}

.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;
}
.woocommerce-breadcrumb .fa-solid {
  font-size: 10px;
  margin: 0 10px;
}

.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 .woocommerce-message,
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 10px 20px;
  margin: 30px 0 0;
  position: relative;
  background-color: #ffffff;
  color: #515151;
  list-style: none outside;
  width: auto;
  word-wrap: break-word;
  overflow: auto;
}
.woocommerce .woocommerce-message:before,
.woocommerce .woocommerce-error:before,
.woocommerce .woocommerce-info:before {
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  font-weight: 900;
  display: inline-block;
  float: left;
  font-size: 20px;
}
.woocommerce .woocommerce-error {
  border-top-color: #b81c23;
}
.woocommerce .woocommerce-error:before {
  content: "\f06a";
  color: #b81c23;
}
.woocommerce .woocommerce-message:before {
  color: #C3CC41;
}
.woocommerce .woocommerce-info {
  border-top-color: #5b95a4;
}
.woocommerce .woocommerce-info:before {
  content: "\f06a";
  color: #5b95a4;
}

@media only screen and (min-width: 768px) {
  .woocommerce .woocommerce-message,
  .woocommerce .woocommerce-error,
  .woocommerce .woocommerce-info {
    align-items: center;
    flex-direction: row;
    text-align: left;
  }
  .woocommerce .woocommerce-message a,
  .woocommerce .woocommerce-error a,
  .woocommerce .woocommerce-info a {
    margin: 0 0 0 auto;
  }
  .woocommerce .woocommerce-message:before,
  .woocommerce .woocommerce-error:before,
  .woocommerce .woocommerce-info:before {
    margin-right: 8px;
  }
  .woocommerce .woocommerce-NoticeGroup .woocommerce-message,
  .woocommerce .woocommerce-NoticeGroup .woocommerce-error,
  .woocommerce .woocommerce-NoticeGroup .woocommerce-info {
    display: block;
  }
  .woocommerce .woocommerce-NoticeGroup .woocommerce-message li:not(:first-of-type),
  .woocommerce .woocommerce-NoticeGroup .woocommerce-error li:not(:first-of-type),
  .woocommerce .woocommerce-NoticeGroup .woocommerce-info li:not(:first-of-type) {
    padding-left: 22px;
  }
  .woocommerce .woocommerce-NoticeGroup .woocommerce-message li:not(:last-of-type),
  .woocommerce .woocommerce-NoticeGroup .woocommerce-error li:not(:last-of-type),
  .woocommerce .woocommerce-NoticeGroup .woocommerce-info li:not(:last-of-type) {
    margin-bottom: 5px;
  }
}
.wc-block-components-button {
  background: #C3CC41;
  font-weight: 500;
}

.wp-block-woocommerce-empty-cart-block {
  height: calc(100vh - 32px);
  padding-top: 113px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title:before {
  display: none !important;
}
.wp-block-woocommerce-empty-cart-block .wp-block-separator {
  display: none;
}
.wp-block-woocommerce-empty-cart-block .wp-block-separator + .wp-block-heading {
  display: none;
}
.wp-block-woocommerce-empty-cart-block .wp-block-separator + .wp-block-heading + .wc-block-grid {
  display: none;
}

body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart {
  padding-top: calc(93px + max(32px, 2.22vw));
  padding-right: max(32px, 2.22vw);
  padding-left: max(32px, 2.22vw);
}
body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart {
  margin-bottom: max(80px, 8.88vh);
}
body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar {
  background: #fff;
  padding: 30px;
}
body:not(:has(.wp-block-woocommerce-empty-cart-block)) .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main {
  background: #fff;
  margin-right: 5%;
  width: 60%;
  padding-right: 0;
  margin-bottom: 0;
  padding: 30px;
}
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 .wp-block-woocommerce-checkout {
  padding-top: calc(93px + max(32px, 2.22vw));
  padding-right: max(32px, 2.22vw);
  padding-left: max(32px, 2.22vw);
}
body .wp-block-woocommerce-checkout .wc-block-components-sidebar {
  top: 120px;
  padding-left: 0;
}
body .wp-block-woocommerce-checkout .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block {
  background: #fff;
}
body .wp-block-woocommerce-checkout .wc-block-components-form {
  background: #fff;
  padding: 30px;
}
body .wp-block-woocommerce-checkout .wc-block-components-main {
  background: #fff;
  margin-right: 5%;
  width: 60%;
  padding-right: 0;
  margin-bottom: 0;
  padding: 30px;
}

.woo-account {
  background: #f5f5f5;
  padding: 80px 0;
}
.woo-account__wrap {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}
.woo-account .heading, .woo-account 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, 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 .woo-account span {
  margin-bottom: 20px;
}
.woo-account .woocommerce-LostPassword {
  text-align: center;
  margin: 30px 0 0;
  font-size: 14px;
  font-weight: bold;
}
.woo-account .account_box {
  background: white;
  padding: 30px 20px;
}
.woo-account .account_box p {
  margin-bottom: 30px;
}
.woo-account .account_box p:not(.form-row):last-of-type {
  margin-bottom: 0;
}
.woo-account .woocommerce-MyAccount-navigation-link a {
  background: #fff;
  padding: 20px 30px;
  display: flex;
  align-items: center;
}
.woo-account .woocommerce-MyAccount-navigation-link a:before {
  content: "";
  position: relative;
  margin-right: 20px;
  height: 20px;
  width: 20px;
}
.woo-account .woocommerce-MyAccount-navigation-link.is-active {
  border-bottom: 4px solid #c1c1c1;
  font-weight: 500;
}
.woo-account .woocommerce-MyAccount-navigation-link:not(:last-of-type) {
  margin-bottom: 10px;
}
.woo-account .woocommerce-MyAccount-navigation-link--dashboard {
  display: none !important;
}
.woo-account .woocommerce-MyAccount-navigation-link--dashboard a:before {
  background: url(../images/icons/account.svg) center/contain no-repeat;
}
.woo-account .woocommerce-MyAccount-navigation-link--orders a:before {
  background: url(../images/icons/orders.svg) center/contain no-repeat;
}
.woo-account .woocommerce-MyAccount-navigation-link--edit-address a:before {
  background: url(../images/icons/addresses.svg) center/contain no-repeat;
}
.woo-account .woocommerce-MyAccount-navigation-link--edit-account a:before {
  background: url(../images/icons/account-details.svg) center/contain no-repeat;
}
.woo-account .woocommerce-MyAccount-navigation-link--customer-logout a:before {
  background: url(../images/icons/logout.svg) center/contain no-repeat;
}
.woo-account .woocommerce-MyAccount-back {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.woo-account .woocommerce-MyAccount-back:before {
  content: "";
  position: relative;
  margin-right: 20px;
  height: 20px;
  width: 20px;
  background: url(../images/icons/account.svg) center/contain no-repeat;
}
.woo-account .woocommerce-MyAccount-content .button {
  max-width: 250px;
}
.woo-account .woocommerce-MyAccount-content p {
  margin-bottom: 30px;
}
.woo-account .woocommerce-MyAccount-content .cart_items {
  margin-bottom: 30px;
}
.woo-account .woocommerce-MyAccount-content .woocommerce-table--order-details {
  margin-bottom: 30px;
}
.woo-account .woocommerce-MyAccount-content--boxed {
  padding: 20px 15px;
  background: white;
}
.woo-account .woocommerce-Address-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.woo-account .woocommerce-Address-title .heading, .woo-account .woocommerce-Address-title 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, 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 .woo-account .woocommerce-Address-title span {
  margin-bottom: 0;
}
.woo-account .woocommerce-Address-title a {
  color: #341B57;
  font-weight: bold;
}
.woo-account .woocommerce-Address:not(:last-of-type) {
  margin-bottom: 30px;
}
.woo-account .woocommerce-orders-table {
  font-size: 0.875em;
}
.woo-account .woocommerce-orders-table__header {
  padding: 10px;
}
.woo-account .woocommerce-orders-table__cell-order-number {
  font-weight: bold;
}
.woo-account .woocommerce-orders-table__cell .button {
  height: 30px;
  max-width: 100px;
}
.woo-account--loggedout .woocommerce-message,
.woo-account--loggedout .woocommerce-error,
.woo-account--loggedout .woocommerce-info {
  max-width: 750px;
  margin: 0 auto 30px;
}
@media only screen and (max-width: 767px) {
  .woo-account .woocommerce-orders-table thead {
    display: none;
  }
  .woo-account .woocommerce-orders-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .woo-account .woocommerce-orders-table td .amount {
    margin-left: auto;
    margin-right: 5px;
  }
  .woo-account .woocommerce-orders-table td:before {
    content: attr(data-title);
    font-weight: bold;
    margin-right: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .woo-account .account_box {
    padding: 40px;
  }
  .woo-account .woocommerce-MyAccount-content--boxed {
    padding: 40px;
  }
}
.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]) {
  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 {
  border-color: #C3CC41;
  outline: none;
}
.woocommerce form .form-row input:not([type=checkbox])[aria-invalid=true] {
  background-color: #ffe6e6;
  border: 1px solid #cc0000;
}
.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 .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;
}

@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 .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*/