/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/.pnpm/css-loader@7.1.4_webpack@5.108.4/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/.pnpm/postcss-loader@8.2.1_postcss@8.5.21_webpack@5.108.4/node_modules/postcss-loader/dist/cjs.js!./node_modules/.pnpm/sass-loader@17.0.0_sass@1.101.3_webpack@5.108.4/node_modules/sass-loader/dist/cjs/index.js!./src/assets/styles/app.scss ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/*
 * IMPORTANT NOTE: Theme based on Tailwindcss but for the purpose of simplifing the DOM we use
 * tailwind classes with @apply directive in the SCSS files
*/
/**
 * SETTINGS
 * Tailwind.............Import tailwind.
 * Fonts................Any font files.
 * Global...............Project-specific, globally available variables.
 * Breakpoints..........Mixins and variables for responsive styles.
 *
 * GENERIC
 * Common...............All commn styles and assistan classes and common style fixes
 * Reset................Reset specific elements to make them easier to style in other contexts.
 * Animations...........Reusable CSS keyframe animations.
 * Lazyload.............Lazyload placeholder styles
 * RTL..................Specific styles for RTL.
 * LTR..................Specific styles for LTR.
 *
 * ELEMENTS
 * Forms................Element-level form styling.
 * Buttons..............Specific styles for buttons.
 * Radio................Specific styles for custom radio button.
 * Radio Images.........Specific styles for radio images, used in product options.
 *
 * COMPONENTS
 * Header...............Specific styles for header styles.
 * Footer...............Specific styles for footer styles.
 * Menu.................Specific styles for main menu and mobile menu styles.
 * User Menu............Specific styles for user menu dropdown.
 * User Pages...........Specific styles for user pages like profile, notifications, orders...
 * Home Blocks..........Specific styles for home blocks.
 * Slider...............Specific styles for sliders.
 * Product..............Specific styles for single product page and it's elements.
 * Brands...............Specific styles for brands page.
 * Placeholder..........Specific styles for no content placeholders.
 * Gifting..............Specific styles for gifting system.
 * Loyalty..............Specific styles for loyalty system.
 *
 * UTILITIES
 * Chat Bots............Specific styles for chats bots widget.
 * Swal.................Specific styles for Sweet Alert addon.
 * Safari Fixes.........Specific styles for Safari Browser.
 *
 * EMBEDED ADDONS
 * Lite Youtube Embed...Specific styles for lite-youtube-embed addon.
 * Swiper...............Specific styles for swiper slider addon.
 * MMenu................Specific styles for mmenu addon.
 *
*/
lite-youtube {
    background-color: #000;
    position: relative;
    display: block;
    contain: content;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
    max-width: 720px;
}

/* gradient */
lite-youtube::before {
    content: attr(data-title);
    display: block;
    position: absolute;
    top: 0;
    /* Pixel-perfect port of YT's gradient PNG, using https://github.com/bluesmoon/pngtocss plus optimizations */
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.67) 0%, rgba(0, 0, 0, 0.54) 14%, rgba(0, 0, 0, 0.15) 54%, rgba(0, 0, 0, 0.05) 72%, rgba(0, 0, 0, 0) 94%);
    height: 99px;
    width: 100%;
    font-family: "YouTube Noto",Roboto,Arial,Helvetica,sans-serif;
    color: hsl(0, 0%, 93%);
    text-shadow: 0 0 2px rgba(0,0,0,.5);
    font-size: 18px;
    padding: 25px 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-sizing: border-box;
}

lite-youtube:hover::before {
    color: white;
}

/* responsive iframe with a 16:9 aspect ratio
    thanks https://css-tricks.com/responsive-iframes/
*/
lite-youtube::after {
    content: "";
    display: block;
    padding-bottom: calc(100% / (16 / 9));
}
lite-youtube > iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
}

/* play button */
lite-youtube > .lyt-playbtn {
    display: block;
    /* Make the button element cover the whole area for a large hover/click target… */
    width: 100%;
    height: 100%;
    /* …but visually it's still the same size */
    background: no-repeat center/68px 48px;
    /* YT's actual play button svg */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 48"><path d="M66.52 7.74c-.78-2.93-2.49-5.41-5.42-6.19C55.79.13 34 0 34 0S12.21.13 6.9 1.55c-2.93.78-4.63 3.26-5.42 6.19C.06 13.05 0 24 0 24s.06 10.95 1.48 16.26c.78 2.93 2.49 5.41 5.42 6.19C12.21 47.87 34 48 34 48s21.79-.13 27.1-1.55c2.93-.78 4.64-3.26 5.42-6.19C67.94 34.95 68 24 68 24s-.06-10.95-1.48-16.26z" fill="red"/><path d="M45 24 27 14v20" fill="white"/></svg>');
    position: absolute;
    cursor: pointer;
    z-index: 1;
    filter: grayscale(100%);
    transition: filter .1s cubic-bezier(0, 0, 0.2, 1);
    border: 0;
}

lite-youtube:hover > .lyt-playbtn,
lite-youtube .lyt-playbtn:focus {
    filter: none;
}

/* Post-click styles */
lite-youtube.lyt-activated {
    cursor: inherit;
}
lite-youtube.lyt-activated::before,
lite-youtube.lyt-activated > .lyt-playbtn {
    opacity: 0;
    pointer-events: none;
}

.lyt-visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }
*, ::before, ::after{
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --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-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:  ;
    --tw-gradient-via-position:  ;
    --tw-gradient-to-position:  ;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgba(59, 130, 246, 0.5);
    --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
    --tw-ring-shadow: 0 0 rgba(0,0,0,0);
    --tw-shadow: 0 0 rgba(0,0,0,0);
    --tw-shadow-colored: 0 0 rgba(0,0,0,0);
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
    --tw-contain-size:  ;
    --tw-contain-layout:  ;
    --tw-contain-paint:  ;
    --tw-contain-style:  ;
}
::backdrop{
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --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-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:  ;
    --tw-gradient-via-position:  ;
    --tw-gradient-to-position:  ;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgba(59, 130, 246, 0.5);
    --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
    --tw-ring-shadow: 0 0 rgba(0,0,0,0);
    --tw-shadow: 0 0 rgba(0,0,0,0);
    --tw-shadow-colored: 0 0 rgba(0,0,0,0);
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
    --tw-contain-size:  ;
    --tw-contain-layout:  ;
    --tw-contain-paint:  ;
    --tw-contain-style:  ;
}
/*
 ! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

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

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: "DINNextLTArabic", -apple-system, BlinkMacSystemFont;
  font-family: var(--font-main), -apple-system, BlinkMacSystemFont; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
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)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

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

abbr:where([title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

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

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

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

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

/*
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)
3. Remove gaps between table borders by default.
*/

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

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

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

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

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

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

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

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

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

summary {
  display: list-item;
}

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

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

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

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

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

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

/*
Set the default cursor for buttons.
*/

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

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

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

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
input:where([type='text']),input:where(:not([type])),input:where([type='email']),input:where([type='url']),input:where([type='password']),input:where([type='number']),input:where([type='date']),input:where([type='datetime-local']),input:where([type='month']),input:where([type='search']),input:where([type='tel']),input:where([type='time']),input:where([type='week']),select:where([multiple]),textarea,select{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: #fff;
    border-color: #6b7280;
    border-width: 1px;
    border-radius: 0px;
    padding-top: 0.5rem;
    padding-right: 0.75rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
    font-size: 1rem;
    line-height: 1.5rem;
    --tw-shadow: 0 0 rgba(0,0,0,0);
}
input:where([type='text']):focus, input:where(:not([type])):focus, input:where([type='email']):focus, input:where([type='url']):focus, input:where([type='password']):focus, input:where([type='number']):focus, input:where([type='date']):focus, input:where([type='datetime-local']):focus, input:where([type='month']):focus, input:where([type='search']):focus, input:where([type='tel']):focus, input:where([type='time']):focus, input:where([type='week']):focus, select:where([multiple]):focus, textarea:focus, select:focus{
    outline: 2px solid transparent;
    outline-offset: 2px;
    --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: #2563eb;
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(1px + 0px) #2563eb, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    border-color: #2563eb;
}
input::-moz-placeholder, textarea::-moz-placeholder{
    color: #6b7280;
    opacity: 1;
}
input::placeholder,textarea::placeholder{
    color: #6b7280;
    opacity: 1;
}
::-webkit-datetime-edit-fields-wrapper{
    padding: 0;
}
::-webkit-date-and-time-value{
    min-height: 1.5em;
    text-align: inherit;
}
::-webkit-datetime-edit{
    display: inline-flex;
}
::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{
    padding-top: 0;
    padding-bottom: 0;
}
select{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    -webkit-print-color-adjust: exact;
            print-color-adjust: exact;
}
select:where([multiple]),select:where([size]:not([size="1"])){
    background-image: none;
    background-image: initial;
    background-position: 0 0;
    background-position: initial;
    background-repeat: repeat;
    background-repeat: initial;
    background-size: auto auto;
    background-size: initial;
    padding-right: 0.75rem;
    -webkit-print-color-adjust: inherit;
            print-color-adjust: inherit;
}
input:where([type='checkbox']),input:where([type='radio']){
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    padding: 0;
    -webkit-print-color-adjust: exact;
            print-color-adjust: exact;
    display: inline-block;
    vertical-align: middle;
    background-origin: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    flex-shrink: 0;
    height: 1rem;
    width: 1rem;
    color: #2563eb;
    background-color: #fff;
    border-color: #6b7280;
    border-width: 1px;
    --tw-shadow: 0 0 rgba(0,0,0,0);
}
input:where([type='checkbox']){
    border-radius: 0px;
}
input:where([type='radio']){
    border-radius: 100%;
}
input:where([type='checkbox']):focus,input:where([type='radio']):focus{
    outline: 2px solid transparent;
    outline-offset: 2px;
    --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
    --tw-ring-offset-width: 2px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: #2563eb;
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(2px + 2px) #2563eb, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
input:where([type='checkbox']):checked,input:where([type='radio']):checked{
    border-color: transparent;
    background-color: currentColor;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}
input:where([type='checkbox']):checked{
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}
@media (forced-colors: active) {
    input:where([type='checkbox']):checked{
        -webkit-appearance: auto;
           -moz-appearance: auto;
                appearance: auto;
    }
}
input:where([type='radio']):checked{
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}
@media (forced-colors: active) {
    input:where([type='radio']):checked{
        -webkit-appearance: auto;
           -moz-appearance: auto;
                appearance: auto;
    }
}
input:where([type='checkbox']):checked:hover,input:where([type='checkbox']):checked:focus,input:where([type='radio']):checked:hover,input:where([type='radio']):checked:focus{
    border-color: transparent;
    background-color: currentColor;
}
input:where([type='checkbox']):indeterminate{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
    border-color: transparent;
    background-color: currentColor;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}
@media (forced-colors: active) {
    input:where([type='checkbox']):indeterminate{
        -webkit-appearance: auto;
           -moz-appearance: auto;
                appearance: auto;
    }
}
input:where([type='checkbox']):indeterminate:hover,input:where([type='checkbox']):indeterminate:focus{
    border-color: transparent;
    background-color: currentColor;
}
input:where([type='file']){
    background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
    background: initial;
    border-color: inherit;
    border-width: 0;
    border-radius: 0;
    padding: 0;
    font-size: inherit;
    line-height: inherit;
}
input:where([type='file']):focus{
    outline: 1px solid ButtonText;
    outline: 1px auto -webkit-focus-ring-color;
}
.container{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 10px;
    padding-left: 10px;
}
@media (min-width: 1280px){
    .container{
        max-width: 1280px;
    }
}
.form-input,.form-textarea,.form-select,.form-multiselect{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: #fff;
    border-color: #6b7280;
    border-width: 1px;
    border-radius: 0px;
    padding-top: 0.5rem;
    padding-right: 0.75rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
    font-size: 1rem;
    line-height: 1.5rem;
    --tw-shadow: 0 0 rgba(0,0,0,0);
}
.form-input:focus, .form-textarea:focus, .form-select:focus, .form-multiselect:focus{
    outline: 2px solid transparent;
    outline-offset: 2px;
    --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: #2563eb;
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(1px + 0px) #2563eb, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    border-color: #2563eb;
}
.form-input::-moz-placeholder, .form-textarea::-moz-placeholder{
    color: #6b7280;
    opacity: 1;
}
.form-input::placeholder,.form-textarea::placeholder{
    color: #6b7280;
    opacity: 1;
}
.form-input::-webkit-datetime-edit-fields-wrapper{
    padding: 0;
}
.form-input::-webkit-date-and-time-value{
    min-height: 1.5em;
    text-align: inherit;
}
.form-input::-webkit-datetime-edit{
    display: inline-flex;
}
.form-input::-webkit-datetime-edit,.form-input::-webkit-datetime-edit-year-field,.form-input::-webkit-datetime-edit-month-field,.form-input::-webkit-datetime-edit-day-field,.form-input::-webkit-datetime-edit-hour-field,.form-input::-webkit-datetime-edit-minute-field,.form-input::-webkit-datetime-edit-second-field,.form-input::-webkit-datetime-edit-millisecond-field,.form-input::-webkit-datetime-edit-meridiem-field{
    padding-top: 0;
    padding-bottom: 0;
}
  .single-order-header-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.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 !important;
}
.absolute{
    position: absolute;
}
.relative{
    position: relative;
}
.sticky{
    position: sticky;
}
.inset-0{
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}
.inset-x-0{
    left: 0px;
    right: 0px;
}
.inset-y-0{
    top: 0px;
    bottom: 0px;
}
.\!left-auto{
    left: auto !important;
}
.\!right-0{
    right: 0px !important;
}
.-top-5{
    top: -1.25rem;
}
.bottom-0{
    bottom: 0px;
}
.bottom-1{
    bottom: 0.25rem;
}
.bottom-4{
    bottom: 1rem;
}
.left-0{
    left: 0px;
}
.left-1\/2{
    left: 50%;
}
.right-0{
    right: 0px;
}
.right-\[-38px\]{
    right: -38px;
}
.top-0{
    top: 0px;
}
.top-1\.5{
    top: 0.375rem;
}
.top-24{
    top: 6rem;
}
.top-4{
    top: 1rem;
}
.top-\[11px\]{
    top: 11px;
}
.top-\[60px\]{
    top: 60px;
}
.top-\[var\(--store-header-height\)\]{
    top: 86px;
    top: var(--store-header-height);
}
.top-full{
    top: 100%;
}
.isolate{
    isolation: isolate;
}
.-z-1{
    z-index: -1;
}
.z-0{
    z-index: 0;
}
.z-1{
    z-index: 1;
}
.z-10{
    z-index: 10;
}
.z-2{
    z-index: 2;
}
.z-50{
    z-index: 50;
}
.z-\[1\]{
    z-index: 1;
}
.z-\[2\]{
    z-index: 2;
}
.z-\[3\]{
    z-index: 3;
}
.z-\[40\]{
    z-index: 40;
}
.z-\[50\]{
    z-index: 50;
}
.z-\[99999\]{
    z-index: 99999;
}
.order-1{
    order: 1;
}
.order-3{
    order: 3;
}
.-m-2{
    margin: -0.5rem;
}
.m-0{
    margin: 0px;
}
.m-auto{
    margin: auto;
}
.\!mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
}
.mx-0{
    margin-left: 0px;
    margin-right: 0px;
}
.mx-1{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}
.mx-1\.5{
    margin-left: 0.375rem;
    margin-right: 0.375rem;
}
.mx-2{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}
.mx-auto{
    margin-left: auto;
    margin-right: auto;
}
.my-4{
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.\!mt-0{
    margin-top: 0px !important;
}
.-mb-52{
    margin-bottom: -13rem;
}
.-mt-62{
    margin-top: -248px;
}
.mb-0{
    margin-bottom: 0px;
}
.mb-1{
    margin-bottom: 0.25rem;
}
.mb-1\.5{
    margin-bottom: 0.375rem;
}
.mb-10{
    margin-bottom: 2.5rem;
}
.mb-12{
    margin-bottom: 3rem;
}
.mb-2{
    margin-bottom: 0.5rem;
}
.mb-2\.5{
    margin-bottom: 0.625rem;
}
.mb-20{
    margin-bottom: 5rem;
}
.mb-3{
    margin-bottom: 0.75rem;
}
.mb-3\.5{
    margin-bottom: 0.875rem;
}
.mb-4{
    margin-bottom: 1rem;
}
.mb-5{
    margin-bottom: 1.25rem;
}
.mb-6{
    margin-bottom: 1.5rem;
}
.mb-8{
    margin-bottom: 2rem;
}
.mb-\[clamp\(28px\2c 4vw\2c 48px\)\]{
    margin-bottom: max(28px, min(4vw, 48px));
}
.ml-4{
    margin-left: 1rem;
}
.mr-1{
    margin-right: 0.25rem;
}
.mr-2{
    margin-right: 0.5rem;
}
.ms-\[calc\(var\(--ey-tricker-gap\)-14px\)\]{
    margin-left: calc(var(--ey-tricker-gap) - 14px);
}
.ms-auto{
    margin-left: auto;
}
.mt-1{
    margin-top: 0.25rem;
}
.mt-10{
    margin-top: 2.5rem;
}
.mt-12{
    margin-top: 3rem;
}
.mt-16{
    margin-top: 4rem;
}
.mt-2{
    margin-top: 0.5rem;
}
.mt-20{
    margin-top: 5rem;
}
.mt-3{
    margin-top: 0.75rem;
}
.mt-4{
    margin-top: 1rem;
}
.mt-5{
    margin-top: 1.25rem;
}
.mt-6{
    margin-top: 1.5rem;
}
.mt-8{
    margin-top: 2rem;
}
.mt-\[20px\]{
    margin-top: 20px;
}
.mt-\[30px\]{
    margin-top: 30px;
}
.mt-\[60px\]{
    margin-top: 60px;
}
.mt-auto{
    margin-top: auto;
}
.line-clamp-1{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.line-clamp-2{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.line-clamp-3{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.block{
    display: block;
}
.inline-block{
    display: inline-block;
}
.inline{
    display: inline;
}
.\!flex{
    display: flex !important;
}
.flex{
    display: flex;
}
.inline-flex{
    display: inline-flex;
}
.table{
    display: table;
}
.flow-root{
    display: flow-root;
}
.grid{
    display: grid;
}
.hidden{
    display: none;
}
.aspect-\[3\/2\]{
    aspect-ratio: 3/2;
}
.aspect-\[345\/166\]{
    aspect-ratio: 345/166;
}
.aspect-square{
    aspect-ratio: 1 / 1;
}
.aspect-video{
    aspect-ratio: 16 / 9;
}
.size-10{
    width: 2.5rem;
    height: 2.5rem;
}
.size-12{
    width: 3rem;
    height: 3rem;
}
.size-14{
    width: 3.5rem;
    height: 3.5rem;
}
.size-4{
    width: 1rem;
    height: 1rem;
}
.size-5{
    width: 1.25rem;
    height: 1.25rem;
}
.size-6{
    width: 1.5rem;
    height: 1.5rem;
}
.size-8{
    width: 2rem;
    height: 2rem;
}
.size-\[114px\]{
    width: 114px;
    height: 114px;
}
.size-\[26px\]{
    width: 26px;
    height: 26px;
}
.size-\[30px\]{
    width: 30px;
    height: 30px;
}
.size-\[72px\]{
    width: 72px;
    height: 72px;
}
.\!h-36{
    height: 9rem !important;
}
.h-0{
    height: 0px;
}
.h-0\.5{
    height: 0.125rem;
}
.h-10{
    height: 2.5rem;
}
.h-12{
    height: 3rem;
}
.h-14{
    height: 3.5rem;
}
.h-16{
    height: 4rem;
}
.h-2\.5{
    height: 0.625rem;
}
.h-20{
    height: 5rem;
}
.h-24{
    height: 6rem;
}
.h-4{
    height: 1rem;
}
.h-40{
    height: 10rem;
}
.h-5{
    height: 1.25rem;
}
.h-52{
    height: 13rem;
}
.h-6{
    height: 1.5rem;
}
.h-62{
    height: 248px;
}
.h-7{
    height: 1.75rem;
}
.h-9{
    height: 2.25rem;
}
.h-\[110px\]{
    height: 110px;
}
.h-\[14px\]{
    height: 14px;
}
.h-\[18px\]{
    height: 18px;
}
.h-\[240px\]{
    height: 240px;
}
.h-\[26px\]{
    height: 26px;
}
.h-\[280px\]{
    height: 280px;
}
.h-\[30px\]{
    height: 30px;
}
.h-\[34px\]{
    height: 34px;
}
.h-\[38px\]{
    height: 38px;
}
.h-\[5px\]{
    height: 5px;
}
.h-\[64px\]{
    height: 64px;
}
.h-\[818px\]{
    height: 818px;
}
.h-\[86px\]{
    height: 86px;
}
.h-\[88px\]{
    height: 88px;
}
.h-\[var\(--ey-tricker-image-height\)\]{
    height: var(--ey-tricker-image-height);
}
.h-auto{
    height: auto;
}
.h-banner{
    height: 200px;
}
.h-full{
    height: 100%;
}
.h-lg-banner{
    height: 428px;
}
.h-px{
    height: 1px;
}
.max-h-0{
    max-height: 0px;
}
.max-h-8{
    max-height: 2rem;
}
.max-h-\[250px\]{
    max-height: 250px;
}
.max-h-\[300px\]{
    max-height: 300px;
}
.max-h-\[40px\]{
    max-height: 40px;
}
.max-h-\[calc\(100dvh-var\(--store-header-height\)-12px\)\]{
    max-height: calc(100dvh - 86px - 12px);
    max-height: calc(100dvh - var(--store-header-height) - 12px);
}
.max-h-\[min\(70vh\2c 520px\)\]{
    max-height: min(70vh, 520px);
}
.max-h-\[min\(70vh\2c 620px\)\]{
    max-height: min(70vh, 620px);
}
.max-h-full{
    max-height: 100%;
}
.min-h-0{
    min-height: 0px;
}
.min-h-6{
    min-height: 1.5rem;
}
.min-h-7{
    min-height: 1.75rem;
}
.min-h-\[1080px\]{
    min-height: 1080px;
}
.min-h-\[170px\]{
    min-height: 170px;
}
.min-h-\[245px\]{
    min-height: 245px;
}
.min-h-\[24px\]{
    min-height: 24px;
}
.min-h-\[300px\]{
    min-height: 300px;
}
.min-h-\[30px\]{
    min-height: 30px;
}
.min-h-\[34px\]{
    min-height: 34px;
}
.min-h-\[60px\]{
    min-height: 60px;
}
.min-h-\[62px\]{
    min-height: 62px;
}
.min-h-\[var\(--ey-base-height-mobile\)\]{
    min-height: var(--ey-base-height-mobile);
}
.min-h-\[var\(--ey-heading-min-height\2c 160px\)\]{
    min-height: 160px;
    min-height: var(--ey-heading-min-height,160px);
}
.min-h-\[var\(--ey-tricker-icon-size\)\]{
    min-height: var(--ey-tricker-icon-size);
}
.min-h-full{
    min-height: 100%;
}
.\!w-36{
    width: 9rem !important;
}
.\!w-\[160px\]{
    width: 160px !important;
}
.\!w-auto{
    width: auto !important;
}
.w-1\/2{
    width: 50%;
}
.w-10{
    width: 2.5rem;
}
.w-12{
    width: 3rem;
}
.w-16{
    width: 4rem;
}
.w-18{
    width: 4.5rem;
}
.w-20{
    width: 5rem;
}
.w-24{
    width: 6rem;
}
.w-32{
    width: 8rem;
}
.w-4\/6{
    width: 66.666667%;
}
.w-40{
    width: 10rem;
}
.w-5{
    width: 1.25rem;
}
.w-6{
    width: 1.5rem;
}
.w-7{
    width: 1.75rem;
}
.w-9{
    width: 2.25rem;
}
.w-\[100px\]{
    width: 100px;
}
.w-\[110px\]{
    width: 110px;
}
.w-\[24px\]{
    width: 24px;
}
.w-\[26px\]{
    width: 26px;
}
.w-\[30px\]{
    width: 30px;
}
.w-\[34px\]{
    width: 34px;
}
.w-\[50\%\]{
    width: 50%;
}
.w-\[5px\]{
    width: 5px;
}
.w-\[60\%\]{
    width: 60%;
}
.w-\[75\%\]{
    width: 75%;
}
.w-\[88px\]{
    width: 88px;
}
.w-\[calc\(100\%-30px\)\]{
    width: calc(100% - 30px);
}
.w-\[calc\(100vw-40px\)\]{
    width: calc(100vw - 40px);
}
.w-\[clamp\(90px\2c 14vw\2c 180px\)\]{
    width: max(90px, min(14vw, 180px));
}
.w-\[min\(19\.1vw\2c 250px\)\]{
    width: min(19.1vw, 250px);
}
.w-\[min\(calc\(100\%_-_40px\)\2c 1310px\)\]{
    width: min(calc(100% - 40px), 1310px);
}
.w-auto{
    width: auto;
}
.w-fit{
    width: -moz-fit-content;
    width: fit-content;
}
.w-full{
    width: 100%;
}
.w-max{
    width: -moz-max-content;
    width: max-content;
}
.w-px{
    width: 1px;
}
.min-w-0{
    min-width: 0px;
}
.min-w-\[120px\]{
    min-width: 120px;
}
.min-w-\[150px\]{
    min-width: 150px;
}
.min-w-\[260px\]{
    min-width: 260px;
}
.min-w-\[300px\]{
    min-width: 300px;
}
.min-w-\[30px\]{
    min-width: 30px;
}
.min-w-\[36px\]{
    min-width: 36px;
}
.min-w-\[var\(--ey-tricker-icon-size\)\]{
    min-width: var(--ey-tricker-icon-size);
}
.min-w-full{
    min-width: 100%;
}
.min-w-max{
    min-width: -moz-max-content;
    min-width: max-content;
}
.max-w-16{
    max-width: 4rem;
}
.max-w-3xl{
    max-width: 48rem;
}
.max-w-\[11ch\]{
    max-width: 11ch;
}
.max-w-\[1230px\]{
    max-width: 1230px;
}
.max-w-\[1280px\]{
    max-width: 1280px;
}
.max-w-\[1310px\]{
    max-width: 1310px;
}
.max-w-\[140px\]{
    max-width: 140px;
}
.max-w-\[296px\]{
    max-width: 296px;
}
.max-w-\[360px\]{
    max-width: 360px;
}
.max-w-\[400px\]{
    max-width: 400px;
}
.max-w-\[520px\]{
    max-width: 520px;
}
.max-w-\[550px\]{
    max-width: 550px;
}
.max-w-\[560px\]{
    max-width: 560px;
}
.max-w-\[620px\]{
    max-width: 620px;
}
.max-w-\[670px\]{
    max-width: 670px;
}
.max-w-\[800px\]{
    max-width: 800px;
}
.max-w-\[960px\]{
    max-width: 960px;
}
.max-w-\[971px\]{
    max-width: 971px;
}
.max-w-\[calc\(100vw-30px\)\]{
    max-width: calc(100vw - 30px);
}
.max-w-\[min\(312px\2c 22vw\)\]{
    max-width: min(312px, 22vw);
}
.max-w-\[min\(360px\2c calc\(100vw-30px\)\)\]{
    max-width: min(360px, calc(100vw - 30px));
}
.max-w-\[var\(--ey-heading-title-width\2c 830px\)\]{
    max-width: 830px;
    max-width: var(--ey-heading-title-width,830px);
}
.max-w-full{
    max-width: 100%;
}
.max-w-lg{
    max-width: 32rem;
}
.max-w-md{
    max-width: 28rem;
}
.max-w-xs{
    max-width: 20rem;
}
.flex-1{
    flex: 1 1 0%;
}
.flex-\[0_0_48px\]{
    flex: 0 0 48px;
}
.flex-\[0_0_var\(--ey-heading-aside-width\2c 338px\)\]{
    flex: 0 0 338px;
    flex: 0 0 var(--ey-heading-aside-width,338px);
}
.flex-auto{
    flex: 1 1 auto;
}
.flex-none{
    flex: none;
}
.flex-shrink-0{
    flex-shrink: 0;
}
.shrink-0{
    flex-shrink: 0;
}
.flex-grow{
    flex-grow: 1;
}
.flex-grow-0{
    flex-grow: 0;
}
.basis-6{
    flex-basis: 1.5rem;
}
.table-fixed{
    table-layout: fixed;
}
.origin-bottom{
    transform-origin: bottom;
}
.\!translate-x-0{
    --tw-translate-x: 0px !important;
    transform: translate(0px, 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)) !important;
    transform: translate(var(--tw-translate-x), 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)) !important;
}
.\!translate-y-0{
    --tw-translate-y: 0px !important;
    transform: translate(var(--tw-translate-x), 0px) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
    transform: translate(var(--tw-translate-x), 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)) !important;
}
.-translate-x-1\/2{
    --tw-translate-x: -50%;
    transform: translate(-50%, 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));
    transform: translate(var(--tw-translate-x), 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));
}
.-translate-y-3{
    --tw-translate-y: -0.75rem;
    transform: translate(var(--tw-translate-x), -0.75rem) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), 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));
}
.translate-y-0{
    --tw-translate-y: 0px;
    transform: translate(var(--tw-translate-x), 0px) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), 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));
}
.translate-y-3{
    --tw-translate-y: 0.75rem;
    transform: translate(var(--tw-translate-x), 0.75rem) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), 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));
}
.translate-y-4{
    --tw-translate-y: 1rem;
    transform: translate(var(--tw-translate-x), 1rem) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), 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));
}
.translate-y-full{
    --tw-translate-y: 100%;
    transform: translate(var(--tw-translate-x), 100%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), 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));
}
.rotate-0{
    --tw-rotate: 0deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(0deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), 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));
}
.rotate-45{
    --tw-rotate: 45deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(45deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), 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));
}
.scale-\[1\.001\]{
    --tw-scale-x: 1.001;
    --tw-scale-y: 1.001;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(1.001) scaleY(1.001);
    transform: translate(var(--tw-translate-x), 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));
}
.\!scale-y-100{
    --tw-scale-y: 1 !important;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(1) !important;
    transform: translate(var(--tw-translate-x), 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)) !important;
}
.scale-y-0{
    --tw-scale-y: 0;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(0);
    transform: translate(var(--tw-translate-x), 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));
}
.transform{
    transform: translate(var(--tw-translate-x), 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));
}
.cursor-pointer{
    cursor: pointer;
}
.touch-manipulation{
    touch-action: manipulation;
}
.select-none{
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}
.resize-y{
    resize: vertical;
}
.resize{
    resize: both;
}
.list-none{
    list-style-type: none;
}
.grid-flow-row{
    grid-auto-flow: row;
}
.grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-\[repeat\(2\2c minmax\(0\2c 1fr\)\)\]{
    grid-template-columns: repeat(2,minmax(0,1fr));
}
.flex-row{
    flex-direction: row;
}
.flex-col{
    flex-direction: column;
}
.flex-wrap{
    flex-wrap: wrap;
}
.flex-nowrap{
    flex-wrap: nowrap;
}
.place-items-center{
    align-items: center;
    justify-items: center;
    place-items: center;
}
.items-start{
    align-items: flex-start;
}
.items-end{
    align-items: flex-end;
}
.items-center{
    align-items: center;
}
.items-baseline{
    align-items: baseline;
}
.\!justify-start{
    justify-content: flex-start !important;
}
.justify-start{
    justify-content: flex-start;
}
.justify-end{
    justify-content: flex-end;
}
.justify-center{
    justify-content: center;
}
.justify-between{
    justify-content: space-between;
}
.gap-0{
    gap: 0px;
}
.gap-0\.5{
    gap: 0.125rem;
}
.gap-1{
    gap: 0.25rem;
}
.gap-10{
    gap: 2.5rem;
}
.gap-2{
    gap: 0.5rem;
}
.gap-2\.5{
    gap: 0.625rem;
}
.gap-3{
    gap: 0.75rem;
}
.gap-4{
    gap: 1rem;
}
.gap-5{
    gap: 1.25rem;
}
.gap-6{
    gap: 1.5rem;
}
.gap-7{
    gap: 1.75rem;
}
.gap-8{
    gap: 2rem;
}
.gap-\[160px\]{
    gap: 160px;
}
.gap-\[20px\]{
    gap: 20px;
}
.gap-\[30px\]{
    gap: 30px;
}
.gap-\[38px\]{
    gap: 38px;
}
.gap-\[3px\]{
    gap: 3px;
}
.gap-\[50px\]{
    gap: 50px;
}
.gap-\[6px\]{
    gap: 6px;
}
.gap-\[var\(--ey-tricker-gap\)\]{
    gap: var(--ey-tricker-gap);
}
.gap-px{
    gap: 1px;
}
.gap-x-4{
    -moz-column-gap: 1rem;
         column-gap: 1rem;
}
.gap-x-5{
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
}
.gap-x-6{
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
}
.gap-y-12{
    row-gap: 3rem;
}
.gap-y-3{
    row-gap: 0.75rem;
}
.gap-y-4{
    row-gap: 1rem;
}
.space-x-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.25rem * 0);
    margin-right: calc(0.25rem * var(--tw-space-x-reverse));
    margin-left: calc(0.25rem * (1 - 0));
    margin-left: calc(0.25rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(0.25rem * calc(1 - 0));
    margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * 0);
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * (1 - 0));
    margin-left: calc(0.5rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(0.5rem * calc(1 - 0));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.625rem * 0);
    margin-right: calc(0.625rem * var(--tw-space-x-reverse));
    margin-left: calc(0.625rem * (1 - 0));
    margin-left: calc(0.625rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(0.625rem * calc(1 - 0));
    margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.75rem * 0);
    margin-right: calc(0.75rem * var(--tw-space-x-reverse));
    margin-left: calc(0.75rem * (1 - 0));
    margin-left: calc(0.75rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(0.75rem * calc(1 - 0));
    margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * 0);
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * (1 - 0));
    margin-left: calc(1rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(1rem * calc(1 - 0));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1.25rem * 0);
    margin-right: calc(1.25rem * var(--tw-space-x-reverse));
    margin-left: calc(1.25rem * (1 - 0));
    margin-left: calc(1.25rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(1.25rem * calc(1 - 0));
    margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1.5rem * 0);
    margin-right: calc(1.5rem * var(--tw-space-x-reverse));
    margin-left: calc(1.5rem * (1 - 0));
    margin-left: calc(1.5rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(1.5rem * calc(1 - 0));
    margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.25rem * (1 - 0));
    margin-top: calc(0.25rem * (1 - var(--tw-space-y-reverse)));
    margin-top: calc(0.25rem * calc(1 - 0));
    margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.25rem * 0);
    margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * (1 - 0));
    margin-top: calc(1rem * (1 - var(--tw-space-y-reverse)));
    margin-top: calc(1rem * calc(1 - 0));
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * 0);
    margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1.25rem * (1 - 0));
    margin-top: calc(1.25rem * (1 - var(--tw-space-y-reverse)));
    margin-top: calc(1.25rem * calc(1 - 0));
    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.25rem * 0);
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(2rem * (1 - 0));
    margin-top: calc(2rem * (1 - var(--tw-space-y-reverse)));
    margin-top: calc(2rem * calc(1 - 0));
    margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(2rem * 0);
    margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.space-y-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1px * (1 - 0));
    margin-top: calc(1px * (1 - var(--tw-space-y-reverse)));
    margin-top: calc(1px * calc(1 - 0));
    margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1px * 0);
    margin-bottom: calc(1px * var(--tw-space-y-reverse));
}
.divide-y > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0;
    border-top-width: calc(1px * (1 - 0));
    border-top-width: calc(1px * (1 - var(--tw-divide-y-reverse)));
    border-top-width: calc(1px * calc(1 - 0));
    border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(1px * 0);
    border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.self-start{
    align-self: flex-start;
}
.self-stretch{
    align-self: stretch;
}
.overflow-auto{
    overflow: auto;
}
.overflow-hidden{
    overflow: hidden;
}
.overflow-visible{
    overflow: visible;
}
.overflow-y-auto{
    overflow-y: auto;
}
.overflow-x-hidden{
    overflow-x: hidden;
}
.overscroll-contain{
    overscroll-behavior: contain;
}
.truncate{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.text-ellipsis{
    text-overflow: ellipsis;
}
.whitespace-nowrap{
    white-space: nowrap;
}
.text-balance{
    text-wrap: balance;
}
.break-words{
    word-wrap: break-word;
}
.break-all{
    word-break: break-all;
}
.\!rounded-3xl{
    border-radius: 1.5rem !important;
}
.rounded{
    border-radius: .75rem;
}
.rounded-2xl{
    border-radius: 1rem;
}
.rounded-3xl{
    border-radius: 1.5rem;
}
.rounded-\[var\(--ey-product-gallery-radius\2c 0px\)\]{
    border-radius: 0px;
    border-radius: var(--ey-product-gallery-radius,0px);
}
.rounded-full{
    border-radius: 9999px;
}
.rounded-md{
    border-radius: 0.375rem;
}
.rounded-none{
    border-radius: 0px;
}
.rounded-sm{
    border-radius: 0.125rem;
}
.rounded-t-md{
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
}
.border{
    border-width: 1px;
}
.border-0{
    border-width: 0px;
}
.border-2{
    border-width: 2px;
}
.border-b{
    border-bottom-width: 1px;
}
.border-b-\[1px\]{
    border-bottom-width: 1px;
}
.border-l{
    border-left-width: 1px;
}
.border-t{
    border-top-width: 1px;
}
.\!border-main-dark{
    border-color: var(--color-main-dark) !important;
}
.border-\[\#bababa\]{
    --tw-border-opacity: 1;
    border-color: rgba(186, 186, 186, 1);
    border-color: rgba(186, 186, 186, var(--tw-border-opacity, 1));
}
.border-\[\#e5e5e5\]{
    --tw-border-opacity: 1;
    border-color: rgba(229, 229, 229, 1);
    border-color: rgba(229, 229, 229, var(--tw-border-opacity, 1));
}
.border-\[\#f0f0f0\]{
    --tw-border-opacity: 1;
    border-color: rgba(240, 240, 240, 1);
    border-color: rgba(240, 240, 240, var(--tw-border-opacity, 1));
}
.border-\[color-mix\(in_srgb\2c var\(--color-main-dark\)_20\%\2c transparent\)\]{
    border-color: color-mix(in srgb,var(--color-main-dark) 20%,transparent);
}
.border-\[color-mix\(in_srgb\2c var\(--color-main-dark\)_25\%\2c transparent\)\]{
    border-color: color-mix(in srgb,var(--color-main-dark) 25%,transparent);
}
.border-\[rgb\(23_23_23_\/_60\%\)\]{
    border-color: rgba(23, 23, 23, 0.6);
}
.border-\[var\(--ey-contact-text\)\]{
    border-color: var(--ey-contact-text);
}
.border-blue-200{
    --tw-border-opacity: 1;
    border-color: rgba(191, 219, 254, 1);
    border-color: rgba(191, 219, 254, var(--tw-border-opacity, 1));
}
.border-current{
    border-color: currentColor;
}
.border-gray-100{
    --tw-border-opacity: 1;
    border-color: rgba(243, 244, 246, 1);
    border-color: rgba(243, 244, 246, var(--tw-border-opacity, 1));
}
.border-gray-200{
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, 1);
    border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
}
.border-green-300{
    --tw-border-opacity: 1;
    border-color: rgba(134, 239, 172, 1);
    border-color: rgba(134, 239, 172, var(--tw-border-opacity, 1));
}
.border-main-dark{
    border-color: var(--color-main-dark);
}
.border-neutral-200{
    --tw-border-opacity: 1;
    border-color: rgba(229, 229, 229, 1);
    border-color: rgba(229, 229, 229, var(--tw-border-opacity, 1));
}
.border-primary{
    border-color: #414042;
    border-color: var(--color-primary);
}
.border-red-600{
    --tw-border-opacity: 1;
    border-color: rgba(220, 38, 38, 1);
    border-color: rgba(220, 38, 38, var(--tw-border-opacity, 1));
}
.border-white\/10{
    border-color: rgba(255, 255, 255, 0.1);
}
.border-white\/40{
    border-color: rgba(255, 255, 255, 0.4);
}
.bg-\[\#262626\]\/80{
    background-color: rgba(38, 38, 38, 0.8);
}
.bg-\[\#deddd9\]{
    --tw-bg-opacity: 1;
    background-color: rgba(222, 221, 217, 1);
    background-color: rgba(222, 221, 217, var(--tw-bg-opacity, 1));
}
.bg-\[\#e9e7e1\]{
    --tw-bg-opacity: 1;
    background-color: rgba(233, 231, 225, 1);
    background-color: rgba(233, 231, 225, var(--tw-bg-opacity, 1));
}
.bg-\[\#f5f5f3\]{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 245, 243, 1);
    background-color: rgba(245, 245, 243, var(--tw-bg-opacity, 1));
}
.bg-\[\#f7f6f3\]{
    --tw-bg-opacity: 1;
    background-color: rgba(247, 246, 243, 1);
    background-color: rgba(247, 246, 243, var(--tw-bg-opacity, 1));
}
.bg-\[var\(--ey-about-bg\)\]{
    background-color: var(--ey-about-bg);
}
.bg-\[var\(--ey-about-play-bg\)\]{
    background-color: var(--ey-about-play-bg);
}
.bg-\[var\(--ey-brand-story-background\)\]{
    background-color: var(--ey-brand-story-background);
}
.bg-\[var\(--ey-contact-bg\)\]{
    background-color: var(--ey-contact-bg);
}
.bg-\[var\(--ey-customers-background\)\]{
    background-color: var(--ey-customers-background);
}
.bg-\[var\(--ey-customers-card\)\]{
    background-color: var(--ey-customers-card);
}
.bg-\[var\(--ey-customers-muted\)\]{
    background-color: var(--ey-customers-muted);
}
.bg-\[var\(--ey-follow-background\)\]{
    background-color: var(--ey-follow-background);
}
.bg-\[var\(--ey-tricker-bg\)\]{
    background-color: var(--ey-tricker-bg);
}
.bg-\[var\(--ey-tricker-separator\)\]{
    background-color: var(--ey-tricker-separator);
}
.bg-\[var\(--ey-vision-accent\)\]{
    background-color: var(--ey-vision-accent);
}
.bg-\[var\(--ey-vision-background\)\]{
    background-color: var(--ey-vision-background);
}
.bg-\[var\(--ey-vision-card-background\)\]{
    background-color: var(--ey-vision-card-background);
}
.bg-black{
    --tw-bg-opacity: 1;
    background-color: rgba(0, 0, 0, 1);
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity, 1));
}
.bg-black\/10{
    background-color: rgba(0, 0, 0, 0.1);
}
.bg-black\/50{
    background-color: rgba(0, 0, 0, 0.5);
}
.bg-black\/60{
    background-color: rgba(0, 0, 0, 0.6);
}
.bg-black\/\[0\.04\]{
    background-color: rgba(0, 0, 0, 0.04);
}
.bg-blue-50{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 246, 255, 1);
    background-color: rgba(239, 246, 255, var(--tw-bg-opacity, 1));
}
.bg-current{
    background-color: currentColor;
}
.bg-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(29, 31, 31, 1);
    background-color: rgba(29, 31, 31, var(--tw-bg-opacity, 1));
}
.bg-gray-100{
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, 1);
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity, 1));
}
.bg-gray-50{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 250, 251, 1);
    background-color: rgba(249, 250, 251, var(--tw-bg-opacity, 1));
}
.bg-green-50{
    --tw-bg-opacity: 1;
    background-color: rgba(240, 253, 244, 1);
    background-color: rgba(240, 253, 244, var(--tw-bg-opacity, 1));
}
.bg-main-dark{
    background-color: var(--color-main-dark);
}
.bg-primary{
    background-color: #414042;
    background-color: var(--color-primary);
}
.bg-red-600{
    --tw-bg-opacity: 1;
    background-color: rgba(220, 38, 38, 1);
    background-color: rgba(220, 38, 38, var(--tw-bg-opacity, 1));
}
.bg-red-600\/10{
    background-color: rgba(220, 38, 38, 0.1);
}
.bg-transparent{
    background-color: transparent;
}
.bg-white{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
}
.bg-white\/15{
    background-color: rgba(255, 255, 255, 0.15);
}
.bg-white\/95{
    background-color: rgba(255, 255, 255, 0.95);
}
.bg-cover{
    background-size: cover;
}
.bg-center{
    background-position: center;
}
.bg-no-repeat{
    background-repeat: no-repeat;
}
.fill-\[rgba\(23\2c 23\2c 23\2c 0\.12\)\]{
    fill: rgba(23,23,23,0.12);
}
.fill-\[var\(--ey-customers-muted\)\]{
    fill: var(--ey-customers-muted);
}
.fill-\[var\(--ey-customers-star\)\]{
    fill: var(--ey-customers-star);
}
.fill-current{
    fill: currentColor;
}
.object-contain{
    -o-object-fit: contain;
       object-fit: contain;
}
.object-cover{
    -o-object-fit: cover;
       object-fit: cover;
}
.object-\[50\%_0\%\]{
    -o-object-position: 50% 0%;
       object-position: 50% 0%;
}
.object-center{
    -o-object-position: center;
       object-position: center;
}
.object-top{
    -o-object-position: top;
       object-position: top;
}
.\!p-0{
    padding: 0px !important;
}
.p-0{
    padding: 0px;
}
.p-12{
    padding: 3rem;
}
.p-2{
    padding: 0.5rem;
}
.p-3{
    padding: 0.75rem;
}
.p-4{
    padding: 1rem;
}
.p-5{
    padding: 1.25rem;
}
.p-6{
    padding: 1.5rem;
}
.p-8{
    padding: 2rem;
}
.p-\[18px\]{
    padding: 18px;
}
.p-\[20px\]{
    padding: 20px;
}
.p-\[30px\]{
    padding: 30px;
}
.\!py-1\.5{
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
}
.px-1{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}
.px-2{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
.px-4{
    padding-left: 1rem;
    padding-right: 1rem;
}
.px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.px-8{
    padding-left: 2rem;
    padding-right: 2rem;
}
.px-\[17px\]{
    padding-left: 17px;
    padding-right: 17px;
}
.px-\[30px\]{
    padding-left: 30px;
    padding-right: 30px;
}
.py-1{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
.py-1\.5{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}
.py-10{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
.py-16{
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.py-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.py-2\.5{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}
.py-3{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.py-3\.5{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}
.py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.py-5{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}
.py-6{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.py-\[120px\]{
    padding-top: 120px;
    padding-bottom: 120px;
}
.py-\[17px\]{
    padding-top: 17px;
    padding-bottom: 17px;
}
.py-\[18px\]{
    padding-top: 18px;
    padding-bottom: 18px;
}
.py-\[60px\]{
    padding-top: 60px;
    padding-bottom: 60px;
}
.py-\[var\(--ey-tricker-padding-desktop\)\]{
    padding-top: var(--ey-tricker-padding-desktop);
    padding-bottom: var(--ey-tricker-padding-desktop);
}
.\!pt-1{
    padding-top: 0.25rem !important;
}
.pb-0{
    padding-bottom: 0px;
}
.pb-1{
    padding-bottom: 0.25rem;
}
.pb-10{
    padding-bottom: 2.5rem;
}
.pb-16{
    padding-bottom: 4rem;
}
.pb-24{
    padding-bottom: 6rem;
}
.pb-5{
    padding-bottom: 1.25rem;
}
.pb-6{
    padding-bottom: 1.5rem;
}
.pb-8{
    padding-bottom: 2rem;
}
.pb-\[25px\]{
    padding-bottom: 25px;
}
.pb-\[392px\]{
    padding-bottom: 392px;
}
.pb-\[60px\]{
    padding-bottom: 60px;
}
.pb-\[var\(--ey-about-padding-bottom\)\]{
    padding-bottom: var(--ey-about-padding-bottom);
}
.pl-5{
    padding-left: 1.25rem;
}
.pr-14{
    padding-right: 3.5rem;
}
.ps-\[calc\(var\(--menu-depth\2c 0\)\*14px\)\]{
    padding-left: calc(0 * 14px);
    padding-left: calc(var(--menu-depth,0) * 14px);
}
.ps-\[var\(--ey-tricker-gap\)\]{
    padding-left: var(--ey-tricker-gap);
}
.pt-0{
    padding-top: 0px;
}
.pt-1{
    padding-top: 0.25rem;
}
.pt-12{
    padding-top: 3rem;
}
.pt-16{
    padding-top: 4rem;
}
.pt-2{
    padding-top: 0.5rem;
}
.pt-24{
    padding-top: 6rem;
}
.pt-3{
    padding-top: 0.75rem;
}
.pt-4{
    padding-top: 1rem;
}
.pt-5{
    padding-top: 1.25rem;
}
.pt-6{
    padding-top: 1.5rem;
}
.pt-8{
    padding-top: 2rem;
}
.pt-\[120px\]{
    padding-top: 120px;
}
.pt-\[18px\]{
    padding-top: 18px;
}
.pt-\[28px\]{
    padding-top: 28px;
}
.pt-\[30px\]{
    padding-top: 30px;
}
.pt-\[534px\]{
    padding-top: 534px;
}
.pt-\[var\(--ey-about-padding-top\)\]{
    padding-top: var(--ey-about-padding-top);
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}
.text-start{
    text-align: left;
}
.text-end{
    text-align: right;
}
.align-top{
    vertical-align: top;
}
.align-middle{
    vertical-align: middle;
}
.align-bottom{
    vertical-align: bottom;
}
.font-sans{
    font-family: "DINNextLTArabic", -apple-system, BlinkMacSystemFont;
    font-family: var(--font-main), -apple-system, BlinkMacSystemFont;
}
.text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
}
.text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
}
.text-6xl{
    font-size: 3.75rem;
    line-height: 1;
}
.text-7xl{
    font-size: 4.5rem;
    line-height: 1;
}
.text-\[20px\]{
    font-size: 20px;
}
.text-\[22px\]{
    font-size: 22px;
}
.text-\[28px\]{
    font-size: 28px;
}
.text-\[40px\]{
    font-size: 40px;
}
.text-\[80px\]{
    font-size: 80px;
}
.text-\[clamp\(36px\2c 7vw\2c 84px\)\]{
    font-size: max(36px, min(7vw, 84px));
}
.text-\[clamp\(48px\2c 6\.25vw\2c 80px\)\]{
    font-size: max(48px, min(6.25vw, 80px));
}
.text-\[length\:var\(--ey-base-title-mobile\)\]{
    font-size: var(--ey-base-title-mobile);
}
.text-\[length\:var\(--ey-heading-description-size\2c 24px\)\]{
    font-size: 24px;
    font-size: var(--ey-heading-description-size,24px);
}
.text-\[length\:var\(--ey-heading-title-size\2c 80px\)\]{
    font-size: 80px;
    font-size: var(--ey-heading-title-size,80px);
}
.text-\[length\:var\(--ey-tricker-icon-size\)\]{
    font-size: var(--ey-tricker-icon-size);
}
.text-base{
    font-size: 1rem;
    line-height: 1.5rem;
}
.text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
}
.text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.text-xs{
    font-size: 0.75rem;
    line-height: 1rem;
}
.font-bold{
    font-weight: 700;
}
.font-medium{
    font-weight: 500;
}
.font-normal{
    font-weight: 400;
}
.font-semibold{
    font-weight: 600;
}
.uppercase{
    text-transform: uppercase;
}
.capitalize{
    text-transform: capitalize;
}
.leading-12{
    line-height: 3rem;
}
.leading-4{
    line-height: 1rem;
}
.leading-5{
    line-height: 1.25rem;
}
.leading-6{
    line-height: 1.5rem;
}
.leading-7{
    line-height: 1.75rem;
}
.leading-8{
    line-height: 2rem;
}
.leading-\[\.95\]{
    line-height: .95;
}
.leading-\[0\.95\]{
    line-height: 0.95;
}
.leading-\[1\.15\]{
    line-height: 1.15;
}
.leading-\[1\.2\]{
    line-height: 1.2;
}
.leading-\[1\.33\]{
    line-height: 1.33;
}
.leading-\[1\.35\]{
    line-height: 1.35;
}
.leading-\[1\.48\]{
    line-height: 1.48;
}
.leading-\[1\.4\]{
    line-height: 1.4;
}
.leading-\[1\.55\]{
    line-height: 1.55;
}
.leading-\[1\.65\]{
    line-height: 1.65;
}
.leading-\[1\.66\]{
    line-height: 1.66;
}
.leading-\[1\.7\]{
    line-height: 1.7;
}
.leading-\[var\(--ey-heading-description-line\2c 1\.33\)\]{
    line-height: 1.33;
    line-height: var(--ey-heading-description-line,1.33);
}
.leading-none{
    line-height: 1;
}
.leading-normal{
    line-height: 1.5;
}
.leading-tight{
    line-height: 1.25;
}
.tracking-\[-0\.02em\]{
    letter-spacing: -0.02em;
}
.tracking-\[-0\.06em\]{
    letter-spacing: -0.06em;
}
.tracking-\[-0\.16px\]{
    letter-spacing: -0.16px;
}
.tracking-\[-1\.6px\]{
    letter-spacing: -1.6px;
}
.tracking-\[0\.3px\]{
    letter-spacing: 0.3px;
}
.tracking-\[0\.5px\]{
    letter-spacing: 0.5px;
}
.tracking-normal{
    letter-spacing: 0em;
}
.tracking-tight{
    letter-spacing: -0.025em;
}
.tracking-wider{
    letter-spacing: 0.05em;
}
.tracking-widest{
    letter-spacing: 0.1em;
}
.\!text-primary{
    color: #414042 !important;
    color: var(--color-primary) !important;
}
.\!text-red-500{
    --tw-text-opacity: 1 !important;
    color: rgba(239, 68, 68, 1) !important;
    color: rgba(239, 68, 68, var(--tw-text-opacity, 1)) !important;
}
.\!text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, 1) !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1)) !important;
}
.text-\[\#737373\]{
    --tw-text-opacity: 1;
    color: rgba(115, 115, 115, 1);
    color: rgba(115, 115, 115, var(--tw-text-opacity, 1));
}
.text-\[\#a3a3a3\]{
    --tw-text-opacity: 1;
    color: rgba(163, 163, 163, 1);
    color: rgba(163, 163, 163, var(--tw-text-opacity, 1));
}
.text-\[\#d4d4d4\]{
    --tw-text-opacity: 1;
    color: rgba(212, 212, 212, 1);
    color: rgba(212, 212, 212, var(--tw-text-opacity, 1));
}
.text-\[color-mix\(in_srgb\2c var\(--color-main-dark\)_45\%\2c transparent\)\]{
    color: color-mix(in srgb,var(--color-main-dark) 45%,transparent);
}
.text-\[color-mix\(in_srgb\2c var\(--color-main-dark\)_55\%\2c transparent\)\]{
    color: color-mix(in srgb,var(--color-main-dark) 55%,transparent);
}
.text-\[color-mix\(in_srgb\2c var\(--color-main-dark\)_60\%\2c transparent\)\]{
    color: color-mix(in srgb,var(--color-main-dark) 60%,transparent);
}
.text-\[color-mix\(in_srgb\2c var\(--color-main-dark\)_65\%\2c transparent\)\]{
    color: color-mix(in srgb,var(--color-main-dark) 65%,transparent);
}
.text-\[color-mix\(in_srgb\2c var\(--color-main-dark\)_70\%\2c transparent\)\]{
    color: color-mix(in srgb,var(--color-main-dark) 70%,transparent);
}
.text-\[var\(--ey-about-muted\)\]{
    color: var(--ey-about-muted);
}
.text-\[var\(--ey-about-play-icon\)\]{
    color: var(--ey-about-play-icon);
}
.text-\[var\(--ey-about-text\)\]{
    color: var(--ey-about-text);
}
.text-\[var\(--ey-base-muted\)\]{
    color: var(--ey-base-muted);
}
.text-\[var\(--ey-base-text\)\]{
    color: var(--ey-base-text);
}
.text-\[var\(--ey-brand-story-ink\)\]{
    color: var(--ey-brand-story-ink);
}
.text-\[var\(--ey-brand-story-muted\)\]{
    color: var(--ey-brand-story-muted);
}
.text-\[var\(--ey-contact-muted\)\]{
    color: var(--ey-contact-muted);
}
.text-\[var\(--ey-contact-text\)\]{
    color: var(--ey-contact-text);
}
.text-\[var\(--ey-customers-ink\)\]{
    color: var(--ey-customers-ink);
}
.text-\[var\(--ey-customers-muted\)\]{
    color: var(--ey-customers-muted);
}
.text-\[var\(--ey-follow-ink\)\]{
    color: var(--ey-follow-ink);
}
.text-\[var\(--ey-follow-muted\)\]{
    color: var(--ey-follow-muted);
}
.text-\[var\(--ey-heading-ink\2c var\(--color-main-dark\)\)\]{
    color: var(--ey-heading-ink,var(--color-main-dark));
}
.text-\[var\(--ey-heading-muted\2c rgba\(23\2c 23\2c 23\2c 0\.6\)\)\]{
    color: rgba(23,23,23,0.6);
    color: var(--ey-heading-muted,rgba(23,23,23,0.6));
}
.text-\[var\(--ey-tricker-icon\)\]{
    color: var(--ey-tricker-icon);
}
.text-\[var\(--ey-vision-ink\)\]{
    color: var(--ey-vision-ink);
}
.text-\[var\(--ey-vision-muted\)\]{
    color: var(--ey-vision-muted);
}
.text-\[var\(--footer-text-color\)\]{
    color: var(--footer-text-color);
}
.text-amber-400{
    --tw-text-opacity: 1;
    color: rgba(251, 191, 36, 1);
    color: rgba(251, 191, 36, var(--tw-text-opacity, 1));
}
.text-black{
    --tw-text-opacity: 1;
    color: rgba(0, 0, 0, 1);
    color: rgba(0, 0, 0, var(--tw-text-opacity, 1));
}
.text-blue-500{
    --tw-text-opacity: 1;
    color: rgba(59, 130, 246, 1);
    color: rgba(59, 130, 246, var(--tw-text-opacity, 1));
}
.text-dark{
    --tw-text-opacity: 1;
    color: rgba(29, 31, 31, 1);
    color: rgba(29, 31, 31, var(--tw-text-opacity, 1));
}
.text-gray-400{
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, 1);
    color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
}
.text-gray-500{
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, 1);
    color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}
.text-gray-600{
    --tw-text-opacity: 1;
    color: rgba(75, 85, 99, 1);
    color: rgba(75, 85, 99, var(--tw-text-opacity, 1));
}
.text-gray-700{
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, 1);
    color: rgba(55, 65, 81, var(--tw-text-opacity, 1));
}
.text-gray-800{
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, 1);
    color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
}
.text-gray-900{
    --tw-text-opacity: 1;
    color: rgba(17, 24, 39, 1);
    color: rgba(17, 24, 39, var(--tw-text-opacity, 1));
}
.text-green-500{
    --tw-text-opacity: 1;
    color: rgba(34, 197, 94, 1);
    color: rgba(34, 197, 94, var(--tw-text-opacity, 1));
}
.text-green-600{
    --tw-text-opacity: 1;
    color: rgba(22, 163, 74, 1);
    color: rgba(22, 163, 74, var(--tw-text-opacity, 1));
}
.text-inherit{
    color: inherit;
}
.text-main-dark{
    color: var(--color-main-dark);
}
.text-neutral-400{
    --tw-text-opacity: 1;
    color: rgba(163, 163, 163, 1);
    color: rgba(163, 163, 163, var(--tw-text-opacity, 1));
}
.text-primary{
    color: #414042;
    color: var(--color-primary);
}
.text-primary-reverse{
    color: #ff6767;
    color: var(--color-primary-reverse);
}
.text-red-300{
    --tw-text-opacity: 1;
    color: rgba(252, 165, 165, 1);
    color: rgba(252, 165, 165, var(--tw-text-opacity, 1));
}
.text-red-400{
    --tw-text-opacity: 1;
    color: rgba(248, 113, 113, 1);
    color: rgba(248, 113, 113, var(--tw-text-opacity, 1));
}
.text-red-500{
    --tw-text-opacity: 1;
    color: rgba(239, 68, 68, 1);
    color: rgba(239, 68, 68, var(--tw-text-opacity, 1));
}
.text-red-600{
    --tw-text-opacity: 1;
    color: rgba(220, 38, 38, 1);
    color: rgba(220, 38, 38, var(--tw-text-opacity, 1));
}
.text-white{
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.underline{
    text-decoration-line: underline;
}
.line-through{
    text-decoration-line: line-through;
}
.no-underline{
    text-decoration-line: none;
}
.underline-offset-\[3px\]{
    text-underline-offset: 3px;
}
.\!opacity-50{
    opacity: 0.5 !important;
}
.opacity-0{
    opacity: 0;
}
.opacity-100{
    opacity: 1;
}
.opacity-40{
    opacity: 0.4;
}
.opacity-50{
    opacity: 0.5;
}
.opacity-60{
    opacity: 0.6;
}
.opacity-80{
    opacity: 0.8;
}
.opacity-85{
    opacity: 0.85;
}
.shadow{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.shadow-\[0_-4px_20px_rgba\(0\2c 0\2c 0\2c 0\.08\)\]{
    --tw-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    --tw-shadow-colored: 0 -4px 20px var(--tw-shadow-color);
    box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 -4px 20px rgba(0,0,0,0.08);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.shadow-\[0_20px_50px_rgb\(0_0_0_\/_18\%\)\]{
    --tw-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    --tw-shadow-colored: 0 20px 50px var(--tw-shadow-color);
    box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 20px 50px rgba(0, 0, 0, 0.18);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.shadow-md{
    --tw-shadow: 5px 10px 99px rgba(43,45,52,0.05098);
    --tw-shadow-colored: 5px 10px 99px var(--tw-shadow-color);
    box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 5px 10px 99px rgba(43,45,52,0.05098);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.shadow-none{
    --tw-shadow: 0 0 rgba(0,0,0,0);
    --tw-shadow-colored: 0 0 rgba(0,0,0,0);
    box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.shadow-sm{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.outline-none{
    outline: 2px solid transparent;
    outline-offset: 2px;
}
.outline{
    outline-style: solid;
}
.outline-0{
    outline-width: 0px;
}
.blur{
    --tw-blur: blur(8px);
    filter: blur(8px) 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);
    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);
}
.grayscale{
    --tw-grayscale: grayscale(100%);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) grayscale(100%) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
    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);
}
.filter{
    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);
}
.backdrop-blur-\[17px\]{
    --tw-backdrop-blur: blur(17px);
    backdrop-filter: blur(17px) 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);
    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);
}
.backdrop-blur-md{
    --tw-backdrop-blur: blur(12px);
    backdrop-filter: blur(12px) 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);
    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);
}
.backdrop-blur-sm{
    --tw-backdrop-blur: blur(4px);
    backdrop-filter: blur(4px) 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);
    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);
}
.backdrop-filter{
    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);
}
.transition{
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-\[border-color\2c color\]{
    transition-property: border-color,color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-\[box-shadow\2c transform\]{
    transition-property: box-shadow,transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-\[height\2c opacity\]{
    transition-property: height,opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-\[transform\2c opacity\2c visibility\]{
    transition-property: transform,opacity,visibility;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-all{
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-colors{
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-height{
    transition-property: height;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-opacity{
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-transform{
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.duration-1000{
    transition-duration: 1000ms;
}
.duration-200{
    transition-duration: 200ms;
}
.duration-300{
    transition-duration: 300ms;
}
.duration-500{
    transition-duration: 500ms;
}
.duration-700{
    transition-duration: 700ms;
}
.duration-\[1250ms\]{
    transition-duration: 1250ms;
}
.duration-\[400ms\]{
    transition-duration: 400ms;
}
.duration-\[450ms\]{
    transition-duration: 450ms;
}
.ease-\[cubic-bezier\(\.2\2c \.75\2c \.25\2c 1\)\]{
    transition-timing-function: cubic-bezier(.2,.75,.25,1);
}
.ease-\[cubic-bezier\(0\.22\2c 1\2c 0\.36\2c 1\)\]{
    transition-timing-function: cubic-bezier(0.22,1,0.36,1);
}
.ease-in-out{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.will-change-transform{
    will-change: transform;
}
.\[direction\:ltr\]{
    direction: ltr;
}
:root {
  --infinte-color: #c9c9c9;
  --main-text-color: #231f1e;
  --main-text-color-dark: #2b2d34;
  /* current */
  --color-primary: #414042;
  --color-primary-d: #272628;
  --color-primary-l: #676668;
  --color-primary-reverse: #ff6767;
  --color-text: #7c8082;
  --bg-gray: rgba(198,199,206,0.10196);
  --color-grey: #f5f7f9;
  --color-light-grey: #eeeeee;
  /* font-size */
  --font-sm: 0.8685714286rem;
  /* font-family: ; */
  --font-main: "DINNextLTArabic";
  /* plugins */
  --mm-ocd-width: calc(100% - 51px);
}

.s-apps-icons h3 {
  display: none;
}

body {
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  color: #231f1e;
  color: var(--main-text-color);
  position: relative;
}

html {
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  border: 0;
  margin: 0;
  padding: 0;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-weight: 600;
  margin-bottom: 0px;
}

a {
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: color 0.2s;
}

img {
  max-width: 100%;
}

a:focus {
  outline: none;
  -webkit-text-decoration: none;
  text-decoration: none;
}

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

h1{
    font-size: 1.875rem;
    line-height: 2.25rem;
}

h2{
    font-size: 1.25rem;
    line-height: 1.75rem;
}

h3{
    font-size: 1.25rem;
    line-height: 1.75rem;
  line-height: 38px;
}

.f-color {
  color: #FF6767;
}

h5.subtitle {
  font-size: 16px;
  font-weight: 400;
}

html {
  scroll-behavior: smooth;
}

.cursor-pointer * {
  pointer-events: none;
}

.flip-x {
  transform: scaleX(-1);
}

input[type=file] {
  display: none;
}

body [type=text]:focus, body [type=email]:focus, body [type=url]:focus, body [type=password]:focus, body [type=number]:focus, body [type=date]:focus, body [type=datetime-local]:focus, body [type=month]:focus, body [type=search]:focus, body [type=tel]:focus, body [type=time]:focus, body [type=week]:focus, body [multiple]:focus, body textarea:focus, body select:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
}

.text-start:where([dir="ltr"], [dir="ltr"] *){
    text-align: left;
}

.text-start:where([dir="rtl"], [dir="rtl"] *){
    text-align: right;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

[type=submit] {
  -webkit-appearance: listitem;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.unicode {
  unicode-bidi: plaintext;
}

.spinner-loader {
  border-right-color: #414042 !important;
  border-right-color: var(--color-primary) !important;
}
.spinner-loader.reverse {
  border-right-color: #9f7171 !important;
  background-color: #f98181;
}

.hide-scroll {
  /* hide scrollbar but allow scrolling */
  -ms-overflow-style: none;
  /* for Internet Explorer, Edge */
  scrollbar-width: none;
  /* for Firefox */
  overflow-y: scroll;
}
.hide-scroll::-webkit-scrollbar {
  display: none;
  /* for Chrome, Safari, and Opera */
}

.remove-item-btn:after {
  content: "\ea47";
  font-family: "sallaicons" !important;
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cart-thumb {
  position: fixed;
  z-index: 30;
  transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

body.fslightbox-open #tidio-chat-iframe,
body.fslightbox-open .fb_reset,
body.fslightbox-open [id^=gb-widget], body.modal-open #tidio-chat-iframe,
body.modal-open .fb_reset,
body.modal-open [id^=gb-widget] {
  display: none !important;
}

.loader:before {
  content: "";
  opacity: 1;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid;
  border-top-color: #414042;
  border-top-color: var(--color-primary);
  border-bottom-color: #eee;
  border-left-color: #414042;
  border-left-color: var(--color-primary);
  border-right-color: #eee;
  animation: loader 1s ease-in-out infinite;
}
.btn--danger .loader:before {
  border-top-color: #ff6767;
  border-left-color: #ff6767;
}
.loader--small:before {
  width: 16px;
  height: 16px;
}

@keyframes loader {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
.animated {
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

@keyframes pulse-motion {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse-motion {
  animation-name: pulse-motion;
  animation-timing-function: ease-in-out;
}

/*
** Single page
*/
.content .content-entry img {
  margin: 15px 0 25px;
}
.content .content-entry ul, .content .content-entry li {
  list-style: inherit !important;
}
.content .content-entry ol {
  list-style: auto !important;
}

/* Components Init*/
salla-modal:not(.hydrated) {
  display: none;
}

/* video aspect ratio*/
.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.videoWrapper > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-width: initial;
}

.grid-trigger{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
    display: flex;
    height: 2.5rem;
    width: 2.5rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    font-size: 1.25rem;
    line-height: 1.75rem;
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, 1);
    color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
}

.grid-trigger * {
  pointer-events: none;
}

.flex-center{
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-between{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.grow-0 {
  flex-grow: 0 !important;
}

.basis-0 {
  flex-basis: 0;
}

.gradient-bg{
    --tw-gradient-from: var(--color-primary) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(255, 255, 255, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: var(--color-primary-dark) var(--tw-gradient-to-position);
}
[dir=ltr] .gradient-bg{
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
[dir=rtl] .gradient-bg{
    background-image: linear-gradient(to left, var(--tw-gradient-stops));
}
@media (max-width: 1024px) {
  .gradient-bg.profile-header {
    background-image: none;
  }
  .gradient-bg.profile-header .breadcrumbs a,
  .gradient-bg.profile-header .breadcrumbs span,
  .gradient-bg.profile-header .breadcrumbs .arrow{
        --tw-text-opacity: 1;
        color: rgba(75, 85, 99, 1);
        color: rgba(75, 85, 99, var(--tw-text-opacity, 1));
    }
}

.badge{
    display: inline-flex;
    height: 1.25rem;
    min-width: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 0.25rem;
    font-size: 0.75rem;
    line-height: 1rem;
}
.badge--red{
    --tw-bg-opacity: 1;
    background-color: rgba(248, 113, 113, 1);
    background-color: rgba(248, 113, 113, var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}

.copy-icon{
    font-size: 0.75rem;
    line-height: 1rem;
}

.s-localization-modal-inner {
  width: 100%;
}

.s-rating-modal-wrap .s-modal-body {
  position: relative !important;
}

.s-verify-back {
  top: 0.5rem;
}
.s-verify-back svg {
  max-width: 18px;
  fill: rgba(107, 114, 128, var(--tw-text-opacity));
}

[dir=rtl] .s-verify-back {
  right: 0.5rem;
}

[dir=ltr] .s-verify-back {
  left: 0.5rem;
}

@media (max-width: 639px) {
  .s-verify-back {
    display: none;
  }
}
.article--main iframe {
  width: 100%;
  height: 30vw;
}
@media (max-width: 639px) {
  .article--main iframe {
    height: 50vw;
  }
}

.cart-submit-wrap{
    margin-left: -5px;
    margin-right: -5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.625rem;
}

.cart-submit-wrap:where([dir="ltr"], [dir="ltr"] *){
    flex-wrap: wrap;
}
.cart-submit-wrap > *{
    margin-left: 5px;
    margin-right: 5px;
    flex-grow: 1;
}

.s-button-btn, .s-price-range-number-input{
    border-radius: .75rem;
}

.s-app-install-banner{
    position: fixed;
    left: 0px;
    right: 0px;
    z-index: 10;
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    display: none;
    width: 95%;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.375rem;
    padding: 0.75rem;
    --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
    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) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
    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);
  background-color: rgb(226, 226, 227);
}

@supports (color: color-mix(in lch, red, blue)){
.s-app-install-banner{
  background-color: color-mix(in srgb, var(--color-primary) 15%, white);
    }
}
.s-app-install-banner[open=false]{
    display: none;
}
.s-app-install-banner[open=true][position=top]{
    display: flex;
    transform: translate(var(--tw-translate-x), 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));
    transition-duration: 500ms;
}
.s-app-install-banner[open=true][position=bottom]{
    display: flex;
}
@keyframes slideUpFromBottom{
    0%{
        transform: translateY(100%);
        opacity: 0;
    }
    100%{
        transform: translateY(0%);
        opacity: 1;
    }
}
.s-app-install-banner[open=true][position=bottom]{
    animation: slideUpFromBottom .6s linear;
}
.s-app-install-banner[position=top]{
    position: relative;
    top: 0px;
    margin: 0px;
    width: 100%;
    border-radius: 0px;
}
.s-app-install-banner[position=bottom]{
    bottom: 0px;
}
@keyframes slideDownFromBottom{
    0%{
        transform: translateY(0%);
        opacity: 1;
    }
    100%{
        transform: translateY(100%);
        opacity: 0;
    }
}
.s-app-install-banner[closing][position=bottom]{
    animation: slideDownFromBottom .6s linear;
  animation-fill-mode: forwards;
}
.s-app-install-banner-title{
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 700;
    color: #414042;
    color: var(--color-primary);
}
.s-app-install-banner-sub-title{
    max-width: 95%;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 400;
}
.s-app-install-banner-cta{
    color: #414042;
    color: var(--color-primary);
    text-decoration-line: underline;
}
.s-app-install-banner-cancel-button{
    position: absolute;
    top: 0.5rem;
}
input[type=radio].sr-only div.s-app-install-banner-cancel-button {
  transition: all 0.3s;
}
input[type=radio].sr-only:checked ~ div.s-app-install-banner-cancel-button {
  border-color: var(--color-main);
}
.s-app-install-banner-cancel-button:where([dir="ltr"], [dir="ltr"] *){
    right: 0.75rem;
}
.s-app-install-banner-cancel-button:where([dir="rtl"], [dir="rtl"] *){
    left: 0.75rem;
}

.blog-category ul:where([dir="ltr"], [dir="ltr"] *),
.blog-category ol:where([dir="ltr"], [dir="ltr"] *){
    padding-left: 1rem;
}

.blog-category ul:where([dir="rtl"], [dir="rtl"] *),
.blog-category ol:where([dir="rtl"], [dir="rtl"] *){
    padding-right: 1rem;
}
.blog-category ul li {
  list-style: disc;
}
.blog-category ol li {
  list-style: auto;
}
.blog-category a{
    color: #414042;
    color: var(--color-primary);
}
.blog-category a:hover{
    color: var(--color-primary-dark);
}

.collapse-content {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 225ms ease-out, opacity 225ms ease-out;
}
.collapse-content > * {
  overflow: hidden;
  min-height: 0;
}
.collapse-content.is-opened {
  grid-template-rows: 1fr;
  opacity: 1;
}

@keyframes slideInStart {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.slide-in-start {
  animation: slideInStart 500ms ease-out forwards;
}

@keyframes scalePulse {
  0% {
    transform: scale(0.88);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.scale-pulse {
  animation: scalePulse 400ms ease-out;
}

.fade-out-collapse {
  transition: height 300ms ease-in-out, opacity 300ms ease-in-out;
  height: 0 !important;
  opacity: 0;
  overflow: hidden;
}

.ey-divider {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  background: var(--ey-divider-color, currentColor);
  margin-top: 60px;
  margin-bottom: 60px;
  margin-top: var(--ey-divider-margin, 60px);
  margin-bottom: var(--ey-divider-margin, 60px);
  transform-origin: center center;
}
@media (max-width: 991px) {
  .ey-divider {
    margin-top: 50px;
    margin-bottom: 50px;
    margin-top: var(--ey-divider-margin-tablet, 50px);
    margin-bottom: var(--ey-divider-margin-tablet, 50px);
  }
}
@media (max-width: 479px) {
  .ey-divider {
    margin-top: 30px;
    margin-bottom: 30px;
    margin-top: var(--ey-divider-margin-mobile, 30px);
    margin-bottom: var(--ey-divider-margin-mobile, 30px);
  }
}

.ey-image-reveal {
  position: absolute;
  z-index: 1;
  z-index: var(--ey-image-reveal-z, 1);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  background: var(--ey-image-reveal-background, var(--ey-heading-background, #fff));
  transform-origin: bottom;
  pointer-events: none;
  backface-visibility: hidden;
  will-change: transform;
}

.ey-blog-image-motion {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: #e9e7e1;
  --ey-image-reveal-background: #f7f6f3;
}
.ey-blog-image-motion > img {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0 !important;
}
.ey-blog-image-motion--standalone {
  margin: 15px 0 25px;
}

.ey-video-lightbox-source {
  width: min(92vw, 1100px);
  aspect-ratio: 16/9;
  background: #000;
}
.ey-video-lightbox-source[id] {
  display: none;
}
.ey-video-lightbox-source lite-youtube {
  width: 100%;
  height: 100%;
  max-width: none;
}
.tooltip-content {
  position: absolute;
  transform: translate(82px, -120px);
  background: #fff;
  padding: 15px 15px 15px 36px;
  text-align: right;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.tooltip-content:after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: auto;
  background: #fff;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  border-radius: 2px;
  --tw-shadow: 5px 10px 99px rgba(43,45,52,0.05098);
  --tw-shadow-colored: 5px 10px 99px var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 5px 10px 99px rgba(43,45,52,0.05098);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
  left: 43%;
  bottom: -7px;
}
.icon-trigger .tooltip-content {
  background-color: #414042;
  background-color: var(--color-primary);
  color: #ff6767;
  color: var(--color-primary-reverse);
  padding: 10px;
  width: 140px;
  line-height: 1;
  text-align: center;
}
@media (max-width: 991px) {
  .icon-trigger .tooltip-content {
    width: 110px;
  }
}
.icon-trigger .tooltip-content:after {
  background-color: #414042;
  background-color: var(--color-primary);
}
[dir=rtl] .icon-trigger.mobile-shifted .tooltip-content {
  transform: translate(53px, -73px);
}
@media (max-width: 991px) {
  [dir=rtl] .icon-trigger.mobile-shifted .tooltip-content {
    transform: translate(70px, -90px);
  }
  [dir=rtl] .icon-trigger.mobile-shifted .tooltip-content:after {
    left: 13%;
  }
}
[dir=ltr] .icon-trigger.mobile-shifted .tooltip-content {
  transform: translate(-53px, -75px);
}
@media (max-width: 991px) {
  [dir=ltr] .icon-trigger.mobile-shifted .tooltip-content {
    transform: translate(-70px, -90px);
  }
  [dir=ltr] .icon-trigger.mobile-shifted .tooltip-content:after {
    left: 69%;
  }
}
.visible .tooltip-content {
  visibility: visible;
  opacity: 1;
  transform: translate(82px, -110px);
}
[dir=rtl] .icon-trigger.visible .tooltip-content {
  transform: translate(53px, -63px);
}
[dir=ltr] .icon-trigger.visible .tooltip-content {
  transform: translate(-54px, -65px);
}
@media (max-width: 991px) {
  [dir=rtl] .icon-trigger.mobile-shifted.visible .tooltip-content {
    transform: translate(70px, -80px);
  }
  [dir=ltr] .icon-trigger.mobile-shifted.visible .tooltip-content {
    transform: translate(-70px, -80px);
  }
}

.close-tooltip {
  position: absolute;
  top: 0;
  left: 0;
  padding: 9px 7px !important;
}

@keyframes fadeInDown {
  from {
    transform: translate3d(0, -15px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animated {
  animation-duration: 400ms;
  animation-fill-mode: both;
}

.animatedfadeInDown {
  opacity: 0;
}

.fadeInDown {
  opacity: 0;
  animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
}

@keyframes toRightFromLeft {
  49% {
    transform: translate(100%);
  }
  50% {
    opacity: 0;
    transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toTopFromBottom {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1 !important;
    transform: translateX(0);
  }
}
@keyframes delayKeyframe {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.swiper-lazy{
    opacity: 0;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
    position: absolute;
    top: 0px;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}
input[type=radio].sr-only div.swiper-lazy {
  transition: all 0.3s;
}
input[type=radio].sr-only:checked ~ div.swiper-lazy {
  border-color: var(--color-main);
}
.swiper-lazy.swiper-lazy-loaded{
    opacity: 1;
}

.lazy__bg{
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
}

input[type=radio].sr-only div.lazy__bg {
  transition: all 0.3s;
}

input[type=radio].sr-only:checked ~ div.lazy__bg {
  border-color: var(--color-main);
}
.lazy__bg.loaded{
    opacity: 1;
}

.rtl .rtl-range-slider,
[dir=rtl] .rtl-range-slider {
  transform: rotateY(180deg);
}
.rtl .rtl-range-numbers,
[dir=rtl] .rtl-range-numbers {
  flex-direction: row-reverse;
}
.rtl .form-select, .rtl select,
[dir=rtl] .form-select,
[dir=rtl] select {
  background-position: left 0.5rem center;
  padding-right: 12px;
}
.rtl .fix-align,
[dir=rtl] .fix-align {
  transform: translateY(-2px);
  display: inline-block;
}
.rtl .flatpickr-months .numInputWrapper .cur-year,
[dir=rtl] .flatpickr-months .numInputWrapper .cur-year {
  padding: 0 15px 0 0;
}

.sf-dump {
  direction: ltr;
}

[dir=ltr] .with-arrow .sicon-keyboard_arrow_left:before,
[dir=ltr] nav .sicon-keyboard_arrow_left:before,
[dir=ltr] .sub-menu .has-children > a:after {
  content: "\e96c";
}
[dir=ltr] .flatpickr-months .numInputWrapper .cur-year {
  padding: 0 0 0 15px;
}
[dir=ltr] .flatpickr-months [class^=arrow] {
  right: auto;
  right: initial;
  left: 0;
}

input[type=radio].sr-only div.absolute {
  transition: all 0.3s;
}
input[type=radio].sr-only:checked ~ div.absolute {
  border-color: var(--color-main);
}

input[type=text]:disabled {
  color: #838383;
}

.form-label{
    margin-bottom: 0.625rem;
    display: block;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, 1);
    color: rgba(55, 65, 81, var(--tw-text-opacity, 1));
}

@media (min-width: 640px){
    .form-label{
        margin-top: 1px;
    }
}

@media (min-width: 768px){
    .form-label{
        margin-bottom: 0px;
    }
}

.form-input{
    height: 2.5rem;
    width: 100%;
    border-radius: 0.375rem;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, 1);
    border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
    font-size: 0.875rem;
    line-height: 1.25rem;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.form-input:focus{
    border-color: #414042;
    border-color: var(--color-primary);
    --tw-ring-color: transparent;
}

.dark .form-input{
    --tw-border-opacity: 1;
    border-color: rgba(75, 85, 99, 1);
    border-color: rgba(75, 85, 99, var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgba(75, 85, 99, 1);
    background-color: rgba(75, 85, 99, var(--tw-bg-opacity, 1));
}

.dark .form-input:focus{
    border-color: #414042;
    border-color: var(--color-primary);
}

.form-input {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

textarea.form-input{
    height: 6rem;
}

.has-error{
    --tw-border-opacity: 1;
    border-color: rgba(248, 113, 113, 1);
    border-color: rgba(248, 113, 113, var(--tw-border-opacity, 1));
}

.has-error:focus{
    --tw-border-opacity: 1;
    border-color: rgba(239, 68, 68, 1);
    border-color: rgba(239, 68, 68, var(--tw-border-opacity, 1));
}

.has-success{
    --tw-border-opacity: 1;
    border-color: rgba(34, 197, 94, 1);
    border-color: rgba(34, 197, 94, var(--tw-border-opacity, 1));
}

.has-success:focus{
    --tw-border-opacity: 1;
    border-color: rgba(22, 163, 74, 1);
    border-color: rgba(22, 163, 74, var(--tw-border-opacity, 1));
}

input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=number],
input[type=search],
input[type=url],
textarea,
select {
  font-size: 16px !important;
}

@media screen and (max-width: 768px) {
  input,
  textarea,
  select {
    font-size: 16px !important;
    transform: scale(1);
  }
}
/*
* Buttons
*/
salla-button[width=wide]{
    width: 100%;
}
salla-button.copied .s-button-text{
    --tw-text-opacity: 1;
    color: rgba(22, 163, 74, 1);
    color: rgba(22, 163, 74, var(--tw-text-opacity, 1));
}
salla-button.copied i:before {
  content: "\ea9d";
  --tw-text-opacity: 1;
  color: rgba(22, 163, 74, 1);
  color: rgba(22, 163, 74, var(--tw-text-opacity, 1));
}

.btn{
    display: inline-flex;
    flex: 1 1 0%;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 0.625rem;
    padding-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 1000ms;
}

.btn:hover{
    opacity: 0.8;
}

.btn {
  border-radius: var(--button-border-radius);
}
.btn .loader {
  width: 0;
  opacity: 0;
  height: 16px;
  transform: scale(0);
  transition: 0.3s;
}
.btn--is-loading {
  pointer-events: none;
}
.btn--is-loading .loader {
  width: 16px;
  margin: 0 5px;
  opacity: 1;
  transform: scale(1);
}
.btn--delete .loader {
  width: 15px;
}
.btn--delete .loader:before {
  width: 12px;
  height: 12px;
  border-top-color: transparent;
  border-bottom-color: #fff;
  border-left-color: transparent;
  border-right-color: #fff;
}
.btn--delete.btn--is-loading .icon {
  opacity: 0;
}
.btn--quantity{
    width: 2.75rem;
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, 1);
    color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 1000ms;
}
.btn--quantity:hover{
    color: #414042;
    color: var(--color-primary);
}
.btn__text{
    pointer-events: none;
    display: inline-block;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
}
.btn--wishlist{
    margin: 0px;
}
.btn--wishlist:where([dir="ltr"], [dir="ltr"] *){
    margin-left: 0.125rem;
}
.btn--wishlist:where([dir="rtl"], [dir="rtl"] *){
    margin-right: 0.125rem;
}
.btn--wishlist:hover{
    --tw-text-opacity: 1;
    color: rgba(75, 85, 99, 1);
    color: rgba(75, 85, 99, var(--tw-text-opacity, 1));
}
.btn--wishlist.is-added{
    --tw-text-opacity: 1;
    color: rgba(239, 68, 68, 1);
    color: rgba(239, 68, 68, var(--tw-text-opacity, 1));
}
.ey-product-single__price .btn--wishlist.is-added {
  color: #414042;
  color: var(--color-primary);
}
.ey-product-single .price-wrapper .btn--wishlist.is-added {
  color: #414042;
  color: var(--color-primary);
}
.btn--rounded-gray{
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: 9999px;
    background-color: rgba(229, 231, 235, 0.5);
    padding-left: 0.875rem;
    padding-right: 0.875rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  flex-grow: 0;
}
.btn--rounded-gray:hover{
    background-color: rgba(229, 231, 235, 0.7);
}
.btn--circle-gray{
    display: inline-flex;
    height: 2.25rem;
    width: 2.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: rgba(229, 231, 235, 0.3);
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.btn--circle-gray:hover{
    background-color: rgba(229, 231, 235, 0.5);
}
.btn--icon{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
    display: flex;
    height: 2.5rem;
    width: 2.5rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, 1);
    border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, 1);
    color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.ey-product-single .btn--icon {
  color: #fff;
  background: transparent;
  border-radius: 0;
}
.btn--icon:hover{
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, 1);
    border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
    --tw-text-opacity: 1;
    color: rgba(75, 85, 99, 1);
    color: rgba(75, 85, 99, var(--tw-text-opacity, 1));
}
.btn--icon i{
    pointer-events: none;
}
.btn--icon i.sicon-heart{
    --tw-text-opacity: 1;
    color: rgba(248, 113, 113, 1);
    color: rgba(248, 113, 113, var(--tw-text-opacity, 1));
}
.btn--share {
  margin: 0;
}
.btn--close{
    position: absolute;
    top: 0px;
    z-index: 50;
    display: none;
    height: 3rem;
    width: 3.5rem;
    font-size: 1.5rem;
    line-height: 2rem;
    --tw-text-opacity: 1;
    color: rgba(239, 68, 68, 1);
    color: rgba(239, 68, 68, var(--tw-text-opacity, 1));
}
input[type=radio].sr-only div.btn--close {
  transition: all 0.3s;
}
input[type=radio].sr-only:checked ~ div.btn--close {
  border-color: var(--color-main);
}
.ey-product-single__price .btn--close {
  color: #414042;
  color: var(--color-primary);
}
.ey-product-single .price-wrapper .btn--close {
  color: #414042;
  color: var(--color-primary);
}
@media (min-width: 480px){
    .btn--close{
        display: block;
    }
}
.btn--close:where([dir="ltr"], [dir="ltr"] *){
    right: 0px;
}
.btn--close:where([dir="rtl"], [dir="rtl"] *){
    left: 0px;
}
.btn--close-sm{
    position: fixed;
    top: 0px;
    z-index: 50;
    height: 51px;
    width: 51px;
    --tw-translate-y: -100%;
    transform: translate(var(--tw-translate-x), -100%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), 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-bg-opacity: 1;
    background-color: rgba(239, 68, 68, 1);
    background-color: rgba(239, 68, 68, var(--tw-bg-opacity, 1));
    font-size: 1.25rem;
    line-height: 1.75rem;
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
    opacity: 0;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}
.btn--close-sm:where([dir="ltr"], [dir="ltr"] *){
    right: 0px;
}
.btn--close-sm:where([dir="rtl"], [dir="rtl"] *){
    left: 0px;
}
.btn--collapse{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, 1);
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity, 1));
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, 1);
    color: rgba(55, 65, 81, var(--tw-text-opacity, 1));
}
@media (min-width: 480px){
    .btn--collapse:where([dir="ltr"], [dir="ltr"] *){
        padding-left: 1.75rem;
        padding-right: 1.25rem;
    }
    .btn--collapse:where([dir="rtl"], [dir="rtl"] *){
        padding-right: 1.75rem;
        padding-left: 1.25rem;
    }
}
.btn {
  /* Disabled state */
}
.btn.btn:disabled{
    cursor: default;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, 1);
    border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
    background-color: transparent;
    --tw-text-opacity: 1;
    color: rgba(209, 213, 219, 1);
    color: rgba(209, 213, 219, var(--tw-text-opacity, 1));
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.btn.btn:disabled:hover{
    background-color: transparent;
}
.btn:disabled .s-button-text{
    opacity: 0.7;
}
.btn {
  /* Button Variants */
}
.btn--danger{
    --tw-bg-opacity: 1;
    background-color: rgba(248, 113, 113, 1);
    background-color: rgba(248, 113, 113, var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.btn--danger:hover{
    opacity: 0.8;
}
.btn--primary{
    border-width: 1px;
  background-color: var(--primary-button-bg-color);
  color: var(--primary-button-text-color);
  border-color: var(--primary-button-bg-color);
}
.btn--outline-primary{
    border-width: 1px;
  color: var(--primary-button-bg-color);
  border-color: var(--primary-button-bg-color);
}
.btn--outline-primary:hover {
  background-color: var(--primary-button-bg-color);
  color: var(--primary-button-text-color);
}
.btn--outline{
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, 1);
    border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, 1);
    color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.ey-product-single .btn--outline {
  color: #fff;
  background: transparent;
  border-radius: 0;
}
.btn--outline:hover{
    border-color: #414042;
    border-color: var(--color-primary);
    background-color: #414042;
    background-color: var(--color-primary);
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.btn--outline.light{
    --tw-border-opacity: 1;
    border-color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, var(--tw-border-opacity, 1));
    background-color: transparent;
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.btn--rounded-full{
    border-radius: 9999px;
}

.rounded-icon{
    display: flex;
    height: 4rem;
    width: 4rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    font-size: 1.5rem;
    line-height: 2rem;
}

/*
* Coupon Button
*/
button.btn--coupon{
    position: absolute;
    top: 0px;
    height: 40px;
    flex-shrink: 0;
}
input[type=radio].sr-only divbutton.btn--coupon {
  transition: all 0.3s;
}
input[type=radio].sr-only:checked ~ divbutton.btn--coupon {
  border-color: var(--color-main);
}
button.btn--coupon:where([dir="ltr"], [dir="ltr"] *){
    right: 0px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
button.btn--coupon:where([dir="rtl"], [dir="rtl"] *){
    left: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
button.btn--coupon .s-button-text{
    display: flex !important;
}

salla-button.has-not-coupon button .icon, salla-button.has-coupon button .coupon-text{
    display: none;
}
salla-button.has-coupon button{
    width: 3rem;
    padding-left: 0px;
    padding-right: 0px;
}

/*
* Links ---------------------------------------------------
*/
.link--primary{
    color: #414042;
    color: var(--color-primary);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.link--primary:hover{
    color: var(--color-primary-dark);
}

#btn-show-more{
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
#btn-show-more.is-expanded{
    pointer-events: none;
    opacity: 0;
}

#blog-like.liked i {
  width: 18px;
  height: 16px;
  background-color: #414042;
  background-color: var(--color-primary);
  /* This will show the masked area */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='18'%20height='16'%20viewBox='0%200%2018%2016'%20fill='none'%3E%3Cpath%20d='M1.5%206.74998H3.75V15.75H1.5C1.08579%2015.75%200.75%2015.4142%200.75%2015V7.49998C0.75%207.08577%201.08579%206.74998%201.5%206.74998ZM5.46967%205.78031L10.2701%200.979957C10.402%200.847994%2010.6109%200.833152%2010.7602%200.945119L11.3996%201.4247C11.7632%201.69734%2011.927%202.1619%2011.8148%202.60224L10.9499%205.99998H15.75C16.5784%205.99998%2017.25%206.67155%2017.25%207.49998V9.07822C17.25%209.2742%2017.2116%209.46822%2017.137%209.64935L14.8162%2015.2855C14.7005%2015.5665%2014.4266%2015.75%2014.1227%2015.75H6C5.58579%2015.75%205.25%2015.4142%205.25%2015V6.31064C5.25%206.11173%205.32902%205.92096%205.46967%205.78031Z'%20fill='%23236E4C'/%3E%3C/svg%3E");
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='18'%20height='16'%20viewBox='0%200%2018%2016'%20fill='none'%3E%3Cpath%20d='M1.5%206.74998H3.75V15.75H1.5C1.08579%2015.75%200.75%2015.4142%200.75%2015V7.49998C0.75%207.08577%201.08579%206.74998%201.5%206.74998ZM5.46967%205.78031L10.2701%200.979957C10.402%200.847994%2010.6109%200.833152%2010.7602%200.945119L11.3996%201.4247C11.7632%201.69734%2011.927%202.1619%2011.8148%202.60224L10.9499%205.99998H15.75C16.5784%205.99998%2017.25%206.67155%2017.25%207.49998V9.07822C17.25%209.2742%2017.2116%209.46822%2017.137%209.64935L14.8162%2015.2855C14.7005%2015.5665%2014.4266%2015.75%2014.1227%2015.75H6C5.58579%2015.75%205.25%2015.4142%205.25%2015V6.31064C5.25%206.11173%205.32902%205.92096%205.46967%205.78031Z'%20fill='%23236E4C'/%3E%3C/svg%3E");
          mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='18'%20height='16'%20viewBox='0%200%2018%2016'%20fill='none'%3E%3Cpath%20d='M1.5%206.74998H3.75V15.75H1.5C1.08579%2015.75%200.75%2015.4142%200.75%2015V7.49998C0.75%207.08577%201.08579%206.74998%201.5%206.74998ZM5.46967%205.78031L10.2701%200.979957C10.402%200.847994%2010.6109%200.833152%2010.7602%200.945119L11.3996%201.4247C11.7632%201.69734%2011.927%202.1619%2011.8148%202.60224L10.9499%205.99998H15.75C16.5784%205.99998%2017.25%206.67155%2017.25%207.49998V9.07822C17.25%209.2742%2017.2116%209.46822%2017.137%209.64935L14.8162%2015.2855C14.7005%2015.5665%2014.4266%2015.75%2014.1227%2015.75H6C5.58579%2015.75%205.25%2015.4142%205.25%2015V6.31064C5.25%206.11173%205.32902%205.92096%205.46967%205.78031Z'%20fill='%23236E4C'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  display: inline-block;
  position: relative;
  top: -2px;
}

.s-add-product-button-main .s-add-product-button-mini-checkout {
  --salla-fast-checkout-button-border-radius: 0;
  --salla-fast-checkout-button-height: 56px;
  --color-primary: var(--ey-reach-button-border, var(--color-main-dark));
}

button .s-button-text {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.s-button-element.s-button-primary,
salla-products-list .s-button-element {
  border-radius: 0;
  z-index: 1;
}
.s-button-element.s-button-primary::before,
salla-products-list .s-button-element::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--ey-reach-button-border, var(--color-main-dark));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
  z-index: -1;
}
.s-button-element.s-button-primary:hover::before,
salla-products-list .s-button-element:hover::before {
  transform: scaleY(1);
}

.s-product-options-wrapper{
    margin-bottom: 0px;
    padding: 0px;
}

.custom-radios div {
  display: inline-block;
}
.custom-radios input[type=radio] {
  display: none;
}
.custom-radios input[type=radio] + label {
  cursor: pointer;
}
.custom-radios input[type=radio] + label span {
  display: inline-block;
  width: 40px;
  height: 40px;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 6px;
  border: 2px solid #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  line-height: 40px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.075);
}
.custom-radios input[type=radio] + label span::after {
  opacity: 0;
  display: inline-block;
  transform: scale(0.4);
  transition: all 0.3s ease;
  font-family: "sallaicons" !important;
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  content: "\ea9d";
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}
.custom-radios input[type=radio]:checked + label span:after {
  opacity: 1;
  transform: scale(1);
}
.custom-radios input[type=radio]:disabled + label {
  opacity: 0.45;
}
.custom-radios--rounded input[type=radio] + label span {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #ddd;
}
.custom-radios--rounded input[type=radio] + label span::after {
  content: "";
  width: 14px;
  height: 14px;
  background-color: #f1f1f1;
  border-radius: 50%;
}
.custom-radios--icons {
  font-size: 40px;
  line-height: 42px;
}
.custom-radios--icons input[type=radio] + label {
  transition: transform 0.2s, color 0.3s;
  filter: grayscale(1);
}
.custom-radios--icons input[type=radio] + label:hover {
  filter: grayscale(0);
}
.custom-radios--icons input[type=radio]:checked + label {
  filter: grayscale(0);
  transform: scale(1.25) translateY(-3px);
}
.custom-radios--icons input[type=radio]:checked + label .rate-title {
  font-weight: bold;
  color: #2b2d34;
}

.radio-images__label{
    margin-bottom: 0.125rem;
    display: inline-block;
    height: 6rem;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
    border-radius: 0.375rem;
}

.radio-images__label * {
  pointer-events: none;
}

@media (min-width: 768px){
    .radio-images__label{
        height: 5rem;
    }
}
.radio-images__badge{
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    display: block;
    --tw-translate-x: -50%;
    transform: translate(-50%, 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));
    transform: translate(var(--tw-translate-x), 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));
    white-space: nowrap;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgba(248, 113, 113, 1);
    background-color: rgba(248, 113, 113, var(--tw-bg-opacity, 1));
    padding-left: 0.375rem;
    padding-right: 0.375rem;
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
input[type=radio].sr-only div.radio-images__badge {
  transition: all 0.3s;
}
input[type=radio].sr-only:checked ~ div.radio-images__badge {
  border-color: var(--color-main);
}
.radio-images input[type=radio] {
  display: none;
}
.radio-images input[type=radio] + label {
  position: relative;
}
.radio-images input[type=radio] + label:after {
  content: "\ea9d";
  font-family: "sallaicons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: white;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
  transition: transform 0.3s;
}
.radio-images input[type=radio] + label:before {
  content: "";
  background-color: #000;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: opacity 0.3s;
}
.radio-images input[type=radio]:checked + label:after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.radio-images input[type=radio]:checked + label:before {
  opacity: 0.3;
}
.radio-images input[type=radio]:disabled + label {
  opacity: 0.45;
}

/* Built at runtime: s-product-card-image-${fit} */
.s-product-card-image-cover{
    -o-object-fit: cover;
       object-fit: cover;
}

.s-product-card-image-contain{
    -o-object-fit: contain;
       object-fit: contain;
}

.s-product-card-entry{
    position: relative;
    display: flex;
    justify-content: space-between;
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
  height: auto;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.s-product-card-entry:hover .s-product-card-image img {
  transform: scale(1.045);
}
.s-product-card-entry:hover .ey-product-card__actions {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.s-product-card-entry:focus-within .ey-product-card__actions {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.s-product-card-out-of-stock img.loaded{
    --tw-grayscale: grayscale(100%);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) grayscale(100%) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
    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);
}
.s-product-card-overlay{
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    --tw-bg-opacity: 1;
    background-color: rgba(0, 0, 0, 1);
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity, 1));
    opacity: 0.5;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 700ms;
}
input[type=radio].sr-only div.s-product-card-overlay {
  transition: all 0.3s;
}
input[type=radio].sr-only:checked ~ div.s-product-card-overlay {
  border-color: var(--color-main);
}
.s-product-card-overlay:hover{
    opacity: 0.4;
}
.s-product-card-vertical{
    flex-direction: column;
}
.s-product-card-minimal .s-product-card-image{
    width: 8rem;
}
@media (min-width: 640px){
    .s-product-card-minimal .s-product-card-image{
        width: 14rem;
    }
}
@media (min-width: 1024px){
    .s-product-card-minimal .s-product-card-image{
        width: 7rem;
    }
}
.s-product-card-minimal .s-product-card-content-title a{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.s-product-card-minimal .s-product-card-content{
    display: flex;
    flex: 1 1 0%;
    flex-direction: column;
    overflow: hidden;
    padding: 1.25rem;
}
.s-product-card-fit-height .s-product-card-image{
    height: 11rem;
    max-height: 15rem;
}
.s-product-card-horizontal .s-product-card-image{
    height: auto;
    width: 8rem;
}
@media (min-width: 640px){
    .s-product-card-horizontal .s-product-card-image{
        width: 14rem;
    }
}
.s-product-card-horizontal .s-product-card-image:where([dir="ltr"], [dir="ltr"] *){
    border-top-left-radius: .75rem;
    border-bottom-left-radius: .75rem;
}
.s-product-card-horizontal .s-product-card-image:where([dir="rtl"], [dir="rtl"] *){
    border-top-right-radius: .75rem;
    border-bottom-right-radius: .75rem;
}
.s-product-card-horizontal .s-product-card-content-title a{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.s-product-card-horizontal .s-product-card-content{
    margin-bottom: 0.625rem;
    width: 100%;
}
.s-product-card-full-image{
    height: 20rem;
    overflow: hidden;
}
@media (min-width: 768px){
    .s-product-card-full-image{
        height: auto;
    }
}
.s-product-card-full-image .s-product-card-content{
    position: absolute;
    bottom: 0px;
    z-index: 10;
    width: 100%;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    padding-top: 1.25rem;
    padding-bottom: 1.75rem;
}
input[type=radio].sr-only div.s-product-card-full-image .s-product-card-content {
  transition: all 0.3s;
}
input[type=radio].sr-only:checked ~ div.s-product-card-full-image .s-product-card-content {
  border-color: var(--color-main);
}
.s-product-card-full-image img{
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: .75rem;
}
.s-product-card-full-image img:hover{
    opacity: 0.9;
}
.s-product-card-full-image .s-product-card-image a{
    height: 100%;
    width: 100%;
}
.s-product-card-full-image .s-product-card-content-title a,
.s-product-card-full-image .s-product-card-content-subtitle,
.s-product-card-full-image .s-product-card-price,
.s-product-card-full-image .s-product-card-sale-price,
.s-product-card-full-image .s-product-card-sale-price span{
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.s-product-card-image-full{
    width: 100%;
}
.s-product-card-compact .s-product-card-content-footer{
    margin-top: 0px;
    flex-shrink: 0;
}
.s-product-card-compact .s-product-card-content{
    min-width: 0px;
    flex: 1 1 0%;
    padding: 0px;
    text-align: right;
}
.s-product-card-compact .s-product-card-content-main{
    margin-bottom: 0.25rem;
}
.s-product-card-compact .s-product-card-content-title{
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    line-height: 1.25;
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, 1);
    color: rgba(55, 65, 81, var(--tw-text-opacity, 1));
}
.s-product-card-compact .s-product-card-content-title a{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: block;
}
.s-product-card-compact .s-product-card-content-subtitle{
    margin-top: 0.25rem;
    display: none;
    font-size: 0.75rem;
    line-height: 1rem;
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, 1);
    color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}
.s-product-card-compact .s-product-card-content-sub{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    font-size: 0.75rem;
    line-height: 1rem;
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, 1);
    color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}
.s-product-card-compact .s-product-card-content-sub h4{
    margin: 0px;
    font-weight: 400;
}
.s-product-card-compact .s-product-card-content-sub .s-product-card-price{
    font-weight: 400;
}
.s-product-card-compact .s-product-card-image{
    height: 5rem;
    width: 5rem;
    flex-shrink: 0;
    border-radius: 0.375rem;
}
.s-product-card-compact .s-product-card-image img{
    height: 100%;
    width: 100%;
    border-radius: 0.375rem;
    -o-object-fit: cover;
       object-fit: cover;
}
.s-product-card-compact .s-product-card-promotion-title{
    display: none;
}
.s-product-card-quantity{
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    z-index: 10;
    max-width: calc(100% - 60px);
    --tw-translate-x: -50%;
    transform: translate(-50%, 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));
    transform: translate(var(--tw-translate-x), 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));
    border-radius: .75rem;
    --tw-bg-opacity: 1;
    background-color: rgba(248, 113, 113, 1);
    background-color: rgba(248, 113, 113, var(--tw-bg-opacity, 1));
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
input[type=radio].sr-only div.s-product-card-quantity {
  transition: all 0.3s;
}
input[type=radio].sr-only:checked ~ div.s-product-card-quantity {
  border-color: var(--color-main);
}
@media (min-width: 768px){
    .s-product-card-quantity{
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}
.s-product-card-promotion-title{
    position: absolute;
    top: 1rem;
    left: 0px;
    z-index: 10;
    max-width: calc(100% - 60px);
    border-top-right-radius: .75rem;
    border-bottom-right-radius: .75rem;
    --tw-bg-opacity: 1;
    background-color: rgba(248, 113, 113, 1);
    background-color: rgba(248, 113, 113, var(--tw-bg-opacity, 1));
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
input[type=radio].sr-only div.s-product-card-promotion-title {
  transition: all 0.3s;
}
input[type=radio].sr-only:checked ~ div.s-product-card-promotion-title {
  border-color: var(--color-main);
}
@media (min-width: 768px){
    .s-product-card-promotion-title{
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}
.s-product-card-promotion-title:where([dir="rtl"], [dir="rtl"] *){
    right: 0px;
    left: auto;
    left: initial;
    border-top-left-radius: .75rem;
    border-bottom-left-radius: .75rem;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
.s-product-card-out-badge{
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    z-index: 10;
    max-width: calc(100% - 60px);
    --tw-translate-x: -50%;
    transform: translate(-50%, 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));
    transform: translate(var(--tw-translate-x), 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));
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, 1);
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity, 1));
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgba(153, 153, 153, 1);
    color: rgba(153, 153, 153, var(--tw-text-opacity, 1));
}
input[type=radio].sr-only div.s-product-card-out-badge {
  transition: all 0.3s;
}
input[type=radio].sr-only:checked ~ div.s-product-card-out-badge {
  border-color: var(--color-main);
}
@media (min-width: 768px){
    .s-product-card-out-badge{
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}
.s-product-card-content-pie{
    position: absolute;
    top: 0.625rem;
    right: 1.25rem;
    display: flex;
    height: 72px;
    width: 72px;
    align-items: center;
    justify-content: center;
    color: #414042;
    color: var(--color-primary);
}
input[type=radio].sr-only div.s-product-card-content-pie {
  transition: all 0.3s;
}
input[type=radio].sr-only:checked ~ div.s-product-card-content-pie {
  border-color: var(--color-main);
}
.s-product-card-content-pie:where([dir="rtl"], [dir="rtl"] *){
    left: 1.25rem;
    right: auto;
    right: initial;
}
.s-product-card-content-pie span{
    position: absolute;
    top: 43%;
    left: 50%;
    display: flex;
    --tw-translate-y: -50%;
    --tw-translate-x: -50%;
    transform: translate(-50%, -50%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), 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));
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.75rem;
    line-height: 1rem;
    line-height: 1;
    --tw-text-opacity: 1;
    color: rgba(124, 128, 130, 1);
    color: rgba(124, 128, 130, var(--tw-text-opacity, 1));
}
input[type=radio].sr-only div.s-product-card-content-pie span {
  transition: all 0.3s;
}
input[type=radio].sr-only:checked ~ div.s-product-card-content-pie span {
  border-color: var(--color-main);
}
.s-product-card-content-pie span b{
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: #414042;
    color: var(--color-primary);
}
.s-product-card-content-extra-padding{
    padding-right: 6rem;
}
.s-product-card-content-extra-padding:where([dir="rtl"], [dir="rtl"] *){
    padding-left: 6rem;
    padding-right: 0px;
}

.ey-product-card--explore .s-product-card-image {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  flex: none;
  overflow: hidden;
  border-radius: 0;
  background: #f7f6f3;
}
.ey-product-card--explore .s-product-card-image > a {
  display: block;
  width: 100%;
  height: 100%;
}
.ey-product-card--explore .s-product-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.25, 1);
  transform: scale(1.001);
}
.ey-product-card--explore .s-product-card-promotion-title,
.ey-product-card--explore .s-product-card-quantity,
.ey-product-card--explore .s-product-card-out-badge {
  z-index: 3;
}
.ey-product-card--explore .ey-product-card__actions {
  position: absolute;
  z-index: 4;
  top: auto;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  min-height: 68px;
  align-items: stretch;
  gap: 8px;
  opacity: 0;
  transform: translate3d(0, 200%, 0);
  transition: opacity 500ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}
.ey-product-card--explore .ey-product-card__actions salla-add-product-button {
  display: flex;
}
.ey-product-card--explore .ey-product-card__actions salla-add-product-button .s-button-element {
  width: 100%;
  height: 100%;
  min-height: 68px;
  border: 0;
  border-radius: 0;
  color: var(--ey-explore-text, var(--color-main-dark));
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
  backdrop-filter: blur(12px);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  transition: color 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}
.ey-product-card--explore .ey-product-card__actions salla-add-product-button .s-button-element:hover {
  color: #ffffff !important;
  color: var(--ey-reach-features-text, #ffffff) !important;
}
.ey-product-card--explore .ey-product-card__actions salla-add-product-button .s-button-element:hover .s-button-text,
.ey-product-card--explore .ey-product-card__actions salla-add-product-button .s-button-element:hover span,
.ey-product-card--explore .ey-product-card__actions salla-add-product-button .s-button-element:hover i,
.ey-product-card--explore .ey-product-card__actions salla-add-product-button .s-button-element:hover svg {
  color: #ffffff !important;
  color: var(--ey-reach-features-text, #ffffff) !important;
  stroke: #ffffff;
  stroke: var(--ey-reach-features-text, #ffffff);
}
.ey-product-card--explore .ey-product-card__actions .s-product-card-wishlist-btn {
  position: static;
  display: flex;
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  transform: none;
}
.ey-product-card--explore .ey-product-card__actions .s-product-card-wishlist-btn .s-button-element {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  color: var(--ey-explore-text, var(--color-main-dark));
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  transition: color 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}
.ey-product-card--explore .ey-product-card__actions .s-product-card-wishlist-btn .s-button-element:hover {
  color: #ffffff !important;
  color: var(--ey-reach-features-text, #ffffff) !important;
}
.ey-product-card--explore .ey-product-card__actions .s-product-card-wishlist-btn .s-button-element:hover i,
.ey-product-card--explore .ey-product-card__actions .s-product-card-wishlist-btn .s-button-element:hover .sicon-heart {
  color: #ffffff !important;
  color: var(--ey-reach-features-text, #ffffff) !important;
}
.ey-product-card--explore .s-product-card-content {
  display: grid;
  min-height: 81px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  grid-gap: 20px;
  gap: 20px;
  margin: 0;
  padding: 24px 0;
  border-bottom: 1px solid #e5e7eb;
  border-bottom: 1px solid var(--ey-explore-border, #e5e7eb);
}
.ey-product-card--explore .s-product-card-content-main {
  min-width: 0;
  padding: 0;
}
.ey-product-card--explore .s-product-card-content-title{
    margin-bottom: 0.625rem;
    max-width: 100%;
    line-height: 1.5rem;
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.ey-product-card--explore .s-product-card-content-title a{
    display: block;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, 1);
    color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
}
.ey-product-card--explore .s-product-card-content-title a:hover{
    color: #414042;
    color: var(--color-primary);
}
.ey-product-card--explore .s-product-card-content-title a {
  color: var(--ey-explore-text, var(--color-main-dark));
  transition: color 300ms ease;
}
.ey-product-card--explore .s-product-card-content-title a:hover {
  color: #737373;
  color: var(--ey-explore-muted, #737373);
}
.ey-product-card--explore .s-product-card-content-subtitle,
.ey-product-card--explore .s-product-card-rating {
  display: none;
}
.ey-product-card--explore .s-product-card-content-sub {
  display: flex;
  justify-content: flex-end;
  padding: 0;
  margin: 0 !important;
}
.ey-product-card--explore .s-product-card-price,
.ey-product-card--explore .s-product-card-sale-price h4,
.ey-product-card--explore .s-product-card-starting-price h4{
    font-size: 0.875rem;
    line-height: 1.25rem;
  margin: 0;
  color: #737373 !important;
  color: var(--ey-explore-muted, #737373) !important;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
}
.ey-product-card--explore .s-product-card-sale-price > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.25rem * 0);
    margin-right: calc(0.25rem * var(--tw-space-x-reverse));
    margin-left: calc(0.25rem * (1 - 0));
    margin-left: calc(0.25rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(0.25rem * calc(1 - 0));
    margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.ey-product-card--explore .s-product-card-sale-price:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 1;
}
.ey-product-card--explore .s-product-card-sale-price {
  align-items: flex-end;
  gap: 2px;
  display: flex;
}
.ey-product-card--explore .s-product-card-sale-price span{
    font-size: 0.875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, 1);
    color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
    text-decoration-line: line-through;
  color: #737373;
  color: var(--ey-explore-muted, #737373);
  font-size: 14px;
  -webkit-text-decoration: line-through;
  text-decoration: line-through;
}
.ey-product-card--explore .s-product-card-starting-price{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}
.ey-product-card--explore:hover .s-product-card-image img {
  transform: scale(1.045);
}
.ey-product-card--explore:hover .ey-product-card__actions {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.ey-product-card--explore:focus-within .ey-product-card__actions {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 767px) {
  .ey-product-card--explore .ey-product-card__actions {
    top: auto;
    right: 15px;
    bottom: 15px;
    left: 15px;
    min-height: 58px;
    opacity: 1;
    transform: none;
  }
  .ey-product-card--explore .ey-product-card__actions salla-add-product-button .s-button-element {
    min-height: 58px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 16px;
  }
  .ey-product-card--explore .ey-product-card__actions .s-product-card-wishlist-btn {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }
  .ey-product-card--explore .s-product-card-content {
    min-height: 70px;
    padding: 20px 0;
  }
  .ey-product-card--explore .s-product-card-content-title {
    font-size: 21px;
  }
  .ey-product-card--explore .s-product-card-price,
  .ey-product-card--explore .s-product-card-sale-price h4,
  .ey-product-card--explore .s-product-card-starting-price h4 {
    font-size: 19px;
  }
}
@media (max-width: 479px) {
  .ey-product-card--explore .s-product-card-content {
    gap: 12px;
    padding: 15px 0;
  }
  .ey-product-card--explore .s-product-card-content-title,
  .ey-product-card--explore .s-product-card-price,
  .ey-product-card--explore .s-product-card-sale-price h4,
  .ey-product-card--explore .s-product-card-starting-price h4 {
    font-size: 18px;
  }
}
@media (hover: none) {
  .ey-product-card--explore .ey-product-card__actions {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ey-product-card--explore .s-product-card-image img,
  .ey-product-card--explore .ey-product-card__actions {
    transition: none;
  }
}
@media (min-width: 1024px){
    .s-reviews-container{
        overflow: hidden;
    }
}
.s-reviews-container .swiper-slide{
    height: auto;
    width: 20%;
    overflow: hidden;
    padding-left: 10px;
    padding-right: 10px;
}
@media (min-width: 1024px){
    .s-reviews-container .swiper-slide{
        padding-left: 15px;
        padding-right: 15px;
    }
}
.s-reviews-container .swiper-slide:not(.swiper-slide-active) .s-reviews-testimonial__avatar{
    margin-bottom: 2rem;
}
.s-reviews-container .swiper-slide:not(.swiper-slide-active) .s-reviews-testimonial__inner{
    position: relative;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.s-reviews-container .swiper-slide:not(.swiper-slide-active) .s-reviews-testimonial__icon svg{
    top: -2rem;
    left: 50%;
    height: 1.5rem;
    width: 1.5rem;
    --tw-translate-x: -50%;
    --tw-translate-y: 0.25rem;
    transform: translate(-50%, 0.25rem) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), 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));
}
.s-reviews-container .swiper-slide-prev .s-reviews-testimonial{
    align-items: center;
    justify-content: flex-end;
}
.s-reviews-container .swiper-slide-next .s-reviews-testimonial{
    align-items: center;
    justify-content: flex-start;
}
.s-reviews-container .swiper-slide-next .s-reviews-testimonial:where([dir="ltr"], [dir="ltr"] *){
    padding-right: 7%;
}
.s-reviews-container .swiper-slide-next .s-reviews-testimonial:where([dir="rtl"], [dir="rtl"] *){
    padding-left: 7%;
}
.s-reviews-container .swiper-slide-active{
    width: 60%;
}
.s-reviews-container .swiper-slide-active .s-reviews-testimonial{
    opacity: 1;
    --tw-shadow: 5px 0 0 0 var(--color-main);
    --tw-shadow-colored: 5px 0 0 0 var(--tw-shadow-color);
    box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
@media (min-width: 1024px){
    .s-reviews-container .swiper-slide-active .s-reviews-testimonial:where([dir="ltr"], [dir="ltr"] *){
        padding-right: 6rem;
    }
    .s-reviews-container .swiper-slide-active .s-reviews-testimonial:where([dir="rtl"], [dir="rtl"] *){
        padding-left: 6rem;
    }
}
.s-reviews-container .swiper-slide-active .s-reviews-testimonial__inner{
    width: 100%;
}
.s-reviews-container .swiper-slide-active .s-reviews-testimonial__avatar:where([dir="ltr"], [dir="ltr"] *){
    margin-right: 1.5rem;
}
.s-reviews-container .swiper-slide-active .s-reviews-testimonial__avatar:where([dir="rtl"], [dir="rtl"] *){
    margin-left: 1.5rem;
}
.s-reviews-container .swiper-slide-active .s-reviews-testimonial__info{
    margin-bottom: 0.5rem;
}
@media (min-width: 1024px){
    .s-reviews-container .swiper-slide-active .s-reviews-testimonial__info{
        margin-bottom: 0px;
    }
}
.s-reviews-container .swiper-slide-active .s-reviews-testimonial__rating{
    display: block;
}
.s-reviews-container .swiper-slide-active .s-reviews-testimonial__text p{
    display: block;
}
.s-reviews-container .s-slider--nav-arrow{
    right: 17%;
    top: 35%;
    display: none;
    --tw-translate-y: 50%;
    transform: translate(var(--tw-translate-x), 50%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), 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));
}
@media (min-width: 1024px){
    .s-reviews-container .s-slider--nav-arrow{
        display: flex;
    }
}
.s-reviews-container .s-slider--nav-arrow.s-slider-next{
    left: 17%;
}
.s-reviews-container .s-slider--nav-arrow.s-slider-next:where([dir="ltr"], [dir="ltr"] *){
    left: auto;
}
.s-reviews-container .s-slider--nav-arrow.s-slider-next:where([dir="rtl"], [dir="rtl"] *){
    right: auto;
}
.s-reviews-header-wrapper{
    display: flex;
    justify-content: space-between;
}
.s-reviews-header{
    margin-bottom: 1rem;
    margin-right: 0.5rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
}
.s-reviews-testimonial{
    position: relative;
    display: flex;
    height: 100%;
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
    padding: 1.5rem;
    opacity: 0.6;
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.ey-product-single .s-reviews-testimonial {
  color: #fff;
  background: transparent;
  border-radius: 0;
}
@media (min-width: 1024px){
    .s-reviews-testimonial{
        padding: 2.5rem;
        --tw-shadow: 0 0 rgba(0,0,0,0);
        --tw-shadow-colored: 0 0 rgba(0,0,0,0);
        box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0);
        box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
    }
}
.s-reviews-testimonial__inner{
    display: flex;
    align-items: center;
}
.s-reviews-testimonial__avatar{
    height: 5rem;
    width: 5rem;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 9999px;
}
.s-reviews-testimonial__icon svg{
    position: absolute;
    top: 1rem;
    height: 2.25rem;
    width: 2.25rem;
    fill: #414042;
    fill: var(--color-primary);
    font-size: 2.25rem;
    line-height: 2.5rem;
}
input[type=radio].sr-only div.s-reviews-testimonial__icon svg {
  transition: all 0.3s;
}
input[type=radio].sr-only:checked ~ div.s-reviews-testimonial__icon svg {
  border-color: var(--color-main);
}
@media (min-width: 640px){
    .s-reviews-testimonial__icon svg{
        font-size: 3rem;
        line-height: 1;
    }
}
@media (min-width: 1024px){
    .s-reviews-testimonial__icon svg{
        height: 3rem;
        width: 3rem;
    }
}
.s-reviews-testimonial__icon svg:where([dir="ltr"], [dir="ltr"] *){
    right: 2rem;
}
@media (min-width: 640px){
    .s-reviews-testimonial__icon svg:where([dir="ltr"], [dir="ltr"] *){
        right: 3rem;
    }
}
@media (min-width: 1024px){
    .s-reviews-testimonial__icon svg:where([dir="ltr"], [dir="ltr"] *){
        right: 2rem;
    }
}
.s-reviews-testimonial__icon svg:where([dir="rtl"], [dir="rtl"] *){
    left: 2rem;
}
@media (min-width: 640px){
    .s-reviews-testimonial__icon svg:where([dir="rtl"], [dir="rtl"] *){
        left: 3rem;
    }
}
@media (min-width: 1024px){
    .s-reviews-testimonial__icon svg:where([dir="rtl"], [dir="rtl"] *){
        left: 2rem;
    }
}
.s-reviews-testimonial__text{
    flex: 1 1 0%;
}
.s-reviews-testimonial__text p{
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    display: none;
    line-height: 1.5rem;
}
@media (min-width: 640px){
    .s-reviews-testimonial__text p{
        margin-top: 0px;
    }
}
.s-reviews-testimonial__name_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media (min-width: 1024px){
    .s-reviews-testimonial__name_wrapper{
        flex-direction: row;
        justify-content: space-between;
    }
}
.s-reviews-testimonial__rating{
    margin-left: 2.5rem;
    display: none;
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.s-reviews-testimonial__info h2{
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 700;
}
@media (min-width: 480px){
    .s-reviews-testimonial__info h2{
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
}

/* Eyeconic header — migrated to Tailwind CSS, only state/utility classes remain */
:root {
  --store-header-height: 86px;
}

@media (max-width: 991px) {
  :root {
    --store-header-height: 80px;
  }
}
@media (max-width: 767px) {
  :root {
    --store-header-height: 65px;
  }
}
@media (max-width: 479px) {
  :root {
    --store-header-height: 60px;
  }
}
.store-header--absolute {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
}
.store-header--absolute.is-sticky-enabled {
  position: fixed;
}
.store-header--sticky {
  position: sticky;
  top: 0;
}
.store-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 32px rgba(17, 17, 17, 0.1);
  backdrop-filter: blur(14px);
}

.nav-item.has-dropdown.is-open {
  z-index: 20;
}
.nav-item.has-dropdown.is-open > .nav-dropdown-list {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.nav-dropdown-list .dropdown-link {
  opacity: 0;
  transform: translateY(14px);
  transition: color 300ms ease, opacity 300ms ease, transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0ms;
}

.nav-dropdown-list .dropdown-padding {
  opacity: 0;
  transform: translateY(-14px);
  clip-path: inset(0 0 100% 0);
  transition: opacity 500ms ease, transform 500ms cubic-bezier(0.22, 1, 0.36, 1), clip-path 500ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, clip-path;
}

.nav-dropdown-list.is-revealing .dropdown-padding {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}

.nav-dropdown-list.is-revealing .dropdown-link {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0ms, 0ms, 0ms;
  transition-delay: 0ms, var(--dropdown-item-delay, 0ms), var(--dropdown-item-delay, 0ms);
}

body.store-menu-open {
  overflow: hidden;
}

.header-skel-item {
  display: inline-block;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent), rgba(0, 0, 0, 0.06);
  background-size: 200% 100%;
  animation: header-skeleton 1.4s ease-in-out infinite;
}

@keyframes header-skeleton {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}
.nav-icon3 span:nth-child(1) {
  top: 0px;
}

.nav-icon3 span:nth-child(2), .nav-icon3 span:nth-child(3) {
  top: 8px;
}

.nav-icon3 span:nth-child(4) {
  top: 16px;
}

#navbar-hamburger.is-open .nav-icon3 span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}

#navbar-hamburger.is-open .nav-icon3 span:nth-child(2) {
  transform: rotate(45deg);
}

#navbar-hamburger.is-open .nav-icon3 span:nth-child(3) {
  transform: rotate(-45deg);
}

#navbar-hamburger.is-open .nav-icon3 span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}

@media (max-width: 991px) {
  .mobile-nav-panel {
    filter: drop-shadow(0 18px 28px rgba(17, 17, 17, 0.18));
    transform-origin: top center;
  }
  .mobile-nav-list {
    color: #fff;
    background: rgba(38, 38, 38, 0.94);
    border-radius: 0 0 22px 22px;
    backdrop-filter: blur(17px);
  }
  .mobile-nav-panel .mobile-nav-link,
  .mobile-nav-panel .mobile-nav-accordion-toggle {
    color: #fff;
  }
  .mobile-nav-panel > .mobile-nav-list > .mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 15px;
  }
  .mobile-nav-panel > .mobile-nav-list > .mobile-nav-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .mobile-nav-accordion-body {
    margin-top: 14px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .mobile-dropdown-all {
    margin-bottom: 4px;
  }
  .mobile-tree {
    margin-top: 10px;
  }
  .mobile-tree-body {
    margin: 0 0 8px;
    margin-left: 12px;
    padding-left: 14px;
    border-left: 1px solid rgba(255, 229, 91, 0.35);
  }
  .mobile-tree-body > .mobile-tree {
    margin-top: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nav-dropdown-list .dropdown-link {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .nav-dropdown-list .dropdown-padding {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }
}
/* --- Cart Summary Custom Styles --- */
.header-cart-summary .s-cart-summary-total {
  display: none;
}
.header-cart-summary .s-cart-summary-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  color: inherit;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.header-cart-summary #s-cart-icon {
  display: block;
  width: 30px;
  height: 30px;
  flex: none;
  flex-basis: 30px;
}
.header-cart-summary .s-cart-summary-content {
  display: none;
}
.header-cart-summary .s-cart-summary-count {
  position: absolute;
  top: auto;
  bottom: 0;
  transform: translateX(-50%);
  display: block;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 9px;
  color: #fff;
  background-color: var(--color-main-dark);
  font-size: 11px;
  line-height: 18px;
  text-align: center;
}
.header-cart-summary .s-cart-summary-count:where([dir="ltr"], [dir="ltr"] *){
    left: 1.75rem;
}

.s-user-menu-trigger {
  background: transparent;
  padding: 0;
}

@media (max-width: 1023px) {
  .filters-opened .close-filters {
    display: block;
  }
}
.s-menu-footer-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  align-items: flex-start !important;
}

.s-menu-footer-item {
  color: #a3a3a3 !important;
  font-size: 15px !important;
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
  font-weight: 400 !important;
  transition: all 0.3s ease !important;
  text-transform: capitalize;
  display: inline-block !important;
}
.s-menu-footer-item:hover {
  opacity: 1 !important;
  transform: translateX(4px) !important;
}

[dir=rtl] .s-menu-footer-item:hover {
  transform: translateX(-4px) !important;
}

.dropdown__trigger{
    height: 2.5rem;
    width: 2.5rem;
    overflow: hidden;
    border-radius: 9999px;
    font-weight: 500;
}

.dropdown__trigger:focus{
    --tw-ring-offset-color: transparent;
}
.dropdown__trigger.filter{
    height: auto;
    width: auto;
    overflow: visible;
    border-radius: 0px;
}

.dropdown__menu{
    visibility: hidden;
    position: absolute;
    top: 100%;
    z-index: 30;
    width: 20rem;
    transform-origin: top right;
    --tw-translate-y: -1rem;
    --tw-scale-y: .9;
    transform: translate(var(--tw-translate-x), -1rem) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(.9);
    transform: translate(var(--tw-translate-x), 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));
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
    opacity: 0;
    --tw-shadow: 5px 10px 30px #2B2D340D;;
    --tw-shadow-colored: 5px 10px 30px var(--tw-shadow-color);
    box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 5px 10px 30px #2B2D340D;;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
}

input[type=radio].sr-only div.dropdown__menu {
  transition: all 0.3s;
}

input[type=radio].sr-only:checked ~ div.dropdown__menu {
  border-color: var(--color-main);
}

.ey-product-single .dropdown__menu {
  color: #fff;
  background: transparent;
  border-radius: 0;
}

@media (min-width: 1024px){
    .dropdown__menu{
        width: 15rem;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        border-top-width: 1px;
        border-color: rgba(209, 213, 219, 0.3);
    }
}

.dropdown__menu:where([dir="ltr"], [dir="ltr"] *){
    right: 0px;
}

.dropdown__menu:where([dir="rtl"], [dir="rtl"] *){
    left: 0px;
}

.dropdown__menu {
  outline: none;
}

.dropdown-toggler{
    margin-left: 0px;
    margin-right: 0px;
    display: inline-flex;
    width: 2.5rem;
    align-items: center;
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, 1);
    color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}

@media (min-width: 1024px){
    .dropdown-toggler{
        height: 100%;
    }
}
.dropdown-toggler.cat-filter{
    position: static;
    width: auto;
}
.dropdown-toggler.cat-filter .dropdown__trigger{
    height: auto;
    width: auto;
    overflow: visible;
    border-radius: 0px;
}
.dropdown-toggler:before {
  content: "";
  background: rgba(113, 113, 122, 0.75);
  pointer-events: none;
  visibility: hidden;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 10;
  height: 100vh;
  width: 100vw;
  opacity: 0;
  transition-duration: 300ms;
}
.dropdown-toggler.is-opened .dropdown__menu{
    visibility: visible;
    --tw-translate-y: 0px;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate(var(--tw-translate-x), 0px) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(1) scaleY(1);
    transform: translate(var(--tw-translate-x), 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));
    opacity: 1;
}
.dropdown-toggler.is-opened .dropdown__menu .tooltip-content {
  visibility: visible;
  opacity: 1;
  transform: translate(82px, -110px);
}
[dir=rtl] .icon-trigger.dropdown-toggler.is-opened .dropdown__menu .tooltip-content {
  transform: translate(53px, -63px);
}
[dir=ltr] .icon-trigger.dropdown-toggler.is-opened .dropdown__menu .tooltip-content {
  transform: translate(-54px, -65px);
}
@media (max-width: 991px) {
  [dir=rtl] .icon-trigger.mobile-shifted.dropdown-toggler.is-opened .dropdown__menu .tooltip-content {
    transform: translate(70px, -80px);
  }
  [dir=ltr] .icon-trigger.mobile-shifted.dropdown-toggler.is-opened .dropdown__menu .tooltip-content {
    transform: translate(-70px, -80px);
  }
}
@media (max-width: 1024px) {
  .dropdown-toggler .dropdown__menu {
    left: 0 !important;
    position: fixed;
    bottom: 0px;
    top: auto;
    width: 100%;
    transform-origin: center;
    --tw-translate-y: 2.5rem;
    transform: translate(var(--tw-translate-x), 2.5rem) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), 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));
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    opacity: 0;
    transition-duration: 300ms;
  }
  .dropdown-toggler .dropdown__menu .menu-item:where([dir="ltr"], [dir="ltr"] *){
        padding-right: 0.625rem;
    }
  .dropdown-toggler .dropdown__menu .menu-item:where([dir="rtl"], [dir="rtl"] *){
        padding-left: 0.625rem;
    }
  .dropdown-toggler.is-opened .dropdown__menu{
        --tw-translate-y: 0px;
        transform: translate(var(--tw-translate-x), 0px) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
        transform: translate(var(--tw-translate-x), 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));
        opacity: 1;
    }
  .dropdown-toggler.is-opened:before{
        pointer-events: auto;
        visibility: visible;
        opacity: 1;
    }
.dropdown-toggler.is-opened .tooltip-content:before {
  visibility: visible;
  opacity: 1;
  transform: translate(82px, -110px);
}
[dir=rtl] .icon-trigger.dropdown-toggler.is-opened .tooltip-content:before {
  transform: translate(53px, -63px);
}
[dir=ltr] .icon-trigger.dropdown-toggler.is-opened .tooltip-content:before {
  transform: translate(-54px, -65px);
}
@media (max-width: 991px) {
  [dir=rtl] .icon-trigger.mobile-shifted.dropdown-toggler.is-opened .tooltip-content:before {
    transform: translate(70px, -80px);
  }
  [dir=ltr] .icon-trigger.mobile-shifted.dropdown-toggler.is-opened .tooltip-content:before {
    transform: translate(-70px, -80px);
  }
}
}

@media (max-width: 768px) {
  .single-order-header-item{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

.order-file .s-button-text{
    display: flex;
    gap: 0.5rem;
}

/* tags */
.tag{
    display: inline-block;
    border-radius: 1rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, 1);
    border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.125rem;
    padding-bottom: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.tag--primary{
    border-color: #414042;
    border-color: var(--color-primary);
    color: #414042;
    color: var(--color-primary);
}

/* Profile Header section */
.profile-header{
    position: relative;
    overflow: hidden;
}
@media (min-width: 1024px){
    .profile-header{
        height: 12rem;
    }
  .profile-header .breadcrumbs{
        margin-top: 0.625rem;
    }
}
.profile-header .breadcrumbs a{
    color: #ff6767;
    color: var(--color-primary-reverse);
}
.profile-header .breadcrumbs a:hover{
    opacity: 0.8;
}
.profile-header .breadcrumbs span{
    color: #ff6767;
    color: var(--color-primary-reverse);
    opacity: 0.8;
}
.profile-header .breadcrumbs .arrow{
    color: #ff6767;
    color: var(--color-primary-reverse);
    opacity: 0.7;
}

.s-file-upload-profile-image .s-file-upload-has-error .filepond--file-status:where([dir="ltr"], [dir="ltr"] *){
    left: -50%;
}

.s-file-upload-profile-image .s-file-upload-has-error .filepond--file-status:where([dir="rtl"], [dir="rtl"] *){
    right: 50%;
}

.rating-header{
    position: relative;
    border-radius: 0.375rem;
    --tw-gradient-from: var(--color-primary) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(255, 255, 255, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: var(--color-primary-dark) var(--tw-gradient-to-position);
    padding: 1.25rem;
    color: #ff6767;
    color: var(--color-primary-reverse);
}

/* Profile additional fields */
.form--user-profile .s-file-upload-wrapper {
  min-height: 120px;
}
.form--user-profile .s-file-upload-wrapper .filepond--list-scroller {
  overflow-y: inherit !important;
}
.form--user-profile .s-file-upload-wrapper .filepond--drop-label {
  min-height: 120px !important;
  cursor: pointer;
  border-radius: 0.375rem;
  border-width: 1px;
  border-style: dashed;
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, 1);
  border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
}
.form--user-profile .s-file-upload-wrapper .filepond--drop-label * {
  pointer-events: none;
}
.ey-product-single .form--user-profile .s-file-upload-wrapper .filepond--drop-label {
  color: #fff;
  background: transparent;
  border-radius: 0;
}
.form--user-profile .s-file-upload-wrapper .profile-filepond-placholder{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.form--user-profile .s-file-upload-wrapper .profile-filepond-placholder-icon{
    margin-bottom: 0.25rem;
}
.form--user-profile .s-file-upload-wrapper .profile-filepond-placholder-icon i {
  color: #7c8082;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

/* 
* thank you page 
*/
.thankyou-block{
    margin-bottom: 1.5rem;
    display: flex;
    flex: 1 1 0%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
    padding: 2rem;
    transition-duration: 500ms;
}
.ey-product-single .thankyou-block {
  color: #fff;
  background: transparent;
  border-radius: 0;
}
.thankyou-block:hover{
    --tw-shadow: 5px 10px 30px #2B2D340D;;
    --tw-shadow-colored: 5px 10px 30px var(--tw-shadow-color);
    box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 5px 10px 30px #2B2D340D;;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
@media (min-width: 768px){
    .thankyou-block{
        margin-bottom: 2rem;
    }
}
.thankyou-block.sent{
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgba(34, 197, 94, 1);
    color: rgba(34, 197, 94, var(--tw-text-opacity, 1));
}
.thankyou-block.sent:before{
    margin-bottom: 0.5rem;
    display: flex;
    height: 4rem;
    width: 4rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgba(220, 252, 231, 1);
    background-color: rgba(220, 252, 231, var(--tw-bg-opacity, 1));
    font-size: 1.5rem;
    line-height: 2rem;
    --tw-text-opacity: 1;
    color: rgba(34, 197, 94, 1);
    color: rgba(34, 197, 94, var(--tw-text-opacity, 1));
  content: "\ea9d";
  font-family: "sallaicons";
}

/* 
* Order rating actions
*/
.rating-actions{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.rating-actions salla-button button{
    margin-left: 0px !important;
    margin-right: 0px !important;
    height: 2rem !important;
    width: 2rem !important;
    border-radius: .75rem !important;
}

/* 
* Blog single page
*/
.blog-single .s-comments-item-user-info-name{
    margin-left: 0px;
    margin-right: 0px;
}

/*
  Block Title
*/
.s-block__title{
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (min-width: 768px){
    .s-block__title{
        margin-bottom: 2rem;
    }
}
.s-block__title .right-side:where([dir="ltr"], [dir="ltr"] *){
    padding-right: 2rem;
}
.s-block__title .right-side:where([dir="rtl"], [dir="rtl"] *){
    padding-left: 2rem;
}
.s-block__title h2{
    position: relative;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
}
.s-block__title p{
    margin-top: 0.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    font-size: 0.875rem;
    line-height: 1.25rem;
    opacity: 0.6;
}
@media (min-width: 640px){
    .s-block__title p{
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
}
@media (min-width: 768px){
    .s-block__title p:where([dir="ltr"], [dir="ltr"] *){
        padding-right: 4rem;
    }
    .s-block__title p:where([dir="rtl"], [dir="rtl"] *){
        padding-left: 4rem;
    }
}
.s-block__title-nav{
    display: none;
}
.s-block__title-nav > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.625rem * 0);
    margin-right: calc(0.625rem * var(--tw-space-x-reverse));
    margin-left: calc(0.625rem * (1 - 0));
    margin-left: calc(0.625rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(0.625rem * calc(1 - 0));
    margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse)));
}
@media (min-width: 640px){
    .s-block__title-nav{
        display: flex;
    }
}
.s-block__title-nav:where([dir="ltr"], [dir="ltr"] *){
    margin-left: 1.5rem;
    flex-direction: row-reverse;
}
.s-block__title-nav:where([dir="rtl"], [dir="rtl"] *){
    margin-right: 1.5rem;
}
.s-block__title-nav:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 1;
}
.s-block__display-all{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
    opacity: 0.8;
}
.s-block__display-all:hover{
    opacity: 1;
}
.s-block__display-all i{
    display: inline-block;
}
.s-block__display-all i:where([dir="ltr"], [dir="ltr"] *){
    --tw-rotate: 180deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(180deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), 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));
}

/*
  Main slider
*/
.s-block--hero-slider .swiper-slide{
    position: relative;
    height: 20rem;
    --tw-bg-opacity: 1;
    background-color: rgba(31, 41, 55, 1);
    background-color: rgba(31, 41, 55, var(--tw-bg-opacity, 1));
}
@media (min-width: 640px){
    .s-block--hero-slider .swiper-slide{
        height: 24rem;
    }
}
@media (min-width: 1024px){
    .s-block--hero-slider .swiper-slide{
        height: 464px;
    }
}
@media (min-width: 1280px){
    .s-block--hero-slider .swiper-slide{
        height: 528px;
    }
}
.s-block--hero-slider .swiper-slide .swiper-lazy:after{
    position: absolute;
    top: 0px;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    --tw-content: '';
    content: '';
    content: var(--tw-content);
}
input[type=radio].sr-only div.s-block--hero-slider .swiper-slide .swiper-lazy:after {
  transition: all 0.3s;
}
input[type=radio].sr-only:checked ~ div.s-block--hero-slider .swiper-slide .swiper-lazy:after {
  border-color: var(--color-main);
}
.s-block--hero-slider .swiper-slide .overlay-bg:after{
    position: absolute;
    top: 0px;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    --tw-content: '';
    content: '';
    content: var(--tw-content);
}
input[type=radio].sr-only div.s-block--hero-slider .swiper-slide .overlay-bg:after {
  transition: all 0.3s;
}
input[type=radio].sr-only:checked ~ div.s-block--hero-slider .swiper-slide .overlay-bg:after {
  border-color: var(--color-main);
}

/* Banner Block */
@media screen and (min-width: 768px) {
  .banner:hover .banner__title {
    animation: toTopFromBottom 0.9s;
  }
  .banner:hover .banner__description {
    animation: delayKeyframe 0.3s, toTopFromBottom 0.9s 0.3s;
  }
}
.banner--fixed img{
    display: block;
    width: 100%;
    border-radius: 0.375rem;
    border-style: none;
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, 1);
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity, 1));
    -o-object-fit: cover;
       object-fit: cover;
}

/* Square Banner Block */
.banner-entry{
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, 1);
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity, 1));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0.75rem;
    text-align: center;
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
@media (min-width: 480px){
    .banner-entry{
        padding: 1rem;
    }
}
.banner-entry article{
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.625rem;
}
.banner-entry.square-photos h3{
    height: 100%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
.banner-entry h3{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (min-width: 480px){
    .banner-entry h3{
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
}
.banner-entry h3.text-with-border{
    border-radius: 0.375rem;
    border-style: dashed;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, 1);
    border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
}
@media (min-width: 480px){
    .banner-entry h3.text-with-border{
        border-width: 1px;
    }
}
.banner-entry h3.text-with-border span{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.banner-entry p{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    opacity: 0.8;
}
.banner-entry h3, .banner-entry p{
    position: relative;
    z-index: 1;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}
@media (min-width: 1024px){
    .banner-entry h3, .banner-entry p{
        --tw-translate-y: 1.5rem;
        transform: translate(var(--tw-translate-x), 1.5rem) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
        transform: translate(var(--tw-translate-x), 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));
        opacity: 0;
    }
}
.banner-entry:hover h3{
    --tw-translate-y: 0px;
    transform: translate(var(--tw-translate-x), 0px) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), 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));
    opacity: 1;
}
.banner-entry:hover p{
    --tw-translate-y: 0px;
    transform: translate(var(--tw-translate-x), 0px) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), 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));
    opacity: 0.8;
}
.two-row .banner-entry:first-child{
    padding: 1.25rem;
}
@media (min-width: 640px){
    .two-row .banner-entry:first-child{
        grid-column: span 1 / span 1;
        grid-row: span 2 / span 2;
    }
}
@media (min-width: 768px){
    .two-row .banner-entry:first-child{
        height: 100%;
    }
}
.two-row .banner-entry:first-child > a{
    opacity: 1;
}
.two-row .banner-entry:first-child h3{
    font-size: 1.5rem;
    line-height: 3rem;
}

.has-overlay:after{
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    --tw-content: '';
    content: '';
    content: var(--tw-content);
}

input[type=radio].sr-only div.has-overlay:after {
  transition: all 0.3s;
}

input[type=radio].sr-only:checked ~ div.has-overlay:after {
  border-color: var(--color-main);
}
.has-overlay.with-hover:after {
  transition: opacity 0.3s;
  opacity: 0;
}
.has-overlay.with-hover:hover:after {
  opacity: 1;
}
.has-overlay:hover:after{
    background-color: rgba(0, 0, 0, 0.7);
}

/* Full banner block */
.full-banner-entry{
    position: relative;
    grid-row: span 2 / span 2;
    height: 20rem;
    overflow: hidden;
    --tw-bg-opacity: 1;
    background-color: rgba(231, 229, 228, 1);
    background-color: rgba(231, 229, 228, var(--tw-bg-opacity, 1));
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    padding: 1.25rem;
    text-align: center;
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.full-banner-entry:hover{
    opacity: 0.95;
}
@media (min-width: 768px){
    .full-banner-entry{
        height: 24rem;
    }
}
@media (min-width: 1024px){
    .full-banner-entry{
        height: 464px;
    }
}
@media (min-width: 1280px){
    .full-banner-entry{
        height: 528px;
    }
}
.full-banner-entry {
  background-attachment: scroll;
  background-attachment: initial;
}
.full-banner-entry::after, .full-banner-entry::before {
  height: 100%;
  width: 100%;
  top: 0;
  right: -93%;
  content: "";
  background: #414042;
  background: var(--color-primary);
  position: absolute;
  transition: all 0.3s ease-in-out;
  transform: rotate(220deg) translateY(-50%) translateX(33%);
  opacity: 0.25;
}
.full-banner-entry::before {
  background: #fff;
  right: auto;
  transform: rotate(220deg) translateY(-40%) translateX(0);
}
[dir=ltr] .full-banner-entry::before {
  left: -52%;
}
@media (max-width: 1330px) {
  .full-banner-entry::after {
    top: -50%;
  }
}
@media (max-width: 480px) {
  .full-banner-entry::before {
    top: 20%;
  }
  .full-banner-entry::after {
    top: -80%;
  }
}

/*
  Tabs Block
*/
.tabs-wrapper .tabs__item{
    display: none;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}
.tabs-wrapper .tabs__item.is-active{
    display: block;
}

.s-block--tabs-produtcs .tabs{
    margin-left: -0.625rem;
    margin-right: -0.625rem;
}

.s-block--tabs-produtcs .tabs > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.25rem * 0);
    margin-right: calc(0.25rem * var(--tw-space-x-reverse));
    margin-left: calc(0.25rem * (1 - 0));
    margin-left: calc(0.25rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(0.25rem * calc(1 - 0));
    margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}

.s-block--tabs-produtcs .tabs{
    overflow-x: auto;
    white-space: nowrap;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 640px){
    .s-block--tabs-produtcs .tabs{
        margin-left: -1.25rem;
        margin-right: -1.25rem;
        padding-bottom: 2.5rem;
    }
}

@media (min-width: 768px){
    .s-block--tabs-produtcs .tabs > :not([hidden]) ~ :not([hidden]){
        --tw-space-x-reverse: 0;
        margin-right: calc(1rem * 0);
        margin-right: calc(1rem * var(--tw-space-x-reverse));
        margin-left: calc(1rem * (1 - 0));
        margin-left: calc(1rem * (1 - var(--tw-space-x-reverse)));
        margin-left: calc(1rem * calc(1 - 0));
        margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
    }
}

@media (min-width: 1024px){
    .s-block--tabs-produtcs .tabs{
        margin-left: 0px;
        margin-right: 0px;
    }
}

.s-block--tabs-produtcs .tabs:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 1;
}
.s-block--tabs-produtcs .tab-trigger{
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, 1);
    color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
}
.s-block--tabs-produtcs .tab-trigger.is-active button{
    border-color: var(--color-primary-dark);
    background-color: var(--color-primary-dark);
    color: #ff6767;
    color: var(--color-primary-reverse);
}

.s-block--special-products .tabs{
    margin-bottom: 1rem;
}

.s-block--special-products .tabs > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * 0);
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * (1 - 0));
    margin-left: calc(0.5rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(0.5rem * calc(1 - 0));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.s-block--special-products .tabs{
    overflow-x: auto;
    white-space: nowrap;
}

@media (min-width: 640px){
    .s-block--special-products .tabs{
        margin-bottom: 0px;
    }
}

@media (min-width: 768px){
    .s-block--special-products .tabs > :not([hidden]) ~ :not([hidden]){
        --tw-space-x-reverse: 0;
        margin-right: calc(2rem * 0);
        margin-right: calc(2rem * var(--tw-space-x-reverse));
        margin-left: calc(2rem * (1 - 0));
        margin-left: calc(2rem * (1 - var(--tw-space-x-reverse)));
        margin-left: calc(2rem * calc(1 - 0));
        margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
    }
}

.s-block--special-products .tabs:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 1;
}
.s-block--special-products .tabs__item{
    flex: 1 1 0%;
    gap: 0.625rem;
}
@media (min-width: 640px){
    .s-block--special-products .tabs__item{
        gap: 2rem;
    }
}
.s-block--special-products .tabs__item.is-active {
  display: grid;
}
.s-block--special-products .tab-trigger{
    font-weight: 700;
    line-height: 1.75rem;
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, 1);
    color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
}
.s-block--special-products .tab-trigger.is-active button{
    border-color: var(--color-primary-dark);
    color: var(--color-primary-dark);
}

.s-block--tabs-produtcs:not(.tabs-initialized) .tabs-wrapper > div:not(:first-child),
.s-block--special-products:not(.tabs-initialized) .tabs-wrapper > div:not(:first-child) {
  display: none;
}

/* feature products*/
.s-block--features-products.two-cols .inner {
  display: grid;
  grid-gap: 1.25rem;
  gap: 1.25rem;
}
@media (min-width: 1024px){
    .s-block--features-products.two-cols .inner{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* slider with bg block */
.s-block--slider-with-bg{
    margin-top: 2rem;
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, 1);
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity, 1));
    padding-bottom: 2rem;
}
.s-block--slider-with-bg:first-of-type{
    margin-top: 0px;
}
@media (min-width: 640px){
    .s-block--slider-with-bg{
        margin-top: 4rem;
        padding-bottom: 4rem;
    }
}
.s-block--slider-with-bg .slider-bg{
    position: relative;
    height: 24rem;
    background-size: cover;
    background-position: center;
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
@media (min-width: 640px){
    .s-block--slider-with-bg .slider-bg{
        height: 464px;
    }
}
.s-block--slider-with-bg .slider-bg:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, 1);
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity, 1));
  opacity: 0.6;
}
input[type=radio].sr-only div.s-block--slider-with-bg .slider-bg:before {
  transition: all 0.3s;
}
input[type=radio].sr-only:checked ~ div.s-block--slider-with-bg .slider-bg:before {
  border-color: var(--color-main);
}
.s-block--slider-with-bg .s-slider-block__title-right{
    display: none;
}
.s-block--slider-with-bg .s-slider-block__title-left{
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.s-block--slider-with-bg .s-slider-block__display-all{
    display: block;
    display: inline-flex;
    flex: 1 1 0%;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 0.625rem;
    padding-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 1000ms;
}
.s-block--slider-with-bg .s-slider-block__display-all:hover{
    opacity: 0.8;
}
.s-block--slider-with-bg .s-slider-block__display-all {
  border-radius: var(--button-border-radius);
}
.s-block--slider-with-bg .s-slider-block__display-all .loader {
  width: 0;
  opacity: 0;
  height: 16px;
  transform: scale(0);
  transition: 0.3s;
}
.s-block--slider-with-bg .s-slider-block__display-all {
  /* Disabled state */
}
.s-block--slider-with-bg .s-slider-block__display-all.btn:disabled{
    cursor: default;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, 1);
    border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
    background-color: transparent;
    --tw-text-opacity: 1;
    color: rgba(209, 213, 219, 1);
    color: rgba(209, 213, 219, var(--tw-text-opacity, 1));
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.s-block--slider-with-bg .s-slider-block__display-all.btn:disabled:hover{
    background-color: transparent;
}
.s-block--slider-with-bg .s-slider-block__display-all:disabled .s-button-text{
    opacity: 0.7;
}
.s-block--slider-with-bg .s-slider-block__display-all {
  /* Button Variants */
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, 1);
  border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
  --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow)
}
.ey-product-single .s-block--slider-with-bg .s-slider-block__display-all {
  color: #fff;
  background: transparent;
  border-radius: 0;
}
.s-block--slider-with-bg .s-slider-block__display-all:hover{
    border-color: #414042;
    border-color: var(--color-primary);
    background-color: #414042;
    background-color: var(--color-primary);
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.s-block--slider-with-bg .s-slider-block__display-all.light{
    --tw-border-opacity: 1;
    border-color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, var(--tw-border-opacity, 1));
    background-color: transparent;
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.btn--outline.s-block--slider-with-bg .s-slider-block__display-all{
    --tw-border-opacity: 1;
    border-color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, var(--tw-border-opacity, 1));
    background-color: transparent;
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.s-block--slider-with-bg .s-slider-block__display-all{
    border-radius: 9999px;
    background-color: transparent !important;
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, 1) !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1)) !important;
  flex-grow: 0 !important;
}

/*
  Main Links Block
*/
.slide--cat-entry{
    display: flex;
    height: 9rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(243, 244, 246, 1);
    border-color: rgba(243, 244, 246, var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
    padding: 0.75rem;
    text-align: center;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
}
.ey-product-single .slide--cat-entry {
  color: #fff;
  background: transparent;
  border-radius: 0;
}
.slide--cat-entry:hover{
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, 1);
    color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
    --tw-shadow: 5px 10px 30px #2B2D340D;;
    --tw-shadow-colored: 5px 10px 30px var(--tw-shadow-color);
    box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 5px 10px 30px #2B2D340D;;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.slide--cat-entry i{
    margin-bottom: 1rem;
    display: inline-block;
    font-size: 33px;
    color: #414042;
    color: var(--color-primary);
}
.slide--cat-entry h2{
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
}

/*
  offers slider
*/
.slide--offer-entry{
    display: flex;
    height: 9rem;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 0.375rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, 1);
    border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
    text-align: center;
    --tw-text-opacity: 1;
    color: rgba(75, 85, 99, 1);
    color: rgba(75, 85, 99, var(--tw-text-opacity, 1));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
}
.ey-product-single .slide--offer-entry {
  color: #fff;
  background: transparent;
  border-radius: 0;
}
.slide--offer-entry:hover{
    --tw-shadow: 5px 10px 30px #2B2D340D;;
    --tw-shadow-colored: 5px 10px 30px var(--tw-shadow-color);
    box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 5px 10px 30px #2B2D340D;;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}

.s-block{
    overflow-x: clip;
}
.s-block--full-bg + footer,
.s-block--full-bg + .s-block--full-bg, .s-block--full-bg:first-of-type{
    margin-top: 0px;
}
.s-block--full-bg + .merge-with-top-component{
    z-index: 1;
    margin-top: -7rem;
}
@media (min-width: 768px){
    .s-block--full-bg + .merge-with-top-component{
        margin-top: -8rem;
    }
}
.s-block--full-bg + .merge-with-top-component .s-slider-block__title {
  color: #fff !important;
  text-align: center;
}
@media (min-width: 640px){
    .s-block--full-bg + .merge-with-top-component .s-slider-block__title{
        margin-bottom: 1rem;
        text-align: left;
    }
}
.s-block--full-bg + .merged-has-no-title{
    margin-top: -4rem;
}
@media (min-width: 768px){
    .s-block--full-bg + .merged-has-no-title{
        margin-top: -74px;
    }
}
@media (min-width: 640px){
    .s-block--full-bg + .merged-has-no-title .s-slider-block__title{
        margin-bottom: 0px;
    }
}
.s-block--categories{
    position: relative;
    overflow: hidden;
}
.s-block--categories__title{
    position: relative;
    z-index: 1;
    min-height: 28px;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 700;
}
@media (min-width: 640px){
    .s-block--categories__title{
        margin-bottom: 1rem;
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
}
.s-block--features__item{
    display: flex;
    flex-grow: 1;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
}
.s-block--features__item * {
  pointer-events: none;
}
.ey-product-single .s-block--features__item {
  color: #fff;
  background: transparent;
  border-radius: 0;
}
.s-block--features__item:hover{
    --tw-shadow: 5px 10px 30px #2B2D340D;;
    --tw-shadow-colored: 5px 10px 30px var(--tw-shadow-color);
    box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 5px 10px 30px #2B2D340D;;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
@media (min-width: 768px){
    .s-block--features__item{
        padding-left: 2rem;
        padding-right: 2rem;
    }
}
.s-block--features__item:first-child{
    grid-column: span 2 / span 2;
}
@media (min-width: 768px){
    .s-block--features__item:first-child{
        grid-column: span 1 / span 1;
    }
}
.s-block--features__item .feature-icon{
    margin-bottom: 0.75rem;
    display: flex;
    height: 4rem;
    width: 4rem;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 9999px;
    background-color: #414042;
    background-color: var(--color-primary);
}
.s-block--features__item .feature-icon i{
    font-size: 1.875rem;
    line-height: 2.25rem;
    color: #ff6767;
    color: var(--color-primary-reverse);
}
.s-block--features__item h2{
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, 1);
    color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
}
.s-block--features__item p{
    font-size: 0.875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, 1);
    color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}
.s-block--features__item:hover .feature-icon i {
  animation: toRightFromLeft 0.3s forwards;
}

.s-block--features + .s-block--features,
.s-block--fixed-banner + .s-block--fixed-banner,
.s-block--banners + .s-block--banners {
  margin-top: 2em;
}

.s-block--tabs-produtcs + .s-block--tabs-produtcs {
  padding-top: 2em;
}

.s-blocks-wrapper:empty{
    display: none;
}
.s-blocks-wrapper :not(.s-information-page) .s-block:first-child{
    margin-top: 0px;
}
.s-blocks-wrapper:empty + .container--products-list,
.s-blocks-wrapper:empty + .container--product-details{
    margin-top: 0px !important;
}
.s-blocks-wrapper.s-information-page.s-block.s-block--full-bg:first-of-type{
    margin-top: 0px;
}

.container--breadcrumbs, .container--breadcrumbs + .s-blocks-wrapper{
    margin-top: 0px !important;
}

salla-slider{
    display: block;
}
salla-slider.details-slider .swiper-slide{
    position: relative;
}
salla-slider.details-slider salla-button.btn--wishlist{
    position: absolute;
    bottom: 1rem;
    z-index: 2;
}
input[type=radio].sr-only divsalla-slider.details-slider salla-button.btn--wishlist {
  transition: all 0.3s;
}
input[type=radio].sr-only:checked ~ divsalla-slider.details-slider salla-button.btn--wishlist {
  border-color: var(--color-main);
}
@media (min-width: 640px){
    salla-slider.details-slider salla-button.btn--wishlist{
        display: none;
    }
}
salla-slider.details-slider salla-button.btn--wishlist:where([dir="ltr"], [dir="ltr"] *){
    left: 1rem;
}
salla-slider.details-slider salla-button.btn--wishlist:where([dir="rtl"], [dir="rtl"] *){
    right: 1rem;
}
salla-slider.details-slider .s-slider-block__title-nav{
    display: none;
}
@media (min-width: 640px){
    salla-slider.details-slider .s-slider-block__title-nav{
        display: flex;
    }
}
salla-slider .slide--one-fourth{
    height: auto;
    width: 100%;
    max-width: 250px;
}
@media (min-width: 640px){
    salla-slider .slide--one-fourth{
        width: 50%;
        max-width: 320px;
    }
}
@media (min-width: 768px){
    salla-slider .slide--one-fourth{
        width: 33.333333%;
    }
}
@media (min-width: 1024px){
    salla-slider .slide--one-fourth{
        width: 25%;
    }
}
salla-slider .slide--one-sixth{
    width: 50%;
}
@media (min-width: 640px){
    salla-slider .slide--one-sixth{
        width: 33.333333%;
    }
}
@media (min-width: 768px){
    salla-slider .slide--one-sixth{
        width: 25%;
    }
}
@media (min-width: 1024px){
    salla-slider .slide--one-sixth{
        width: 16.666667%;
    }
}
salla-slider .swiper-slide {
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}

.promotion-title{
    position: absolute;
    top: 1rem;
    z-index: 10;
    --tw-bg-opacity: 1;
    background-color: rgba(153, 27, 27, 1);
    background-color: rgba(153, 27, 27, var(--tw-bg-opacity, 1));
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}

input[type=radio].sr-only div.promotion-title {
  transition: all 0.3s;
}

input[type=radio].sr-only:checked ~ div.promotion-title {
  border-color: var(--color-main);
}

.promotion-title:where([dir="ltr"], [dir="ltr"] *){
    left: 0px;
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

.promotion-title:where([dir="rtl"], [dir="rtl"] *){
    right: 0px;
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}

.promotion-title{
    margin: 0px !important;
    width: auto !important;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.home-slider__slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.home-slider__slide:not(.loaded) .overlay {
  opacity: 0;
}

salla-slider.photos-slider .swiper-pagination-bullets.swiper-pagination-horizontal{
    bottom: 0px;
}
salla-slider.photos-slider .swiper{
    padding-bottom: 2.5rem;
}
salla-slider.photos-slider .swiper:where([dir="ltr"], [dir="ltr"] *){
    padding-right: 1.5rem;
}
@media (min-width: 768px){
    salla-slider.photos-slider .swiper:where([dir="ltr"], [dir="ltr"] *){
        padding-right: 3rem;
    }
}
salla-slider.photos-slider .swiper:where([dir="rtl"], [dir="rtl"] *){
    padding-left: 1.5rem;
}
@media (min-width: 768px){
    salla-slider.photos-slider .swiper:where([dir="rtl"], [dir="rtl"] *){
        padding-left: 3rem;
    }
}
salla-slider.photos-slider .swiper{
    margin-left: 0px;
    margin-right: 0px;
    width: 100%;
}
salla-slider.photos-slider:not(.hydrated) > div{
    justify-content: center;
}
salla-slider.photos-slider .swiper-slide{
    position: relative;
    margin-left: 0.375rem;
    margin-right: 0.375rem;
    height: auto;
    width: 100%;
    overflow: hidden;
    border-radius: 0.375rem;
}
@media (min-width: 768px){
    salla-slider.photos-slider .swiper-slide{
        margin-left: 0.75rem;
        margin-right: 0.75rem;
    }
}
@media (min-width: 1024px){
    salla-slider.photos-slider .swiper-slide{
        margin-left: 1rem;
        margin-right: 1rem;
        width: 80%;
    }
}
salla-slider.photos-slider .swiper-pagination-bullet:not(.swiper-pagination-bullet-active){
    --tw-bg-opacity: 1;
    background-color: rgba(209, 213, 219, 1);
    background-color: rgba(209, 213, 219, var(--tw-bg-opacity, 1));
}
@media (max-width: 1024px) {
  salla-slider.photos-slider .swiper:where([dir="ltr"], [dir="ltr"] *){
        padding-left: 1rem;
    }
  salla-slider.photos-slider .swiper:where([dir="rtl"], [dir="rtl"] *){
        padding-right: 1rem;
    }
  salla-slider.photos-slider .swiper-slide{
        padding-left: 0px;
        padding-right: 0px;
    }
}

.swiper:not(.swiper-initialized) .swiper-button {
  opacity: 0;
}

.s-block--testimonials.container{
    padding: 0px;
}

@media (min-width: 1024px){
    .s-block--testimonials.container{
        padding-left: 0.625rem;
        padding-right: 0.625rem;
    }
}
.s-block--testimonials .s-slider-block__title{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
}
@media (min-width: 1024px){
    .s-block--testimonials .s-slider-block__title{
        padding-left: 0px;
        padding-right: 0px;
    }
}
.s-block--testimonials .s-slider-block__title-nav{
    top: 65% !important;
    display: none !important;
    max-width: 88% !important;
}
@media (min-width: 1024px){
    .s-block--testimonials .s-slider-block__title-nav{
        display: flex !important;
    }
}
.s-block--testimonials .s-slider-block__title-nav button{
    --tw-border-opacity: 1 !important;
    border-color: rgba(243, 244, 246, 1) !important;
    border-color: rgba(243, 244, 246, var(--tw-border-opacity, 1)) !important;
    --tw-shadow-color: #d1d5db !important;
    --tw-shadow: var(--tw-shadow-colored) !important;
}

@media screen and (min-width: 768px) {
  .best-products-slider .swiper-wrapper {
    height: 510px;
  }
  .best-products-slider .swiper-wrapper .swiper-slide {
    height: calc((100% - 30px) / 2);
  }
}

.swiper-button-disabled {
  opacity: 0.5;
}

salla-slider .swiper-pagination-bullet {
  width: 20px;
  border-radius: 5px;
  background: #fff;
  opacity: 0.3;
}
salla-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #414042;
  background-color: var(--color-primary);
}
salla-slider .swiper-pagination-bullets.swiper-pagination-horizontal{
    bottom: 0.75rem;
}
@media (min-width: 640px){
    salla-slider .swiper-pagination-bullets.swiper-pagination-horizontal{
        bottom: 1.5rem;
    }
}

.offer-slider .s-slider-block__title{
    position: relative;
    margin-bottom: 1.25rem;
}
.offer-slider .s-slider-block__title:before{
    position: absolute;
    top: 1rem;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
    --tw-text-opacity: 1;
    color: rgba(254, 242, 242, 1);
    color: rgba(254, 242, 242, var(--tw-text-opacity, 1));
}
input[type=radio].sr-only div.offer-slider .s-slider-block__title:before {
  transition: all 0.3s;
}
input[type=radio].sr-only:checked ~ div.offer-slider .s-slider-block__title:before {
  border-color: var(--color-main);
}
.offer-slider .s-slider-block__title:where([dir="ltr"], [dir="ltr"] *):before{
    left: 0px;
}
.offer-slider .s-slider-block__title:where([dir="rtl"], [dir="rtl"] *):before{
    right: 0px;
}
.offer-slider .s-slider-block__title:before {
  content: "\ee30";
  font-family: "sallaicons";
}
.offer-slider .s-slider-block__title h2{
    font-size: 1.125rem;
    line-height: 1.75rem;
    --tw-text-opacity: 1;
    color: rgba(248, 113, 113, 1);
    color: rgba(248, 113, 113, var(--tw-text-opacity, 1));
}
.offer-slider .s-slider-block__title p{
    margin-top: 0.25rem;
    overflow: visible;
    display: block;
    -webkit-box-orient: horizontal;
    -webkit-line-clamp: none;
    line-height: 1.5rem;
}

.bank-offer .s-slider-block__title{
    display: none;
}

model-viewer[style*=width]:before{
    display: none;
}

.blog-slider .swiper-slide img{
    max-height: 480px;
    min-height: 380px;
}

@media (min-width: 768px){
    .blog-slider .swiper-slide img{
        max-height: 680px;
    }
}

.s-slider-block__title-nav button,
.s-slider-v-centered .s-slider-block__title-nav button,
.s-slider-nav-arrow,
.s-slider-thumbs-nav button {
  transition: all 0.3s ease;
}
.s-slider-block__title-nav button:not(:disabled):not(.swiper-button-disabled):hover,
.s-slider-v-centered .s-slider-block__title-nav button:not(:disabled):not(.swiper-button-disabled):hover,
.s-slider-nav-arrow:not(:disabled):not(.swiper-button-disabled):hover,
.s-slider-thumbs-nav button:not(:disabled):not(.swiper-button-disabled):hover {
  background-color: #414042 !important;
  background-color: var(--color-primary) !important;
  border-color: #414042 !important;
  border-color: var(--color-primary) !important;
  color: #ff6767 !important;
  color: var(--color-primary-reverse) !important;
}
.s-slider-block__title-nav button:not(:disabled):not(.swiper-button-disabled):hover svg,
.s-slider-v-centered .s-slider-block__title-nav button:not(:disabled):not(.swiper-button-disabled):hover svg,
.s-slider-nav-arrow:not(:disabled):not(.swiper-button-disabled):hover svg,
.s-slider-thumbs-nav button:not(:disabled):not(.swiper-button-disabled):hover svg {
  fill: #ff6767 !important;
  fill: var(--color-primary-reverse) !important;
}
.s-slider-block__title-nav button:not(:disabled):not(.swiper-button-disabled):hover i,
.s-slider-v-centered .s-slider-block__title-nav button:not(:disabled):not(.swiper-button-disabled):hover i,
.s-slider-nav-arrow:not(:disabled):not(.swiper-button-disabled):hover i,
.s-slider-thumbs-nav button:not(:disabled):not(.swiper-button-disabled):hover i {
  color: #ff6767 !important;
  color: var(--color-primary-reverse) !important;
}

.product-entry{
    position: relative;
    display: flex;
    height: 100%;
    justify-content: space-between;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.ey-product-single .product-entry {
  color: #fff;
  background: transparent;
  border-radius: 0;
}

.product-entry:hover{
    --tw-shadow: 5px 10px 30px #2B2D340D;;
    --tw-shadow-colored: 5px 10px 30px var(--tw-shadow-color);
    box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 5px 10px 30px #2B2D340D;;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.product-entry--wishlist{
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
}
@media (min-width: 640px){
    .product-entry--wishlist{
        flex-direction: row;
    }
}
.product-entry--wishlist .product-entry__image{
    height: 3rem;
    width: 4rem;
    overflow: hidden;
    border-radius: 0.375rem;
}
@media (min-width: 768px){
    .product-entry--wishlist .product-entry__image{
        height: 4rem;
        width: 5rem;
    }
}
.product-entry--wishlist salla-button{
    display: flex;
}

.s-comments-page{
    padding-top: 4rem;
}
.s-comments-product{
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, 1);
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity, 1));
    padding-top: 1rem;
    padding-bottom: 1rem;
}
@media (min-width: 768px){
    .s-comments-product{
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
}
.s-comments-product .s-comments-container{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 10px;
    padding-left: 10px;
}
@media (min-width: 1280px){
    .s-comments-product .s-comments-container{
        max-width: 1280px;
    }
}
.s-block--testimonials.s-comments-product .s-comments-container{
    padding: 0px;
}
@media (min-width: 1024px){
    .s-block--testimonials.s-comments-product .s-comments-container{
        padding-left: 0.625rem;
        padding-right: 0.625rem;
    }
}

.share-btns-list{
    position: absolute;
    top: 3rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    border-radius: 1.5rem;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
    opacity: 0;
    --tw-shadow: 0px 3px 6px rgba(0,0,0,0.16078);
    --tw-shadow-colored: 0px 3px 6px var(--tw-shadow-color);
    box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0px 3px 6px rgba(0,0,0,0.16078);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}

input[type=radio].sr-only div.share-btns-list {
  transition: all 0.3s;
}

input[type=radio].sr-only:checked ~ div.share-btns-list {
  border-color: var(--color-main);
}

.ey-product-single .share-btns-list {
  color: #fff;
  background: transparent;
  border-radius: 0;
}
.share-btns-list a{
    display: block;
    padding: 0.75rem;
}
.share-btns-list a:hover{
    color: #414042;
    color: var(--color-primary);
}

.cart-item salla-conditional-fields > section{
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
}

.cart-item salla-conditional-fields > section:last-child{
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.cart-item .btn--delete .s-button-element {
  background: transparent !important;
  border: 0 !important;
  color: #a3a3a3 !important;
  box-shadow: none !important;
  transition: color 0.2s ease !important;
  padding: 0 !important;
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
}
.cart-item .btn--delete .s-button-element svg {
  stroke: currentColor !important;
  fill: none !important;
}
.cart-item .btn--delete .s-button-element:hover, .cart-item .btn--delete .s-button-element:focus, .cart-item .btn--delete .s-button-element:active {
  background: transparent !important;
  color: #ef4444 !important;
  color: var(--color-danger, #ef4444) !important;
}
.cart-item .btn--delete .s-button-element .s-button-loader::before {
  border-left-color: #ef4444 !important;
  border-left-color: var(--color-danger, #ef4444) !important;
  border-top-color: #ef4444 !important;
  border-top-color: var(--color-danger, #ef4444) !important;
}

.s-product-card-content-pie-svg-base {
  transition: stroke-dashoffset 1s linear;
  stroke: #e8edf2;
  stroke-width: 2px;
  stroke-linecap: round;
  fill: none;
}

.s-product-card-content-pie-svg-bar {
  fill: none;
  stroke: #414042;
  stroke: var(--color-primary);
  stroke-dasharray: 100 100;
  stroke-dashoffset: 100;
}

.s-product-card-content-sub{
    justify-content: flex-start;
    gap: 0.75rem;
}
.s-product-card-starting-price{
    width: auto;
}
.s-product-card-content-title {
  word-break: break-word;
}

.pie-wrapper{
    position: absolute;
    top: 0.625rem;
    display: flex;
    height: 72px;
    width: 72px;
    align-items: center;
    justify-content: center;
    color: #414042;
    color: var(--color-primary);
}

input[type=radio].sr-only div.pie-wrapper {
  transition: all 0.3s;
}

input[type=radio].sr-only:checked ~ div.pie-wrapper {
  border-color: var(--color-main);
}

.pie-wrapper:where([dir="ltr"], [dir="ltr"] *){
    right: 1.25rem;
}

.pie-wrapper:where([dir="rtl"], [dir="rtl"] *){
    left: 1.25rem;
}
.pie-wrapper .pie-svg circle {
  transition: stroke-dashoffset 1s linear;
  stroke: #e8edf2;
  stroke-width: 2px;
  stroke-linecap: round;
  fill: none;
}
.pie-wrapper .pie-svg circle.circle_bar {
  stroke: #414042;
  stroke: var(--color-primary);
  stroke-dasharray: 100 100;
  stroke-dashoffset: 100;
}
.pie-wrapper span {
  display: block;
  color: #7c8082;
  color: var(--color-text);
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  font-size: var(--font-xsm);
}
.pie-wrapper span b {
  font-size: var(--font-md) !important;
  margin-bottom: 3px;
  color: #414042;
  color: var(--color-primary);
}

/* Add to cart sticky bar */
@media (max-width: 640px) {
  .is-sticky-product-bar.product-single{
        padding-bottom: 7rem;
    }
  .is-sticky-product-bar .sticky-product-bar{
        position: fixed;
        bottom: 0px;
        left: 0px;
        z-index: 2;
        display: flex;
        width: 100%;
        --tw-translate-y: 28rem;
        transform: translate(var(--tw-translate-x), 28rem) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
        transform: translate(var(--tw-translate-x), 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));
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.625rem;
        background-color: var(--body-bg-color);
        padding: 0.75rem;
        opacity: 0;
        transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 500ms;
        transition-duration: 700ms;
        transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
    }
  @media (min-width: 640px){
        .is-sticky-product-bar .sticky-product-bar{
            gap: 1rem;
        }
    }
  .is-sticky-product-bar .sticky-product-bar {
    box-shadow: -1px -2px 9px 0 rgba(0, 0, 0, 0.05);
  }
  .is-sticky-product-bar .sticky-product-bar__quantity,
  .is-sticky-product-bar .sticky-product-bar salla-add-product-button{
        width: 100%;
        --tw-translate-y: 1.25rem;
        transform: translate(var(--tw-translate-x), 1.25rem) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
        transform: translate(var(--tw-translate-x), 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));
        opacity: 0;
        transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 700ms;
        transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
    }
  .is-sticky-product-bar .sticky-product-bar__price,
  .is-sticky-product-bar .sticky-product-bar .form-label{
        display: none;
    }
  .is-sticky-product-bar .sticky-product-bar__quantity salla-quantity-input{
        width: 100%;
    }
  .is-sticky-product-bar .sticky-product-bar__quantity salla-quantity-input .s-quantity-input-container{
        width: 100%;
    }
  .is-sticky-product-bar .sticky-product-bar__quantity salla-quantity-input .s-quantity-input-input{
        width: 80%;
    }
  .is-sticky-product-bar .sticky-product-bar__quantity{
        margin: 0px;
        transition-delay: 900ms;
    }
  .is-sticky-product-bar .sticky-product-bar salla-add-product-button{
        margin: 0px;
        width: auto;
        flex: 1 1 0%;
        transition-delay: 1000ms;
    }
  .hydrated .is-sticky-product-bar .sticky-product-bar, .hydrated .is-sticky-product-bar .sticky-product-bar__quantity,
  .hydrated .is-sticky-product-bar .sticky-product-bar salla-add-product-button{
        --tw-translate-y: 0px;
        transform: translate(var(--tw-translate-x), 0px) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
        transform: translate(var(--tw-translate-x), 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));
        opacity: 1;
    }
}
.s-tabs-header * {
  pointer-events: auto !important;
}

.product__description ul,
.product__description li {
  list-style: inherit !important;
}
.product__description ul,
.product__description ol{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.product__description ol {
  list-style: auto !important;
}
.product__description a{
    --tw-text-opacity: 1;
    color: rgba(29, 78, 216, 1);
    color: rgba(29, 78, 216, var(--tw-text-opacity, 1));
}

.model-viewer-wrapper{
    position: relative;
    margin-bottom: 1rem;
    width: 100%;
}

@media (min-width: 768px){
    .model-viewer-wrapper{
        margin-bottom: 0px;
    }
}

.switcher-3d-view{
    position: absolute;
    top: 1.25rem;
}

input[type=radio].sr-only div.switcher-3d-view {
  transition: all 0.3s;
}

input[type=radio].sr-only:checked ~ div.switcher-3d-view {
  border-color: var(--color-main);
}

.switcher-3d-view:where([dir="ltr"], [dir="ltr"] *){
    right: 1rem;
}

.switcher-3d-view:where([dir="rtl"], [dir="rtl"] *){
    left: 1rem;
}

.model-viewer{
    height: 100%;
    width: 100%;
}
.model-viewer__poster{
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
input[type=radio].sr-only div.model-viewer__poster {
  transition: all 0.3s;
}
input[type=radio].sr-only:checked ~ div.model-viewer__poster {
  border-color: var(--color-main);
}

.s-toggle .s-toggle-switcher-has-text:before{
    text-align: center;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 700;
    line-height: 22px;
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, 1);
    color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
    --tw-content: attr(data-switcher-text);
    content: attr(data-switcher-text);
    content: var(--tw-content);
  font-family: arial, serif;
}

.s-toggle .s-toggle-input:checked + div.s-toggle-switcher-bg-white:before{
    --tw-border-opacity: 1;
    border-color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgba(75, 85, 99, 1);
    color: rgba(75, 85, 99, var(--tw-text-opacity, 1));
}

.ey-product-single .s-toggle .s-toggle-input:checked + div.s-toggle-switcher-bg-white:before {
  color: #fff;
  background: transparent;
  border-radius: 0;
}

.product-option-uploader {
  display: block;
}
.product-option-uploader .s-file-upload-wrapper {
  min-height: 120px;
}
.product-option-uploader .s-file-upload-wrapper .filepond--list-scroller {
  overflow-y: inherit !important;
}
.product-option-uploader .s-file-upload-wrapper .filepond--drop-label {
  min-height: 120px !important;
  cursor: pointer;
  border-radius: 0.375rem;
  border-width: 1px;
  border-style: dashed;
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, 1);
  border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
}
.product-option-uploader .s-file-upload-wrapper .filepond--drop-label * {
  pointer-events: none;
}
.ey-product-single .product-option-uploader .s-file-upload-wrapper .filepond--drop-label {
  color: #fff;
  background: transparent;
  border-radius: 0;
}
.product-option-uploader .s-file-upload-wrapper .product-option-uploader-placholder{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.product-option-uploader .s-file-upload-wrapper .product-option-uploader-placholder-icon{
    margin-bottom: 0.25rem;
}
.product-option-uploader .s-file-upload-wrapper .product-option-uploader-placholder-icon i {
  color: #7c8082;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

@media (max-width: 640px) {
  .s-offer-modal-slider-centered .s-offer-modal-slider-item {
    max-width: 46% !important;
  }
}
.s-product-card-full-image salla-add-product-button{
    border-radius: .75rem;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
}
.ey-product-single .s-product-card-full-image salla-add-product-button {
  color: #fff;
  background: transparent;
  border-radius: 0;
}
.s-product-card-wishlist-added i{
    --tw-text-opacity: 1;
    color: rgba(239, 68, 68, 1);
    color: rgba(239, 68, 68, var(--tw-text-opacity, 1));
}
.ey-product-single__price .s-product-card-wishlist-added i {
  color: #414042;
  color: var(--color-primary);
}
.ey-product-single .price-wrapper .s-product-card-wishlist-added i {
  color: #414042;
  color: var(--color-primary);
}
.s-product-card-fit-height.s-product-card-vertical .s-product-card-image{
    flex: none;
}
@media (min-width: 640px){
    .s-product-card-fit-height.s-product-card-vertical .s-product-card-image{
        flex: 1 1 0%;
    }
}
.s-product-options-colors-wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.s-product-options-colors-wrapper .s-product-options-colors-item{
    margin: 0px;
    width: auto;
}
.s-product-options-colors-wrapper .s-product-options-colors-item:where([dir="ltr"], [dir="ltr"] *){
    margin: 0px;
}
.s-product-options-colors-wrapper .s-product-options-colors-item:where([dir="rtl"], [dir="rtl"] *){
    margin: 0px;
}

.s-product-card-minimal .s-product-card-image:where([dir="ltr"], [dir="ltr"] *){
    border-top-left-radius: .75rem;
    border-bottom-left-radius: .75rem;
}

.s-product-card-minimal .s-product-card-image:where([dir="rtl"], [dir="rtl"] *){
    border-top-right-radius: .75rem;
    border-bottom-right-radius: .75rem;
}

.s-product-card-starting-price{
    justify-content: flex-start;
    gap: 0.625rem;
}
.s-product-card-starting-price h4{
    --tw-text-opacity: 1;
    color: rgba(239, 68, 68, 1);
    color: rgba(239, 68, 68, var(--tw-text-opacity, 1));
}
.ey-product-single__price .s-product-card-starting-price h4 {
  color: #414042;
  color: var(--color-primary);
}
.ey-product-single .price-wrapper .s-product-card-starting-price h4 {
  color: #414042;
  color: var(--color-primary);
}

.s-product-card-minimal salla-button.s-product-card-wishlist-btn{
    top: 0.625rem;
}

.s-product-card-minimal salla-button.s-product-card-wishlist-btn:where([dir="ltr"], [dir="ltr"] *){
    right: 0.625rem;
}

.s-product-card-minimal salla-button.s-product-card-wishlist-btn:where([dir="rtl"], [dir="rtl"] *){
    left: 0.625rem;
}

.magnify-wrapper .img-magnifier-glass{
    display: none;
}

@media (min-width: 640px){
    .magnify-wrapper .img-magnifier-glass{
        display: block;
    }
}

.magnify-wrapper .img-magnifier-glass {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  cursor: none;
  /*Set the size of the magnifier glass:*/
  width: 300px;
  height: 300px;
  opacity: 0;
  pointer-events: none;
  transform: scale(0);
  transition: transform 0.5s ease;
  box-shadow: inset 0px 0px 30px #949494;
}
.magnify-wrapper:hover .img-magnifier-glass {
  opacity: 1;
  pointer-events: initial;
  transform: scale(1);
  transition-delay: 0.3s;
}

.s-product-card-image img{
    opacity: 1;
}

.s-product-card-horizontal .s-product-card-content{
    margin-bottom: 0px;
}
@media (max-width: 480px) {
  .s-product-card-horizontal salla-button.s-product-card-wishlist-btn{
        position: absolute;
        bottom: 0.625rem;
    }

input[type=radio].sr-only div.s-product-card-horizontal salla-button.s-product-card-wishlist-btn {
  transition: all 0.3s;
}
input[type=radio].sr-only:checked ~ div.s-product-card-horizontal salla-button.s-product-card-wishlist-btn {
  border-color: var(--color-main);
}
  .s-product-card-horizontal salla-button.s-product-card-wishlist-btn:where([dir="ltr"], [dir="ltr"] *){
        left: -3rem;
    }
  .s-product-card-horizontal salla-button.s-product-card-wishlist-btn:where([dir="rtl"], [dir="rtl"] *){
        right: -3rem;
    }
}
.s-product-card-horizontal salla-progress-bar{
    display: flex;
    flex-grow: 1;
    flex-direction: column;
}

.s-rating-stars-reviews{
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, 1);
    color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}

.s-product-card-promotion-title{
    --tw-bg-opacity: 1;
    background-color: rgba(153, 27, 27, 1);
    background-color: rgba(153, 27, 27, var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}

.s-product-card-sale-price h4{
    --tw-text-opacity: 1 !important;
    color: rgba(239, 68, 68, 1) !important;
    color: rgba(239, 68, 68, var(--tw-text-opacity, 1)) !important;
}

.ey-product-single__price .s-product-card-sale-price h4 {
  color: #414042 !important;
  color: var(--color-primary) !important;
}

.ey-product-single .price-wrapper .s-product-card-sale-price h4 {
  color: #414042 !important;
  color: var(--color-primary) !important;
}
.s-product-card-sale-price span{
    color: inherit;
}

.ey-catalog-products-list{
    display: block;
    width: 100%;
    min-width: 0px;
    overflow: visible;
}
.ey-catalog-products-list .s-products-list-wrapper{
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 768px){
    .ey-catalog-products-list .s-products-list-wrapper{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
.ey-catalog-products-list .s-products-list-wrapper {
  gap: max(32px, min(4vw, 56px)) max(20px, min(3vw, 40px));
}
.ey-catalog-products-list .s-product-card-image{
    position: relative;
    overflow: hidden;
}
.ey-catalog-products-list .s-product-card-image img {
  transition: transform 1250ms cubic-bezier(0.2, 0.75, 0.25, 1);
}
.ey-catalog-products-list custom-salla-product-card:hover .s-product-card-image img {
  transform: scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
  .ey-catalog-products-list .s-product-card-image img {
    transition: none;
  }
}
.ey-filter-drawer .ey-side-cart__overlay {
  cursor: pointer;
  transition: opacity 0.35s ease;
}
.ey-filter-drawer .ey-side-cart__drawer {
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.ey-filter-drawer.is-open .ey-side-cart__overlay {
  opacity: 1;
}
.ey-filter-drawer.is-open .ey-side-cart__drawer {
  transform: translateX(0);
}
.ey-filter-drawer__items {
  padding-top: 24px;
  padding-bottom: 30px;
}
@media (max-width: 479px) {
  .ey-filter-drawer__items {
    padding-top: 20px;
    padding-bottom: 24px;
  }
}
.ey-filter-drawer salla-filters {
  display: block !important;
  width: 100%;
}
.ey-filter-drawer salla-filters,
.ey-filter-drawer salla-filters > * {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.ey-filter-drawer .s-filters-widget-container,
.ey-filter-drawer .s-filters-widget-wrapper {
  width: 100%;
}

.s-filters-widget-container {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

salla-filters .s-button-element {
  background-color: #414042 !important;
  background-color: var(--color-primary) !important;
  color: #ffffff !important;
  border-color: #414042 !important;
  border-color: var(--color-primary) !important;
  transition: all 0.3s ease !important;
}
salla-filters .s-button-element svg {
  fill: currentColor !important;
  width: 16px !important;
  height: 16px !important;
}
salla-filters .s-button-element:hover {
  background-color: #272628 !important;
  background-color: var(--color-primary-d) !important;
  border-color: #272628 !important;
  border-color: var(--color-primary-d) !important;
  color: #ffffff !important;
}

salla-filters input[type=text],
salla-filters .s-filters-checkbox,
salla-filters .s-button-btn,
salla-filters .s-price-range-number-input {
  border-radius: 0 !important;
}

.s-price-range-inputs {
  padding: 0 !important;
}

#offer-corner-badge{
    position: absolute;
    z-index: 1;
    float: left;
    margin: 0px;
    height: auto;
    width: auto;
    transform: translate(var(--tw-translate-x), 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));
    border-width: 0px;
    --tw-bg-opacity: 1;
    background-color: rgba(220, 38, 38, 1);
    background-color: rgba(220, 38, 38, var(--tw-bg-opacity, 1));
    padding-left: 3rem;
    padding-right: 3rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}

input[type=radio].sr-only div#offer-corner-badge {
  transition: all 0.3s;
}

input[type=radio].sr-only:checked ~ div#offer-corner-badge {
  border-color: var(--color-main);
}

#offer-corner-badge:where([dir="ltr"], [dir="ltr"] *){
    top: 1.25rem;
    right: -3.5rem;
    --tw-rotate: 45deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(45deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), 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));
}

#offer-corner-badge:where([dir="rtl"], [dir="rtl"] *){
    top: 0.75rem;
    left: -3rem;
    --tw-rotate: -45deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(-45deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), 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));
}

.cart-options{
    border-radius: 0.375rem;
    border-width: 1px;
    border-style: dashed;
    --tw-border-opacity: 1;
    border-color: rgba(156, 163, 175, 1);
    border-color: rgba(156, 163, 175, var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
}

.ey-product-single .cart-options {
  color: #fff;
  background: transparent;
  border-radius: 0;
}
.cart-options salla-product-options{
    margin-bottom: 0px;
    padding-top: 0px;
}
.cart-options salla-product-options .s-product-options-option:not(div.s-product-options-option-booking){
    display: block !important;
}
.cart-options salla-product-options-label{
    margin-bottom: 0.75rem;
}
.cart-options salla-product-options .s-form-control{
    border-radius: 0.375rem;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, 1);
    border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
}
.cart-options salla-product-options .s-datetime-picker-input{
    border-radius: 0.375rem;
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, 1);
    border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
}
.cart-options salla-product-options .s-product-options-multiple-options-wrapper{
    display: block !important;
}

salla-quantity-input[max="1"] input{
    pointer-events: none;
    opacity: 0.5;
}

.s-product-options-option{
    margin-bottom: 1.5rem !important;
    display: flex !important;
    width: 100% !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}
.s-product-options-option-label{
    margin-bottom: 0.75rem !important;
    display: block !important;
    font-size: 1rem !important;
    line-height: 1.5rem !important;
    font-weight: 400 !important;
    --tw-text-opacity: 1 !important;
    color: rgba(107, 114, 128, 1) !important;
    color: rgba(107, 114, 128, var(--tw-text-opacity, 1)) !important;
}
.s-product-options-option-label b{
    font-weight: 400 !important;
}
.s-product-options-option-label b span{
    font-weight: 400 !important;
    --tw-text-opacity: 1 !important;
    color: rgba(107, 114, 128, 1) !important;
    color: rgba(107, 114, 128, var(--tw-text-opacity, 1)) !important;
}
.s-product-options-option-label small{
    display: none !important;
}
.s-product-options-colors-item label{
    display: flex !important;
    cursor: pointer !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 0px !important;
    border-width: 1px !important;
    --tw-border-opacity: 1 !important;
    border-color: rgba(209, 213, 219, 1) !important;
    border-color: rgba(209, 213, 219, var(--tw-border-opacity, 1)) !important;
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, 1) !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1)) !important;
}
.s-product-options-colors-item label * {
  pointer-events: none !important;
}
.ey-product-single .s-product-options-colors-item label {
  color: #fff !important;
  background: transparent !important;
  border-radius: 0 !important;
}
.s-product-options-colors-item label {
  width: 44px !important;
  height: 44px !important;
}
@media (min-width: 640px) {
  .s-product-options-colors-item label {
    width: 58px !important;
    height: 58px !important;
  }
}
.s-product-options-colors-item label span{
    margin: 0px !important;
    display: block !important;
    border-radius: 0px !important;
  width: 28px !important;
  height: 28px !important;
}
@media (min-width: 640px) {
  .s-product-options-colors-item label span {
    width: 38px !important;
    height: 38px !important;
  }
}
.s-product-options-colors-item label div {
  display: none !important;
}
.s-product-options-colors-item input:checked + label {
  border: 2px solid black !important;
  border-color: #000 !important;
}
.s-product-options-grid-mode-span{
    margin: 0px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 0px !important;
    border-width: 1px !important;
    --tw-border-opacity: 1 !important;
    border-color: rgba(209, 213, 219, 1) !important;
    border-color: rgba(209, 213, 219, var(--tw-border-opacity, 1)) !important;
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, 1) !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1)) !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
    font-weight: 500 !important;
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, 1) !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity, 1)) !important;
    transition-property: none !important;
}
.ey-product-single .s-product-options-grid-mode-span {
  color: #fff !important;
  background: transparent !important;
  border-radius: 0 !important;
}
.s-product-options-grid-mode-span {
  min-width: 60px !important;
  height: 44px !important;
}
@media (min-width: 640px) {
  .s-product-options-grid-mode-span {
    min-width: 80px !important;
    height: 58px !important;
  }
}
.s-product-options-grid-mode label input:checked + .s-product-options-grid-mode-span {
  border: 2px solid black !important;
  border-color: #000 !important;
  font-weight: bold !important;
}

ey-side-cart.ey-side-cart .s-product-options-grid-mode {
  margin-bottom: 0 !important;
}
ey-side-cart.ey-side-cart .ey-side-cart__quantity-input .s-quantity-input-container {
  height: 42px;
  width: 100%;
  border-radius: 6px;
}
ey-side-cart.ey-side-cart .ey-side-cart__quantity-input .s-quantity-input-input {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
}
ey-side-cart.ey-side-cart .ey-side-cart__quantity-input .s-quantity-input-button {
  width: 36px;
}
ey-side-cart.ey-side-cart .s-product-options-colors-item label {
  width: 36px !important;
  height: 36px !important;
}
ey-side-cart.ey-side-cart .s-product-options-colors-item label span {
  width: 24px !important;
  height: 24px !important;
}
ey-side-cart.ey-side-cart .s-product-options-grid-mode-span {
  min-width: 48px !important;
  height: 36px !important;
}

.s-product-options-option {
  gap: 0 !important;
  margin-bottom: 10px !important;
}

.ey-product-single {
  margin: 0;
  padding: 96px 0 0;
  overflow: hidden;
  background: #fff;
  color: var(--color-main-dark);
  font-family: Inter, "DINNextLTArabic", Arial, sans-serif;
  font-family: Inter, var(--font-main), Arial, sans-serif;
}
.ey-product-single__container {
  max-width: 1310px;
  padding-left: 15px;
  padding-right: 15px;
}
.ey-product-single__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  grid-gap: max(32px, min(5vw, 70px));
  gap: max(32px, min(5vw, 70px));
  align-items: start;
}
.ey-product-single__media {
  position: sticky;
  top: 96px;
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow: visible;
}
.ey-product-single__panel {
  width: 100%;
  max-width: 560px;
  margin-top: 60px;
  padding: max(28px, min(4vw, 52px));
  color: #fff;
  background: #111;
}
.ey-product-single__title {
  margin: 0 0 24px;
  color: #fff !important;
  font-size: max(42px, min(5vw, 72px));
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}
.ey-product-single__subtitle, .ey-product-single__description,
.ey-product-single .product-details,
.ey-product-single .color-grey {
  color: rgba(255, 255, 255, 0.66) !important;
}
.ey-product-single__price {
  margin-top: 20px;
  margin-bottom: 32px;
  color: #fff;
}
.ey-product-single__price p,
.ey-product-single__price span {
  color: inherit;
  font-size: 22px;
  line-height: 1.35;
}
.ey-product-single__price .text-red-500 {
  color: #414042 !important;
  color: var(--color-primary) !important;
}
.ey-product-single__description {
  margin: 0 0 30px;
  padding: 0 !important;
  font-size: 17px;
  line-height: 1.7;
}
.ey-product-single__description .article,
.ey-product-single__description .article--main {
  color: inherit;
}
.ey-product-single__description a {
  color: #414042;
  color: var(--color-primary);
}
.ey-product-single .product-brand {
  width: 72px;
  padding: 10px;
  background: #fff;
}
.ey-product-single salla-rating-stars {
  display: block;
  margin-bottom: 12px;
}
.ey-product-single salla-social-share {
  color: #fff;
}
.ey-product-single .btn--wishlist .s-button-element {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: transparent;
}
.ey-product-single .bg-white,
.ey-product-single .product-form > section,
.ey-product-single salla-installment,
.ey-product-single salla-metadata,
.ey-product-single salla-gifting,
.ey-product-single salla-quick-order {
  color: #fff;
  background: transparent !important;
  border-radius: 0 !important;
}
.ey-product-single .product-form > section, .ey-product-single__sku, .ey-product-single__stock {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.ey-product-single .product-form > section {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.ey-product-single .form-label,
.ey-product-single .s-product-options-option-label,
.ey-product-single .s-product-options-option-label b,
.ey-product-single .s-product-options-option-label span {
  color: rgba(255, 255, 255, 0.72) !important;
}
.ey-product-single .s-form-control,
.ey-product-single .s-datetime-picker-input,
.ey-product-single .s-product-options-grid-mode-span,
.ey-product-single .s-product-options-colors-item label {
  border-color: rgba(255, 255, 255, 0.22) !important;
  color: #fff !important;
  background: transparent !important;
  border-radius: 0 !important;
}
.ey-product-single .s-product-options-grid-mode label input:checked + .s-product-options-grid-mode-span,
.ey-product-single .s-product-options-colors-item input:checked + label {
  border-color: #414042 !important;
  border-color: var(--color-primary) !important;
  color: #414042 !important;
  color: var(--color-primary) !important;
}
.ey-product-single salla-quantity-input {
  --color-primary: var(--color-primary);
}
.ey-product-single .price-wrapper {
  color: #fff;
}
.ey-product-single .price-wrapper .text-red-500 {
  color: #414042 !important;
  color: var(--color-primary) !important;
}
.ey-product-single .sticky-product-bar__btn .s-button-element {
  min-height: 62px;
  border: 0;
  border-radius: 0;
  color: #111;
  background: #414042;
  background: var(--color-primary);
  font-size: 18px;
  font-weight: 600;
}

.ey-product-media {
  display: block;
  width: 100%;
  border-radius: 0;
  background: #f7f6f3;
}
.ey-product-media .swiper,
.ey-product-media .swiper-wrapper,
.ey-product-media .swiper-slide {
  min-height: max(520px, min(56vw, 818px));
}
.ey-product-media .swiper {
  overflow: hidden;
}
.ey-product-media__slide {
  position: relative;
  display: block;
  overflow: hidden;
  background: #f7f6f3;
}
.ey-product-media__slide img {
  display: block;
  width: 100%;
  height: 100%;
  transform: scale(1.18);
  transition: transform 1200ms cubic-bezier(0.2, 0.75, 0.25, 1);
  will-change: transform;
}
.ey-product-media__slide.swiper-slide-active img {
  transform: scale(1.001);
}
.ey-product-media__reveal {
  --ey-image-reveal-z: 3;
  --ey-image-reveal-background: #fff;
}
.ey-product-media .slide--one-fourth {
  border-radius: 0;
  overflow: hidden;
}
.ey-product-media .slide--one-fourth img {
  border-radius: 0 !important;
}
.ey-product-media .promotion-title,
.ey-product-media .btn--wishlist, .ey-product-media__calories {
  z-index: 5;
}

.ey-product-related.ey-explore {
  padding-top: 96px;
  padding-bottom: 110px;
}
.ey-product-related.ey-explore .ey-explore__heading {
  min-height: 0;
}
.ey-product-related.ey-explore .ey-explore__title {
  font-size: max(42px, min(6vw, 80px));
}
.ey-product-related.ey-explore .ey-explore__description {
  max-width: 297px;
}

@media (max-width: 991px) {
  .ey-product-single {
    padding-top: 72px;
  }
  .ey-product-single__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ey-product-single__media {
    position: relative;
    top: auto;
  }
  .ey-product-single__panel {
    max-width: none;
    margin-top: 0;
  }
  .ey-product-media .swiper,
  .ey-product-media .swiper-wrapper,
  .ey-product-media .swiper-slide {
    min-height: 560px;
  }
}
@media (max-width: 767px) {
  .ey-product-single {
    padding-top: 56px;
  }
  .ey-product-single__panel {
    padding: 28px 20px;
  }
  .ey-product-single__title {
    font-size: 36px;
  }
  .ey-product-single__price p, .ey-product-single__price span {
    font-size: 20px;
  }
  .ey-product-media .swiper,
  .ey-product-media .swiper-wrapper,
  .ey-product-media .swiper-slide {
    min-height: 400px;
  }
  .ey-product-related.ey-explore {
    padding-top: 70px;
    padding-bottom: 80px;
  }
}
@media (max-width: 479px) {
  .ey-product-media .swiper,
  .ey-product-media .swiper-wrapper,
  .ey-product-media .swiper-slide {
    min-height: 300px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ey-product-media__slide img {
    transition: none;
  }
  .ey-product-media__reveal {
    display: none;
  }
}
salla-add-product-button > div {
  width: 100%;
}
salla-add-product-button .s-button-loader::before {
  animation: spin 1s linear infinite;
  border-radius: 9999px;
  border-width: 2px;
  border-style: solid;
  border-top-color: var(--color-main-dark) !important;
  border-top-color: #414042;
  border-top-color: var(--color-primary);
  border-left-color: var(--color-main-dark) !important;
  border-left-color: #414042;
  border-left-color: var(--color-primary);
}

.s-button-wrap svg {
  fill: none !important;
}

salla-mini-checkout-widget,
.s-add-product-button-mini-checkout {
  --salla-fast-checkout-button-bg: var(--color-primary) !important;
  --salla-fast-checkout-button-hover-bg: var(--color-primary-d) !important;
  --salla-fast-checkout-button-color: #ffffff !important;
  --salla-fast-checkout-button-hover-color: #ffffff !important;
}
salla-mini-checkout-widget .s-add-product-button-mini-checkout-content span,
.s-add-product-button-mini-checkout .s-add-product-button-mini-checkout-content span {
  display: none !important;
}
salla-mini-checkout-widget .s-add-product-button-mini-checkout-content,
.s-add-product-button-mini-checkout .s-add-product-button-mini-checkout-content {
  font-size: 18px;
  font-weight: 500;
}

salla-add-product-button[product-status=out-and-notify] .s-button-solid.s-button-primary,
salla-add-product-button[product-status=out-and-notify] .s-button-primary,
.s-product-availability-wrap .s-button-solid.s-button-primary,
.s-product-availability-wrap .s-button-primary{
    --tw-border-opacity: 1;
    border-color: rgba(209, 213, 219, 1);
    border-color: rgba(209, 213, 219, var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, 1);
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, 1);
    color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
}

salla-add-product-button[product-status=out-and-notify] .s-button-solid.s-button-primary:hover,
salla-add-product-button[product-status=out-and-notify] .s-button-primary:hover,
.s-product-availability-wrap .s-button-solid.s-button-primary:hover,
.s-product-availability-wrap .s-button-primary:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 213, 219, 1);
    background-color: rgba(209, 213, 219, var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgba(17, 24, 39, 1);
    color: rgba(17, 24, 39, var(--tw-text-opacity, 1));
}
salla-add-product-button[product-status=out-and-notify] .s-button-solid.s-button-primary .s-button-text,
salla-add-product-button[product-status=out-and-notify] .s-button-primary .s-button-text,
.s-product-availability-wrap .s-button-solid.s-button-primary .s-button-text,
.s-product-availability-wrap .s-button-primary .s-button-text{
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, 1);
    color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
}
salla-add-product-button[product-status=out-and-notify] .s-product-availability-subscribed,
.s-product-availability-wrap .s-product-availability-subscribed{
    padding-left: 0.6rem;
    padding-right: 0.6rem;
    font-size: 0.7rem;
}
salla-add-product-button[product-status=out-and-notify] .s-product-availability-subscribed svg,
.s-product-availability-wrap .s-product-availability-subscribed svg{
    height: 1rem;
    width: 1rem;
}

.s-quantity-input-container {
  border-radius: 0 !important;
}

.s-infinite-scroll-wrapper {
  margin-bottom: 20px;
}

.ey-product-contact .total-price {
  color: inherit;
  color: var(--ey-product-price-color, inherit);
}
.ey-product-contact .price_is_on_sale .total-price {
  color: #dc2626;
  color: var(--ey-product-sale-color, #dc2626);
}
.ey-product-contact .before-price {
  color: #737373;
  color: var(--ey-product-regular-color, #737373);
}
.ey-product-contact .sticky-product-bar__btn .s-button-element {
  background-color: var(--ey-product-btn-bg-color, var(--color-main-dark)) !important;
  color: #ffffff !important;
  color: var(--ey-product-btn-text-color, #ffffff) !important;
}
.ey-product-contact .sticky-product-bar__btn .s-button-element .s-button-text {
  color: #ffffff !important;
  color: var(--ey-product-btn-text-color, #ffffff) !important;
}
.ey-product-contact .sticky-product-bar__btn .s-button-element svg, .ey-product-contact .sticky-product-bar__btn .s-button-element i {
  color: #ffffff !important;
  color: var(--ey-product-btn-text-color, #ffffff) !important;
  stroke: #ffffff !important;
  stroke: var(--ey-product-btn-text-color, #ffffff) !important;
}
.ey-product-contact .magnify-wrapper,
.ey-product-contact .image-slider img,
.ey-product-contact .ey-stacked-grid__item,
.ey-product-contact .ey-stacked-grid__item img {
  border-radius: 0px;
  border-radius: var(--ey-product-gallery-radius, 0px);
}

.ey-discount-badge {
  background-color: #dc2626;
  background-color: var(--ey-discount-badge-bg, #dc2626);
  color: #ffffff;
  color: var(--ey-discount-badge-text, #ffffff);
  font-weight: 700;
  line-height: 1.2;
}

.ey-slider-counter {
  font-family: monospace, sans-serif;
  letter-spacing: 0.5px;
}

.ey-product-gallery--stacked .ey-stacked-grid__item {
  background-color: #fafafa;
  transition: transform 0.3s ease;
}
.ey-product-gallery--stacked .ey-stacked-grid__item img {
  width: 100%;
  height: auto;
  display: block;
}

.ey-desktop-sticky-bar {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  top: auto !important;
  z-index: 999999 !important;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(8px);
  transform: translateY(100%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease !important;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08) !important;
  border-top: 1px solid #e5e5e5 !important;
  border-bottom: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
}
.ey-desktop-sticky-bar.is-visible {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
.ey-desktop-sticky-bar .total-price {
  color: inherit;
  color: var(--ey-product-price-color, inherit);
}
.ey-desktop-sticky-bar .before-price {
  color: #737373;
  color: var(--ey-product-regular-color, #737373);
}
.ey-desktop-sticky-bar__btn {
  background-color: var(--ey-product-btn-bg-color, var(--color-main-dark)) !important;
  color: #ffffff !important;
  color: var(--ey-product-btn-text-color, #ffffff) !important;
  border: 1px solid var(--ey-product-btn-bg-color, var(--color-main-dark)) !important;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.ey-desktop-sticky-bar__btn .s-button-text {
  color: #ffffff !important;
  color: var(--ey-product-btn-text-color, #ffffff) !important;
  position: relative;
  z-index: 2;
}
.ey-desktop-sticky-bar__btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--ey-reach-button-border, var(--color-main-dark));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
  z-index: 1;
}
.ey-desktop-sticky-bar__btn:hover::before {
  transform: scaleY(1);
}

.ey-product-nav__back {
  font-weight: 500;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.brands-nav{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.brands-nav > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * 0);
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * (1 - 0));
    margin-left: calc(0.5rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(0.5rem * calc(1 - 0));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * (1 - 0));
    margin-top: calc(0.5rem * (1 - var(--tw-space-y-reverse)));
    margin-top: calc(0.5rem * calc(1 - 0));
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * 0);
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.brands-nav:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 1;
}
.brands-nav__item{
    display: flex;
    height: 2.5rem;
    width: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
    padding: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, 1);
    color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.ey-product-single .brands-nav__item {
  color: #fff;
  background: transparent;
  border-radius: 0;
}
.brands-nav__item:hover{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.brands-nav__item:focus{
    border-color: #414042;
    border-color: var(--color-primary);
}
.brands-nav__item.is-selected{
    background-color: #414042 !important;
    background-color: var(--color-primary) !important;
    color: #ff6767 !important;
    color: var(--color-primary-reverse) !important;
}
.brands-nav__item span{
    pointer-events: none;
}
.brands-nav.is-sticky{
    position: fixed;
    top: 2.25rem;
    z-index: 0;
    height: 100%;
    flex-direction: column;
    flex-wrap: wrap;
}
.brands-nav.is-sticky > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.125rem * (1 - 0));
    margin-top: calc(0.125rem * (1 - var(--tw-space-y-reverse)));
    margin-top: calc(0.125rem * calc(1 - 0));
    margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.125rem * 0);
    margin-bottom: calc(0.125rem * var(--tw-space-y-reverse));
}
.brands-nav.is-sticky{
    padding-top: 4rem;
    padding-bottom: 2.5rem;
}
.brands-nav.is-sticky:where([dir="ltr"], [dir="ltr"] *){
    left: 0.5rem;
}
.brands-nav.is-sticky:where([dir="rtl"], [dir="rtl"] *){
    right: 0.5rem;
}
.brands-nav.is-sticky .brands-nav__item{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
}
.ey-product-single .brands-nav.is-sticky .brands-nav__item {
  color: #fff;
  background: transparent;
  border-radius: 0;
}
@media (max-width: 1280px) {
  .brands-nav.is-sticky .brands-nav__item{
        height: 1.5rem;
        width: 1.5rem;
    }
}

.brand-char{
    display: flex;
    height: 2.5rem;
    width: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    border-width: 1px;
    border-color: transparent;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
    font-size: 0.875rem;
    line-height: 1.25rem;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.ey-product-single .brand-char {
  color: #fff;
  background: transparent;
  border-radius: 0;
}

.brand-char:hover{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}

.brand-char:focus{
    border-color: #414042;
    border-color: var(--color-primary);
}

.brand-char:where([dir="ltr"], [dir="ltr"] *){
    margin-right: 1.25rem;
}

@media (min-width: 768px){
    .brand-char:where([dir="ltr"], [dir="ltr"] *){
        margin-right: 3rem;
    }
}

.brand-char:where([dir="rtl"], [dir="rtl"] *){
    margin-left: 1.25rem;
}

@media (min-width: 768px){
    .brand-char:where([dir="rtl"], [dir="rtl"] *){
        margin-left: 3rem;
    }
}

.brand-item{
    position: relative;
    display: flex;
    height: 5rem;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
    background-size: cover;
    padding: 0.75rem;
    text-align: center;
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.ey-product-single .brand-item {
  color: #fff;
  background: transparent;
  border-radius: 0;
}

.brand-item:hover{
    opacity: 0.95;
}

@media (min-width: 640px){
    .brand-item{
        height: 6rem;
        padding: 1rem;
    }
}

@media (min-width: 768px){
    .brand-item{
        height: 8rem;
        padding: 2rem;
    }
}
.index .brand-item{
    padding: 1rem;
}
.index .brand-item img{
    width: auto;
}
@media (min-width: 480px){
    .index .brand-item img{
        max-width: 150px;
    }
}

.no-content-placeholder{
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 2.5rem;
    padding-bottom: 5rem;
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, 1);
    color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
}
.no-content-placeholder .icon{
    margin-bottom: 1rem;
    display: flex;
    height: 8rem;
    width: 8rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, 1);
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity, 1));
    font-size: 3rem;
    line-height: 1;
    --tw-text-opacity: 1;
    color: rgba(209, 213, 219, 1);
    color: rgba(209, 213, 219, var(--tw-text-opacity, 1));
}
.no-content-placeholder p{
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, 1);
    color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}

.s-gifting-modal .s-checkbox {
  background-color: #fff !important;
  border: 1px solid #ccc !important;
}
.s-gifting-modal .s-checkbox:focus {
  --tw-ring-color: transparent !important;
}
.s-gifting-modal .s-gifting-filepond-placeholder-icon svg {
  fill: #ccc !important;
}

.s-gifting-widget .s-list-tile-item{
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-style: none;
}

.loyalty .breadcrumbs{
    padding-bottom: 0px;
    padding-top: 1rem;
}
.loyalty .breadcrumbs ol{
    justify-content: center;
}
@media (min-width: 1024px){
    .loyalty .breadcrumbs ol{
        justify-content: flex-start;
    }
}
.loyalty .breadcrumbs a,
.loyalty .breadcrumbs span,
.loyalty .breadcrumbs .arrow{
    color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
}
.loyalty__banner{
    position: relative;
    margin: auto;
    margin-bottom: 7rem;
    margin-top: 5rem;
    overflow: hidden;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
    padding: 2.5rem;
    --tw-shadow: 5px 10px 30px #2B2D340D;;
    --tw-shadow-colored: 5px 10px 30px var(--tw-shadow-color);
    box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 5px 10px 30px #2B2D340D;;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.ey-product-single .loyalty__banner {
  color: #fff;
  background: transparent;
  border-radius: 0;
}
@media (min-width: 1024px){
    .loyalty__banner{
        padding-top: 4rem;
        padding-bottom: 4rem;
        padding-left: 5rem;
        padding-right: 5rem;
    }
}
.loyalty__banner-inner{
    position: relative;
    z-index: 10;
    flex: 1 1 0%;
    align-items: center;
    text-align: center;
}
@media (min-width: 640px){
    .loyalty__banner-inner{
        display: flex;
    }
    .loyalty__banner-inner > :not([hidden]) ~ :not([hidden]){
        --tw-space-x-reverse: 0;
        margin-right: calc(3rem * 0);
        margin-right: calc(3rem * var(--tw-space-x-reverse));
        margin-left: calc(3rem * (1 - 0));
        margin-left: calc(3rem * (1 - var(--tw-space-x-reverse)));
        margin-left: calc(3rem * calc(1 - 0));
        margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse)));
    }
}
.loyalty__banner-inner:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 1;
}
.loyalty__banner-content{
    flex: 1 1 0%;
    align-items: center;
    justify-content: space-between;
}
@media (min-width: 768px){
    .loyalty__banner-content{
        display: flex;
    }
}
.loyalty__banner-content .info{
    margin-bottom: 1.5rem;
}
@media (min-width: 768px){
    .loyalty__banner-content .info{
        margin-bottom: 0px;
    }
}
.loyalty__banner-content .info h1{
    margin-bottom: 0.625rem;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
}
.loyalty__banner-content .info p{
    margin-bottom: 0.5rem;
    max-width: 20rem;
    line-height: 1.5rem;
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, 1);
    color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}
.loyalty__banner .loyalty-points{
    font-size: 0.875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, 1);
    color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}
.loyalty__banner .loyalty-points .count-number{
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    color: #414042;
    color: var(--color-primary);
}
.loyalty__banner .loyalty-points .count-number:where([dir="ltr"], [dir="ltr"] *){
    margin-left: 0.625rem;
}
.loyalty__banner .loyalty-points .count-number:where([dir="rtl"], [dir="rtl"] *){
    margin-right: 0.625rem;
}
.loyalty-star{
    position: absolute;
    z-index: 0;
    transform: translate(var(--tw-translate-x), 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));
    opacity: 0.7;
}
input[type=radio].sr-only div.loyalty-star {
  transition: all 0.3s;
}
input[type=radio].sr-only:checked ~ div.loyalty-star {
  border-color: var(--color-main);
}
.loyalty-star i{
    font-size: 400px;
    --tw-text-opacity: 1;
    color: rgba(243, 244, 246, 1);
    color: rgba(243, 244, 246, var(--tw-text-opacity, 1));
}
.loyalty-star--first{
    right: -6rem;
    top: -12rem;
    --tw-rotate: -45deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(-45deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), 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));
}
.loyalty-star--second{
    left: -4rem;
    bottom: -10rem;
    --tw-rotate: -90deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(-90deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), 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));
}
.loyalty .product-entry__image {
  flex-shrink: initial;
}

.points-ways__list{
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-gap: 0.625rem;
    gap: 0.625rem;
}

@media (min-width: 640px){
    .points-ways__list{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
}

@media (min-width: 768px){
    .points-ways__list{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px){
    .points-ways__list{
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
.points-ways__list .way-item{
    display: flex;
    width: 100%;
    flex-direction: column;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
    padding: 1.5rem;
    opacity: 1;
    --tw-shadow: 5px 10px 30px #2B2D340D;;
    --tw-shadow-colored: 5px 10px 30px var(--tw-shadow-color);
    box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 5px 10px 30px #2B2D340D;;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.ey-product-single .points-ways__list .way-item {
  color: #fff;
  background: transparent;
  border-radius: 0;
}
.points-ways__list .way-item__icon{
    position: relative;
    display: flex;
    height: 3rem;
    width: 3rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}
.points-ways__list .way-item__icon span{
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    z-index: 0;
    height: 100%;
    width: 100%;
    border-radius: 9999px;
    opacity: 0.1;
}
input[type=radio].sr-only div.points-ways__list .way-item__icon span {
  transition: all 0.3s;
}
input[type=radio].sr-only:checked ~ div.points-ways__list .way-item__icon span {
  border-color: var(--color-main);
}
.points-ways__list .way-item__content{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.points-ways__list .way-item__content h4{
    word-break: break-all;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
}
.points-ways__list .way-item__content p{
    font-size: 0.875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, 1);
    color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
}
.points-ways__list .way-item__action{
    margin-top: auto;
    padding-top: 1rem;
}

.virtooal {
  margin: 15px 0;
  border-radius: 10px;
  border: 1px solid rgb(229, 229, 229);
  background: white;
}
@media screen and (min-width: 992px) {
  .virtooal {
    padding: 18px;
  }
}
.virtooal--content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.virtooal--details {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 992px) {
  .virtooal--details {
    display: none;
  }
}
.virtooal--details--title {
  font-size: 16px;
  font-weight: 700;
  color: #1F2937;
}
.virtooal--details--desc {
  font-size: 13px;
  color: #7C8082;
  font-weight: 400;
}
@media (max-width: 992px) {
  .virtooal--action {
    width: 100%;
  }
}
.virtooal--action button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  border: 1px solid #414042;
  border: 1px solid var(--color-primary);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 30px;
  font-size: 0.875rem;
  padding: 0.5rem 1.5rem 0.625rem 1.5rem;
  line-height: 1.25rem;
  background: #414042;
  background: var(--color-primary);
  color: #ff6767;
  color: var(--color-primary-reverse);
  border-radius: 5px;
}
.virtooal--action button:hover {
  background: var(--color-primary-dark);
  opacity: 0.8 !important;
}
@media (max-width: 992px) {
  .virtooal--action button {
    width: 100%;
  }
}
.virtooal--action button .icon {
  width: 14px;
  height: 14px;
}
[dir=rtl] .virtooal--action button .icon {
  margin-left: 0.75rem;
}
[dir=ltr] .virtooal--action button .icon {
  margin-right: 0.75rem;
}

.landing-page{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
}

.ey-product-single .landing-page {
  color: #fff;
  background: transparent;
  border-radius: 0;
}
@media (max-width: 640px) {
  .landing-page{
        padding-bottom: 4rem;
    }
}
.landing-page > header{
    position: relative;
    width: 100%;
    overflow: hidden;
}
.landing-page > header .header-content{
    position: relative;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
    max-width: 750px;
    padding-bottom: 30px;
    text-align: center;
}
.landing-page > header .header-content-logo img{
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6rem;
    margin-top: 2.5rem;
    height: auto;
    max-height: 75px;
    width: auto;
    max-width: 100%;
}
.landing-page > header .header-content-inner > h1{
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgba(68, 68, 68, 1);
    color: rgba(68, 68, 68, var(--tw-text-opacity, 1));
}
@media (min-width: 768px){
    .landing-page > header .header-content-inner > h1{
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}
.landing-page > header .header-content-inner > p{
    font-size: 0.875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgba(136, 136, 136, 1);
    color: rgba(136, 136, 136, var(--tw-text-opacity, 1));
}
@media (min-width: 768px){
    .landing-page > header .header-content-inner > p{
        font-size: 1rem;
        line-height: 1.5rem;
    }
}
.landing-page > header .header-content-offer{
    margin-top: 4rem;
}
.landing-page > header .header-content-offer p{
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    line-height: 1.75rem;
    --tw-text-opacity: 1;
    color: rgba(234, 84, 85, 1);
    color: rgba(234, 84, 85, var(--tw-text-opacity, 1));
}
.landing-page > header .header-content-offer h3{
    margin-bottom: 4rem;
    font-size: 1.875rem;
    line-height: 2.25rem;
    --tw-text-opacity: 1;
    color: rgba(68, 68, 68, 1);
    color: rgba(68, 68, 68, var(--tw-text-opacity, 1));
}
.landing-page > header:before {
  border-radius: 0 0 50% 50%/0 0 100% 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  display: none;
  height: 100%;
  width: 100%;
  --tw-scale-x: 1.5;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(1.5) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), 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-bg-opacity: 1;
  background-color: rgba(245, 247, 249, 1);
  background-color: rgba(245, 247, 249, var(--tw-bg-opacity, 1));
  --tw-content: '';
  content: '';
  content: var(--tw-content);
}
input[type=radio].sr-only div.landing-page > header:before {
  transition: all 0.3s;
}
input[type=radio].sr-only:checked ~ div.landing-page > header:before {
  border-color: var(--color-main);
}
@media (min-width: 640px){
    .landing-page > header:before{
        display: block;
    }
}
@media (min-width: 768px) {
  .landing-page .center-products .vertical-products .s-products-list-wrapper{
        display: flex;
        justify-content: center;
    }
}
@media (max-width: 767px) {
  .landing-page .center-products .vertical-products .s-products-list-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)) !important;
  }
}
@media (min-width: 1024px) {
  .landing-page .center-products .vertical-products .s-products-list-wrapper .s-product-card-vertical {
    min-width: 286px;
    max-width: 286px;
  }
}
@media ((min-width: 768px) and (max-width: 1023px)) {
  .landing-page .center-products .vertical-products .s-products-list-wrapper .s-product-card-vertical {
    min-width: 220px;
  }
}
.landing-page .swiper-wrapper{
    padding-bottom: 1.25rem;
}
.landing-page .swiper-wrapper .s-product-card-entry, .landing-page .s-products-list-wrapper .s-product-card-entry{
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(238, 238, 238, 1);
    border-color: rgba(238, 238, 238, var(--tw-border-opacity, 1));
}
.landing-page--quick-buy{
    margin-top: 1.5rem;
    text-align: center;
}
.landing-page--quick-buy salla-mini-checkout-widget{
    display: flex;
    justify-content: center;
  --salla-fast-checkout-button-width: 260px;
}
@media (max-width: 640px) {
  .landing-page--quick-buy salla-mini-checkout-widget{
        flex: 1 1 0%;
    --salla-fast-checkout-button-width: 100%;
    }
  .landing-page--quick-buy{
        position: fixed;
        bottom: 0px;
        left: 0px;
        z-index: 2;
        display: flex;
        width: 100%;
        --tw-translate-y: 28rem;
        transform: translate(var(--tw-translate-x), 28rem) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
        transform: translate(var(--tw-translate-x), 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));
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.625rem;
        --tw-bg-opacity: 1;
        background-color: rgba(255, 255, 255, 1);
        background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
        padding: 0.75rem;
        opacity: 0;
        --tw-shadow: -1px -2px 9px 0 rgba(0,0,0,0.05);
        --tw-shadow-colored: -1px -2px 9px 0 var(--tw-shadow-color);
        box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), -1px -2px 9px 0 rgba(0,0,0,0.05);
        box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
        transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 500ms;
        transition-duration: 700ms;
        transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
    }
.ey-product-single .landing-page--quick-buy {
  color: #fff;
  background: transparent;
  border-radius: 0;
}
  @media (min-width: 640px){
        .landing-page--quick-buy{
            gap: 1rem;
        }
    }
  .hydrated .landing-page--quick-buy,
  .hydrated .landing-page--quick-buy salla-mini-checkout-widget{
        --tw-translate-y: 0px;
        transform: translate(var(--tw-translate-x), 0px) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
        transform: translate(var(--tw-translate-x), 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));
        opacity: 1;
    }
}
.landing-page.notfound > header{
    margin-bottom: 3rem;
    display: flex;
    min-height: 50vh;
    align-items: center;
    justify-content: center;
}
.landing-page.notfound > header img{
    margin-bottom: 3rem;
}
.landing-page.expired > header{
    margin-bottom: 3rem;
    display: flex;
    min-height: 50vh;
    align-items: center;
    justify-content: center;
}
.landing-page.expired > header .header-content{
    max-width: 600px;
}
.landing-page.expired > header .header-content img{
    margin-bottom: 3rem;
}
.landing-page.expired > header .header-content h1{
    --tw-text-opacity: 1;
    color: rgba(234, 84, 85, 1);
    color: rgba(234, 84, 85, var(--tw-text-opacity, 1));
}
.landing-page .s-product-card-wishlist-btn {
  display: hidden;
}

.s-add-product-toast{
    position: fixed;
    z-index: 50;
    display: flex;
    width: 100vw;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
    padding: 1.25rem;
    --tw-shadow: 5px 10px 30px #2B2D340D;;
    --tw-shadow-colored: 5px 10px 30px var(--tw-shadow-color);
    box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 5px 10px 30px #2B2D340D;;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}

.ey-product-single .s-add-product-toast {
  color: #fff;
  background: transparent;
  border-radius: 0;
}

.s-add-product-toast {
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.s-add-product-toast.s-add-product-toast--visible {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 768px) {
  .s-add-product-toast{
        width: 400px;
    top: 1rem;
    left: auto;
    right: auto;
    }
  [dir=rtl] .s-add-product-toast {
    left: 1rem;
    transform: translateX(-100%);
  }
  [dir=rtl] .s-add-product-toast.s-add-product-toast--visible {
    transform: translateX(0);
  }
  [dir=ltr] .s-add-product-toast {
    right: 1rem;
    transform: translateX(100%);
  }
  [dir=ltr] .s-add-product-toast.s-add-product-toast--visible {
    transform: translateX(0);
  }
}
.s-add-product-toast__progress{
    height: 0.5rem;
    width: 100%;
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, 1);
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity, 1));
}
.s-add-product-toast__progress-bar{
    height: 100%;
    --tw-bg-opacity: 1;
    background-color: rgba(34, 197, 94, 1);
    background-color: rgba(34, 197, 94, var(--tw-bg-opacity, 1));
  transition: width 50ms linear;
}
.s-add-product-toast__header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}
.s-add-product-toast__header-content{
    display: flex;
    align-items: center;
    gap: 0.625rem;
}
.s-add-product-toast__icon{
    flex-shrink: 0;
}
.s-add-product-toast__title{
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, 1);
    color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
}
.s-add-product-toast__close{
    display: flex;
    height: 1.5rem;
    width: 1.5rem;
    flex-shrink: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-width: 0px;
    background-color: transparent;
    padding: 0px;
}
.s-add-product-toast__close * {
  pointer-events: none;
}
.s-add-product-toast__close i{
    font-size: 1.125rem;
    line-height: 1.75rem;
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, 1);
    color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.s-add-product-toast__close:hover i{
    --tw-text-opacity: 1;
    color: rgba(75, 85, 99, 1);
    color: rgba(75, 85, 99, var(--tw-text-opacity, 1));
}
.s-add-product-toast__divider{
    height: 1px;
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, 1);
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity, 1));
}
.s-add-product-toast__body{
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.s-add-product-toast__image{
    height: 5rem;
    width: 5rem;
    flex-shrink: 0;
    overflow: hidden;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(243, 244, 246, 1);
    border-color: rgba(243, 244, 246, var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgba(249, 250, 251, 1);
    background-color: rgba(249, 250, 251, var(--tw-bg-opacity, 1));
    -o-object-fit: contain;
       object-fit: contain;
}
.s-add-product-toast__image img{
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
@media (min-width: 768px) {
  .s-add-product-toast__image{
        height: 88px;
        width: 88px;
    }
}
.s-add-product-toast__details{
    display: flex;
    min-width: 0px;
    flex: 1 1 0%;
    flex-direction: column;
    gap: 0.25rem;
}
.s-add-product-toast__name{
    display: block;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    line-height: 1.375;
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, 1);
    color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
    text-decoration-line: none;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.s-add-product-toast__name:hover{
    color: #414042;
    color: var(--color-primary);
}
.s-add-product-toast__options{
    margin-top: 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}
.s-add-product-toast__options span{
    font-size: 0.75rem;
    line-height: 1rem;
    line-height: 1.625;
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, 1);
    color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}
@media (min-width: 768px) {
  .s-add-product-toast__options span{
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
}
.s-add-product-toast__show-more{
    margin-top: 0.125rem;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 500;
    color: #414042;
    color: var(--color-primary);
    text-decoration-line: underline;
}
.s-add-product-toast__show-more:hover{
    text-decoration-line: none;
}
@media (min-width: 768px) {
  .s-add-product-toast__show-more{
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
}
.s-add-product-toast__price{
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, 1);
    color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
}
@media (min-width: 768px) {
  .s-add-product-toast__price{
        font-size: 1rem;
        line-height: 1.5rem;
    }
}
.s-add-product-toast__price-sale{
    --tw-text-opacity: 1;
    color: rgba(239, 68, 68, 1);
    color: rgba(239, 68, 68, var(--tw-text-opacity, 1));
}
.ey-product-single__price .s-add-product-toast__price-sale {
  color: #414042;
  color: var(--color-primary);
}
.ey-product-single .price-wrapper .s-add-product-toast__price-sale {
  color: #414042;
  color: var(--color-primary);
}
.s-add-product-toast__price-original{
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 400;
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, 1);
    color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
    text-decoration-line: line-through;
}
@media (min-width: 768px) {
  .s-add-product-toast__price-original{
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
}
.s-add-product-toast__actions{
    display: flex;
    gap: 0.75rem;
}
.s-add-product-toast__actions salla-button{
    flex: 1 1 0%;
}
.s-add-product-toast__actions salla-button svg{
    display: inline-flex;
    flex-shrink: 0;
}
.s-add-product-toast__actions salla-button svg path {
  fill: none;
}
.s-add-product-toast__actions salla-button .s-button-btn{
    border-radius: 0px;
}
.s-add-product-toast__actions salla-button .s-button-btn.s-button-gray-outline{
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, 1);
    border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, 1);
    color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
}

.ey-reach__button-wrap {
  display: flex;
}
.ey-reach__button, .s-button-element.s-button-primary,
salla-products-list .s-button-element {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid var(--ey-reach-button-border, var(--color-main-dark));
  color: var(--ey-reach-button-text, var(--color-main-dark));
  background: transparent;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: color 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}
.ey-reach__button:hover, .s-button-element.s-button-primary:hover,
salla-products-list .s-button-element:hover {
  color: #fff;
  color: var(--ey-reach-features-text, #fff);
}
.ey-reach__button:hover .ey-reach__button-fill, .s-button-element.s-button-primary:hover .ey-reach__button-fill,
salla-products-list .s-button-element:hover .ey-reach__button-fill {
  transform: scaleY(1);
}
.ey-reach__button:hover .ey-reach__button-icon, .s-button-element.s-button-primary:hover .ey-reach__button-icon,
salla-products-list .s-button-element:hover .ey-reach__button-icon {
  transform: translateX(4px);
}
.ey-reach__button:focus-visible, .s-button-element.s-button-primary:focus-visible,
salla-products-list .s-button-element:focus-visible {
  outline: 2px solid #414042;
  outline: 2px solid var(--ey-reach-highlight, var(--color-primary));
  outline-offset: 4px;
}
.ey-reach__button--solid {
  background: var(--ey-reach-button-border, var(--color-main-dark));
  color: #fff;
  color: var(--ey-reach-features-text, #fff);
}
.ey-reach__button--solid:hover {
  color: var(--ey-reach-button-text, var(--color-main-dark));
}
.ey-reach__button--solid .ey-reach__button-fill {
  background: #fff;
  background: var(--ey-reach-features-text, #fff);
}
.ey-reach__button-fill {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--ey-reach-button-border, var(--color-main-dark));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}
.ey-reach__button-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 100%;
}
.ey-reach__button-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

[dir=rtl] .ey-reach__button-icon {
  transform: scaleX(-1);
}
[dir=rtl] .ey-reach__button:hover .ey-reach__button-icon, [dir=rtl] .s-button-element.s-button-primary:hover .ey-reach__button-icon,
[dir=rtl] salla-products-list .s-button-element:hover .ey-reach__button-icon,
salla-products-list [dir=rtl] .s-button-element:hover .ey-reach__button-icon {
  transform: scaleX(-1) translateX(4px);
}

.xxl {
  min-height: 84px;
  padding: 20px 30px;
  font-size: 20px;
}
.xxl .ey-reach__button-icon {
  width: 30px;
  height: 30px;
}
@media (max-width: 767px) {
  .xxl {
    min-height: 70px;
    padding: 15px 25px;
    font-size: 18px;
  }
  .xxl .ey-reach__button-icon {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 479px) {
  .xxl {
    min-height: 60px;
    padding: 15px 20px;
    font-size: 16px;
  }
  .xxl .ey-reach__button-icon {
    width: 24px;
    height: 24px;
  }
}

.xl, .s-button-element.s-button-primary:not(#toast-submit *),
salla-products-list .s-button-element {
  min-height: 56px;
  padding: 16px 24px;
  font-size: 18px;
}
.xl .ey-reach__button-icon, .s-button-element.s-button-primary:not(#toast-submit *) .ey-reach__button-icon,
salla-products-list .s-button-element .ey-reach__button-icon {
  width: 26px;
  height: 26px;
}
@media (max-width: 767px) {
  .xl, .s-button-element.s-button-primary:not(#toast-submit *),
  salla-products-list .s-button-element {
    min-height: 60px;
    padding: 14px 20px;
    font-size: 16px;
  }
  .xl .ey-reach__button-icon, .s-button-element.s-button-primary:not(#toast-submit *) .ey-reach__button-icon,
  salla-products-list .s-button-element .ey-reach__button-icon {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 479px) {
  .xl, .s-button-element.s-button-primary:not(#toast-submit *),
  salla-products-list .s-button-element {
    min-height: 50px;
    padding: 12px 18px;
    font-size: 14px;
  }
  .xl .ey-reach__button-icon, .s-button-element.s-button-primary:not(#toast-submit *) .ey-reach__button-icon,
  salla-products-list .s-button-element .ey-reach__button-icon {
    width: 20px;
    height: 20px;
  }
}

.xx {
  min-height: 42px;
  padding: 12px 20px;
  font-size: 16px;
}
.xx .ey-reach__button-icon {
  width: 22px;
  height: 22px;
}
@media (max-width: 767px) {
  .xx {
    min-height: 48px;
    padding: 10px 16px;
    font-size: 14px;
  }
  .xx .ey-reach__button-icon {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 479px) {
  .xx {
    min-height: 42px;
    padding: 8px 14px;
    font-size: 13px;
  }
  .xx .ey-reach__button-icon {
    width: 18px;
    height: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ey-reach__button, .s-button-element.s-button-primary,
  salla-products-list .s-button-element, .ey-reach__button-fill, .ey-reach__button-icon {
    transition: none;
  }
}
.ey-side-cart {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: flex-start;
  pointer-events: none;
  visibility: hidden;
}
.ey-side-cart.is-open {
  pointer-events: auto;
  visibility: visible;
}
.ey-side-cart__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
}
.ey-side-cart__drawer {
  position: relative;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: #fff;
  will-change: transform;
}
@media (max-width: 479px) {
  .ey-side-cart__drawer {
    max-width: 100%;
  }
}
.ey-side-cart__skeleton-bg {
  background: linear-gradient(90deg, #f0f0f0 25%, #e5e5e5 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: ey-side-cart-skeleton 1.4s ease-in-out infinite;
}

@keyframes ey-side-cart-skeleton {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}
body.cart .s-product-options-grid-mode {
  margin-bottom: 0px;
}

body.mm-ocd-opened,
body.modal-is-open,
body.fancybox-open {
  overflow: hidden;
}
body.mm-ocd-opened #tidio-chat,
body.mm-ocd-opened [id^=gb-widget],
body.mm-ocd-opened [class$=__feedback],
body.mm-ocd-opened #fb-root,
body.mm-ocd-opened .fb_reset,
body.mm-ocd-opened #chat-widget-container,
body.modal-is-open #tidio-chat,
body.modal-is-open [id^=gb-widget],
body.modal-is-open [class$=__feedback],
body.modal-is-open #fb-root,
body.modal-is-open .fb_reset,
body.modal-is-open #chat-widget-container,
body.fancybox-open #tidio-chat,
body.fancybox-open [id^=gb-widget],
body.fancybox-open [class$=__feedback],
body.fancybox-open #fb-root,
body.fancybox-open .fb_reset,
body.fancybox-open #chat-widget-container {
  display: none !important;
}

/* CSS specific to iOS devices */
@supports (-webkit-touch-callout: none) {
  @media screen and (max-width: 767px) {
    .mobile #button {
      transform: translateY(-58px);
      margin-left: 5px;
    }
  }
}
@media (max-width: 1024px) {
  body.dropdown--is-opened {
    overflow: hidden;
  }
  body.dropdown--is-opened #tidio-chat,
  body.dropdown--is-opened [id^=gb-widget],
  body.dropdown--is-opened [class$=__feedback],
  body.dropdown--is-opened #fb-root,
  body.dropdown--is-opened .fb_reset,
  body.dropdown--is-opened #chat-widget-container {
    display: none !important;
  }
  #tidio-chat {
    z-index: 100;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
  }
  #tidio-chat #tidio-chat-iframe {
    bottom: 0 !important;
    pointer-events: auto;
  }
  [id^=gb-widget] {
    bottom: 20px !important;
    z-index: 1000 !important;
  }
  #fb-root .fb_dialog iframe[data-testid=bubble_iframe] {
    bottom: 20px !important;
  }
  iframe.tawk-widget {
    bottom: 20px !important;
  }
  #chat-widget-container {
    height: 100%;
    bottom: 0 !important;
  }
}
iframe.tawk-widget {
  display: block;
  bottom: 20px;
}

.is-sticky-product-bar.product-single [id^=gb-widget],
.is-sticky-product-bar.product-single iframe.tawk-widget,
.is-sticky-product-bar.product-single #fb-root .fb_dialog iframe[data-testid=bubble_iframe],
.is-sticky-product-bar.product-single iframe.tawk-widget {
  bottom: 70px !important;
}

@media (max-width: 640px) {
  .swal2-container {
    width: 100% !important;
  }
}
.swal2-container .swal2-popup.swal2-toast {
  max-width: 300px;
  padding: 0 10px 5px;
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.0705882353);
}
@media (max-width: 640px) {
  .swal2-container .swal2-popup.swal2-toast {
    max-width: 100%;
  }
}
.swal2-container .swal2-popup.swal2-toast .swal2-icon{
    --tw-scale-x: .5;
    --tw-scale-y: .5;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(.5) scaleY(.5);
    transform: translate(var(--tw-translate-x), 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));
    animation: none;
}
.swal2-container .swal2-popup.swal2-toast .swal2-icon:where([dir="ltr"], [dir="ltr"] *){
    margin-right: 0.25rem;
    margin-left: -0.375rem;
}
.swal2-container .swal2-popup.swal2-toast .swal2-icon:where([dir="rtl"], [dir="rtl"] *){
    margin-left: 0.25rem;
    margin-right: -0.375rem;
}
.swal2-container .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{
    --tw-border-opacity: 1;
    border-color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, var(--tw-border-opacity, 1));
}
.swal2-container .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-line-tip,
.swal2-container .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-line-long{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
}
.ey-product-single .swal2-container .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-line-tip,.ey-product-single 
.swal2-container .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-line-long {
  color: #fff;
  background: transparent;
  border-radius: 0;
}
.swal2-container .swal2-popup.swal2-toast .swal2-title{
    margin: 0px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5rem;
}
.swal2-container .swal2-popup.swal2-toast .swal2-close{
    flex-shrink: 0;
    --tw-scale-x: .75;
    --tw-scale-y: .75;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(.75) scaleY(.75);
    transform: translate(var(--tw-translate-x), 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));
}
.swal2-container .swal2-popup.swal2-toast .swal2-close:where([dir="ltr"], [dir="ltr"] *){
    margin-left: 0.5rem;
}
.swal2-container .swal2-popup.swal2-toast .swal2-close:where([dir="rtl"], [dir="rtl"] *){
    margin-right: 0.5rem;
}
.swal2-container .swal2-popup.swal2-toast .swal2-timer-progress-bar-container {
  height: 2px;
}
.swal2-container .swal2-popup.swal2-toast .swal2-timer-progress-bar {
  background: #ddd;
}
.swal2-container .swal2-popup.swal2-toast.swal2-icon-error{
    --tw-bg-opacity: 1;
    background-color: rgba(248, 113, 113, 1);
    background-color: rgba(248, 113, 113, var(--tw-bg-opacity, 1));
}
.swal2-container .swal2-popup.swal2-toast.swal2-icon-error *{
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.swal2-container .swal2-popup.swal2-toast.swal2-icon-error .swal2-error{
    --tw-border-opacity: 1;
    border-color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, var(--tw-border-opacity, 1));
}
.swal2-container .swal2-popup.swal2-toast.swal2-icon-error .swal2-x-mark-line-right,
.swal2-container .swal2-popup.swal2-toast.swal2-icon-error .swal2-x-mark-line-left{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
}
.ey-product-single .swal2-container .swal2-popup.swal2-toast.swal2-icon-error .swal2-x-mark-line-right,.ey-product-single 
.swal2-container .swal2-popup.swal2-toast.swal2-icon-error .swal2-x-mark-line-left {
  color: #fff;
  background: transparent;
  border-radius: 0;
}
.swal2-container .swal2-popup.swal2-toast.swal2-icon-success{
    --tw-bg-opacity: 1;
    background-color: rgba(34, 197, 94, 1);
    background-color: rgba(34, 197, 94, var(--tw-bg-opacity, 1));
}
.swal2-container .swal2-popup.swal2-toast.swal2-icon-success *{
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .full-banner-entry {
      background-attachment: scroll;
      background-attachment: initial;
    }
  }
}
body.font-dinnextltarabic-regular .btn--add-to-cart {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Top Bar Customization */
.s-top-nav, .salla-top-nav, .top-nav {
  background-color: var(--top-bar-bg-color) !important;
  color: var(--top-bar-text-color) !important;
}

.s-top-nav a, .salla-top-nav a, .top-nav a {
  color: inherit !important;
}

.placeholder\:text-inherit::-moz-placeholder{
    color: inherit;
}

.placeholder\:text-inherit::placeholder{
    color: inherit;
}

.before\:text-orange-300::before{
    content: var(--tw-content);
    --tw-text-opacity: 1;
    color: rgba(253, 186, 116, 1);
    color: rgba(253, 186, 116, var(--tw-text-opacity, 1));
}

.first\:rounded-t-md:first-child{
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
}

.first\:pt-16:first-child{
    padding-top: 4rem;
}

.first\:pt-5:first-child{
    padding-top: 1.25rem;
}

.last\:mb-0:last-child{
    margin-bottom: 0px;
}

.last\:rounded-b-md:last-child{
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}

.last\:border-b-0:last-child{
    border-bottom-width: 0px;
}

.last\:border-none:last-child{
    border-style: none;
}

.even\:border-gray-200:nth-child(even){
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, 1);
    border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
}

.empty\:hidden:empty{
    display: none;
}

.hover\:translate-x-1:hover{
    --tw-translate-x: 0.25rem;
    transform: translate(0.25rem, 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));
    transform: translate(var(--tw-translate-x), 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));
}

.hover\:scale-\[1\.02\]:hover{
    --tw-scale-x: 1.02;
    --tw-scale-y: 1.02;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(1.02) scaleY(1.02);
    transform: translate(var(--tw-translate-x), 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));
}

.hover\:border-\[var\(--ey-contact-focus\)\]:hover{
    border-color: var(--ey-contact-focus);
}

.hover\:border-main-dark:hover{
    border-color: var(--color-main-dark);
}

.hover\:bg-\[var\(--ey-contact-focus\)\]:hover{
    background-color: var(--ey-contact-focus);
}

.hover\:bg-main-dark:hover{
    background-color: var(--color-main-dark);
}

.hover\:\!text-primary:hover{
    color: #414042 !important;
    color: var(--color-primary) !important;
}

.hover\:text-black:hover{
    --tw-text-opacity: 1;
    color: rgba(0, 0, 0, 1);
    color: rgba(0, 0, 0, var(--tw-text-opacity, 1));
}

.hover\:text-main-dark:hover{
    color: var(--color-main-dark);
}

.hover\:text-primary:hover{
    color: #414042;
    color: var(--color-primary);
}

.hover\:text-red-800:hover{
    --tw-text-opacity: 1;
    color: rgba(153, 27, 27, 1);
    color: rgba(153, 27, 27, var(--tw-text-opacity, 1));
}

.hover\:text-white:hover{
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}

.hover\:no-underline:hover{
    text-decoration-line: none;
}

.hover\:opacity-100:hover{
    opacity: 1;
}

.hover\:opacity-60:hover{
    opacity: 0.6;
}

.hover\:opacity-70:hover{
    opacity: 0.7;
}

.hover\:opacity-75:hover{
    opacity: 0.75;
}

.hover\:opacity-80:hover{
    opacity: 0.8;
}

.hover\:opacity-85:hover{
    opacity: 0.85;
}

.hover\:opacity-\[0\.66\]:hover{
    opacity: 0.66;
}

.hover\:shadow-default:hover{
    --tw-shadow: 5px 10px 30px #2B2D340D;;
    --tw-shadow-colored: 5px 10px 30px var(--tw-shadow-color);
    box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 5px 10px 30px #2B2D340D;;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}

.focus\:border-primary:focus{
    border-color: #414042;
    border-color: var(--color-primary);
}

.focus\:bg-white\/\[0\.02\]:focus{
    background-color: rgba(255, 255, 255, 0.02);
}

.focus-visible\:border-\[var\(--ey-contact-focus\)\]:focus-visible{
    border-color: var(--ey-contact-focus);
}

.focus-visible\:border-main-dark:focus-visible{
    border-color: var(--color-main-dark);
}

.focus-visible\:bg-\[var\(--ey-contact-focus\)\]:focus-visible{
    background-color: var(--ey-contact-focus);
}

.focus-visible\:\!text-primary:focus-visible{
    color: #414042 !important;
    color: var(--color-primary) !important;
}

.focus-visible\:text-main-dark:focus-visible{
    color: var(--color-main-dark);
}

.focus-visible\:text-white:focus-visible{
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}

.focus-visible\:no-underline:focus-visible{
    text-decoration-line: none;
}

.focus-visible\:outline:focus-visible{
    outline-style: solid;
}

.focus-visible\:outline-2:focus-visible{
    outline-width: 2px;
}

.focus-visible\:outline-offset-4:focus-visible{
    outline-offset: 4px;
}

.focus-visible\:outline-offset-\[3px\]:focus-visible{
    outline-offset: 3px;
}

.focus-visible\:outline-\[var\(--ey-contact-text\)\]:focus-visible{
    outline-color: var(--ey-contact-text);
}

.focus-visible\:outline-main-dark:focus-visible{
    outline-color: var(--color-main-dark);
}

.disabled\:cursor-wait:disabled{
    cursor: wait;
}

.disabled\:opacity-\[0\.65\]:disabled{
    opacity: 0.65;
}

.group:hover .group-hover\:-translate-x-1{
    --tw-translate-x: -0.25rem;
    transform: translate(-0.25rem, 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));
    transform: translate(var(--tw-translate-x), 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));
}

.group:hover .group-hover\:-translate-y-2{
    --tw-translate-y: -0.5rem;
    transform: translate(var(--tw-translate-x), -0.5rem) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), 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));
}

.group:hover .group-hover\:-translate-y-full{
    --tw-translate-y: -100%;
    transform: translate(var(--tw-translate-x), -100%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), 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));
}

.group:hover .group-hover\:translate-x-1{
    --tw-translate-x: 0.25rem;
    transform: translate(0.25rem, 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));
    transform: translate(var(--tw-translate-x), 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));
}

.group:hover .group-hover\:translate-y-0{
    --tw-translate-y: 0px;
    transform: translate(var(--tw-translate-x), 0px) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), 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));
}

.group:hover .group-hover\:scale-110{
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(1.1) scaleY(1.1);
    transform: translate(var(--tw-translate-x), 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));
}

.group:hover .group-hover\:scale-\[1\.04\]{
    --tw-scale-x: 1.04;
    --tw-scale-y: 1.04;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(1.04) scaleY(1.04);
    transform: translate(var(--tw-translate-x), 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));
}

.group:hover .group-hover\:scale-\[1\.06\]{
    --tw-scale-x: 1.06;
    --tw-scale-y: 1.06;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(1.06) scaleY(1.06);
    transform: translate(var(--tw-translate-x), 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));
}

.group:hover .group-hover\:scale-y-100{
    --tw-scale-y: 1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(1);
    transform: translate(var(--tw-translate-x), 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));
}

.group:hover .group-hover\:text-white{
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}

.group:focus-visible .group-focus-visible\:-translate-y-full{
    --tw-translate-y: -100%;
    transform: translate(var(--tw-translate-x), -100%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), 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));
}

.group:focus-visible .group-focus-visible\:scale-y-100{
    --tw-scale-y: 1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(1);
    transform: translate(var(--tw-translate-x), 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));
}

.group\/item.is-open .group-\[\.is-open\]\/item\:pointer-events-auto{
    pointer-events: auto;
}

.group\/item.is-open .group-\[\.is-open\]\/item\:visible{
    visibility: visible;
}

.group\/accordion[aria-expanded="true"] .group-aria-expanded\/accordion\:rotate-180{
    --tw-rotate: 180deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(180deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), 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));
}

.group\/toggle[aria-expanded="true"] .group-aria-expanded\/toggle\:rotate-180{
    --tw-rotate: 180deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(180deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), 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));
}

@media (prefers-reduced-motion: reduce){
    .motion-reduce\:transition-none{
        transition-property: none;
    }
    .motion-reduce\:duration-0{
        transition-duration: 0s;
    }
}

@media (min-width: 640px){
    .sm\:col-span-2{
        grid-column: span 2 / span 2;
    }
    .sm\:row-span-2{
        grid-row: span 2 / span 2;
    }
    .sm\:mb-0{
        margin-bottom: 0px;
    }
    .sm\:mb-10{
        margin-bottom: 2.5rem;
    }
    .sm\:mb-6{
        margin-bottom: 1.5rem;
    }
    .sm\:mb-8{
        margin-bottom: 2rem;
    }
    .sm\:mt-0{
        margin-top: 0px;
    }
    .sm\:mt-8{
        margin-top: 2rem;
    }
    .sm\:block{
        display: block;
    }
    .sm\:flex{
        display: flex;
    }
    .sm\:inline-flex{
        display: inline-flex;
    }
    .sm\:grid{
        display: grid;
    }
    .sm\:h-6{
        height: 1.5rem;
    }
    .sm\:h-\[110px\]{
        height: 110px;
    }
    .sm\:h-\[35px\]{
        height: 35px;
    }
    .sm\:h-auto{
        height: auto;
    }
    .sm\:h-full{
        height: 100%;
    }
    .sm\:min-h-\[35px\]{
        min-height: 35px;
    }
    .sm\:\!w-\[220px\]{
        width: 220px !important;
    }
    .sm\:w-6{
        width: 1.5rem;
    }
    .sm\:w-\[110px\]{
        width: 110px;
    }
    .sm\:w-\[120px\]{
        width: 120px;
    }
    .sm\:w-\[35px\]{
        width: 35px;
    }
    .sm\:grow-0{
        flex-grow: 0;
    }
    .sm\:translate-y-0{
        --tw-translate-y: 0px;
        transform: translate(var(--tw-translate-x), 0px) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
        transform: translate(var(--tw-translate-x), 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));
    }
    .sm\:scale-100{
        --tw-scale-x: 1;
        --tw-scale-y: 1;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(1) scaleY(1);
        transform: translate(var(--tw-translate-x), 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));
    }
    .sm\:scale-95{
        --tw-scale-x: .95;
        --tw-scale-y: .95;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(.95) scaleY(.95);
        transform: translate(var(--tw-translate-x), 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));
    }
    .sm\:grid-cols-2{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .sm\:grid-cols-3{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .sm\:flex-row{
        flex-direction: row;
    }
    .sm\:items-start{
        align-items: flex-start;
    }
    .sm\:gap-4{
        gap: 1rem;
    }
    .sm\:gap-6{
        gap: 1.5rem;
    }
    .sm\:gap-8{
        gap: 2rem;
    }
    .sm\:gap-\[25px\]{
        gap: 25px;
    }
    .sm\:space-y-8 > :not([hidden]) ~ :not([hidden]){
        --tw-space-y-reverse: 0;
        margin-top: calc(2rem * (1 - 0));
        margin-top: calc(2rem * (1 - var(--tw-space-y-reverse)));
        margin-top: calc(2rem * calc(1 - 0));
        margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(2rem * 0);
        margin-bottom: calc(2rem * var(--tw-space-y-reverse));
    }
    .sm\:p-5{
        padding: 1.25rem;
    }
    .sm\:p-\[25px\]{
        padding: 25px;
    }
    .sm\:px-8{
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .sm\:px-\[30px\]{
        padding-left: 30px;
        padding-right: 30px;
    }
    .sm\:py-16{
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .sm\:pb-0{
        padding-bottom: 0px;
    }
    .sm\:pb-20{
        padding-bottom: 5rem;
    }
    .sm\:pt-12{
        padding-top: 3rem;
    }
    .sm\:pt-20{
        padding-top: 5rem;
    }
    .sm\:text-sm{
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
}

@media (min-width: 768px){
    .md\:order-1{
        order: 1;
    }
    .md\:order-2{
        order: 2;
    }
    .md\:my-5{
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
    }
    .md\:-mb-2{
        margin-bottom: -0.5rem;
    }
    .md\:mb-0{
        margin-bottom: 0px;
    }
    .md\:mb-10{
        margin-bottom: 2.5rem;
    }
    .md\:mb-12{
        margin-bottom: 3rem;
    }
    .md\:mb-20{
        margin-bottom: 5rem;
    }
    .md\:mb-8{
        margin-bottom: 2rem;
    }
    .md\:mb-9{
        margin-bottom: 2.25rem;
    }
    .md\:mt-0{
        margin-top: 0px;
    }
    .md\:mt-10{
        margin-top: 2.5rem;
    }
    .md\:mt-6{
        margin-top: 1.5rem;
    }
    .md\:mt-\[58px\]{
        margin-top: 58px;
    }
    .md\:block{
        display: block;
    }
    .md\:flex{
        display: flex;
    }
    .md\:table-row{
        display: table-row;
    }
    .md\:grid{
        display: grid;
    }
    .md\:hidden{
        display: none;
    }
    .md\:aspect-\[2\.07\/1\]{
        aspect-ratio: 2.07/1;
    }
    .md\:aspect-\[800\/410\]{
        aspect-ratio: 800/410;
    }
    .md\:h-20{
        height: 5rem;
    }
    .md\:h-24{
        height: 6rem;
    }
    .md\:h-\[260px\]{
        height: 260px;
    }
    .md\:h-\[40px\]{
        height: 40px;
    }
    .md\:h-auto{
        height: auto;
    }
    .md\:min-h-\[40px\]{
        min-height: 40px;
    }
    .md\:min-h-\[70px\]{
        min-height: 70px;
    }
    .md\:min-h-\[var\(--ey-base-height-desktop\)\]{
        min-height: var(--ey-base-height-desktop);
    }
    .md\:w-24{
        width: 6rem;
    }
    .md\:w-40{
        width: 10rem;
    }
    .md\:w-7\/12{
        width: 58.333333%;
    }
    .md\:w-\[140px\]{
        width: 140px;
    }
    .md\:w-\[40px\]{
        width: 40px;
    }
    .md\:w-\[calc\(50\%-12px\)\]{
        width: calc(50% - 12px);
    }
    .md\:w-auto{
        width: auto;
    }
    .md\:min-w-\[4\.5rem\]{
        min-width: 4.5rem;
    }
    .md\:grid-cols-3{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .md\:grid-cols-4{
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .md\:grid-cols-5{
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    .md\:grid-cols-\[1\.2fr_1\.8fr\]{
        grid-template-columns: 1.2fr 1.8fr;
    }
    .md\:grid-cols-\[repeat\(3\2c minmax\(0\2c 1fr\)\)\]{
        grid-template-columns: repeat(3,minmax(0,1fr));
    }
    .md\:flex-row{
        flex-direction: row;
    }
    .md\:items-start{
        align-items: flex-start;
    }
    .md\:items-center{
        align-items: center;
    }
    .md\:items-baseline{
        align-items: baseline;
    }
    .md\:gap-14{
        gap: 3.5rem;
    }
    .md\:gap-3{
        gap: 0.75rem;
    }
    .md\:gap-8{
        gap: 2rem;
    }
    .md\:gap-\[20px\]{
        gap: 20px;
    }
    .md\:gap-\[30px\]{
        gap: 30px;
    }
    .md\:gap-x-28{
        -moz-column-gap: 7rem;
             column-gap: 7rem;
    }
    .md\:gap-y-16{
        row-gap: 4rem;
    }
    .md\:space-x-12 > :not([hidden]) ~ :not([hidden]){
        --tw-space-x-reverse: 0;
        margin-right: calc(3rem * 0);
        margin-right: calc(3rem * var(--tw-space-x-reverse));
        margin-left: calc(3rem * (1 - 0));
        margin-left: calc(3rem * (1 - var(--tw-space-x-reverse)));
        margin-left: calc(3rem * calc(1 - 0));
        margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse)));
    }
    .md\:space-y-0 > :not([hidden]) ~ :not([hidden]){
        --tw-space-y-reverse: 0;
        margin-top: calc(0px * (1 - 0));
        margin-top: calc(0px * (1 - var(--tw-space-y-reverse)));
        margin-top: calc(0px * calc(1 - 0));
        margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(0px * 0);
        margin-bottom: calc(0px * var(--tw-space-y-reverse));
    }
    .md\:border-none{
        border-style: none;
    }
    .md\:p-0{
        padding: 0px;
    }
    .md\:p-10{
        padding: 2.5rem;
    }
    .md\:p-8{
        padding: 2rem;
    }
    .md\:p-\[30px\]{
        padding: 30px;
    }
    .md\:px-10{
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    .md\:px-5{
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .md\:px-6{
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .md\:px-\[25px\]{
        padding-left: 25px;
        padding-right: 25px;
    }
    .md\:py-0{
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .md\:py-4{
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .md\:py-5{
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }
    .md\:pb-28{
        padding-bottom: 7rem;
    }
    .md\:pb-\[80px\]{
        padding-bottom: 80px;
    }
    .md\:pt-16{
        padding-top: 4rem;
    }
    .md\:pt-28{
        padding-top: 7rem;
    }
    .md\:pt-\[160px\]{
        padding-top: 160px;
    }
    .md\:pt-\[50px\]{
        padding-top: 50px;
    }
    .md\:text-start{
        text-align: left;
    }
    .md\:text-2xl{
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .md\:text-4xl{
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    .md\:text-\[22px\]{
        font-size: 22px;
    }
    .md\:text-\[34px\]{
        font-size: 34px;
    }
    .md\:text-\[length\:var\(--ey-base-title-desktop\)\]{
        font-size: var(--ey-base-title-desktop);
    }
    .md\:text-base{
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .md\:text-lg{
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
    .md\:text-sm{
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
    .md\:first\:pt-24:first-child{
        padding-top: 6rem;
    }
}

@media (min-width: 1024px){
    .lg\:sticky{
        position: sticky;
    }
    .lg\:top-24{
        top: 6rem;
    }
    .lg\:top-\[120px\]{
        top: 120px;
    }
    .lg\:mx-8{
        margin-left: 2rem;
        margin-right: 2rem;
    }
    .lg\:-mt-28{
        margin-top: -7rem;
    }
    .lg\:mb-10{
        margin-bottom: 2.5rem;
    }
    .lg\:mb-24{
        margin-bottom: 6rem;
    }
    .lg\:mb-6{
        margin-bottom: 1.5rem;
    }
    .lg\:ms-10{
        margin-left: 2.5rem;
    }
    .lg\:mt-0{
        margin-top: 0px;
    }
    .lg\:mt-12{
        margin-top: 3rem;
    }
    .lg\:block{
        display: block;
    }
    .lg\:flex{
        display: flex;
    }
    .lg\:hidden{
        display: none;
    }
    .lg\:h-\[24px\]{
        height: 24px;
    }
    .lg\:h-\[280px\]{
        height: 280px;
    }
    .lg\:min-h-\[220px\]{
        min-height: 220px;
    }
    .lg\:min-h-\[37\.5625px\]{
        min-height: 37.5625px;
    }
    .lg\:min-h-\[528px\]{
        min-height: 528px;
    }
    .lg\:min-h-\[74px\]{
        min-height: 74px;
    }
    .lg\:w-10\/12{
        width: 83.333333%;
    }
    .lg\:w-24{
        width: 6rem;
    }
    .lg\:w-5\/12{
        width: 41.666667%;
    }
    .lg\:w-72{
        width: 18rem;
    }
    .lg\:w-96{
        width: 24rem;
    }
    .lg\:w-\[214px\]{
        width: 214px;
    }
    .lg\:w-\[50vw\]{
        width: 50vw;
    }
    .lg\:w-\[calc\(100\%-384px\)\]{
        width: calc(100% - 384px);
    }
    .lg\:w-\[calc\(33\.333\%-16px\)\]{
        width: calc(33.333% - 16px);
    }
    .lg\:max-w-\[420px\]{
        max-width: 420px;
    }
    .lg\:max-w-xl{
        max-width: 36rem;
    }
    .lg\:flex-1{
        flex: 1 1 0%;
    }
    .lg\:flex-none{
        flex: none;
    }
    .lg\:grid-cols-2{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .lg\:grid-cols-4{
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .lg\:grid-cols-6{
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
    .lg\:grid-cols-\[258px_minmax\(0\2c 1fr\)\]{
        grid-template-columns: 258px minmax(0,1fr);
    }
    .lg\:grid-cols-\[minmax\(0\2c 540px\)_minmax\(0\2c 640px\)\]{
        grid-template-columns: minmax(0,540px) minmax(0,640px);
    }
    .lg\:flex-row{
        flex-direction: row;
    }
    .lg\:flex-col{
        flex-direction: column;
    }
    .lg\:justify-between{
        justify-content: space-between;
    }
    .lg\:gap-10{
        gap: 2.5rem;
    }
    .lg\:gap-20{
        gap: 5rem;
    }
    .lg\:gap-4{
        gap: 1rem;
    }
    .lg\:gap-8{
        gap: 2rem;
    }
    .lg\:gap-\[160px\]{
        gap: 160px;
    }
    .lg\:gap-x-6{
        -moz-column-gap: 1.5rem;
             column-gap: 1.5rem;
    }
    .lg\:space-x-8 > :not([hidden]) ~ :not([hidden]){
        --tw-space-x-reverse: 0;
        margin-right: calc(2rem * 0);
        margin-right: calc(2rem * var(--tw-space-x-reverse));
        margin-left: calc(2rem * (1 - 0));
        margin-left: calc(2rem * (1 - var(--tw-space-x-reverse)));
        margin-left: calc(2rem * calc(1 - 0));
        margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
    }
    .lg\:space-y-16 > :not([hidden]) ~ :not([hidden]){
        --tw-space-y-reverse: 0;
        margin-top: calc(4rem * (1 - 0));
        margin-top: calc(4rem * (1 - var(--tw-space-y-reverse)));
        margin-top: calc(4rem * calc(1 - 0));
        margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(4rem * 0);
        margin-bottom: calc(4rem * var(--tw-space-y-reverse));
    }
    .lg\:bg-white{
        --tw-bg-opacity: 1;
        background-color: rgba(255, 255, 255, 1);
        background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
    }
    .lg\:p-8{
        padding: 2rem;
    }
    .lg\:px-2{
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .lg\:px-8{
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .lg\:px-\[30px\]{
        padding-left: 30px;
        padding-right: 30px;
    }
    .lg\:py-0{
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .lg\:py-5{
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }
    .lg\:py-6{
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    .lg\:py-\[120px\]{
        padding-top: 120px;
        padding-bottom: 120px;
    }
    .lg\:pb-11{
        padding-bottom: 2.75rem;
    }
    .lg\:pb-20{
        padding-bottom: 5rem;
    }
    .lg\:pb-\[120px\]{
        padding-bottom: 120px;
    }
    .lg\:pt-10{
        padding-top: 2.5rem;
    }
    .lg\:pt-20{
        padding-top: 5rem;
    }
    .lg\:pt-8{
        padding-top: 2rem;
    }
    .lg\:pt-\[198px\]{
        padding-top: 198px;
    }
    .lg\:pt-\[60px\]{
        padding-top: 60px;
    }
    .lg\:text-\[18px\]{
        font-size: 18px;
    }
    .lg\:text-\[24px\]{
        font-size: 24px;
    }
    .lg\:text-\[40px\]{
        font-size: 40px;
    }
    .lg\:text-lg{
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
    .lg\:text-title-size{
        font-size: 42px;
    }
    .lg\:text-xl{
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .lg\:leading-none{
        line-height: 1;
    }
    .lg\:shadow-default{
        --tw-shadow: 5px 10px 30px #2B2D340D;;
        --tw-shadow-colored: 5px 10px 30px var(--tw-shadow-color);
        box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 5px 10px 30px #2B2D340D;;
        box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
    }
}

@media (min-width: 1280px){
    .xl\:ms-10{
        margin-left: 2.5rem;
    }
    .xl\:flex{
        display: flex;
    }
    .xl\:hidden{
        display: none;
    }
    .xl\:w-auto{
        width: auto;
    }
    .xl\:flex-1{
        flex: 1 1 0%;
    }
    .xl\:flex-row{
        flex-direction: row;
    }
    .xl\:flex-wrap{
        flex-wrap: wrap;
    }
    .xl\:justify-end{
        justify-content: flex-end;
    }
    .xl\:gap-20{
        gap: 5rem;
    }
    .xl\:gap-8{
        gap: 2rem;
    }
    .xl\:px-0{
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media (min-width: 480px){
    .xs\:top-5{
        top: 1.25rem;
    }
    .xs\:p-11{
        padding: 2.75rem;
    }
    .xs\:p-2{
        padding: 0.5rem;
    }
    .xs\:p-7{
        padding: 1.75rem;
    }
    .xs\:text-base{
        font-size: 1rem;
        line-height: 1.5rem;
    }
}

.ltr\:\!left-auto:where([dir="ltr"], [dir="ltr"] *){
    left: auto !important;
}

.ltr\:\!right-0:where([dir="ltr"], [dir="ltr"] *){
    right: 0px !important;
}

.ltr\:left-0:where([dir="ltr"], [dir="ltr"] *){
    left: 0px;
}

.ltr\:right-0:where([dir="ltr"], [dir="ltr"] *){
    right: 0px;
}

.ltr\:right-1\.5:where([dir="ltr"], [dir="ltr"] *){
    right: 0.375rem;
}

.ltr\:right-4:where([dir="ltr"], [dir="ltr"] *){
    right: 1rem;
}

.ltr\:ml-1:where([dir="ltr"], [dir="ltr"] *){
    margin-left: 0.25rem;
}

.ltr\:mr-1:where([dir="ltr"], [dir="ltr"] *){
    margin-right: 0.25rem;
}

.ltr\:mr-1\.5:where([dir="ltr"], [dir="ltr"] *){
    margin-right: 0.375rem;
}

.ltr\:mr-2:where([dir="ltr"], [dir="ltr"] *){
    margin-right: 0.5rem;
}

.ltr\:mr-20:where([dir="ltr"], [dir="ltr"] *){
    margin-right: 5rem;
}

.ltr\:mr-3:where([dir="ltr"], [dir="ltr"] *){
    margin-right: 0.75rem;
}

.ltr\:-translate-x-full:where([dir="ltr"], [dir="ltr"] *){
    --tw-translate-x: -100%;
    transform: translate(-100%, 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));
    transform: translate(var(--tw-translate-x), 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));
}

.ltr\:rounded-l-none:where([dir="ltr"], [dir="ltr"] *){
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.ltr\:rounded-r-none:where([dir="ltr"], [dir="ltr"] *){
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.ltr\:border-r-0:where([dir="ltr"], [dir="ltr"] *){
    border-right-width: 0px;
}

.ltr\:pl-5:where([dir="ltr"], [dir="ltr"] *){
    padding-left: 1.25rem;
}

.ltr\:pl-\[54px\]:where([dir="ltr"], [dir="ltr"] *){
    padding-left: 54px;
}

.ltr\:pr-10:where([dir="ltr"], [dir="ltr"] *){
    padding-right: 2.5rem;
}

.ltr\:pr-5:where([dir="ltr"], [dir="ltr"] *){
    padding-right: 1.25rem;
}

.ltr\:pr-\[17px\]:where([dir="ltr"], [dir="ltr"] *){
    padding-right: 17px;
}

.ltr\:text-right:where([dir="ltr"], [dir="ltr"] *){
    text-align: right;
}

.ltr\:text-end:where([dir="ltr"], [dir="ltr"] *){
    text-align: right;
}

.ltr\:even\:border-l:nth-child(even):where([dir="ltr"], [dir="ltr"] *){
    border-left-width: 1px;
}

@media (min-width: 640px){
    .sm\:ltr\:text-left:where([dir="ltr"], [dir="ltr"] *){
        text-align: left;
    }
}

@media (min-width: 768px){
    .ltr\:md\:pr-12:where([dir="ltr"], [dir="ltr"] *){
        padding-right: 3rem;
    }
    .ltr\:md\:pr-8:where([dir="ltr"], [dir="ltr"] *){
        padding-right: 2rem;
    }
    .ltr\:md\:text-left:where([dir="ltr"], [dir="ltr"] *){
        text-align: left;
    }
}

@media (min-width: 1024px){
    .ltr\:lg\:ml-8:where([dir="ltr"], [dir="ltr"] *){
        margin-left: 2rem;
    }
    .ltr\:lg\:mr-8:where([dir="ltr"], [dir="ltr"] *){
        margin-right: 2rem;
    }
}

@media (min-width: 480px){
    .ltr\:xs\:right-5:where([dir="ltr"], [dir="ltr"] *){
        right: 1.25rem;
    }
}

.rtl\:\!left-0:where([dir="rtl"], [dir="rtl"] *){
    left: 0px !important;
}

.rtl\:\!right-auto:where([dir="rtl"], [dir="rtl"] *){
    right: auto !important;
}

.rtl\:left-0:where([dir="rtl"], [dir="rtl"] *){
    left: 0px;
}

.rtl\:left-1\.5:where([dir="rtl"], [dir="rtl"] *){
    left: 0.375rem;
}

.rtl\:left-4:where([dir="rtl"], [dir="rtl"] *){
    left: 1rem;
}

.rtl\:right-0:where([dir="rtl"], [dir="rtl"] *){
    right: 0px;
}

.rtl\:ml-1:where([dir="rtl"], [dir="rtl"] *){
    margin-left: 0.25rem;
}

.rtl\:ml-1\.5:where([dir="rtl"], [dir="rtl"] *){
    margin-left: 0.375rem;
}

.rtl\:ml-2:where([dir="rtl"], [dir="rtl"] *){
    margin-left: 0.5rem;
}

.rtl\:ml-20:where([dir="rtl"], [dir="rtl"] *){
    margin-left: 5rem;
}

.rtl\:ml-3:where([dir="rtl"], [dir="rtl"] *){
    margin-left: 0.75rem;
}

.rtl\:mr-1:where([dir="rtl"], [dir="rtl"] *){
    margin-right: 0.25rem;
}

.rtl\:translate-x-full:where([dir="rtl"], [dir="rtl"] *){
    --tw-translate-x: 100%;
    transform: translate(100%, 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));
    transform: translate(var(--tw-translate-x), 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));
}

.rtl\:-scale-x-100:where([dir="rtl"], [dir="rtl"] *){
    --tw-scale-x: -1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(-1) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), 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));
}

.rtl\:space-x-reverse:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 1;
}

.rtl\:rounded-l-none:where([dir="rtl"], [dir="rtl"] *){
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.rtl\:rounded-r-none:where([dir="rtl"], [dir="rtl"] *){
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.rtl\:border-l-0:where([dir="rtl"], [dir="rtl"] *){
    border-left-width: 0px;
}

.rtl\:pl-10:where([dir="rtl"], [dir="rtl"] *){
    padding-left: 2.5rem;
}

.rtl\:pl-5:where([dir="rtl"], [dir="rtl"] *){
    padding-left: 1.25rem;
}

.rtl\:pl-\[17px\]:where([dir="rtl"], [dir="rtl"] *){
    padding-left: 17px;
}

.rtl\:pr-5:where([dir="rtl"], [dir="rtl"] *){
    padding-right: 1.25rem;
}

.rtl\:pr-\[54px\]:where([dir="rtl"], [dir="rtl"] *){
    padding-right: 54px;
}

.rtl\:text-left:where([dir="rtl"], [dir="rtl"] *){
    text-align: left;
}

.rtl\:text-right:where([dir="rtl"], [dir="rtl"] *){
    text-align: right;
}

.rtl\:text-start:where([dir="rtl"], [dir="rtl"] *){
    text-align: left;
}

.rtl\:even\:border-r:nth-child(even):where([dir="rtl"], [dir="rtl"] *){
    border-right-width: 1px;
}

.rtl\:hover\:-translate-x-1:hover:where([dir="rtl"], [dir="rtl"] *){
    --tw-translate-x: -0.25rem;
    transform: translate(-0.25rem, 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));
    transform: translate(var(--tw-translate-x), 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));
}

.group:hover .rtl\:group-hover\:-translate-x-1:where([dir="rtl"], [dir="rtl"] *){
    --tw-translate-x: -0.25rem;
    transform: translate(-0.25rem, 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));
    transform: translate(var(--tw-translate-x), 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));
}

@media (min-width: 640px){
    .sm\:rtl\:text-right:where([dir="rtl"], [dir="rtl"] *){
        text-align: right;
    }
}

@media (min-width: 768px){
    .rtl\:md\:pl-12:where([dir="rtl"], [dir="rtl"] *){
        padding-left: 3rem;
    }
    .rtl\:md\:pl-8:where([dir="rtl"], [dir="rtl"] *){
        padding-left: 2rem;
    }
    .rtl\:md\:text-right:where([dir="rtl"], [dir="rtl"] *){
        text-align: right;
    }
}

@media (min-width: 1024px){
    .rtl\:lg\:ml-8:where([dir="rtl"], [dir="rtl"] *){
        margin-left: 2rem;
    }
    .rtl\:lg\:mr-8:where([dir="rtl"], [dir="rtl"] *){
        margin-right: 2rem;
    }
}

@media (min-width: 480px){
    .rtl\:xs\:left-5:where([dir="rtl"], [dir="rtl"] *){
        left: 1.25rem;
    }
}

.\[\&\.is-open\]\:pointer-events-auto.is-open{
    pointer-events: auto;
}

.\[\&\.is-open\]\:visible.is-open{
    visibility: visible;
}

.\[\&\.is-open\]\:z-20.is-open{
    z-index: 20;
}

.\[\&\.is-open\]\:translate-y-0.is-open{
    --tw-translate-y: 0px;
    transform: translate(var(--tw-translate-x), 0px) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), 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));
}

.\[\&\.is-open\]\:opacity-100.is-open{
    opacity: 1;
}

.ltr\:\[\&\.is-open\]\:translate-x-0.is-open:where([dir="ltr"], [dir="ltr"] *){
    --tw-translate-x: 0px;
    transform: translate(0px, 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));
    transform: translate(var(--tw-translate-x), 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));
}

.rtl\:\[\&\.is-open\]\:translate-x-0.is-open:where([dir="rtl"], [dir="rtl"] *){
    --tw-translate-x: 0px;
    transform: translate(0px, 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));
    transform: translate(var(--tw-translate-x), 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));
}

.\[\&\.is-visible\]\:pointer-events-auto.is-visible{
    pointer-events: auto;
}

.\[\&\.is-visible\]\:visible.is-visible{
    visibility: visible;
}

.\[\&\.is-visible\]\:opacity-100.is-visible{
    opacity: 1;
}

.\[\&\.isActive-sort\]\:\!text-primary.isActive-sort{
    color: #414042 !important;
    color: var(--color-primary) !important;
}

.\[\&\.w--current\]\:\!text-primary.w--current{
    color: #414042 !important;
    color: var(--color-primary) !important;
}

.\[\&\.w--current\]\:text-main-dark.w--current{
    color: var(--color-main-dark);
}

.\[\&\>svg\]\:block>svg{
    display: block;
}

.\[\&\>svg\]\:h-\[18px\]>svg{
    height: 18px;
}

.\[\&\>svg\]\:h-\[22px\]>svg{
    height: 22px;
}

.\[\&\>svg\]\:h-\[56px\]>svg{
    height: 56px;
}

.\[\&\>svg\]\:w-\[18px\]>svg{
    width: 18px;
}

.\[\&\>svg\]\:w-\[22px\]>svg{
    width: 22px;
}

.\[\&\>svg\]\:w-\[56px\]>svg{
    width: 56px;
}

.\[\&\[hidden\]\]\:hidden[hidden]{
    display: none;
}

.\[\&_a\]\:text-main-dark a{
    color: var(--color-main-dark);
}

.\[\&_a\]\:underline a{
    text-decoration-line: underline;
}

.\[\&_a\]\:underline-offset-4 a{
    text-underline-offset: 4px;
}

.hover\:\[\&_a\]\:text-primary a:hover{
    color: #414042;
    color: var(--color-primary);
}

.\[\&_blockquote\]\:my-10 blockquote{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.\[\&_blockquote\]\:border-0 blockquote{
    border-width: 0px;
}

.\[\&_blockquote\]\:bg-primary blockquote{
    background-color: #414042;
    background-color: var(--color-primary);
}

.\[\&_blockquote\]\:p-6 blockquote{
    padding: 1.5rem;
}

.\[\&_blockquote\]\:text-\[22px\] blockquote{
    font-size: 22px;
}

.\[\&_blockquote\]\:font-semibold blockquote{
    font-weight: 600;
}

.\[\&_blockquote\]\:leading-\[1\.5\] blockquote{
    line-height: 1.5;
}

.\[\&_blockquote\]\:text-main-dark blockquote{
    color: var(--color-main-dark);
}

@media (min-width: 768px){
    .md\:\[\&_blockquote\]\:p-8 blockquote{
        padding: 2rem;
    }
    .md\:\[\&_blockquote\]\:text-2xl blockquote{
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .md\:\[\&_blockquote\]\:leading-\[1\.66\] blockquote{
        line-height: 1.66;
    }
}

.\[\&_figure\]\:my-10 figure{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.\[\&_figure\]\:w-full figure{
    width: 100%;
}

@media (min-width: 768px){
    .md\:\[\&_figure\]\:mb-\[58px\] figure{
        margin-bottom: 58px;
    }
}

.\[\&_figure_img\]\:block figure img{
    display: block;
}

.\[\&_figure_img\]\:aspect-\[2\/1\] figure img{
    aspect-ratio: 2/1;
}

.\[\&_figure_img\]\:w-full figure img{
    width: 100%;
}

.\[\&_figure_img\]\:object-cover figure img{
    -o-object-fit: cover;
       object-fit: cover;
}

.\[\&_h1\]\:text-\[32px\] h1{
    font-size: 32px;
}

.\[\&_h1\]\:font-semibold h1{
    font-weight: 600;
}

.\[\&_h1\]\:leading-\[1\.25\] h1{
    line-height: 1.25;
}

.\[\&_h1\]\:text-main-dark h1{
    color: var(--color-main-dark);
}

.\[\&_h2\]\:text-\[30px\] h2{
    font-size: 30px;
}

.\[\&_h2\]\:font-semibold h2{
    font-weight: 600;
}

.\[\&_h2\]\:leading-\[1\.3\] h2{
    line-height: 1.3;
}

.\[\&_h2\]\:text-main-dark h2{
    color: var(--color-main-dark);
}

.\[\&_h3\]\:text-\[28px\] h3{
    font-size: 28px;
}

.\[\&_h3\]\:font-semibold h3{
    font-weight: 600;
}

.\[\&_h3\]\:leading-\[1\.35\] h3{
    line-height: 1.35;
}

.\[\&_h3\]\:text-main-dark h3{
    color: var(--color-main-dark);
}

.\[\&_h4\]\:text-\[26px\] h4{
    font-size: 26px;
}

.\[\&_h4\]\:font-semibold h4{
    font-weight: 600;
}

.\[\&_h4\]\:leading-\[1\.45\] h4{
    line-height: 1.45;
}

.\[\&_h4\]\:text-main-dark h4{
    color: var(--color-main-dark);
}

.\[\&_h5\]\:text-\[22px\] h5{
    font-size: 22px;
}

.\[\&_h5\]\:font-semibold h5{
    font-weight: 600;
}

.\[\&_h5\]\:leading-\[1\.66\] h5{
    line-height: 1.66;
}

.\[\&_h5\]\:text-main-dark h5{
    color: var(--color-main-dark);
}

@media (min-width: 768px){
    .md\:\[\&_h5\]\:mt-\[58px\] h5{
        margin-top: 58px;
    }
    .md\:\[\&_h5\]\:text-2xl h5{
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

.\[\&_h6\]\:text-xl h6{
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.\[\&_h6\]\:font-semibold h6{
    font-weight: 600;
}

.\[\&_h6\]\:text-main-dark h6{
    color: var(--color-main-dark);
}

.\[\&_img\]\:h-5 img{
    height: 1.25rem;
}

.\[\&_img\]\:h-6 img{
    height: 1.5rem;
}

.\[\&_img\]\:w-auto img{
    width: auto;
}

.\[\&_img\]\:max-w-full img{
    max-width: 100%;
}

.\[\&_img\]\:opacity-50 img{
    opacity: 0.5;
}

.\[\&_img\]\:transition-all img{
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.\[\&_img\]\:transition-opacity img{
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.\[\&_img\]\:hover\:opacity-80:hover img{
    opacity: 0.8;
}

.\[\&_li\]\:text-base li{
    font-size: 1rem;
    line-height: 1.5rem;
}

.\[\&_li\]\:leading-\[1\.66\] li{
    line-height: 1.66;
}

.\[\&_ol\]\:mb-0 ol{
    margin-bottom: 0px;
}

.\[\&_ol\]\:mt-5 ol{
    margin-top: 1.25rem;
}

.\[\&_ol\]\:flex ol{
    display: flex;
}

.\[\&_ol\]\:list-decimal ol{
    list-style-type: decimal;
}

.\[\&_ol\]\:flex-col ol{
    flex-direction: column;
}

.\[\&_ol\]\:gap-0 ol{
    gap: 0px;
}

.\[\&_ol\]\:ps-\[25px\] ol{
    padding-left: 25px;
}

.\[\&_p\+p\]\:mt-5 p+p{
    margin-top: 1.25rem;
}

.\[\&_p\]\:m-0 p{
    margin: 0px;
}

.\[\&_p\]\:text-base p{
    font-size: 1rem;
    line-height: 1.5rem;
}

.\[\&_p\]\:leading-\[1\.66\] p{
    line-height: 1.66;
}

@media (min-width: 768px){
    .md\:\[\&_p\]\:text-lg p{
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
}

.\[\&_ul\]\:mb-0 ul{
    margin-bottom: 0px;
}

.\[\&_ul\]\:mt-5 ul{
    margin-top: 1.25rem;
}

.\[\&_ul\]\:flex ul{
    display: flex;
}

.\[\&_ul\]\:list-disc ul{
    list-style-type: disc;
}

.\[\&_ul\]\:flex-col ul{
    flex-direction: column;
}

.\[\&_ul\]\:gap-0 ul{
    gap: 0px;
}

.\[\&_ul\]\:ps-\[25px\] ul{
    padding-left: 25px;
}

.isActive-sort .\[\.isActive-sort_\&\]\:\!inline-flex{
    display: inline-flex !important;
}
