/*! tailwindcss v2.2.19 | MIT License | https://tailwindcss.com *//*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

*,
::before,
::after {
	box-sizing: border-box;
}

/**
Use a more readable tab size (opinionated).
*/

html {
	-moz-tab-size: 4;
	tab-size: 4;
}

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
	line-height: 1.15; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
}

/*
Sections
========
*/

/**
Remove the margin in all browsers.
*/

body {
	margin: 0;
}

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

body {
	font-family:
		system-ui,
		-apple-system, /* Firefox supports this but not yet `system-ui` */
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}

/*
Grouping content
================
*/

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

hr {
	height: 0; /* 1 */
	color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr[title] {
	text-decoration: underline dotted;
}

/**
Add the correct font weight in Edge and Safari.
*/

b,
strong {
	font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
	font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/

small {
	font-size: 80%;
}

/**
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;
}

/*
Tabular data
============
*/

/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

table {
	text-indent: 0; /* 1 */
	border-color: inherit; /* 2 */
}

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/

button,
select { /* 1 */
	text-transform: none;
}

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

::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
Restore the focus styles unset by the previous rule.
*/

:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

:-moz-ui-invalid {
	box-shadow: none;
}

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

legend {
	padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
	vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-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; /* 1 */
	outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/

::-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; /* 1 */
	font: inherit; /* 2 */
}

/*
Interactive
===========
*/

/*
Add the correct display in Chrome and Safari.
*/

summary {
	display: list-item;
}/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * Removes the default spacing and border for appropriate elements.
 */

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

button {
  background-color: transparent;
  background-image: none;
}

fieldset {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

html {
  font-family: Muli, sans-serif; /* 1 */
  line-height: 1.5; /* 2 */
}


/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */

body {
  font-family: inherit;
  line-height: inherit;
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

hr {
  border-top-width: 1px;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

button,
[role="button"] {
  cursor: pointer;
}

/**
 * Override legacy focus reset from Normalize with modern Firefox focus styles.
 *
 * This is actually an improvement over the new defaults in Firefox in our testing,
 * as it triggers the better focus styles even for links, which still use a dotted
 * outline in Firefox by default.
 */
 
:-moz-focusring {
	outline: auto;
}

table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

a {
  color: inherit;
  text-decoration: inherit;
}

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */

pre,
code,
kbd,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/**
 * 1. Make replaced elements `display: block` by default as that's
 *    the behavior you want almost all of the time. Inspired by
 *    CSS Remedy, with `svg` added as well.
 *
 *    https://github.com/mozdevs/cssremedy/issues/14
 * 
 * 2. Add `vertical-align: middle` to align replaced elements more
 *    sensibly by default when overriding `display` by adding a
 *    utility like `inline`.
 *
 *    This can trigger a poorly considered linting error in some
 *    tools but is included by design.
 * 
 *    https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
 */

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/**
 * Constrain images and videos to the parent width and preserve
 * their intrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

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

/**
 * Ensure the default browser behavior of the `hidden` attribute.
 */

[hidden] {
  display: none;
}

*, ::before, ::after {
	--tw-translate-x: 0;
	--tw-translate-y: 0;
	--tw-rotate: 0;
	--tw-skew-x: 0;
	--tw-skew-y: 0;
	--tw-scale-x: 1;
	--tw-scale-y: 1;
	--tw-transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
	--tw-border-opacity: 1;
	border-color: rgba(229, 231, 235, var(--tw-border-opacity));
	--tw-ring-offset-shadow: 0 0 #0000;
	--tw-ring-shadow: 0 0 #0000;
	--tw-shadow: 0 0 #0000;
	--tw-blur: var(--tw-empty,/*!*/ /*!*/);
	--tw-brightness: var(--tw-empty,/*!*/ /*!*/);
	--tw-contrast: var(--tw-empty,/*!*/ /*!*/);
	--tw-grayscale: var(--tw-empty,/*!*/ /*!*/);
	--tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
	--tw-invert: var(--tw-empty,/*!*/ /*!*/);
	--tw-saturate: var(--tw-empty,/*!*/ /*!*/);
	--tw-sepia: var(--tw-empty,/*!*/ /*!*/);
	--tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/);
	--tw-filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
	--tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/);
	--tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/);
	--tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/);
	--tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/);
	--tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
	--tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/);
	--tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/);
	--tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/);
	--tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/);
	--tw-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

:root {
	--color-brand-100: 194 200 255;
	--color-brand-400: 61 132 255;
	--color-brand-600: 41 84 255;
	--color-brand-700: 31 57 255;
	--color-brand-800: 23 43 196;
	--color-brand-base: 61 132 255;
	--color-brand-dark: 41 84 255;
	--color-brand-darkest: 23 43 196;
	--color-brand-light: 194 200 255;
}
.container {
	width: 100%;
}
@media (min-width: 480px) {

	.container {
		max-width: 480px;
	}
}
@media (min-width: 640px) {

	.container {
		max-width: 640px;
	}
}
@media (min-width: 800px) {

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

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

	.container {
		max-width: 1120px;
	}
}
@media (min-width: 1280px) {

	.container {
		max-width: 1280px;
	}
}
@media (min-width: 1440px) {

	.container {
		max-width: 1440px;
	}
}
@media (min-width: 1600px) {

	.container {
		max-width: 1600px;
	}
}
@media (min-width: 1920px) {

	.container {
		max-width: 1920px;
	}
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}
.pointer-events-none {
	pointer-events: none;
}
.pointer-events-auto {
	pointer-events: auto;
}
.visible {
	visibility: visible;
}
.invisible {
	visibility: hidden;
}
.static {
	position: static;
}
.fixed {
	position: fixed;
}
.absolute {
	position: absolute;
}
.relative {
	position: relative;
}
.sticky {
	position: sticky;
}
.inset {
	top: 1.5rem;
	right: 1.5rem;
	bottom: 1.5rem;
	left: 1.5rem;
}
.bottom-0 {
	bottom: 0px;
}
.left-\[-100vw\] {
	left: -100vw;
}
.top-full {
	top: 100%;
}
.left {
	left: 1.5rem;
}
.left-1\/2 {
	left: 50%;
}
.right-0 {
	right: 0px;
}
.top-0 {
	top: 0px;
}
.left-0 {
	left: 0px;
}
.right {
	right: 1.5rem;
}
.top-\[5\.5rem\] {
	top: 5.5rem;
}
.top {
	top: 1.5rem;
}
.left-auto {
	left: auto;
}
.left-sm {
	left: 1.5rem;
}
.top-1\.5 {
	top: 0.375rem;
}
.top-1 {
	top: 0.25rem;
}
.bottom-md {
	bottom: 2rem;
}
.left-xs {
	left: 1rem;
}
.right-auto {
	right: auto;
}
.top-auto {
	top: auto;
}
.left-\[-3\.5em\] {
	left: -3.5em;
}
.left-\[3\.5em\] {
	left: 3.5em;
}
.bottom {
	bottom: 1.5rem;
}
.top-lg {
	top: 3rem;
}
.right-5 {
	right: 1.25rem;
}
.bottom-\[-7px\] {
	bottom: -7px;
}
.left-\[-24px\] {
	left: -24px;
}
.right-\[-24px\] {
	right: -24px;
}
.top-\[-7px\] {
	top: -7px;
}
.right-1 {
	right: 0.25rem;
}
.top-\[110\%\] {
	top: 110%;
}
.top-9 {
	top: 2.25rem;
}
.top-2\/4 {
	top: 50%;
}
.z-menu {
	z-index: 70;
}
.z-button {
	z-index: 20;
}
.z-foreground {
	z-index: 10;
}
.z-dialog {
	z-index: 80;
}
.z-header {
	z-index: 40;
}
.z-dropdown {
	z-index: 23;
}
.z-mask {
	z-index: 60;
}
.z-behind {
	z-index: -1;
}
.z-surface {
	z-index: 1;
}
.z-toast {
	z-index: 90;
}
.order-first {
	order: -9999;
}
.order-1 {
	order: 1;
}
.col-span-1 {
	grid-column: span 1 / span 1;
}
.col-span-3 {
	grid-column: span 3 / span 3;
}
.col-span-6 {
	grid-column: span 6 / span 6;
}
.col-auto {
	grid-column: auto;
}
.col-start-auto {
	grid-column-start: auto;
}
.col-start-1 {
	grid-column-start: 1;
}
.col-start-2 {
	grid-column-start: 2;
}
.col-start-3 {
	grid-column-start: 3;
}
.col-end-span2 {
	grid-column-end: span 2;
}
.col-end-span1 {
	grid-column-end: span 1;
}
.col-end-4 {
	grid-column-end: 4;
}
.col-end-10 {
	grid-column-end: 10;
}
.row-start-1 {
	grid-row-start: 1;
}
.row-start-3 {
	grid-row-start: 3;
}
.row-start-2 {
	grid-row-start: 2;
}
.row-end-4 {
	grid-row-end: 4;
}
.float-left {
	float: left;
}
.m-0 {
	margin: 0px;
}
.m-auto {
	margin: auto;
}
.m-xs {
	margin: 1rem;
}
.-m-xs {
	margin: -1rem;
}
.mx-0 {
	margin-left: 0px;
	margin-right: 0px;
}
.my-xs {
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.mx-auto {
	margin-left: auto;
	margin-right: auto;
}
.my-0 {
	margin-top: 0px;
	margin-bottom: 0px;
}
.mx-5 {
	margin-left: 1.25rem;
	margin-right: 1.25rem;
}
.-mx-5 {
	margin-left: -1.25rem;
	margin-right: -1.25rem;
}
.mx-sm {
	margin-left: 1.5rem;
	margin-right: 1.5rem;
}
.mx-0\.5 {
	margin-left: 0.125rem;
	margin-right: 0.125rem;
}
.mx-1\.5 {
	margin-left: 0.375rem;
	margin-right: 0.375rem;
}
.mx-1 {
	margin-left: 0.25rem;
	margin-right: 0.25rem;
}
.my-lg {
	margin-top: 3rem;
	margin-bottom: 3rem;
}
.mx-xs {
	margin-left: 1rem;
	margin-right: 1rem;
}
.my-md {
	margin-top: 2rem;
	margin-bottom: 2rem;
}
.my-4 {
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.my-2 {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}
.my-sm {
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}
.my {
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}
.mb-2 {
	margin-bottom: 0.5rem;
}
.mt-4 {
	margin-top: 1rem;
}
.mb-md {
	margin-bottom: 2rem;
}
.mb-2xs {
	margin-bottom: 0.5rem;
}
.mt-2xs {
	margin-top: 0.5rem;
}
.mt-xs {
	margin-top: 1rem;
}
.ml-xs {
	margin-left: 1rem;
}
.-ml-px {
	margin-left: -1px;
}
.mb-xs {
	margin-bottom: 1rem;
}
.mb-4 {
	margin-bottom: 1rem;
}
.ml-2 {
	margin-left: 0.5rem;
}
.mr-2 {
	margin-right: 0.5rem;
}
.mt-0 {
	margin-top: 0px;
}
.-mt-0\.5 {
	margin-top: -0.125rem;
}
.-mt-0 {
	margin-top: 0px;
}
.mb-1\.5 {
	margin-bottom: 0.375rem;
}
.mb-1 {
	margin-bottom: 0.25rem;
}
.mb-sm {
	margin-bottom: 1.5rem;
}
.mb-8 {
	margin-bottom: 2rem;
}
.mt-6 {
	margin-top: 1.5rem;
}
.-ml-1\.5 {
	margin-left: -0.375rem;
}
.-ml-1 {
	margin-left: -0.25rem;
}
.mt-10 {
	margin-top: 2.5rem;
}
.-ml-2xs {
	margin-left: -0.5rem;
}
.mb-3 {
	margin-bottom: 0.75rem;
}
.mr-2xs {
	margin-right: 0.5rem;
}
.mb-0 {
	margin-bottom: 0px;
}
.mt-sm {
	margin-top: 1.5rem;
}
.mr-0 {
	margin-right: 0px;
}
.ml-0 {
	margin-left: 0px;
}
.mr-auto {
	margin-right: auto;
}
.mt-1 {
	margin-top: 0.25rem;
}
.ml-1 {
	margin-left: 0.25rem;
}
.ml-2xs {
	margin-left: 0.5rem;
}
.ml-auto {
	margin-left: auto;
}
.mt-5 {
	margin-top: 1.25rem;
}
.ml-sm {
	margin-left: 1.5rem;
}
.mr-sm {
	margin-right: 1.5rem;
}
.mr-xs {
	margin-right: 1rem;
}
.mt-0\.5 {
	margin-top: 0.125rem;
}
.mt-md {
	margin-top: 2rem;
}
.box-border {
	box-sizing: border-box;
}
.block {
	display: block;
}
.inline-block {
	display: inline-block;
}
.inline {
	display: inline;
}
.flex {
	display: flex;
}
.inline-flex {
	display: inline-flex;
}
.table {
	display: table;
}
.grid {
	display: grid;
}
.inline-grid {
	display: inline-grid;
}
.contents {
	display: contents;
}
.hidden {
	display: none;
}
.h-screen {
	height: 100vh;
}
.h-\[4\.5rem\] {
	height: 4.5rem;
}
.h-0 {
	height: 0px;
}
.h-full {
	height: 100%;
}
.h-\[4rem\] {
	height: 4rem;
}
.h-\[2\.5rem\] {
	height: 2.5rem;
}
.h-\[2rem\] {
	height: 2rem;
}
.h-\[5rem\] {
	height: 5rem;
}
.h-\[3\.5rem\] {
	height: 3.5rem;
}
.h-\[1\.5rem\] {
	height: 1.5rem;
}
.h-\[2\.25rem\] {
	height: 2.25rem;
}
.h-\[7rem\] {
	height: 7rem;
}
.h-\[30rem\] {
	height: 30rem;
}
.h-\[600px\] {
	height: 600px;
}
.h-auto {
	height: auto;
}
.h-lg {
	height: 3rem;
}
.h-\[3rem\] {
	height: 3rem;
}
.h-14 {
	height: 3.5rem;
}
.h-\[100px\] {
	height: 100px;
}
.h-\[2px\] {
	height: 2px;
}
.h-\[0\.875rem\] {
	height: 0.875rem;
}
.h-\[75px\] {
	height: 75px;
}
.h-fitContent {
	height: fit-content;
}
.h-\[6rem\] {
	height: 6rem;
}
.h-\[200px\] {
	height: 200px;
}
.h-unset {
	height: unset;
}
.max-h-full {
	max-height: 100%;
}
.max-h-\[24rem\] {
	max-height: 24rem;
}
.max-h-\[54px\] {
	max-height: 54px;
}
.max-h-\[35rem\] {
	max-height: 35rem;
}
.max-h-\[25rem\] {
	max-height: 25rem;
}
.max-h-\[35px\] {
	max-height: 35px;
}
.max-h-\[75px\] {
	max-height: 75px;
}
.min-h-auto {
	min-height: auto;
}
.min-h-\[360px\] {
	min-height: 360px;
}
.min-h-\[3\.125rem\] {
	min-height: 3.125rem;
}
.min-h-\[15rem\] {
	min-height: 15rem;
}
.min-h-0 {
	min-height: 0px;
}
.min-h-\[6\.75rem\] {
	min-height: 6.75rem;
}
.min-h-\[3\.5rem\] {
	min-height: 3.5rem;
}
.w-full {
	width: 100%;
}
.w-\[27\.5rem\] {
	width: 27.5rem;
}
.w-fit {
	width: fit-content;
}
.w-max {
	width: max-content;
}
.w-\[6rem\] {
	width: 6rem;
}
.w-\[1\.5rem\] {
	width: 1.5rem;
}
.w-\[640px\] {
	width: 640px;
}
.w-\[2\.5rem\] {
	width: 2.5rem;
}
.w-\[3rem\] {
	width: 3rem;
}
.w-lg {
	width: 3rem;
}
.w-auto {
	width: auto;
}
.w-\[22\.5rem\] {
	width: 22.5rem;
}
.w-\[10rem\] {
	width: 10rem;
}
.w-\[5rem\] {
	width: 5rem;
}
.w-\[0\.875rem\] {
	width: 0.875rem;
}
.w-\[2rem\] {
	width: 2rem;
}
.w-\[20rem\] {
	width: 20rem;
}
.w-\[200px\] {
	width: 200px;
}
.w-\[400px\] {
	width: 400px;
}
.min-w-\[10rem\] {
	min-width: 10rem;
}
.min-w-\[6rem\] {
	min-width: 6rem;
}
.min-w-auto {
	min-width: auto;
}
.min-w-\[6\.25rem\] {
	min-width: 6.25rem;
}
.min-w-\[6\.125rem\] {
	min-width: 6.125rem;
}
.min-w-\[1\.25rem\] {
	min-width: 1.25rem;
}
.min-w-\[3rem\] {
	min-width: 3rem;
}
.min-w-\[5rem\] {
	min-width: 5rem;
}
.min-w-0 {
	min-width: 0px;
}
.min-w-\[6\.26rem\] {
	min-width: 6.26rem;
}
.min-w-\[20rem\] {
	min-width: 20rem;
}
.min-w-full {
	min-width: 100%;
}
.min-w-\[9rem\] {
	min-width: 9rem;
}
.max-w-\[75vw\] {
	max-width: 75vw;
}
.max-w-\[100vw\] {
	max-width: 100vw;
}
.max-w-full {
	max-width: 100%;
}
.max-w-site {
	max-width: 1440px;
}
.max-w-screen-lg {
	max-width: 960px;
}
.max-w-modal {
	max-width: 360px;
}
.max-w-\[20rem\] {
	max-width: 20rem;
}
.max-w-sm {
	max-width: 24rem;
}
.max-w-\[15rem\] {
	max-width: 15rem;
}
.max-w-\[90vw\] {
	max-width: 90vw;
}
.max-w-\[235px\] {
	max-width: 235px;
}
.max-w-\[640px\] {
	max-width: 640px;
}
.max-w-\[24rem\] {
	max-width: 24rem;
}
.max-w-\[200px\] {
	max-width: 200px;
}
.max-w-none {
	max-width: none;
}
.flex-auto {
	flex: 1 1 auto;
}
.flex-textInput {
	flex: 0 0 100%;
}
.flex-shrink {
	flex-shrink: 1;
}
.flex-grow {
	flex-grow: 1;
}
.transform {
	transform: var(--tw-transform);
}
.cursor-pointer {
	cursor: pointer;
}
.cursor-default {
	cursor: default;
}
.select-none {
	user-select: none;
}
.resize {
	resize: both;
}
.list-none {
	list-style-type: none;
}
.list-decimal {
	list-style-type: decimal;
}
.list-disc {
	list-style-type: disc;
}
.appearance-none {
	appearance: none;
}
.auto-cols-fr {
	grid-auto-columns: minmax(0, 1fr);
}
.auto-cols-max {
	grid-auto-columns: max-content;
}
.auto-cols-auto {
	grid-auto-columns: auto;
}
.grid-flow-row {
	grid-auto-flow: row;
}
.grid-flow-col {
	grid-auto-flow: column;
}
.grid-flow-row-dense {
	grid-auto-flow: row dense;
}
.grid-cols-1 {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-autoFirst {
	grid-template-columns: auto 1fr;
}
.grid-cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-auto {
	grid-template-columns: auto;
}
.grid-cols-autoLast {
	grid-template-columns: 1fr auto;
}
.grid-cols-6 {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-\[1fr\] {
	grid-template-columns: 1fr;
}
.grid-cols-carouselThumbnailList {
	grid-template-columns: repeat(auto-fit, 1rem);
}
.grid-cols-\[100\%\] {
	grid-template-columns: 100%;
}
.grid-rows-autoFirst {
	grid-template-rows: auto 1fr;
}
.grid-rows-autoLast {
	grid-template-rows: 1fr auto;
}
.grid-rows-auto {
	grid-template-rows: auto;
}
.flex-col {
	flex-direction: column;
}
.flex-wrap {
	flex-wrap: wrap;
}
.content-center {
	align-content: center;
}
.content-start {
	align-content: flex-start;
}
.items-start {
	align-items: flex-start;
}
.items-end {
	align-items: flex-end;
}
.items-center {
	align-items: center;
}
.items-baseline {
	align-items: baseline;
}
.items-stretch {
	align-items: stretch;
}
.justify-start {
	justify-content: flex-start;
}
.justify-end {
	justify-content: flex-end;
}
.justify-center {
	justify-content: center;
}
.justify-between {
	justify-content: space-between;
}
.justify-items-start {
	justify-items: start;
}
.justify-items-end {
	justify-items: end;
}
.justify-items-center {
	justify-items: center;
}
.justify-items-stretch {
	justify-items: stretch;
}
.gap-sm {
	gap: 1.5rem;
}
.gap-3 {
	gap: 0.75rem;
}
.gap-xs {
	gap: 1rem;
}
.gap-md {
	gap: 2rem;
}
.gap-1\.5 {
	gap: 0.375rem;
}
.gap-1 {
	gap: 0.25rem;
}
.gap-2xs {
	gap: 0.5rem;
}
.gap-0 {
	gap: 0px;
}
.gap {
	gap: 1.5rem;
}
.gap-lg {
	gap: 3rem;
}
.gap-2 {
	gap: 0.5rem;
}
.gap-0\.5 {
	gap: 0.125rem;
}
.gap-8 {
	gap: 2rem;
}
.gap-4 {
	gap: 1rem;
}
.gap-x-2xs {
	column-gap: 0.5rem;
}
.gap-y-md {
	row-gap: 2rem;
}
.gap-y-sm {
	row-gap: 1.5rem;
}
.gap-y-xs {
	row-gap: 1rem;
}
.gap-y-2xs {
	row-gap: 0.5rem;
}
.gap-x-lg {
	column-gap: 3rem;
}
.gap-y-1 {
	row-gap: 0.25rem;
}
.gap-y-4 {
	row-gap: 1rem;
}
.gap-x-xs {
	column-gap: 1rem;
}
.gap-y-16 {
	row-gap: 4rem;
}
.gap-x-md {
	column-gap: 2rem;
}
.gap-y-lg {
	row-gap: 3rem;
}
.gap-x-4 {
	column-gap: 1rem;
}
.gap-x-0 {
	column-gap: 0px;
}
.gap-x-2\.5 {
	column-gap: 0.625rem;
}
.gap-x-2 {
	column-gap: 0.5rem;
}
.gap-x-1 {
	column-gap: 0.25rem;
}
.gap-y-3 {
	row-gap: 0.75rem;
}
.gap-y-0 {
	row-gap: 0px;
}
.gap-y-1\.5 {
	row-gap: 0.375rem;
}
.gap-y-2 {
	row-gap: 0.5rem;
}
.gap-x-sm {
	column-gap: 1.5rem;
}
.self-start {
	align-self: flex-start;
}
.self-end {
	align-self: flex-end;
}
.self-center {
	align-self: center;
}
.justify-self-start {
	justify-self: start;
}
.justify-self-end {
	justify-self: end;
}
.justify-self-center {
	justify-self: center;
}
.justify-self-stretch {
	justify-self: stretch;
}
.overflow-auto {
	overflow: auto;
}
.overflow-hidden {
	overflow: hidden;
}
.overflow-visible {
	overflow: visible;
}
.overflow-y-auto {
	overflow-y: auto;
}
.overflow-ellipsis {
	text-overflow: ellipsis;
}
.whitespace-nowrap {
	white-space: nowrap;
}
.whitespace-pre {
	white-space: pre;
}
.break-words {
	overflow-wrap: break-word;
}
.rounded-md {
	border-radius: 0.375rem;
}
.rounded-sm {
	border-radius: 0.125rem;
}
.rounded-full {
	border-radius: 9999px;
}
.rounded {
	border-radius: 0.25rem;
}
.rounded-none {
	border-radius: 0px;
}
.rounded-b-md {
	border-bottom-right-radius: 0.375rem;
	border-bottom-left-radius: 0.375rem;
}
.rounded-t-none {
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}
.border-0 {
	border-width: 0px;
}
.border {
	border-width: 1px;
}
.border-2 {
	border-width: 2px;
}
.border-8 {
	border-width: 8px;
}
.border-b-2 {
	border-bottom-width: 2px;
}
.border-b-0 {
	border-bottom-width: 0px;
}
.border-t-2 {
	border-top-width: 2px;
}
.border-t {
	border-top-width: 1px;
}
.border-b {
	border-bottom-width: 1px;
}
.border-t-0 {
	border-top-width: 0px;
}
.border-r-0 {
	border-right-width: 0px;
}
.border-l-4 {
	border-left-width: 4px;
}
.border-l-0 {
	border-left-width: 0px;
}
.border-l {
	border-left-width: 1px;
}
.border-b-4 {
	border-bottom-width: 4px;
}
.border-solid {
	border-style: solid;
}
.border-dashed {
	border-style: dashed;
}
.border-none {
	border-style: none;
}
.border-subtle {
	--tw-border-opacity: 1;
	border-color: rgba(209, 213, 219, var(--tw-border-opacity));
}
.border-light {
	--tw-border-opacity: 1;
	border-color: rgba(243, 244, 246, var(--tw-border-opacity));
}
.border-gray-700 {
	--tw-border-opacity: 1;
	border-color: rgba(55, 65, 81, var(--tw-border-opacity));
}
.border-brand-dark {
	--tw-border-opacity: 1;
	border-color: rgb(var(--color-brand-dark) / var(--tw-border-opacity));
}
.border-red-600 {
	--tw-border-opacity: 1;
	border-color: rgba(220, 38, 38, var(--tw-border-opacity));
}
.border-transparent {
	border-color: transparent;
}
.border-input {
	--tw-border-opacity: 1;
	border-color: rgba(75, 85, 99, var(--tw-border-opacity));
}
.border-error {
	--tw-border-opacity: 1;
	border-color: rgba(248, 113, 113, var(--tw-border-opacity));
}
.border-gray-300 {
	--tw-border-opacity: 1;
	border-color: rgba(209, 213, 219, var(--tw-border-opacity));
}
.border-strong {
	--tw-border-opacity: 1;
	border-color: rgba(31, 41, 55, var(--tw-border-opacity));
}
.border-shaded-10 {
	border-color: rgba(0, 0, 0, 0.1);
}
.border-gray-400 {
	--tw-border-opacity: 1;
	border-color: rgba(156, 163, 175, var(--tw-border-opacity));
}
.border-button {
	--tw-border-opacity: 1;
	border-color: rgba(75, 85, 99, var(--tw-border-opacity));
}
.border-info {
	--tw-border-opacity: 1;
	border-color: rgba(5, 150, 105, var(--tw-border-opacity));
}
.border-warning {
	--tw-border-opacity: 1;
	border-color: rgba(245, 158, 11, var(--tw-border-opacity));
}
.border-success {
	--tw-border-opacity: 1;
	border-color: rgba(5, 150, 105, var(--tw-border-opacity));
}
.border-gray-600 {
	--tw-border-opacity: 1;
	border-color: rgba(75, 85, 99, var(--tw-border-opacity));
}
.bg-transparent {
	background-color: transparent;
}
.bg-white {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
.bg-subtle {
	--tw-bg-opacity: 1;
	background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
}
.bg-brand-dark {
	--tw-bg-opacity: 1;
	background-color: rgb(var(--color-brand-dark) / var(--tw-bg-opacity));
}
.bg-red-600 {
	--tw-bg-opacity: 1;
	background-color: rgba(220, 38, 38, var(--tw-bg-opacity));
}
.bg-gray-600 {
	--tw-bg-opacity: 1;
	background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
}
.bg-header {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
.bg-gray-100 {
	--tw-bg-opacity: 1;
	background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
}
.bg-body {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
.bg-black {
	--tw-bg-opacity: 1;
	background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}
.bg-gray-300 {
	--tw-bg-opacity: 1;
	background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
}
.bg-gray-900 {
	--tw-bg-opacity: 1;
	background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
}
.bg-disabledTile {
	--tw-bg-opacity: 1;
	background-color: rgba(245, 245, 245, var(--tw-bg-opacity));
}
.bg-gray-700 {
	--tw-bg-opacity: 1;
	background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
}
.bg-cover {
	background-size: cover;
}
.bg-clip-padding {
	background-clip: padding-box;
}
.bg-clip-content {
	background-clip: content-box;
}
.bg-no-repeat {
	background-repeat: no-repeat;
}
.object-contain {
	object-fit: contain;
}
.object-cover {
	object-fit: cover;
}
.object-center {
	object-position: center;
}
.p-0 {
	padding: 0px;
}
.p {
	padding: 1.5rem;
}
.p-xs {
	padding: 1rem;
}
.p-md {
	padding: 2rem;
}
.p-sm {
	padding: 1.5rem;
}
.p-1 {
	padding: 0.25rem;
}
.p-0\.5 {
	padding: 0.125rem;
}
.p-3 {
	padding: 0.75rem;
}
.p-2xs {
	padding: 0.5rem;
}
.p-5 {
	padding: 1.25rem;
}
.p-3\.5 {
	padding: 0.875rem;
}
.px-4 {
	padding-left: 1rem;
	padding-right: 1rem;
}
.px-2xs {
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}
.py-0 {
	padding-top: 0px;
	padding-bottom: 0px;
}
.px-sm {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
.px-lg {
	padding-left: 3rem;
	padding-right: 3rem;
}
.py-md {
	padding-top: 2rem;
	padding-bottom: 2rem;
}
.py-xs {
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.px-0 {
	padding-left: 0px;
	padding-right: 0px;
}
.py-1\.5 {
	padding-top: 0.375rem;
	padding-bottom: 0.375rem;
}
.py-1 {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}
.px-xs {
	padding-left: 1rem;
	padding-right: 1rem;
}
.px-md {
	padding-left: 2rem;
	padding-right: 2rem;
}
.py-4 {
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.px-0\.5 {
	padding-left: 0.125rem;
	padding-right: 0.125rem;
}
.py-2\.5 {
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
}
.py-2 {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
.px-5 {
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}
.px-1 {
	padding-left: 0.25rem;
	padding-right: 0.25rem;
}
.px-8 {
	padding-left: 2rem;
	padding-right: 2rem;
}
.py-2xs {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
.py-sm {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}
.px-3 {
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}
.py-5 {
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
}
.py-lg {
	padding-top: 3rem;
	padding-bottom: 3rem;
}
.py-3 {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}
.px-\[15px\] {
	padding-left: 15px;
	padding-right: 15px;
}
.py-\[12px\] {
	padding-top: 12px;
	padding-bottom: 12px;
}
.px-2\.5 {
	padding-left: 0.625rem;
	padding-right: 0.625rem;
}
.px-2 {
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}
.py-3\.5 {
	padding-top: 0.875rem;
	padding-bottom: 0.875rem;
}
.py-\[2\.5rem\] {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}
.pb-xs {
	padding-bottom: 1rem;
}
.pb-2xs {
	padding-bottom: 0.5rem;
}
.pb-sm {
	padding-bottom: 1.5rem;
}
.pt-0 {
	padding-top: 0px;
}
.pt-xs {
	padding-top: 1rem;
}
.pt-\[0\.625rem\] {
	padding-top: 0.625rem;
}
.pb-\[1rem\] {
	padding-bottom: 1rem;
}
.pt-sm {
	padding-top: 1.5rem;
}
.pl-xs {
	padding-left: 1rem;
}
.pr-0 {
	padding-right: 0px;
}
.pt-10 {
	padding-top: 2.5rem;
}
.pl-4 {
	padding-left: 1rem;
}
.pr-3 {
	padding-right: 0.75rem;
}
.pb-0\.5 {
	padding-bottom: 0.125rem;
}
.pb-0 {
	padding-bottom: 0px;
}
.pt-2\.5 {
	padding-top: 0.625rem;
}
.pt-2 {
	padding-top: 0.5rem;
}
.pt-5 {
	padding-top: 1.25rem;
}
.pt-16 {
	padding-top: 4rem;
}
.pb-16 {
	padding-bottom: 4rem;
}
.pt-md {
	padding-top: 2rem;
}
.pt-2xs {
	padding-top: 0.5rem;
}
.pl-2xs {
	padding-left: 0.5rem;
}
.pt-0\.5 {
	padding-top: 0.125rem;
}
.pb-3 {
	padding-bottom: 0.75rem;
}
.pr-sm {
	padding-right: 1.5rem;
}
.pt-px {
	padding-top: 1px;
}
.pt-3 {
	padding-top: 0.75rem;
}
.pl-3 {
	padding-left: 0.75rem;
}
.pb-md {
	padding-bottom: 2rem;
}
.pl-sm {
	padding-left: 1.5rem;
}
.pt-1\.5 {
	padding-top: 0.375rem;
}
.pt-1 {
	padding-top: 0.25rem;
}
.pt-lg {
	padding-top: 3rem;
}
.pr-1 {
	padding-right: 0.25rem;
}
.pl-2 {
	padding-left: 0.5rem;
}
.pl-0 {
	padding-left: 0px;
}
.pr-xs {
	padding-right: 1rem;
}
.pl-1 {
	padding-left: 0.25rem;
}
.pb-1\.5 {
	padding-bottom: 0.375rem;
}
.pb-1 {
	padding-bottom: 0.25rem;
}
.pl-6 {
	padding-left: 1.5rem;
}
.pb-4 {
	padding-bottom: 1rem;
}
.pl-8 {
	padding-left: 2rem;
}
.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.font-serif {
	font-family: Source Serif Pro, serif;
}
.text-\[100\%\] {
	font-size: 100%;
}
.text-xl {
	font-size: 1.5rem;
}
.text-lg {
	font-size: 1.25rem;
}
.text-3xl {
	font-size: 3rem;
}
.text-sm {
	font-size: 0.875rem;
}
.text-xs {
	font-size: 0.75rem;
}
.text-inherit {
	font-size: inherit;
}
.text-2xl {
	font-size: 2.125rem;
}
.text-2xs {
	font-size: 0.6875rem;
}
.font {
	font-weight: 300;
}
.font-normal {
	font-weight: 400;
}
.font-light {
	font-weight: 300;
}
.font-bold {
	font-weight: 700;
}
.font-semibold {
	font-weight: 600;
}
.uppercase {
	text-transform: uppercase;
}
.lowercase {
	text-transform: lowercase;
}
.capitalize {
	text-transform: capitalize;
}
.italic {
	font-style: italic;
}
.leading-none {
	line-height: 1;
}
.leading-snug {
	line-height: 1.375;
}
.leading-tight {
	line-height: 1.25;
}
.leading-normal {
	line-height: 1.5;
}
.leading-8 {
	line-height: 2rem;
}
.leading-\[0\] {
	line-height: 0;
}
.leading-relaxed {
	line-height: 1.625;
}
.leading-5 {
	line-height: 1.25rem;
}
.text-gray-900 {
	--tw-text-opacity: 1;
	color: rgba(17, 24, 39, var(--tw-text-opacity));
}
.text-current {
	color: currentColor;
}
.text-colorDefault {
	--tw-text-opacity: 1;
	color: rgba(17, 24, 39, var(--tw-text-opacity));
}
.text-subtle {
	--tw-text-opacity: 1;
	color: rgba(75, 85, 99, var(--tw-text-opacity));
}
.text-brand-dark {
	--tw-text-opacity: 1;
	color: rgb(var(--color-brand-dark) / var(--tw-text-opacity));
}
.text {
	--tw-text-opacity: 1;
	color: rgba(17, 24, 39, var(--tw-text-opacity));
}
.text-gray-700 {
	--tw-text-opacity: 1;
	color: rgba(55, 65, 81, var(--tw-text-opacity));
}
.text-white {
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.text-red-600 {
	--tw-text-opacity: 1;
	color: rgba(220, 38, 38, var(--tw-text-opacity));
}
.text-error {
	--tw-text-opacity: 1;
	color: rgba(185, 28, 28, var(--tw-text-opacity));
}
.text-gray-100 {
	--tw-text-opacity: 1;
	color: rgba(243, 244, 246, var(--tw-text-opacity));
}
.text-gray-600 {
	--tw-text-opacity: 1;
	color: rgba(75, 85, 99, var(--tw-text-opacity));
}
.text-brand-base {
	--tw-text-opacity: 1;
	color: rgb(var(--color-brand-base) / var(--tw-text-opacity));
}
.text-gray-500 {
	--tw-text-opacity: 1;
	color: rgba(107, 114, 128, var(--tw-text-opacity));
}
.underline {
	text-decoration: underline;
}
.no-underline {
	text-decoration: none;
}
.antialiased {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.opacity-0 {
	opacity: 0;
}
.opacity-100 {
	opacity: 1;
}
.opacity-50 {
	opacity: 0.5;
}
.opacity-25 {
	opacity: 0.25;
}
.opacity-75 {
	opacity: 0.75;
}
.opacity-40 {
	opacity: 0.4;
}
.opacity-90 {
	opacity: 0.9;
}
.shadow-menu {
	--tw-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-dialog {
	--tw-shadow: 1px 1px 5px #4b5563;
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-modal {
	--tw-shadow: 1px 0 undefined;
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-headerTrigger {
	--tw-shadow: 0 4px rgb(var(--color-brand-600));
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-thin {
	--tw-shadow: 0 1px #d1d5db;
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-inputFocus {
	--tw-shadow: -6px 6px rgb(var(--color-brand-100));
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-none {
	--tw-shadow: 0 0 #0000;
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow {
	--tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline-none {
	outline: 2px solid transparent;
	outline-offset: 2px;
}
.blur {
	--tw-blur: blur(8px);
	filter: var(--tw-filter);
}
.grayscale {
	--tw-grayscale: grayscale(100%);
	filter: var(--tw-filter);
}
.invert {
	--tw-invert: invert(100%);
	filter: var(--tw-filter);
}
.filter {
	filter: var(--tw-filter);
}
.backdrop-filter {
	backdrop-filter: var(--tw-backdrop-filter);
}
.transition {
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 384ms;
}
.ease-in {
	transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.ease-in-out {
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Owl Carousel nav — kill default grey button background + hide disabled arrows globally */
.owl-theme .owl-nav [class*='owl-'],
.owl-nav [class*='owl-prev'],
.owl-nav [class*='owl-next'] {
    background: transparent !important;
}
.owl-theme .owl-nav [class*='owl-']:hover {
    background: transparent !important;
}
.owl-nav.disabled,
.owl-nav .disabled {
    display: none !important;
}

/* Hide header, gallery controls, and bottom bar when review modal is open */
body.review-modal-open header,
body.review-modal-open [class*="bottom_toolbar"],
body.review-modal-open .image-gallery-left-nav,
body.review-modal-open .image-gallery-right-nav,
body.review-modal-open .image-gallery-fullscreen-button,
body.review-modal-open .image-gallery-play-button,
body.review-modal-open .image-gallery-icon {
    display: none !important;
}
body.review-modal-open {
    overflow: hidden !important;
}

/* Hide mobile bottom bar and header when video reel is fullscreen */
body.video-reel-open [class*="bottom_toolbar"],
body.video-reel-open header {
    display: none !important;
}
body.video-reel-open {
    overflow: hidden !important;
}
.first_font-semibold:first-child {
	font-weight: 600;
}
.first_text-colorDefault:first-child {
	--tw-text-opacity: 1;
	color: rgba(17, 24, 39, var(--tw-text-opacity));
}
.last_mb-0:last-child {
	margin-bottom: 0px;
}
.last_border-b-0:last-child {
	border-bottom-width: 0px;
}
.last_border-none:last-child {
	border-style: none;
}
.even_border-solid:nth-child(even) {
	border-style: solid;
}
.even_border-light:nth-child(even) {
	--tw-border-opacity: 1;
	border-color: rgba(243, 244, 246, var(--tw-border-opacity));
}
.checked_bg-brand-dark:checked {
	--tw-bg-opacity: 1;
	background-color: rgb(var(--color-brand-dark) / var(--tw-bg-opacity));
}
.hover_z-buttonHover:hover {
	z-index: 21;
}
.hover_border-brand-dark:hover {
	--tw-border-opacity: 1;
	border-color: rgb(var(--color-brand-dark) / var(--tw-border-opacity));
}
.hover_border-gray-800:hover {
	--tw-border-opacity: 1;
	border-color: rgba(31, 41, 55, var(--tw-border-opacity));
}
.hover_border-brand-darkest:hover {
	--tw-border-opacity: 1;
	border-color: rgb(var(--color-brand-darkest) / var(--tw-border-opacity));
}
.hover_border-red-700:hover {
	--tw-border-opacity: 1;
	border-color: rgba(185, 28, 28, var(--tw-border-opacity));
}
.hover_border-strong:hover {
	--tw-border-opacity: 1;
	border-color: rgba(31, 41, 55, var(--tw-border-opacity));
}
.hover_bg-brand-darkest:hover {
	--tw-bg-opacity: 1;
	background-color: rgb(var(--color-brand-darkest) / var(--tw-bg-opacity));
}
.hover_bg-red-700:hover {
	--tw-bg-opacity: 1;
	background-color: rgba(185, 28, 28, var(--tw-bg-opacity));
}
.hover_bg-subtle:hover {
	--tw-bg-opacity: 1;
	background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
}
.hover_bg-gray-300:hover {
	--tw-bg-opacity: 1;
	background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
}
.hover_text-colorDefault:hover {
	--tw-text-opacity: 1;
	color: rgba(17, 24, 39, var(--tw-text-opacity));
}
.hover_text-gray-800:hover {
	--tw-text-opacity: 1;
	color: rgba(31, 41, 55, var(--tw-text-opacity));
}
.hover_text-brand-darkest:hover {
	--tw-text-opacity: 1;
	color: rgb(var(--color-brand-darkest) / var(--tw-text-opacity));
}
.hover_text-white:hover {
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.hover_text-red-700:hover {
	--tw-text-opacity: 1;
	color: rgba(185, 28, 28, var(--tw-text-opacity));
}
.hover_underline:hover {
	text-decoration: underline;
}
.hover_no-underline:hover {
	text-decoration: none;
}
.focus_z-buttonFocus:focus {
	z-index: 22;
}
.focus_border-brand-base:focus {
	--tw-border-opacity: 1;
	border-color: rgb(var(--color-brand-base) / var(--tw-border-opacity));
}
.focus_border-strong:focus {
	--tw-border-opacity: 1;
	border-color: rgba(31, 41, 55, var(--tw-border-opacity));
}
.focus_bg-gradient-radial:focus {
	background-image: radial-gradient(circle, #f3f4f6, white);
}
.focus_underline:focus {
	text-decoration: underline;
}
.focus_shadow-buttonFocus:focus {
	--tw-shadow: -6px 6px rgb(var(--color-brand-700)) / 0.3;
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus_shadow-inputFocus:focus {
	--tw-shadow: -6px 6px rgb(var(--color-brand-100));
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus_shadow-radioFocus:focus {
	--tw-shadow: -3px 3px rgb(var(--color-brand-100));
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus_shadow-none:focus {
	--tw-shadow: 0 0 #0000;
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus_outline-none:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
}
.active_border-gray-800:active {
	--tw-border-opacity: 1;
	border-color: rgba(31, 41, 55, var(--tw-border-opacity));
}
.active_border-brand-darkest:active {
	--tw-border-opacity: 1;
	border-color: rgb(var(--color-brand-darkest) / var(--tw-border-opacity));
}
.active_border-red-700:active {
	--tw-border-opacity: 1;
	border-color: rgba(185, 28, 28, var(--tw-border-opacity));
}
.active_bg-brand-darkest:active {
	--tw-bg-opacity: 1;
	background-color: rgb(var(--color-brand-darkest) / var(--tw-bg-opacity));
}
.active_bg-red-700:active {
	--tw-bg-opacity: 1;
	background-color: rgba(185, 28, 28, var(--tw-bg-opacity));
}
.active_text-gray-800:active {
	--tw-text-opacity: 1;
	color: rgba(31, 41, 55, var(--tw-text-opacity));
}
.active_text-brand-darkest:active {
	--tw-text-opacity: 1;
	color: rgb(var(--color-brand-darkest) / var(--tw-text-opacity));
}
.active_text-white:active {
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.active_text-red-700:active {
	--tw-text-opacity: 1;
	color: rgba(185, 28, 28, var(--tw-text-opacity));
}
.active_shadow-radioActive:active {
	--tw-shadow: -3px 3px rgb(var(--color-brand-100));
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.active_outline-none:active {
	outline: 2px solid transparent;
	outline-offset: 2px;
}
.disabled_pointer-events-none:disabled {
	pointer-events: none;
}
.disabled_cursor-not-allowed:disabled {
	cursor: not-allowed;
}
.disabled_border-gray-400:disabled {
	--tw-border-opacity: 1;
	border-color: rgba(156, 163, 175, var(--tw-border-opacity));
}
.disabled_border-subtle:disabled {
	--tw-border-opacity: 1;
	border-color: rgba(209, 213, 219, var(--tw-border-opacity));
}
.disabled_bg-gray-400:disabled {
	--tw-bg-opacity: 1;
	background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
}
.disabled_text-white:disabled {
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.disabled_text-subtle:disabled {
	--tw-text-opacity: 1;
	color: rgba(75, 85, 99, var(--tw-text-opacity));
}
.disabled_opacity-50:disabled {
	opacity: 0.5;
}
@media (min-width: 480px) {

	.xs_col-span-2 {
		grid-column: span 2 / span 2;
	}

	.xs_col-span-6 {
		grid-column: span 6 / span 6;
	}

	.xs_mx-auto {
		margin-left: auto;
		margin-right: auto;
	}

	.xs_inline {
		display: inline;
	}

	.xs_hidden {
		display: none;
	}

	.xs_min-w-auto {
		min-width: auto;
	}

	.xs_grid-cols-auto {
		grid-template-columns: auto;
	}

	.xs_gap-x-md {
		column-gap: 2rem;
	}

	.xs_gap-y-md {
		row-gap: 2rem;
	}

	.xs_px-md {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}
@media (min-width: 640px) {

	.sm_bottom-auto {
		bottom: auto;
	}

	.sm_left-auto {
		left: auto;
	}

	.sm_right-xs {
		right: 1rem;
	}

	.sm_top-md {
		top: 2rem;
	}

	.sm_order-1 {
		order: 1;
	}

	.sm_col-span-3 {
		grid-column: span 3 / span 3;
	}

	.sm_ml-10 {
		margin-left: 2.5rem;
	}

	.sm_ml-1 {
		margin-left: 0.25rem;
	}

	.sm_mt-2 {
		margin-top: 0.5rem;
	}

	.sm_block {
		display: block;
	}

	.sm_inline {
		display: inline;
	}

	.sm_flex {
		display: flex;
	}

	.sm_grid {
		display: grid;
	}

	.sm_hidden {
		display: none;
	}

	.sm_h-\[28px\] {
		height: 28px;
	}

	.sm_w-auto {
		width: auto;
	}

	.sm_w-\[28px\] {
		width: 28px;
	}

	.sm_min-w-\[8rem\] {
		min-width: 8rem;
	}

	.sm_max-w-full {
		max-width: 100%;
	}

	.sm_grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sm_grid-cols-autoAuto {
		grid-template-columns: auto auto;
	}

	.sm_justify-items-end {
		justify-items: end;
	}

	.sm_justify-items-center {
		justify-items: center;
	}

	.sm_gap-md {
		gap: 2rem;
	}

	.sm_gap-12 {
		gap: 3rem;
	}

	.sm_justify-self-start {
		justify-self: start;
	}

	.sm_px-md {
		padding-left: 2rem;
		padding-right: 2rem;
	}

	.sm_px-5 {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}

	.sm_py-5 {
		padding-top: 1.25rem;
		padding-bottom: 1.25rem;
	}

	.sm_pb-0 {
		padding-bottom: 0px;
	}
}
@media (min-width: 800px) {

	.md_col-end-auto {
		grid-column-end: auto;
	}

	.md_mb-10 {
		margin-bottom: 2.5rem;
	}

	.md_mt-0 {
		margin-top: 0px;
	}

	.md_inline-block {
		display: inline-block;
	}

	.md_flex {
		display: flex;
	}

	.md_hidden {
		display: none;
	}

	.md_w-1\/2 {
		width: 50%;
	}

	.md_min-w-0 {
		min-width: 0px;
	}

	.md_grid-flow-col {
		grid-auto-flow: column;
	}

	.md_justify-center {
		justify-content: center;
	}

	.md_gap-y-2xs {
		row-gap: 0.5rem;
	}

	.md_justify-self-start {
		justify-self: start;
	}

	.md_border-none {
		border-style: none;
	}

	.md_p-md {
		padding: 2rem;
	}

	.md_pt-4 {
		padding-top: 1rem;
	}

	.md_pl-12 {
		padding-left: 3rem;
	}

	.md_text-left {
		text-align: left;
	}

	.md_text-4xl {
		font-size: 3.75rem;
	}
}
@media (min-width: 960px) {

	.lg_sticky {
		position: sticky;
	}

	.lg_top-\[6rem\] {
		top: 6rem;
	}

	.lg_right-auto {
		right: auto;
	}

	.lg_left-1\/2 {
		left: 50%;
	}

	.lg_right-md {
		right: 2rem;
	}

	.lg_right-1\.5 {
		right: 0.375rem;
	}

	.lg_right-1 {
		right: 0.25rem;
	}

	.lg_top-1\.5 {
		top: 0.375rem;
	}

	.lg_top-1 {
		top: 0.25rem;
	}

	.lg_top-\[5vh\] {
		top: 5vh;
	}

	.lg_order-unset {
		order: unset;
	}

	.lg_col-span-2 {
		grid-column: span 2 / span 2;
	}

	.lg_col-start-2 {
		grid-column-start: 2;
	}

	.lg_col-start-1 {
		grid-column-start: 1;
	}

	.lg_col-start-10 {
		grid-column-start: 10;
	}

	.lg_col-start-6 {
		grid-column-start: 6;
	}

	.lg_col-end-span2 {
		grid-column-end: span 2;
	}

	.lg_col-end-3 {
		grid-column-end: 3;
	}

	.lg_col-end-13 {
		grid-column-end: 13;
	}

	.lg_col-end-auto {
		grid-column-end: auto;
	}

	.lg_col-end-span1 {
		grid-column-end: span 1;
	}

	.lg_col-end-\[-1\] {
		grid-column-end: -1;
	}

	.lg_row-start-1 {
		grid-row-start: 1;
	}

	.lg_m-0 {
		margin: 0px;
	}

	.lg_m-auto {
		margin: auto;
	}

	.lg_mb-0 {
		margin-bottom: 0px;
	}

	.lg_mt-0 {
		margin-top: 0px;
	}

	.lg_mr-8 {
		margin-right: 2rem;
	}

	.lg_mb-md {
		margin-bottom: 2rem;
	}

	.lg_block {
		display: block;
	}

	.lg_inline {
		display: inline;
	}

	.lg_flex {
		display: flex;
	}

	.lg_inline-flex {
		display: inline-flex;
	}

	.lg_grid {
		display: grid;
	}

	.lg_hidden {
		display: none;
	}

	.lg_h-minContent {
		height: min-content;
	}

	.lg_h-\[4rem\] {
		height: 4rem;
	}

	.lg_h-20 {
		height: 5rem;
	}

	.lg_h-auto {
		height: auto;
	}

	.lg_h-full {
		height: 100%;
	}

	.lg_max-h-modal {
		max-height: 90vh;
	}

	.lg_w-full {
		width: 100%;
	}

	.lg_w-filterSidebarWidth {
		width: 325px;
	}

	.lg_w-\[22rem\] {
		width: 22rem;
	}

	.lg_w-auto {
		width: auto;
	}

	.lg_min-w-\[12rem\] {
		min-width: 12rem;
	}

	.lg_min-w-auto {
		min-width: auto;
	}

	.lg_min-w-\[22rem\] {
		min-width: 22rem;
	}

	.lg_max-w-full {
		max-width: 100%;
	}

	.lg_max-w-\[740px\] {
		max-width: 740px;
	}

	.lg_max-w-\[25rem\] {
		max-width: 25rem;
	}

	.lg_flex-grow {
		flex-grow: 1;
	}

	.lg_grid-flow-row {
		grid-auto-flow: row;
	}

	.lg_grid-flow-col {
		grid-auto-flow: column;
	}

	.lg_grid-cols-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.lg_grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lg_grid-cols-\[2fr\2c 1fr\] {
		grid-template-columns: 2fr 1fr;
	}

	.lg_grid-cols-12 {
		grid-template-columns: repeat(12, minmax(0, 1fr));
	}

	.lg_grid-cols-\[1fr\] {
		grid-template-columns: 1fr;
	}

	.lg_grid-cols-\[1fr\2c 1fr\2c 1fr\] {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.lg_grid-cols-autoLast {
		grid-template-columns: 1fr auto;
	}

	.lg_grid-cols-autoAuto {
		grid-template-columns: auto auto;
	}

	.lg_flex-row {
		flex-direction: row;
	}

	.lg_flex-nowrap {
		flex-wrap: nowrap;
	}

	.lg_content-center {
		align-content: center;
	}

	.lg_content-start {
		align-content: flex-start;
	}

	.lg_items-start {
		align-items: flex-start;
	}

	.lg_items-center {
		align-items: center;
	}

	.lg_justify-start {
		justify-content: flex-start;
	}

	.lg_justify-end {
		justify-content: flex-end;
	}

	.lg_justify-center {
		justify-content: center;
	}

	.lg_justify-between {
		justify-content: space-between;
	}

	.lg_justify-items-start {
		justify-items: start;
	}

	.lg_gap-xs {
		gap: 1rem;
	}

	.lg_gap-md {
		gap: 2rem;
	}

	.lg_gap-0 {
		gap: 0px;
	}

	.lg_gap-sm {
		gap: 1.5rem;
	}

	.lg_gap-x-sm {
		column-gap: 1.5rem;
	}

	.lg_gap-y-md {
		row-gap: 2rem;
	}

	.lg_gap-x-8 {
		column-gap: 2rem;
	}

	.lg_gap-x-4 {
		column-gap: 1rem;
	}

	.lg_gap-y-0 {
		row-gap: 0px;
	}

	.lg_gap-x-0 {
		column-gap: 0px;
	}

	.lg_gap-y-3 {
		row-gap: 0.75rem;
	}

	.lg_gap-y-1\.5 {
		row-gap: 0.375rem;
	}

	.lg_gap-y-1 {
		row-gap: 0.25rem;
	}

	.lg_self-start {
		align-self: flex-start;
	}

	.lg_self-stretch {
		align-self: stretch;
	}

	.lg_justify-self-start {
		justify-self: start;
	}

	.lg_justify-self-center {
		justify-self: center;
	}

	.lg_rounded-md {
		border-radius: 0.375rem;
	}

	.lg_rounded-none {
		border-radius: 0px;
	}

	.lg_rounded-sm {
		border-radius: 0.125rem;
	}

	.lg_border-2 {
		border-width: 2px;
	}

	.lg_border-0 {
		border-width: 0px;
	}

	.lg_border {
		border-width: 1px;
	}

	.lg_border-b {
		border-bottom-width: 1px;
	}

	.lg_border-b-0 {
		border-bottom-width: 0px;
	}

	.lg_border-l {
		border-left-width: 1px;
	}

	.lg_border-t {
		border-top-width: 1px;
	}

	.lg_border-solid {
		border-style: solid;
	}

	.lg_border-subtle {
		--tw-border-opacity: 1;
		border-color: rgba(209, 213, 219, var(--tw-border-opacity));
	}

	.lg_border-gray-500 {
		--tw-border-opacity: 1;
		border-color: rgba(107, 114, 128, var(--tw-border-opacity));
	}

	.lg_bg-subtle {
		--tw-bg-opacity: 1;
		background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
	}

	.lg_object-contain {
		object-fit: contain;
	}

	.lg_object-top {
		object-position: top;
	}

	.lg_object-center {
		object-position: center;
	}

	.lg_p-0 {
		padding: 0px;
	}

	.lg_p-md {
		padding: 2rem;
	}

	.lg_px-lg {
		padding-left: 3rem;
		padding-right: 3rem;
	}

	.lg_py-md {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}

	.lg_px-sm {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	.lg_py-0 {
		padding-top: 0px;
		padding-bottom: 0px;
	}

	.lg_px-8 {
		padding-left: 2rem;
		padding-right: 2rem;
	}

	.lg_px-xs {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.lg_px-0 {
		padding-left: 0px;
		padding-right: 0px;
	}

	.lg_py-sm {
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}

	.lg_px-md {
		padding-left: 2rem;
		padding-right: 2rem;
	}

	.lg_py-xs {
		padding-top: 1rem;
		padding-bottom: 1rem;
	}

	.lg_py-3\.5 {
		padding-top: 0.875rem;
		padding-bottom: 0.875rem;
	}

	.lg_py-3 {
		padding-top: 0.75rem;
		padding-bottom: 0.75rem;
	}

	.lg_pb-sm {
		padding-bottom: 1.5rem;
	}

	.lg_pb-0 {
		padding-bottom: 0px;
	}

	.lg_pt-16 {
		padding-top: 4rem;
	}

	.lg_pb-md {
		padding-bottom: 2rem;
	}

	.lg_pl-sm {
		padding-left: 1.5rem;
	}

	.lg_pr-sm {
		padding-right: 1.5rem;
	}

	.lg_pt-md {
		padding-top: 2rem;
	}

	.lg_pt-0 {
		padding-top: 0px;
	}

	.lg_text-left {
		text-align: left;
	}

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

	.lg_text-xl {
		font-size: 1.5rem;
	}

	.lg_font-normal {
		font-weight: 400;
	}

	.lg_normal-case {
		text-transform: none;
	}
}
@media (min-width: 480px) {

	@media (min-width: 960px) {

		.xs_lg_block {
			display: block;
		}
	}
}

/* @import './tokens.css'; */


* {
    box-sizing: border-box;
}

html {
    font-size: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

/*
 * Lock the window's scroll position while an overlay is active.
 * Has no effect in iOS Safari.
 * https://bugs.webkit.org/show_bug.cgi?id=153852
 *
 * :global(html[data-scroll-lock='true'] body) {
 *   overflow: hidden ;
 * }
 */


input:-internal-autofill-selected {
    -webkit-appearance: menulist-button;
       -moz-appearance: menulist-button;
            appearance: menulist-button;
    background-image: none !important;
    background-color: -internal-light-dark(rgb(232, 240, 254), rgba(70, 90, 126, 0.4)) !important;
    color: fieldtext !important;
}


body {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
dd,
dt{
    margin: 0;
}

a {
    text-decoration: none;
}

dl,
ol,
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

button {
    background: none;
    border: 0;
    cursor: pointer;
    font-size: 100%;
    padding: 0;
    touch-action: manipulation;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    -webkit-appearance: none;
}

button:disabled {
    cursor: not-allowed;
    touch-action: none;
}
/* custom fonts */
@font-face {
    font-family: 'Regular-font';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../css/d41d8cd98f00b204e9800998ecf8427e.woff2) format('woff2'),
    url(../css/d41d8cd98f00b204e9800998ecf8427e.ttf) format('ttf'),
    url(../css/d41d8cd98f00b204e9800998ecf8427e.eot) format('eot'),
    url(../css/d41d8cd98f00b204e9800998ecf8427e.otf) format('otf'),
    url(/Poppins-Regular-gAi.svg) format('svg'),
    url(../css/d41d8cd98f00b204e9800998ecf8427e.woff) format('woff');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* devanagari */
@font-face {
    font-family: 'Regular-font';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJbecmNE.woff2) format('woff2');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
    font-family: 'Regular-font';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJnecmNE.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Regular-font';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
  
@font-face {
    font-family: 'Medium-font';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(../css/d41d8cd98f00b204e9800998ecf8427e.woff2) format('woff2'),
    url(../css/d41d8cd98f00b204e9800998ecf8427e.ttf) format('ttf'),
    url(../css/d41d8cd98f00b204e9800998ecf8427e.eot) format('eot'),
    url(../css/d41d8cd98f00b204e9800998ecf8427e.otf) format('otf'),
    url(/Poppins-Medium-gAi.svg) format('svg'),
    url(../css/d41d8cd98f00b204e9800998ecf8427e.woff) format('woff');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;  
}
/* devanagari */
@font-face {
    font-family: 'Medium-font';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9Z11lFc-K.woff2) format('woff2');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
    font-family: 'Medium-font';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9Z1JlFc-K.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Medium-font';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
  
@font-face {
    font-family: 'Bold-font';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../css/d41d8cd98f00b204e9800998ecf8427e.woff2) format('woff2'),
    url(../css/d41d8cd98f00b204e9800998ecf8427e.ttf) format('ttf'),
    url(../css/d41d8cd98f00b204e9800998ecf8427e.eot) format('eot'),
    url(../css/d41d8cd98f00b204e9800998ecf8427e.otf) format('otf'),
    url(/Poppins-Bold-gAi.svg) format('svg'),
    url(../css/d41d8cd98f00b204e9800998ecf8427e.woff) format('woff');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;  
}
/* devanagari */
@font-face {
    font-family: 'Bold-font';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z11lFc-K.woff2) format('woff2');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
    font-family: 'Bold-font';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1JlFc-K.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Bold-font';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --ced-max-width: 1440px;

    --primary-bodybg-color: #ffffff;
    --primary-base-color: #a71e23;
    --primary-base-dark-color: #931115;
    --primary-dark-color: #222222;
    --primary-border-color: #e4e4e4;
    --primary-error-color: #e40606;
    --primary-success-color: #018001;
    --primary-ratingstars-color: #ffbe00;
    --primary-light-color: #ffffff;
    --primary-text-color: #545454;
    --primary-slider-nav-color: #545454;
    --primary-megamenu-color: #fffaf6;
    --primary-box-shadow: 0px 0px 12px 0px
    rgb(203 203 203 / 19%);
    --primary-megamenu-color: #fffbf6;

    --primary-top-header-color: #FBFBFB;
    --header-shadow: 1px -3px 21px 1px rgb(0 0 0 / 8%);
    --primary-mid-header-color: #ffffff;
    --primary-newsletter-color: #f6f6f6;
    --primary-footer-color: #1a1a1a;
    --primary-dark-theme-color: #931115;
    --primary-insta-section: #fafafa;

    --border-color-search: #cdcdcd;
    --dropdown-border-color:#eee;
    --feature-section-border: rgba(0,0,0,.1);
    --text-colo-grey-light: #999;

    --secondary-mobile-newsletter-color: #f8efeb;
    --secondary-dark-color: #333333;
    --secondary-404-bg-color: #8cc64014;
    --secondary-theme-gray-label: #565656;

    --social-facebook-color:#3b5998;
    --social-twitter-color:#55acee;
    --social-instagram-color:#3f729b;
    --footer-seprator-color: #e2e2e2;
    --searbar-sku-color: #c0c0c0;
    --menu-child-color:#303030;
    --newsletter-placeholder-color-light:#b8b8b8;
    --filters-box-shadow: 0 0 8px
    rgb(181 181 181 / 6%);
    --mobile-navigation-child-color: #878787;
    --mobile-navigation-texColor:#575757;
    --search-result-bg-color:#EFEFEF;
    --search-result-text-color: #999;
    --search-product-bg-color:#f2f2f2;
    --noresult-myorder-color: #D9EDF7;
    --noresult-myorder-text-color:#31708f;
    --form-mandatory-star-color:#ed8380;
    --histogram-ratingStar-low-color: #f76b6d;
    --histogram-ratingStar-belowColor: #FC8019;
    --checkoutButoon-color: #a71e23;
    --gpayButton-shadow: 0px 1px 3px 0px #6d6d6d, inset 0px 0px 0px 1px #a8abb3;
    --gpayButton-hover-color:#f7f7f7;
    --contacUs-bg-color: #FBFBFB;
    --comparePage-border-color: #dfdfdf;
    --popup-header-bg-color: #e5efe5;
    --swatchOutlineColor: #6d6d6d;
}

div[class*='container'] {
    max-width: 1280px;
}
input[type=text]:focus, 
input[type=password]:focus, 
input[type=url]:focus,
 input[type=tel]:focus, 
 input[type=search]:focus, 
 input[type=number]:focus, 
 input[type=datetime]:focus, 
 input[type=email]:focus,
 input:focus{
    border-color: var(--primary-dark-color);
}
body,
html,
input,
select,
textarea,
span,
p,
a,
div,
li,
div {
    font-size: 14px;
    font-family: 'Regular-font', sans-serif;
    font-style: normal;
    font-display: swap;
}
a,
a:hover {
    text-decoration: unset !important;
}
button:focus {
    outline: unset !important;
}
html[data-scroll-lock='true'],
html[data-scroll-lock='true'] body {
    height: 100%;
    overflow: hidden;
    position: fixed;
    width: 100%;
}
span[aria-hidden='true'],
label[aria-hidden='true'] {
    visibility: hidden;
    position: absolute;
    left: 0;
}

/* full screen header issue */
body[class='static_header_bottomtool']
    header[class='header-closed-a_N header-root-2P7'],
body[class='static_header_bottomtool'] div[class='main-bottom_toolbar-2Rc'] {
    position: unset;
}
input[disabled=''] {
    background: var(--venia-global-color-gray) !important;
    cursor: not-allowed;
    color: #b9b9b9;
}

body {
    overflow-x: hidden;
}
/* rtl */
body[class~='rtl_view'] {
    direction: rtl;
    text-align: right;
}
@media (max-width: 767px) {
    form[class*="needsclick klaviyo-form"] {
        width: 420px !important;
    }
}
@media (min-width: 768) {
    div[class*=col] {
        padding-left: 7.5px;
        padding-right: 7.5px;
    }
}

.icon-root-VMv {
    --stroke: var(--primary-dark-color);
    align-items: center;
    display: inline-flex;
    justify-content: center;
    touch-action: manipulation;
}

.icon-icon-A2I {
    /* fill: var(--primary-dark-color); */
    stroke: var(--primary-dark-color);
    stroke-width: 1.7;
}

@media (min-width: 641px) {
    .icon-icon_desktop-v-0 {
        width: 28px;
        height: 28px;
    }
}

div[class="needsclick  kl-private-reset-css-Xuajs1"]{
    display: none !important;
}
.main-root-YLm {
    background: var(--primary-bodybg-color);
    position: relative;
    z-index: 1;
}

.main-root_masked-YlY {
}
.main-page-hXb {
    margin: 0 auto;
    min-height: 400px;
    background: var(--primary-bodybg-color);
    /* padding-top: 140px; */
}

.main-page_masked-X6Z {
}

.main-bottom_toolbar-HXN {
    position: fixed;
    bottom: 0px;
    background: var(--primary-bodybg-color);
    box-shadow: 0px 2px 10px 4px rgb(149 149 149 / 8%);
    display: none;
    left: 50%;
    width: calc(100% - 0px);
    z-index: 9999999;
    transform: translateX(-50%);
}
.main-bottom_tool_inner-kud {
}
.main-bottom_tool_inner-kud .main-toolbar_items-qZF {
    width: 25%;
    display: inline-block;
    text-align: center;
    height: 100%;
    padding: 10px 10px 10px 10px;
    position: relative;
    cursor: pointer;
}
/*.bottom_tool_inner .toolbar_items.active {
    border-bottom: 2px solid var(--primary-base-color);
}*/
.main-toolbar_items-qZF.main-active-Lda svg {
    color: var(--primary-base-color);
    stroke: var(--primary-base-color);
    fill: var(--primary-base-color);
}
.main-toolbar_items-qZF.main-active-Lda .main-images_label-0P0 {
    color: var(--primary-base-color);
}
.main-header_Actions_image-eVD {
    display: inline-block !important;
    margin: 0 auto;
}
.main-language_switch_image-FJ2 {
    filter: unset !important;
}
.main-images_label-0P0 {
    font-size: 10px;
    font-family: 'Medium-font';
    color: var(--primary-dark-color);
    text-transform: uppercase;
    display: block;
    margin: 0;
}
.main-wishlist_image-xSz {
    position: relative;
}
.main-wishlist_image-xSz.main-header_Actions_image-eVD img {
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    /* .page {
        padding-top: 205px;
    }
    body[class~='rtl_view'] .page {
        padding-top: 0px;
    } */
}
@media screen and (min-width: 320px) and (max-width: 767px) {
    /* .page {
        padding-top: 75px;
    } */
    .main-bottom_toolbar-HXN {
        display: block;
    }
    .main-user_icon_image-zYS,
    .main-wishlist_image-xSz,
    .main-language_switch_image-FJ2,
    .main-marketplace-T30 {
        min-height: 22px;
    }
    body[class~='rtl_view'] .main-bottom_toolbar-HXN {
    left: 0;
    text-align: left;
    width: 100%;
    transform: unset;
    }
}

.indicator-root-1UM {
    align-content: center;
    align-items: center;
    display: grid;
    gap: 3rem;
    height: calc(100% - 6rem);
    justify-content: center;
    justify-items: center;
    width: 100%;
    height: 100%;
    background-color: #00000014;
}

.indicator-global-qmL {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,.8);
    z-index: 999999;
}

.indicator-message-WMW {
    color: rgb(var(--venia-global-color-text-alt));
    font-size: 1rem;
    letter-spacing: 0.25rem;
    text-transform: uppercase;
}

.indicator-indicator-MAU {
    animation-direction: alternate;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-name: indicator-pulse-dcm;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes indicator-pulse-dcm {
    0% {
        filter: grayscale(1);
        transform: scale(0.75) rotate(-540deg);
    }
    100% {
        filter: grayscale(0);
        transform: scale(1) rotate(0deg);
    }
}
.accountChip-root-biX {
     display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.accountChip-loader-9tR {
}
.accountChip-root-biX img{
    margin: 0 auto;
}

.accountChip-guest_account_title-XaG {
    color: var(--primary-dark-color);
    display: inline-flex;
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    font-size: 13px;
    display: none;
}
.accountChip-signinlabel-6GJ{
    display: block;   
}
.accountChip-root-biX:hover .accountChip-guest_account_title-XaG{
    color:var(--primary-dark-theme-color);
}
@media screen and (max-width: 1199px) and (min-width: 768px) {
    .accountChip-guest_account_title-XaG {
        display: none;
    }
}
.clickable-root-I82 {
    align-items: center;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    line-height: 1;
    pointer-events: auto;
    text-align: center;
    white-space: nowrap;
}

.cartTrigger-iconWrap-cZl {
    position: relative;
    display: inline-block;
    line-height: 0;
}
.cartTrigger-counter-FPi {
    top: -5px;
    position: absolute;
    right: 7px;
    color: var(--primary-light-color);
    font-size: 9px;
    width: 13px;
    justify-content: center;
    height: 13px;
    line-height: 14px;
    background: var(--primary-dark-color);
    font-family: 'Medium-font';
    border-radius: 50%;
    text-shadow: 0px 0px 0px;
}
.cartTrigger-trigger-VfJ {
    align-content: center;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.cartTrigger-trigger-VfJ svg {
    stroke-width: 1.7;
}
.cartTrigger-trigger-VfJ img{
    margin: 0 auto;
}
.cartTrigger-triggerContainer-FZE {
    align-items: center;
    display: grid;
    width: 100%;
    position: relative;
}

.cartTrigger-triggerContainer_open-H-c {
    box-shadow: 0 4px rgb(var(--venia-brand-color-1-700));
}

.cartTrigger-link-mIb {
    display: none;
}
.cartTrigger-empty_cart-YNV{

}

.cartTrigger-rootchip-H98{
    position: relative;
    padding: 20px 0px;
}
.cartTrigger-rootchip-H98 > span{
    width: 100%;
}
.cartTrigger-guest_account_title-8KZ{
}
.cartTrigger-minihide-a3l{
    position: absolute;
    z-index: 1003;
    top: 45px;
    margin-top: 8px;
    right: 0;
    padding: 0;
    background: var(--primary-mid-header-color);
    box-shadow: 0 0 3px 0 rgb(0 0 0 / 10%);
    transition-duration: 192ms;
    transition-property: transform;
    transition-timing-function: var(--venia-global-anim-out);
    width: 25rem;
    transition: all 0.3s ease;
    display: none;
}
.cartTrigger-minihide-a3l:before {
    content: '';
    width: 12px;
    height: 12px;
    position: absolute;
    top: -7px;
    transform: rotate(135deg);
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    right: 15px;
    z-index: 1;
    background: var(--primary-mid-header-color);
    overflow: hidden;
    border-left: 1px solid #ebe9e9;
    border-bottom: 1px solid #ebe9e9;
}
.cartTrigger-triggerContainer-FZE:hover .cartTrigger-minishow-t-V{
    display: block;
}
/* html:not(.touch):not(.no-touch) .trigger:hover .minihide{
    opacity: 1;
    top: 45px;
    visibility: visible;
} */



body[class~='rtl_view'] .cartTrigger-minishow-t-V,

body[class~='rtl_view'] .cartTrigger-minihide-a3l{
    right: unset;
    left: 0;
}
body[class~='rtl_view'] .cartTrigger-minihide-a3l:before {
    right: 324px;
}

/*
 * Mobile-specific styles.
 */
@media (max-width: 960px) {
    /* .triggerContainer {
        display: none;
    } */

    .cartTrigger-link-mIb {
        display: flex;
    }
}
@media (max-width: 767px) {
    .cartTrigger-minihide-a3l {
        width: 290px;
    }
    body[class~='rtl_view'] .cartTrigger-minihide-a3l:before {
        right: 91%;
    }
    .cartTrigger-guest_account_title-8KZ{
        display: none;
    }
}

/* top header */
.header-top_header_wrap-R2c {
    background: var(--contacUs-bg-color);
    text-align: center;
    padding: 5px 10px;
    display: none;
}
.header-switcher_offer_Wrap-1V3 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.header-switchers_wrap-uKh {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}
.header-checkourdemos-6Fq{
    font-size: 12px;
    color: var(--primary-text-color);
    display: inline-flex;
    gap: 5px;
    align-items: center;
}
.header-checkourdemos-6Fq a {
    color: var(--primary-base-color);
    font-family: 'Medium-font';
    font-size: 12px;
    transition: 0.3s all;
}
.header-checkourdemos-6Fq a:hover{
    color: var(--primary-base-dark-color);
}
.header-offer_message_text-8B2 {
    margin: 0;
    color: var(--secondary-theme-gray-label);
    font-size: 12px;
}

/* middle header */
.header-middle_header-PRs{
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    top: -20px;
    background-color: var(--primary-light-color);
    
}
.header-middlestickyheader-P5e{
    position: fixed;
    top: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99999;
    box-shadow: var(--header-shadow);
    -webkit-box-shadow: var(--header-shadow);
    -moz-box-shadow: var(--header-shadow);
}
.header-root-BAU {
    background-color: var(--primary-mid-header-color);
    width: 100%;
    position: relative;
    z-index: 9;
    box-shadow: var(--header-shadow);
    -webkit-box-shadow: var(--header-shadow);
    -moz-box-shadow: var(--header-shadow);
}
.header-shadow_none-lRY {
    background: #000;
}

.header-open-nPd {
}

.header-closed-qbE {
}

.header-logo_wrap-NBX {
    display: inline-block;
    padding: 5px 0;
}
.header-logo_wrap-NBX .header-placeholder-dsO {
    display: none;
}
.header-logo-bM0 {
    height: 55px;
    -o-object-fit: cover;
       object-fit: cover
}

.header-primaryActions-ku8 {
    max-width: 20%;
    vertical-align: middle;
    display: none;
}
.header-secondaryActionswrap-IFM{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header-header_signin-kVu{
    padding-right: 20px;
    position: relative;
}
.header-header_signin-kVu:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 20px;
    background: var(--primary-border-color);
    transform: translateY(-50%);
}
.header-secondaryActions-U01 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    position: relative;
    gap: 5px;
    z-index: 99;
}
.header-language_switch_image-LqR {
    display: none !important;
}
.header-header_Actions_image-qSp {
    display: inline-flex;
    cursor: pointer;
    min-width: 40px;
    justify-content: center;
    /* min-height: 30px; */
    align-items: center;
}
.header-header_icons_span-li-{
    display: inline-flex;
}
.header-wishlist_image-UVh,
.header-user_icon_image-cMk {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}
.header-chiproot-PA5{
}
.header-guest_account_title-9lx{
}
.header-user_icon_image-cMk{
    max-width: -moz-max-content;
    max-width: max-content;
}
.header-wishlist_counter-cQn {
    /*right: 0;*/
    text-align: center;
}
.header-header_Actions_image-qSp svg{
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
}
/* .header_Actions_image:hover svg{
    stroke: var(--primary-dark-theme-color);
} */
/* [title="Cart"]:hover:before {
    content: '';
    position: fixed;
    width: 100%;
    height: calc(100% - 165px);
    background: rgba(0,0,0, 0.7);
    left: 0;
    bottom: 0;
    z-index: 1;
    transition: all .3s;
} */

.header-searchFallback-jMs {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
    padding: 0 1rem;
}

.header-input-SJ0 {
    /* composes: input from '../TextInput/textInput.css'; */
    max-width: 24rem;
}

.header-loader-IEy,
.header-loader-IEy:before,
.header-loader-IEy:after {
    --dot-size: 2em;
    --dot-font-size: 6px;
    --dot-shadow-offset: calc(-1 * var(--dot-size) + var(--dot-font-size));
    border-radius: 50%;
    width: var(--dot-size);
    height: var(--dot-size);
    animation: header-pulse-9v5 1.8s infinite ease-in-out;
    animation-fill-mode: both;
}

.header-loader-IEy {
    color: rgb(var(--venia-global-color-gray-dark));
    font-size: var(--dot-font-size);
    margin: var(--dot-shadow-offset) auto 0;
    position: relative;
    transform: translateZ(0);
    animation-delay: -0.16s;
}

.header-loader-IEy:before,
.header-loader-IEy:after {
    content: '';
    position: absolute;
    top: 0;
}

.header-loader-IEy:before {
    color: rgb(var(--venia-global-color-gray));
    left: -3.5em;
    animation-delay: -0.32s;
}

.header-loader-IEy:after {
    color: rgb(var(--venia-global-color-gray-darker));
    left: 3.5em;
}
.header-flashSaleCountDown-nzq {

}
.header-flashSaleCountDown_wrap-CMS {
    display: flex;
    padding: 10px 30px;
    color: var(--primary-light-color);
    justify-content: center;
    position: relative;
    font-size: 16px;
    font-family: 'Bold-font';
}
.header-countDown-NOW {
    color: var(--primary-light-color);
    font-family: 'Bold-font';
    font-size: 16px;
}
@keyframes header-pulse-9v5 {
    0%,
    80%,
    100% {
        box-shadow: 0 var(--dot-size) 0 -1.3em;
    }
    40% {
        box-shadow: 0 var(--dot-size) 0 0;
    }
}

/* rtl */
body[class~='rtl_view'] .header-logo-bM0 {
    right: 0;
}
body[class~='rtl_view'] .header-header_signin-kVu {
    padding-right: 0px;
    padding-left: 20px;
}
body[class~='rtl_view'] .header-header_signin-kVu:after {
    left: 0;
    right: unset;
}
@media (min-width: 768px) {
    .header-countDown-NOW {
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
    .header-secondaryActions-U01 {
        gap: 0px;
    }
    .header-logo_wrap-NBX{
        display: flex;
        align-items: center;
        width: 100%;
    }
    .header-header_signin-kVu {
        padding-right: 10px;
    }
}
@media screen and (min-width: 320px) and (max-width: 767px) {
    .header-primaryActions-ku8{
        display: block;
        margin-right: 10px;
    }
    body[class~='rtl_view'] .header-primaryActions-ku8{
        margin-right: 0px;
        margin-left: 10px;
    }
    .header-header_signin-kVu {
        padding-right: 10px;
    }
    .header-moblogo_wrap-h0c{
        display: flex;
        align-items: center;
    }
    .header-logo-bM0 {
        height: 65px;
        -o-object-fit: contain;
           object-fit: contain;
    }
    .header-header_signin-kVu:after {
        display: none;
    }
    .header-searchwrap-uhK,
    .header-offer_message_text-8B2,
    .header-top_header_wrap-R2c{
        display: none;
    }
    .header-logo_wrap_wrapper-eZV{
        display: flex;
        align-items: center;
    }
    .header-logo_wrap-NBX {
        padding: 0;
    }
    .header-secondaryActions-U01 {
        gap: 0px;
        justify-content: flex-end;
    }
    .header-header_Actions_image-qSp {
        min-width: 40px;
    }
    .header-secondaryActions-U01 > span {
        display: inline-flex;
        height: 100%;
    }
    .header-wishlist_counter-cQn {
        right: 3px;
        top: -3px;
        width: 12px;
        height: 12px;
        font-size: 10px;
        line-height: 12px;
    }
    .header-flashSaleCountDown_wrap-CMS {
        flex-direction: column;
        gap: 5px;
    }

}



.popUpCart-addtoCart_popup-4ey {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 9999999999;
}
.popUpCart-popup_wrapper-32D {
background-color: var(--primary-light-color);
width: 500px;
position: relative;
z-index: 400;
}
.popUpCart-popup_header-68g {
    text-align: right;
    padding: 10px;
}
.popUpCart-popup_message-Qlu {
    color: var(--primary-success-color);
    text-align: center;
    padding: 10px;
    margin: 0;
    font-size: 15px;
}
.popUpCart-popup_main-dXl {
display: flex;
}
.popUpCart-product_image-i0s,
.popUpCart-product_content-lmx {
 padding: 20px;
}
.popUpCart-product_image-i0s img {
    border: 1px solid var(--primary-border-color);
    padding: 10px;
    -o-object-fit: contain;
       object-fit: contain;
}
.popUpCart-product_content-lmx {
padding-left: 0;
}
.popUpCart-product_content-lmx p {
display: flex;
flex-wrap: wrap;
font-family: 'bold-font';
gap: 3px;
color: var(--primary-dark-color);
}
.popUpCart-product_name-Ykw{
        font-family: 'Regular-font' !important;
}
.popUpCart-price-t0S{
    font-family: 'medium-font';
}
.popUpCart-btn_viewcart-ibL {
    border: 1px solid var(--primary-dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    flex: 0 0 47%;
    min-width: 47%;
    min-height: 40px;
}
.popUpCart-btn_viewcart-ibL:hover,
.popUpCart-proceed_checkout-E0S:hover {
background-color: var(--primary-dark-color);
}
.popUpCart-btn_viewcart-ibL:hover span {
color: var(--primary-light-color);
}
.popUpCart-btn_viewcart-ibL span {
font-family: 'Regular-font';
color: var(--primary-dark-color);
font-size: 14px;
margin-top: 3px;
}
.popUpCart-close_popup-Yda {
    
}
.popUpCart-close_popup-Yda svg {
height: 20px;
}
.popUpCart-popup_footer-Hzt {
padding: 20px 20px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    /* flex-wrap: wrap; */
    gap: 20px;
    justify-content: center;
}
.popUpCart-proceed_checkout-E0S {
text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-dark-theme-color);
    min-height: 40px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    flex: 0 0 47%;
    min-width: 47%;
}
.popUpCart-proceed_checkout-E0S span {
color: var(--primary-light-color);
font-family: 'Regular-font';
font-size: 14px;
margin-top: 3px;
}
.popUpCart-proceed_checkout-E0S:hover {
background-color: var(--primary-base-color);
}
.popUpCart-overlay-7za:before {
content: '';
background-color: var(--primary-dark-color);
position: fixed;
top: 0;
left: 0;
z-index: 100;
width: 100%;
height: 100%;
opacity: .8;
 cursor: pointer;
}

body[class~='rtl_view'] .popUpCart-popup_header-68g {
    text-align: left;
}



@media (max-width: 767px) {
    .popUpCart-popup_wrapper-32D {
        width: calc(100% - 30px);
    }
    .popUpCart-product_image-i0s img {
    padding: 5px;
    width: 100px;
    height: 100px;
    -o-object-fit: contain;
       object-fit: contain;
    }
    .popUpCart-popup_footer-Hzt {
        flex-direction: column;
    }
    .popUpCart-btn_viewcart-ibL,
    .popUpCart-proceed_checkout-E0S {
        flex: 0 0 100%;
        min-width: 100%;
    }
}
.navTrigger-root-yIv {
}

@media screen and (min-width: 320px) and (max-width: 767px) {
    .navTrigger-root-yIv {
        vertical-align: middle;
        width: 48px;
        height: 48px;
        justify-content: flex-start;
    }
}

.searchTrigger-root-zRu {
    transition-property: color;
    transition-duration: 224ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.searchTrigger-open--tu {
    color: rgb(var(--venia-brand-color-1-400));
}

.searchTrigger-label-8Rj {
    display: none;
}
@media (max-width: 767px) {

}
@media (max-width: 360px) {
    .searchTrigger-root-zRu {
        padding-right: 0;
    }
}

@media (min-width: 641px) {
    .searchTrigger-root-zRu {
        width: auto;
    }

    .searchTrigger-label-8Rj {
        display: initial;
        margin-inline-start: 0.25rem;
    }
}

.accountTrigger-root-7Dr {
    align-items: center;
    display: grid;
        padding: 20px 0;
    /* The full height of the site header minus (box shadow height * 2). */
    /* height: calc(5rem - 8px); */
}
.accountTrigger-root-7Dr:hover .accountTrigger-dropdown_menu-Dib,
.accountTrigger-root-7Dr:hover ~ .accountTrigger-dropdown_menu-Dib,
.accountTrigger-dropdown_menu-Dib:hover {
    visibility: visible;
    top: 60px;
    opacity: 1;
}
.accountTrigger-root_open-9Kj {
    box-shadow: 0 4px rgb(var(--venia-brand-color-1-700));
}

.accountTrigger-trigger-YDx {

    /* height: 3rem; */
    /* min-width: 6rem; */
    z-index: 1;
}
.accountTrigger-dropdown_menu-Dib {
    position: absolute;
    top: 100px;
    right: -80px;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    -webkit-transition: all .3s;
    background: var(--primary-mid-header-color);
    box-shadow: 0 0 3px 0 rgb(0 0 0 / 10%);
    min-width: 200px;
    z-index: 11;
}
.accountTrigger-dropdown_menu-Dib:before {
    content: '';
    width: 12px;
    height: 12px;
    position: absolute;
    top: -6px;
    left: 50%;
    z-index: 1;
    background: var(--primary-mid-header-color);
    overflow: hidden;
    border-left: 1px solid var(--feature-section-border);
    border-top: 1px solid var(--feature-section-border);
    transform: translateX(-50%) rotate(45deg);
}
body[class~='rtl_view'] .accountTrigger-dropdown_menu-Dib:before {
    right: 50%;
    left: auto;
}
body[class~='rtl_view'] .accountTrigger-dropdown_menu-Dib{
    text-align: center;
    padding: 10px;
}

.accountTrigger-dropdown_signinbtn-yN7{
    background-color: var(--primary-dark-color);
    display: inline-block;
    padding: 10px;
    color: var(--primary-light-color);
    transition: all .3s;
    -webkit-transition: all .3s;
    width: calc(100% - 40px);
    text-align: center;
    border:1px solid var(--primary-dark-color);
}
.accountTrigger-dropdown_signinbtn-yN7:hover{
    border:1px solid var(--primary-dark-color);
    background-color: var(--primary-light-color);
    color: var(--primary-dark-color);
}
.accountTrigger-links-Ui1 {
    margin: 10px 0 0 0;
}
.accountTrigger-links-Ui1 li:not(:last-child) {
    border-bottom: none;
}
.accountTrigger-links-Ui1 li a {
    color: var(--primary-dark-color);
    display: block;
    font-size: 13px;
    padding: 0px 20px 15px 20px;
    transition: all .3s;
    -webkit-transition: all .3s;
    text-align: left;
}
body[class~='rtl_view'] .accountTrigger-links-Ui1 li a  {
    text-align: right;
}

.accountTrigger-links-Ui1 li a:hover{
    text-decoration: underline !important;
    text-shadow: 0px 0px 0px;
}
@media (max-width: 640px) {
}


.image-root-VhT {
    /*
     * For customization, we provide an empty root.
     * These styles will be applied to the image container.
     */
}

.image-container-u7w {
    position: relative;
}

.image-image-bAt {
    /*
     * For customization, we provide an empty image class. 
     * These styles will be applied directly to the image itself.
     */
}

.image-loaded-jTo {
    position: absolute;
    top: 0;
    left: 0;
    visibility: visible;
}

.image-notLoaded-f6h {
    visibility: hidden;
}

.image-placeholder-gO3 {
    background-color: rgb(var(--venia-global-color-gray));
    position: relative;
    top: 0;
    left: 0;
}

.image-placeholder_layoutOnly-fFR {
    background-color: unset;
}

.home-homepagefeatureblock-lLd {
    /* padding: 10px 0 0 0 !important; */
    padding: 0 0 0 0 !important;
}
.home-homepagefeatureblock-lLd [class='featureblock_inner'] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.home-homepagefeatureblock-lLd [class='feature_col'] {
    flex: 0 0 33%;
    min-width: 33%;
    background-color: var(--search-product-bg-color);
}
.home-homepagefeatureblock-lLd [class='feature_col_text'] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 10px;
    color: var(--primary-text-color);
    font-family: 'Medium-font';
    font-size: 18px;
    text-align: center;
    position: relative;
}
.home-homepagefeatureblock-lLd [class='feature_col_text'] img {
    margin: 0;
}
.home-homepagefeatureblock-lLd
    [class='feature_col']:last-child
    [class='feature_col_text']:after {
    display: none;
}

.home-slider_indicator-dRx {
    align-items: center;
    display: grid !important;
    grid-auto-flow: column;
    justify-content: center;
    margin: -35px 0;
}

.home-slider_indicator-dRx li {
    width: 10px !important;
    background: var(--primary-slider-nav-color) !important;
    border-radius: 50%;
    padding: 0 !important;
    height: 10px !important;
    background-clip: unset !important;
    transition: 0.9s ease-in-out;
    border: 0 !important;
}

.home-slider_indicator-dRx li:hover {
    filter: brightness(80%);
}

.home-slider_indicator-dRx li[class='active'] {
    background: var(--primary-dark-color) !important;
    min-width: 30px;
    border-radius: 7px !important;
}

.home-section_banner-2CR img {
    width: 100%;
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    margin: 0 auto;
}

div[class='mobilebanner_Wrap'] img {
    width: 100%;
}

div[class='carousel-item active'] div {
    max-width: unset;
}

.home-homepage_sections-33s {
    padding: 5px 0;
}

div[class='category-cat-wrap'] {
    position: relative;
    flex: 0 0 24%;
    box-shadow: var(--primary-box-shadow);
    min-width: 24%;
    overflow: hidden;
}

div[class='banner_content'],
span[class='banner_content'] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    justify-content: center;
    display: flex;
    height: 100%;
    color: var(--primary-light-color);
    transition: 0.9s ease-in-out;
    align-items: center;
}

div[class='banner_content']:before,
div[class='banner_content']:after,
span[class='banner_content']:before,
span[class='banner_content']:after {
    content: '';
    transition: opacity 0.9s, transform 0.9s;
    position: absolute;
    opacity: 0;
}

div[class='banner_content']:before,
span[class='banner_content']:before {
    top: 30px;
    right: 10px;
    bottom: 30px;
    left: 10px;
    border-top: 1px solid var(--primary-light-color);
    border-bottom: 1px solid var(--primary-light-color);
    transform: scale(0, 1);
    transform-origin: 0 0;
}

div[class='banner_content']:after,
span[class='banner_content']:after {
    top: 10px;
    right: 30px;
    bottom: 10px;
    left: 30px;
    border-right: 1px solid var(--primary-light-color);
    border-left: 1px solid var(--primary-light-color);
    transform: scale(1, 0);
    transform-origin: 100% 0;
}

div[class='category-cat-wrap']:hover div[class='banner_content']:before,
div[class='category-cat-wrap']:hover div[class='banner_content']:after,
div[class='ccategory_banner_section container']
    a[class='banner_image']:hover
    span[class='banner_content']:before,
div[class='ccategory_banner_section container']
    a[class='banner_image']:hover
    span[class='banner_content']:after {
    opacity: 1;
    transform: scale(1);
    z-index: 999;
}

div[class='ccategory_banner_section container']
    a[class='banner_image']:hover
    span[class='banner_content']
    img,
div[class='category-cat-wrap']:hover a[class='banner-img'] img {
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
}

div[class='col-lg-3 col-md-3 col-sm-12 col-12 midbanner'],
[class='ccategory_banner_section container']
    [class='col-lg-3 col-md-3 col-sm-6 col-6']:nth-child(2),
[class='ccategory_banner_section container']
    [class='col-lg-3 col-md-3 col-sm-6 col-6']:nth-child(4) {
    padding: 0;
    padding-left: 0;
}

div[class='cat_banner'] {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

div[class='cat_banner'] img,
div[class='category-grid'] img,
div[class='instasection'] img {
    margin: 0 !important;
    width: 100%;
    height: 100%;
    transition: 0.9s ease-in-out;
}

div[class='cat_banner-right'] {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

div[class='cat_banner-right'] img {
    margin-bottom: 0;
}

div[class='cat_banner-right']:last-child img {
    margin: 0;
}

a[class='banner-img'] {
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
}

div[class='cat_banner-left'],
div[class='cat_banner-right-inner'],
div[class='category-grid'] > div,
div[class='instagallerysectionimg'] {
    overflow: hidden;
    transition: 0.9s ease-in-out;
    flex: 1 1 0;
    position: relative;
}

div[class='cat_banner-left'] a,
div[class='cat_banner-right-inner'] a,
div[class='category-grid'] > div > a {
    transition: opacity 0.3s ease, transform 0.4s ease;
}

div[class='cat_banner-left']:hover a,
div[class='cat_banner-right-inner']:hover a,
div[class='category-grid'] > div:hover a,
div[class='category-cat-wrap'] a[class='banner-img']:hover img,
div[class='instagallerysectionimg']:hover img {
    transform: scale(1.091);
}

.home-our_cat_section-jL5 div[class='banner_content'] a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
}

div[class='category-grid'] {
    display: flex;
    gap: 15px;
    padding-bottom: 15px;
}

/* category banner block */
div[class='ccategory_banner_section container'] a[class='banner_image'] {
    overflow: hidden;
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
}

div[class='ccategory_banner_section container'] span[class='banner_content'] {
    width: 100%;
    height: 100%;
    transition: 0.9s ease-in-out;
    align-items: center;
    position: relative;
}

div[class='col-2banner'] {
    position: relative;
}

div[class='ccategory_banner_section container'] a[class='banner_image'] img {
    width: 100%;
    height: 100%;
    margin: 0;
    -o-object-fit: cover;
       object-fit: cover;
    transition: 0.9s ease-in-out;
}

div[class='ccategory_banner_section container'] span[class='image_label'],
div[class='category-cat-wrap'] div[class='banner_content'] div {
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--primary-light-color);
    padding: 5px 20px;
    transform: translate(-50%, -50%);
    color: var(--primary-dark-color);
    font-family: 'medium-font';
}

div[class='ccategory_banner_section container'] span[class='image_label_text'] {
    color: var(--primary-dark-color);
    font-family: 'medium-font';
}

div[class='ccategory_banner_section container']
    div[class='col-2banner']:first-child {
    margin-bottom: 15px;
}

/* products slider */
.home-homepage_section_heading-VY4,
.home-homepage_section_heading-VY4 h3,
h3[class='homepage_section_heading'],
[class*='post-list-wrapper'] h3[class='title-blog'],
div[class='container cms-page'] h1,
div[class='container cms-page'] h2 {
    font-size: 20px !important;
    color: var(--primary-dark-color);
    position: relative;
    font-family: 'Medium-font';
    text-align: left;
    /* margin: 0px 0 15px 0 !important; */
}

div[class='container cms-page'] h1,
div[class='container cms-page'] h2 {
    padding-top: 30px !important;
}

p[class='cms_content'],
p[class='homepage_section_headingcont'] {
    text-align: left;
    /* margin-bottom: 20px !important; */
    color: var(--primary-text-color);
}

[class*='homesection_banner'] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
[class='short_cat_banner cat_banner_inner'] {
    flex: 0 0 33.3%;
    max-width: calc(33.3% - 7px);
}
[class='banner_image_details_wrap'] img {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    width: 100%;
    margin: 0 !important;
}
[class='short_cat_banner cat_banner_inner']:hover
    [class='banner_image_details_wrap']
    img {
    transform: scale(1.02);
    -moz-transform: scale(1.02);
    -webkit-transform: scale(1.02);
}
[class='banner_image_details_wrap'] > a {
    display: block;
    overflow: hidden;
}
h3[class='cat_name'] {
    color: var(--primary-dark-color);
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    font-size: 15px !important;
    font-family: 'Medium-font';
    margin-bottom: 5px !important;
    text-align: left;
}
a[class='cat_link'],
a[class='cat_link']:hover {
    color: var(--primary-base-color);
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    text-align: left;
    display: block;
}
[class='banner_image_details_wrap']:hover h3[class='cat_name'] {
    color: var(--primary-dark-color);
}

div[class='cms_banner'] img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.home-error_msg-g8y {
    padding: 10px;
    color: var(--primary-text-color);
    border: 1px solid var(--primary-text-color);
    font-size: 14px;
    margin-top: 25px;
}

.home-error_msg-g8y svg {
    margin-right: 10px;
}

.home-error_msg-g8y span {
    color: var(--primary-text-color);
}

.home-h_products-UOv {
    background: var(--primary-light-section);
}

.home-products_grid_item--NN,
.home-products_out_of_stock-heA {
    transition: 0.9s ease-in-out;
    background: var(--primary-light-color);
}
.home-product_label-HiM {
    position: absolute;
    top: 10px;
    left: 10px;
}

.home-sale-cl3,
.home-out_of_stock-L79 {
    padding: 3px 5px 3px;
    color: var(--primary-light-color);
    border-radius: 0px;
    font-size: 10px;
}

.home-sale-cl3 span,
.home-out_of_stock-L79 {
    color: var(--primary-light-color);
    font-size: 10px;
}

.home-sale-cl3 {
    background: var(--primary-dark-theme-color);
}

.home-out_of_stock-L79 {
    background: var(--secondary-theme-gray-label);
}

.home-products_out_of_stock-heA:hover {
    box-shadow: var(--primary-box-shadow);
    -webkit-box-shadow: var(--primary-box-shadow);
}

.home-noo_product_inner-tHv {
    background: var(--primary-light-color);
    overflow: hidden;
    position: relative;
}

.home-noo_product_image-bwO {
    position: relative;
    overflow: hidden;
    padding: 10px;
}

.home-noo_product_image-bwO a {
    display: block;
    position: relative;
    overflow: hidden;
}

.home-review_stars_wrapper-CCZ {
    width: -moz-fit-content;
    width: fit-content;
    margin: 10px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.home-review_count-JM0 {
    font-size: 12px;
    color: var(--primary-dark-color);
    display: inline-flex;
    align-items: center;
}
.home-product_actions-IOG {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    transition: 0.9s ease-in-out;
    flex: 1 1 0;
    min-width: 45%;
}

.home-noo_product_inner-tHv a > img,
.home-noo_product_inner-tHv a > div img {
    transition: opacity 0.5s, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
    -webkit-transition: opacity 0.5s,
        transform 2s cubic-bezier(0, 0, 0.44, 1.18),
        -webkit-transform 2s cubic-bezier(0, 0, 0.44, 1.18);
    -moz-transition: opacity 0.5s, transform 2s cubic-bezier(0, 0, 0.44, 1.18),
        -webkit-transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}

/* .noo_product_inner:hover a>img,
.noo_product_inner:hover a>div img {
    transform: scale(1.091);
} */

.home-noo_product_image-bwO img {
    max-height: 230px;
    min-height: 230px;
    -o-object-fit: contain;
       object-fit: contain;
    color: var(--text-colo-grey-light);
}

.home-wishlist_icon_wrap--jc {
    cursor: pointer;
    transition: 0.3s all;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 100%;
}
.home-wishlist_icon_wrap--jc svg {
    transition: 0.3s all;
}
.home-wishlist_icon_wrap--jc:hover svg,
.home-wishlist_icon_wrap--jc:hover span {
    color: var(--primary-dark-color) !important;
    stroke: var(--primary-dark-color) !important;
    fill: var(--primary-dark-color);
}

.home-wishlist_icon-PKZ {
}

.home-add_to_cart_Wrap-aXG {
    display: inline-flex;
    align-items: center;
    position: relative;
    width: 100%;
    justify-content: space-between;
    padding: 10px 10px;
    gap: 10px;
}

.home-add_to_cart_Wrap-aXG > a {
    margin: 0;
}

.home-add_to_cart_Wrap-aXG > form {
    flex: 1 1 0;
    min-width: 40%;
}

.home-add_to_cart_btn-9tg {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--primary-base-color);
    padding: 7px 15px;
    transition: 0.3s ease-in-out;
    width: 100%;
}

.home-add_to_cart_btn-9tg svg {
    stroke: var(--primary-base-color);
}

.home-add_to_cart_btn-9tg span {
    width: -moz-fit-content;
    width: fit-content;
    height: 100%;
    color: var(--primary-base-color);
}

.home-add_to_cart_btn-9tg:hover {
    background-color: var(--primary-base-dark-color);
}

.home-add_to_cart_btn-9tg:hover span,
.home-add_to_cart_btn-9tg:hover svg {
    color: var(--primary-light-color);
    stroke: var(--primary-light-color);
}

.home-add_to_cart_Wrap-aXG button[class='compare-add_to_compare-ggx'] span {
    background: unset !important;
    width: unset;
    height: unset;
    line-height: 10px;
}

.home-wishlustlable-5q9 {
    white-space: nowrap;
    color: var(--primary-dark-color);
    font-size: 13px;
}

.home-noo_details_wrapper-Jee {
    background: var(--primary-light-color);
    padding: 10px;
}
.home-price_wishlist_wrap-k6E {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.home-vendor_price_wrap-ozP {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0;
    justify-content: center;
}

.home-vendor_name-A8q {
    font-size: 12px;
    color: var(--primary-text-color);
    display: inline-block;
    flex: 0 0 50%;
    min-width: 50%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(20px);
}

.home-price--G8 {
    display: inline-flex;
    gap: 5px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.home-price--G8 > section {
    margin: 0;
}

.home-product_name-HLA {
    margin: 0;
    color: var(--text-colo-grey-light);
    transition: 0.3s all;
}

.home-vendor_price_wrap-ozP p:not(:last-child) span,
.home-vendor_price_wrap-ozP span {
    color: var(--primary-dark-color) !important;
    font-size: 14px !important;
    font-family: 'Medium-font' !important;
}

.home-vendor_price_wrap-ozP
    section
    p[class='productFullDetail-productPrice-1Js priceRange-regularprice-3np']
    span {
    font-size: 13px !important;
    text-decoration: line-through;
}

.home-vendor_price_wrap-ozP section p::after {
    content: unset;
}

.home-product_name-HLA a,
.home-product_name-HLA a span {
    font-size: 13px;
    color: var(--text-colo-grey-light);
    transition: 0.3s all;
    line-height: 21px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 38px;
}

div[class='position-relative'] .home-add_to_cart_btn-9tg {
    margin: 0;
}

.home-product_name-HLA:hover > a,
.home-product_name-HLA:hover > a span {
    color: var(--primary-dark-theme-color);
}

.home-price_wrapp-zYO {
}

.home-price_wrapp-zYO .home-old-jg- {
    color: var(--text-colo-grey-light);
    text-decoration: line-through;
}

.home-colors_stars_wrap-kby {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 5px 0;
}

.home-colors_wrap-Rft {
    display: inline-flex;
    align-items: center;
}

.home-colors_wrap-Rft div {
    display: inline-flex;
    margin: 10px 0 0 0;
}

.home-colors_inner-gCc {
    display: inline-flex;
    background: #5b8af9;
    width: 12px;
    height: 12px;
    margin-right: 10px;
    border-radius: 50%;
    text-indent: -9999px;
    overflow: hidden;
    text-align: left;
    box-shadow: inset 0 0 10px #00000012;
    outline: 1px solid var(--swatchOutlineColor);
}

.home-extra_colors-WTt {
    font-size: 12px;
    color: var(--primary-text-color);
    cursor: pointer;
    line-height: 14px;
}

.home-stars_wap-5iB {
    position: relative;
}

.home-not_reviewed-dul {
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 0px;
    display: block;
    overflow: hidden;
    color: var(--primary-text-color);
    white-space: nowrap;
    line-height: 13px;
}

.home-reviewed-9-z {
    display: block;
    white-space: nowrap;
    color: var(--primary-border-color);
    line-height: 13px;
}

.home-reviewed-9-z svg,
.home-not_reviewed-dul svg {
    font-size: 14px;
    margin-right: 2px;
}

.home-reviewed-9-z,
.home-not_reviewed-dul {
    display: flex;
    align-items: center;
}

.home-owl_thme_design-Vgh {
    z-index: 0 !important;
    margin: 10px 0 0 0;
}

.home-h_products-UOv div[class='owl-stage'] {
    display: flex;
}

.home-owl_thme_design-Vgh div[class*='owl-item'] {
    background: var(--primary-light-color);
}

/* list viw */
div[class*='true'] .home-noo_product_inner-tHv {
    display: flex;
}

div[class*='true'] .home-noo_product_image-bwO {
    flex: 0 0 150px;
    max-width: 150px;
}

div[class*='true'] .home-noo_details_wrapper-Jee {
    text-align: left;
    padding: 10px;
    flex: 0 0 calc(100% - 150px);
    min-width: calc(100% - 150px);
}

div[class*='true'] .home-noo_product_image-bwO img {
    -o-object-fit: contain;
       object-fit: contain;
    max-height: unset;
    min-height: 150px;
}

div[class*='true'] .home-product_name-HLA {
    padding: 0;
    min-height: unset;
    margin-bottom: 10px;
}

div[class*='true'] .home-price--G8 {
    margin: 10px 0;
    justify-content: flex-start;
}

div[class*='true'] .home-review_stars_wrapper-CCZ {
    margin: unset;
}

div[class*='true'] .home-add_to_cart_Wrap-aXG {
    justify-content: flex-start;
    gap: 15px;
    padding: 10px 0px;
}

div[class*='true'] .home-colors_stars_wrap-kby {
    justify-content: flex-start;
}

div[class*='true'] .home-add_to_cart_Wrap-aXG > form {
    flex: initial;
    max-width: 50%;
    min-width: -moz-fit-content;
    min-width: fit-content;
}

div[class*='true'] .home-product_actions-IOG {
    display: inline-flex;
    flex: 0 0 75%;
    max-width: -moz-fit-content;
    max-width: fit-content;
}

div[class*='true'] .home-product_name-HLA a,
div[class*='true'] .home-product_name-HLA a span {
    font-family: 'Medium-font';
    text-align: left;
}

/*owl navs*/
[class='owl-nav'] {
    height: 0;
    margin-top: 0 !important;
}
[class*='owl-nav'] [class*='owl-prev'],
[class*='owl-nav'] [class*='owl-next'] {
    background: transparent !important;
}
[class*='owl-nav'][class*='disabled'],
[class*='owl-nav'] [class*='owl-prev'][class*='disabled'],
[class*='owl-nav'] [class*='owl-next'][class*='disabled'] {
    display: none !important;
}
[class='owl-prev'] span {
    background: url(/icon_arrow_left-j9W.png) no-repeat center;
    left: -35px;
}
[class='owl-next'] span {
    background: url(/icon_arrow_right-n5b.png) no-repeat
        center;
    right: -35px;
}
[class='owl-next'] span,
[class='owl-prev'] span,
[class='owl-next disabled'] span,
[class='owl-prev disabled'] span {
    content: '';
    background-size: 60px;
    top: 50%;
    height: 55px;
    width: 55px;
    position: absolute;
    transition: 0.9s ease-in-out;
    transform: translateY(-50px);
    text-indent: -99999px;
}
[class='owl-prev']:hover,
[class='owl-next']:hover {
    background-color: unset !important;
}

.home-h_products-UOv div[class='owl-dots'] {
    position: relative;
}

.home-h_products-UOv [class='owl-dot'] span {
    background: rgb(84 84 84 / 50%) !important;
    transition: 0.9s ease-in-out;
}

.home-h_products-UOv [class='owl-dot active'] span {
    background-color: var(--primary-base-color) !important;
    width: 20px !important;
}

/* three blocks section */
div[class='three_blocks_banner_inner'] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

div[class='three_blocks_inner'] {
    flex: 0 0 33.3%;
    min-width: 33.3;
    padding: 5px;
}

div[class='three_blocks_inner1'] {
    position: relative;
}

div[class='three_blocks_image'] {
    transition: 0.3s all;
    height: 420px;
    position: relative;
}

div[class='three_blocks_inner1']:hover div[class='three_blocks_image']::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: #0200008f;
    width: 100%;
    height: 100%;
}

div[class='three_blocks_image'] img {
    margin: 0;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
}

div[class='three_blocks_btn_wrap'] {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    margin-top: -21px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all;
}

div[class='three_blocks_inner1']:hover div[class='three_blocks_btn_wrap'] {
    opacity: 1;
    visibility: visible;
}

button[class='three_block_btn'] {
    width: 100%;
    background: var(--primary-light-color);
    text-align: center;
    color: var(--primary-dark-color);
    font-size: 15px;
    padding: 10px;
}

.home-feature_block-6GE {
    padding: 0 0 40px 0;
    margin: 0;
}

div[class='featured-section'] {
    display: flex;
    justify-content: space-between;
}

div[class='icon-service'] a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

div[class='icon-service'] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    justify-content: center;
}

div[class='icon-service'] iframe {
    width: auto;
    margin: 0 auto;
}

div[class='icon-service'] [class='icon'] {
    min-width: 58px;
    min-height: 58px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: 0.3s all;
}

div[class='icon-service']:hover [class='icon'] {
    transform: rotate(360deg);
}

/*div[class="icon-service"] [class="icon"]:before {
  content: "";
  width: 100%;
  height: 100%;
  background:var(--secondary-mobile-newsletter-color);
  position: absolute;
  border-radius: 100%;
  z-index: 1;
  }*/
div[class='icon-service'] [class='icon'] img {
    position: relative;
    z-index: 1;
    margin: 0;
}

div[class='icon-service'] div[class='text'] h6 {
    color: var(--primary-dark-color);
    margin: 0;
    font-weight: normal;
}

/* cms page design */
div[class='container cms-page'] {
    padding: 0px 15px 30px 15px;
    margin-bottom: 50px;
}

div[class='richContent-root-11l'] p {
    /* line-height: 24px; */
}

div[class='CMSbreadcrumbs'] ul[class='items'] {
    padding: 14px 0 13px;
    margin-bottom: 25px;
    margin-top: 0;
}

div[class='cms_banner'] {
    margin: 50px 0;
}

div[class='CMSbreadcrumbs'] ul[class='items'] li {
    color: var(--text-colo-grey-light);
    line-height: 1.2 !important;
    position: relative;
    list-style-type: none;
    display: inline-block;
    padding: 0;
}

div[class='CMSbreadcrumbs'] ul[class='items'] li span,
div[class='CMSbreadcrumbs'] ul[class='items'] li a {
    color: var(--text-colo-grey-light) !important;
    font-size: 13px;
    max-width: 260px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    padding-left: 16px;
}

div[class='CMSbreadcrumbs'] ul[class='items'] li a {
    padding-left: 0;
}

div[class='CMSbreadcrumbs'] ul[class='items'] li a:after {
    content: '';
    width: 8px;
    height: 10px;
    background-image: url(/breadcrumbs-arr-47V.png);
    display: block;
    background-size: 5px;
    background-repeat: no-repeat;
    right: -15px;
    position: absolute;
    top: 5px;
}

div[class='CMSbreadcrumbs'] ul[class='items'] li a:hover {
    color: var(--primary-dark-theme-color) !important;
}

div[class='container cms-page'] h1[class='cms_mainheading']:before {
    top: -30px;
}

div[class='container cms-page'] a,
div[class='container cms-page'] a:hover {
    color: var(--primary-base-color);
}

div[class='container cms-page'] ul,
div[class='container cms-page'] ol {
    padding-left: 15px;
}

div[class='container cms-page'] h3 {
    margin: 20px 0 15px;
    color: var(--primary-dark-color);
    text-align: center;
}

div[class='container cms-page'] ol[class='num'] li {
    line-height: 24px;
    padding: 3px 0 3px 8px;
}

div[class='container cms-page'] img {
    margin: 0;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

/* / store location page / */
div[class='contact-info'] {
    text-align: center;
}

div[class='row contact21'] {
    margin-bottom: 30px;
}

p[class='contact21_title'] {
    text-align: left;
    margin: 0 0 10px;
    color: var(--primary-text-color);
    font-size: 15px;
}

p[class='contact21_content'] {
    text-align: left;
    font-size: 16px;
    margin: 0 0 15px;
    color: var(--primary-text-color);
}
/*instagram section*/
.home-followinstasection-2zc {
    padding-top: 20px;
    margin-bottom: 0;
    padding-bottom: 0;
}

div[class='insta_gallery'] {
    display: grid;
    grid-area: instagallerysectionimg;
    grid-template-columns: repeat(6, 1fr);
}

/* rtl */
body[class~='rtl_view'] .home-price--G8 {
    margin-left: 10px;
    margin-right: 0;
}
body[class~='rtl_view'] .home-homepagefeatureblock-lLd [class='feature_col_text']:after {
    left: 0;
    right: unset;
}
body[class~='rtl_view'] div[class*='true'] .home-price--G8 {
    width: 100%;
    justify-content: flex-start;
}

body[class~='rtl_view'] div[class*='true'] .home-product_name-HLA {
    text-align: right;
}

body[class~='rtl_view'] .home-owl_thme_design-Vgh {
    direction: ltr;
}

body[class~='rtl_view'] div[class='owl-stage'] {
    direction: rtl;
}

body[class~='rtl_view'] .home-not_reviewed-dul {
    left: unset;
    right: 0px;
}
body[class~='rtl_view'] div[class*='true'] .home-product_name-HLA a,
body[class~='rtl_view'] div[class*='true'] .home-product_name-HLA a span {
    text-align: right;
}

/* Blog Css */
div[class*='post-list-wrapper'] {
    display: none;
}
.home-logo_wrapper-E2P {
    position: relative;
    width: 100%;
    height: calc(100vh - 157px);
    background-color: #f5f5f5;
}
.home-logoLoader-VhE {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transform-style: preserve-3d;
    animation: home-flip-ZLF 2s infinite;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
    div[class*='true'] .home-add_to_cart_Wrap-aXG > form {
        flex: 0 0 40%;
        max-width: 40%;
    }
    .home-feature_block-6GE {
        padding: 0 0 20px 0;
    }
    [class='owl-next'] span {
        right: 5px;
    }
    [class='owl-prev'] span {
        left: 5px;
    }
    div[class='container cms-page'] h1[class='cms_mainheading'] {
        text-align: center;
        font-size: 30px;
        margin: 80px 0 70px;
    }
    .home-add_to_cart_Wrap-aXG > form {
        min-width: 60%;
    }
    .home-wishlustlable-5q9 {
        display: none;
    }
    .home-product_actions-IOG {
        flex: 1 1 0;
        justify-content: end;
        max-width: unset;
        min-width: unset;
        width: 100%;
    }
    .home-section_banner-2CR img {
        height: 290px;
        -o-object-fit: unset;
           object-fit: unset;
        min-width: unset;
    }
    .home-add_to_cart_btn-9tg {
        width: 100%;
    }
    div[class='cat_banner'] {
        gap: 9px;
    }
    div[class='mid-banner_image_Wrap'] img {
        -o-object-fit: contain;
           object-fit: contain;
    }
}
@media (max-width: 1199px) {
    div[class='short_cat_banner cat_banner_inner'] {
        flex: 0 0 50%;
        max-width: calc(50% - 6px);
    }
}
@media screen and (min-width: 320px) and (max-width: 767px) {
    .home-price_wishlist_wrap-k6E {
        flex-wrap: nowrap;
    }
    .home-homepagefeatureblock-lLd [class='feature_col_text']:after {
        display: none;
    }
    .home-homepagefeatureblock-lLd [class='feature_col_text'] {
        font-size: 10px;
        /* gap: 4px; */
    }
    .home-homepagefeatureblock-lLd [class='feature_col_text'] img {
        margin: 0;
    }
    .home-reviewed-9-z svg,
    .home-not_reviewed-dul svg {
        font-size: 11px;
    }
    .home-feature_block-6GE {
        padding: 0 0 20px 0;
    }
    .home-feature_block-6GE {
        padding: 0 0 20px 0;
    }
    .home-featurebanner_section-V6i {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .home-featurebanner_section-V6i img {
        margin: 0 !important;
    }
    [class='ccategory_banner_section container']
        [class='col-lg-3 col-md-3 col-sm-6 col-6']:nth-child(2),
    [class='ccategory_banner_section container']
        [class='col-lg-3 col-md-3 col-sm-6 col-6']:nth-child(4) {
        padding-right: 15px;
    }
    div[class='col-lg-3 col-md-3 col-sm-12 col-12 midbanner'] {
        padding: 0 15px;
    }

    .home-noo_product_image-bwO img {
        max-height: 150px;
        min-height: 150px;
    }

    .home-add_to_cart_Wrap-aXG {
        padding: 5px 10px;
    }

    div[class='single_footer_widget contact-details'] {
        text-align: center;
    }

    div[class='ccategory_banner_section container']
        span[class='banner_content'] {
        display: inline-block;
    }

    .home-our_cat_section-jL5
        div[class='ccategory_banner_section container']
        a[class='banner_image']
        img {
        min-height: 200px;
    }
    div[class='ccategory_banner_section container']
        a[class='banner_image']
        [class='banner_content'] {
        padding-bottom: 15px;
    }
    div[class='ccategory_banner_section container']
        div[class='col-2banner']:first-child {
        margin-bottom: 0px;
    }

    div[class='category-cat-wrap'] {
        flex: 0 0 47%;
        min-width: 47%;
    }

    .home-feature_block-6GE {
        margin: 0 !important;
    }

    div[class='banner_content']:after,
    span[class='banner_content']:after {
        top: 10px;
        right: 20px;
        bottom: 10px;
        left: 20px;
    }

    div[class='banner_content']:before,
    span[class='banner_content']:before {
        top: 20px;
        right: 10px;
        bottom: 20px;
        left: 10px;
    }

    .home-product_actions-IOG {
        flex: 1 1 0;
        justify-content: end;
        max-width: unset;
        min-width: unset;
    }

    .home-product_actions-IOG .home-add_to_cart_btn-9tg {
        padding: 5px 10px;
        width: -moz-fit-content;
        width: fit-content;
    }

    .home-contact_page_wrapper-hA4 .home-contact_form-w5P {
        padding: 15px;
        background: #fff;
    }

    .home-homepage_section_heading-VY4,
    .home-homepage_section_heading-VY4 h3,
    [class*='post-list-wrapper'] h3[class='title-blog'],
    div[class='container cms-page'] h1,
    div[class='container cms-page'] h2 {
        font-size: 26px;
        /* margin: 10px 0; */
        margin: 0;
    }

    div[class='container cms-page'] h1[class='cms_mainheading'] {
        margin: 70px 0 15px;
        font-size: 24px;
    }

    .home-owl_thme_design-Vgh:hover [class='owl-prev'] span {
        left: -5px !important;
    }

    .home-owl_thme_design-Vgh:hover [class='owl-next'] span {
        right: -5px !important;
    }

    /* / cms / */
    div[class='container cms-page'] {
        padding: 0 15px 15px 15px;
    }

    div[class='container cms-page'] h1 {
        padding-bottom: 10px;
    }

    div[class='howtoorder width-800'] {
        width: 100%;
    }

    div[class='howtoorder-accordian'] div[class='card-header'] button:after {
        top: 8px;
    }

    div[class='howtoorder-accordian']
        div[class='card-header']
        button[aria-expanded='true']:after {
        top: 3px;
    }

    div[class='faq'] h3[class='faq-title'],
    div[class='container cms-page'] h3 {
        font-size: 20px;
    }

    div[class='howtoorder-accordian'] div[class='card-header'] button {
        font-size: 14px;
        line-height: 1.4;
        padding: 15px 35px 10px 20px;
    }

    p[class='contact21_content'] {
        margin-bottom: 30px !important;
    }

    div[class='CMSbreadcrumbs'] ul[class='items'] {
        padding-top: 5px;
    }

    div[class='CMSbreadcrumbs'] ul[class='items'] li a,
    div[class='CMSbreadcrumbs'] ul[class='items'] li span {
        font-size: 12px;
    }

    div[class='CMSbreadcrumbs'] ul[class='items'] li a:after {
        background-size: 4px;
        top: 8px;
        filter: brightness(0.5);
    }

    .home-h_products-UOv .home-h_products_column-1Pw {
        overflow: hidden;
        padding: 0;
    }

    .home-noo_product_image-bwO a {
        margin: 0px 0;
    }

    .home-sale-cl3 span,
    .home-out_of_stock-L79 span,
    .home-wishlustlable-5q9 {
        display: none;
    }

    .home-sale-cl3,
    .home-out_of_stock-L79 {
        padding: 0.347rem 0.666rem;
        font-size: 11px;
    }

    .home-owl_thme_design-Vgh {
        overflow: hidden;
    }

    div[class='large_cat_banner cat_banner_inner'] {
        padding: 15px 5px 0 5px;
    }

    a[class='cat_link'] {
        color: var(--primary-base-color);
    }

    a[class='cat_link']::after,
    a[class='cat_link']::before {
        background-color: var(--primary-base-color);
    }

    h3[class='cat_name'] {
        font-size: 14px !important;
    }

    .home-noo_details_wrapper-Jee {
        bottom: 0;
    }

    .home-product_name-HLA {
        margin: 2px 0 6px 0;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        min-height: 40px;
        -webkit-box-orient: vertical;
    }

    .home-product_name-HLA a,
    .home-product_name-HLA a span {
        font-size: 13px;
        line-height: 18px;
    }

    .home-vendor_name-A8q {
        font-size: 11px !important;
    }

    .home-stars_wap-5iB {
        margin-top: 5px;
        flex: 0 0 100%;
        min-width: 100%;
    }

    div[class='three_blocks_inner'] {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 0;
        margin-bottom: 15px;
    }

    div[class='three_blocks_image'] {
        height: 350px;
    }

    div[class='three_blocks_btn_wrap'] {
        top: 94%;
        opacity: 1;
        visibility: visible;
    }

    button[class='three_block_btn'] {
        background: var(--primary-dark-color);
        color: var(--primary-light-color);
    }

    div[class='features_items'] {
        margin: 15px 0;
        display: flex;
        align-items: center;
        text-align: left;
    }

    div[class='content_f'] {
        padding-left: 20px;
        margin-top: 0;
    }

    .home-wishlist_icon_wrap--jc {
        opacity: 1;
        right: 10px;
    }
    div[class='banner_image_details_wrap'],
    div[class='mid-banner_image_Wrap'] img,
    .home-products_grid_item--NN {
        height: auto;
        width: 100%;
    }

    .home-products_grid_item--NN {
        min-width: 100%;
        max-width: 100%;
    }

    div[class='short_cat_banner cat_banner_inner'] img {
        height: auto;
        width: 100%;
    }

    .home-h_products-UOv {
        padding: 20px 15px;
        margin: 0;
    }

    .home-mid_banner_sec_wrap-zJv {
        margin: 0;
        padding: 0;
    }

    .home-colors_inner-gCc {
        width: 15px;
        height: 15px;
        margin-right: 10px;
    }

    div[class='icon-service'] a {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    div[class='featured-section'] {
        align-items: baseline;
        flex-wrap: wrap;
        row-gap: 10px;
    }

    div[class='icon-service'] div[class='text'] h6 {
        font-size: 11px;
        padding: 0;
        text-align: center;
    }

    div[class='featured-section'] div[class='icon-service'] {
        flex: 0 0 50%;
        padding: 5px !important;
        flex-direction: column;
        gap: 10px;
    }

    div[class='featured-section']
        div[class='icon-service']:hover
        [class='icon'] {
        transform: unset;
    }

    div[class='category-grid'] {
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
    }

    div[class='cat_banner-left'],
    div[class='cat_banner-right-inner'],
    div[class='category-grid'] > div {
        flex: 1 1 auto;
    }
    .home-logoLoader-VhE {
        position: absolute;
        left: 40%;
        top: 40%;
        z-index: 1;
        transform-style: preserve-3d;
        animation: home-flip-ZLF 2s infinite;
    }
    div[class='cat_banner-left'] img {
        margin: 0;
    }
}

@media screen and (min-width: 320px) and (max-width: 576px) {
    .home-section_banner-2CR img {
        height: 145px;
        -o-object-fit: unset;
           object-fit: unset;
        min-width: unset;
    }
    div[class*='true'] .home-noo_product_image-bwO {
        flex: 0 0 120px;
        max-width: 120px;
    }
    div[class*='true'] .home-noo_details_wrapper-Jee {
        flex: 0 0 calc(100% - 120px);
        min-width: calc(100% - 120px);
    }
    div[class*='true'] .home-add_to_cart_Wrap-aXG > form {
        max-width: 60%;
        min-width: 60%;
    }
}

@media screen and (min-width: 371px) and (max-width: 450px) {
    .home-add_to_cart_Wrap-aXG > form {
        min-width: 65%;
    }
    div[class*='true'] .home-add_to_cart_Wrap-aXG > form {
        max-width: 60%;
        min-width: 60%;
    }
}
@media screen and (min-width: 320px) and (max-width: 375px) {
    .home-add_to_cart_Wrap-aXG > form {
        min-width: 58%;
    }
}
@keyframes home-flip-ZLF {
    0%,
    100% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   Shein-style Product Card
   ======================================== */

/* Card container */
.item-cardRoot-1Bm {
    background: var(--primary-light-color);
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Make every slider slide stretch so all cards match the tallest */
.owl-carousel .owl-stage {
    display: flex;
}
.owl-carousel .owl-item {
    display: flex;
    flex: 1 0 auto;
}
.owl-carousel .owl-item > .item {
    display: flex;
    width: 100%;
}
.owl-carousel .owl-item > .item > .item-cardRoot-1Bm {
    flex: 1 1 auto;
}

/* ---- IMAGE AREA ---- */
.item-imageArea-Zn1 {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: linear-gradient(90deg, #efefef 25%, #e4e4e4 50%, #efefef 75%);
    background-size: 200% 100%;
    animation: item-shimmer-4DV 1.4s infinite linear;
}

@keyframes item-shimmer-4DV {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.item-imageLink-kq- {
    display: block;
    width: 100%;
    height: 100%;
}

.item-imageContainer-teU {
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* no padding — full bleed */
}

.item-image-dX0 {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Keeps image invisible while loading — shimmer shows through the transparent image */
.item-imageLoading-xtu {
    opacity: 0;
}

/* Hover image crossfade */
.item-imgHidden-BCF {
    opacity: 0;
}
.item-imgAbsolute-aA8 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: none;
}
.item-imgVisible-Wl2 {
    opacity: 1;
}

.item-imageLoaded-jug {
    opacity: 1;
}
.item-imageNotLoaded-6cK {
    opacity: 0;
}

/* ---- BADGES (top-left) ---- */
.item-badge-5kz {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
}
.item-badgeSale-9rG {
    display: inline-block;
    padding: 2px 6px;
    background: var(--primary-dark-theme-color, #e53935);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 2px;
    line-height: 1.3;
}
.item-badgeOutOfStock-cy- {
    display: inline-block;
    padding: 2px 6px;
    background: var(--secondary-theme-gray-label, #888);
    color: #fff;
    font-size: 11px;
    border-radius: 2px;
    line-height: 1.3;
}

/* ---- COLOR SWATCHES — bottom-right, vertical column, always visible ---- */
.item-colorSwatchColumn--HN {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 3;
}

.item-colorDot-D1t {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 1.5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.item-colorDot-D1t:hover,
.item-colorDotActive-Ph- {
    transform: scale(1.3);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.35);
}

.item-swatchCount-eFU {
    font-size: 10px;
    color: #666;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    padding: 1px 4px;
    line-height: 1.3;
    font-weight: 600;
}

/* ---- DETAILS AREA ---- */
.item-detailsArea-Xtx {
    padding: 4px 10px 4px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.item-detailsArea-Xtx > * + * {
    margin-top: 0;
}

.item-productName-f9v {
    margin: 0;
    line-height: 1;
}
.item-nameLink--JR,
.item-nameLink--JR span {
    font-size: 12px;
    color: var(--text-colo-grey-light, #666);
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 30px;
    margin: 0;
    transition: color 0.2s ease;
}
.item-nameLink--JR:hover span {
    color: var(--primary-base-color);
}

.item-priceRow-IXY {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 4px;
    line-height: 1;
    margin: 0;
}

/* Wishlist heart — top-right overlay on image */
.item-wishlistOverlay-7ys {
    position: absolute;
    top: 6px;
    right: 8px;
    z-index: 4;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
}
.item-priceRow-IXY span {
    font-size: 14px !important;
    font-family: 'Medium-font' !important;
    color: var(--primary-dark-color) !important;
}
.item-priceRow-IXY section p::after {
    content: unset;
}
.item-priceRow-IXY section p[class*='regularprice'] span {
    font-size: 12px !important;
    text-decoration: line-through;
    color: var(--text-colo-grey-light) !important;
}

/* Reviews — always reserved so every card has the same height */
.item-reviewRow-sy- {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 14px;
    line-height: 1;
    margin: 0;
}
.item-reviewCount-jw3 {
    font-size: 11px;
    color: var(--primary-dark-color);
}
.item-reviewed-4FI {
}

/* ========================================
   Backward-compat classes (used by other components)
   ======================================== */
.item-root-NyK {
    background: var(--primary-light-color);
    overflow: hidden;
}
.item-images-Or3 {
    display: grid;
    grid-template-areas: 'main';
}
.item-no_product_image-YHV {
}
.item-colors_stars_wrap-cF- {
}
.item-colors_wrap-lHi {
}
.item-colors_inner-3uN {
}
.item-extra_colors-xNe {
}
.item-wishlustlable-eKl {
    white-space: nowrap;
    color: var(--primary-dark-color);
    font-size: 12.5px;
}
.item-add_to_cart_btn-L9j,
.item-add_to_cart_btn-L9j:hover {
    background: var(--primary-base-color);
    color: var(--primary-light-color);
    text-align: center;
    padding: 10px;
    font-size: 14px;
    width: 70%;
    display: block;
    border-radius: 3px;
    transition: 0.3s all;
    position: relative;
}
.item-add_to_cart_btn-L9j:hover {
    background: var(--primary-dark-color);
}
.item-modal_active-F83 {
}
.item-wishlist_addition-uAe {
    display: inline-flex;
    position: relative;
}
.item-wishlist_added--dA svg,
.item-wishlist_icon_wrap-DMH:hover {
    color: var(--primary-dark-color) !important;
    stroke: var(--primary-dark-color) !important;
    fill: var(--primary-dark-color) !important;
}
.item-wishlist_added--dA span {
    color: var(--primary-base-color) !important;
}
.item-wishlist_icon_wrap-DMH {
}
.item-wishlist_icon-FvE {
}
.item-add_to_cart_Wrap-OAA {
}
.item-noo_details_wrapper-Eb1 {
}
.item-vendor_price_wrap-9Nk {
    margin: 5px 0;
}
.item-price-QdV {
}
.item-price-QdV span {
    font-size: 15px;
    display: inline-block;
}

/* Shimmer / pending states */
.item-root_pending-W36 {
}
.item-image_pending-0wk {
    background-color: rgb(var(--venia-grey));
}
.item-images_pending-6ZC {
}
.item-name_pending-c-2 {
    background-color: rgb(var(--venia-grey));
}
.item-price_pending-UlN {
    background-color: rgb(var(--venia-grey));
    width: 3rem;
}
.item-unavailableContainer-dxI {
    align-items: center;
    background-color: rgb(var(--venia-global-color-gray));
    color: rgb(var(--venia-global-color-gray-darker));
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
    display: grid;
    font-style: italic;
    grid-auto-flow: column;
    justify-content: start;
    padding: 0.75rem;
    width: 100%;
    font-size: var(--venia-global-fontSize-100);
}

/* ========================================
   List view overrides
   ======================================== */
div[class*='true'] .item-cardRoot-1Bm {
    flex-direction: row;
}
div[class*='true'] .item-imageArea-Zn1 {
    flex: 0 0 200px;
    max-width: 200px;
    aspect-ratio: auto;
    height: 200px;
}
div[class*='true'] .item-detailsArea-Xtx {
    flex: 1;
    justify-content: center;
}

/* RTL */
body[class~='rtl_view'] .item-badge-5kz {
    right: 8px;
    left: auto;
}
body[class~='rtl_view'] .item-colorSwatchColumn--HN {
    right: auto;
    left: 10px;
}
body[class~='rtl_view'] .item-wishlistOverlay-7ys {
    right: auto;
    left: 8px;
}

/* ---- PRODUCT CARD LABELS STRIP (cross-fade cycling) ---- */
.item-labelStrip-pm4 {
    width: 100%;
    height: 28px;
    overflow: hidden;
    background: var(--primary-light-color, #fff);
    position: relative;
}

/* Single visible row that fades in on each swap. React remounts via key. */
.item-labelItem-0ve {
    width: 100%;
    height: 28px;
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    padding: 0 8px;
    font-size: 11px;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    animation: item-labelFadeIn-Nto 0.35s ease;
}

@keyframes item-labelFadeIn-Nto {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.item-labelIcon-o3U {
    width: 16px !important;
    max-width: 16px !important;
    min-width: 16px !important;
    height: 16px !important;
    max-height: 16px !important;
    -o-object-fit: contain;
       object-fit: contain;
    flex-shrink: 0;
    flex-grow: 0;
    display: inline-block !important;
}

/* Defeat Owl Carousel's global `.owl-carousel .owl-item img { width:100%; display:block }` */
.owl-carousel .owl-item .item-labelItem-0ve .item-labelIcon-o3U {
    width: 16px !important;
    max-width: 16px !important;
    height: 16px !important;
    display: inline-block !important;
}

.item-labelText-ndN {
    display: inline-block !important;
    flex: 1 1 auto;
    min-width: 0;
    font-size: 13px !important;
    color: #333 !important;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 700 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ========================================
   Responsive
   ======================================== */

/* Mobile */
@media screen and (max-width: 767px) {
    .item-colorDot-D1t {
        width: 14px;
        height: 14px;
    }
    .item-priceRow-IXY span {
        font-size: 13px !important;
    }
    .item-nameLink--JR,
    .item-nameLink--JR span {
        font-size: 11px;
        min-height: 26px;
        line-height: 1.2;
    }
    .item-detailsArea-Xtx {
        padding: 4px 8px 4px;
    }
    .item-wishlustlable-eKl {
        display: none !important;
    }
}

.marketplacelink-target-vwm{
  padding: 0 !important;
  margin: 0 !important;
  justify-content: center !important; 
}
.marketplacelink-vendor_shop_listing-eHw {
  padding: 25px 0;
}
.marketplacelink-sidebar-aIp {
  background-color: var(--primary-light-color);
  padding: 12px;
  box-shadow: var(--header-shadow);
  position: sticky;
  top: 100px;
}
.marketplacelink-vendrimage-8Kj{
  text-align: center;
}
.marketplacelink-sidebar_head-MJk,
.marketplacelink-page_title-8gK h1{
  font-size: 18px;
  font-family: 'Medium-font';
  color: var(--primary-dark-color);
  margin-bottom: 20px;
}
.marketplacelink-product_collection-xVp{

}
.marketplacelink-image_image-F1U{

}
.marketplacelink-vendorshopcontent-8T1{
    margin-top: 10px;
    color: var(--primary-text-color);
}
.marketplacelink-product_wrap-Wfk{

}
.marketplacelink-add_to_cart_Wrap-iey{

}
.marketplacelink-add_to_cart_btn-Dnk{
  color: var(--primary-base-color);
}
.marketplacelink-add_to_cart_btn-Dnk:hover{
  color: var(--primary-light-color);
}
.marketplacelink-side_wrap-NSC{

}
.marketplacelink-sidebar-aIp .marketplacelink-input_label-zqn {
    color: var(--primary-text-grey-light-color);
    margin-bottom: 5px;
}
.marketplacelink-sidebar-aIp .marketplacelink-input_box-qCw {
  margin-bottom: 10px;
}
.marketplacelink-sidebar-aIp .marketplacelink-input_box-qCw label {
  display: none;
}
.marketplacelink-sidebar-aIp .marketplacelink-input_box-qCw span {
  width: 100%;
}
.marketplacelink-sidebar-aIp .marketplacelink-input_box-qCw input {

}
.marketplacelink-sidebar-aIp .marketplacelink-input_box-qCw select {
  padding-left: 5px;
}
.marketplacelink-sidebar-aIp .marketplacelink-action-b4z button {
  width: 100%;
  margin: 15px 0px;
}
.marketplacelink-vendorwishlist-zce{
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
}
.marketplacelink-byvendor-SYI{
  margin-right: 8px;
  font-size: 13px;
}
.marketplacelink-name-LTd,
.marketplacelink-name-LTd:hover{
  color: var(--primary-base-color);
  text-decoration: unset !important;
  display: inline-block;
}
.marketplacelink-marketplace_link-3Lp{
  display: inline-flex;
  cursor: pointer;
  max-width: 40px;
  max-height: 40px;
  min-width: 40px;
  justify-content: center;
  min-height: 40px;
  align-items: center;
}
.marketplacelink-product_image-I8s{
  width: 100%;
  min-height: 200px;
  max-height: 200px;
}
.marketplacelink-page_shop_main-gga {
  background-color: var(--primary-light-color);
  padding: 12px;
  margin-bottom: 20px;
}
.marketplacelink-category_image-GOH img {
  width: 100%;
}
.marketplacelink-category_description-ZFJ {
  color: #727272;
  line-height: 25px;
  margin-bottom: 12px;
}
.marketplacelink-category_description-ZFJ p{

}
.marketplacelink-text-umj{

}
.marketplacelink-vendor_list_wrapper-YD2::after{
  clear: both;
  display: table;
  content: '';
}
.marketplacelink-vendor_list_wrapper-YD2 {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 10px;
}
.marketplacelink-root-LU5 {
  border: 1px solid var(--primary-border-color);
}
.marketplacelink-noo_product_inner--pz{
  border: 0;
}
.marketplacelink-vendor_list_wrapper-YD2 .marketplacelink-image_wrapper-9of {

}
.marketplacelink-vendor_list_wrapper-YD2 .marketplacelink-image_wrapper-9of a,
.marketplacelink-vendor_list_wrapper-YD2 .marketplacelink-image_wrapper-9of img {
  width: 100%;
}
.marketplacelink-vendor_list_wrapper-YD2 .marketplacelink-image_wrapper-9of .marketplacelink-shop_name-sKj {

}
.marketplacelink-shop_name-sKj {
    padding: 10px;
    gap: 10px;
    display: grid;
}
.marketplacelink-shop_name-sKj p {
  color: #444;
  margin-bottom: 0px;
}

.marketplacelink-name-LTd{
  
}

/*shop page (product.js)*/
.marketplacelink-leftprofile_attributes-DUj{

}
.marketplacelink-attr_wrap-ftw{
  margin-top: 20px;
}
.marketplacelink-vendor_attributes-TPR{

}
.marketplacelink-attrlabel-MeH{

}
.marketplacelink-attrlabel-MeH label {
  color: var(--primary-slider-nav-color);
}
.marketplacelink-attrlabel-MeH span {
  padding-left: 8px;
  color: var(--primary-dark-color);
}
.marketplacelink-shop_name_wrapper-XL8{
  padding: 10px 10px;
}
.marketplacelink-shop_name_wrapper-XL8 .marketplacelink-item_name-OAX{
  color: #8c5050;
  display: block;
  margin-bottom: 8px;
}
.marketplacelink-shop_name_wrapper-XL8 .marketplacelink-productprice-NOB{
  font-family: 'Bold-font';
  color: var(--primary-dark-color);
}
.marketplacelink-productprice-NOB span{
  font-family:  'Bold-font';
  color: var(--primary-dark-color);
}
.marketplacelink-view_more-NiW{
  display: block;
  padding: 10px 0px 0px 0px;
  border-top: 1px dashed var(--primary-border-color);
}
.marketplacelink-view_more-NiW button {
  color: var(--primary-base-color);
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -moz-transition: 0.3s all;
  font-family:  'Bold-font';
}
.marketplacelink-view_more-NiW:hover svg,
.marketplacelink-view_more-NiW svg {
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -o-transition: 0.3s all;
  margin-left: 10px;
  width: 11px !important;
  vertical-align: middle;
  height: auto;
  color: var(--primary-base-color);
}
.marketplacelink-view_more-NiW:hover svg {
  margin-left: 15px;
  color: var(--primary-base-color);
}
.marketplacelink-no_product_para-6uJ{
  border: 1px solid var(--primary-border-color);
  padding: 10px 10px;
  color: var(--primary-slider-nav-color);
  background: var(--primary-light-color);
}

/* rtl */


@media only screen and (min-width:320px) and (max-width: 1199px){
  .marketplacelink-vendor_list_wrapper-YD2 {
    grid-template-columns: repeat(3, 1fr);
  }
  .marketplacelink-product_image-I8s {
    max-height: 160px;
    min-height: 150px;
  }
}
@media (max-width: 767px){
  .marketplacelink-vendor_list_wrapper-YD2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .marketplacelink-vendor_list_wrapper-YD2 .marketplacelink-root-LU5 {
    width: 100%;
    display: block;
  }
  .marketplacelink-sidebar-aIp {
    margin-bottom: 15px;
  }
  .marketplacelink-target-vwm {
    padding: 0 10px !important;
    width: 100%;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between !important;
  }
  .marketplacelink-marketplace_link-3Lp {
    max-width: 100%;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--primary-border-color);
    max-height: 52px;
  }
  .marketplacelink-text-umj {
    visibility: visible !important;
    position: unset !important;
    color: var(--primary-text-color);
    font-family: 'Regular-font';
    display: inline-block;
    font-size: 14px;
  }
}
.loader-root-NSU {
    align-content: center;
    align-items: center;
    display: grid;
    gap: 3rem;
    height: calc(100% - 6rem);
    justify-content: center;
    justify-items: center;
    width: 100%;
    height: 100%;
    background-color: var(--primary-light-color);
}

.loader-global-Wrp {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,.8);
    z-index: 999999;
}

.loader-message-eOP {
    color: rgb(var(--venia-global-color-text-alt));
    font-size: 1rem;
    letter-spacing: 0.25rem;
}

.loader-indicator-yA1 {
    animation-direction: alternate;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-name: loader-pulse--Xy;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes loader-pulse--Xy {
    0% {
        filter: grayscale(1);
        transform: scale(0.75) rotate(-540deg);
    }
    100% {
        filter: grayscale(0);
        transform: scale(1) rotate(0deg);
    }
}

.scrollToUp-scroll_to_bottom-xJm {
bottom: 25px;
right: 35px;
box-shadow: 0 0 3px 0 rgb(0 0 0 / 20%);
width: 35px;
height: 35px;
position: fixed;
color: var(--text-colo-grey-light);
background-color: var(--primary-light-color);
z-index: 100;
display: flex;
justify-content: center;
align-items: center;
transition: all 0.3s;
-webkit-transition: all .3s;
-moz-transition: all .3s;
text-indent: -99999px;
}
.scrollToUp-scroll_to_bottom-xJm svg {
stroke-width: 1.2;
opacity: 0.5;
}
.scrollToUp-scroll_to_bottom-xJm:hover svg {
opacity: 1;
}

@media (max-width: 767px) {
    .scrollToUp-scroll_to_bottom-xJm {
        bottom: 85px !important;
    }
}
.mask-root-xlR {
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  display: block;
  height: 100%;
  left: 0;
  /* opacity: 0; */
  position: fixed;
  top: 0;
  transition-duration: 192ms;
  transition-property: opacity, visibility;
  transition-timing-function: linear;
  visibility: hidden;
  width: 100%;
  z-index: 2;
  -webkit-appearance: none;
}

/* state: active */

.mask-root_active-Tid {
  /* opacity: 0.5; */
  transition-duration: 224ms;
  visibility: visible;
}

.toastContainer-root-JDW {
    position: fixed;
    display: grid;
    grid-row-gap: 1rem;

    /* Necessary to display over page contents */
    z-index: 6;

    /* Show toasts on bottom of screen */
    bottom: 0px;
    margin-bottom: 1rem;

    /* Display in center */
    min-width: 100%;
}

/* On desktop, display on right */
@media (min-width: 1024px) {
    .toastContainer-root-JDW {
        right: 2rem;
        min-width: auto;
    }
}

.toast-root-7zd {
    align-items: start;
    background-color: white;
    border-radius: 2px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
    color: rgb(33, 33, 33);
    display: grid;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.8rem;
    font-weight: lighter;
    gap: 0.5rem 0.75rem;
    grid-template-areas: 'icon message controls';
    grid-auto-columns: min-content auto min-content;
    justify-items: start;
    line-height: 1.25rem;
    margin: 0 auto;
    padding: 1rem;
    width: 20rem;

    border: 1px solid;
    border-color: #d1d1d1;
    animation: toast-toast-pulsate-TA3 0.5s 1s;
}

@keyframes toast-toast-pulsate-TA3 {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.toast-icon-LBt {
    grid-area: icon;
}

.toast-infoToast-5DB {
    border-bottom: 4px solid rgb(0, 104, 108);
}

.toast-infoToast-5DB > .toast-icon-LBt {
    color: rgb(0, 104, 108);
}

.toast-warningToast-c30 {
    border-bottom: 4px solid rgb(var(--venia-global-color-orange));
}

.toast-warningToast-c30 > .toast-icon-LBt {
    color: rgb(var(--venia-global-color-orange));
}

.toast-errorToast-F5e {
    border-bottom: 4px solid rgb(220, 20, 60);
}

.toast-errorToast-F5e > .toast-icon-LBt {
    color: rgb(220, 20, 60);
}

.toast-message-MXQ {
    grid-area: message;
    display: flex;
    font-family: var(--venia-global-fontFamily-sansSerif);
    font-size: 0.875rem;

    /* For wrapping...*/
    /* These are technically the same, but use both */
    overflow-wrap: break-word;
    word-wrap: break-word;

    -ms-word-break: break-all;
    /* This is the dangerous one in WebKit, as it breaks things wherever */
    word-break: break-all;
    /* Instead use this non-standard one: */
    word-break: break-word;
}

.toast-actions-cVU {
    grid-column: 2 / span 1;
    grid-row: 2 / span 1;
}

.toast-controls-auP {
    grid-area: controls;
    border-left: 1px solid rgb(224, 224, 224);
    padding-left: 0.75rem;
}

.toast-actionButton-1IH {
    font-weight: 600;
    text-decoration: underline;
    color: rgb(33, 33, 33);
}

.toast-dismissButton-iAt {
    color: rgb(112, 112, 112);
}

:root {
    --category-sidebar-width: 325px;
}
.category-sidebar-eSq {
    position: sticky;
    top: 0;
    padding-right: 15px;
    max-height: 100vh;
    overflow-y: auto;
    align-self: flex-start;
    flex-shrink: 0;
}
.category-sidebar-eSq::-webkit-scrollbar {
    width: 6px;
}
.category-sidebar-eSq::-webkit-scrollbar-track {
    background: var(--primary-light-color, #f5f5f5);
}
.category-sidebar-eSq::-webkit-scrollbar-thumb {
    background: var(--dropdown-border-color, #ccc);
    border-radius: 10px;
}
.category-root-Zmt {
    padding: 10px 0;
}
.category-categorywrap-0-O {
    background-color: var(--primary-light-color);
}
.category-title-68c {
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-websortbar-Roo {
    gap: 20px;
    margin-bottom: 10px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.category-gridlistswitcher-2xn {
    display: flex;
    align-items: center;
    border: 1px solid var(--primary-border-color);
}
.category-activeicon-mr- {
}
.category-viewicon-Ftm {
    padding: 10px;
    width: 50px;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    min-height: 46px;
}
.category-viewicon-Ftm svg {
    stroke: var(--search-result-text-color);
}
.category-activeicon-mr-.category-viewicon-Ftm svg {
    stroke: var(--primary-base-color);
}
.category-gallery-mxD {
}
.category-pagination-g-a {
    position: relative;
    bottom: 0;
    margin: 50px 0 0;
}
.category-infiniteScrollSentinel-dAv {
    width: 100%;
    min-height: 1px;
    margin-top: 20px;
}
.category-loadingSpinner-FkT {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}
.category-spinner-08e {
    width: 40px;
    height: 40px;
    border: 3px solid var(--primary-border-color, #ddd);
    border-top-color: var(--primary-base-color, #a71e23);
    border-radius: 50%;
    animation: category-spin-CDS 0.8s linear infinite;
}
@keyframes category-spin-CDS {
    to {
        transform: rotate(360deg);
    }
}
.category-catbannwrap-AjC {
    background-position: center center;
    background-size: cover;
    padding: 70px 0;
    background-repeat: no-repeat;
    width: 100%;
}
.category-catbannwrap-AjC:before {
    content: '';
    position: absolute;
    background: rgb(0 0 0 / 38%);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.category-placeholder-JSn {
    height: 100vh;
}

.category-heading-giL {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 0.5rem;
}

.category-categoryInfo-54j {
    max-width: 75vw;
    color: var(--primary-slider-nav-color);
    font-size: 17px;
    margin-left: 15px !important;
}

.category-headerButtons-5Yn {
    display: flex;
    flex-basis: 100%;
    justify-content: center;
    padding-bottom: 1.5rem;
}
.category-categoryContent-Ixm {
    flex: 0 0 75%;
    min-width: 75%;
}
.category-contentWrapper-UcI {
    display: flex;
    flex-wrap: nowrap;
    margin-top: 20px;
    align-items: flex-start;
}

.category-categories_wrapper-Mx0 {
    padding-top: 20px;
}
.category-brand_wrapper-LOH,
.category-subCategory_wrapper-pzs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px 0;
}
.category-subCategory_wrapper-pzs {
    gap: 10px;
}
.category-brand-ycr {
    flex: 0 0 calc(33.33% - 10px);
    box-sizing: border-box;
    position: relative;
    /* padding: 20px 0px; */
}
.category-brand-ycr img,
.category-subCategory-8Sg img {
    width: 100%;
}
.category-subCategory-8Sg img {
    border-radius: 10px;
}
.category-brand_name-0-2 {
    width: 100%;
    text-align: center;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
}
.category-showmore_wrapper-JYE {
    display: flex;
    justify-content: end;
    padding: 10px 0;
}
.category-showmore-Eaw,
.category-showless-RJG {
    color: #a71e23;
    display: flex;
    gap: 4px;
}
.category-showless-RJG svg {
    transform: rotate(180deg);
}
.category-subCategory-8Sg {
    flex: 0 0 calc(25% - 8px);
    box-sizing: border-box;
    position: relative;
}
.category-subCategory_name-CNF {
    width: 100%;
    font-size: 20px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    z-index: 1;
}
.category-subCategory-8Sg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
    border-radius: 10px;
}
/* mobiel filter and sort btn */
.category-mobile_headerButtons-pEn {
    width: 100%;
    margin-bottom: 20px;
}
.category-mobile_headerButtons_inner-MV- {
    border: 1px solid var(--primary-border-color);
    display: flex;
    flex-wrap: wrap;
    background: var(--primary-light-color);
}
.category-sort_btn_mobile-Y05 {
    flex: 0 0 50%;
    min-width: 50%;
    justify-content: center;
    align-items: center;
    background: var(--primary-light-color);
}
.category-categoryBanner-wHW {
    position: relative;
    display: flex;
    align-items: center;
}
.category-categoryBanner-wHW img {
    width: 100%;
}
.category-categoryImage--ek {
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
}
.category-categoryHeader-78q {
    position: absolute;
}

.category-categoryTitle--QR {
    color: var(--primary-light-color);
    font-size: 28px;
    letter-spacing: 1px;
    font-family: 'Medium-font';
}

.category-categoryHeader-78q {
    width: 100%;
}
.category-headerButtons-5Yn {
    justify-content: flex-end;
}

.category-heading-giL {
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
    padding-bottom: 1.5rem;
}

.category-headerButtons-5Yn {
    padding-bottom: 0;
}

.category-categoryInfo-54j {
    margin: 0;
    text-align: left;
}

.category-sidebar-eSq {
    flex: 0 0 25%;
    min-width: 25%;
}
.category-categoryslider-4sM {
    background: var(--primary-insta-section);
}
.category-categoryslider-4sM
    section[class='home-h_products-3kS home-homepage_sections-3C9 m-0'] {
    background: unset;
}

/* rtl view */
body[class~='rtl_view'] .category-sidebar-eSq {
    padding-left: 15px;
    padding-right: 0;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .category-headerButtons-5Yn {
        display: none;
    }
    .category-sidebar-eSq {
        flex: 0 0 28%;
        min-width: 28%;
    }
    .category-categoryContent-Ixm {
        flex: 0 0 72%;
        min-width: 72%;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .category-categorywrap-0-O {
        background-color: unset;
    }
    .category-mobile_headerButtons-pEn {
        gap: 10px;
        display: flex !important;
        justify-content: space-between;
    }
    .category-mobile_headerButtons_inner-MV- {
        flex: 0 0 70%;
        max-width: 70%;
    }
    .category-gridlistswitcher-2xn {
        flex: 0 0 25%;
        max-width: 25%;
        background: var(--primary-light-color);
    }
    .category-categoryContent-Ixm {
        flex: 0 0 100%;
        min-width: 100%;
        border: 0;
    }
    .category-categoryBanner-wHW img {
        height: 100px;
    }
    .category-categoryImage--ek {
        height: auto;
    }
    .category-contentWrapper-UcI {
        margin-top: 0;
        padding: 15px;
        flex-wrap: wrap;
    }
    .category-title-68c {
        margin: 0;
        padding: 0;
    }
    div[class*='breadcrumbs-'] {
        position: relative;
        padding: 5px 0 0 0;
        z-index: 2;
    }
    div[class*='breadcrumbs-'] > a {
        padding: 0 3px;
    }
    div[class*='breadcrumbs-'] > a:first-child {
        padding-left: 0;
    }
    [class*='breadcrumbs-'] a,
    [class*='breadcrumbs-'] span {
        font-size: 12px;
    }
    .category-brand-ycr,
    .category-subCategory-8Sg {
        flex: 33%;
    }
}

.breadcrumbs-root-UAJ {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 15px 0 0 0;
    margin-top: 10px;
    text-align: center;
}

.breadcrumbs-text-lAa {
    padding: 0.25rem;
    font-size: 12px;
    text-transform: capitalize;
    color: var(--primary-base-color);
}
.breadcrumbs-text-lAa:not(.breadcrumbs-currentCategory-isJ, .breadcrumbs-text-lAa:last-child):hover {
  color: var(--primary-dark-theme-color);
}

.breadcrumbs-divider-pqT {
  color: var(--primary-text-color);
  font-size: 10px;
  margin: 0 5px;
  position: relative;
  line-height: 16px;
}
.breadcrumbs-divider-pqT::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1.5px solid var(--primary-text-color, #666);
    border-bottom: 1.5px solid var(--primary-text-color, #666);
    transform: rotate(-45deg);
    display: block;
    position: absolute;
    top: 7px;
    right: -2px;
}

.breadcrumbs-link-mHX {
  text-decoration: underline;
  color: var(--text-colo-grey-light);
}
.breadcrumbs-link-mHX:hover {
    color: var(--primary-base-color);
}

.breadcrumbs-currentCategory-isJ {
}

@media screen and (min-width: 320px) and (max-width: 767px) {
  .breadcrumbs-root-UAJ {
    padding: 25px 15px 10px 15px;
  }
  .breadcrumbs-link-mHX  {
    font-size: 12px;
  }
  .breadcrumbs-divider-pqT::after {
    top: 2px;
    right: -3px;
    filter: brightness(0.5);
    background-size: 4px;
    position: relative;
    display: inline-flex;
    vertical-align: baseline;
  }
  .breadcrumbs-divider-pqT {
    margin: 0 !important;
  }
}

.button-root-3iv {
    max-width: 100%;
    min-width: 10rem;
    padding: 10px;
    min-height: 41px;
    max-height: 41px;
    transition-duration: 256ms;
    transition-property: background-color, border-color, color;
    transition-timing-function: var(--venia-global-anim-standard);
}

/**
 * Some browsers retain the :hover state after a click, this ensures if a button becomes disabled after
 * being clicked it will be visually disabled.
 */
.button-root-3iv:disabled,
.button-root-3iv:hover:disabled {
    pointer-events: none;
    background: #ccc !important;
    border-color: #ccc !important;
}
.button-root-3iv:disabled span,
.button-root-3iv:hover:disabled span {
    color: var(--primary-light-color);
}
.button-content-ouv {
    align-items: center;
    display: inline-grid;
    gap: 0.35rem;
    grid-auto-flow: column;
    justify-content: center;
    justify-items: center;
    font-size: 14px !important;
    line-height: 21px;
}

/* derived classes */
.button-root_lowPriority-xHk {
    border: 1px solid var(--primary-dark-color) !important;
    background: var(--primary-light-color) !important;
}
.button-root_lowPriority-xHk span {
    color: var(--primary-dark-color) !important;
}
.button-root_lowPriority-xHk:hover {
--stroke: var(--primary-dark-color);
    background: var(--primary-dark-color) !important;
}
.button-root_lowPriority-xHk:hover span {
    color: var(--primary-light-color) !important;
}
.button-root_lowPriorityNegative-KqK {
    --stroke: var(--primary-error-color);
}
.button-root_lowPriorityNegative-KqK:hover {
    --stroke: var(--primary-error-color);
}

.button-root_normalPriority-Z4b {
    color: var(--primary-dark-color);
    background: var(--primary-light-color);
    border: 1px solid var(--primary-dark-color);
}
.button-root_normalPriority-Z4b span {
    color: var(--primary-dark-color);
}
.button-root_normalPriority-Z4b:hover {
    color: var(--primary-dark-color);
    background: var(--primary-light-color);
}
.button-root_normalPriorityNegative-DHO {
    --stroke: var(--primary-error-color);
}
.button-root_normalPriorityNegative-DHO:hover {
    --stroke: var(--primary-error-color);
}

.button-root_highPriority-sM1 {
    border: 1px solid var(--primary-base-color);
    color: var(--primary-base-color);
    position: relative;
    background-color: var(--primary-light-color);
}
.button-root_highPriority-sM1:hover {
    background-color: var(--primary-base-dark-color);
}
.button-root_highPriority-sM1:hover span {
    color: var(--primary-light-color) !important;
    z-index: 9999;
}
.button-root_highPriority-sM1 span {
    color: var(--primary-base-color);
}
.button-root_highPriorityNegative-inZ {
    --stroke: var(--primary-error-color);
}
.button-root_highPriorityNegative-inZ:hover {
    --stroke: var(--primary-error-color);
}

@media screen and (min-width: 320px) and (max-width: 991px) {
    .button-root_highPriority-sM1 {
        background-color: var(--primary-base-color);
    }
    .button-root_highPriority-sM1 span {
        color: var(--primary-light-color);
    }
}

.checkbox-root-2tI {
    --stroke: var(--primary-base-color);
    align-items: center;
    color: rgb(var(--venia-global-color-gray-900));
    display: grid;
    grid-auto-flow: column;
    grid-template-areas: 'input label';
    grid-template-columns: min-content 1fr;
    justify-items: center;
    line-height: 1.5rem;
    margin-bottom: 0;
}

.checkbox-input-kCu {
    -webkit-appearance: none;
    background: none;
    border-radius: 3px;
    cursor: pointer;
    grid-area: input;
    height: 15px;
    width: 15px;
}

.checkbox-icon-ohh {
    grid-area: input;
    pointer-events: none;
    width: 1.5rem;
}

.checkbox-icon-ohh svg {
    stroke: var(--primary-base-color);
    width: 15px;
}

.checkbox-label-FQ6 {
    cursor: pointer;
    font-size: 14px;
    grid-area: label;
    justify-self: start;
    color: var(--primary-dark-color);
}

.checkbox-input-kCu:disabled {
    cursor: default;
}

.checkbox-input-kCu:checked + .checkbox-icon-ohh,
.checkbox-input-kCu + .checkbox-icon-ohh {
    margin-right: 10px !important;
}

.checkbox-input-kCu:active,
.checkbox-input-kCu:focus {
    box-shadow: var(--primary-box-shadow);
    outline: none;
}



/* rtl view */
body[class~='rtl_view'] .checkbox-input-kCu:checked + .checkbox-icon-ohh, 
body[class~='rtl_view'] .checkbox-input-kCu + .checkbox-icon-ohh {
    margin-left: 10px !important;
    margin-right: 0 !important;
}
.radio-root-AJq {
    align-items: center;
    color: var(--primary-dark-color);
    display: grid;
    gap: 0.75rem;
    grid-auto-flow: column;
    grid-template-areas: 'input label';
    grid-template-columns: min-content 1fr;
    margin: 0;
    justify-items: center;
    line-height: 1.5rem;
    position: relative;
}

.radio-input-d4v {
    -webkit-appearance: none;
    background: none;
    background-clip: content-box;
    grid-area: input;
    height: 12px;
    margin: 0;
    width: 12px;
    z-index: 2;
    position: absolute;
    left: 6px;
    top: 6px;
    border-radius: 2px;
}
.radio-icon-kuS {
    grid-area: input;
    height: 1.5rem;
    width: 1.5rem;
    z-index: 1;
}

.radio-icon-kuS svg {
    stroke: #b7b7b7;
}

.radio-label-kJ1 {
    font-size: var(--venia-typography-body-S-fontSize);
    grid-area: label;
    justify-self: start;
}

.radio-input-d4v:checked {
    background-color: var(--primary-base-color);
}

.radio-input-d4v:checked + .radio-icon-kuS svg {
    stroke: var(--primary-base-color);
    vertical-align: unset;
}

.radio-input-d4v:active,
.radio-input-d4v:focus {
    box-shadow: var(--primary-box-shadow);
    outline: none;
}

/* rtl */
body[class~='rtl_view'] .radio-input-d4v {
    left: 3px;
}

.field-root-HJ- {
    display: grid;
    align-content: start;
    position: relative;
}

.field-label-ZLF{
    position: absolute;
    pointer-events: none;
    border: 1px solid transparent;
    padding: 0px 5px;
    background-color: var(--primary-light-color);
    height: auto;
    left: 16px;
    top: -12px;
    color: var(--search-result-text-color) !important;
    text-transform: capitalize !important;
    margin: 0 !important;
    font-size: 12px !important;
}

.field-input-CUm {
    background: var(--primary-light-color);
    border: 1px solid var(--primary-border-color);
    color: var(--primary-dark-color);
    display: inline-flex;
    flex: 0 0 100%;
    font-size: 14px;
    height: 42px;
    margin: 0 !important;
    border-radius: 0;
    max-width: 100%;
    padding: calc(0.375rem - 1px) calc(0.625rem - 1px);
    width: 100%;
    -webkit-appearance: none;
}
.field-input-CUm:focus {
    outline: none;
        color: var(--primary-dark-color);
}
.field-input-CUm::-moz-placeholder {
    color: transparent !important;
}
.field-input-CUm::placeholder {
    color: transparent !important;
}
.field-optional-j24 {
    color: rgb(var(--venia-global-color-gray-700));
    font-size: var(--venia-global-fontSize-100);
    font-weight: var(--venia-global-fontWeight-normal);
}
.field-root_error-3Dh,
.field-root-HJ- {
    color: var(--primary-error-color);
    font-size: 14px;
}

/* rtl view */
body[class~='rtl_view'] .field-label-ZLF {
    right: 16px;
    left: unset;
}



.textInput-input-Jz0 {
}
.textInput-input_error-9x2 {
    border-color: var(--primary-error-color);
}

.textArea-input-3ua {
    background: var(--primary-light-color);
    border: 1px solid var(--primary-border-color);
    color: var(--primary-dark-color);
    display: inline-flex;
    flex: 0 0 100%;
    font-size: 14px;
    height: 2.5rem;
    margin: 0;
    max-width: 100%;
    padding: calc(0.375rem - 1px) calc(0.625rem - 1px);
    width: 100%;
    -webkit-appearance: none;
}
.textArea-input_error-DnE{
    padding: calc(0.375rem - 1px) calc(0.625rem - 1px);
}
.shimmer-root-6Tu {
    position: relative;
    display: inline-block;
    overflow: hidden;
    background: rgb(var(--venia-global-color-gray));
    pointer-events: none;
}

.shimmer-root-6Tu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: var(--venia-global-maxWidth);
    height: 100%;
    background: linear-gradient(
            to right,
            rgb(var(--venia-global-color-gray-50) / 0%) 0%,
            rgb(var(--venia-global-color-gray-50)) 40%,
            rgb(var(--venia-global-color-gray-50) / 0%) 80%,
            rgb(var(--venia-global-color-gray-50) / 0%) 100%
        )
        no-repeat;
    background-size: var(--venia-global-maxWidth) 100%;
    -webkit-animation-name: shimmer-shimmerAnimation-B7I;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-fill-mode: forwards;
    will-change: transform;
}

.shimmer-root_rectangle-kll {
    min-height: var(--venia-typography-body-M-fontSize);
}

.shimmer-root_button-GG2 {
    border: none;
}

.shimmer-root_checkbox-jRO {
    border: none;
}

.shimmer-root_radio--ZK {
    border: none;
}

.shimmer-root_textArea--L0 {
    min-height: 6.75rem;
    border: none;
}

.shimmer-root_textInput-Bsf {
    border: none;
}

.productSort-root-E8V {
position: relative;
    /* background: var(--primary-light-color); */
    padding: 5px;
    display: inline-flex;
    height: 100%;
    align-items: center;
}

.productSort-menu--Za {
list-style: none;
    background-color: var(--primary-light-color);
    position: absolute;
    z-index: 99;
    box-shadow: 0px 0px 12px 0px rgb(231 231 231);
    top: 110%;
    right: 15px;
    min-width: 200px;
}

.productSort-menuItem-19v {
    border-bottom: 1px solid rgb(var(--venia-global-color-gray-dark));
}

.productSort-menuItem-19v:last-child {
    border-bottom: none;
}

.productSort-menuItem-19v:hover {
    background-color: rgb(var(--venia-global-color-gray));
}
.productSort-root_inner-OkY {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0 10px 10px;
    position: relative;
    width: 100%;
}
.productSort-sort_title-BPz {
    color: var(--primary-dark-color);
    font-size: 14px;
    font-family: 'Medium-font';
}
.productSort-sorted_result-2ek {
    color: var(--primary-text-color);
    margin: 0 10px;
    display: inline-flex;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    justify-content: center;
    align-items: center;
    font-size: 13px;
}
.productSort-sortButton-T9G {
display: flex;
    border: 0;
    background: transparent;
    justify-content: flex-end;
    margin-left: auto;
}
.productSort-sortButton-T9G:hover{
    background-color: unset;
}
.productSort-sortButton-T9G > span {
    width: 100%;
    justify-content: flex-start;
    display: flex;
}
.productSort-desktopText-2S9 {
    display: flex;
    width: 100%;
    padding: 0;
    justify-content: space-between;
}
.productSort-sortbar_itemwrap-BWH{
display: inline-flex;
    border: 1px solid var(--primary-border-color);
    padding: 10px 10px;
    margin-left: 10px;
}
.productSort-sortText-ajn {
    line-height: 24px;
    font-size: var(--venia-global-fontSize-200);
}

.productSort-desktopIconWrapper-KsB {
    width: 17px;
}

.productSort-desktopIcon-XOd {
    stroke: var(--primary-dark-color);
}
.productSort-menu--Za ul {
    margin-bottom: 0;
}

/* rtl view */
body[class~='rtl_view'] .productSort-sortbar_itemwrap-BWH {
    margin-left: 0;
    margin-right: 10px;
}


@media (max-width: 767px) {
    .productSort-sortButton-T9G {
        border-color: rgb(var(--venia-global-color-gray-500));
        border-radius: 6px;
        font-weight: var(--venia-global-fontWeight-normal);
        text-transform: none;
        width: 100%;
    }
    .productSort-sortButton-T9G span {
        justify-content: center !important;
        display: inline-flex;
        align-items: center;
    }
    .productSort-root-E8V {
        box-shadow: unset;
        border-left: 1px solid var(--primary-border-color);
        width: 100%;
    }
    .productSort-menu--Za {
        position: absolute;
        z-index: 9999;
        left: 0;
        width: 100%;
        box-shadow: var(--primary-box-shadow);
            min-width: 170px;
    }
    body[class~='rtl_view'] .productSort-root-E8V {
        border-right: 1px solid var(--primary-border-color);
        border-left: 0;
    }
    body[class~='rtl_view'] .productSort-filter_img-Vvj{
        margin-left: 10px;
    }
}

.productSort-shimmer-root-akO {
}

.productSort-shimmer-sortButtonShimmer-P2R {
}

@media (min-width: 1024px) {
    .productSort-shimmer-sortButtonShimmer-P2R {
        min-width: 12rem;
    }
}

.gallery-root-MY9 {
    display: grid;
    grid-template-areas:
        'actions'
        'items';
    grid-template-columns: 1fr;
    line-height: 1;
}

.gallery-items-kMz {
    display: grid;
    grid-area: items;
    grid-gap: 12px;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 10px;
}

/* list view */
div[class*='true'] .gallery-items-kMz {
    grid-template-columns: repeat(1, 1fr);
}

/* Desktop large (1200+) — 4 columns */
@media screen and (min-width: 1200px) {
    .gallery-items-kMz {
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 14px;
    }
}

/* Tablet (768–1199) — 4 columns */
@media screen and (min-width: 768px) and (max-width: 1199px) {
    .gallery-items-kMz {
        grid-template-columns: repeat(4, 1fr) !important;
        grid-gap: 10px;
    }
}

/* Mobile (up to 767px) — 2 columns */
@media (max-width: 767px) {
    .gallery-items-kMz {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        grid-gap: 8px;
    }
}

.error-page_not_find-Su9 {
    padding: 100px 0;
    text-align: center;
}
.error-notfound_head_title-P6a {
    text-align: center;
}
.error-notfound_head_title-P6a  h1 {
    font-size: 30px;
}
.error-page_not_find-Su9 p,.error-page_not_find-Su9 span, .error-page_not_find-Su9 a, .error-page_not_find-Su9 button {
    font-size: 13.5px;
    letter-spacing: .5px;
}
.error-notfound_points-nAz {
    margin-bottom: 40px
}
.error-notfound_points-nAz p {
    margin: 0;
    line-height: 25px;
}
.error-notfound_title_secondary-ddm{
    margin: 20px 0;
    color: var(--primary-dark-color);
    font-size: 24px;
}
.error-notfound_button-0jL {
    color: var(--primary-base-color);
    padding: 2px 4px;
    position: relative;
    transition: ease-in .2s;
    cursor: pointer;
}
.error-notfound_button-0jL:hover {
    color: var(--primary-dark-theme-color);
}

@media screen and (min-width: 320px) and (max-width: 767px){
    .error-page_not_find-Su9 {
        padding: 0px 0;
    }
}

