@charset "UTF-8";
/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  animation-iteration-count: 1;
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  animation-delay: 1s;
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  animation-delay: calc(1s * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  animation-delay: calc(1s * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  animation-delay: calc(1s * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  animation-delay: calc(1s * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  animation-duration: calc(1s / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  animation-duration: calc(1s * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  animation-duration: calc(1s * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  animation-duration: calc(1s * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}
/* Attention seekers  */
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

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

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  animation-name: rubberBand;
}
@keyframes shakeX {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  animation-name: shakeX;
}
@keyframes shakeY {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  animation-name: shakeY;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}
.animate__headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  animation-name: wobble;
}
@keyframes jello {
  from,
  11.1%,
  to {
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.3);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.3);
  }

  70% {
    transform: scale(1);
  }
}
.animate__heartBeat {
  animation-name: heartBeat;
  animation-duration: calc(1s * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  animation-timing-function: ease-in-out;
}
/* Back entrances */
@keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  animation-name: backInDown;
}
@keyframes backInLeft {
  0% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  animation-name: backInLeft;
}
@keyframes backInRight {
  0% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  animation-name: backInRight;
}
@keyframes backInUp {
  0% {
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  animation-name: backInUp;
}
/* Back exits */
@keyframes backOutDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  animation-name: backOutDown;
}
@keyframes backOutLeft {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  animation-name: backOutLeft;
}
@keyframes backOutRight {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  animation-name: backOutRight;
}
@keyframes backOutUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  animation-name: backOutUp;
}
/* Bouncing entrances  */
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  animation-name: bounceInUp;
}
/* Bouncing exits  */
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  animation-name: bounceOutUp;
}
/* Fading entrances  */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  animation-name: fadeInTopLeft;
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  animation-name: fadeInTopRight;
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  animation-name: fadeInBottomLeft;
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  animation-name: fadeInBottomRight;
}
/* Fading exits */
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  animation-name: fadeOutTopLeft;
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  animation-name: fadeOutTopRight;
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}
.animate__flipInX {
  backface-visibility: visible !important;
}
.animate__flipInX {
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}
.animate__flipInY {
  backface-visibility: visible !important;
}
.animate__flipInY {
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  backface-visibility: visible !important;
}
.animate__flipOutX {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: flipOutX;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  backface-visibility: visible !important;
}
.animate__flipOutY {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: flipOutY;
}
/* Lightspeed */
@keyframes lightSpeedInRight {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  animation-name: lightSpeedInRight;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedInLeft {
  from {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(5deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  animation-name: lightSpeedInLeft;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  animation-name: lightSpeedOutRight;
  animation-timing-function: ease-in;
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  animation-name: lightSpeedOutLeft;
  animation-timing-function: ease-in;
}
/* Rotating entrances */
@keyframes rotateIn {
  from {
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  animation-name: rotateIn;
  transform-origin: center;
}
@keyframes rotateInDownLeft {
  from {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  animation-name: rotateInDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateInDownRight {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  animation-name: rotateInDownRight;
  transform-origin: right bottom;
}
@keyframes rotateInUpLeft {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  animation-name: rotateInUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateInUpRight {
  from {
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}
/* Rotating exits */
@keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  animation-name: rotateOut;
  transform-origin: center;
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  animation-name: rotateOutDownRight;
  transform-origin: right bottom;
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  animation-name: rotateOutUpRight;
  transform-origin: right bottom;
}
/* Specials */
@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    transform: rotate3d(0, 0, 1, 80deg);
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    transform: rotate3d(0, 0, 1, 60deg);
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  animation-duration: calc(1s * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  animation-name: hinge;
  transform-origin: top left;
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

  50% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  animation-name: jackInTheBox;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  animation-name: rollOut;
}
/* Zooming entrances */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  animation-name: zoomInUp;
}
/* Zooming exits */
@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  animation-name: zoomOutDown;
  transform-origin: center bottom;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  animation-name: zoomOutLeft;
  transform-origin: left center;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  animation-name: zoomOutRight;
  transform-origin: right center;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  animation-name: zoomOutUp;
  transform-origin: center bottom;
}
/* Sliding entrances */
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  animation-name: slideInUp;
}
/* Sliding exits */
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  animation-name: slideOutUp;
}
*, ::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.17 | 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: 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 currentColor;
          text-decoration: underline dotted currentColor;
}
/*
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;
}
[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[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);
}
[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [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: 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;
}
[multiple],[size]:where(select: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;
}
[type='checkbox'],[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);
}
[type='checkbox']{
  border-radius: 0px;
}
[type='radio']{
  border-radius: 100%;
}
[type='checkbox']:focus,[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: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
[type='checkbox']:checked,[type='radio']:checked{
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
[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) {
  [type='checkbox']:checked{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
[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) {
  [type='radio']:checked{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus{
  border-color: transparent;
  background-color: currentColor;
}
[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) {
  [type='checkbox']:indeterminate{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus{
  border-color: transparent;
  background-color: currentColor;
}
[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;
}
[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: 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;
}
.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;
}
.visible{
  visibility: visible;
}
.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;
}
[dir="ltr"] .-end-0{
  right: -0px;
}
[dir="rtl"] .-end-0{
  left: -0px;
}
.-top-4{
  top: -1rem;
}
.-top-5{
  top: -1.25rem;
}
.bottom-0{
  bottom: 0px;
}
.bottom-1{
  bottom: 0.25rem;
}
.bottom-2{
  bottom: 0.5rem;
}
.bottom-20{
  bottom: 5rem;
}
.bottom-24{
  bottom: 6rem;
}
.bottom-4{
  bottom: 1rem;
}
.bottom-8{
  bottom: 2rem;
}
[dir="ltr"] .end-1{
  right: 0.25rem;
}
[dir="rtl"] .end-1{
  left: 0.25rem;
}
[dir="ltr"] .end-2{
  right: 0.5rem;
}
[dir="rtl"] .end-2{
  left: 0.5rem;
}
[dir="ltr"] .end-4{
  right: 1rem;
}
[dir="rtl"] .end-4{
  left: 1rem;
}
[dir="ltr"] .end-8{
  right: 2rem;
}
[dir="rtl"] .end-8{
  left: 2rem;
}
.left-0{
  left: 0px;
}
.left-1\/2{
  left: 50%;
}
.left-4{
  left: 1rem;
}
.left-auto{
  left: auto;
}
.right-0{
  right: 0px;
}
.right-\[-38px\]{
  right: -38px;
}
[dir="ltr"] .start-0{
  left: 0px;
}
[dir="rtl"] .start-0{
  right: 0px;
}
[dir="ltr"] .start-2{
  left: 0.5rem;
}
[dir="rtl"] .start-2{
  right: 0.5rem;
}
[dir="ltr"] .start-4{
  left: 1rem;
}
[dir="rtl"] .start-4{
  right: 1rem;
}
.top-0{
  top: 0px;
}
.top-1\/2{
  top: 50%;
}
.top-16{
  top: 4rem;
}
.top-2{
  top: 0.5rem;
}
.top-20{
  top: 5rem;
}
.top-24{
  top: 6rem;
}
.top-4{
  top: 1rem;
}
.top-5{
  top: 1.25rem;
}
.top-\[11px\]{
  top: 11px;
}
.top-full{
  top: 100%;
}
.-z-1{
  z-index: -1;
}
.z-1{
  z-index: 1;
}
.z-10{
  z-index: 10;
}
.z-2{
  z-index: 2;
}
.z-50{
  z-index: 50;
}
.z-\[2\]{
  z-index: 2;
}
.z-\[3\]{
  z-index: 3;
}
.\!m-0{
  margin: 0px !important;
}
.m-0{
  margin: 0px;
}
.m-8{
  margin: 2rem;
}
.m-auto{
  margin: auto;
}
.-mx-6{
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.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-1{
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-2{
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-4{
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.-mb-52{
  margin-bottom: -13rem;
}
.-mt-32{
  margin-top: -8rem;
}
.-mt-6{
  margin-top: -1.5rem;
}
.-mt-8{
  margin-top: -2rem;
}
.mb-1{
  margin-bottom: 0.25rem;
}
.mb-1\.5{
  margin-bottom: 0.375rem;
}
.mb-10{
  margin-bottom: 2.5rem;
}
.mb-14{
  margin-bottom: 3.5rem;
}
.mb-2{
  margin-bottom: 0.5rem;
}
.mb-2\.5{
  margin-bottom: 0.625rem;
}
.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;
}
[dir="ltr"] .me-0{
  margin-right: 0px;
}
[dir="rtl"] .me-0{
  margin-left: 0px;
}
[dir="ltr"] .me-1{
  margin-right: 0.25rem;
}
[dir="rtl"] .me-1{
  margin-left: 0.25rem;
}
[dir="ltr"] .me-1\.5{
  margin-right: 0.375rem;
}
[dir="rtl"] .me-1\.5{
  margin-left: 0.375rem;
}
[dir="ltr"] .me-2{
  margin-right: 0.5rem;
}
[dir="rtl"] .me-2{
  margin-left: 0.5rem;
}
[dir="ltr"] .me-3{
  margin-right: 0.75rem;
}
[dir="rtl"] .me-3{
  margin-left: 0.75rem;
}
[dir="ltr"] .me-4{
  margin-right: 1rem;
}
[dir="rtl"] .me-4{
  margin-left: 1rem;
}
[dir="ltr"] .me-auto{
  margin-right: auto;
}
[dir="rtl"] .me-auto{
  margin-left: auto;
}
.ml-4{
  margin-left: 1rem;
}
.mr-1{
  margin-right: 0.25rem;
}
.mr-2{
  margin-right: 0.5rem;
}
[dir="ltr"] .ms-1{
  margin-left: 0.25rem;
}
[dir="rtl"] .ms-1{
  margin-right: 0.25rem;
}
[dir="ltr"] .ms-2{
  margin-left: 0.5rem;
}
[dir="rtl"] .ms-2{
  margin-right: 0.5rem;
}
[dir="ltr"] .ms-4{
  margin-left: 1rem;
}
[dir="rtl"] .ms-4{
  margin-right: 1rem;
}
[dir="ltr"] .ms-auto{
  margin-left: auto;
}
[dir="rtl"] .ms-auto{
  margin-right: auto;
}
.mt-0{
  margin-top: 0px;
}
.mt-1{
  margin-top: 0.25rem;
}
.mt-10{
  margin-top: 2.5rem;
}
.mt-14{
  margin-top: 3.5rem;
}
.mt-16{
  margin-top: 4rem;
}
.mt-2{
  margin-top: 0.5rem;
}
.mt-2\.5{
  margin-top: 0.625rem;
}
.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;
}
.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 !important;
}
.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 !important;
}
.hidden{
  display: none;
}
.aspect-square{
  aspect-ratio: 1 / 1;
}
.\!h-14{
  height: 3.5rem !important;
}
.\!h-5{
  height: 1.25rem !important;
}
.h-0{
  height: 0px;
}
.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-28{
  height: 7rem;
}
.h-4{
  height: 1rem;
}
.h-40{
  height: 10rem;
}
.h-48{
  height: 12rem;
}
.h-5{
  height: 1.25rem;
}
.h-52{
  height: 13rem;
}
.h-56{
  height: 14rem;
}
.h-6{
  height: 1.5rem;
}
.h-62{
  height: 248px;
}
.h-7{
  height: 1.75rem;
}
.h-72{
  height: 18rem;
}
.h-8{
  height: 2rem;
}
.h-\[1px\]{
  height: 1px;
}
.h-\[34px\]{
  height: 34px;
}
.h-auto{
  height: auto;
}
.h-full{
  height: 100%;
}
.h-max{
  height: -moz-max-content;
  height: max-content;
}
.h-px{
  height: 1px;
}
.max-h-0{
  max-height: 0px;
}
.max-h-116{
  max-height: 464px;
}
.max-h-12{
  max-height: 3rem;
}
.max-h-60{
  max-height: 15rem;
}
.max-h-8{
  max-height: 2rem;
}
.max-h-80{
  max-height: 20rem;
}
.max-h-full{
  max-height: 100%;
}
.min-h-7{
  min-height: 1.75rem;
}
.min-h-\[120px\]{
  min-height: 120px;
}
.min-h-\[2rem\]{
  min-height: 2rem;
}
.min-h-\[34px\]{
  min-height: 34px;
}
.min-h-full{
  min-height: 100%;
}
.\!w-14{
  width: 3.5rem !important;
}
.\!w-5{
  width: 1.25rem !important;
}
.\!w-\[160px\]{
  width: 160px !important;
}
.w-1\/3{
  width: 33.333333%;
}
.w-10{
  width: 2.5rem;
}
.w-11\/12{
  width: 91.666667%;
}
.w-12{
  width: 3rem;
}
.w-14{
  width: 3.5rem;
}
.w-16{
  width: 4rem;
}
.w-2\/3{
  width: 66.666667%;
}
.w-20{
  width: 5rem;
}
.w-24{
  width: 6rem;
}
.w-32{
  width: 8rem;
}
.w-40{
  width: 10rem;
}
.w-56{
  width: 14rem;
}
.w-6{
  width: 1.5rem;
}
.w-7{
  width: 1.75rem;
}
.w-8{
  width: 2rem;
}
.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;
}
.min-w-0{
  min-width: 0px;
}
.min-w-1\/2{
  min-width: 50%;
}
.min-w-3\/4{
  min-width: 75%;
}
.min-w-\[4rem\]{
  min-width: 4rem;
}
.min-w-\[84px\]{
  min-width: 84px;
}
.min-w-full{
  min-width: 100%;
}
.max-w-16{
  max-width: 4rem;
}
.max-w-3\/4{
  max-width: 75%;
}
.max-w-3xl{
  max-width: 48rem;
}
.max-w-\[92\%\]{
  max-width: 92%;
}
.max-w-\[95\%\]{
  max-width: 95%;
}
.max-w-\[calc\(100\%-60px\)\]{
  max-width: calc(100% - 60px);
}
.max-w-full{
  max-width: 100%;
}
.max-w-lg{
  max-width: 32rem;
}
.max-w-xs{
  max-width: 20rem;
}
.flex-1{
  flex: 1 1 0%;
}
.flex-none{
  flex: none;
}
.shrink-0{
  flex-shrink: 0;
}
.flex-grow{
  flex-grow: 1;
}
.grow-0{
  flex-grow: 0;
}
.basis-0{
  flex-basis: 0px;
}
.table-fixed{
  table-layout: fixed;
}
.-translate-x-1\/2{
  --tw-translate-x: -50%;
  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-1\/2{
  --tw-translate-y: -50%;
  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-2{
  --tw-translate-y: -0.5rem;
  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-2\/3{
  --tw-translate-y: -66.666667%;
  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), 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), 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), 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), 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(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-scale-x-100{
  --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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-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(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));
}
.\!transform-none{
  transform: none !important;
}
.cursor-pointer{
  cursor: pointer;
}
.resize{
  resize: both;
}
.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-4{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.flex-row-reverse{
  flex-direction: row-reverse;
}
.flex-col{
  flex-direction: column;
}
.flex-col-reverse{
  flex-direction: column-reverse;
}
.flex-wrap{
  flex-wrap: wrap;
}
.items-start{
  align-items: flex-start;
}
.\!items-center{
  align-items: center !important;
}
.items-center{
  align-items: center;
}
.items-baseline{
  align-items: baseline;
}
.items-stretch{
  align-items: stretch;
}
.justify-start{
  justify-content: flex-start;
}
.justify-end{
  justify-content: flex-end;
}
.\!justify-center{
  justify-content: center !important;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.justify-around{
  justify-content: space-around;
}
.gap-1{
  gap: 0.25rem;
}
.gap-12{
  gap: 3rem;
}
.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-8{
  gap: 2rem;
}
.space-x-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * (1 - var(--tw-space-x-reverse)));
  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 * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * (1 - var(--tw-space-x-reverse)));
  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 * var(--tw-space-x-reverse));
  margin-left: calc(1rem * (1 - var(--tw-space-x-reverse)));
  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 * var(--tw-space-x-reverse));
  margin-left: calc(1.25rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(1.25rem * 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 - var(--tw-space-y-reverse)));
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.625rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.625rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  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 - var(--tw-space-y-reverse)));
  margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
  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 - var(--tw-space-y-reverse)));
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  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 - var(--tw-space-y-reverse)));
  margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse)));
  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 - var(--tw-divide-y-reverse)));
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.overflow-auto{
  overflow: auto;
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-y-auto{
  overflow-y: auto;
}
.text-ellipsis{
  text-overflow: ellipsis;
}
.whitespace-nowrap{
  white-space: nowrap;
}
.break-all{
  word-break: break-all;
}
.\!rounded-3xl{
  border-radius: 1.5rem !important;
}
.\!rounded-md{
  border-radius: 0.375rem !important;
}
.rounded{
  border-radius: 0.25rem;
}
.rounded-3xl{
  border-radius: 1.5rem;
}
.rounded-full{
  border-radius: 9999px;
}
.rounded-lg{
  border-radius: 0.5rem;
}
.rounded-md{
  border-radius: 0.375rem;
}
.rounded-sm{
  border-radius: 0.125rem;
}
.rounded-tiny{
  border-radius: 3px;
}
.rounded-b-md{
  border-bottom-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}
[dir="ltr"] .rounded-e-none{
  border-top-right-radius: 0px;
}
[dir="rtl"] .rounded-e-none{
  border-top-left-radius: 0px;
}
[dir="ltr"] .rounded-e-none{
  border-bottom-right-radius: 0px;
}
[dir="rtl"] .rounded-e-none{
  border-bottom-left-radius: 0px;
}
[dir="ltr"] .rounded-s-none{
  border-top-left-radius: 0px;
}
[dir="rtl"] .rounded-s-none{
  border-top-right-radius: 0px;
}
[dir="ltr"] .rounded-s-none{
  border-bottom-left-radius: 0px;
}
[dir="rtl"] .rounded-s-none{
  border-bottom-right-radius: 0px;
}
.rounded-t-md{
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}
.border{
  border-width: 1px;
}
.border-2{
  border-width: 2px;
}
.border-b{
  border-bottom-width: 1px;
}
[dir="ltr"] .border-e-0{
  border-right-width: 0px;
}
[dir="rtl"] .border-e-0{
  border-left-width: 0px;
}
[dir="ltr"] .border-e-2{
  border-right-width: 2px;
}
[dir="rtl"] .border-e-2{
  border-left-width: 2px;
}
.border-l{
  border-left-width: 1px;
}
.border-t{
  border-top-width: 1px;
}
.border-dotted{
  border-style: dotted;
}
.\!border-hidden{
  border-style: hidden !important;
}
.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-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-primary{
  border-color: #414042;
  border-color: var(--color-primary);
}
.border-transparent{
  border-color: transparent;
}
.border-white{
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, var(--tw-border-opacity, 1));
}
.\!bg-transparent{
  background-color: transparent !important;
}
.bg-\[var\(--dark-bg-main\)\]{
  background-color: var(--dark-bg-main);
}
.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-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-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-200{
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity, 1));
}
.bg-gray-300{
  --tw-bg-opacity: 1;
  background-color: rgba(209, 213, 219, 1);
  background-color: rgba(209, 213, 219, 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-gray-500{
  --tw-bg-opacity: 1;
  background-color: rgba(107, 114, 128, 1);
  background-color: rgba(107, 114, 128, 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-green-500{
  --tw-bg-opacity: 1;
  background-color: rgba(34, 197, 94, 1);
  background-color: rgba(34, 197, 94, var(--tw-bg-opacity, 1));
}
.bg-primary{
  background-color: #414042;
  background-color: var(--color-primary);
}
.bg-red-100{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 226, 226, 1);
  background-color: rgba(254, 226, 226, var(--tw-bg-opacity, 1));
}
.bg-red-500{
  --tw-bg-opacity: 1;
  background-color: rgba(239, 68, 68, 1);
  background-color: rgba(239, 68, 68, var(--tw-bg-opacity, 1));
}
.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-white{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
}
.\!bg-contain{
  background-size: contain !important;
}
.bg-contain{
  background-size: contain;
}
.bg-cover{
  background-size: cover;
}
.bg-fixed{
  background-attachment: fixed;
}
.bg-center{
  background-position: center;
}
.bg-no-repeat{
  background-repeat: no-repeat;
}
.fill-current{
  fill: currentColor;
}
.object-contain{
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}
.object-center{
  -o-object-position: center;
     object-position: center;
}
.\!p-0{
  padding: 0px !important;
}
.p-1{
  padding: 0.25rem;
}
.p-1\.5{
  padding: 0.375rem;
}
.p-10{
  padding: 2.5rem;
}
.p-2{
  padding: 0.5rem;
}
.p-2\.5{
  padding: 0.625rem;
}
.p-3{
  padding: 0.75rem;
}
.p-4{
  padding: 1rem;
}
.p-5{
  padding: 1.25rem;
}
.p-6{
  padding: 1.5rem;
}
.p-8{
  padding: 2rem;
}
.\!px-0{
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.\!px-2{
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
.\!py-1{
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.\!py-1\.5{
  padding-top: 0.375rem !important;
  padding-bottom: 0.375rem !important;
}
.\!py-4{
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.px-1{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2\.5{
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.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;
}
.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-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;
}
.\!pt-1{
  padding-top: 0.25rem !important;
}
.pb-1{
  padding-bottom: 0.25rem;
}
.pb-10{
  padding-bottom: 2.5rem;
}
.pb-2{
  padding-bottom: 0.5rem;
}
.pb-3{
  padding-bottom: 0.75rem;
}
.pb-4{
  padding-bottom: 1rem;
}
.pb-6{
  padding-bottom: 1.5rem;
}
.pb-8{
  padding-bottom: 2rem;
}
[dir="ltr"] .pe-0\.5{
  padding-right: 0.125rem;
}
[dir="rtl"] .pe-0\.5{
  padding-left: 0.125rem;
}
[dir="ltr"] .pe-1{
  padding-right: 0.25rem;
}
[dir="rtl"] .pe-1{
  padding-left: 0.25rem;
}
[dir="ltr"] .pe-10{
  padding-right: 2.5rem;
}
[dir="rtl"] .pe-10{
  padding-left: 2.5rem;
}
[dir="ltr"] .pe-16{
  padding-right: 4rem;
}
[dir="rtl"] .pe-16{
  padding-left: 4rem;
}
[dir="ltr"] .pe-2{
  padding-right: 0.5rem;
}
[dir="rtl"] .pe-2{
  padding-left: 0.5rem;
}
[dir="ltr"] .pe-24{
  padding-right: 6rem;
}
[dir="rtl"] .pe-24{
  padding-left: 6rem;
}
[dir="ltr"] .pe-3{
  padding-right: 0.75rem;
}
[dir="rtl"] .pe-3{
  padding-left: 0.75rem;
}
[dir="ltr"] .pe-4{
  padding-right: 1rem;
}
[dir="rtl"] .pe-4{
  padding-left: 1rem;
}
[dir="ltr"] .pe-8{
  padding-right: 2rem;
}
[dir="rtl"] .pe-8{
  padding-left: 2rem;
}
.pl-5{
  padding-left: 1.25rem;
}
.pr-14{
  padding-right: 3.5rem;
}
[dir="ltr"] .ps-4{
  padding-left: 1rem;
}
[dir="rtl"] .ps-4{
  padding-right: 1rem;
}
.pt-0{
  padding-top: 0px;
}
.pt-1{
  padding-top: 0.25rem;
}
.pt-16{
  padding-top: 4rem;
}
.pt-2\.5{
  padding-top: 0.625rem;
}
.pt-4{
  padding-top: 1rem;
}
.pt-6{
  padding-top: 1.5rem;
}
.pt-8{
  padding-top: 2rem;
}
.text-center{
  text-align: center;
}
.text-justify{
  text-align: justify;
}
[dir="ltr"] .text-start{
  text-align: left;
}
[dir="rtl"] .text-start{
  text-align: right;
}
[dir="ltr"] .text-end{
  text-align: right;
}
[dir="rtl"] .text-end{
  text-align: left;
}
.align-middle{
  vertical-align: middle;
}
.\!font-primary{
  font-family: var(--font-main) !important;
}
.font-primary{
  font-family: var(--font-main);
}
.font-regular{
  font-family: var(--font-secondary);
}
.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-7xl{
  font-size: 4.5rem;
  line-height: 1;
}
.text-\[16px\]{
  font-size: 16px;
}
.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;
}
.text-xxs{
  font-size: 10px;
}
.font-bold{
  font-weight: 700;
}
.font-extrabold{
  font-weight: 800;
}
.font-medium{
  font-weight: 500;
}
.font-normal{
  font-weight: 400;
}
.\!leading-5{
  line-height: 1.25rem !important;
}
.leading-10{
  line-height: 2.5rem;
}
.leading-12{
  line-height: 3rem;
}
.leading-5{
  line-height: 1.25rem;
}
.leading-6{
  line-height: 1.5rem;
}
.leading-7{
  line-height: 1.75rem;
}
.leading-8{
  line-height: 2rem;
}
.leading-none{
  line-height: 1;
}
.leading-normal{
  line-height: 1.5;
}
.leading-tight{
  line-height: 1.25;
}
.\!text-primary{
  color: #414042 !important;
  color: var(--color-primary) !important;
}
.\!text-red-400{
  --tw-text-opacity: 1 !important;
  color: rgba(248, 113, 113, 1) !important;
  color: rgba(248, 113, 113, 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-\[\#f11e1e\]{
  --tw-text-opacity: 1;
  color: rgba(241, 30, 30, 1);
  color: rgba(241, 30, 30, var(--tw-text-opacity, 1));
}
.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-200{
  --tw-text-opacity: 1;
  color: rgba(229, 231, 235, 1);
  color: rgba(229, 231, 235, 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-primary{
  color: #414042;
  color: var(--color-primary);
}
.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;
}
.\!opacity-0{
  opacity: 0 !important;
}
.\!opacity-100{
  opacity: 1 !important;
}
.\!opacity-50{
  opacity: 0.5 !important;
}
.opacity-0{
  opacity: 0;
}
.opacity-10{
  opacity: 0.1;
}
.opacity-100{
  opacity: 1;
}
.opacity-40{
  opacity: 0.4;
}
.opacity-50{
  opacity: 0.5;
}
.opacity-60{
  opacity: 0.6;
}
.opacity-70{
  opacity: 0.7;
}
.opacity-75{
  opacity: 0.75;
}
.opacity-80{
  opacity: 0.8;
}
.opacity-90{
  opacity: 0.9;
}
.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), 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);
}
.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), 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);
}
.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), 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);
}
.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), 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);
}
.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), 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);
}
.outline{
  outline-style: solid;
}
.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);
}
.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  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-shadow{
  transition-property: box-shadow;
  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;
}
.ease-elastic{
  transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
}
.ease-out{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.s-hidden{
  display: none;
}
.index section.s-block.s-hidden{display:none}
.s-has-error{
  --tw-border-opacity: 1;
  border-color: rgba(248, 113, 113, 1);
  border-color: rgba(248, 113, 113, var(--tw-border-opacity, 1));
}
.s-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));
}
.rounded-icon{
  display: flex;
  height: 4rem;
  width: 4rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-size: 1.875rem;
  line-height: 2.25rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.rounded-icon>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.rounded-icon>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.rounded-icon>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.rounded-icon>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.rounded-icon>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.rounded-icon>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.rounded-icon{order:1}.align-start-logo.store-header .container>.rounded-icon>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .min--2 .rounded-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .rounded-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .rounded-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .rounded-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .rounded-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .rounded-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.rounded-icon{justify-content:center}
.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));
  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;
}
.s-product-card-content-footer.form-input button{
  border-radius: 0.375rem;
}
custom-salla-product-card.form-input{border-radius:.25rem}
.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));
}
.form-input:focus:is(.dark *){
  border-color: #414042;
  border-color: var(--color-primary);
}
@media (min-width: 640px){
  .form-input{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.btn{
  display: inline-flex;
  flex: 1 1 0%;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 0.375rem;
  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, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.btn{order:1}}
.s-product-card-content-sub.btn{justify-content:center}
.s-product-card-content-footer.btn button{
  border-radius: 0.375rem;
}
custom-salla-product-card.btn{border-radius:.25rem}
.btn:hover{
  opacity: 0.8;
}
.btn-primary{
  border-width: 1px;
  border-color: #414042;
  border-color: var(--color-primary);
  background-color: #414042;
  background-color: var(--color-primary);
  color: #ff6767;
  color: var(--color-primary-reverse);
}
.btn-outline-primary{
  border-width: 1px;
  border-color: #414042;
  border-color: var(--color-primary);
  color: #414042;
  color: var(--color-primary);
}
.btn-outline-primary:hover{
  background-color: #414042;
  background-color: var(--color-primary);
  color: #ff6767;
  color: var(--color-primary-reverse);
}
.form-label{
  margin-bottom: 0.25rem;
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgba(17, 24, 39, 1);
  color: rgba(17, 24, 39, var(--tw-text-opacity, 1));
}
.spinner-loader.reverse{
  border-right-color: #9f7171 !important;
}
.spinner-loader.reverse{
  background-color: #f98181;
}
.has-error .s-form-label{
  color: #ff443a;
}
.has-error .s-form-control, .has-error .s-tel-input-control, .has-error .s-datetime-picker-input{
  border-color: #ff443a;
  color: #ff443a;
}
.toggle-checkbox .s-toggle-input{
  position: absolute;
  visibility: hidden;
}
.toggle-checkbox .s-toggle-switcher{
  display: inline-block;
  background: #ccc;
  border-radius: 16px;
  width: 40px;
  height: 25px;
  position: relative;
  vertical-align: middle;
  transition: background 0.25s;
}
.toggle-checkbox .s-toggle-switcher:before,.toggle-checkbox .s-toggle-switcher:after{
  content: "";
}
.toggle-checkbox .s-toggle-switcher:before{
  display: block;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.25);
  width: 20px;
  height: 21px;
  position: absolute;
  top: 2.2px;
  left: 1px;
  transition: left 0.25s;
}
.toggle-checkbox .s-toggle-input:checked + div{
  background: #30D158;
}
.toggle-checkbox .s-toggle-input:checked + div:before{
  left: 18px;
}
.s-has-error{
  --tw-border-opacity: 1 !important;
  border-color: rgba(239, 68, 68, 1) !important;
  border-color: rgba(239, 68, 68, var(--tw-border-opacity, 1)) !important;
  --tw-text-opacity: 1 !important;
  color: rgba(239, 68, 68, 1) !important;
  color: rgba(239, 68, 68, var(--tw-text-opacity, 1)) !important;
}
.s-ltr{
  direction: ltr;
}
.s-input{
  -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);
}
.s-input: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: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}
.s-input::-moz-placeholder{
  color: #6b7280;
  opacity: 1;
}
.s-input::placeholder{
  color: #6b7280;
  opacity: 1;
}
.s-input::-webkit-datetime-edit-fields-wrapper{
  padding: 0;
}
.s-input::-webkit-date-and-time-value{
  min-height: 1.5em;
  text-align: inherit;
}
.s-input::-webkit-datetime-edit{
  display: inline-flex;
}
.s-input::-webkit-datetime-edit,.s-input::-webkit-datetime-edit-year-field,.s-input::-webkit-datetime-edit-month-field,.s-input::-webkit-datetime-edit-day-field,.s-input::-webkit-datetime-edit-hour-field,.s-input::-webkit-datetime-edit-minute-field,.s-input::-webkit-datetime-edit-second-field,.s-input::-webkit-datetime-edit-millisecond-field,.s-input::-webkit-datetime-edit-meridiem-field{
  padding-top: 0;
  padding-bottom: 0;
}
.s-input{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  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));
  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;
}
.s-product-card-content-footer.s-input button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-input{border-radius:.25rem}
.s-input:focus{
  border-color: #414042;
  border-color: var(--color-primary);
  --tw-ring-color: transparent;
}
.dark *.s-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));
}
.s-input:focus:is(.dark *){
  border-color: #414042;
  border-color: var(--color-primary);
}
@media (min-width: 640px){
  .s-input{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.s-input{
  height: 2.5rem;
  width: 100%;
  border-radius: 0.375rem;
  --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));
  font-family: var(--font-secondary);
  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;
}
.s-product-card-content-footer.s-input button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-input{border-radius:.25rem}
.dark .s-input{color:var(--dark-text-main);background-color:var(--dark-grey)}
.s-input:focus{
  border-color: #414042;
  border-color: var(--color-primary);
  --tw-ring-color: transparent;
}
.dark *.s-input{
  --tw-border-opacity: 0.2;
}
.s-input:focus:is(.dark *){
  border-color: #414042;
  border-color: var(--color-primary);
}
.s-input{-moz-appearance:none;appearance:none;-webkit-appearance:none}
.s-hidden{
  display: none;
}
.index section.s-block.s-hidden{display:none}
.s-block{
  display: block;
}
.s-form-control{
  display: block;
  width: 100%;
  border-radius: 0.25rem;
  border-width: 1px;
  --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(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
  padding: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgba(17, 24, 39, 1);
  color: rgba(17, 24, 39, var(--tw-text-opacity, 1));
}
.s-form-control:focus{
  border-color: #414042;
  border-color: var(--color-primary);
  --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: var(--tw-ring-offset-shadow), 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));
}
.s-form-label{
  display: block;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgba(17, 24, 39, 1);
  color: rgba(17, 24, 39, var(--tw-text-opacity, 1));
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media (min-width: 640px){
  .s-form-label{
    margin-top: 1px;
  }
}
@media (min-width: 768px){
  .s-form-label{
    margin-bottom: 0px;
  }
}
.is-sticky-product-bar .sticky-product-bar .s-form-label{
  display: none;
}
.index section.s-block.is-sticky-product-bar .sticky-product-bar .s-form-label{display:none}
.s-form-group{
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.s-checkbox{
  cursor: pointer;
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 219, 1);
  border-color: rgba(209, 213, 219, var(--tw-border-opacity, 1));
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  margin: 0;
  width: 18px;
  height: 18px;
  border-width: 1px;
  border-radius: 4px;
  display: grid;
  align-content: center;
  justify-content: center;
  place-content: center;
}
.s-checkbox:before{
  content: ;
  width: 10px;
  height: 10px;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #444;
  background-color: #444;
}
.s-checkbox:checked:before{
  transform: scale(1);
}
.s-checkbox *{pointer-events:none}
.s-checkbox::before{
  --tw-content: '';
  content: var(--tw-content);
}
.s-font-default{
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-main), -apple-system, BlinkMacSystemFont;
}
.s-form-has-error .s-form-label{
  color: #ff443a;
}
.s-form-has-error .s-form-control,.s-form-has-error .s-tel-input-control,.s-form-has-error .s-datetime-picker-input{
  border-color: #ff443a;
  color: #ff443a;
}
.s-verify-codes.s-form-has-error{
  margin-bottom: 0px;
}
.s-form-has-error{
  --tw-border-opacity: 1;
  border-color: rgba(248, 113, 113, 1);
  border-color: rgba(248, 113, 113, var(--tw-border-opacity, 1));
}
.s-form-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));
}
.text-danger{
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, 1);
  color: rgba(239, 68, 68, var(--tw-text-opacity, 1));
}
.s-scrollbar::-webkit-scrollbar{
  width: 5px;
}
.s-scrollbar::-webkit-scrollbar-track{
  background-color: #eee;
}
.s-scrollbar::-webkit-scrollbar-thumb{
  background-color: #414042;
  background-color: var(--color-primary);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.s-toggle{
  cursor: pointer;
  display: inline-block;
}
.s-toggle .s-toggle-input{
  position: absolute;
  visibility: hidden;
}
.s-toggle .s-toggle-label{
  margin-left: 5px;
  position: relative;
  top: 2px;
}
.s-toggle .s-toggle-switcher{
  display: inline-block;
  background: #ccc;
  border-radius: 16px;
  width: 40px;
  height: 25px;
  position: relative;
  vertical-align: middle;
  transition: background 0.25s;
}
.s-toggle .s-toggle-switcher:before,.s-toggle .s-toggle-switcher:after{
  content: "";
}
.s-toggle .s-toggle-switcher:before{
  display: block;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.25);
  width: 20px;
  height: 21px;
  position: absolute;
  top: 2.2px;
  left: 1px;
  transition: left 0.25s;
}
.s-toggle .s-toggle-input:checked + div{
  background: #30D158;
}
.s-toggle .s-toggle-input:checked + div:before{
  left: 18px;
}
.s-add-product-button-with-quick-buy{
  display: flex;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-add-product-button-with-quick-buy>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-add-product-button-with-quick-buy>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-add-product-button-with-quick-buy>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-add-product-button-with-quick-buy>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-add-product-button-with-quick-buy>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-add-product-button-with-quick-buy>.justify-center{order:1}.align-start-logo.store-header .container>.s-add-product-button-with-quick-buy>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 640px){
  .s-add-product-button-with-quick-buy{
    flex-direction: column;
  }
}
.s-add-product-button-with-quick-buy:not(.s-add-product-button-with-sticky-bar){
  flex-direction: column !important;
}
.s-add-product-button-main{
  display: flex;
  width: 66.666667%;
  -moz-column-gap: 0.375rem;
       column-gap: 0.375rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-add-product-button-main>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-add-product-button-main>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-add-product-button-main>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-add-product-button-main>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-add-product-button-main>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-add-product-button-main>.justify-center{order:1}.align-start-logo.store-header .container>.s-add-product-button-main>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 640px){
  .s-add-product-button-main{
    width: 100%;
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
  }
}
.s-add-product-button-with-sticky-bar salla-quick-buy{
  width: 33.333333%;
}
@media (min-width: 640px){
  .s-add-product-button-with-sticky-bar salla-quick-buy{
    width: 100%;
  }
}
.s-add-product-button-with-quick-buy:not(.s-add-product-button-with-sticky-bar) .s-add-product-button-main{
  width: 100%;
}
.s-add-product-button-with-quick-buy:not(.s-add-product-button-with-apple-pay) .s-add-product-button-main{
  width: 100%;
}
.s-add-product-button-main:not(.w-full) > salla-button{
  width: 50% !important;
}
.s-add-product-button-main .s-add-product-button-mini-checkout{
  --salla-fast-checkout-button-border-radius: .75rem;
  width: 50%;
}
.s-add-product-button-with-sticky-bar{
  width: 100% !important;
}
@media (min-width: 640px){
  .s-add-product-button-with-sticky-bar{
    width: auto;
  }
}
.s-add-product-button-with-apple-pay{
  -moz-column-gap: 0.375rem;
       column-gap: 0.375rem;
}
@media (min-width: 640px){
  .s-add-product-button-with-apple-pay{
    -moz-column-gap: normal;
         column-gap: normal;
    -moz-column-gap: initial;
         column-gap: initial;
  }
}
.s-add-product-button-with-apple-pay:not(.s-add-product-button-with-sticky-bar) salla-quick-buy apple-pay-button{
  margin-top: 0.625rem;
}
.s-add-product-button-with-sticky-bar salla-quick-buy .s-quick-buy-button .s-button-text span{
  display: none;
}
.index section.s-block.s-add-product-button-with-sticky-bar salla-quick-buy .s-quick-buy-button .s-button-text span{display:none}
@media (min-width: 768px){
  .s-add-product-button-with-sticky-bar salla-quick-buy .s-quick-buy-button .s-button-text span{
    display: block;
  }
}
.s-add-product-button-mini-checkout-content{
  display: flex;
  flex-shrink: 0;
  align-items: center;
  white-space: nowrap;
  font-size: .8rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-add-product-button-mini-checkout-content>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-add-product-button-mini-checkout-content>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-add-product-button-mini-checkout-content>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-add-product-button-mini-checkout-content>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-add-product-button-mini-checkout-content>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-add-product-button-mini-checkout-content>.justify-center{order:1}.align-start-logo.store-header .container>.s-add-product-button-mini-checkout-content>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 640px){
  .s-add-product-button-mini-checkout-content{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.s-add-product-button-mini-checkout-content:where([dir="rtl"], [dir="rtl"] *){
  flex-direction: row-reverse;
}
.s-add-product-button-mini-checkout-content svg{
  margin-right: 0.375rem;
  height: 1rem;
  width: 1rem;
  fill: currentColor;
}
.s-add-product-button-mini-checkout-content svg:where([dir="rtl"], [dir="rtl"] *){
  margin-right: 0px;
  margin-left: 0.375rem;
}
.s-advertisement-content{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 10px;
  padding-left: 10px;
}
@media (min-width: 1280px){
  .s-advertisement-content{
    max-width: 1280px;
  }
}
.s-advertisement-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .s-advertisement-content>.flex>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .s-advertisement-content>.flex>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .s-advertisement-content>.flex>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .s-advertisement-content>.flex>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .s-advertisement-content>.flex>.justify-start{order:2;justify-content:end;width:auto}[dir="ltr"] .align-start-logo.store-header .container>.s-advertisement-content>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-advertisement-content>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-advertisement-content>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-advertisement-content>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-advertisement-content>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .s-advertisement-content>.flex>.justify-center{order:1}.align-start-logo.store-header .container>.s-advertisement-content>.justify-center{order:1}.align-start-logo.store-header .s-advertisement-content>.flex>.justify-end{order:3;justify-content:start;width:auto}.align-start-logo.store-header .container>.s-advertisement-content>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .padded-squares .s-advertisement-content{
    max-width: 64rem;
  }
}
.full-width .s-advertisement-content,.full-width.s-advertisement-content{max-width:none;max-width:initial;padding:0;padding:initial}
.s-block--banners.no-space .s-advertisement-content>div{gap:initial}
.s-advertisement-content-main{
  flex: 1 1 0%;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
}
.s-advertisement-content-icon{
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  line-height: 1.5rem;
}
.s-advertisement-content-icon:where([dir="ltr"], [dir="ltr"] *){
  margin-right: 0.5rem;
}
.s-advertisement-content-icon:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 0.5rem;
}
.s-advertisement-action{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.s-app-install-alert-wrapper{
  display: none;
  flex-direction: row;
  align-items: center;
  position: fixed;
  left: 0;
  right: 0;
  width: 95%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
  z-index: 100;
  border-radius: 0.375rem;
  padding: 0.75rem;
  gap: 0.5rem;
  background-color: color-mix(in srgb, #414042 15%, white);
  background-color: color-mix(in srgb, var(--color-primary) 15%, white);
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}
.s-app-install-alert-wrapper.open[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));
}
@keyframes slideDownFromTop{
  0%{
    transform: translateY(-100%);
    opacity: 0;
  }
  100%{
    transform: translateY(-0%);
    opacity: 1;
  }
}
.s-app-install-alert-wrapper.open[position=top]{
  animation: slideDownFromTop .6s linear;
  transition-duration: 500ms;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-app-install-alert-wrapper.open[position=top]>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-app-install-alert-wrapper.open[position=top]>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-app-install-alert-wrapper.open[position=top]>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-app-install-alert-wrapper.open[position=top]>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-app-install-alert-wrapper.open[position=top]>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-app-install-alert-wrapper.open[position=top]>.justify-center{order:1}.align-start-logo.store-header .container>.s-app-install-alert-wrapper.open[position=top]>.justify-end{order:3;justify-content:start;width:auto}}
.s-app-install-alert-wrapper:not(.open){
  display: none;
}
.index section.s-block.s-app-install-alert-wrapper:not(.open){display:none}
.s-app-install-alert-content{
  width: 100%;
}
.s-app-install-alert-wrapper[position=top]{
  top: 0px;
}
.s-app-install-alert-wrapper.open[position=bottom]{
  display: flex;
}
@keyframes slideUpFromBottom{
  0%{
    transform: translateY(100%);
    opacity: 0;
  }
  100%{
    transform: translateY(0%);
    opacity: 1;
  }
}
.s-app-install-alert-wrapper.open[position=bottom]{
  animation: slideUpFromBottom .6s linear;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-app-install-alert-wrapper.open[position=bottom]>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-app-install-alert-wrapper.open[position=bottom]>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-app-install-alert-wrapper.open[position=bottom]>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-app-install-alert-wrapper.open[position=bottom]>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-app-install-alert-wrapper.open[position=bottom]>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-app-install-alert-wrapper.open[position=bottom]>.justify-center{order:1}.align-start-logo.store-header .container>.s-app-install-alert-wrapper.open[position=bottom]>.justify-end{order:3;justify-content:start;width:auto}}
.s-app-install-alert-wrapper[position=bottom]{
  bottom: 0px;
}
@keyframes slideUPFromTop{
  0%{
    transform: translateY(-0%);
    opacity: 1;
  }
  100%{
    transform: translateY(-100%);
    opacity: 0;
  }
}
.s-app-install-alert-wrapper[position=top].closing{
  animation: slideUPFromTop .6s linear;
}
@keyframes slideDownFromBottom{
  0%{
    transform: translateY(0%);
    opacity: 1;
  }
  100%{
    transform: translateY(100%);
    opacity: 0;
  }
}
.s-app-install-alert-wrapper[position=bottom].closing{
  animation: slideDownFromBottom .6s linear;
}
.s-app-install-alert-wrapper.closing{
  animation-fill-mode: forwards;
}
.s-app-install-alert-title{
  max-width: 95%;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  color: #414042;
  color: var(--color-primary);
}
.s-app-install-alert-sub-title{
  max-width: 95%;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
}
.s-app-install-alert-cta{
  color: #414042;
  color: var(--color-primary);
  text-decoration-line: underline;
}
.s-app-install-alert-cancel-button{
  position: absolute;
  top: 0.5rem;
}
input[type=radio].sr-only div.s-app-install-alert-cancel-button{transition:all .3s}
input[type=radio].sr-only:checked~div.s-app-install-alert-cancel-button{border-color:var(--color-main)}
.s-app-install-alert-cancel-button:where([dir="ltr"], [dir="ltr"] *){
  right: 0.75rem;
}
.s-app-install-alert-cancel-button:where([dir="rtl"], [dir="rtl"] *){
  left: 0.75rem;
}
.s-apps-icons-list{
  display: flex;
  gap: 1rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-apps-icons-list>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-apps-icons-list>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-apps-icons-list>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-apps-icons-list>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-apps-icons-list>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-apps-icons-list>.justify-center{order:1}.align-start-logo.store-header .container>.s-apps-icons-list>.justify-end{order:3;justify-content:start;width:auto}}
.s-apps-icons-list.vertical{
  flex-direction: column;
}
.s-apps-icons-item{
  line-height: 1;
}
.s-apps-icons-item:hover{
  color: #414042;
  color: var(--color-primary);
}
.s-booking-field-main{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-booking-field-main>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-booking-field-main>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-booking-field-main>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-booking-field-main>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-booking-field-main>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-booking-field-main>.justify-center{order:1}.align-start-logo.store-header .container>.s-booking-field-main>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 640px){
  .s-booking-field-main{
    justify-content: flex-end;
  }
}
.s-booking-field-price{
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-booking-field-price>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-booking-field-price>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-booking-field-price>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-booking-field-price>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-booking-field-price>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-booking-field-price>.justify-center{order:1}.align-start-logo.store-header .container>.s-booking-field-price>.justify-end{order:3;justify-content:start;width:auto}}
.s-booking-field-book-now-content{
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-booking-field-book-now-content>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-booking-field-book-now-content>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-booking-field-book-now-content>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-booking-field-book-now-content>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-booking-field-book-now-content>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-booking-field-book-now-content>.justify-center{order:1}.align-start-logo.store-header .container>.s-booking-field-book-now-content>.justify-end{order:3;justify-content:start;width:auto}}
.s-booking-field-book-now-content span svg{
  height: 1rem;
  width: 1rem;
}
.s-booking-field-modal iframe{
  width: 100%;
  transition-property: height;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.s-booking-field-modal .s-modal-body{
  overflow: hidden;
  padding: 1.25rem;
}
.s-booking-field-modal .s-modal-title{
  display: flex;
  justify-content: flex-start;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-booking-field-modal .s-modal-title>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-booking-field-modal .s-modal-title>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-booking-field-modal .s-modal-title>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-booking-field-modal .s-modal-title>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-booking-field-modal .s-modal-title>.justify-start{order:2;justify-content:end;width:auto}[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-booking-field-modal .s-modal-title{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-booking-field-modal .s-modal-title{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-booking-field-modal .s-modal-title{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-booking-field-modal .s-modal-title{margin-right:auto;
  }.align-start-logo.store-header .container>.flex>.s-booking-field-modal .s-modal-title{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-booking-field-modal .s-modal-title>.justify-center{order:1}.align-start-logo.store-header .container>.s-booking-field-modal .s-modal-title>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-starting-price.s-booking-field-modal .s-modal-title{justify-content:start}
.s-booking-field-reservations{
  margin-top: 0.625rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-booking-field-reservations>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-booking-field-reservations>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-booking-field-reservations>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-booking-field-reservations>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-booking-field-reservations>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-booking-field-reservations>.justify-center{order:1}.align-start-logo.store-header .container>.s-booking-field-reservations>.justify-end{order:3;justify-content:start;width:auto}}
.s-booking-field-reservations-item{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-radius: 4px;
  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.625rem;
  padding-right: 0.625rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.75rem;
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, 1);
  color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-booking-field-reservations-item>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-booking-field-reservations-item>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-booking-field-reservations-item>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-booking-field-reservations-item>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-booking-field-reservations-item>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-booking-field-reservations-item>.justify-center{order:1}.align-start-logo.store-header .container>.s-booking-field-reservations-item>.justify-end{order:3;justify-content:start;width:auto}}
.s-booking-field-reservations-item > span{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-booking-field-reservations-item > span>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-booking-field-reservations-item > span>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-booking-field-reservations-item > span>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-booking-field-reservations-item > span>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-booking-field-reservations-item > span>.justify-start{order:2;justify-content:end;width:auto}[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-booking-field-reservations-item > span{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-booking-field-reservations-item > span{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-booking-field-reservations-item > span{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-booking-field-reservations-item > span{margin-right:auto;
  }.align-start-logo.store-header .container>.flex>.s-booking-field-reservations-item > span{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-booking-field-reservations-item > span>.justify-center{order:1}.align-start-logo.store-header .container>.s-booking-field-reservations-item > span>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-starting-price.s-booking-field-reservations-item > span{justify-content:start}
.s-booking-field-reservations-time{
  unicode-bidi: plaintext;
}
.s-booking-field-reservations-has-time{
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, 1);
  border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
}
.s-booking-field-reservations-has-time:where([dir="ltr"], [dir="ltr"] *){
  margin-right: 1rem;
  border-right-width: 1px;
  padding-right: 1rem;
}
.s-booking-field-reservations-has-time:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 1rem;
  border-left-width: 1px;
  padding-left: 1rem;
}
.s-booking-field-reservations-icon:where([dir="ltr"], [dir="ltr"] *){
  margin-right: 0.5rem;
}
.s-booking-field-reservations-icon:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 0.5rem;
}
.s-booking-field-reservations-icon svg{
  height: 0.75rem;
  width: 0.75rem;
  fill: #1f2937;
}
.s-bottom-alert-wrapper{
  position: fixed;
  bottom: 0px;
  z-index: 50;
  display: flex;
  min-height: 4rem;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #414042;
  background-color: var(--color-primary);
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-bottom-alert-wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-bottom-alert-wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-bottom-alert-wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-bottom-alert-wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-bottom-alert-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-bottom-alert-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-bottom-alert-wrapper{order:1}.align-start-logo.store-header .container>.s-bottom-alert-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-bottom-alert-wrapper{justify-content:center}
.s-bottom-alert-icon svg{
  height: 1rem;
  width: 1rem;
  fill: #ff6767;
  fill: var(--color-primary-reverse);
}
.s-bottom-alert-message{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  color: #ff6767;
  color: var(--color-primary-reverse);
}
.s-bottom-alert-message-highlight{
  cursor: default;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
}
.s-bottom-alert-message-splitter{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.s-bottom-alert-message-link{
  cursor: pointer;
  text-decoration-line: underline;
}
.s-bottom-alert-message-link *{pointer-events:none}
.s-bottom-alert-content{
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-bottom-alert-content>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-bottom-alert-content>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-bottom-alert-content>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-bottom-alert-content>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-bottom-alert-content>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-bottom-alert-content>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-bottom-alert-content{order:1}.align-start-logo.store-header .container>.s-bottom-alert-content>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-bottom-alert-content{justify-content:center}
@media (min-width: 768px){
  .s-bottom-alert-content{
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.s-bottom-alert-action button{
  background-color: #ff6767;
  background-color: var(--color-primary-reverse);
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #414042;
  color: var(--color-primary);
}
.s-bottom-alert-modal .s-modal-body{
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.s-bottom-alert-modal-cover img{
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.s-bottom-alert-modal-inner{
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding-left: 1rem;
  padding-right: 1rem;
}
.s-bottom-alert-modal-content-title{
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 500;
}
.s-bottom-alert-modal-content-extra-padding{
  padding-bottom: 100px;
}
.s-bottom-alert-modal-content hr{
  margin-top: 1rem;
}
.s-bottom-alert-modal-content-screenshots{
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.s-bottom-alert-modal-content-screenshot.swiper-slide{
  height: 200px !important;
  width: 370px !important;
}
.s-bottom-alert-modal-content-screenshot img{
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.s-bottom-alert-modal-content-footer button .s-button-text{
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-bottom-alert-modal-content-footer button .s-button-text>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-bottom-alert-modal-content-footer button .s-button-text>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-bottom-alert-modal-content-footer button .s-button-text>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-bottom-alert-modal-content-footer button .s-button-text>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-bottom-alert-modal-content-footer button .s-button-text>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-bottom-alert-modal-content-footer button .s-button-text>.justify-center{order:1}.align-start-logo.store-header .container>.s-bottom-alert-modal-content-footer button .s-button-text>.justify-end{order:3;justify-content:start;width:auto}}
.s-bottom-alert-modal-content-footer{
  position: fixed;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 2;
  width: 100%;
  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));
  --tw-bg-opacity: 1;
  background-color: rgba(252, 252, 252, 1);
  background-color: rgba(252, 252, 252, var(--tw-bg-opacity, 1));
  padding: 0.625rem;
}
.s-bottom-alert-modal-price-wrapper{
  margin-bottom: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  line-height: 1.5rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-bottom-alert-modal-price-wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-bottom-alert-modal-price-wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-bottom-alert-modal-price-wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-bottom-alert-modal-price-wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-bottom-alert-modal-price-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-bottom-alert-modal-price-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.s-bottom-alert-modal-price-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
.s-bottom-alert-modal-price-wrapper-amount{
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
}
.s-breadcrumb-wrapper{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-breadcrumb-wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-breadcrumb-wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-breadcrumb-wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-breadcrumb-wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-breadcrumb-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-breadcrumb-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.s-breadcrumb-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
.s-breadcrumb-item{
  display: inline-block;
}
.s-breadcrumb-dark{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.s-breadcrumb-dark a{
  --tw-text-opacity: 1 !important;
  color: rgba(255, 255, 255, 1) !important;
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1)) !important;
}
.s-breadcrumb-dark svg{
  fill: #ff6767;
  fill: var(--color-primary-reverse);
  opacity: 0.7;
}
.s-breadcrumb-primary-reverse a{
  color: #ff6767;
  color: var(--color-primary-reverse);
}
.s-breadcrumb-primary-reverse a:hover{
  opacity: 0.8;
}
.s-breadcrumb-primary-reverse li{
  color: #ff6767;
  color: var(--color-primary-reverse);
  opacity: 0.8;
}
.s-breadcrumb-primary-reverse svg{
  fill: #ff6767;
  fill: var(--color-primary-reverse);
  opacity: 0.7;
}
.s-breadcrumb-arrow{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.s-breadcrumb-arrow svg{
  height: 0.875rem;
  width: 0.875rem;
}
.s-button-wrap{
  pointer-events: none;
}
.s-button-wrap[width='wide']{
  width: 100%;
}
.s-button-wrap[type='submit']{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.s-button-wrap[type='button']{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.s-button-wrap[type='reset']{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.s-button-wrap[loading] .s-button-loader-center .s-button-text{
  opacity: 0;
}
.s-button-element:not(:disabled):not([loading]){
  pointer-events: auto;
}
.s-button-btn{
  position: relative;
  display: inline-flex;
  flex: 1 1 0%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 0.25rem;
  border-style: solid;
  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, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.s-button-btn{order:1}}
.s-product-card-content-sub.s-button-btn{justify-content:center}
.s-button-btn:hover{
  opacity: 0.8;
}
.s-button-wrap svg{
  height: 1.25rem;
  width: 1.25rem;
  fill: currentColor;
}
.s-button-icon{
  border-radius: 9999px !important;
  padding: 0px !important;
  line-height: 1 !important;
}
.s-button-icon{
  position: relative;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.s-button-icon{order:1}}
.s-product-card-content-sub.s-button-icon{justify-content:center}
.s-button-icon .s-button-text{
  display: flex;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-button-icon .s-button-text>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-button-icon .s-button-text>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-button-icon .s-button-text>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-button-icon .s-button-text>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-button-icon .s-button-text>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-button-icon .s-button-text>.justify-center{order:1}.align-start-logo.store-header .container>.s-button-icon .s-button-text>.justify-end{order:3;justify-content:start;width:auto}}
.s-button-icon.s-button-large{
  height: 3.5rem;
  width: 3.5rem;
}
.s-button-icon.s-button-large svg{
  height: 2rem;
  width: 2rem;
}
.s-button-icon.s-button-small{
  height: 1.5rem;
  width: 1.5rem;
}
.s-button-icon.s-button-small svg{
  height: 0.875rem;
  width: 0.875rem;
}
.s-button-icon.s-button-small .s-button-loader:before{
  height: 0.875rem;
  width: 0.875rem;
}
.s-button-link{
  fill: #414042;
  fill: var(--color-primary);
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  color: #414042;
  color: var(--color-primary);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.s-button-link:hover{
  opacity: 0.7;
}
.s-button-disabled{
  opacity: 0.5;
}
.s-button-fill-none{
  border-width: 0px !important;
  background-color: transparent !important;
}
.s-button-outline{
  border-width: 1px;
  border-color: currentColor;
}
.s-button-outline:hover{
  border-color: transparent;
}
.s-button-outline .s-button-loader:before{
  border-top-color: currentColor;
  border-left-color: currentColor;
}
.s-button-solid .s-button-loader:before{
  border-top-color: rgba(255, 255, 255, 1);
  border-top-color: rgba(255, 255, 255, var(--tw-border-opacity, 1));
  --tw-border-opacity: 1;
  border-right-color: rgba(255, 255, 255, 1);
  border-right-color: rgba(255, 255, 255, var(--tw-border-opacity, 1));
  border-bottom-color: rgba(255, 255, 255, 0.2);
  border-left-color: rgba(255, 255, 255, 0.2);
}
.s-button-primary{
  border-width: 1px;
  border-color: #414042;
  border-color: var(--color-primary);
  background-color: #414042;
  background-color: var(--color-primary);
  color: #ff6767;
  color: var(--color-primary-reverse);
}
.s-button-primary:hover{
  background-color: var(--color-primary-dark);
}
.s-button-success{
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(34, 197, 94, 1);
  border-color: rgba(34, 197, 94, var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgba(34, 197, 94, 1);
  background-color: rgba(34, 197, 94, var(--tw-bg-opacity, 1));
  fill: #fff;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.s-button-success:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(22, 163, 74, 1);
  background-color: rgba(22, 163, 74, var(--tw-bg-opacity, 1));
}
.s-button-danger{
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(248, 113, 113, 1);
  border-color: rgba(248, 113, 113, var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgba(248, 113, 113, 1);
  background-color: rgba(248, 113, 113, var(--tw-bg-opacity, 1));
  fill: #fff;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.s-button-danger:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(239, 68, 68, 1);
  background-color: rgba(239, 68, 68, var(--tw-bg-opacity, 1));
}
.s-button-warning{
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(251, 191, 36, 1);
  border-color: rgba(251, 191, 36, var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgba(251, 191, 36, 1);
  background-color: rgba(251, 191, 36, var(--tw-bg-opacity, 1));
  fill: #fff;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.s-button-warning:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(245, 158, 11, 1);
  background-color: rgba(245, 158, 11, var(--tw-bg-opacity, 1));
}
.s-button-gray{
  border-width: 1px;
  --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(156, 163, 175, 1);
  background-color: rgba(156, 163, 175, var(--tw-bg-opacity, 1));
  fill: #fff;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.s-button-gray:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(107, 114, 128, 1);
  background-color: rgba(107, 114, 128, var(--tw-bg-opacity, 1));
}
.s-button-dark{
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(55, 65, 81, 1);
  border-color: rgba(55, 65, 81, var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgba(55, 65, 81, 1);
  background-color: rgba(55, 65, 81, var(--tw-bg-opacity, 1));
  fill: #fff;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.s-button-dark:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(31, 41, 55, 1);
  background-color: rgba(31, 41, 55, var(--tw-bg-opacity, 1));
}
.s-button-light{
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(249, 250, 251, 1);
  border-color: rgba(249, 250, 251, 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));
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
}
.s-button-light:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, 1);
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity, 1));
}
.s-button-primary-outline{
  fill: #414042;
  fill: var(--color-primary);
  color: #414042;
  color: var(--color-primary);
}
.s-button-primary-outline:hover{
  background-color: #414042;
  background-color: var(--color-primary);
  fill: #ff6767;
  fill: var(--color-primary-reverse);
  color: #ff6767;
  color: var(--color-primary-reverse);
}
.s-button-success-outline{
  fill: #22c55e;
  --tw-text-opacity: 1;
  color: rgba(34, 197, 94, 1);
  color: rgba(34, 197, 94, var(--tw-text-opacity, 1));
}
.s-button-success-outline:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(34, 197, 94, 1);
  background-color: rgba(34, 197, 94, var(--tw-bg-opacity, 1));
  fill: #fff;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.s-button-danger-outline{
  fill: #f87171;
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, 1);
  color: rgba(248, 113, 113, var(--tw-text-opacity, 1));
}
.s-button-danger-outline:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(248, 113, 113, 1);
  background-color: rgba(248, 113, 113, var(--tw-bg-opacity, 1));
  fill: #fff;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.s-button-warning-outline{
  fill: #fbbf24;
  --tw-text-opacity: 1;
  color: rgba(251, 191, 36, 1);
  color: rgba(251, 191, 36, var(--tw-text-opacity, 1));
}
.s-button-warning-outline:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(251, 191, 36, 1);
  background-color: rgba(251, 191, 36, var(--tw-bg-opacity, 1));
  fill: #fff;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.s-button-gray-outline{
  fill: #9ca3af;
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
}
.s-button-gray-outline:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(156, 163, 175, 1);
  background-color: rgba(156, 163, 175, var(--tw-bg-opacity, 1));
  fill: #fff;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.s-button-dark-outline{
  fill: #374151;
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, 1);
  color: rgba(55, 65, 81, var(--tw-text-opacity, 1));
}
.s-button-dark-outline:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(55, 65, 81, 1);
  background-color: rgba(55, 65, 81, var(--tw-bg-opacity, 1));
  fill: #fff;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.s-button-light-outline{
  --tw-border-opacity: 1 !important;
  border-color: rgba(229, 231, 235, 1) !important;
  border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1)) !important;
}
.s-button-light-outline{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
  fill: #6b7280;
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, 1);
  color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}
.s-button-light-outline:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(229, 231, 235, 1) !important;
  border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1)) !important;
}
.s-button-primary-link{
  fill: #414042;
  fill: var(--color-primary);
  color: #414042;
  color: var(--color-primary);
}
.s-button-success-link{
  fill: #22c55e;
  --tw-text-opacity: 1;
  color: rgba(34, 197, 94, 1);
  color: rgba(34, 197, 94, var(--tw-text-opacity, 1));
}
.s-button-danger-link{
  fill: #f87171;
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, 1);
  color: rgba(248, 113, 113, var(--tw-text-opacity, 1));
}
.s-button-warning-link{
  fill: #fbbf24;
  --tw-text-opacity: 1;
  color: rgba(251, 191, 36, 1);
  color: rgba(251, 191, 36, var(--tw-text-opacity, 1));
}
.s-button-gray-link{
  fill: #9ca3af;
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
}
.s-button-dark-link{
  fill: #374151;
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, 1);
  color: rgba(55, 65, 81, var(--tw-text-opacity, 1));
}
.s-button-light-link{
  fill: #6b7280;
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, 1);
  color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}
.s-button-small{
  border-radius: 0.125rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 0.375rem;
  padding-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
}
.s-product-card-content-footer.s-button-small button{
  border-radius: 0.125rem;
}
custom-salla-product-card.s-button-small{border-radius:.125rem}
.s-button-large{
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 1rem;
  padding-top: 1rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.s-button-wide{
  width: 100%;
}
.s-button-text{
  pointer-events: none;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.s-button-loader{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-button-loader>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-button-loader>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-button-loader>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-button-loader>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-button-loader>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-button-loader>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-button-loader{order:1}.align-start-logo.store-header .container>.s-button-loader>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-button-loader{justify-content:center}
.s-button-loader::before{
  display: inline-block;
  height: 1rem;
  content: var(--tw-content);
  width: 1rem;
}
@keyframes spin{
  to{
    content: var(--tw-content);
    transform: rotate(360deg);
  }
}
.s-button-loader::before{
  animation: spin 1s linear infinite;
  border-radius: 9999px;
  border-width: 2px;
  border-style: solid;
  border-top-color: #414042;
  border-top-color: var(--color-primary);
  border-left-color: #414042;
  border-left-color: var(--color-primary);
  border-bottom-color: rgba(243, 244, 246, 1);
  border-bottom-color: rgba(243, 244, 246, var(--tw-border-opacity, 1));
  --tw-border-opacity: 1;
  border-right-color: rgba(243, 244, 246, 1);
  border-right-color: rgba(243, 244, 246, var(--tw-border-opacity, 1));
  --tw-content: '';
  content: var(--tw-content);
}
.s-button-loader-after .s-button-loader{
  flex-direction: row;
}
.s-button-loader-start.s-button-element:where([dir="ltr"], [dir="ltr"] *){
  padding-right: 2rem;
  padding-left: 2.5rem;
}
.s-button-loader-start.s-button-element:where([dir="rtl"], [dir="rtl"] *){
  padding-left: 2rem;
  padding-right: 2.5rem;
}
.s-button-loader-start .s-button-loader{
  position: absolute;
}
input[type=radio].sr-only div.s-button-loader-start .s-button-loader{transition:all .3s}
input[type=radio].sr-only:checked~div.s-button-loader-start .s-button-loader{border-color:var(--color-main)}
.s-button-loader-start .s-button-loader:where([dir="ltr"], [dir="ltr"] *){
  left: 0.5rem;
}
.s-button-loader-start .s-button-loader:where([dir="rtl"], [dir="rtl"] *){
  right: 0.5rem;
}
.s-button-loader-end.s-button-element:where([dir="ltr"], [dir="ltr"] *){
  padding-left: 2rem;
  padding-right: 2.5rem;
}
.s-button-loader-end.s-button-element:where([dir="rtl"], [dir="rtl"] *){
  padding-right: 2rem;
  padding-left: 2.5rem;
}
.s-button-loader-end .s-button-loader{
  position: absolute;
}
input[type=radio].sr-only div.s-button-loader-end .s-button-loader{transition:all .3s}
input[type=radio].sr-only:checked~div.s-button-loader-end .s-button-loader{border-color:var(--color-main)}
.s-button-loader-end .s-button-loader:where([dir="ltr"], [dir="ltr"] *){
  right: 0.5rem;
}
.s-button-loader-end .s-button-loader:where([dir="rtl"], [dir="rtl"] *){
  left: 0.5rem;
}
.s-button-loader-center .s-button-loader{
  margin: 0px !important;
}
.s-button-loader-center .s-button-loader{
  position: absolute;
  top: 50%;
  left: 50%;
  --tw-translate-y: -50%;
  --tw-translate-x: -50%;
  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));
}
input[type=radio].sr-only div.s-button-loader-center .s-button-loader{transition:all .3s}
input[type=radio].sr-only:checked~div.s-button-loader-center .s-button-loader{border-color:var(--color-main)}
.s-cart-item-offers-box{
  margin-bottom: 0.75rem;
}
.s-cart-item-offers-container{
  margin-top: 1.25rem;
}
.s-cart-item-offers-paid-free{
  margin-bottom: 0.75rem;
}
.s-cart-item-offers-paid-free > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.s-cart-item-offers-paid-free{
  font-weight: 500;
}
[dir="ltr"] .s-cart-item-offers-line{
  text-align: left;
}
[dir="rtl"] .s-cart-item-offers-line{
  text-align: right;
}
[dir="rtl"] .s-cart-item-offers-line{
  text-align: right;
}
[dir="ltr"] .s-cart-item-offers-line{
  text-align: left;
}
.s-cart-item-offers-regular-price{
  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));
  text-decoration-line: line-through;
}
.s-cart-item-offers-free-label{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgba(153, 27, 27, 1);
  color: rgba(153, 27, 27, var(--tw-text-opacity, 1));
}
.s-cart-item-offers-details{
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  --tw-text-opacity: 1;
  color: rgba(22, 163, 74, 1);
  color: rgba(22, 163, 74, var(--tw-text-opacity, 1));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-cart-item-offers-details>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-cart-item-offers-details>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-cart-item-offers-details>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-cart-item-offers-details>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-cart-item-offers-details>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-cart-item-offers-details>.justify-center{order:1}.align-start-logo.store-header .container>.s-cart-item-offers-details>.justify-end{order:3;justify-content:start;width:auto}}
.s-cart-item-offers-icon{
  --tw-translate-y: -3px;
  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));
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgba(22, 163, 74, 1);
  color: rgba(22, 163, 74, var(--tw-text-opacity, 1));
}
.s-cart-item-offers-icon svg{
  width: 18px;
  fill: currentColor;
}
.s-cart-item-offers-title{
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.s-cart-item-offers-message{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.s-cart-item-offers-discount{
  margin-top: 0px;
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
}
.s-cart-item-offers-show-more-btn{
  justify-content: flex-start !important;
  background-color: transparent !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.s-cart-item-offers-show-more-btn{
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-cart-item-offers-show-more-btn>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-cart-item-offers-show-more-btn>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-cart-item-offers-show-more-btn>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-cart-item-offers-show-more-btn>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-cart-item-offers-show-more-btn>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-cart-item-offers-show-more-btn>.justify-center{order:1}.align-start-logo.store-header .container>.s-cart-item-offers-show-more-btn>.justify-end{order:3;justify-content:start;width:auto}}
.s-cart-item-offers-show-more-btn:hover{
  --tw-text-opacity: 1;
  color: rgba(29, 31, 31, 1);
  color: rgba(29, 31, 31, var(--tw-text-opacity, 1));
}
.s-cart-item-offers-arrow-icon{
  margin-left: 0.125rem;
  margin-right: 0.125rem;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.s-cart-item-offers-arrow-open{
  --tw-rotate: -180deg;
  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-cart-item-offers-show-more-btn svg{
  width: 18px;
}
.s-cart-item-offers-show-more-label{
  display: flex;
  align-items: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-cart-item-offers-show-more-label>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-cart-item-offers-show-more-label>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-cart-item-offers-show-more-label>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-cart-item-offers-show-more-label>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-cart-item-offers-show-more-label>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-cart-item-offers-show-more-label>.justify-center{order:1}.align-start-logo.store-header .container>.s-cart-item-offers-show-more-label>.justify-end{order:3;justify-content:start;width:auto}}
.s-cart-item-offers-collapsed{
  margin-top: 0.5rem;
}
.s-cart-summary-wrapper{
  text-decoration: none;
  color: #7c8082;
  color: var(--color-text);
  transition: all .5s cubic-bezier(0.2, 1, 0.3, 1);
  align-items: center;
  font-weight: bolder;
  position: relative;
  display: inline-flex;
}
.s-cart-thumb{
  position: fixed;
  transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
}
.s-cart-summary-icon svg{
  height: 1.25rem;
  width: 1.25rem;
  fill: #7c8082;
  fill: var(--color-text);
}
.s-cart-summary-count{
  position: absolute;
  top: -8px;
  left: -15px;
  display: inline-flex;
  height: 1.25rem;
  width: 1.25rem;
  align-items: center;
  justify-content: center;
  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: 0.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
  --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-cart-summary-count{transition:all .3s}
input[type=radio].sr-only:checked~div.s-cart-summary-count{border-color:var(--color-main)}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.s-cart-summary-count{order:1}}
@media (min-width: 768px){
  .min--2 .s-cart-summary-count{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-cart-summary-count{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-cart-summary-count{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-cart-summary-count{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-cart-summary-count{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-cart-summary-count{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-cart-summary-count{justify-content:center}
.s-cart-summary-count:where([dir="rtl"], [dir="rtl"] *){
  left: auto;
  left: initial;
  right: -15px;
}
.s-color-picker-main{
  margin: 0.25rem;
  display: inline-block;
}
.s-color-picker-main .picker_wrapper{
  margin: 0px !important;
  --tw-shadow: 0 0 rgba(0,0,0,0) !important;
  --tw-shadow-colored: 0 0 rgba(0,0,0,0) !important;
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow) !important;
  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) !important;
}
.s-color-picker-main .picker_arrow{
  display: none;
}
.index section.s-block.s-color-picker-main .picker_arrow{display:none}
.s-color-picker-widget{
  display: flex;
  width: auto;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.25rem;
  border-width: 1px;
  --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(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
  padding: 0.25rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-color-picker-widget>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-color-picker-widget>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-color-picker-widget>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-color-picker-widget>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-color-picker-widget>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-color-picker-widget>.justify-center{order:1}.align-start-logo.store-header .container>.s-color-picker-widget>.justify-end{order:3;justify-content:start;width:auto}}
.s-color-picker-widget svg{
  height: 1.25rem;
  width: 1.25rem;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
.s-color-picker-widget span{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.s-color-picker-widget-canvas{
  height: 2rem;
  width: 2rem;
}
.s-comment-form-wrapper{
  display: flex;
  align-items: flex-start;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-comment-form-wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comment-form-wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-comment-form-wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comment-form-wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-comment-form-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-comment-form-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.s-comment-form-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
.s-comment-form-input{
  height: 6rem;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.25rem;
  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-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --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), 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);
  outline: 2px solid transparent;
  outline-offset: 2px;
  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;
}
.store-header.z-3 .s-comment-form-input:not(.fixed-pinned) .inner{background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;background:initial}
.s-comment-form-input:focus{
  border-color: #414042;
  border-color: var(--color-primary);
  --tw-ring-offset-width: 0px;
}
.dark *.s-comment-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));
}
.s-comment-form-action{
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-comment-form-action>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comment-form-action>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-comment-form-action>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comment-form-action>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-comment-form-action>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-comment-form-action>.justify-center{order:1}.align-start-logo.store-header .container>.s-comment-form-action>.justify-end{order:3;justify-content:start;width:auto}.align-start-logo.store-header .container>.flex>.s-comment-form-action{order:3;justify-content:start;width:auto}}
.s-comment-form-avatar{
  margin-right: 1.25rem;
  height: 4rem;
  width: 4rem;
  flex-shrink: 0;
  border-radius: 9999px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px){
  .min--2 .s-comment-form-avatar{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-comment-form-avatar{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-comment-form-avatar{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-comment-form-avatar{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-comment-form-avatar{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-comment-form-avatar{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-comment-form-avatar:where([dir="rtl"], [dir="rtl"] *){
  margin-right: 0px;
  margin-left: 1.25rem;
}
.s-comment-form-content{
  width: 100%;
}
.s-comment-form-action salla-button{
  width: 100%;
}
@media (min-width: 768px){
  .s-comment-form-action salla-button{
    width: auto;
  }
}
.s-comment-form-action salla-button button{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.s-comments-page-container{
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-left: 0px;
  padding-right: 0px;
}
.s-comments-container{
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.s-comments-title{
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
}
@media (min-width: 640px){
  .s-comments-title{
    margin-bottom: 1.25rem;
  }
}
.s-comments-count-label{
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, 1);
  color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}
.s-comments-testimonials .s-comments-count-label{
  margin-bottom: 2rem;
}
.s-comments-item-wrapper{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.s-comments-item-inner{
  display: flex;
}
.s-comments-item-inner > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-comments-item-inner>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-item-inner>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-comments-item-inner>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-item-inner>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-comments-item-inner>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-comments-item-inner>.justify-center{order:1}.align-start-logo.store-header .container>.s-comments-item-inner>.justify-end{order:3;justify-content:start;width:auto}}
.s-comments-item-inner:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 1;
}
.s-comments-item{
  margin-bottom: 2rem;
  display: block;
  border-bottom-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-bottom: 2rem;
}
.s-comments-item:last-child{
  border-width: 0px;
  padding-bottom: 0px;
}
.s-comments-item-admin-wrapper{
  margin-top: 2rem;
  display: flex;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-comments-item-admin-wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-item-admin-wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-comments-item-admin-wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-item-admin-wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-comments-item-admin-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-comments-item-admin-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.s-comments-item-admin-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
.s-comments-item-admin-wrapper:where([dir="ltr"], [dir="ltr"] *){
  padding-left: 2rem;
}
@media (min-width: 768px){
  .s-comments-item-admin-wrapper:where([dir="ltr"], [dir="ltr"] *){
    padding-left: 4rem;
  }
}
.s-comments-item-admin-wrapper:where([dir="rtl"], [dir="rtl"] *){
  padding-right: 2rem;
}
@media (min-width: 768px){
  .s-comments-item-admin-wrapper:where([dir="rtl"], [dir="rtl"] *){
    padding-right: 4rem;
  }
}
.s-comments-item-avatar{
  flex: none;
}
.s-comments-item-avatar-img{
  height: 2.5rem;
  width: 2.5rem;
  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));
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px){
  .min--2 .s-comments-item-avatar-img{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-comments-item-avatar-img{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-comments-item-avatar-img{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-comments-item-avatar-img{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-comments-item-avatar-img{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-comments-item-avatar-img{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-comments-item-timestamp{
  display: flex;
  align-items: center;
  gap: 0.375rem;
  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));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-comments-item-timestamp>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-item-timestamp>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-comments-item-timestamp>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-item-timestamp>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-comments-item-timestamp>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-comments-item-timestamp>.justify-center{order:1}.align-start-logo.store-header .container>.s-comments-item-timestamp>.justify-end{order:3;justify-content:start;width:auto}}
.s-comments-item-time{
  display: block;
  opacity: 0;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.s-comments-item-timestamp:hover span{
  opacity: 1;
}
.s-comments-item-pending-text{
  margin-top: 0.5rem;
  display: inline-block;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity, 1));
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
@media (min-width: 768px){
  .min--2 .s-comments-item-pending-text{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-comments-item-pending-text{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-comments-item-pending-text{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-comments-item-pending-text{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-comments-item-pending-text{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-comments-item-pending-text{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-comments-item-has-order-check-icon{
  display: flex;
  height: 1.25rem;
  width: 1.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgba(251, 191, 36, 1);
  background-color: rgba(251, 191, 36, var(--tw-bg-opacity, 1));
  font-size: 0.75rem;
  line-height: 1rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-comments-item-has-order-check-icon>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-item-has-order-check-icon>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-comments-item-has-order-check-icon>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-item-has-order-check-icon>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-comments-item-has-order-check-icon>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-comments-item-has-order-check-icon>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-comments-item-has-order-check-icon{order:1}.align-start-logo.store-header .container>.s-comments-item-has-order-check-icon>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .min--2 .s-comments-item-has-order-check-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-comments-item-has-order-check-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-comments-item-has-order-check-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-comments-item-has-order-check-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-comments-item-has-order-check-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-comments-item-has-order-check-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-comments-item-has-order-check-icon{justify-content:center}
.s-comments-item-reply-icon svg{
  height: 1rem;
  width: 1rem;
  fill: #9ca3af;
}
.s-comments-item-has-order-check-icon svg{
  height: 0.75rem;
  width: 0.75rem;
}
.s-comments-item-has-order-check-text{
  margin-top: 0.125rem;
  display: inline-block;
  --tw-translate-y: -2px;
  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));
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgba(75, 85, 99, 1);
  color: rgba(75, 85, 99, var(--tw-text-opacity, 1));
}
.s-comments-item-has-order-check-text:where([dir="ltr"], [dir="ltr"] *){
  margin-left: 0.25rem;
}
.s-comments-item-has-order-check-text:where([dir="rtl"], [dir="rtl"] *){
  margin-right: 0.25rem;
}
.s-comments-item-user-info-name{
  display: inline-block;
  --tw-translate-y: -2px;
  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));
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
}
.s-comments-item-user-info-name:where([dir="ltr"], [dir="ltr"] *){
  margin-right: 2.5rem;
}
.s-comments-item-user-info-name:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 2.5rem;
}
.s-comments-item-stars{
  margin-bottom: 0.625rem;
  width: 100%;
}
.s-comments-item-stars > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.s-comments-item-stars{
  font-size: 0.75rem;
  line-height: 1rem;
}
.s-comments-item-stars:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 1;
}
.s-comments-item-rated-widget{
  margin-top: 0.125rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgba(75, 85, 99, 1);
  color: rgba(75, 85, 99, var(--tw-text-opacity, 1));
}
.s-comments-item-rated-widget:where([dir="ltr"], [dir="ltr"] *){
  margin-left: 0.25rem;
}
.s-comments-item-rated-widget:where([dir="rtl"], [dir="rtl"] *){
  margin-right: 0.25rem;
}
.s-comments-flex-1{
  flex: 1 1 0%;
}
.s-comments-flex{
  display: flex;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-comments-flex>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-flex>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-comments-flex>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-flex>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-comments-flex>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-comments-flex>.justify-center{order:1}.align-start-logo.store-header .container>.s-comments-flex>.justify-end{order:3;justify-content:start;width:auto}}
.s-comments-item-user-info{
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-comments-item-user-info>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-item-user-info>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-comments-item-user-info>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-item-user-info>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-comments-item-user-info>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-comments-item-user-info>.justify-center{order:1}.align-start-logo.store-header .container>.s-comments-item-user-info>.justify-end{order:3;justify-content:start;width:auto}}
.s-comments-item-user-wrapper{
  margin-bottom: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-comments-item-user-wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-item-user-wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-comments-item-user-wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-item-user-wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-comments-item-user-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-comments-item-user-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.s-comments-item-user-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .s-comments-item-user-wrapper{
    margin-bottom: 0px;
  }
}
.s-comments-item-content{
  max-width: none;
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, 1);
  color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}
.s-comments-placeholder{
  display: flex;
  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));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-comments-placeholder>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-placeholder>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-comments-placeholder>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-placeholder>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-comments-placeholder>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-comments-placeholder>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-comments-placeholder{order:1}.align-start-logo.store-header .container>.s-comments-placeholder>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-comments-placeholder{justify-content:center}
.s-comments-placeholder p{
  padding-top: 0.5rem;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
}
.s-comments-placeholder span{
  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));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-comments-placeholder span>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-placeholder span>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-comments-placeholder span>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-placeholder span>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-comments-placeholder span>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-comments-placeholder span>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-comments-placeholder span{order:1}.align-start-logo.store-header .container>.s-comments-placeholder span>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .min--2 .s-comments-placeholder span{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-comments-placeholder span{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-comments-placeholder span{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-comments-placeholder span{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-comments-placeholder span{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-comments-placeholder span{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-comments-placeholder span{justify-content:center}
.s-comments-placeholder span svg{
  margin-left: auto;
  margin-right: auto;
  height: 4rem;
  width: 4rem;
  fill: #d1d5db;
  text-align: center;
}
.s-comments-item-like-btn{
  margin-top: 0.5rem;
}
.s-comments-item-like-btn .s-button-text{
  display: flex;
  flex-direction: row-reverse;
  gap: 0.5rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-comments-item-like-btn .s-button-text>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-item-like-btn .s-button-text>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-comments-item-like-btn .s-button-text>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-item-like-btn .s-button-text>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-comments-item-like-btn .s-button-text>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-comments-item-like-btn .s-button-text>.justify-center{order:1}.align-start-logo.store-header .container>.s-comments-item-like-btn .s-button-text>.justify-end{order:3;justify-content:start;width:auto}}
.s-comments-item-like-btn span svg{
  height: 0.75rem;
  width: 0.75rem;
}
.s-comments-item-images{
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-comments-item-images>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-item-images>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-comments-item-images>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-item-images>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-comments-item-images>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-comments-item-images>.justify-center{order:1}.align-start-logo.store-header .container>.s-comments-item-images>.justify-end{order:3;justify-content:start;width:auto}}
.s-comments-item-images img{
  height: 5rem;
  width: 5rem;
  cursor: pointer;
  border-radius: 0.375rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.s-comments-item-images img *{pointer-events:none}
.s-product-card-content-footer.s-comments-item-images img button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-comments-item-images img{border-radius:.25rem}
@media (min-width: 640px){
  .s-comments-item-images img{
    height: 120px;
    width: 120px;
  }
}
.s-comments-item-images-slider{
  margin-top: 1.25rem;
}
.s-comments-item-images-slider .s-modal-close{
  background-color: transparent;
}
.s-comments-item-images-slider-thumb{
  height: auto;
  width: 100%;
  max-width: 250px;
}
@media (min-width: 640px){
  .s-comments-item-images-slider-thumb{
    width: 50%;
    max-width: 320px;
  }
}
@media (min-width: 768px){
  .s-comments-item-images-slider-thumb{
    width: 33.333333%;
  }
}
@media (min-width: 1024px){
  .s-comments-item-images-slider-thumb{
    width: 25%;
  }
}
.s-comments-item-images-slider-thumb img{
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.s-comments-header{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-comments-header>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-header>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-comments-header>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-header>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-comments-header>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-comments-header>.justify-center{order:1}.align-start-logo.store-header .container>.s-comments-header>.justify-end{order:3;justify-content:start;width:auto}}
.s-comments-header:not(.has-total){
  justify-content: flex-end !important;
}
.s-comments-sort-input{
  width: 10rem;
}
.s-comments-filter-wrapper{
  display: flex;
  align-items: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-comments-filter-wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-filter-wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-comments-filter-wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-filter-wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-comments-filter-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-comments-filter-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.s-comments-filter-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
.s-comments-filter-label{
  display: none;
  white-space: nowrap;
}
.index section.s-block.s-comments-filter-label{display:none}
@media (min-width: 640px){
  .s-comments-filter-label{
    display: block;
  }
}
.s-comments-filter-label:where([dir="ltr"], [dir="ltr"] *){
  margin-right: 0.75rem;
}
.s-comments-filter-label:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 0.75rem;
}
.s-comments-container salla-reviews-summary{
  margin-top: 1.5rem;
}
.s-conditional-offer-container{
  display: inline-flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  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: 0.25rem;
  padding-right: 0.25rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-conditional-offer-container{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-conditional-offer-container{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-conditional-offer-container{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-conditional-offer-container{margin-right:auto;
  }.align-start-logo.store-header .container>.flex>.s-conditional-offer-container{order:2;justify-content:end;width:auto}}
.s-product-card-content-footer.s-conditional-offer-container button{
  border-radius: 0.375rem;
}
.s-product-card-starting-price.s-conditional-offer-container{justify-content:start}
custom-salla-product-card.s-conditional-offer-container{border-radius:.25rem}
@media (min-width: 768px){
  .s-conditional-offer-container{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.s-conditional-offer-title-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-conditional-offer-title-wrapper{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-conditional-offer-title-wrapper{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-conditional-offer-title-wrapper{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-conditional-offer-title-wrapper{margin-right:auto;
  }.align-start-logo.store-header .container>.flex>.s-conditional-offer-title-wrapper{order:2;justify-content:end;width:auto}[dir="ltr"] .align-start-logo.store-header .container>.s-conditional-offer-title-wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-conditional-offer-title-wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-conditional-offer-title-wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-conditional-offer-title-wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-conditional-offer-title-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-conditional-offer-title-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.s-conditional-offer-title-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-starting-price.s-conditional-offer-title-wrapper{justify-content:start}
.s-conditional-offer-title{
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}
.s-conditional-offer-subtitle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  align-self: stretch;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgba(64, 64, 64, 1);
  color: rgba(64, 64, 64, var(--tw-text-opacity, 1));
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.s-conditional-offer-subtitle{order:1}}
.s-product-card-content-sub.s-conditional-offer-subtitle{justify-content:center}
.s-conditional-offer-subtitle i{
  position: relative;
}
.s-conditional-offer-progress-line{
  height: 1px;
  align-self: stretch;
  background-color: #414042;
  background-color: var(--color-primary);
}
.s-conditional-offer-checkpoint-border{
  display: flex;
  height: 60px;
  min-width: 60px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border-width: 1px;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-conditional-offer-checkpoint-border>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-conditional-offer-checkpoint-border>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-conditional-offer-checkpoint-border>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-conditional-offer-checkpoint-border>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-conditional-offer-checkpoint-border>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-conditional-offer-checkpoint-border>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-conditional-offer-checkpoint-border{order:1}.align-start-logo.store-header .container>.s-conditional-offer-checkpoint-border>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .min--2 .s-conditional-offer-checkpoint-border{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-conditional-offer-checkpoint-border{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-conditional-offer-checkpoint-border{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-conditional-offer-checkpoint-border{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-conditional-offer-checkpoint-border{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-conditional-offer-checkpoint-border{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-conditional-offer-checkpoint-border{justify-content:center}
.s-conditional-offer-checkpoint-border-colored{
  border-color: #414042;
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
}
.s-conditional-offer-product-link{
  display: grid;
  aspect-ratio: 1 / 1;
  height: 58px;
  align-content: center;
  justify-content: center;
  place-content: center;
  overflow: hidden;
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 .s-conditional-offer-product-link{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-conditional-offer-product-link{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-conditional-offer-product-link{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-conditional-offer-product-link{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-conditional-offer-product-link{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-conditional-offer-product-link{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-conditional-offer-checkpoint-image-content{
  height: 58px;
  width: 58px;
  -o-object-fit: cover;
     object-fit: cover;
}
.s-conditional-offer-progress-container{
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  height: 8rem;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-conditional-offer-progress-container>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-conditional-offer-progress-container>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-conditional-offer-progress-container>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-conditional-offer-progress-container>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-conditional-offer-progress-container>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-conditional-offer-progress-container>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-conditional-offer-progress-container{order:1}.align-start-logo.store-header .container>.s-conditional-offer-progress-container>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-conditional-offer-progress-container{justify-content:center}
@media (min-width: 768px){
  .s-conditional-offer-progress-container{
    height: 4rem;
  }
}
.s-conditional-offer-item-avatar-content{
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
}
.s-conditional-offer-item-avatar-content.active{
  color: var(--color-primary-dark);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.s-conditional-offer-checkpoint{
  position: relative;
  display: grid;
  height: 60px;
  width: 60px;
  flex-shrink: 0;
  align-content: center;
  justify-content: center;
  place-content: center;
  border-radius: 9999px;
  border-width: 1px;
}
@media (min-width: 768px){
  .min--2 .s-conditional-offer-checkpoint{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-conditional-offer-checkpoint{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-conditional-offer-checkpoint{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-conditional-offer-checkpoint{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-conditional-offer-checkpoint{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-conditional-offer-checkpoint{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-conditional-offer-progress-line-container{
  display: grid;
  width: 100%;
  overflow: hidden;
  grid-template-areas: 'progress-line';
}
.s-conditional-offer-progress-line-inactive{
  height: 1.5px;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgba(209, 213, 219, 1);
  background-color: rgba(209, 213, 219, var(--tw-bg-opacity, 1));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  grid-area: progress-line;
}
.s-conditional-offer-progress-line-active{
  height: 1.5px;
  width: 0%;
  background-color: #414042;
  background-color: var(--color-primary);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  grid-area: progress-line;
}
.s-conditional-offer-checkpoint-label{
  position: absolute;
  top: 100%;
  left: 50%;
  width: -moz-max-content;
  width: max-content;
  --tw-translate-x: -50%;
  --tw-translate-y: 20%;
  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-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
input[type=radio].sr-only div.s-conditional-offer-checkpoint-label{transition:all .3s}
input[type=radio].sr-only:checked~div.s-conditional-offer-checkpoint-label{border-color:var(--color-main)}
.s-conditional-offer-checkpoint-label.active{
  color: var(--color-primary-dark);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.s-conditional-offer-checkpoint-label.first-checkpoint{
  --tw-translate-y: 132%;
  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-conditional-offer-checkpoint-label.first-checkpoint:where([dir="ltr"], [dir="ltr"] *){
  --tw-translate-x: 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));
}
.s-conditional-offer-checkpoint-label.first-checkpoint:where([dir="rtl"], [dir="rtl"] *){
  --tw-translate-x: -100%;
  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-conditional-offer-checkpoint-container{
  position: relative;
  display: flex;
  align-items: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-conditional-offer-checkpoint-container>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-conditional-offer-checkpoint-container>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-conditional-offer-checkpoint-container>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-conditional-offer-checkpoint-container>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-conditional-offer-checkpoint-container>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-conditional-offer-checkpoint-container>.justify-center{order:1}.align-start-logo.store-header .container>.s-conditional-offer-checkpoint-container>.justify-end{order:3;justify-content:start;width:auto}}
.s-conditional-offer-active-checkpoint{
  border-color: #414042;
  border-color: var(--color-primary);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.s-conditional-offer-skeleton-inner-container{
  margin-bottom: 2rem;
  width: 100%;
}
@media (min-width: 768px){
  .s-conditional-offer-skeleton-inner-container{
    margin-bottom: 0px;
  }
}
.s-conditional-offer-skeleton-title{
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-conditional-offer-skeleton-title>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-conditional-offer-skeleton-title>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-conditional-offer-skeleton-title>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-conditional-offer-skeleton-title>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-conditional-offer-skeleton-title>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-conditional-offer-skeleton-title>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-conditional-offer-skeleton-title{order:1}.align-start-logo.store-header .container>.s-conditional-offer-skeleton-title>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-conditional-offer-skeleton-title{justify-content:center}
.s-conditional-offer-skeleton-subtitle{
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-conditional-offer-skeleton-subtitle>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-conditional-offer-skeleton-subtitle>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-conditional-offer-skeleton-subtitle>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-conditional-offer-skeleton-subtitle>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-conditional-offer-skeleton-subtitle>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-conditional-offer-skeleton-subtitle>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-conditional-offer-skeleton-subtitle{order:1}.align-start-logo.store-header .container>.s-conditional-offer-skeleton-subtitle>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-conditional-offer-skeleton-subtitle{justify-content:center}
.s-conditional-offer-skeleton-checkpoints-wrapper{
  display: flex;
  align-items: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-conditional-offer-skeleton-checkpoints-wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-conditional-offer-skeleton-checkpoints-wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-conditional-offer-skeleton-checkpoints-wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-conditional-offer-skeleton-checkpoints-wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-conditional-offer-skeleton-checkpoints-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-conditional-offer-skeleton-checkpoints-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.s-conditional-offer-skeleton-checkpoints-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
.s-contacts-title{
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
}
@media (min-width: 1024px){
  .s-contacts-title{
    margin-bottom: 1.25rem;
  }
}
.s-contacts-header{
  display: none;
  align-items: center;
}
.index section.s-block.s-contacts-header{display:none}
@media (min-width: 1024px){
  .s-contacts-header{
    display: flex;
  }
}
.s-contacts-topnav-link{
  display: inline-block;
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, 1);
  border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1px;
  padding-bottom: 1px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  line-height: 1;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.s-contacts-topnav-link:hover{
  opacity: 0.8;
}
.s-contacts-topnav-link:where([dir="ltr"], [dir="ltr"] *){
  border-right-width: 1px;
}
.s-contacts-topnav-link:last-child:where([dir="ltr"], [dir="ltr"] *){
  border-width: 0px;
  padding-right: 0px;
}
.s-contacts-topnav-link:where([dir="rtl"], [dir="rtl"] *){
  border-left-width: 1px;
}
.s-contacts-topnav-link:last-child:where([dir="rtl"], [dir="rtl"] *){
  border-width: 0px;
  padding-left: 0px;
}
.s-contacts-item{
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  line-height: 1;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-contacts-item>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-contacts-item>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-contacts-item>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-contacts-item>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-contacts-item>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-contacts-item>.justify-center{order:1}.align-start-logo.store-header .container>.s-contacts-item>.justify-end{order:3;justify-content:start;width:auto}}
.s-contacts-icon{
  display: flex;
  height: 2rem;
  width: 2rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border-width: 1px;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-contacts-icon>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-contacts-icon>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-contacts-icon>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-contacts-icon>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-contacts-icon>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.flex>.s-contacts-icon{order:1}.align-start-logo.store-header .container>.s-contacts-icon>.justify-center{order:1}.align-start-logo.store-header .container>.s-contacts-icon>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .min--2 .s-contacts-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-contacts-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-contacts-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-contacts-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-contacts-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-contacts-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-contacts-icon{justify-content:center}
.s-contacts-icon:where([dir="ltr"], [dir="ltr"] *){
  margin-right: 0.625rem;
}
.s-contacts-icon:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 0.625rem;
}
.s-contacts-icon svg{
  height: 0.875rem;
  width: 0.875rem;
  fill: currentColor;
}
.s-contacts-list{
  display: flex;
  gap: 1rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-contacts-list>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-contacts-list>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-contacts-list>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-contacts-list>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-contacts-list>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-contacts-list>.justify-center{order:1}.align-start-logo.store-header .container>.s-contacts-list>.justify-end{order:3;justify-content:start;width:auto}}
.s-contacts-list-horizontal{
  align-items: center;
}
.s-contacts-list-vertical{
  flex-direction: column;
}
.s-contacts-list-icons-only .s-contacts-icon{
  margin-left: 0px;
  margin-right: 0px;
}
.s-count-down-wrapper{
  position: relative;
}
.s-count-down-list{
  margin-left: -0.25rem;
  margin-right: -0.25rem;
  margin-bottom: 1.25rem;
  margin-top: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-count-down-list>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-count-down-list>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-count-down-list>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-count-down-list>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-count-down-list>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-count-down-list>.justify-center{order:1}.align-start-logo.store-header .container>.s-count-down-list>.justify-end{order:3;justify-content:start;width:auto}}
salla-installment>.s-count-down-list{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-count-down-list button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-count-down-list button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-count-down-list button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-count-down-list button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-count-down-list button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-count-down-list button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-count-down-list button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-count-down-list{border-radius:.75rem}
.dark salla-installment>.s-count-down-list{color:var(--dark-text-main);background-color:var(--dark-grey)}
@media (min-width: 640px){
  .s-count-down-list{
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
.s-count-down-list:where([dir="ltr"], [dir="ltr"] *){
  flex-direction: row-reverse;
}
.s-count-down-list:where([dir="rtl"], [dir="rtl"] *){
  flex-direction: row;
}
.s-count-down-item{
  position: relative;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  display: flex;
  height: 5rem;
  flex: 1 1 0%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;font-family:var(--font-main);
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-count-down-item>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-count-down-item>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-count-down-item>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-count-down-item>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-count-down-item>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-count-down-item>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-count-down-item{order:1}.align-start-logo.store-header .container>.s-count-down-item>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-count-down-item{justify-content:center}
.s-product-card-content-title.s-count-down-item a{font-family:var(--font-main)}
.s-count-down-item::after{
  position: absolute;
  left: -2px;
  font-family: inherit;
  --tw-content: ':';
  content: var(--tw-content);
}
.s-count-down-item:last-child::after{
  --tw-content: '';
  content: var(--tw-content);
}
.s-count-down-item-label{
  margin-top: 0.25rem;
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, 1);
  color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
  opacity: 0.4;
}
.s-count-down-boxed .s-count-down-item{
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, 1);
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity, 1));
}
.s-count-down-boxed .s-count-down-item::after{
  --tw-content: '';
  content: var(--tw-content);
}
.s-count-down-sm .s-count-down-item{
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
}
.s-count-down-sm .s-count-down-item::after{
  content: var(--tw-content);
  font-size: 1rem;
  line-height: 1.5rem;
}
.s-count-down-sm + .s-count-down-end-text{
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
}
.s-count-down-md .s-count-down-item{
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 500;
}
.s-count-down-md .s-count-down-item::after{
  content: var(--tw-content);
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.s-count-down-md + .s-count-down-end-text{
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 500;
}
.s-count-down-lg .s-count-down-item{
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
}
.s-count-down-lg .s-count-down-item::after{
  content: var(--tw-content);
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.s-count-down-lg + .s-count-down-end-text{
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
}
.s-count-down-light .s-count-down-item{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.s-count-down-light .s-count-down-item::after{
  content: var(--tw-content);
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.s-count-down-dark .s-count-down-item{
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, 1);
  color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
}
.s-count-down-dark .s-count-down-item::after{
  content: var(--tw-content);
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, 1);
  color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
}
.s-count-down-primary .s-count-down-item{
  color: #414042;
  color: var(--color-primary);
}
.s-count-down-primary .s-count-down-item::after{
  content: var(--tw-content);
  color: #414042;
  color: var(--color-primary);
}
.s-count-down-ended .s-count-down-item{
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
  opacity: 0.1;
}
.s-count-down-ended .s-count-down-item::after{
  content: var(--tw-content);
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
}
.s-count-down-end-text{
  position: absolute;
  top: 50%;
  left: 50%;
  --tw-translate-x: -50%;
  --tw-translate-y: -50%;
  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-text-opacity: 1;
  color: rgba(234, 84, 85, 1);
  color: rgba(234, 84, 85, var(--tw-text-opacity, 1));font-family:var(--font-main);
}
input[type=radio].sr-only div.s-count-down-end-text{transition:all .3s}
input[type=radio].sr-only:checked~div.s-count-down-end-text{border-color:var(--color-main)}
.s-product-card-content-title.s-count-down-end-text a{font-family:var(--font-main)}
.s-count-down-text-center{
  text-align: center;
}
.s-datetime-picker-input{
  display: block;
  width: 100%;
  border-radius: 0.25rem;
  border-width: 1px;
  --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(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
  padding: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgba(17, 24, 39, 1);
  color: rgba(17, 24, 39, var(--tw-text-opacity, 1));
}
.s-datetime-picker-input:focus{
  border-color: #414042;
  border-color: var(--color-primary);
  --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: var(--tw-ring-offset-shadow), 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));
}
.flatpickr-day.selected{
  background: #414042;
  background: var(--color-primary);
  border-color: #414042;
  border-color: var(--color-primary);
}
.flatpickr-day.selected:hover{
  background: #414042;
  background: var(--color-primary);
  border-color: #414042;
  border-color: var(--color-primary);
  opacity: 0.8;
}
.flatpickr-months{
  position: relative;
  padding: 10px;
  background: #414042;
  background: var(--color-primary);
  border-radius: 4px 4px 0 0;
}
.flatpickr-months *{
  color: #fff;
}
.flatpickr-months .flatpickr-current-month{
  height: auto;
  padding: 0;
}
.flatpickr-months .flatpickr-month{
  padding-top: 4px;
}
.flatpickr-months .flatpickr-prev-month,.flatpickr-months .flatpickr-next-month{
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-size: 20px;
}
.flatpickr-months .flatpickr-monthDropdown-months{
  padding: 0;
  margin: 0;
  margin-right: 15px;
  padding-right: 5px;
}
.flatpickr-months .flatpickr-monthDropdown-months,.flatpickr-months .numInputWrapper{
  background: transparent !important;
}
.flatpickr-months .flatpickr-monthDropdown-months,.flatpickr-months .numInputWrapper{
  font-size: var(--font-base);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  min-width: 55px;
}
@media (max-width: 768px){
  [dir='rtl'] .flatpickr-calendar{
    right: 30px !important;
  }
}
.flatpickr-calendar.arrowTop:before,.flatpickr-calendar.arrowTop:after{
  border-bottom-color: #414042;
  border-bottom-color: var(--color-primary);
}
.s-file-upload-wrapper .filepond--drop-label{
  height: 100%;
  cursor: pointer;
  border-radius: 0.25rem;
  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));
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, 1);
  color: rgba(55, 65, 81, var(--tw-text-opacity, 1));
}
.s-file-upload-wrapper .filepond--drop-label *{pointer-events:none}
.s-file-upload-wrapper .filepond--drop-label label{
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-main), -apple-system, BlinkMacSystemFont;
}
.s-file-upload-wrapper .filepond--label-action{
  text-decoration-color: #6b7280;
}
.s-file-upload-wrapper .filepond--panel-root{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(243, 244, 246, 1) !important;
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity, 1)) !important;
}
.s-file-upload-wrapper .filepond--panel-root{
  border-radius: 0.25rem;
}
.s-file-upload-profile-image .filepond--panel-root{
  border-radius: 9999px !important;
}
.s-file-upload:not(.s-file-upload-multiple) .s-file-upload-wrapper .filepond--list-scroller{
  overflow-y: inherit !important;
  overflow: inherit !important;
  margin: 0 !important;
}
.filepond--root{
  min-height: 120px !important;
  font-family: inherit !important;
}
.s-file-upload-wrapper .filepond--item-panel{
  --tw-bg-opacity: 1;
  background-color: rgba(55, 65, 81, 1);
  background-color: rgba(55, 65, 81, var(--tw-bg-opacity, 1));
}
.s-file-upload-wrapper .filepond--drip-blob{
  --tw-bg-opacity: 1;
  background-color: rgba(75, 85, 99, 1);
  background-color: rgba(75, 85, 99, var(--tw-bg-opacity, 1));
}
.s-file-upload-wrapper .filepond--list{
  left: 0px;
  width: 100%;
}
.s-file-upload-wrapper .filepond--file-poster-wrapper{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  margin: 0px;
  display: flex;
  height: 100%;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0.45em;
  background-color: rgba(0,0,0,0.01176);
}
input[type=radio].sr-only div.s-file-upload-wrapper .filepond--file-poster-wrapper{transition:all .3s}
input[type=radio].sr-only:checked~div.s-file-upload-wrapper .filepond--file-poster-wrapper{border-color:var(--color-main)}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-file-upload-wrapper .filepond--file-poster-wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-file-upload-wrapper .filepond--file-poster-wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-file-upload-wrapper .filepond--file-poster-wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-file-upload-wrapper .filepond--file-poster-wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-file-upload-wrapper .filepond--file-poster-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-file-upload-wrapper .filepond--file-poster-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-file-upload-wrapper .filepond--file-poster-wrapper{order:1}.align-start-logo.store-header .container>.s-file-upload-wrapper .filepond--file-poster-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-file-upload-wrapper .filepond--file-poster-wrapper{justify-content:center}
.s-file-upload-wrapper .filepond--file-poster{
  position: absolute;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
input[type=radio].sr-only div.s-file-upload-wrapper .filepond--file-poster{transition:all .3s}
input[type=radio].sr-only:checked~div.s-file-upload-wrapper .filepond--file-poster{border-color:var(--color-main)}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-file-upload-wrapper .filepond--file-poster>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-file-upload-wrapper .filepond--file-poster>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-file-upload-wrapper .filepond--file-poster>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-file-upload-wrapper .filepond--file-poster>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-file-upload-wrapper .filepond--file-poster>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-file-upload-wrapper .filepond--file-poster>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-file-upload-wrapper .filepond--file-poster{order:1}.align-start-logo.store-header .container>.s-file-upload-wrapper .filepond--file-poster>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-file-upload-wrapper .filepond--file-poster{justify-content:center}
.s-file-upload-wrapper .filepond--file-poster-overlay{
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
}
input[type=radio].sr-only div.s-file-upload-wrapper .filepond--file-poster-overlay{transition:all .3s}
input[type=radio].sr-only:checked~div.s-file-upload-wrapper .filepond--file-poster-overlay{border-color:var(--color-main)}
.s-file-upload-wrapper .filepond--item{
  margin: 0px;
}
.s-file-upload-wrapper .filepond--file-info{
  margin: 0px;
}
.s-file-upload-wrapper .filepond--file-info-main{
  width: 85px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  font-size: 0.75em;
  line-height: 1.2;
}
.s-file-upload-wrapper .filepond--file-status{
  width: 55%;
}
.s-file-upload-wrapper .filepond--file-status:where([dir="rtl"], [dir="rtl"] *){
  margin-right: 35px;
}
@media (min-width: 768px){
  .s-file-upload-wrapper .filepond--file-status:where([dir="rtl"], [dir="rtl"] *){
    margin-right: 2.25em;
  }
}
.s-file-upload-wrapper .filepond--file-status .filepond--file-status-sub{
  width: 275px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.s-file-upload-profile-image .filepond--root{
  min-height: 80px !important;
  border-radius: 9999px !important;
}
.s-file-upload-profile-image .filepond--root{
  height: 80px;
  width: 80px;
}
.s-file-upload-profile-image .filepond--drop-label{
  min-height: 70px !important;
  border-radius: 9999px !important;
}
.s-file-upload-profile-image .filepond--drop-label{
  z-index: 7;
  border-style: none;
}
.s-file-upload-profile-image .filepond--drop-label label{
  cursor: pointer;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 6px;
  padding-right: 6px;
  font-size: 0.8rem;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-main), -apple-system, BlinkMacSystemFont;
}
.s-file-upload-profile-image .filepond--drop-label label *{pointer-events:none}
.s-file-upload-profile-image .filepond--file{
  padding: 0px;
}
.s-file-upload-profile-image .filepond--file .filepond--action-remove-item{
  top: auto !important;
  transform: translateX(-50%) translateY(25%) !important;
}
.s-file-upload-profile-image .filepond--file .filepond--action-remove-item{
  bottom: -4px;
  left: 50%;
  background-color: rgba(255,68,58,.7);
  cursor: pointer;
  width: 20px;
  height: 20px;
  transition: 0.3s;
}
.s-file-upload-profile-image .filepond--file .filepond--action-remove-item:hover{
  background-color: #FF443A;
}
.s-file-upload-profile-image .filepond--file .filepond--file-action-button{
  top: 28px;
  right: 28px;
}
.s-file-upload-profile-image .filepond--file .filepond--progress-indicator,.s-file-upload-profile-image .filepond--file .filepond--load-indicator,.s-file-upload-profile-image .filepond--file .filepond--processing-complete-indicator{
  top: 48% !important;
}
.s-file-upload-profile-image .filepond--file .filepond--progress-indicator,.s-file-upload-profile-image .filepond--file .filepond--load-indicator,.s-file-upload-profile-image .filepond--file .filepond--processing-complete-indicator{
  right: 50%;
  left: auto;
  transform: translateX(50%) translateY(-50%);
}
.s-file-upload-profile-image .filepond--item-panel{
  background-color: transparent !important;
}
.s-file-upload-.s-file-upload-profile-image .filepond--item-panel .filepond--panel-top,.s-file-upload-profile-image .filepond--item-panel .filepond--panel-center,.s-file-upload-profile-image .filepond--item-panel .filepond--panel-bottom{
  display: none;
}
.index section.s-block.s-file-upload-.s-file-upload-profile-image .filepond--item-panel .filepond--panel-top,.index section.s-block.s-file-upload-profile-image .filepond--item-panel .filepond--panel-center,.index section.s-block.s-file-upload-profile-image .filepond--item-panel .filepond--panel-bottom{display:none}
.s-file-upload-profile-image .filepond--file-poster-overlay{
  display: none;
}
.index section.s-block.s-file-upload-profile-image .filepond--file-poster-overlay{display:none}
.s-file-upload-profile-image .filepond--item{
  margin: 0px !important;
  height: 5rem !important;
}
.s-file-upload-profile-image .filepond--file-poster{
  height: 100%;
  width: 100%;
}
.s-file-upload-profile-image .filepond--file-status{
  display: none;
}
.index section.s-block.s-file-upload-profile-image .filepond--file-status{display:none}
.s-file-upload-profile-image .filepond--image-preview-overlay-success{
  top: auto;
  bottom: 0px;
  --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(var(--tw-scale-y));
}
.s-file-upload-profile-image .filepond--image-preview-wrapper{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 .s-file-upload-profile-image .filepond--image-preview-wrapper{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-file-upload-profile-image .filepond--image-preview-wrapper{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-file-upload-profile-image .filepond--image-preview-wrapper{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-file-upload-profile-image .filepond--image-preview-wrapper{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-file-upload-profile-image .filepond--image-preview-wrapper{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-file-upload-profile-image .filepond--image-preview-wrapper{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-file-upload-profile-image .filepond--file-info{
  display: none;
}
.index section.s-block.s-file-upload-profile-image .filepond--file-info{display:none}
.s-file-upload-profile-image .filepond--list{
  left: 0px;
  right: 0px;
  height: 100%;
}
.s-file-upload-profile-image .filepond--file-poster img{
  height: 100%;
  width: 100%;
  border-radius: 9999px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px){
  .min--2 .s-file-upload-profile-image .filepond--file-poster img{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-file-upload-profile-image .filepond--file-poster img{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-file-upload-profile-image .filepond--file-poster img{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-file-upload-profile-image .filepond--file-poster img{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-file-upload-profile-image .filepond--file-poster img{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-file-upload-profile-image .filepond--file-poster img{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-file-upload-profile-image .filepond--file-poster-wrapper{
  overflow: hidden;
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 .s-file-upload-profile-image .filepond--file-poster-wrapper{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-file-upload-profile-image .filepond--file-poster-wrapper{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-file-upload-profile-image .filepond--file-poster-wrapper{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-file-upload-profile-image .filepond--file-poster-wrapper{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-file-upload-profile-image .filepond--file-poster-wrapper{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-file-upload-profile-image .filepond--file-poster-wrapper{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-file-upload-profile-image .s-file-upload-has-error .filepond--file-status{
  display: flex !important;
}
.s-file-upload-profile-image .s-file-upload-has-error .filepond--file-status{
  position: absolute;
  bottom: -62%;
  left: -190%;
  height: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  --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.s-file-upload-profile-image .s-file-upload-has-error .filepond--file-status{transition:all .3s}
input[type=radio].sr-only:checked~div.s-file-upload-profile-image .s-file-upload-has-error .filepond--file-status{border-color:var(--color-main)}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.s-file-upload-profile-image .s-file-upload-has-error .filepond--file-status{order:1}}
.s-product-card-content-sub.s-file-upload-profile-image .s-file-upload-has-error .filepond--file-status{justify-content:center}
.s-file-upload-multiple .filepond--root{
  max-height: 120px;
}
.s-file-upload-multiple .filepond--list-scroller{
  top: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  height: 100%;
  overflow-y: scroll;
}
.s-file-upload-multiple .filepond--drop-label:not(.s-hidden) + .filepond--list-scroller{
  display: none;
}
.index section.s-block.s-file-upload-multiple .filepond--drop-label:not(.s-hidden) + .filepond--list-scroller{display:none}
.s-file-upload-multiple .filepond--item{
  @media(min-width: 767px){
    margin-left: .3em !important;
  }
  @media(min-width: 767px){
    width: calc(33.33% - .5em);
  }
  @media(max-width: 767px){
    margin-bottom: .3em;
  }
}
.s-file-upload-hint{
  margin-top: -15px;
  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-filters-checkbox{
  height: 1.25rem;
  width: 1.25rem;
  border-radius: 6px;
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, 1);
  border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
  color: #414042;
  color: var(--color-primary);
}
.s-filters-checkbox:focus{
  --tw-ring-color: transparent;
}
.s-filters-radio{
  --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-filters-radio{
  position: relative;
  height: 1rem;
  width: 1rem;
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 219, 1);
  border-color: rgba(209, 213, 219, var(--tw-border-opacity, 1));
  color: #414042;
  color: var(--color-primary);
}
.s-filters-radio:focus{
  --tw-ring-color: transparent;
}
.s-filters-radio:where([dir="ltr"], [dir="ltr"] *){
  margin-right: 0.75rem;
}
.s-filters-radio:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 0.75rem;
}
.s-filters-radio:checked{
  border-color: #414042;
  border-color: var(--color-primary);
}
.s-filters-radio:checked::after{
  position: absolute;
  left: 0.125rem;
  top: 0.125rem;
  display: block;
  height: 0.625rem;
  width: 0.625rem;
  border-radius: 9999px;
  background-color: #414042;
  background-color: var(--color-primary);
  --tw-content: '';
  content: var(--tw-content);
}
.s-filters-radio:checked:hover{
  border-color: #414042;
  border-color: var(--color-primary);
}
.s-filters-radio:checked:focus{
  border-color: #414042;
  border-color: var(--color-primary);
}
.s-filters-label{
  position: relative;
  margin-bottom: 0.75rem;
  display: flex;
  cursor: pointer;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}
.s-filters-label *{pointer-events:none}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-filters-label>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-filters-label>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-filters-label>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-filters-label>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-filters-label>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-filters-label>.justify-center{order:1}.align-start-logo.store-header .container>.s-filters-label>.justify-end{order:3;justify-content:start;width:auto}}
.s-filters-label:last-child{
  margin-bottom: 0px;
}
.s-filters-option-name{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  --tw-text-opacity: 1;
  color: rgba(129, 127, 127, 1);
  color: rgba(129, 127, 127, var(--tw-text-opacity, 1));
}
.s-filters-footer{
  display: flex;
  justify-content: center;
}
.s-filters-footer > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.s-filters-footer{
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-filters-footer>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-filters-footer>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-filters-footer>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-filters-footer>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-filters-footer>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-filters-footer>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-filters-footer{order:1}.align-start-logo.store-header .container>.s-filters-footer>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-filters-footer{justify-content:center}
@media (min-width: 768px){
  .s-filters-footer{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0px;
    padding-right: 0px;
  }
}
.s-filters-footer:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 1;
}
.s-filters-footer salla-button{
  flex: 1 1 0%;
}
.s-filters-footer salla-button button{
  width: 100%;
}
.s-filters-widget-container{
  display: block;
  overflow: hidden;
  border-radius: 0.25rem;
  --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: 1.25rem;
  padding-bottom: 0.5rem;
}
@media (min-width: 768px){
  .s-filters-widget-container{
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    padding-top: 1.25rem;
  }
}
.s-filters-widget-content{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.s-filters-widget-opened{
  visibility: visible;
  opacity: 1;
}
.s-filters-widget-opened .tooltip-content{visibility:visible;opacity:1;transform:translate(82px, -110px)}
.s-filters-widget-closed{
  height: 0px !important;
}
.s-filters-widget-closed{
  visibility: hidden;
  padding: 0px;
  opacity: 0;
}
.s-filters-widget-title{
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
}
.s-filters-widget-title *{pointer-events:none}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-filters-widget-title>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-filters-widget-title>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-filters-widget-title>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-filters-widget-title>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-filters-widget-title>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-filters-widget-title>.justify-center{order:1}.align-start-logo.store-header .container>.s-filters-widget-title>.justify-end{order:3;justify-content:start;width:auto}}
.s-filters-widget-arrow{
  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));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.s-filters-widget-arrow svg{
  height: 1.25rem;
  width: 1.25rem;
}
.s-filters-widget-active-arrow{
  --tw-rotate: 90deg;
  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-text-opacity: 1;
  color: rgba(31, 41, 55, 1);
  color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
}
.s-filters-widget-values{
  overflow: hidden;
  padding-top: 1rem;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.s-filters-widget-more{
  margin-top: 0.5rem;
  display: block;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #414042;
  color: var(--color-primary);
}
.s-filters-widget-more *{pointer-events:none}
.s-filters-widget-plusminus{
  position: relative;
  height: 0.75rem;
  width: 0.75rem;
  --tw-rotate: 90deg;
  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-filters-widget-plusminus::before{
  position: absolute;
  left: 0px;
  top: 50%;
  display: block;
  height: 0.125rem;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgba(153, 153, 153, 1);
  background-color: rgba(153, 153, 153, var(--tw-bg-opacity, 1));
  transition-property: 0.35s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  --tw-content: '';
  content: var(--tw-content);
}
.s-filters-widget-plusminus::after{
  position: absolute;
  left: 0px;
  top: 50%;
  display: block;
  height: 0.125rem;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgba(153, 153, 153, 1);
  background-color: rgba(153, 153, 153, var(--tw-bg-opacity, 1));
  transition-property: 0.35s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  --tw-content: '';
  content: var(--tw-content);
}
.s-filters-widget-plusminus-active:before{
  transform: translatey(-50%) rotate(-90deg);
  opacity: 0;
}
.s-filters-widget-plusminus-active:after{
  transform: translatey(-50%) rotate(0);
  background-color: #414042;
  background-color: var(--color-primary);
}
.s-filters-widget-plusminus:before{
  transform: translatey(-50%);
}
.s-filters-widget-plusminus:after{
  transform: translatey(-50%) rotate(90deg);
}
.s-gifting-widget .s-list-tile-item-icon{
  display: none;
}
.index section.s-block.s-gifting-widget .s-list-tile-item-icon{display:none}
.s-gifting-widget-vertical .s-list-tile-item-icon{
  display: block;
}
.s-gifting-widget-vertical .s-list-tile-item-title svg{
  fill: #414042;
  fill: var(--color-primary);
}
.s-gifting-widget-vertical .s-list-tile-item-subtitle{
  padding-right: 3.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-gifting-widget-vertical .s-list-tile-item{
  flex-wrap: wrap;
  padding: 0px;
}
@media (min-width: 1024px){
  .s-gifting-widget-vertical .s-list-tile-item-action{
    flex: 1 1 0%;
  }
}
.s-gifting-widget-vertical .widget-icon{
  --tw-translate-y: 0.625rem;
  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));
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: #414042;
  color: var(--color-primary);
}
.s-gifting-widget .s-button-text{
  display: flex;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-gifting-widget .s-button-text>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-gifting-widget .s-button-text>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-gifting-widget .s-button-text>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-gifting-widget .s-button-text>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-gifting-widget .s-button-text>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-gifting-widget .s-button-text>.justify-center{order:1}.align-start-logo.store-header .container>.s-gifting-widget .s-button-text>.justify-end{order:3;justify-content:start;width:auto}}
.s-gifting-widget .s-list-tile-item{
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 0.75rem;
  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: 1.25rem;
  text-align: center;
}
.s-product-card-content-footer.s-gifting-widget .s-list-tile-item button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 .s-product-card-content-footer.s-gifting-widget .s-list-tile-item button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-product-card-content-footer.s-gifting-widget .s-list-tile-item button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-product-card-content-footer.s-gifting-widget .s-list-tile-item button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-product-card-content-footer.s-gifting-widget .s-list-tile-item button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-product-card-content-footer.s-gifting-widget .s-list-tile-item button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-product-card-content-footer.s-gifting-widget .s-list-tile-item button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-card.s-gifting-widget .s-list-tile-item{border-radius:.75rem}
@media (min-width: 768px){
  .s-gifting-widget .s-list-tile-item{
    text-align: left;
  }
}
@media (min-width: 1024px){
  .s-gifting-widget .s-list-tile-item{
    flex-direction: row;
  }
}
@media (min-width: 768px){
  .s-gifting-widget .s-list-tile-item:where([dir="rtl"], [dir="rtl"] *){
    text-align: right;
  }
}
.s-gifting-widget-horizontal .s-gifting-widget-action button{
  padding-left: 2rem;
  padding-right: 2rem;
  font-weight: 400;
}
.s-gifting-info{
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  --tw-border-opacity: 1;
  border-color: rgba(191, 219, 254, 1);
  border-color: rgba(191, 219, 254, var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgba(219, 234, 254, 1);
  background-color: rgba(219, 234, 254, var(--tw-bg-opacity, 1));
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgba(29, 78, 216, 1);
  color: rgba(29, 78, 216, var(--tw-text-opacity, 1));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-gifting-info>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-gifting-info>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-gifting-info>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-gifting-info>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-gifting-info>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-gifting-info>.justify-center{order:1}.align-start-logo.store-header .container>.s-gifting-info>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-footer.s-gifting-info button{
  border-radius: 0.5rem;
}
custom-salla-product-card.s-gifting-info{border-radius:.5rem}
.s-gifting-info svg{
  height: 1.25rem;
  width: 1.25rem;
  fill: #1d4ed8;
}
.s-gifting-error{
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, 1);
  color: rgba(239, 68, 68, var(--tw-text-opacity, 1));
}
.s-gifting-info span{
  font-size: 0.75rem;
  line-height: 1rem;
}
.s-gifting-widget-action-content{
  display: flex;
  align-items: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-gifting-widget-action-content>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-gifting-widget-action-content>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-gifting-widget-action-content>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-gifting-widget-action-content>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-gifting-widget-action-content>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-gifting-widget-action-content>.justify-center{order:1}.align-start-logo.store-header .container>.s-gifting-widget-action-content>.justify-end{order:3;justify-content:start;width:auto}}
.s-gifting-widget-action-content svg{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.s-gifting-modal-header{
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-gifting-modal-header>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-gifting-modal-header>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-gifting-modal-header>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-gifting-modal-header>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-gifting-modal-header>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-gifting-modal-header>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-gifting-modal-header{order:1}.align-start-logo.store-header .container>.s-gifting-modal-header>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-gifting-modal-header{justify-content:center}
salla-installment>.s-gifting-modal-header{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-gifting-modal-header button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-gifting-modal-header button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-gifting-modal-header button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-gifting-modal-header button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-gifting-modal-header button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-gifting-modal-header button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-gifting-modal-header button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-gifting-modal-header{border-radius:.75rem}
.dark salla-installment>.s-gifting-modal-header{color:var(--dark-text-main);background-color:var(--dark-grey)}
.s-gifting-modal .s-modal-header{
  display: block;
}
.s-gifting-modal .s-modal-body{
  position: relative !important;
  left: auto !important;
  left: initial !important;
  bottom: auto !important;
  bottom: initial !important;
}
.s-gifting-modal .s-modal-body{
  padding-bottom: 2rem;
}
@media (min-width: 640px){
  .s-gifting-modal .s-modal-body{
    padding-bottom: 1.5rem;
  }
}
.s-gifting-modal-icon{
  margin-bottom: 1.25rem;
  display: flex;
  height: 5rem;
  width: 5rem;
  flex-direction: row;
  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));
  font-size: 1.875rem;
  line-height: 2.25rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-gifting-modal-icon>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-gifting-modal-icon>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-gifting-modal-icon>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-gifting-modal-icon>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-gifting-modal-icon>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-gifting-modal-icon>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-gifting-modal-icon{order:1}.align-start-logo.store-header .container>.s-gifting-modal-icon>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .min--2 .s-gifting-modal-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-gifting-modal-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-gifting-modal-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-gifting-modal-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-gifting-modal-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-gifting-modal-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-gifting-modal-icon{justify-content:center}
salla-installment>.s-gifting-modal-icon{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-gifting-modal-icon button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-gifting-modal-icon button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-gifting-modal-icon button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-gifting-modal-icon button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-gifting-modal-icon button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-gifting-modal-icon button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-gifting-modal-icon button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-gifting-modal-icon{border-radius:.75rem}
.dark salla-installment>.s-gifting-modal-icon{color:var(--dark-text-main);background-color:var(--dark-grey)}
.s-gifting-modal-title{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-gifting-modal-title>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-gifting-modal-title>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-gifting-modal-title>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-gifting-modal-title>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-gifting-modal-title>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-gifting-modal-title>.justify-center{order:1}.align-start-logo.store-header .container>.s-gifting-modal-title>.justify-end{order:3;justify-content:start;width:auto}}
.s-gifting-modal-title::before{
  display: block;
  height: 1px;
  flex: 1 1 auto;
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity, 1));
  --tw-content: '';
  content: var(--tw-content);
}
.s-gifting-modal-title::after{
  display: block;
  height: 1px;
  flex: 1 1 auto;
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity, 1));
  --tw-content: '';
  content: var(--tw-content);
}
.s-gifting-modal-badge-wrapper{
  display: flex;
  align-items: center;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-gifting-modal-badge-wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-gifting-modal-badge-wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-gifting-modal-badge-wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-gifting-modal-badge-wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-gifting-modal-badge-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-gifting-modal-badge-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.s-gifting-modal-badge-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
.s-gifting-modal-badge{
  margin-right: 0.5rem;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity, 1));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.s-product-card-content-footer.s-gifting-modal-badge button{
  border-radius: 0.5rem;
}
custom-salla-product-card.s-gifting-modal-badge{border-radius:.5rem}
.s-gifting-modal-badge:where([dir="rtl"], [dir="rtl"] *){
  margin-right: 0px;
  margin-left: 0.5rem;
}
.s-gifting-modal-uploader.has-bg{
  position: relative;
}
.s-gifting-modal-uploader.has-bg .s-gifting-remove-preview{
  pointer-events: auto;
  --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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  opacity: 1;
}
.s-gifting-modal-uploader-title{
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.s-gifting-steps-wrapper{
  position: relative;
}
.s-gifting-steps-wrapper .s-button-wrap{
  pointer-events: auto !important;
}
.is-current-step-2 .gift-step-1, .is-current-step-1 .gift-step-2{
  pointer-events: none;
  z-index: -1;
}
.s-gifting-step-one{
  padding-top: 1.25rem;
}
.s-gifting-step-two{
  position: absolute;
  top: 0px;
  left: 0px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  width: 100%;
  --tw-translate-x: -105%;
  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;
  opacity: 0;
}
input[type=radio].sr-only div.s-gifting-step-two{transition:all .3s}
input[type=radio].sr-only:checked~div.s-gifting-step-two{border-color:var(--color-main)}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-gifting-step-two>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-gifting-step-two>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-gifting-step-two>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-gifting-step-two>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-gifting-step-two>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-gifting-step-two>.justify-center{order:1}.align-start-logo.store-header .container>.s-gifting-step-two>.justify-end{order:3;justify-content:start;width:auto}}
.s-gifting-step-one .swiper-wrapper{
  height: 100px;
}
.s-gifting-step-one .swiper-slide{
  width: auto !important;
}
.s-gifting-step-one .filepond--list-scroller{
  overflow-y: hidden;
}
.s-gifting-step-one .swiper-wrapper img{
  border-radius: 0.375rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.s-product-card-content-footer.s-gifting-step-one .swiper-wrapper img button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-gifting-step-one .swiper-wrapper img{border-radius:.25rem}
.s-gifting-step-one .filepond--root{
  height: 230px;
}
.s-gifting-step-one .filepond--list{
  left: 0px !important;
  height: 100% !important;
}
.s-gifting-step-one .filepond-bg{
  position: absolute;
  top: 0px;
  z-index: 10;
  height: 100%;
  width: 100%;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgba(55, 65, 81, 1);
  background-color: rgba(55, 65, 81, var(--tw-bg-opacity, 1));
  background-size: cover;
}
input[type=radio].sr-only div.s-gifting-step-one .filepond-bg{transition:all .3s}
input[type=radio].sr-only:checked~div.s-gifting-step-one .filepond-bg{border-color:var(--color-main)}
.s-gifting-step-one .s-slider-button-next{
  top: 35% !important;
}
.s-gifting-step-one .s-slider-button-next button{
  height: 35px;
  width: 35px;
  --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), 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);
}
.s-gifting-step-one .s-slider-button-prev{
  top: 35% !important;
}
.s-gifting-step-one .s-slider-button-prev button{
  height: 35px;
  width: 35px;
  --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), 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);
}
.s-gifting-tel-input .s-tel-input-control{
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 219, 1);
  border-color: rgba(209, 213, 219, var(--tw-border-opacity, 1));
}
.s-gifting-tel-input .s-tel-input-error-msg{
  display: none;
}
.index section.s-block.s-gifting-tel-input .s-tel-input-error-msg{display:none}
.s-gifting-step-two-footer{
  margin-top: 1.25rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.s-gifting-step-two-footer > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.625rem * var(--tw-space-x-reverse));
  margin-left: calc(0.625rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse)));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-gifting-step-two-footer>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-gifting-step-two-footer>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-gifting-step-two-footer>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-gifting-step-two-footer>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-gifting-step-two-footer>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-gifting-step-two-footer>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-gifting-step-two-footer{order:1}.align-start-logo.store-header .container>.s-gifting-step-two-footer>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-gifting-step-two-footer{justify-content:center}
.s-gifting-step-two-footer:where([dir="rtl"], [dir="rtl"] *){
  flex-direction: row-reverse;
}
.s-gifting-step-two-footer a{
  border-radius: 0.375rem;
  border-width: 1px;
  border-color: #414042;
  border-color: var(--color-primary);
  fill: #414042;
  fill: var(--color-primary);
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 25px;
  padding-right: 25px;
}
.s-product-card-content-footer.s-gifting-step-two-footer a button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-gifting-step-two-footer a{border-radius:.25rem}
.s-gifting-step-two-footer a svg{
  height: 1.25rem;
  width: 1.25rem;
}
.s-gifting-step-two .s-form-group.s-form-has-error .s-tel-input-control{
  --tw-border-opacity: 1 !important;
  border-color: rgba(255, 68, 58, 1) !important;
  border-color: rgba(255, 68, 58, var(--tw-border-opacity, 1)) !important;
}
.s-gifting-selectText{
  margin-bottom: 20px !important;
}
.s-gifting-schedule .s-form-label{
  margin-bottom: 0px !important;
}
.s-gifting-schedule{
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.s-gifting-schedule > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.375rem * var(--tw-space-x-reverse));
  margin-left: calc(0.375rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse)));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-gifting-schedule>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-gifting-schedule>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-gifting-schedule>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-gifting-schedule>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-gifting-schedule>.justify-start{order:2;justify-content:end;width:auto}[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-gifting-schedule{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-gifting-schedule{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-gifting-schedule{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-gifting-schedule{margin-right:auto;
  }.align-start-logo.store-header .container>.flex>.s-gifting-schedule{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-gifting-schedule>.justify-center{order:1}.align-start-logo.store-header .container>.s-gifting-schedule>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-starting-price.s-gifting-schedule{justify-content:start}
.s-gifting-schedule:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 1;
}
.s-gifting-clickable{
  cursor: pointer;
}
.s-gifting-clickable *{pointer-events:none}
.s-gifting-remove-preview{
  pointer-events: none;
  position: absolute;
  top: -7px;
  left: -7px;
  z-index: 10;
  display: flex;
  height: 1.25rem;
  width: 1.25rem;
  --tw-scale-x: 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(var(--tw-scale-y));
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgba(185, 28, 28, 1);
  background-color: rgba(185, 28, 28, var(--tw-bg-opacity, 1));
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
  opacity: 0;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.s-gifting-remove-preview *{pointer-events:none}
input[type=radio].sr-only div.s-gifting-remove-preview{transition:all .3s}
input[type=radio].sr-only:checked~div.s-gifting-remove-preview{border-color:var(--color-main)}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-gifting-remove-preview>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-gifting-remove-preview>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-gifting-remove-preview>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-gifting-remove-preview>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-gifting-remove-preview>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-gifting-remove-preview>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-gifting-remove-preview{order:1}.align-start-logo.store-header .container>.s-gifting-remove-preview>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .min--2 .s-gifting-remove-preview{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-gifting-remove-preview{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-gifting-remove-preview{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-gifting-remove-preview{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-gifting-remove-preview{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-gifting-remove-preview{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-gifting-remove-preview{justify-content:center}
.s-gifting-remove-preview:where([dir="rtl"], [dir="rtl"] *){
  left: auto;
  left: initial;
  right: -7px;
}
.s-gifting-remove-preview svg{
  height: 100%;
  width: 15px;
  fill: #fff;
}
.s-gifting-textarea{
  transition-property: all;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.s-gifting-calendar-hint{
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgba(220, 38, 38, 1);
  color: rgba(220, 38, 38, var(--tw-text-opacity, 1));
}
.s-gifting-calendar.shown{
  margin-top: 0.75rem;
  height: 75px;
  opacity: 1;
}
.s-gifting-textarea.shown{
  height: 122px;
  opacity: 1;
}
.s-gifting-calendar.hide{
  pointer-events: none;
  visibility: hidden;
  margin: 0px;
  height: 0px;
  opacity: 0;
}
.s-gifting-textarea.hide{
  pointer-events: none;
  visibility: hidden;
  margin: 0px;
  height: 0px;
  opacity: 0;
}
.s-gifting-filepond-placeholder-icon svg{
  margin-top: 12px;
  margin-bottom: 12px;
  margin-left: auto;
  margin-right: auto;
  height: 4rem;
  width: 3rem;
  fill: #e5e7eb;
}
.s-gifting-filepond-placeholder-text{
  font-size: 0.75rem !important;
  line-height: 1rem !important;
}
.s-gifting-filepond-placeholder-text{
  margin-left: auto;
  margin-right: auto;
  width: 65%;
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, 1);
  color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-main), -apple-system, BlinkMacSystemFont;
}
.s-gifting-skeleton-content salla-skeleton:nth-child(1){
  margin-bottom: 0.75rem;
}
.s-gifting-skeleton-content salla-skeleton:nth-child(2){
  margin-bottom: 1.25rem;
}
.s-gifting-skeleton-content salla-skeleton:nth-child(3){
  margin-bottom: 0.75rem;
}
.s-gifting-skeleton-content salla-skeleton:nth-child(4){
  margin-bottom: 1.25rem;
}
.s-gifting-skeleton .s-gifting-modal-header salla-skeleton{
  margin-bottom: 1.25rem;
}
salla-installment>.s-gifting-skeleton .s-gifting-modal-header salla-skeleton{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-gifting-skeleton .s-gifting-modal-header salla-skeleton button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-gifting-skeleton .s-gifting-modal-header salla-skeleton button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-gifting-skeleton .s-gifting-modal-header salla-skeleton button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-gifting-skeleton .s-gifting-modal-header salla-skeleton button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-gifting-skeleton .s-gifting-modal-header salla-skeleton button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-gifting-skeleton .s-gifting-modal-header salla-skeleton button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-gifting-skeleton .s-gifting-modal-header salla-skeleton button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-gifting-skeleton .s-gifting-modal-header salla-skeleton{border-radius:.75rem}
.dark salla-installment>.s-gifting-skeleton .s-gifting-modal-header salla-skeleton{color:var(--dark-text-main);background-color:var(--dark-grey)}
.s-gifting-skeleton .s-gifting-modal-title{
  margin-bottom: 1.25rem;
}
salla-installment>.s-gifting-skeleton .s-gifting-modal-title{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-gifting-skeleton .s-gifting-modal-title button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-gifting-skeleton .s-gifting-modal-title button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-gifting-skeleton .s-gifting-modal-title button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-gifting-skeleton .s-gifting-modal-title button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-gifting-skeleton .s-gifting-modal-title button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-gifting-skeleton .s-gifting-modal-title button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-gifting-skeleton .s-gifting-modal-title button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-gifting-skeleton .s-gifting-modal-title{border-radius:.75rem}
.dark salla-installment>.s-gifting-skeleton .s-gifting-modal-title{color:var(--dark-text-main);background-color:var(--dark-grey)}
.s-gifting-image{
  margin-left: 5px;
  margin-right: 5px;
}
.s-infinite-scroll-wrapper{
  margin-top: 1rem;
  text-align: center;
}
.s-infinite-scroll-last{
  margin: 0px;
  text-align: center;
}
.s-infinite-scroll-error{
  margin: 0px;
  text-align: center;
}
.s-list-tile-item{
  position: relative;
  display: flex;
  align-items: center;
  --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;
  --tw-text-opacity: 1;
  color: rgba(17, 24, 39, 1);
  color: rgba(17, 24, 39, var(--tw-text-opacity, 1));
  text-decoration-line: none;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-list-tile-item>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-list-tile-item>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-list-tile-item>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-list-tile-item>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-list-tile-item>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-list-tile-item>.justify-center{order:1}.align-start-logo.store-header .container>.s-list-tile-item>.justify-end{order:3;justify-content:start;width:auto}}
.s-list-tile-item-href{
  cursor: pointer;
}
.s-list-tile-item-href *{pointer-events:none}
.s-list-tile-item-icon{
  margin-right: 1rem;
  flex-shrink: 0;
}
.s-list-tile-item-icon:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 1rem;
  margin-right: 0px;
}
.s-list-tile-item-title{
  font-size: 1rem;
  line-height: 1.5rem;
}
.s-list-tile-item-subtitle{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.s-loading-fill-color{
  fill: #414042;
  fill: var(--color-primary);
}
.s-localization-modal-title{
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgba(17, 24, 39, 1);
  color: rgba(17, 24, 39, var(--tw-text-opacity, 1));
}
.s-localization-modal-section{
  margin-bottom: 2rem;
}
.s-localization-modal-label-slot{
  flex-grow: 1;
}
.s-localization-modal-inner{
  width: 100%;
}
.s-localization-modal-section-inner{
  margin-top: 1rem;
}
.s-localization-modal-section-inner > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.s-localization-modal-item{
  display: flex;
  align-items: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-localization-modal-item>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-localization-modal-item>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-localization-modal-item>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-localization-modal-item>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-localization-modal-item>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-localization-modal-item>.justify-center{order:1}.align-start-logo.store-header .container>.s-localization-modal-item>.justify-end{order:3;justify-content:start;width:auto}}
.s-localization-modal-input{
  height: 1rem;
  width: 1rem;
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 219, 1);
  border-color: rgba(209, 213, 219, var(--tw-border-opacity, 1));
  color: #414042;
  color: var(--color-primary);
}
.s-localization-modal-input:focus{
  --tw-ring-color: var(--color-primary);
}
.s-localization-modal-label{
  display: flex;
  flex-grow: 1;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, 1);
  color: rgba(55, 65, 81, var(--tw-text-opacity, 1));
}
.s-localization-modal-label *{pointer-events:none}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-localization-modal-label>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-localization-modal-label>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-localization-modal-label>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-localization-modal-label>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-localization-modal-label>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-localization-modal-label>.justify-center{order:1}.align-start-logo.store-header .container>.s-localization-modal-label>.justify-end{order:3;justify-content:start;width:auto}}
.s-localization-modal-label:where([dir="ltr"], [dir="ltr"] *){
  margin-left: 0.75rem;
}
.s-localization-modal-label:where([dir="rtl"], [dir="rtl"] *){
  margin-right: 0.75rem;
}
.s-localization-modal-flag{
  border-radius: 0.125rem;
}
.s-product-card-content-footer.s-localization-modal-flag button{
  border-radius: 0.125rem;
}
custom-salla-product-card.s-localization-modal-flag{border-radius:.125rem}
.s-localization-modal-currency{
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
}
.s-localization-modal-select{
  height: 2.5rem;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  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));
  background-position: right;
  background-repeat: no-repeat;
  padding-left: 1rem;
  padding-right: 1rem;
  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;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.s-product-card-content-footer.s-localization-modal-select button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-localization-modal-select{border-radius:.25rem}
.s-localization-modal-select:focus{
  border-color: #414042;
  border-color: var(--color-primary);
}
.s-localization-modal-select:where([dir="rtl"], [dir="rtl"] *){
  background-position: left;
}
.s-localization-modal-skeleton-content{
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}
.s-localization-modal-skeleton-content > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-localization-modal-skeleton-content>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-localization-modal-skeleton-content>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-localization-modal-skeleton-content>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-localization-modal-skeleton-content>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-localization-modal-skeleton-content>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-localization-modal-skeleton-content>.justify-center{order:1}.align-start-logo.store-header .container>.s-localization-modal-skeleton-content>.justify-end{order:3;justify-content:start;width:auto}}
.s-localization-modal-skeleton-item{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-localization-modal-skeleton-item>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-localization-modal-skeleton-item>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-localization-modal-skeleton-item>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-localization-modal-skeleton-item>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-localization-modal-skeleton-item>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-localization-modal-skeleton-item>.justify-center{order:1}.align-start-logo.store-header .container>.s-localization-modal-skeleton-item>.justify-end{order:3;justify-content:start;width:auto}}
.s-localization-modal-skeleton-item-flex{
  display: flex;
  align-items: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-localization-modal-skeleton-item-flex>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-localization-modal-skeleton-item-flex>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-localization-modal-skeleton-item-flex>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-localization-modal-skeleton-item-flex>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-localization-modal-skeleton-item-flex>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-localization-modal-skeleton-item-flex>.justify-center{order:1}.align-start-logo.store-header .container>.s-localization-modal-skeleton-item-flex>.justify-end{order:3;justify-content:start;width:auto}}
.s-localization-modal-skeleton-item-flex salla-skeleton:nth-child(1){
  margin-right: 0.75rem;
}
.s-localization-modal-skeleton-item-flex salla-skeleton:nth-child(1):where([dir="rtl"], [dir="rtl"] *){
  margin-right: 0px;
  margin-left: 0.75rem;
}
.s-loyalty-prize-item.swiper-slide{
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 0.5rem;
  display: flex;
  width: calc(33.33% - 10px);
  min-width: 200px;
  cursor: pointer;
  flex-direction: column;
}
.s-loyalty-prize-item.swiper-slide > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.s-loyalty-prize-item.swiper-slide{
  padding: 0px !important;
}
.s-loyalty-prize-item.swiper-slide{
  overflow: hidden;
  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));
  background-size: cover;
  text-align: center;
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.s-loyalty-prize-item.swiper-slide *{pointer-events:none}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-loyalty-prize-item.swiper-slide>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-loyalty-prize-item.swiper-slide>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-loyalty-prize-item.swiper-slide>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-loyalty-prize-item.swiper-slide>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-loyalty-prize-item.swiper-slide>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-loyalty-prize-item.swiper-slide>.justify-center{order:1}.align-start-logo.store-header .container>.s-loyalty-prize-item.swiper-slide>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-footer.s-loyalty-prize-item.swiper-slide button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-loyalty-prize-item.swiper-slide{border-radius:.25rem}
.s-loyalty-prize-item-selected{
  --tw-translate-y: -0.125rem !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;
}
.s-loyalty-prize-item-selected{
  border-width: 1px;
  border-style: solid;
  border-color: #414042;
  border-color: var(--color-primary);
  --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), 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);
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.s-loyalty-prize-item-selected .s-loyalty-prize-item-check{
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: #414042;
  border-color: var(--color-primary);
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-loyalty-prize-item-selected .s-loyalty-prize-item-check>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-loyalty-prize-item-selected .s-loyalty-prize-item-check>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-loyalty-prize-item-selected .s-loyalty-prize-item-check>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-loyalty-prize-item-selected .s-loyalty-prize-item-check>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-loyalty-prize-item-selected .s-loyalty-prize-item-check>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-loyalty-prize-item-selected .s-loyalty-prize-item-check>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-loyalty-prize-item-selected .s-loyalty-prize-item-check{order:1}.align-start-logo.store-header .container>.s-loyalty-prize-item-selected .s-loyalty-prize-item-check>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-loyalty-prize-item-selected .s-loyalty-prize-item-check{justify-content:center}
.s-loyalty-prize-item-selected .s-loyalty-prize-item-check > div{
  height: 0.625rem;
  width: 0.625rem;
  border-radius: 9999px;
  background-color: #414042;
  background-color: var(--color-primary);
}
@media (min-width: 768px){
  .min--2 .s-loyalty-prize-item-selected .s-loyalty-prize-item-check > div{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-loyalty-prize-item-selected .s-loyalty-prize-item-check > div{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-loyalty-prize-item-selected .s-loyalty-prize-item-check > div{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-loyalty-prize-item-selected .s-loyalty-prize-item-check > div{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-loyalty-prize-item-selected .s-loyalty-prize-item-check > div{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-loyalty-prize-item-selected .s-loyalty-prize-item-check > div{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-loyalty-prize-item-image{
  height: 9rem;
  width: 100%;
  background-size: cover;
  -o-object-fit: cover;
     object-fit: cover;
}
.s-loyalty-prize-item-title{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
}
.s-loyalty-prize-item-subtitle{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, 1);
  color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}
.s-loyalty-prize-item-check{
  position: absolute;
  height: 1rem;
  width: 1rem;
  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));
}
input[type=radio].sr-only div.s-loyalty-prize-item-check{transition:all .3s}
input[type=radio].sr-only:checked~div.s-loyalty-prize-item-check{border-color:var(--color-main)}
@media (min-width: 768px){
  .min--2 .s-loyalty-prize-item-check{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-loyalty-prize-item-check{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-loyalty-prize-item-check{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-loyalty-prize-item-check{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-loyalty-prize-item-check{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-loyalty-prize-item-check{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-loyalty-prize-item-check:where([dir="ltr"], [dir="ltr"] *){
  left: 1.25rem;
}
.s-loyalty-prize-item-check:where([dir="rtl"], [dir="rtl"] *){
  right: 1.25rem;
}
.s-loyalty-prize-item-points{
  margin-top: auto !important;
}
.s-loyalty-prize-item-points{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-top-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: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  color: #414042;
  color: var(--color-primary);
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-loyalty-prize-item-points>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-loyalty-prize-item-points>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-loyalty-prize-item-points>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-loyalty-prize-item-points>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-loyalty-prize-item-points>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-loyalty-prize-item-points>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-loyalty-prize-item-points{order:1}.align-start-logo.store-header .container>.s-loyalty-prize-item-points>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-loyalty-prize-item-points{justify-content:center}
.s-loyalty-program-redeem-btn{
  overflow: hidden;
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.s-loyalty-header{
  margin-bottom: 1.25rem;
  display: block;
}
salla-installment>.s-loyalty-header{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-loyalty-header button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-loyalty-header button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-loyalty-header button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-loyalty-header button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-loyalty-header button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-loyalty-header button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-loyalty-header button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-loyalty-header{border-radius:.75rem}
.dark salla-installment>.s-loyalty-header{color:var(--dark-text-main);background-color:var(--dark-grey)}
@media (max-width: 768px){
  .s-loyalty-modal .s-modal-body{
    max-height: 100%;
    overflow-y: scroll;
  }
}
.s-loyalty-skeleton .s-list-tile-item-content{
  display: block;
  width: 100%;
}
.s-loyalty-header-icon{
  position: relative;
  display: flex;
  height: 6rem;
  width: 6rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: rgba(255,158,1,0.10196);
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-loyalty-header-icon>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-loyalty-header-icon>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-loyalty-header-icon>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-loyalty-header-icon>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-loyalty-header-icon>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-loyalty-header-icon>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-loyalty-header-icon{order:1}.align-start-logo.store-header .container>.s-loyalty-header-icon>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .min--2 .s-loyalty-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-loyalty-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-loyalty-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-loyalty-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-loyalty-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-loyalty-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-loyalty-header-icon{justify-content:center}
.s-loyalty-header-icon > img{
  height: 3rem;
  width: 3rem;
}
.s-loyalty-header-title{
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.s-loyalty-header-subtitle{
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, 1);
  color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
}
.s-loyalty-activator-icon{
  display: flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgba(220, 38, 38, 1);
  background-color: rgba(220, 38, 38, var(--tw-bg-opacity, 1));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-loyalty-activator-icon>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-loyalty-activator-icon>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-loyalty-activator-icon>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-loyalty-activator-icon>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-loyalty-activator-icon>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-loyalty-activator-icon>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-loyalty-activator-icon{order:1}.align-start-logo.store-header .container>.s-loyalty-activator-icon>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .min--2 .s-loyalty-activator-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-loyalty-activator-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-loyalty-activator-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-loyalty-activator-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-loyalty-activator-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-loyalty-activator-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-loyalty-activator-icon{justify-content:center}
.s-loyalty-activator-icon > svg{
  fill: #fff;
}
.s-loyalty-confirmation-modal-content .s-placeholder-title{
  margin-bottom: 0.75rem;
}
.s-loyalty-confirmation-modal-content .s-placeholder-icon svg b{
  --tw-text-opacity: 1;
  color: rgba(251, 146, 60, 1);
  color: rgba(251, 146, 60, var(--tw-text-opacity, 1));
}
.s-loyalty-confirmation-modal-content .s-placeholder-description{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.s-loyalty-confirmation-actions{
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.s-loyalty-confirmation-actions > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1.25rem * var(--tw-space-x-reverse));
  margin-left: calc(1.25rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.s-loyalty-confirmation-actions{
  padding: 1.25rem;
  padding-top: 0.5rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-loyalty-confirmation-actions>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-loyalty-confirmation-actions>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-loyalty-confirmation-actions>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-loyalty-confirmation-actions>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-loyalty-confirmation-actions>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-loyalty-confirmation-actions>.justify-center{order:1}.align-start-logo.store-header .container>.s-loyalty-confirmation-actions>.justify-end{order:3;justify-content:start;width:auto}}
.s-loyalty-confirmation-actions:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 1;
}
.s-loyalty-widget .s-list-tile-item{
  padding: 0px !important;
}
.s-loyalty-widget-icon{
  display: flex;
  height: 4rem;
  width: 4rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: #414042;
  background-color: var(--color-primary);
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-loyalty-widget-icon>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-loyalty-widget-icon>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-loyalty-widget-icon>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-loyalty-widget-icon>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-loyalty-widget-icon>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-loyalty-widget-icon>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-loyalty-widget-icon{order:1}.align-start-logo.store-header .container>.s-loyalty-widget-icon>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .min--2 .s-loyalty-widget-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-loyalty-widget-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-loyalty-widget-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-loyalty-widget-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-loyalty-widget-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-loyalty-widget-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-loyalty-widget-icon{justify-content:center}
.s-loyalty-widget-icon > svg{
  width: 1.5rem;
  fill: #fff;
}
.s-loyalty-after-exchange .s-list-tile-item{
  position: relative;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 0.25rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.s-loyalty-after-exchange .s-list-tile-item::after{
  pointer-events: none;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  display: block;
  height: 100%;
  width: 100%;
  background-color: #414042;
  background-color: var(--color-primary);
  opacity: .08;
  --tw-content: '';
  content: var(--tw-content);
}
.s-loyalty-after-exchange .s-list-tile-item .s-list-tile-item-title{
  font-size: 15px;
}
.s-loyalty-after-exchange-reset{
  height: 1.5rem;
}
.s-loyalty-after-exchange-reset button{
  --tw-border-opacity: 1;
  border-color: rgba(248, 113, 113, 1);
  border-color: rgba(248, 113, 113, var(--tw-border-opacity, 1));
  font-size: 15px;
}
.s-loyalty-after-exchange-reset button span{
  display: flex;
  --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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-loyalty-after-exchange-reset button span>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-loyalty-after-exchange-reset button span>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-loyalty-after-exchange-reset button span>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-loyalty-after-exchange-reset button span>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-loyalty-after-exchange-reset button span>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-loyalty-after-exchange-reset button span>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-loyalty-after-exchange-reset button span{order:1}.align-start-logo.store-header .container>.s-loyalty-after-exchange-reset button span>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-loyalty-after-exchange-reset button span{justify-content:center}
.s-loyalty-after-exchange-reset button svg{
  height: 1.5rem !important;
  width: 1.5rem !important;
}
.s-loyalty-after-exchange-reset button svg{
  fill: #f87171;
}
.s-loyalty-after-exchange-reset button:hover svg{
  fill: #fff;
}
.s-loyalty-after-exchange-action{
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-loyalty-after-exchange-action>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-loyalty-after-exchange-action>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-loyalty-after-exchange-action>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-loyalty-after-exchange-action>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-loyalty-after-exchange-action>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-loyalty-after-exchange-action>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-loyalty-after-exchange-action{order:1}.align-start-logo.store-header .container>.s-loyalty-after-exchange-action>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-loyalty-after-exchange-action{justify-content:center}
.s-loyalty-placeholder{
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-loyalty-placeholder>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-loyalty-placeholder>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-loyalty-placeholder>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-loyalty-placeholder>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-loyalty-placeholder>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-loyalty-placeholder>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-loyalty-placeholder{order:1}.align-start-logo.store-header .container>.s-loyalty-placeholder>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-loyalty-placeholder{justify-content:center}
.s-loyalty-skeleton .s-loyalty-header-subtitle > salla-skeleton{
  margin-bottom: 0.75rem;
  display: block;
}
.s-loyalty-skeleton .s-loyalty-prize-item-subtitle > salla-skeleton{
  margin-bottom: 0.75rem;
  display: block;
}
.s-loyalty-skeleton .s-loyalty-header-title{
  margin-bottom: 1.25rem;
}
salla-installment>.s-loyalty-skeleton .s-loyalty-header-title{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-loyalty-skeleton .s-loyalty-header-title button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-loyalty-skeleton .s-loyalty-header-title button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-loyalty-skeleton .s-loyalty-header-title button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-loyalty-skeleton .s-loyalty-header-title button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-loyalty-skeleton .s-loyalty-header-title button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-loyalty-skeleton .s-loyalty-header-title button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-loyalty-skeleton .s-loyalty-header-title button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-loyalty-skeleton .s-loyalty-header-title{border-radius:.75rem}
.dark salla-installment>.s-loyalty-skeleton .s-loyalty-header-title{color:var(--dark-text-main);background-color:var(--dark-grey)}
.s-loyalty-skeleton-cards{
  display: flex;
  align-items: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-loyalty-skeleton-cards>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-loyalty-skeleton-cards>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-loyalty-skeleton-cards>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-loyalty-skeleton-cards>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-loyalty-skeleton-cards>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-loyalty-skeleton-cards>.justify-center{order:1}.align-start-logo.store-header .container>.s-loyalty-skeleton-cards>.justify-end{order:3;justify-content:start;width:auto}}
.s-loyalty-skeleton .s-loyalty-prize-item{
  cursor: inherit !important;
}
.s-loyalty-skeleton .s-loyalty-prize-item{
  position: relative;
  text-align: center;
}
.s-loyalty-skeleton .s-loyalty-prize-item .s-skeleton-wrapper{
  margin-left: auto;
  margin-right: auto;
}
.s-loyalty-skeleton .s-loyalty-prize-item-check{
  border-width: 0px;
}
.s-loyalty-slider{
  margin-bottom: 0.625rem;
  display: block;
}
.s-loyalty-slider .swiper-wrapper{
  height: auto !important;
}
.s-loyalty-container{
  padding: 0.625rem;
}
.s-maintenance-alert-wrapper{
  position: relative;
  display: flex;
  min-height: 40px;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  --tw-bg-opacity: 1;
  background-color: rgba(26, 38, 61, 1);
  background-color: rgba(26, 38, 61, var(--tw-bg-opacity, 1));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  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));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-maintenance-alert-wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-maintenance-alert-wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-maintenance-alert-wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-maintenance-alert-wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-maintenance-alert-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-maintenance-alert-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-maintenance-alert-wrapper{order:1}.align-start-logo.store-header .container>.s-maintenance-alert-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-maintenance-alert-wrapper{justify-content:center}
@media (min-width: 640px){
  .s-maintenance-alert-wrapper{
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.s-maintenance-alert-wrapper a{
  transition: 0.35s cubic-bezier(0.2, 1, 0.3, 1);
}
.s-maintenance-alert-wrapper *{
  color: inherit;
}
.s-maintenance-alert-close{
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
}
input[type=radio].sr-only div.s-maintenance-alert-close{transition:all .3s}
input[type=radio].sr-only:checked~div.s-maintenance-alert-close{border-color:var(--color-main)}
@media (min-width: 768px){
  .s-maintenance-alert-close{
    top: 0.75rem;
    right: 0.75rem;
  }
}
.s-maintenance-alert-close:where([dir="rtl"], [dir="rtl"] *){
  right: auto;
  right: initial;
  left: 0.25rem;
}
@media (min-width: 768px){
  .s-maintenance-alert-close:where([dir="rtl"], [dir="rtl"] *){
    left: 0.75rem;
  }
}
.s-maintenance-alert-close svg{
  height: 1rem;
  width: 1rem;
  fill: #fff;
}
@media (min-width: 768px){
  .s-maintenance-alert-close svg{
    height: 1.25rem;
    width: 1.25rem;
  }
}
.s-maintenance-alert-content{
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-maintenance-alert-content>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-maintenance-alert-content>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-maintenance-alert-content>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-maintenance-alert-content>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-maintenance-alert-content>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-maintenance-alert-content>.justify-center{order:1}.align-start-logo.store-header .container>.s-maintenance-alert-content>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 640px){
  .s-maintenance-alert-content{
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.s-maintenance-alert-container{
  display: flex;
  align-items: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-maintenance-alert-container>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-maintenance-alert-container>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-maintenance-alert-container>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-maintenance-alert-container>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-maintenance-alert-container>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-maintenance-alert-container>.justify-center{order:1}.align-start-logo.store-header .container>.s-maintenance-alert-container>.justify-end{order:3;justify-content:start;width:auto}}
.s-maintenance-alert-icon{
  margin-right: 1.25rem;
  display: none;
}
.index section.s-block.s-maintenance-alert-icon{display:none}
@media (min-width: 640px){
  .s-maintenance-alert-icon{
    display: block;
  }
}
.s-maintenance-alert-icon:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 1.25rem;
  margin-right: 0px;
}
.s-maintenance-alert-text h2{
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (min-width: 640px){
  .s-maintenance-alert-text h2{
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.s-maintenance-alert-text p{
  margin: 0px;
  text-align: right;
  font-size: 10px;
  line-height: 1.2;
}
@media (min-width: 640px){
  .s-maintenance-alert-text p{
    text-align: center;
    font-size: 0.75rem;
    line-height: 1rem;
    line-height: 1;
  }
}
.s-maintenance-alert-btn{
  position: relative;
  margin-left: 4px;
  margin-right: 4px;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  border-radius: 0.125rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(93, 213, 196, 1);
  border-color: rgba(93, 213, 196, var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgba(93, 213, 196, 1);
  background-color: rgba(93, 213, 196, var(--tw-bg-opacity, 1));
  padding: 0.5rem;
  text-align: center;
  vertical-align: middle;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.s-maintenance-alert-btn *{pointer-events:none}
.s-product-card-content-footer.s-maintenance-alert-btn button{
  border-radius: 0.125rem;
}
custom-salla-product-card.s-maintenance-alert-btn{border-radius:.125rem}
.s-maintenance-alert-btn:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(53, 203, 181, 1);
  background-color: rgba(53, 203, 181, var(--tw-bg-opacity, 1));
}
@media (min-width: 640px){
  .s-maintenance-alert-btn{
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.s-map-modal-title{
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.s-map-location-icon{
  margin-right: 0.5rem;
}
.s-map-location-icon:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 0.5rem;
  margin-right: 0px;
}
.s-map-location-icon svg{
  height: 1rem !important;
  width: 1rem !important;
}
.s-map-modal-body{
  position: relative;
  overflow: hidden;
}
.s-map-element{
  height: 400px;
  width: 100%;
}
.s-map-search-wrapper{
  position: absolute;
  top: 0px;
  z-index: 1;
  margin: 1.25rem;
  width: -webkit-fill-available;
}
input[type=radio].sr-only div.s-map-search-wrapper{transition:all .3s}
input[type=radio].sr-only:checked~div.s-map-search-wrapper{border-color:var(--color-main)}
.s-map-search-wrapper input{
  height: 2.5rem;
  width: 100%;
  padding: 0.5rem;
}
.s-map-search-wrapper input:where([dir="rtl"], [dir="rtl"] *){
  text-align: right;
}
.s-map-search-results{
  margin-top: 0px;
  display: flex;
  height: 6rem;
  flex-direction: column;
  padding: 0.5rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-map-search-results>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-map-search-results>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-map-search-results>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-map-search-results>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-map-search-results>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-map-search-results>.justify-center{order:1}.align-start-logo.store-header .container>.s-map-search-results>.justify-end{order:3;justify-content:start;width:auto}}
.s-map-modal-body .s-loading-container{
  position: absolute;
  margin: 0px;
  padding: 5rem;
}
input[type=radio].sr-only div.s-map-modal-body .s-loading-container{transition:all .3s}
input[type=radio].sr-only:checked~div.s-map-modal-body .s-loading-container{border-color:var(--color-main)}
.s-map-my-location-button{
  position: absolute;
  bottom: 1.5rem;
  left: 0px;
  margin: 0.5rem;
}
input[type=radio].sr-only div.s-map-my-location-button{transition:all .3s}
input[type=radio].sr-only:checked~div.s-map-my-location-button{border-color:var(--color-main)}
.s-map-location-button .s-button-text{
  display: flex;
  align-items: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-map-location-button .s-button-text>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-map-location-button .s-button-text>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-map-location-button .s-button-text>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-map-location-button .s-button-text>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-map-location-button .s-button-text>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-map-location-button .s-button-text>.justify-center{order:1}.align-start-logo.store-header .container>.s-map-location-button .s-button-text>.justify-end{order:3;justify-content:start;width:auto}}
.s-map-submit-button button{
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.s-menu-item{
  display: none !important;
}
@media (min-width: 1024px){
  .s-menu-item{
    display: block !important;
  }
  .s-menu-root-level{
    display: inline-block !important;
  }
}
.s-menu-non-root-level{
  position: relative;
}
.s-menu-products-wrapper{
  flex-grow: 1;
  padding: 2rem;
}
.s-menu-products-container{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}
.s-menu-submenu-unordered-list{
  margin: 2rem;
  width: 14rem;
  flex-shrink: 0;
}
.s-menu-submenu-unordered-list:where([dir="ltr"], [dir="ltr"] *){
  margin-right: 0px;
}
.s-menu-submenu-unordered-list:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 0px;
}
.s-menu-submenu-with-product{
  left: 0px;
  display: flex;
  width: 100%;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-menu-submenu-with-product>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-menu-submenu-with-product>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-menu-submenu-with-product>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-menu-submenu-with-product>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-menu-submenu-with-product>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-menu-submenu-with-product>.justify-center{order:1}.align-start-logo.store-header .container>.s-menu-submenu-with-product>.justify-end{order:3;justify-content:start;width:auto}}
.s-menu-submenu-without-product{
  width: 14rem;
}
.s-menu-footer-item{
  margin-bottom: 1.25rem;
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  line-height: 1;
}
salla-installment>.s-menu-footer-item{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-menu-footer-item button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-menu-footer-item button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-menu-footer-item button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-menu-footer-item button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-menu-footer-item button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-menu-footer-item button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-menu-footer-item button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-menu-footer-item{border-radius:.75rem}
.dark salla-installment>.s-menu-footer-item{color:var(--dark-text-main);background-color:var(--dark-grey)}
.s-menu-footer-item:last-child{
  margin-bottom: 0px;
}
.s-menu-topnav-list{
  display: none;
  align-items: center;
  white-space: nowrap;
}
.index section.s-block.s-menu-topnav-list{display:none}
@media (min-width: 1024px){
  .s-menu-topnav-list{
    display: flex;
  }
}
.s-menu-topnav-list:where([dir="ltr"], [dir="ltr"] *){
  padding-right: 1rem;
}
.s-menu-topnav-list:where([dir="rtl"], [dir="rtl"] *){
  padding-left: 1rem;
}
.s-menu-topnav-item{
  display: inline-block;
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, 1);
  border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1px;
  padding-bottom: 1px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  line-height: 1;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.s-menu-topnav-item:hover{
  opacity: 0.8;
}
.s-menu-topnav-item:where([dir="ltr"], [dir="ltr"] *){
  border-right-width: 1px;
}
.s-menu-topnav-item:first-child:where([dir="ltr"], [dir="ltr"] *){
  padding-left: 0px;
}
.s-menu-topnav-item:last-child:where([dir="ltr"], [dir="ltr"] *){
  border-width: 0px;
  padding-right: 0px;
}
.s-menu-topnav-item:where([dir="rtl"], [dir="rtl"] *){
  border-left-width: 1px;
}
.s-menu-topnav-item:first-child:where([dir="rtl"], [dir="rtl"] *){
  padding-right: 0px;
}
.s-menu-topnav-item:last-child:where([dir="rtl"], [dir="rtl"] *){
  border-width: 0px;
  padding-left: 0px;
}
.s-metadata-box{
  margin-bottom: 1.25rem;
  display: block;
  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.25rem;
}
.s-product-card-content-footer.s-metadata-box button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-metadata-box{border-radius:.25rem}
salla-installment>.s-metadata-box{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-metadata-box button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-metadata-box button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-metadata-box button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-metadata-box button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-metadata-box button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-metadata-box button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-metadata-box button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-metadata-box{border-radius:.75rem}
.dark salla-installment>.s-metadata-box{color:var(--dark-text-main);background-color:var(--dark-grey)}
.s-metadata-box-header{
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  border-bottom-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-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-metadata-box-header>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-metadata-box-header>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-metadata-box-header>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-metadata-box-header>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-metadata-box-header>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-metadata-box-header>.justify-center{order:1}.align-start-logo.store-header .container>.s-metadata-box-header>.justify-end{order:3;justify-content:start;width:auto}}
.s-metadata-row{
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0.5rem;
  line-height: 1.25rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-metadata-row>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-metadata-row>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-metadata-row>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-metadata-row>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-metadata-row>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-metadata-row>.justify-center{order:1}.align-start-logo.store-header .container>.s-metadata-row>.justify-end{order:3;justify-content:start;width:auto}}
.s-metadata-row:last-child{
  margin-bottom: 0px;
}
.s-metadata-row-name{
  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));
}
.s-modal-container{
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 200;
  overflow: hidden;
}
.s-modal-wrapper{
  height: 100%;
  overflow-y: auto;
  text-align: center;
}
.s-modal-loader{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-modal-loader>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-modal-loader>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-modal-loader>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-modal-loader>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-modal-loader>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-modal-loader>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-modal-loader{order:1}.align-start-logo.store-header .container>.s-modal-loader>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-modal-loader{justify-content:center}
.s-modal-loader::before{
  display: inline-block;
  height: 2.5rem;
  content: var(--tw-content);
  width: 2.5rem;
}
@keyframes spin{
  to{
    content: var(--tw-content);
    transform: rotate(360deg);
  }
}
.s-modal-loader::before{
  animation: spin 1s linear infinite;
  border-radius: 9999px;
  border-width: 2px;
  border-style: solid;
  border-top-color: #414042;
  border-top-color: var(--color-primary);
  border-left-color: #414042;
  border-left-color: var(--color-primary);
  border-bottom-color: rgba(243, 244, 246, 1);
  border-bottom-color: rgba(243, 244, 246, var(--tw-border-opacity, 1));
  --tw-border-opacity: 1;
  border-right-color: rgba(243, 244, 246, 1);
  border-right-color: rgba(243, 244, 246, var(--tw-border-opacity, 1));
  --tw-content: '';
  content: var(--tw-content);
}
.s-modal-close{
  position: absolute;
  top: 0.75rem;
  z-index: 10;
  width: 2.75rem;
  cursor: pointer;
  border-style: none;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.s-modal-close *{pointer-events:none}
input[type=radio].sr-only div.s-modal-close{transition:all .3s}
input[type=radio].sr-only:checked~div.s-modal-close{border-color:var(--color-main)}
.s-modal-close:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.s-modal-close:where([dir="ltr"], [dir="ltr"] *){
  right: 0px;
}
.s-modal-close:where([dir="rtl"], [dir="rtl"] *){
  left: 0px;
}
.s-modal-close svg{
  width: 1.25rem;
  fill: #f87171;
}
.s-modal-close svg:hover{
  fill: #ef4444;
}
.s-modal-header{
  flex-direction: column;
}
.s-modal-header-inner{
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  padding-right: 2rem;
  text-align: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-modal-header-inner>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-modal-header-inner>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-modal-header-inner>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-modal-header-inner>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-modal-header-inner>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-modal-header-inner>.justify-center{order:1}.align-start-logo.store-header .container>.s-modal-header-inner>.justify-end{order:3;justify-content:start;width:auto}}
salla-installment>.s-modal-header-inner{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-modal-header-inner button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-modal-header-inner button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-modal-header-inner button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-modal-header-inner button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-modal-header-inner button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-modal-header-inner button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-modal-header-inner button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-modal-header-inner{border-radius:.75rem}
.dark salla-installment>.s-modal-header-inner{color:var(--dark-text-main);background-color:var(--dark-grey)}
@media (min-width: 640px){
  .s-modal-header-inner{
    display: block;
  }
}
@media (min-width: 768px){
  .s-modal-header-inner{
    padding: 0px !important;
  }
}
.s-modal-header-inner:where([dir="rtl"], [dir="rtl"] *){
  padding-left: 2rem;
  padding-right: 0px;
}
.s-modal-header-content{
  display: flex;
  flex-direction: column;
  text-align: left;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-modal-header-content>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-modal-header-content>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-modal-header-content>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-modal-header-content>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-modal-header-content>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-modal-header-content>.justify-center{order:1}.align-start-logo.store-header .container>.s-modal-header-content>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .s-modal-header-content{
    text-align: center;
  }
}
.s-modal-header-content:where([dir="rtl"], [dir="rtl"] *){
  text-align: right;
}
@media (min-width: 768px){
  .s-modal-header-content:where([dir="rtl"], [dir="rtl"] *){
    text-align: center;
  }
}
.s-modal-header-img{
  margin-left: auto;
  margin-right: auto;
  max-width: 150px;
}
@media (min-width: 640px){
  .s-modal-header-img{
    margin-bottom: 1rem;
  }
}
.s-modal-icon{
  display: inline-flex;
  height: 4rem;
  width: 4rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border-width: 1px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, 1);
  border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
  font-size: 1.875rem;
  line-height: 2.25rem;
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.s-modal-icon{order:1}}
@media (min-width: 768px){
  .min--2 .s-modal-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-modal-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-modal-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-modal-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-modal-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-modal-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-modal-icon{justify-content:center}
@media (min-width: 640px){
  .s-modal-icon{
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    height: 5rem;
    width: 5rem;
  }
}
.s-modal-icon:where([dir="ltr"], [dir="ltr"] *){
  margin-right: 0.5rem;
}
@media (min-width: 640px){
  .s-modal-icon:where([dir="ltr"], [dir="ltr"] *){
    margin-right: 0px;
  }
}
.s-modal-icon:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 0.5rem;
}
@media (min-width: 640px){
  .s-modal-icon:where([dir="rtl"], [dir="rtl"] *){
    margin-left: 0px;
  }
}
.s-modal-icon svg{
  fill: #9ca3af;
}
.s-modal-bg-normal{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
}
.s-modal-bg-success{
  --tw-border-opacity: 1;
  border-color: rgba(134, 239, 172, 1);
  border-color: rgba(134, 239, 172, var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgba(220, 252, 231, 1);
  background-color: rgba(220, 252, 231, var(--tw-bg-opacity, 1));
}
.s-modal-bg-success svg{
  fill: #16a34a;
}
.s-modal-bg-error{
  --tw-border-opacity: 1;
  border-color: rgba(252, 165, 165, 1);
  border-color: rgba(252, 165, 165, var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgba(254, 226, 226, 1);
  background-color: rgba(254, 226, 226, var(--tw-bg-opacity, 1));
}
.s-modal-bg-error svg{
  fill: #dc2626;
}
.s-modal-bg-primary{
  border-color: #414042;
  border-color: var(--color-primary);
  background-color: #414042;
  background-color: var(--color-primary);
}
.s-modal-bg-primary svg{
  fill: #ff6767;
  fill: var(--color-primary-reverse);
}
.s-modal-title{
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgba(17, 24, 39, 1);
  color: rgba(17, 24, 39, var(--tw-text-opacity, 1));
}
@media (min-width: 640px){
  .s-modal-title{
    margin-bottom: 0.5rem;
  }
}
.s-modal-sub-title{
  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));
}
@media (min-width: 640px){
  .s-modal-sub-title{
    margin-bottom: 0.5rem;
  }
}
.s-modal-title-below{
  order: 10;
}
.s-modal-body-slot{
  width: 100%;
}
.s-modal-body{
  position: fixed;
  left: 0px;
  bottom: 0px;
  display: inline-block;
  width: 100%;
  --tw-translate-y: 1rem;
  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));
  overflow: hidden;
  border-radius: 0.25rem;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
  --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px 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);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
@media (min-width: 640px){
  .s-modal-body{
    position: relative;
    margin-top: 2rem;
    margin-bottom: 2rem;
    --tw-translate-y: 0px;
    --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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    overflow: visible;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }
}
@media (min-width: 768px){
  .s-modal-body{
    left: auto;
    left: initial;
    bottom: auto;
    bottom: initial;
  }
}
.s-modal-body:where([dir="ltr"], [dir="ltr"] *){
  text-align: left;
}
.s-modal-body:where([dir="rtl"], [dir="rtl"] *){
  text-align: right;
}
.s-modal-padding{
  padding: 1rem;
  padding-top: 1.5rem;
}
@media (min-width: 640px){
  .s-modal-padding{
    padding: 1.5rem;
  }
}
.s-modal-spacer{
  display: inline-block;
  height: 100vh;
}
.s-modal-align-middle{
  vertical-align: bottom;
}
@media (min-width: 640px){
  .s-modal-align-middle{
    vertical-align: middle;
  }
}
.s-modal-align-top{
  vertical-align: bottom;
}
@media (min-width: 640px){
  .s-modal-align-top{
    vertical-align: top;
  }
}
.s-modal-align-bottom{
  vertical-align: bottom;
}
.s-modal-overlay{
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: rgba(107, 114, 128, 1);
  background-color: rgba(107, 114, 128, var(--tw-bg-opacity, 1));
  --tw-bg-opacity: 0.75;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.s-modal-overlay-leaving{
  opacity: 0;
}
.s-modal-entering{
  --tw-translate-y: 0px;
  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;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
@media (min-width: 640px){
  .s-modal-entering{
    --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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
}
.s-modal-leaving{
  --tw-translate-y: 1rem;
  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;
}
@media (min-width: 640px){
  .s-modal-leaving{
    --tw-translate-y: 0px;
    --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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
}
.s-modal-is-center{
  align-items: center;
}
@media (min-width: 640px){
  .s-modal-is-center{
    text-align: center;
  }
  .s-modal-xs{
    max-width: 380px;
  }
  .s-modal-sm{
    max-width: 480px;
  }
}
@media (min-width: 768px){
  .s-modal-md{
    max-width: 768px;
  }
}
.s-modal-lg{
  max-width: 992px;
}
.s-modal-xl{
  max-width: 1280px;
}
.s-modal-full{
  height: 100%;
  width: 100%;
}
@media (min-width: 768px){
  .s-modal-full{
    height: calc(100% - 70px);
    width: calc(100% - 70px);
  }
}
.s-notifications-container > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.625rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.625rem * var(--tw-space-y-reverse));
}
@media (min-width: 768px){
  .s-notifications-container > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1.25rem * (1 - var(--tw-space-y-reverse)));
    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
  }
}
.s-notifications-item{
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
}
.s-notifications-item > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.s-notifications-item{
  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.25rem;
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
.s-notifications-item *{pointer-events:none}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-notifications-item>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-notifications-item>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-notifications-item>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-notifications-item>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-notifications-item>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-notifications-item>.justify-center{order:1}.align-start-logo.store-header .container>.s-notifications-item>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-footer.s-notifications-item button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-notifications-item{border-radius:.25rem}
.s-notifications-item:hover{
  --tw-text-opacity: 1;
  color: rgba(75, 85, 99, 1);
  color: rgba(75, 85, 99, var(--tw-text-opacity, 1));
  --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), 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);
}
.s-notifications-item:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 1;
}
.s-notifications-item-icon{
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  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-size: 1.25rem;
  line-height: 1.75rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-notifications-item-icon>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-notifications-item-icon>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-notifications-item-icon>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-notifications-item-icon>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-notifications-item-icon>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-notifications-item-icon>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-notifications-item-icon{order:1}.align-start-logo.store-header .container>.s-notifications-item-icon>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .min--2 .s-notifications-item-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-notifications-item-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-notifications-item-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-notifications-item-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-notifications-item-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-notifications-item-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-notifications-item-icon{justify-content:center}
.s-notifications-item-icon-new{
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, 1);
  color: rgba(248, 113, 113, var(--tw-text-opacity, 1));
}
.s-notifications-item-content{
  flex: 1 1 0%;
}
@media (min-width: 768px){
  .s-notifications-item-content{
    display: flex;
  }
}
.s-notifications-item-content-leading{
  flex: 1 1 0%;
}
.s-notifications-item-content-leading h4{
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  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-notifications-item-content-leading p{
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media (min-width: 768px){
  .s-notifications-item-content-leading p{
    margin-bottom: 0px;
  }
}
.s-notifications-item-content-trailing{
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.s-notifications-item-content-trailing-icon:where([dir="ltr"], [dir="ltr"] *){
  margin-right: 0.375rem;
}
.s-notifications-item-content-trailing-icon:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 0.375rem;
}
.s-notifications-item-read{
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, 1);
  color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}
.s-notifications-no-content{
  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));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-notifications-no-content>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-notifications-no-content>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-notifications-no-content>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-notifications-no-content>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-notifications-no-content>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-notifications-no-content>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-notifications-no-content{order:1}.align-start-logo.store-header .container>.s-notifications-no-content>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-notifications-no-content{justify-content:center}
.s-notifications-item-shadow:hover{
  box-shadow: 5px 10px 30px rgba(43,45,52,0.05098);
}
.s-offer-wrapper{
  position: relative;
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
  padding: 0.625rem;
}
@media (min-width: 640px){
  .s-offer-wrapper{
    padding: 1.25rem;
  }
}
@media (min-width: 768px){
  .s-offer-wrapper{
    margin-bottom: 4rem;
  }
}
.s-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.s-offer-corner-badge{transition:all .3s}
input[type=radio].sr-only:checked~div.s-offer-corner-badge{border-color:var(--color-main)}
.s-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(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.s-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(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.s-offer-slide-one-sixth{
  width: 50% !important;
}
@media (min-width: 640px){
  .s-offer-slide-one-sixth{
    width: 33.333333% !important;
  }
}
@media (min-width: 768px){
  .s-offer-slide-one-sixth{
    width: 25% !important;
  }
}
@media (min-width: 1024px){
  .s-offer-slide-one-sixth{
    width: 16.666667% !important;
  }
}
.s-offer-slide-one-sixth-single{
  align-items: center !important;
}
.s-offer-slide-one-sixth-single{
  display: flex;
  gap: 0.75rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-offer-slide-one-sixth-single>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-slide-one-sixth-single>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-offer-slide-one-sixth-single>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-slide-one-sixth-single>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-offer-slide-one-sixth-single>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-offer-slide-one-sixth-single>.justify-center{order:1}.align-start-logo.store-header .container>.s-offer-slide-one-sixth-single>.justify-end{order:3;justify-content:start;width:auto}}
.s-offer-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;
  --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, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-offer-slide-cat-entry>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-slide-cat-entry>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-offer-slide-cat-entry>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-slide-cat-entry>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-offer-slide-cat-entry>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-offer-slide-cat-entry>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-offer-slide-cat-entry{order:1}.align-start-logo.store-header .container>.s-offer-slide-cat-entry>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-offer-slide-cat-entry{justify-content:center}
.s-product-card-content-footer.s-offer-slide-cat-entry button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-offer-slide-cat-entry{border-radius:.25rem}
.s-offer-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 rgba(43,45,52,0.05098);
  --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), 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);
}
.s-offer-slide-cat-entry i{
  margin-bottom: 1rem;
  display: inline-block;
  font-size: 33px;
  color: #414042;
  color: var(--color-primary);
}
.s-offer-slide-cat-entry h4{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
}
.s-offer-slide-one-fourth{
  height: auto;
  max-width: 310px;
}
@media (min-width: 640px){
  .s-offer-slide-one-fourth{
    width: 50%;
  }
}
@media (min-width: 768px){
  .s-offer-slide-one-fourth{
    width: 33.333333%;
  }
}
@media (min-width: 1024px){
  .s-offer-slide-one-fourth{
    width: 25%;
  }
}
.s-offer-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, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-offer-slide-offer-entry>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-slide-offer-entry>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-offer-slide-offer-entry>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-slide-offer-entry>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-offer-slide-offer-entry>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-offer-slide-offer-entry>.justify-center{order:1}.align-start-logo.store-header .container>.s-offer-slide-offer-entry>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-footer.s-offer-slide-offer-entry button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-offer-slide-offer-entry{border-radius:.25rem}
.s-offer-slide-offer-entry:hover{
  --tw-shadow: 5px 10px 30px rgba(43,45,52,0.05098);
  --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), 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);
}
.s-offer-slide-offer-entry-price-quantity-container{
  display: flex;
  width: 100%;
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
  padding: 0.75rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-offer-slide-offer-entry-price-quantity-container>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-slide-offer-entry-price-quantity-container>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-offer-slide-offer-entry-price-quantity-container>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-slide-offer-entry-price-quantity-container>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-offer-slide-offer-entry-price-quantity-container>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-offer-slide-offer-entry-price-quantity-container>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-offer-slide-offer-entry-price-quantity-container{order:1}.align-start-logo.store-header .container>.s-offer-slide-offer-entry-price-quantity-container>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-offer-slide-offer-entry-price-quantity-container{justify-content:center}
.s-offer-slide-offer-entry-quantity{
  margin-bottom: 0.25rem;
}
.s-offer-slide-offer-entry-price{
  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));
}
.s-offer-slide-offer-entry-price-amount{
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 800;
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, 1);
  color: rgba(248, 113, 113, var(--tw-text-opacity, 1));
}
.s-offer-slide-offer-entry-price-amount-percent{
  width: 100%;
  border-top-width: 1px;
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, 1);
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity, 1));
  padding: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.s-offer-slide-offer-entry-price-amount-percent span{
  font-weight: 700;
}
.s-offer-discount-list{
  margin-top: 1.25rem;
}
.s-offer-discount-list > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.625rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.625rem * var(--tw-space-y-reverse));
}
.s-offer-discount-list-item{
  display: flex;
  justify-content: space-between;
  border-top-width: 1px;
  padding-top: 0.625rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-offer-discount-list-item>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-discount-list-item>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-offer-discount-list-item>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-discount-list-item>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-offer-discount-list-item>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-offer-discount-list-item>.justify-center{order:1}.align-start-logo.store-header .container>.s-offer-discount-list-item>.justify-end{order:3;justify-content:start;width:auto}}
.s-offer-discount-list-item-money{
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, 1);
  color: rgba(248, 113, 113, var(--tw-text-opacity, 1));
}
.s-offer-discount-list-item-discount{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.s-offer-discount-list-item-discount span{
  font-weight: 700;
}
.s-offer-bank-wrapper{
  position: relative;
  display: flex;
  min-height: 144px;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  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.5rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-offer-bank-wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-bank-wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-offer-bank-wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-bank-wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-offer-bank-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-offer-bank-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-offer-bank-wrapper{order:1}.align-start-logo.store-header .container>.s-offer-bank-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-offer-bank-wrapper{justify-content:center}
.s-product-card-content-footer.s-offer-bank-wrapper button{
  border-radius: 0.5rem;
}
custom-salla-product-card.s-offer-bank-wrapper{border-radius:.5rem}
.s-offer-bank-wrapper:hover{
  --tw-shadow: 5px 10px 30px rgba(43,45,52,0.05098);
  --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), 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);
}
.s-offer-bank-wrapper-multi-spacer{
  margin-top: 1.25rem;
}
.s-offer-bank-wrapper-sinlge-item{
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-offer-bank-wrapper-sinlge-item>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-bank-wrapper-sinlge-item>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-offer-bank-wrapper-sinlge-item>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-bank-wrapper-sinlge-item>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-offer-bank-wrapper-sinlge-item>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-offer-bank-wrapper-sinlge-item>.justify-center{order:1}.align-start-logo.store-header .container>.s-offer-bank-wrapper-sinlge-item>.justify-end{order:3;justify-content:start;width:auto}}
.s-offer-bank-logo{
  margin-bottom: 0.25rem;
  display: flex;
  height: 5rem;
  width: 5rem;
  align-items: center;
  border-radius: 0.25rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-offer-bank-logo>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-bank-logo>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-offer-bank-logo>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-bank-logo>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-offer-bank-logo>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-offer-bank-logo>.justify-center{order:1}.align-start-logo.store-header .container>.s-offer-bank-logo>.justify-end{order:3;justify-content:start;width:auto}}
.s-offer-bank-logo img{
  height: 100%;
  max-height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.s-offer-bank-payment-wrapper{
  display: flex;
  min-width: 84px;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-offer-bank-payment-wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-bank-payment-wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-offer-bank-payment-wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-bank-payment-wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-offer-bank-payment-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-offer-bank-payment-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-offer-bank-payment-wrapper{order:1}.align-start-logo.store-header .container>.s-offer-bank-payment-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-offer-bank-payment-wrapper{justify-content:center}
.s-offer-bank-payment-single{
  display: flex;
  height: 2rem;
  width: 3rem;
  align-items: center;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-offer-bank-payment-single>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-bank-payment-single>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-offer-bank-payment-single>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-bank-payment-single>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-offer-bank-payment-single>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-offer-bank-payment-single>.justify-center{order:1}.align-start-logo.store-header .container>.s-offer-bank-payment-single>.justify-end{order:3;justify-content:start;width:auto}}
.s-offer-bank-payment-single img{
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.s-offer-bank-payment-discount-percent{
  position: absolute;
  top: -1rem;
  left: auto;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgba(254, 226, 226, 1);
  background-color: rgba(254, 226, 226, var(--tw-bg-opacity, 1));
  padding: 0.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgba(220, 38, 38, 1);
  color: rgba(220, 38, 38, var(--tw-text-opacity, 1));
}
input[type=radio].sr-only div.s-offer-bank-payment-discount-percent{transition:all .3s}
input[type=radio].sr-only:checked~div.s-offer-bank-payment-discount-percent{border-color:var(--color-main)}
@media (min-width: 768px){
  .min--2 .s-offer-bank-payment-discount-percent{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-offer-bank-payment-discount-percent{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-offer-bank-payment-discount-percent{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-offer-bank-payment-discount-percent{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-offer-bank-payment-discount-percent{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-offer-bank-payment-discount-percent{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-offer-bank-message{
  width: 100%;
}
.s-offer-bank-message h2{
  max-width: 92%;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgba(220, 38, 38, 1);
  color: rgba(220, 38, 38, var(--tw-text-opacity, 1));
}
.s-offer-bank-message p{
  max-width: 95%;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  --tw-text-opacity: 1;
  color: rgba(75, 85, 99, 1);
  color: rgba(75, 85, 99, var(--tw-text-opacity, 1));
}
.s-offer-bank-message-amount{
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgba(185, 28, 28, 1);
  color: rgba(185, 28, 28, var(--tw-text-opacity, 1));
}
.s-offer-bank-payment-nav{
  margin-left: 3.5rem !important;
  margin-right: 3.5rem !important;
}
.s-offer-.s-slider-block__title{
  position: relative;
  margin-bottom: 1.25rem;
}
salla-installment>.s-offer-.s-slider-block__title{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-offer-.s-slider-block__title button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-offer-.s-slider-block__title button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-offer-.s-slider-block__title button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-offer-.s-slider-block__title button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-offer-.s-slider-block__title button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-offer-.s-slider-block__title button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-offer-.s-slider-block__title button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-offer-.s-slider-block__title{border-radius:.75rem}
.dark salla-installment>.s-offer-.s-slider-block__title{color:var(--dark-text-main);background-color:var(--dark-grey)}
.s-offer-.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));
  --tw-content: 'ee30';
  content: var(--tw-content);
}
.s-offer-.s-slider-block__title:where([dir="ltr"], [dir="ltr"] *)::before{
  content: var(--tw-content);
  left: 0px;
}
.s-offer-.s-slider-block__title:where([dir="rtl"], [dir="rtl"] *)::before{
  content: var(--tw-content);
  right: 0px;
}
.s-offer-.s-offer-wrapper .s-slider-block__title h2{
  z-index: 0;
  font-size: 1.125rem;
  line-height: 1.75rem;
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, 1);
  color: rgba(239, 68, 68, var(--tw-text-opacity, 1));
}
.s-offer-.s-offer-wrapper .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;
}
.s-offer-wrapper .s-slider-block__title::before{
  content: \ee30;
  font-family: sallaicons;
  position: absolute;
  top: 1rem;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  z-index: -1;
  color: rgba(254, 242, 242, 1);
}
.s-offer-modal-body{
  display: flex;
  overflow-x: auto;
  margin-left: -32px;
  margin-right: -32px;
  padding-left: 32px;
  padding-right: 32px;
  gap: 24px;
  padding-bottom: 32px;
  -webkit-overflow-scrolling: touch;
}
.s-offer-modal-body::-webkit-scrollbar{
  display: none;
}
.s-offer-modal-badge{
  margin-bottom: 0.625rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
  --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;
  padding-left: 1rem;
  padding-right: 1rem;
  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));
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.s-offer-modal-badge{order:1}}
.s-product-card-content-sub.s-offer-modal-badge{justify-content:center}
.s-offer-modal-badge:where([dir="ltr"], [dir="ltr"] *){
  margin-left: 0.625rem;
}
.s-offer-modal-badge:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 0.625rem;
}
.s-offer-modal-badge-icon:where([dir="ltr"], [dir="ltr"] *){
  margin-left: 0.375rem;
}
.s-offer-modal-badge-icon:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 0.375rem;
}
.s-offer-modal-badge-icon svg{
  margin-bottom: 1rem;
  display: inline-block;
  height: 1.5rem;
  width: 1.5rem;
  fill: #414042;
  fill: var(--color-primary);
}
.s-offer-modal-badge-text{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
}
.s-offer-modal-cat-item.swiper-slide{
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  height: 9rem;
  max-width: 180px;
  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;
  --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, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-offer-modal-cat-item.swiper-slide>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-modal-cat-item.swiper-slide>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-offer-modal-cat-item.swiper-slide>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-modal-cat-item.swiper-slide>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-offer-modal-cat-item.swiper-slide>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-offer-modal-cat-item.swiper-slide>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-offer-modal-cat-item.swiper-slide{order:1}.align-start-logo.store-header .container>.s-offer-modal-cat-item.swiper-slide>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-offer-modal-cat-item.swiper-slide{justify-content:center}
.s-product-card-content-footer.s-offer-modal-cat-item.swiper-slide button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-offer-modal-cat-item.swiper-slide{border-radius:.25rem}
.s-offer-modal-cat-item.swiper-slide: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 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), 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);
}
.s-offer-modal-product.swiper-slide{
  display: flex;
  width: 70%;
  flex-shrink: 0;
  flex-grow: 1;
  flex-direction: column;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-offer-modal-product.swiper-slide>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-modal-product.swiper-slide>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-offer-modal-product.swiper-slide>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-modal-product.swiper-slide>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-offer-modal-product.swiper-slide>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-offer-modal-product.swiper-slide>.justify-center{order:1}.align-start-logo.store-header .container>.s-offer-modal-product.swiper-slide>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 640px){
  .s-offer-modal-product.swiper-slide{
    width: 40%;
  }
}
@media (min-width: 1024px){
  .s-offer-modal-product.swiper-slide{
    width: 28%;
  }
}
.s-offer-modal-product-image-wrap{
  position: relative;
  margin-bottom: 1rem;
  display: block;
  height: 8rem;
  overflow: hidden;
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, 1);
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity, 1));
}
.s-product-card-content-footer.s-offer-modal-product-image-wrap button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-offer-modal-product-image-wrap{border-radius:.25rem}
.s-offer-modal-product-image{
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.s-offer-modal-not-available{
  --tw-grayscale: grayscale(100%);
  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-offer-modal-product-info{
  margin-bottom: 1rem;
}
.s-offer-modal-product-name{
  margin-bottom: 0.375rem;
  display: inline-block;
  width: 11rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, 1);
  color: rgba(31, 41, 55, 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-offer-modal-product-name:hover{
  color: #414042;
  color: var(--color-primary);
}
.s-offer-modal-product-price{
  margin-bottom: 1.25rem;
  display: flex;
  width: 100%;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-offer-modal-product-price>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-modal-product-price>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-offer-modal-product-price>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-modal-product-price>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-offer-modal-product-price>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-offer-modal-product-price>.justify-center{order:1}.align-start-logo.store-header .container>.s-offer-modal-product-price>.justify-end{order:3;justify-content:start;width:auto}}
salla-installment>.s-offer-modal-product-price{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-offer-modal-product-price button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-offer-modal-product-price button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-offer-modal-product-price button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-offer-modal-product-price button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-offer-modal-product-price button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-offer-modal-product-price button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-offer-modal-product-price button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-offer-modal-product-price{border-radius:.75rem}
.dark salla-installment>.s-offer-modal-product-price{color:var(--dark-text-main);background-color:var(--dark-grey)}
@media (min-width: 768px){
  .s-offer-modal-product-price{
    margin-bottom: 0px;
  }
}
@media (min-width: 640px){
  .s-offer-modal-product-price:where([dir="ltr"], [dir="ltr"] *){
    margin-left: 0.5rem;
  }
  .s-offer-modal-product-price:where([dir="rtl"], [dir="rtl"] *){
    margin-right: 0.5rem;
  }
}
.s-offer-modal-product-sale-price{
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, 1);
  color: rgba(239, 68, 68, var(--tw-text-opacity, 1));
}
.s-offer-modal-product-old-price{
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
  --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;
}
.s-offer-modal-btn-wrap{
  margin-top: auto;
}
.s-offer-modal-header-icon{
  display: inline-flex;
  height: 4rem;
  width: 4rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border-width: 1px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, 1);
  border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.s-offer-modal-header-icon{order:1}}
@media (min-width: 768px){
  .min--2 .s-offer-modal-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-offer-modal-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-offer-modal-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-offer-modal-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-offer-modal-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-offer-modal-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-offer-modal-header-icon{justify-content:center}
@media (min-width: 640px){
  .s-offer-modal-header-icon{
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    height: 5rem;
    width: 5rem;
  }
}
.s-offer-modal-header-icon:where([dir="ltr"], [dir="ltr"] *){
  margin-right: 0.5rem;
}
@media (min-width: 640px){
  .s-offer-modal-header-icon:where([dir="ltr"], [dir="ltr"] *){
    margin-right: 0px;
  }
}
.s-offer-modal-header-icon:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 0.5rem;
}
@media (min-width: 640px){
  .s-offer-modal-header-icon:where([dir="rtl"], [dir="rtl"] *){
    margin-left: 0px;
  }
}
.s-offer-modal-header-icon svg{
  height: 1.75rem;
  width: 1.75rem;
  flex-shrink: 0;
  fill: #9ca3af;
}
.s-offer-modal-footer{
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  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));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-offer-modal-footer>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-modal-footer>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-offer-modal-footer>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-modal-footer>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-offer-modal-footer>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-offer-modal-footer>.justify-center{order:1}.align-start-logo.store-header .container>.s-offer-modal-footer>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 640px){
  .s-offer-modal-footer{
    margin-top: 2rem;
    flex-direction: row;
  }
}
.s-offer-modal-expiry{
  margin-bottom: 1.25rem;
}
salla-installment>.s-offer-modal-expiry{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-offer-modal-expiry button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-offer-modal-expiry button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-offer-modal-expiry button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-offer-modal-expiry button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-offer-modal-expiry button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-offer-modal-expiry button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-offer-modal-expiry button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-offer-modal-expiry{border-radius:.75rem}
.dark salla-installment>.s-offer-modal-expiry{color:var(--dark-text-main);background-color:var(--dark-grey)}
@media (min-width: 768px){
  .s-offer-modal-expiry{
    margin-bottom: 0px;
  }
}
.s-offer-modal-remember-label{
  display: flex;
  cursor: pointer;
  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;
}
.s-offer-modal-remember-label *{pointer-events:none}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-offer-modal-remember-label>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-modal-remember-label>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-offer-modal-remember-label>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-modal-remember-label>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-offer-modal-remember-label>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-offer-modal-remember-label>.justify-center{order:1}.align-start-logo.store-header .container>.s-offer-modal-remember-label>.justify-end{order:3;justify-content:start;width:auto}}
.s-offer-modal-remember-label:hover{
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, 1);
  color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}
@media (min-width: 640px){
  .s-offer-modal-remember-label:where([dir="ltr"], [dir="ltr"] *){
    margin-left: 0.5rem;
  }
  .s-offer-modal-remember-label:where([dir="rtl"], [dir="rtl"] *){
    margin-right: 0.5rem;
  }
}
.s-offer-modal-remember-input{
  height: 1.5rem;
  width: 1.5rem;
  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));
  color: #414042;
  color: var(--color-primary);
}
.s-product-card-content-footer.s-offer-modal-remember-input button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-offer-modal-remember-input{border-radius:.25rem}
.s-offer-modal-remember-input:focus{
  --tw-ring-color: transparent;
}
.s-offer-modal-slider-centered .swiper-wrapper{
  justify-content: center;
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.s-offer-modal-slider-centered .swiper-wrapper{order:1}}
.s-product-card-content-sub.s-offer-modal-slider-centered .swiper-wrapper{justify-content:center}
.s-offer-modal-slider-centered .s-offer-modal-slider-item{
  display: flex;
  max-width: 28%;
  flex-shrink: 0;
  flex-grow: 1;
  flex-direction: column;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-offer-modal-slider-centered .s-offer-modal-slider-item>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-modal-slider-centered .s-offer-modal-slider-item>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-offer-modal-slider-centered .s-offer-modal-slider-item>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-modal-slider-centered .s-offer-modal-slider-item>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-offer-modal-slider-centered .s-offer-modal-slider-item>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-offer-modal-slider-centered .s-offer-modal-slider-item>.justify-center{order:1}.align-start-logo.store-header .container>.s-offer-modal-slider-centered .s-offer-modal-slider-item>.justify-end{order:3;justify-content:start;width:auto}}
.s-offer-modal-skeleton{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-offer-modal-skeleton>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-modal-skeleton>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-offer-modal-skeleton>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-modal-skeleton>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-offer-modal-skeleton>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-offer-modal-skeleton>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-offer-modal-skeleton{order:1}.align-start-logo.store-header .container>.s-offer-modal-skeleton>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-offer-modal-skeleton{justify-content:center}
.s-offer-modal-skeleton-items{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  width: 100%;
  align-items: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-offer-modal-skeleton-items>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-modal-skeleton-items>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-offer-modal-skeleton-items>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-modal-skeleton-items>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-offer-modal-skeleton-items>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-offer-modal-skeleton-items>.justify-center{order:1}.align-start-logo.store-header .container>.s-offer-modal-skeleton-items>.justify-end{order:3;justify-content:start;width:auto}}
.s-offer-modal-skeleton-item{
  cursor: inherit !important;
}
.s-offer-modal-skeleton-item{
  position: relative;
  margin-right: 1.25rem;
  width: 33.333333%;
  text-align: center;
}
.s-offer-modal-skeleton-item:last-child{
  margin-right: 0px;
}
.s-offer-modal-skeleton-item:where([dir="rtl"], [dir="rtl"] *){
  margin-right: 0px;
  margin-left: 1.25rem;
}
.s-offer-modal-skeleton-item:last-child:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 0px;
}
.s-offer-modal-skeleton-header{
  width: 100%;
}
.s-offer-modal-skeleton-header salla-skeleton{
  margin-left: auto;
  margin-right: auto;
}
.s-offer-modal-skeleton-header salla-skeleton:nth-child(1){
  margin-bottom: 1.25rem;
}
.s-offer-modal-skeleton-header salla-skeleton:nth-child(2){
  margin-bottom: 0.75rem;
}
.s-offer-modal-skeleton-header salla-skeleton:nth-child(3){
  margin-bottom: 1.25rem;
}
.s-offer-modal-skeleton-item-subtitle{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-offer-modal-skeleton-item-subtitle>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-modal-skeleton-item-subtitle>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-offer-modal-skeleton-item-subtitle>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-modal-skeleton-item-subtitle>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-offer-modal-skeleton-item-subtitle>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-offer-modal-skeleton-item-subtitle>.justify-center{order:1}.align-start-logo.store-header .container>.s-offer-modal-skeleton-item-subtitle>.justify-end{order:3;justify-content:start;width:auto}}
.s-offer-modal-skeleton-item-subtitle div svg{
  height: 1rem;
  width: 1rem;
  fill: currentColor;
  --tw-text-opacity: 1;
  color: rgba(209, 213, 219, 1);
  color: rgba(209, 213, 219, var(--tw-text-opacity, 1));
}
.s-offer-modal-skeleton-item-title{
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.s-offer-modal-skeleton-footer{
  margin-top: 1.5rem;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-offer-modal-skeleton-footer>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-modal-skeleton-footer>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-offer-modal-skeleton-footer>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-offer-modal-skeleton-footer>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-offer-modal-skeleton-footer>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-offer-modal-skeleton-footer>.justify-center{order:1}.align-start-logo.store-header .container>.s-offer-modal-skeleton-footer>.justify-end{order:3;justify-content:start;width:auto}}
.s-offer-modal-discount-table{
  width: 100%;
  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));
}
.s-offer-modal-discount-table table{
  width: 100%;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgba(119, 119, 119, 1);
  color: rgba(119, 119, 119, var(--tw-text-opacity, 1));
}
.s-offer-modal-discount-table tr{
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(238, 238, 238, 1);
  border-color: rgba(238, 238, 238, var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgba(252, 252, 252, 1);
  background-color: rgba(252, 252, 252, var(--tw-bg-opacity, 1));
}
.s-offer-modal-discount-table tr:last-child{
  border-bottom-width: 0px;
}
.s-offer-modal-discount-table tr td{
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.s-offer-modal-discount-table tr td:where([dir="rtl"], [dir="rtl"] *){
  text-align: right;
}
.s-offer-modal-discount-table-cell{
  text-align: right;
}
.s-offer-modal-discount-table-cell:where([dir="rtl"], [dir="rtl"] *){
  text-align: left !important;
}
.s-offer-modal-type-discounts-table .s-modal-body{
  position: relative !important;
}
.s-order-summary-wrapper{
  display: grid;
  grid-gap: 0.625rem;
  gap: 0.625rem;
}
[dir="ltr"] .s-order-summary-item{
  text-align: left;
}
[dir="rtl"] .s-order-summary-item{
  text-align: right;
}
.s-order-summary-item{
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, 1);
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity, 1));
  padding: 1.25rem;
}
[dir="rtl"] .s-order-summary-item{
  text-align: right;
}
[dir="ltr"] .s-order-summary-item{
  text-align: left;
}
.s-product-card-content-footer.s-order-summary-item button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-order-summary-item{border-radius:.25rem}
.s-order-summary-item-title{
  font-weight: bold;
  margin-bottom: 1.25rem;
  unicode-bidi: plaintext;
}
.s-order-summary-item-download{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  color: #414042;
  color: var(--color-primary);
}
.s-order-summary-code-item-wrapper{
  margin-bottom: 0.5rem;
  align-items: center;
  justify-content: space-between;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-bottom-color: rgba(229, 231, 235, 1);
  border-bottom-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
  padding-bottom: 0.5rem;
}
.s-order-summary-code-item-wrapper:last-child{
  margin-bottom: 0px;
  border-width: 0px;
  padding-bottom: 0px;
}
@media (min-width: 768px){
  .s-order-summary-code-item-wrapper{
    display: flex;
  }
}
.s-order-summary-code-item-wrapper p{
  display: flex;
  align-items: center;
  font-size: 1rem;
  line-height: 1.5rem;
  line-height: 1;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-order-summary-code-item-wrapper p>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-order-summary-code-item-wrapper p>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-order-summary-code-item-wrapper p>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-order-summary-code-item-wrapper p>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-order-summary-code-item-wrapper p>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-order-summary-code-item-wrapper p>.justify-center{order:1}.align-start-logo.store-header .container>.s-order-summary-code-item-wrapper p>.justify-end{order:3;justify-content:start;width:auto}}
.s-order-summary-digital-item-wrapper{
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-order-summary-digital-item-wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-order-summary-digital-item-wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-order-summary-digital-item-wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-order-summary-digital-item-wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-order-summary-digital-item-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-order-summary-digital-item-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.s-order-summary-digital-item-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
.s-order-summary-digital-item-wrapper:last-child{
  padding-bottom: 0px;
}
.s-order-summary-item-copy-button span svg{
  pointer-events: none;
  display: inline;
  height: 12px;
  width: 12px;
  vertical-align: baseline;
}
.s-order-summary-item-copy-button span svg:where([dir="ltr"], [dir="ltr"] *){
  margin-right: 0.5rem;
}
.s-order-summary-item-copy-button span svg:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 0.5rem;
}
.s-order-summary-code-item-wrapper p span svg{
  display: inline;
  height: 1.25rem;
  width: 1.25rem;
  fill: #6b7280;
  vertical-align: baseline;
}
.s-order-summary-code-item-wrapper p span svg:where([dir="ltr"], [dir="ltr"] *){
  margin-right: 0.5rem;
}
.s-order-summary-code-item-wrapper p span svg:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 0.5rem;
}
.s-order-summary-digital-item-wrapper div span:last-of-type{
  display: inline-block;
}
.s-order-summary-digital-item-wrapper span svg{
  display: inline-block;
  height: 14px;
  width: 14px;
  vertical-align: baseline;
}
.s-order-summary-digital-item-wrapper span svg:where([dir="ltr"], [dir="ltr"] *){
  margin-right: 0.5rem;
}
.s-order-summary-digital-item-wrapper span svg:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 0.5rem;
}
.s-order-summary-item-copy-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));
}
.s-order-summary-digital-item-wrapper .s-order-summary-item-download span{
  position: relative;
  top: 1px;
}
.s-order-summary-digital-item-wrapper .s-order-summary-item-download span svg{
  margin-left: 0px;
  margin-right: 0px;
  height: 18px;
  width: 18px;
  --tw-translate-y: 2px;
  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));
  fill: #414042;
  fill: var(--color-primary);
}
.s-orders-container > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.625rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.625rem * var(--tw-space-y-reverse));
}
@media (min-width: 768px){
  .s-orders-container > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1.25rem * (1 - var(--tw-space-y-reverse)));
    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
  }
}
.s-orders-mobile-title{
  display: inline-block;
  width: 8rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
}
@media (min-width: 768px){
  .s-orders-mobile-title{
    display: none;
  }
}
.s-orders-reference-id{
  display: none;
}
.index section.s-block.s-orders-reference-id{display:none}
@media (min-width: 768px){
  .s-orders-reference-id{
    display: inline-block;
  }
}
.s-orders-buy-as-gift-icon{
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  display: inline-block;
  color: #414042;
  color: var(--color-primary);
}
.s-orders-copy-to-clipboard-button{
  display: flex;
  align-items: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-orders-copy-to-clipboard-button>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-orders-copy-to-clipboard-button>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-orders-copy-to-clipboard-button>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-orders-copy-to-clipboard-button>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-orders-copy-to-clipboard-button>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-orders-copy-to-clipboard-button>.justify-center{order:1}.align-start-logo.store-header .container>.s-orders-copy-to-clipboard-button>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .s-orders-copy-to-clipboard-button{
    display: none;
  }
}
.s-orders-copy-to-clipboard-button salla-button{
  position: relative;
}
.s-orders-copy-to-clipboard-button-icon{
  pointer-events: none;
  font-size: 0.75rem;
  line-height: 1rem;
}
.s-orders-copy-to-clipboard-button-icon:where([dir="ltr"], [dir="ltr"] *){
  margin-left: 0.25rem;
}
.s-orders-copy-to-clipboard-button-icon:where([dir="rtl"], [dir="rtl"] *){
  margin-right: 0.25rem;
}
@media (min-width: 768px){
  .s-orders-status-container{
    margin-left: 0px;
    margin-right: 0px;
  }
}
.s-orders-status-container:where([dir="ltr"], [dir="ltr"] *){
  margin-left: auto;
}
.s-orders-status-container:where([dir="rtl"], [dir="rtl"] *){
  margin-right: auto;
}
.s-orders-status-container i{
  margin-top: 0.25rem;
}
.s-orders-status-container i:where([dir="ltr"], [dir="ltr"] *){
  margin-right: 0.25rem;
}
.s-orders-status-container i:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 0.25rem;
}
.s-orders-status-rated{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.s-orders-status-rated:where([dir="ltr"], [dir="ltr"] *){
  margin-left: 1rem;
}
.s-orders-status-rated:where([dir="rtl"], [dir="rtl"] *){
  margin-right: 1rem;
}
.s-orders-rated-text{
  --tw-text-opacity: 1;
  color: rgba(251, 191, 36, 1);
  color: rgba(251, 191, 36, var(--tw-text-opacity, 1));
}
.s-orders-unrated-text{
  --tw-text-opacity: 1;
  color: rgba(229, 231, 235, 1);
  color: rgba(229, 231, 235, var(--tw-text-opacity, 1));
}
.s-orders-no-content{
  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));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-orders-no-content>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-orders-no-content>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-orders-no-content>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-orders-no-content>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-orders-no-content>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-orders-no-content>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-orders-no-content{order:1}.align-start-logo.store-header .container>.s-orders-no-content>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-orders-no-content{justify-content:center}
.s-orders-no-content .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));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-orders-no-content .icon>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-orders-no-content .icon>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-orders-no-content .icon>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-orders-no-content .icon>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-orders-no-content .icon>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-orders-no-content .icon>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-orders-no-content .icon{order:1}.align-start-logo.store-header .container>.s-orders-no-content .icon>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .min--2 .s-orders-no-content .icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-orders-no-content .icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-orders-no-content .icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-orders-no-content .icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-orders-no-content .icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-orders-no-content .icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-orders-no-content .icon{justify-content:center}
.s-orders-no-content 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-orders-table{
  min-width: 100%;
  border-collapse: separate;
}
@media (min-width: 768px){
  .s-orders-table{
    margin-bottom: -0.75rem;
    --tw-border-spacing-y: 1.25rem;
    border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
  }
}
.s-orders-table-head{
  margin-bottom: 1.25rem;
  display: none;
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, 1);
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity, 1));
}
.index section.s-block.s-orders-table-head{display:none}
salla-installment>.s-orders-table-head{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-orders-table-head button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-orders-table-head button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-orders-table-head button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-orders-table-head button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-orders-table-head button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-orders-table-head button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-orders-table-head button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-orders-table-head{border-radius:.75rem}
.dark salla-installment>.s-orders-table-head{color:var(--dark-text-main);background-color:var(--dark-grey)}
@media (min-width: 768px){
  .s-orders-table-head{
    display: table-header-group;
  }
}
[dir="ltr"] .s-orders-table-head-tr-th{
  text-align: left;
}
[dir="rtl"] .s-orders-table-head-tr-th{
  text-align: right;
}
.s-orders-table-head-tr-th{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
[dir="rtl"] .s-orders-table-head-tr-th{
  text-align: right;
}
[dir="ltr"] .s-orders-table-head-tr-th{
  text-align: left;
}
.s-orders-table-head-tr-th:where([dir="ltr"], [dir="ltr"] *){
  text-align: left;
}
.s-orders-table-head-tr-th:last-child:where([dir="ltr"], [dir="ltr"] *){
  text-align: right;
}
.s-orders-table-head-tr-th:where([dir="rtl"], [dir="rtl"] *){
  text-align: right;
}
.s-orders-table-head-tr-th:last-child:where([dir="rtl"], [dir="rtl"] *){
  text-align: left;
}
.s-orders-table-tbody-tr{
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  overflow: hidden;
  border-radius: 0.25rem;
  border-bottom-width: 8px;
  border-top-width: 8px;
  --tw-border-opacity: 1;
  border-color: rgba(249, 250, 251, 1);
  border-color: rgba(249, 250, 251, 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.5rem;
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-orders-table-tbody-tr>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-orders-table-tbody-tr>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-orders-table-tbody-tr>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-orders-table-tbody-tr>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-orders-table-tbody-tr>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-orders-table-tbody-tr>.justify-center{order:1}.align-start-logo.store-header .container>.s-orders-table-tbody-tr>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .s-orders-table-tbody-tr{
    display: table-row;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 0px;
  }
}
.s-orders-table-tbody-tr-shadow:hover{
  box-shadow: 5px 10px 30px rgba(43,45,52,0.05098);
}
.s-orders-table-tbody-tr-td{
  width: 100%;
  white-space: nowrap;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.s-orders-table-tbody-tr-td:first-child{
  font-weight: 700;
}
@media (min-width: 768px){
  .s-orders-table-tbody-tr-td{
    height: 5rem;
    width: auto;
  }
  [dir="ltr"] .s-orders-table-tbody-tr-td:last-child{
    text-align: right;
  }
  [dir="rtl"] .s-orders-table-tbody-tr-td:last-child{
    text-align: left;
  }
  [dir="rtl"] .s-orders-table-tbody-tr-td:last-child{
    text-align: left;
  }
  [dir="ltr"] .s-orders-table-tbody-tr-td:last-child{
    text-align: right;
  }
  .s-orders-table-tbody-tr-td:first-child:where([dir="ltr"], [dir="ltr"] *){
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }
  .s-orders-table-tbody-tr-td:first-child:where([dir="rtl"], [dir="rtl"] *){
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }
}
.s-orders-table-tbody-tr-td:first-child{
  font-weight: 700;
}
.s-orders-table-tbody-tr-td-content{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-orders-table-tbody-tr-td-content>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-orders-table-tbody-tr-td-content>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-orders-table-tbody-tr-td-content>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-orders-table-tbody-tr-td-content>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-orders-table-tbody-tr-td-content>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-orders-table-tbody-tr-td-content>.justify-center{order:1}.align-start-logo.store-header .container>.s-orders-table-tbody-tr-td-content>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .s-orders-table-tbody-tr-td-content{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.s-orders-table-tbody-tr a{
  position: absolute;
  top: 0px;
  bottom: 0px;
  display: block;
  width: 100%;
}
input[type=radio].sr-only div.s-orders-table-tbody-tr a{transition:all .3s}
input[type=radio].sr-only:checked~div.s-orders-table-tbody-tr a{border-color:var(--color-main)}
.s-orders-table-tbody-tr a:where([dir="ltr"], [dir="ltr"] *){
  left: 0px;
}
.s-orders-table-tbody-tr a:where([dir="rtl"], [dir="rtl"] *){
  right: 0px;
}
.s-payments-list{
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0.5rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-payments-list>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-payments-list>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-payments-list>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-payments-list>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-payments-list>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-payments-list>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-payments-list{order:1}.align-start-logo.store-header .container>.s-payments-list>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-payments-list{justify-content:center}
.s-payments-list:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 1;
}
.s-payments-list-item{
  display: flex;
  height: 2rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  --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;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-payments-list-item>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-payments-list-item>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-payments-list-item>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-payments-list-item>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-payments-list-item>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-payments-list-item>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-payments-list-item{order:1}.align-start-logo.store-header .container>.s-payments-list-item>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-payments-list-item{justify-content:center}
.s-payments-list-item img{
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.s-payments-sbc-image{
  height: 1.5rem;
  border-radius: 0.125rem;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.s-product-card-content-footer.s-payments-sbc-image button{
  border-radius: 0.125rem;
}
custom-salla-product-card.s-payments-sbc-image{border-radius:.125rem}
.s-payments-sbc-image:hover{
  opacity: 0.8;
}
.s-placeholder-title{
  margin-bottom: 0.25rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgba(17, 24, 39, 1);
  color: rgba(17, 24, 39, var(--tw-text-opacity, 1));
}
.s-placeholder-description{
  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));
}
.s-placeholder-icon{
  margin-bottom: 1rem;
  fill: #e5e7eb;
}
.s-placeholder-align-left{
  text-align: left;
}
.s-placeholder-align-center{
  text-align: center;
}
.s-placeholder-align-right{
  text-align: right;
}
.s-placeholder-align-right > .s-placeholder-icon{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-placeholder-align-right > .s-placeholder-icon>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-placeholder-align-right > .s-placeholder-icon>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-placeholder-align-right > .s-placeholder-icon>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-placeholder-align-right > .s-placeholder-icon>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-placeholder-align-right > .s-placeholder-icon>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-placeholder-align-right > .s-placeholder-icon>.justify-center{order:1}.align-start-logo.store-header .container>.s-placeholder-align-right > .s-placeholder-icon>.justify-end{order:3;justify-content:start;width:auto}.align-start-logo.store-header .container>.flex>.s-placeholder-align-right > .s-placeholder-icon{order:3;justify-content:start;width:auto}}
.s-placeholder-align-right > .s-placeholder-icon:where([dir="rtl"], [dir="rtl"] *){
  justify-content: flex-start;
}
.s-placeholder-align-center > .s-placeholder-icon{
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-placeholder-align-center > .s-placeholder-icon>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-placeholder-align-center > .s-placeholder-icon>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-placeholder-align-center > .s-placeholder-icon>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-placeholder-align-center > .s-placeholder-icon>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-placeholder-align-center > .s-placeholder-icon>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-placeholder-align-center > .s-placeholder-icon>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-placeholder-align-center > .s-placeholder-icon{order:1}.align-start-logo.store-header .container>.s-placeholder-align-center > .s-placeholder-icon>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-placeholder-align-center > .s-placeholder-icon{justify-content:center}
.s-placeholder-icon-xs > svg{
  height: 1.5rem;
  width: 1.5rem;
}
.s-placeholder-icon-sm > svg{
  height: 2.5rem;
  width: 2.5rem;
}
.s-placeholder-icon-md > svg{
  height: 3.5rem;
  width: 3.5rem;
}
.s-placeholder-icon-lg > svg{
  height: 4rem;
  width: 4rem;
}
.s-placeholder-icon-xl > svg{
  height: 5rem;
  width: 5rem;
}
.s-placeholder-icon-xxl > svg{
  height: 6rem;
  width: 6rem;
}
.s-placeholder-icon-xxxl > svg{
  height: 7rem;
  width: 7rem;
}
.s-placeholder-icon-xs > i{
  font-size: 20px;
}
.s-placeholder-icon-sm > i{
  font-size: 35px;
}
.s-placeholder-icon-md > i{
  font-size: 45px;
}
.s-placeholder-icon-lg > i{
  font-size: 58px;
}
.s-placeholder-icon-xl > i{
  font-size: 75px;
}
.s-placeholder-icon-xxl > i{
  font-size: 85px;
}
.s-placeholder-icon-xxxl > i{
  font-size: 100px;
}
.s-placeholder-wrapper{
  margin-top: 3rem;
  margin-bottom: 3rem;
  display: block;
}
.s-price-range-input{
  pointer-events: none;
  position: absolute;
  z-index: 20;
  height: 0.5rem;
  width: 100%;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
}
.s-price-range-input *{pointer-events:none}
input[type=radio].sr-only div.s-price-range-input{transition:all .3s}
input[type=radio].sr-only:checked~div.s-price-range-input{border-color:var(--color-main)}
.s-price-range-bar{
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  z-index: 10;
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity, 1));
}
input[type=radio].sr-only div.s-price-range-bar{transition:all .3s}
input[type=radio].sr-only:checked~div.s-price-range-bar{border-color:var(--color-main)}
.s-product-card-content-footer.s-price-range-bar button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-price-range-bar{border-radius:.25rem}
.s-price-range-bar-container{
  position: relative;
  z-index: 10;
  height: 0.5rem;
}
.s-price-range-active-bar{
  position: absolute;
  top: 0px;
  bottom: 0px;
  z-index: 20;
  border-radius: 0.375rem;
  background-color: #414042;
  background-color: var(--color-primary);
}
input[type=radio].sr-only div.s-price-range-active-bar{transition:all .3s}
input[type=radio].sr-only:checked~div.s-price-range-active-bar{border-color:var(--color-main)}
.s-product-card-content-footer.s-price-range-active-bar button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-price-range-active-bar{border-radius:.25rem}
.s-price-range-left-handle{
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 30;
  margin-top: -0.25rem;
  margin-left: -0px;
  height: 1rem;
  width: 1rem;
  cursor: pointer;
  border-radius: 9999px;
  background-color: #414042;
  background-color: var(--color-primary);
  --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px 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);
}
.s-price-range-left-handle *{pointer-events:none}
input[type=radio].sr-only div.s-price-range-left-handle{transition:all .3s}
input[type=radio].sr-only:checked~div.s-price-range-left-handle{border-color:var(--color-main)}
@media (min-width: 768px){
  .min--2 .s-price-range-left-handle{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-price-range-left-handle{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-price-range-left-handle{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-price-range-left-handle{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-price-range-left-handle{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-price-range-left-handle{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-price-range-right-handle{
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 30;
  margin-top: -0.25rem;
  margin-right: -0px;
  height: 1rem;
  width: 1rem;
  cursor: pointer;
  border-radius: 9999px;
  background-color: #414042;
  background-color: var(--color-primary);
  --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px 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);
}
.s-price-range-right-handle *{pointer-events:none}
input[type=radio].sr-only div.s-price-range-right-handle{transition:all .3s}
input[type=radio].sr-only:checked~div.s-price-range-right-handle{border-color:var(--color-main)}
@media (min-width: 768px){
  .min--2 .s-price-range-right-handle{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-price-range-right-handle{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-price-range-right-handle{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-price-range-right-handle{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-price-range-right-handle{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-price-range-right-handle{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-price-range-inputs{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding-top: 1rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-price-range-inputs>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-price-range-inputs>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-price-range-inputs>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-price-range-inputs>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-price-range-inputs>.justify-start{order:2;justify-content:end;width:auto}[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-price-range-inputs{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-price-range-inputs{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-price-range-inputs{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-price-range-inputs{margin-right:auto;
  }.align-start-logo.store-header .container>.flex>.s-price-range-inputs{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-price-range-inputs>.justify-center{order:1}.align-start-logo.store-header .container>.s-price-range-inputs>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-starting-price.s-price-range-inputs{justify-content:start}
.s-price-range-number-input{
  width: 6rem;
  border-radius: 0.25rem;
  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-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 2.25rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.s-price-range-number-input:focus{
  --tw-border-opacity: 1;
  border-color: rgba(156, 163, 175, 1);
  border-color: rgba(156, 163, 175, var(--tw-border-opacity, 1));
}
.s-price-range-gray-text{
  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-price-range-currency{
  pointer-events: none;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  display: flex;
  align-items: center;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, 1);
  color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}
input[type=radio].sr-only div.s-price-range-currency{transition:all .3s}
input[type=radio].sr-only:checked~div.s-price-range-currency{border-color:var(--color-main)}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-price-range-currency>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-price-range-currency>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-price-range-currency>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-price-range-currency>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-price-range-currency>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-price-range-currency>.justify-center{order:1}.align-start-logo.store-header .container>.s-price-range-currency>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 640px){
  .s-price-range-currency{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.s-price-range-relative{
  position: relative;
}
.s-product-availability-wrap{
  width: 100%;
}
.s-product-availability-subscribed{
  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-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgba(34, 197, 94, 1);
  color: rgba(34, 197, 94, var(--tw-text-opacity, 1));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-availability-subscribed>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-availability-subscribed>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-availability-subscribed>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-availability-subscribed>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-availability-subscribed>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-availability-subscribed>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-product-availability-subscribed{order:1}.align-start-logo.store-header .container>.s-product-availability-subscribed>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-product-availability-subscribed{justify-content:center}
.s-product-card-content-footer.s-product-availability-subscribed button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-product-availability-subscribed{border-radius:.25rem}
.s-product-availability-subs-icon svg{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  width: 1.25rem;
  fill: #22c55e;
}
.s-product-availability-body{
  position: relative;
  z-index: 50;
}
.s-product-availability-header-icon{
  display: inline-flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border-width: 1px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, 1);
  border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.s-product-availability-header-icon{order:1}}
@media (min-width: 768px){
  .min--2 .s-product-availability-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-product-availability-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-product-availability-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-product-availability-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-product-availability-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-product-availability-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-product-availability-header-icon{justify-content:center}
@media (min-width: 640px){
  .s-product-availability-header-icon{
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    height: 5rem;
    width: 5rem;
  }
}
.s-product-availability-header-icon:where([dir="ltr"], [dir="ltr"] *){
  margin-right: 0.5rem;
}
@media (min-width: 640px){
  .s-product-availability-header-icon:where([dir="ltr"], [dir="ltr"] *){
    margin-right: 0px;
  }
}
.s-product-availability-header-icon:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 0.5rem;
}
@media (min-width: 640px){
  .s-product-availability-header-icon:where([dir="rtl"], [dir="rtl"] *){
    margin-left: 0px;
  }
}
.s-product-availability-header-icon svg{
  height: 1.25rem;
  width: 1.25rem;
  flex-shrink: 0;
  fill: #9ca3af;
}
.s-product-availability-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));
}
.s-product-availability-label:where([dir="ltr"], [dir="ltr"] *){
  text-align: left;
}
.s-product-availability-label:where([dir="rtl"], [dir="rtl"] *){
  text-align: right;
}
.s-product-availability-input{
  height: 2.5rem;
  width: 100%;
  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));
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  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: 150ms;
}
.s-product-card-content-footer.s-product-availability-input button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-product-availability-input{border-radius:.25rem}
.s-product-availability-input:focus{
  border-color: #414042;
  border-color: var(--color-primary);
}
.dark *.s-product-availability-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));
}
.s-product-availability-footer{
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
}
.s-product-availability-footer > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-availability-footer>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-availability-footer>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-availability-footer>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-availability-footer>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-availability-footer>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-availability-footer>.justify-center{order:1}.align-start-logo.store-header .container>.s-product-availability-footer>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-availability-footer:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 1;
}
.s-product-availability-footer-btn{
  width: 100%;
}
.s-product-availability-error-msg{
  display: block;
  height: 1.75rem;
  padding-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-border-opacity: 1;
  border-color: rgba(248, 113, 113, 1);
  border-color: rgba(248, 113, 113, var(--tw-border-opacity, 1));
}
.s-product-availability-error-msg:focus{
  --tw-border-opacity: 1;
  border-color: rgba(239, 68, 68, 1);
  border-color: rgba(239, 68, 68, var(--tw-border-opacity, 1));
}
.s-product-availability-error-msg{
  --tw-border-opacity: 1 !important;
  border-color: rgba(239, 68, 68, 1) !important;
  border-color: rgba(239, 68, 68, var(--tw-border-opacity, 1)) !important;
  --tw-text-opacity: 1 !important;
  color: rgba(239, 68, 68, 1) !important;
  color: rgba(239, 68, 68, var(--tw-text-opacity, 1)) !important;
}
.s-product-card-entry{
  position: relative;
  display: flex;
  height: 100%;
  justify-content: space-between;
  border-radius: 0.25rem;
  --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;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-entry>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-entry>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-entry>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-entry>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-card-entry>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-card-entry>.justify-center{order:1}.align-start-logo.store-header .container>.s-product-card-entry>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-shadow:hover{
  box-shadow: 5px 10px 30px rgba(43,45,52,0.05098);
}
.s-product-card-out-of-stock img.loaded{
  --tw-grayscale: grayscale(100%);
  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 .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-vertical .s-product-card-image{
  flex: 1 1 0%;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.s-product-card-vertical .s-product-card-wishlist-btn{
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  opacity: 0.75;
}
input[type=radio].sr-only div.s-product-card-vertical .s-product-card-wishlist-btn{transition:all .3s}
input[type=radio].sr-only:checked~div.s-product-card-vertical .s-product-card-wishlist-btn{border-color:var(--color-main)}
.s-product-card-vertical .s-product-card-wishlist-btn:hover{
  opacity: 1;
}
@media (min-width: 768px){
  .s-product-card-vertical .s-product-card-wishlist-btn{
    right: 0.5rem;
  }
}
.s-product-card-vertical .s-product-card-wishlist-btn:where([dir="rtl"], [dir="rtl"] *){
  left: 0.5rem;
  right: auto;
  right: initial;
}
@media (min-width: 768px){
  .s-product-card-vertical .s-product-card-wishlist-btn:where([dir="rtl"], [dir="rtl"] *){
    left: 0.5rem;
    right: auto;
    right: initial;
  }
}
.s-product-card-minimal .s-product-card-wishlist-btn{
  position: absolute;
  top: 0px;
  right: 0px;
  opacity: 0.75;
}
input[type=radio].sr-only div.s-product-card-minimal .s-product-card-wishlist-btn{transition:all .3s}
input[type=radio].sr-only:checked~div.s-product-card-minimal .s-product-card-wishlist-btn{border-color:var(--color-main)}
.s-product-card-minimal .s-product-card-wishlist-btn:hover{
  opacity: 1;
}
@media (min-width: 768px){
  .s-product-card-minimal .s-product-card-wishlist-btn{
    right: 0px;
  }
}
.s-product-card-minimal .s-product-card-wishlist-btn:where([dir="rtl"], [dir="rtl"] *){
  left: 0px;
  right: auto;
  right: initial;
}
@media (min-width: 768px){
  .s-product-card-minimal .s-product-card-wishlist-btn:where([dir="rtl"], [dir="rtl"] *){
    left: 0px;
    right: auto;
    right: initial;
  }
}
.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;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-minimal .s-product-card-content>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-minimal .s-product-card-content>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-minimal .s-product-card-content>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-minimal .s-product-card-content>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-card-minimal .s-product-card-content>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-card-minimal .s-product-card-content>.justify-center{order:1}.align-start-logo.store-header .container>.s-product-card-minimal .s-product-card-content>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-minimal .s-product-card-wishlist-btn button{
  margin: 0px;
  background-color: transparent;
}
.s-product-card-minimal .s-product-card-wishlist-btn button svg, .s-product-card-full-image .s-product-card-wishlist-btn button svg{
  height: 1rem;
  width: 1rem;
  fill: #fff;
}
.s-product-card-vertical .s-product-card-wishlist-btn button{
  --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-card-vertical .s-product-card-wishlist-btn button{
  margin: 0px;
}
.s-product-card-wishlist-btn button:hover svg{
  fill: #4b5563;
}
.s-product-card-fit-height .s-product-card-image{
  height: 11rem;
  max-height: 15rem;
}
.s-product-card-quantity{
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  z-index: 1;
  max-width: calc(100% - 60px);
  --tw-translate-x: -50%;
  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.25rem;
  --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 .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: 1;
  max-width: calc(100% - 60px);
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  --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 .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: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.s-product-card-out-badge{
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  z-index: 1;
  max-width: calc(100% - 60px);
  --tw-translate-x: -50%;
  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 .3s}
input[type=radio].sr-only:checked~div.s-product-card-out-badge{border-color:var(--color-main)}
.s-product-card-content-footer.s-product-card-out-badge button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-product-card-out-badge{border-radius:.25rem}
@media (min-width: 768px){
  .s-product-card-out-badge{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.s-product-card-image{
  position: relative;
  height: 100%;
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, 1);
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity, 1));
}
.s-product-card-image::before{
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  --tw-translate-x: -50%;
  --tw-translate-y: -50%;
  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));
  font-size: 1.875rem;
  line-height: 2.25rem;
  content: var(--tw-content);
  --tw-text-opacity: 1;
  color: rgba(229, 231, 235, 1);
  color: rgba(229, 231, 235, var(--tw-text-opacity, 1));
}
.s-product-card-image:hover{
  opacity: 0.9;
}
.s-product-card-image img{
  height: 100%;
  width: 100%;
  opacity: 0;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
.s-product-card-image img.loaded{
  position: relative;
  opacity: 1;
}
.s-product-card-content{
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-content>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-content>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-content>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-content>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-card-content>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-card-content>.justify-center{order:1}.align-start-logo.store-header .container>.s-product-card-content>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 640px){
  .s-product-card-content{
    padding: 1.25rem;
  }
}
.s-product-card-content-title{
  margin-bottom: 0.625rem;
  max-width: 100%;
  line-height: 1.5rem;
}
.s-product-card-content-subtitle{
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgba(75, 85, 99, 1);
  color: rgba(75, 85, 99, var(--tw-text-opacity, 1));
}
.s-product-card-special .s-product-card-content-main, special .s-product-card-content-sub{
  padding-right: 6rem;
}
.s-product-card-special .s-product-card-content-main:where([dir="rtl"], [dir="rtl"] *), special .s-product-card-content-sub:where([dir="rtl"], [dir="rtl"] *){
  padding-left: 6rem;
  padding-right: 0px;
}
.s-product-card-donation-input{
  flex: 1 1 0%;
}
.s-product-card-donation-input label{
  margin-bottom: 0.625rem;
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.s-product-card-donation-input label span{
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, 1);
  color: rgba(239, 68, 68, var(--tw-text-opacity, 1));
}
.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));
}
.s-product-card-content-title a:hover{
  color: #414042;
  color: var(--color-primary);
}
.s-product-card-content-sub{
  margin-bottom: 1.25rem;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-content-sub>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-content-sub>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-content-sub>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-content-sub>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-card-content-sub>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-card-content-sub>.justify-center{order:1}.align-start-logo.store-header .container>.s-product-card-content-sub>.justify-end{order:3;justify-content:start;width:auto}}
salla-installment>.s-product-card-content-sub{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-product-card-content-sub button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-product-card-content-sub button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-product-card-content-sub button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-product-card-content-sub button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-product-card-content-sub button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-product-card-content-sub button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-product-card-content-sub button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-product-card-content-sub{border-radius:.75rem}
.dark salla-installment>.s-product-card-content-sub{color:var(--dark-text-main);background-color:var(--dark-grey)}
.s-product-card-rating{
  display: flex;
  align-items: center;
}
.s-product-card-rating > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.s-product-card-rating{
  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));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-rating>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-rating>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-rating>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-rating>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-card-rating>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-card-rating>.justify-center{order:1}.align-start-logo.store-header .container>.s-product-card-rating>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-rating:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 1;
}
.s-product-card-rating span svg{
  margin-bottom: 3px;
  height: 1rem;
  width: 1rem;
  fill: #fbbf24;
}
.s-product-card-content-footer{
  margin-top: auto;
  display: flex;
  align-items: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-content-footer>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-content-footer>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-content-footer>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-content-footer>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-card-content-footer>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-card-content-footer>.justify-center{order:1}.align-start-logo.store-header .container>.s-product-card-content-footer>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-sale-price > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.s-product-card-sale-price:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 1;
}
.s-product-card-sale-price h4{
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, 1);
  color: rgba(248, 113, 113, var(--tw-text-opacity, 1));
}
.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;
}
.s-product-card-starting-price{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-starting-price>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-starting-price>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-starting-price>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-starting-price>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-card-starting-price>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-card-starting-price>.justify-center{order:1}.align-start-logo.store-header .container>.s-product-card-starting-price>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-starting-price h4{
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, 1);
  color: rgba(248, 113, 113, var(--tw-text-opacity, 1));
}
.s-product-card-price{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
}
.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-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 .3s}
input[type=radio].sr-only:checked~div.s-product-card-content-pie{border-color:var(--color-main)}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-content-pie>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-content-pie>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-content-pie>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-content-pie>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-card-content-pie>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-card-content-pie>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-product-card-content-pie{order:1}.align-start-logo.store-header .container>.s-product-card-content-pie>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-product-card-content-pie{justify-content:center}
.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(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 .3s}
input[type=radio].sr-only:checked~div.s-product-card-content-pie span{border-color:var(--color-main)}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-content-pie span>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-content-pie span>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-content-pie span>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-content-pie span>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-card-content-pie span>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-card-content-pie span>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-product-card-content-pie span{order:1}.align-start-logo.store-header .container>.s-product-card-content-pie span>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-product-card-content-pie span{justify-content:center}
.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;
}
.s-product-card-wishlist-added svg{
  fill: #ef4444;
}
.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: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.s-product-card-horizontal .s-product-card-image:where([dir="rtl"], [dir="rtl"] *){
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.s-product-card-horizontal .s-product-card-quantity{
  max-width: none;
  max-width: initial;
}
.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-promotion-title{
  max-width: none;
  max-width: initial;
}
.s-product-card-horizontal .s-product-card-out-badge{
  max-width: none;
  max-width: initial;
}
.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 .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: 0.25rem;
}
.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{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.s-product-card-full-image .s-product-card-content-title a:hover{
  color: #414042;
  color: var(--color-primary);
}
.s-product-card-full-image .s-product-card-content-subtitle{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.s-product-card-full-image .s-product-card-price{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.s-product-card-full-image .s-product-card-sale-price{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.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-options-wrapper{
  margin-bottom: 1.25rem;
  display: block;
  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.25rem;
}
.s-product-card-content-footer.s-product-options-wrapper button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-product-options-wrapper{border-radius:.25rem}
salla-installment>.s-product-options-wrapper{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-product-options-wrapper button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-product-options-wrapper button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-product-options-wrapper button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-product-options-wrapper button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-product-options-wrapper button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-product-options-wrapper button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-product-options-wrapper button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-product-options-wrapper{border-radius:.75rem}
.dark salla-installment>.s-product-options-wrapper{color:var(--dark-text-main);background-color:var(--dark-grey)}
.s-product-options-option-container{
  margin-bottom: 1.25rem;
}
salla-installment>.s-product-options-option-container{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-product-options-option-container button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-product-options-option-container button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-product-options-option-container button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-product-options-option-container button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-product-options-option-container button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-product-options-option-container button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-product-options-option-container button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-product-options-option-container{border-radius:.75rem}
.dark salla-installment>.s-product-options-option-container{color:var(--dark-text-main);background-color:var(--dark-grey)}
.s-product-options-option-container:last-child{
  margin-bottom: 0px;
}
.s-product-options-option{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
@media (min-width: 640px){
  .s-product-options-option{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: flex-start;
    grid-gap: 1rem;
    gap: 1rem;
  }
}
.s-product-options-option-error .s-product-options-option-label{
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, 1);
  color: rgba(248, 113, 113, var(--tw-text-opacity, 1));
}
.s-product-options-option-content{
  margin-top: 0.25rem;
}
@media (min-width: 640px){
  .s-product-options-option-content{
    grid-column: span 2 / span 2;
    margin-top: 0px;
  }
  .s-product-options-option-content-full-width{
    grid-column: span 3 / span 3;
  }
}
.s-product-options-option-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){
  .s-product-options-option-label{
    margin-top: 1px;
  }
}
@media (min-width: 768px){
  .s-product-options-option-label{
    margin-bottom: 0px;
  }
}
.s-product-options-option-label-hidden{
  display: none !important;
}
.s-product-options-donation-message{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-options-donation-message>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-options-donation-message>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-options-donation-message>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-options-donation-message>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-options-donation-message>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-options-donation-message>.justify-center{order:1}.align-start-logo.store-header .container>.s-product-options-donation-message>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-options-donation-message p{
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, 1);
  color: rgba(248, 113, 113, var(--tw-text-opacity, 1));
}
.s-product-options-donation-message span{
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, 1);
  color: rgba(0, 0, 0, var(--tw-text-opacity, 1));
}
.s-product-options-option-label b{
  display: block;
}
.s-product-options-option-label b span{
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, 1);
  color: rgba(239, 68, 68, var(--tw-text-opacity, 1));
}
.s-product-options-option-label small{
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, 1);
  color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}
.s-product-options-colors-wrapper .s-product-options-colors-item{
  margin-right: 2rem;
  margin-bottom: 1.25rem;
  display: inline-block;
  width: 2.5rem;
  white-space: nowrap;
  text-align: center;
}
salla-installment>.s-product-options-colors-wrapper .s-product-options-colors-item{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-product-options-colors-wrapper .s-product-options-colors-item button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-product-options-colors-wrapper .s-product-options-colors-item button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-product-options-colors-wrapper .s-product-options-colors-item button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-product-options-colors-wrapper .s-product-options-colors-item button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-product-options-colors-wrapper .s-product-options-colors-item button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-product-options-colors-wrapper .s-product-options-colors-item button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-product-options-colors-wrapper .s-product-options-colors-item button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-product-options-colors-wrapper .s-product-options-colors-item{border-radius:.75rem}
.dark salla-installment>.s-product-options-colors-wrapper .s-product-options-colors-item{color:var(--dark-text-main);background-color:var(--dark-grey)}
.s-product-options-colors-wrapper .s-product-options-colors-item:where([dir="rtl"], [dir="rtl"] *){
  margin-right: 0px;
  margin-left: 2rem;
}
.s-product-options-colors-wrapper input[type=radio]{
  pointer-events: none;
  position: absolute;
  opacity: 0;
}
input[type=radio].sr-only div.s-product-options-colors-wrapper input[type=radio]{transition:all .3s}
input[type=radio].sr-only:checked~div.s-product-options-colors-wrapper input[type=radio]{border-color:var(--color-main)}
.s-product-options-colors-wrapper input[type=radio] + label{
  display: flex;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
}
.s-product-options-colors-wrapper input[type=radio] + label *{pointer-events:none}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-options-colors-wrapper input[type=radio] + label>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-options-colors-wrapper input[type=radio] + label>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-options-colors-wrapper input[type=radio] + label>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-options-colors-wrapper input[type=radio] + label>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-options-colors-wrapper input[type=radio] + label>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-options-colors-wrapper input[type=radio] + label>.justify-center{order:1}.align-start-logo.store-header .container>.s-product-options-colors-wrapper input[type=radio] + label>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-options-colors-wrapper input[type=radio] + label div{
  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));
}
.s-product-options-colors-wrapper input[type=radio] + label div p{
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
}
.s-product-options-colors-wrapper input[type=radio] + label span{
  margin-bottom: 0.5rem;
  display: inline-flex;
  height: 30px;
  width: 30px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  border-radius: 9999px;
  border-width: 2px;
  --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(156, 163, 175, 1);
  background-color: rgba(156, 163, 175, var(--tw-bg-opacity, 1));
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  line-height: 2.5rem;
  --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), 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);
}
.s-product-options-colors-wrapper input[type=radio] + label span *{pointer-events:none}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.s-product-options-colors-wrapper input[type=radio] + label span{order:1}}
@media (min-width: 768px){
  .min--2 .s-product-options-colors-wrapper input[type=radio] + label span{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-product-options-colors-wrapper input[type=radio] + label span{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-product-options-colors-wrapper input[type=radio] + label span{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-product-options-colors-wrapper input[type=radio] + label span{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-product-options-colors-wrapper input[type=radio] + label span{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-product-options-colors-wrapper input[type=radio] + label span{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-product-options-colors-wrapper input[type=radio] + label span{justify-content:center}
.s-product-card-content-footer.s-product-options-colors-wrapper input[type=radio] + label span button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-product-options-colors-wrapper input[type=radio] + label span{border-radius:.25rem}
.s-product-options-colors-wrapper input[type=radio] + label span:after{
  height: 14px;
  width: 14px;
  --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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity, 1));
  opacity: 0;
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --tw-content: '';
  content: var(--tw-content);
}
@media (min-width: 768px){
  .min--2 .s-product-options-colors-wrapper input[type=radio] + label span:after{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-product-options-colors-wrapper input[type=radio] + label span:after{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-product-options-colors-wrapper input[type=radio] + label span:after{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-product-options-colors-wrapper input[type=radio] + label span:after{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-product-options-colors-wrapper input[type=radio] + label span:after{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-product-options-colors-wrapper input[type=radio] + label span:after{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-options-colors-wrapper input[type=radio]:checked + label span:after{
  --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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  opacity: 1;
}
.s-product-options-colors-wrapper input[type=radio]:disabled + label{
  opacity: 0.4;
}
.s-product-options-field-required{
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, 1);
  color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}
.s-product-options-donation-progress{
  margin-bottom: 0.625rem;
  width: 100%;
}
.s-product-options-donation-progress-target-text{
  margin-bottom: 0.375rem;
  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-product-options-donation-progress-amount{
  margin-bottom: 0.625rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-options-donation-progress-amount>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-options-donation-progress-amount>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-options-donation-progress-amount>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-options-donation-progress-amount>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-options-donation-progress-amount>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-options-donation-progress-amount>.justify-center{order:1}.align-start-logo.store-header .container>.s-product-options-donation-progress-amount>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-options-donation-progress-wrapper{
  height: 1rem;
  width: 100%;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity, 1));
}
@media (min-width: 768px){
  .min--2 .s-product-options-donation-progress-wrapper{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-product-options-donation-progress-wrapper{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-product-options-donation-progress-wrapper{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-product-options-donation-progress-wrapper{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-product-options-donation-progress-wrapper{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-product-options-donation-progress-wrapper{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.dark *.s-product-options-donation-progress-wrapper{
  --tw-bg-opacity: 1;
  background-color: rgba(55, 65, 81, 1);
  background-color: rgba(55, 65, 81, var(--tw-bg-opacity, 1));
}
.s-product-options-donation-progress-bar{
  position: relative;
  display: flex;
  height: 1rem;
  justify-content: flex-end;
  border-radius: 9999px;
  background-color: #414042;
  background-color: var(--color-primary);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-options-donation-progress-bar>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-options-donation-progress-bar>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-options-donation-progress-bar>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-options-donation-progress-bar>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-options-donation-progress-bar>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-options-donation-progress-bar>.justify-center{order:1}.align-start-logo.store-header .container>.s-product-options-donation-progress-bar>.justify-end{order:3;justify-content:start;width:auto}.align-start-logo.store-header .container>.flex>.s-product-options-donation-progress-bar{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .min--2 .s-product-options-donation-progress-bar{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-product-options-donation-progress-bar{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-product-options-donation-progress-bar{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-product-options-donation-progress-bar{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-product-options-donation-progress-bar{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-product-options-donation-progress-bar{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-options-donation-progress-target-data{
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
  display: block;
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
}
.s-product-options-donation-progress-target-message{
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, 1);
  color: rgba(248, 113, 113, var(--tw-text-opacity, 1));
}
.s-product-options-donation-wrapper{
  position: relative;
  margin-top: 1.25rem;
  margin-bottom: 0.625rem;
  align-items: center;
  justify-content: space-between;
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(243, 244, 246, 1);
  border-color: rgba(243, 244, 246, var(--tw-border-opacity, 1));
  padding-top: 1.25rem;
}
.s-product-options-donation-wrapper:only-child{
  margin-top: 0px;
  border-style: none;
  padding-top: 0px;
}
@media (min-width: 640px){
  .s-product-options-donation-wrapper{
    margin-bottom: 0px;
  }
}
.s-product-options-donation-wrapper h4{
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.s-product-options-donation-amount-label{
  margin-bottom: 0.625rem;
  display: block;
  flex: 1 1 0%;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.s-product-options-donation-amount-input-container{
  position: relative;
  flex: 1 1 0%;
}
.s-product-options-donation-amount-input{
  margin-bottom: 0.625rem;
  display: block;
  height: 3rem;
  width: 100%;
  border-radius: 0.375rem;
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 219, 1);
  border-color: rgba(209, 213, 219, var(--tw-border-opacity, 1));
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  --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), 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);
}
.s-product-card-content-footer.s-product-options-donation-amount-input button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-product-options-donation-amount-input{border-radius:.25rem}
.s-product-options-donation-amount-input:focus{
  --tw-border-opacity: 1;
  border-color: rgba(99, 102, 241, 1);
  border-color: rgba(99, 102, 241, var(--tw-border-opacity, 1));
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity, 1));
}
@media (min-width: 640px){
  .s-product-options-donation-amount-input{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.s-product-options-donation-amount-curruncy{
  position: absolute;
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
}
input[type=radio].sr-only div.s-product-options-donation-amount-curruncy{transition:all .3s}
input[type=radio].sr-only:checked~div.s-product-options-donation-amount-curruncy{border-color:var(--color-main)}
.s-product-options-multiple-options-wrapper{
  flex-wrap: wrap;
  align-items: center;
}
@media (min-width: 768px){
  .s-product-options-multiple-options-wrapper{
    display: flex;
  }
}
.s-product-options-multiple-options-wrapper label{
  position: relative;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-options-multiple-options-wrapper label>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-options-multiple-options-wrapper label>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-options-multiple-options-wrapper label>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-options-multiple-options-wrapper label>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-options-multiple-options-wrapper label>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-options-multiple-options-wrapper label>.justify-center{order:1}.align-start-logo.store-header .container>.s-product-options-multiple-options-wrapper label>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .s-product-options-multiple-options-wrapper label{
    width: 50%;
  }
}
.s-product-options-multiple-options-wrapper input{
  height: 1.5rem;
  width: 1.5rem;
  cursor: pointer;
  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));
  color: #414042;
  color: var(--color-primary);
}
.s-product-options-multiple-options-wrapper input *{pointer-events:none}
.s-product-card-content-footer.s-product-options-multiple-options-wrapper input button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-product-options-multiple-options-wrapper input{border-radius:.25rem}
.s-product-options-multiple-options-wrapper input:focus{
  --tw-ring-color: transparent;
}
.s-product-options-multiple-options-wrapper span{
  margin-left: 0.5rem;
  cursor: pointer;
  padding-right: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, 1);
  color: rgba(55, 65, 81, var(--tw-text-opacity, 1));
}
.s-product-options-multiple-options-wrapper span *{pointer-events:none}
.s-product-options-multiple-options-wrapper span:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 0px;
  margin-right: 0.5rem;
  padding-right: 0px;
  padding-left: 0.75rem;
}
.s-product-options-splitter{
  border-width: 2px;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, 1);
  border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
}
.s-product-options-thumbnails-wrapper{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 0.75rem;
  gap: 0.75rem;
}
.s-product-options-thumbnails-wrapper label{
  margin-bottom: 0.125rem;
  display: inline-block;
  height: 6rem;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  border-radius: 0.375rem;
}
.s-product-options-thumbnails-wrapper label *{pointer-events:none}
.s-product-card-content-footer.s-product-options-thumbnails-wrapper label button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-product-options-thumbnails-wrapper label{border-radius:.25rem}
@media (min-width: 768px){
  .s-product-options-thumbnails-wrapper label{
    height: 5rem;
  }
}
.s-product-options-thumbnails-wrapper > div{
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
}
.s-product-options-thumbnails-stock-badge{
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 0;
  display: block;
  --tw-translate-x: -50%;
  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.s-product-options-thumbnails-stock-badge{transition:all .3s}
input[type=radio].sr-only:checked~div.s-product-options-thumbnails-stock-badge{border-color:var(--color-main)}
@media (min-width: 768px){
  .min--2 .s-product-options-thumbnails-stock-badge{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-product-options-thumbnails-stock-badge{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-product-options-thumbnails-stock-badge{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-product-options-thumbnails-stock-badge{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-product-options-thumbnails-stock-badge{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-product-options-thumbnails-stock-badge{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-options-thumbnails-badge-overlay{
  position: absolute;
  top: 0px;
  height: 100%;
  width: 100%;
  cursor: not-allowed;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
  opacity: 0.5;
}
input[type=radio].sr-only div.s-product-options-thumbnails-badge-overlay{transition:all .3s}
input[type=radio].sr-only:checked~div.s-product-options-thumbnails-badge-overlay{border-color:var(--color-main)}
.s-product-options-thumbnails-icon{
  position: absolute;
  left: 35%;
  top: 35%;
  z-index: 10;
  --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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
  padding: 2px;
  opacity: 0;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
input[type=radio].sr-only div.s-product-options-thumbnails-icon{transition:all .3s}
input[type=radio].sr-only:checked~div.s-product-options-thumbnails-icon{border-color:var(--color-main)}
@media (min-width: 768px){
  .min--2 .s-product-options-thumbnails-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-product-options-thumbnails-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-product-options-thumbnails-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-product-options-thumbnails-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-product-options-thumbnails-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-product-options-thumbnails-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-options-thumbnails-icon svg{
  height: 1rem;
  width: 1rem;
}
.s-product-options-thumbnails-wrapper div input[type=radio]:checked + label span{
  --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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  opacity: 1;
}
.s-product-options-thumbnails-wrapper div input[type=radio]{
  pointer-events: none;
  position: absolute;
  display: block;
  opacity: 0;
}
input[type=radio].sr-only div.s-product-options-thumbnails-wrapper div input[type=radio]{transition:all .3s}
input[type=radio].sr-only:checked~div.s-product-options-thumbnails-wrapper div input[type=radio]{border-color:var(--color-main)}
.s-product-options-thumbnails-wrapper div input[type=radio] + label{
  position: relative;
}
.s-product-options-thumbnails-wrapper div input[type=radio] + label img{
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.s-product-options-thumbnails-wrapper div label::before{
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 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;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  content: var(--tw-content);
  transition-duration: 300ms;
}
.s-product-options-thumbnails-wrapper div input[type=radio]:checked + label::before{
  content: var(--tw-content);
  opacity: 0.3;
}
.s-product-options-thumbnails-wrapper div input[type=radio]:disabled + label{
  opacity: 0.4;
}
.s-product-options-thumbnails-wrapper div 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));
}
.s-product-options-image-input .s-file-upload-wrapper{
  min-height: 120px;
}
.s-product-options-image-input .filepond--list-scroller{
  overflow-y: inherit !important;
}
.s-product-options-image-input .filepond--drop-label{
  min-height: 120px !important;
}
.s-product-options-image-input .filepond--drop-label{
  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));
}
.s-product-options-image-input .filepond--drop-label *{pointer-events:none}
.s-product-card-content-footer.s-product-options-image-input .filepond--drop-label button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-product-options-image-input .filepond--drop-label{border-radius:.25rem}
.s-product-options-filepond-placeholder{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-options-filepond-placeholder>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-options-filepond-placeholder>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-options-filepond-placeholder>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-options-filepond-placeholder>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-options-filepond-placeholder>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-options-filepond-placeholder>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-product-options-filepond-placeholder{order:1}.align-start-logo.store-header .container>.s-product-options-filepond-placeholder>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-product-options-filepond-placeholder{justify-content:center}
.s-product-options-filepond-placeholder-icon{
  margin-bottom: 0.25rem;
}
.s-product-options-filepond-placeholder-icon svg{
  height: 1.5rem;
  width: 1.5rem;
  fill: #7c8082;
}
.s-product-options-donation-amount-currency{
  position: absolute;
  top: 0.25rem;
  right: 1rem;
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
}
input[type=radio].sr-only div.s-product-options-donation-amount-currency{transition:all .3s}
input[type=radio].sr-only:checked~div.s-product-options-donation-amount-currency{border-color:var(--color-main)}
.s-product-options-donation-amount-currency:where([dir="rtl"], [dir="rtl"] *){
  right: auto;
  right: initial;
  left: 1rem;
}
.s-product-options-donation-input-group{
  position: relative;
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
.s-product-options-donation-input-group.shown{
  height: auto;
  opacity: 1;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
.s-product-options-donation-options{
  margin-bottom: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-options-donation-options>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-options-donation-options>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-options-donation-options>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-options-donation-options>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-options-donation-options>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-options-donation-options>.justify-center{order:1}.align-start-logo.store-header .container>.s-product-options-donation-options>.justify-end{order:3;justify-content:start;width:auto}}
salla-installment>.s-product-options-donation-options{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-product-options-donation-options button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-product-options-donation-options button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-product-options-donation-options button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-product-options-donation-options button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-product-options-donation-options button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-product-options-donation-options button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-product-options-donation-options button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-product-options-donation-options{border-radius:.75rem}
.dark salla-installment>.s-product-options-donation-options{color:var(--dark-text-main);background-color:var(--dark-grey)}
.s-product-options-donation-options-item{
  min-width: 20%;
  flex-grow: 1;
}
.s-product-options-donation-options-item:last-child{
  min-width: 25%;
}
.s-product-options-donation-options-item label{
  display: flex;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  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));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.s-product-options-donation-options-item label *{pointer-events:none}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-options-donation-options-item label>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-options-donation-options-item label>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-options-donation-options-item label>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-options-donation-options-item label>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-options-donation-options-item label>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-options-donation-options-item label>.justify-center{order:1}.align-start-logo.store-header .container>.s-product-options-donation-options-item label>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-footer.s-product-options-donation-options-item label button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-product-options-donation-options-item label{border-radius:.25rem}
.s-product-options-donation-options-item input{
  display: none;
}
.index section.s-block.s-product-options-donation-options-item input{display:none}
.s-product-options-donation-options-item input:checked + label{
  border-color: #414042;
  border-color: var(--color-primary);
  background-color: #414042;
  background-color: var(--color-primary);
  color: #ff6767;
  color: var(--color-primary-reverse);
}
.s-product-options-textarea textarea{
  resize: none;
}
.s-product-options-digital-card-wrapper{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-options-digital-card-wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-options-digital-card-wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-options-digital-card-wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-options-digital-card-wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-options-digital-card-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-options-digital-card-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.s-product-options-digital-card-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-options-digital-card-option{
  display: flex;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 40px;
  min-width: 100px;
  max-width: calc((100% - 1rem) / 3);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.375rem;
  padding: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  outline-style: solid;
  outline-width: 1px;
  outline-color: #e5e7eb;
}
.s-product-options-digital-card-option *{pointer-events:none}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-options-digital-card-option>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-options-digital-card-option>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-options-digital-card-option>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-options-digital-card-option>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-options-digital-card-option>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-options-digital-card-option>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-product-options-digital-card-option{order:1}.align-start-logo.store-header .container>.s-product-options-digital-card-option>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-product-options-digital-card-option{justify-content:center}
.s-product-card-content-footer.s-product-options-digital-card-option button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-product-options-digital-card-option{border-radius:.25rem}
.s-product-options-digital-card-option[\:has\(input\:checked\)]{
  color: var(--color-primary-dark);
  outline-style: solid;
  outline-width: 1px;
  outline-color: #414042;
  outline-color: var(--color-primary);
}
.s-product-options-digital-card-option[\:has\(input\:checked\)]{
  color: var(--color-primary-dark);
  outline-style: solid;
  outline-width: 1px;
  outline-color: #414042;
  outline-color: var(--color-primary);
}
.s-product-options-digital-card-option:has(input:checked){
  color: var(--color-primary-dark);
  outline-style: solid;
  outline-width: 1px;
  outline-color: #414042;
  outline-color: var(--color-primary);
}
.s-product-options-country-flag{
  height: 24px;
  width: 24px;
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 .s-product-options-country-flag{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-product-options-country-flag{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-product-options-country-flag{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-product-options-country-flag{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-product-options-country-flag{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-product-options-country-flag{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-options-digital-card-out-of-stock{
  height: 2.5rem;
}
.s-product-options-digital-card-option input{
  all: unset;
}
.s-product-options-digital-card-option input:checked{
  all: unset;
}
.s-product-options-digital-card-option input:invalid{
  all: unset;
}
@media (min-width: 640px){
  .s-product-options-option-booking .s-product-options-option-content{
    margin-top: -2.5rem;
  }
}
.s-product-options-digital-card-option-stock-out{
  opacity: 0.4;
}
.s-product-options-grid-mode{
  margin-bottom: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-items: center;
  gap: 0.5rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-options-grid-mode>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-options-grid-mode>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-options-grid-mode>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-options-grid-mode>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-options-grid-mode>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-options-grid-mode>.justify-center{order:1}.align-start-logo.store-header .container>.s-product-options-grid-mode>.justify-end{order:3;justify-content:start;width:auto}}
salla-installment>.s-product-options-grid-mode{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-product-options-grid-mode button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-product-options-grid-mode button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-product-options-grid-mode button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-product-options-grid-mode button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-product-options-grid-mode button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-product-options-grid-mode button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-product-options-grid-mode button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-product-options-grid-mode{border-radius:.75rem}
.dark salla-installment>.s-product-options-grid-mode{color:var(--dark-text-main);background-color:var(--dark-grey)}
.s-product-options-grid-mode-span{
  position: relative;
  display: flex;
  min-height: 36px;
  min-width: 45px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border-width: 1px;
  --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(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
  padding: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.s-product-options-grid-mode-span *{pointer-events:none}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-options-grid-mode-span>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-options-grid-mode-span>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-options-grid-mode-span>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-options-grid-mode-span>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-options-grid-mode-span>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-options-grid-mode-span>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-product-options-grid-mode-span{order:1}.align-start-logo.store-header .container>.s-product-options-grid-mode-span>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-product-options-grid-mode-span{justify-content:center}
.s-product-card-content-footer.s-product-options-grid-mode-span button{
  border-radius: 0.5rem;
}
custom-salla-product-card.s-product-options-grid-mode-span{border-radius:.5rem}
.s-product-options-grid-mode-span:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, 1);
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity, 1));
}
.s-product-options-grid-mode-span-checkbox{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-options-grid-mode-span-checkbox>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-options-grid-mode-span-checkbox>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-options-grid-mode-span-checkbox>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-options-grid-mode-span-checkbox>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-options-grid-mode-span-checkbox>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-options-grid-mode-span-checkbox>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-product-options-grid-mode-span-checkbox{order:1}.align-start-logo.store-header .container>.s-product-options-grid-mode-span-checkbox>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-product-options-grid-mode-span-checkbox{justify-content:center}
.s-product-options-grid-mode input:checked + div{
  border-color: #414042;
  border-color: var(--color-primary);
  background-color: rgba(var(--color-primary-rgb),0.1);
  color: #414042;
  color: var(--color-primary);
}
.s-product-options-grid-mode input[type=checkbox]{
  pointer-events: none;
  position: absolute;
  opacity: 0;
}
input[type=radio].sr-only div.s-product-options-grid-mode input[type=checkbox]{transition:all .3s}
input[type=radio].sr-only:checked~div.s-product-options-grid-mode input[type=checkbox]{border-color:var(--color-main)}
.s-product-options-grid-mode input[type=radio]{
  pointer-events: none;
  position: absolute;
  opacity: 0;
}
input[type=radio].sr-only div.s-product-options-grid-mode input[type=radio]{transition:all .3s}
input[type=radio].sr-only:checked~div.s-product-options-grid-mode input[type=radio]{border-color:var(--color-main)}
.s-product-options-disabled{
  cursor: not-allowed;
  opacity: 0.5;
}
.s-product-size-guide-wrapper .s-modal-title{
  margin-bottom: 0px !important;
}
.s-product-size-guide-wrapper .s-tabs-content{
  max-height: 60vh;
  overflow: auto;
}
@media (min-width: 768px){
  .s-product-size-guide-wrapper .s-tabs-content{
    max-height: 70vh;
  }
}
.s-product-size-guide-placeholder{
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-size-guide-placeholder>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-size-guide-placeholder>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-size-guide-placeholder>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-size-guide-placeholder>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-size-guide-placeholder>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-size-guide-placeholder>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-product-size-guide-placeholder{order:1}.align-start-logo.store-header .container>.s-product-size-guide-placeholder>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-product-size-guide-placeholder{justify-content:center}
.s-product-size-guide-skeleton-table{
  margin-top: 1.25rem;
  width: 100%;
  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));
  line-height: 1.25rem;
}
.s-product-size-guide-skeleton-table td{
  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: 0.5rem;
  line-height: 1.25rem;
}
.s-product-size-guide-header-icon{
  display: inline-flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border-width: 1px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, 1);
  border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.s-product-size-guide-header-icon{order:1}}
@media (min-width: 768px){
  .min--2 .s-product-size-guide-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-product-size-guide-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-product-size-guide-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-product-size-guide-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-product-size-guide-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-product-size-guide-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-product-size-guide-header-icon{justify-content:center}
@media (min-width: 640px){
  .s-product-size-guide-header-icon{
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    height: 5rem;
    width: 5rem;
  }
}
.s-product-size-guide-header-icon:where([dir="ltr"], [dir="ltr"] *){
  margin-right: 0.5rem;
}
@media (min-width: 640px){
  .s-product-size-guide-header-icon:where([dir="ltr"], [dir="ltr"] *){
    margin-right: 0px;
  }
}
.s-product-size-guide-header-icon:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 0.5rem;
}
@media (min-width: 640px){
  .s-product-size-guide-header-icon:where([dir="rtl"], [dir="rtl"] *){
    margin-left: 0px;
  }
}
.s-product-size-guide-header-icon svg{
  height: 1.25rem;
  width: 1.25rem;
  flex-shrink: 0;
  fill: #9ca3af;
}
.s-product-size-guide-skeleton-content{
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
}
.s-product-size-guide-skeleton-content > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-size-guide-skeleton-content>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-size-guide-skeleton-content>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-size-guide-skeleton-content>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-size-guide-skeleton-content>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-size-guide-skeleton-content>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-size-guide-skeleton-content>.justify-center{order:1}.align-start-logo.store-header .container>.s-product-size-guide-skeleton-content>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-size-guide-skeleton-header{
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.s-product-size-guide-skeleton-header > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1.25rem * var(--tw-space-x-reverse));
  margin-left: calc(1.25rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-size-guide-skeleton-header>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-size-guide-skeleton-header>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-size-guide-skeleton-header>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-size-guide-skeleton-header>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-size-guide-skeleton-header>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-size-guide-skeleton-header>.justify-center{order:1}.align-start-logo.store-header .container>.s-product-size-guide-skeleton-header>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-size-guide-skeleton-header:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 1;
}
.s-product-size-guide-skeleton-header > salla-skeleton{
  flex: 1 1 0%;
}
.s-products-list-wrapper{
  margin-bottom: 2rem;
  display: grid;
}
.s-products-list-placeholder{
  display: flex;
  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));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-products-list-placeholder>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-products-list-placeholder>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-products-list-placeholder>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-products-list-placeholder>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-products-list-placeholder>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-products-list-placeholder>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-products-list-placeholder{order:1}.align-start-logo.store-header .container>.s-products-list-placeholder>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-products-list-placeholder{justify-content:center}
.s-products-list-placeholder p{
  padding-top: 0.5rem;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
}
.s-products-list-row-cards{
  display: grid;
  grid-gap: 1rem;
  gap: 1rem;
}
.s-products-list-vertical-cards{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem;
}
@media (min-width: 640px){
  .s-products-list-vertical-cards{
    gap: 1rem;
  }
}
@media (min-width: 768px){
  .s-products-list-vertical-cards{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
@media (min-width: 1024px){
  .s-products-list-vertical-cards{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.s-products-list-loading-wrapper{
  display: flex;
  height: 5rem;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-products-list-loading-wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-products-list-loading-wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-products-list-loading-wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-products-list-loading-wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-products-list-loading-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-products-list-loading-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-products-list-loading-wrapper{order:1}.align-start-logo.store-header .container>.s-products-list-loading-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-products-list-loading-wrapper{justify-content:center}
.s-products-list-filters-results{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem;
}
@media (min-width: 640px){
  .s-products-list-filters-results{
    gap: 1rem;
  }
}
@media (min-width: 768px){
  .s-products-list-filters-results{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.s-products-list-horizontal-cards{
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 640px){
  .s-products-list-horizontal-cards{
    gap: 2rem;
  }
}
@media (min-width: 1024px){
  .s-products-list-horizontal-cards{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.s-products-list-placeholder span{
  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));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-products-list-placeholder span>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-products-list-placeholder span>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-products-list-placeholder span>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-products-list-placeholder span>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-products-list-placeholder span>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-products-list-placeholder span>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-products-list-placeholder span{order:1}.align-start-logo.store-header .container>.s-products-list-placeholder span>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .min--2 .s-products-list-placeholder span{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-products-list-placeholder span{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-products-list-placeholder span{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-products-list-placeholder span{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-products-list-placeholder span{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-products-list-placeholder span{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-products-list-placeholder span{justify-content:center}
.s-products-list-placeholder span svg{
  margin-left: auto;
  margin-right: auto;
  height: 4rem;
  width: 4rem;
  fill: #d1d5db;
  text-align: center;
}
.s-products-slider-wrapper{
  margin-bottom: 2rem;
}
@media (min-width: 768px){
  .s-products-slider-wrapper{
    margin-bottom: 5rem;
  }
}
@media (min-width: 1024px){
  .s-products-slider-wrapper{
    overflow: hidden;
  }
}
.s-products-slider-wrapper:where([dir="ltr"], [dir="ltr"] *){
  padding-right: 0px;
}
.s-products-slider-wrapper:where([dir="rtl"], [dir="rtl"] *){
  padding-left: 0px;
}
.s-products-slider-card{
  height: auto !important;
}
.s-products-slider-card{
  width: 100%;
  max-width: 250px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
@media (min-width: 640px){
  .s-products-slider-card{
    width: 50%;
    max-width: 320px;
  }
}
@media (min-width: 768px){
  .s-products-slider-card{
    width: 33.333333%;
  }
}
@media (min-width: 1024px){
  .s-products-slider-card{
    width: 25%;
  }
}
.s-progress-bar-container{
  margin-bottom: 0.625rem;
}
.s-progress-bar-header{
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, 1);
  color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}
.s-progress-bar-target-section{
  margin-bottom: 0.625rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-progress-bar-target-section>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-progress-bar-target-section>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-progress-bar-target-section>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-progress-bar-target-section>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-progress-bar-target-section>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-progress-bar-target-section>.justify-center{order:1}.align-start-logo.store-header .container>.s-progress-bar-target-section>.justify-end{order:3;justify-content:start;width:auto}}
.s-progress-bar-wrapper{
  margin-bottom: 0.375rem;
  width: 100%;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity, 1));
}
@media (min-width: 768px){
  .min--2 .s-progress-bar-wrapper{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-progress-bar-wrapper{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-progress-bar-wrapper{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-progress-bar-wrapper{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-progress-bar-wrapper{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-progress-bar-wrapper{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.dark *.s-progress-bar-wrapper{
  --tw-bg-opacity: 1;
  background-color: rgba(55, 65, 81, 1);
  background-color: rgba(55, 65, 81, var(--tw-bg-opacity, 1));
}
.s-progress-bar-progress{
  height: 100%;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgba(37, 99, 235, 1);
  background-color: rgba(37, 99, 235, var(--tw-bg-opacity, 1));
}
@media (min-width: 768px){
  .min--2 .s-progress-bar-progress{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-progress-bar-progress{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-progress-bar-progress{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-progress-bar-progress{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-progress-bar-progress{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-progress-bar-progress{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-progress-bar-message{
  margin-bottom: 0.625rem;
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, 1);
  color: rgba(248, 113, 113, var(--tw-text-opacity, 1));
}
.s-progress-bar-wrapper .s-progress-bar-progress-stripped{
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%,rgba(255, 255, 255, .2) 50%,rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
  background-size: 30px 30px;
}
.s-quantity-input-container{
  display: flex;
  height: 2.5rem;
  align-items: stretch;
  justify-content: space-around;
  border-radius: 0.375rem;
  border-width: 1px;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-quantity-input-container>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-quantity-input-container>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-quantity-input-container>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-quantity-input-container>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-quantity-input-container>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-quantity-input-container>.justify-center{order:1}.align-start-logo.store-header .container>.s-quantity-input-container>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-footer.s-quantity-input-container button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-quantity-input-container{border-radius:.25rem}
.s-quantity-input-input{
  width: 3rem;
  border-width: 1px;
  border-top-width: 0px;
  border-bottom-width: 0px;
  --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.5rem;
  padding-right: 0.5rem;
  text-align: center;
  font-weight: 700;
  --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), 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);
}
.store-header.z-3 .s-quantity-input-input:not(.fixed-pinned) .inner{background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;background:initial}
.s-quantity-input-input:focus{
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 219, 1);
  border-color: rgba(209, 213, 219, var(--tw-border-opacity, 1));
}
.s-quantity-input-button{
  width: 2.75rem;
  fill: #9ca3af;
  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;
}
.s-quantity-input-button:hover{
  fill: #414042;
  fill: var(--color-primary);
}
.s-quantity-input-button svg{
  margin-left: auto;
  margin-right: auto;
  height: 1.25rem;
  width: 1.25rem;
}
.s-quick-buy-button svg{
  margin-right: 0.375rem;
  height: 1rem;
  width: 1rem;
}
.s-quick-buy-button svg:where([dir="rtl"], [dir="rtl"] *){
  margin-right: 0px;
  margin-left: 0.375rem;
}
.s-quick-buy-apple-pay{
  display: block;
  width: 100%;
}
@media (min-width: 640px){
  .s-quick-buy-apple-pay{
    margin-top: 0.625rem;
  }
}
.s-quick-buy-apple-pay .apple-pay-btn-wrapper .apple-pay-btn{
  width: auto !important;
  border-radius: 0.25rem !important;
}
.s-quick-order-dark h1, .s-quick-order-dark p{
  color: #fff;
}
.s-quick-order-container{
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  border-radius: 0.25rem;
  padding: 1rem;
}
.s-quick-order-button-cont{
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-quick-order-button-cont>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-quick-order-button-cont>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-quick-order-button-cont>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-quick-order-button-cont>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-quick-order-button-cont>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-quick-order-button-cont>.justify-center{order:1}.align-start-logo.store-header .container>.s-quick-order-button-cont>.justify-end{order:3;justify-content:start;width:auto}}
.s-quick-order-checkbox-container{
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  display: flex;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-quick-order-checkbox-container>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-quick-order-checkbox-container>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-quick-order-checkbox-container>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-quick-order-checkbox-container>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-quick-order-checkbox-container>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-quick-order-checkbox-container>.justify-center{order:1}.align-start-logo.store-header .container>.s-quick-order-checkbox-container>.justify-end{order:3;justify-content:start;width:auto}}
.s-quick-order-checkbox-container input{
  margin-bottom: 0.5rem;
  margin-left: 0.5rem;
  height: 2.5rem;
  width: 100%;
  border-radius: 0.25rem;
  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: 0.5rem;
}
.s-quick-order-expandable{
  max-height: 0px;
  opacity: 0;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 100ms;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.s-quick-order-expandable:not(.s-quick-order-shown){
  overflow: hidden;
}
.s-quick-order-expandable.s-quick-order-shown{
  opacity: 1;
}
.s-quick-order-expandable .s-form-group{
  position: relative;
  flex-grow: 1;
}
.s-quick-order-expandable .s-form-group input{
  padding-left: 35px;
}
.s-quick-order-expandable .s-form-group input:where([dir="rtl"], [dir="rtl"] *){
  padding-right: 35px;
}
.s-quick-order-expandable .s-form-group > span{
  position: absolute;
  left: 10px;
  top: 30%;
  z-index: 10;
}
input[type=radio].sr-only div.s-quick-order-expandable .s-form-group > span{transition:all .3s}
input[type=radio].sr-only:checked~div.s-quick-order-expandable .s-form-group > span{border-color:var(--color-main)}
.s-quick-order-expandable .s-form-group > span:where([dir="rtl"], [dir="rtl"] *){
  left: auto;
  right: 10px;
}
.s-quick-order-expandable .s-form-group span svg{
  height: 1rem;
  width: 1rem;
  fill: #919191;
}
.s-quick-order-flex-input{
  display: flex;
}
.s-quick-order-flex-input > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-quick-order-flex-input>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-quick-order-flex-input>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-quick-order-flex-input>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-quick-order-flex-input>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-quick-order-flex-input>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-quick-order-flex-input>.justify-center{order:1}.align-start-logo.store-header .container>.s-quick-order-flex-input>.justify-end{order:3;justify-content:start;width:auto}}
.s-quick-order-flex-input:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 1;
}
.s-quick-order-flex-input salla-tel-input{
  height: 2.5rem;
  width: 100%;
}
.s-quick-order-errors p{
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgba(185, 28, 28, 1);
  color: rgba(185, 28, 28, var(--tw-text-opacity, 1));
}
.s-quick-order-confirm{
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  border-width: 1px;
  padding: 0.5rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-quick-order-confirm>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-quick-order-confirm>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-quick-order-confirm>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-quick-order-confirm>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-quick-order-confirm>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-quick-order-confirm>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-quick-order-confirm{order:1}.align-start-logo.store-header .container>.s-quick-order-confirm>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-quick-order-confirm{justify-content:center}
.s-quick-order-confirm span{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.s-quick-order-confirm svg{
  height: 1rem;
  width: 1rem;
  fill: #414042;
  fill: var(--color-primary);
}
.s-quick-order-terms .s-form-label{
  margin-bottom: 0px !important;
}
.s-quick-order-terms .s-form-label{
  cursor: pointer;
}
.s-quick-order-terms .s-form-label *{pointer-events:none}
.s-quick-order-terms{
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.s-quick-order-terms > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.375rem * var(--tw-space-x-reverse));
  margin-left: calc(0.375rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse)));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-quick-order-terms>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-quick-order-terms>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-quick-order-terms>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-quick-order-terms>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-quick-order-terms>.justify-start{order:2;justify-content:end;width:auto}[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-quick-order-terms{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-quick-order-terms{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-quick-order-terms{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-quick-order-terms{margin-right:auto;
  }.align-start-logo.store-header .container>.flex>.s-quick-order-terms{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-quick-order-terms>.justify-center{order:1}.align-start-logo.store-header .container>.s-quick-order-terms>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-starting-price.s-quick-order-terms{justify-content:start}
.s-quick-order-terms:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 1;
}
.s-quick-order-terms .s-checkbox::before{
  background-color: transparent;
  content: var(--tw-content);
  --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), 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);
}
.s-quick-order-terms .s-checkbox:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --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: var(--tw-ring-offset-shadow), 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));
  --tw-ring-offset-width: 0px;
}
.s-quick-order-btn-close button{
  padding: 0.5rem !important;
}
.s-quick-order-btn-close button{
  border-radius: 0.25rem;
}
.s-quick-order-phone-field:where([dir="ltr"], [dir="ltr"] *){
  padding-left: 28px !important;
}
.s-quick-order-phone-field:where([dir="ltr"], [dir="ltr"] *){
  padding-right: 87px;
}
.s-quick-order-phone-field:where([dir="rtl"], [dir="rtl"] *){
  padding-right: 28px !important;
}
.s-quick-order-phone-field:where([dir="rtl"], [dir="rtl"] *){
  padding-left: 87px;
}
.s-quick-order-email-field:where([dir="ltr"], [dir="ltr"] *){
  padding-right: 0px !important;
}
.s-quick-order-email-field:where([dir="rtl"], [dir="rtl"] *){
  padding-left: 0px !important;
}
.s-rating-modal-wrapper{
  margin-bottom: 1.5rem;
  transition-property: all;
  transition-duration: 100ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.s-rating-modal-edit-wrapper{
  margin-top: 0.625rem;
}
.s-rating-modal-footer{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-footer>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-footer>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-footer>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-footer>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-rating-modal-footer>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-rating-modal-footer>.justify-center{order:1}.align-start-logo.store-header .container>.s-rating-modal-footer>.justify-end{order:3;justify-content:start;width:auto}}
.s-rating-modal-footer salla-button button{
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  font-size: 0.75rem !important;
}
.s-rating-modal-btn{
  height: 2.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  color: #414042;
  color: var(--color-primary);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.s-rating-modal-btn:hover{
  color: var(--color-primary-dark);
}
.s-rating-modal-dots{
  display: flex;
  flex-shrink: 0;
  flex-grow: 1;
  justify-content: center;
}
.s-rating-modal-dots > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.375rem * var(--tw-space-x-reverse));
  margin-left: calc(0.375rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse)));
}
.s-rating-modal-dots{
  text-align: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-dots>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-dots>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-dots>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-dots>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-rating-modal-dots>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-rating-modal-dots>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-rating-modal-dots{order:1}.align-start-logo.store-header .container>.s-rating-modal-dots>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-rating-modal-dots{justify-content:center}
.s-rating-modal-dots:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 1;
}
.s-rating-modal-step-dot{
  height: 0.625rem;
  width: 0.625rem;
  border-radius: 9999px;
  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;
}
@media (min-width: 768px){
  .min--2 .s-rating-modal-step-dot{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-rating-modal-step-dot{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-rating-modal-step-dot{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-rating-modal-step-dot{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-rating-modal-step-dot{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-rating-modal-step-dot{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-rating-modal-step{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
.s-rating-modal-active{
  --tw-translate-x: 0px;
  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-rating-modal-unactive{
  --tw-translate-x: 0.75rem;
  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;
}
.s-rating-modal-hidden{
  display: none !important;
}
.s-rating-modal-unvisiable{
  pointer-events: none;
  opacity: 0;
}
.s-rating-modal-step-wrap{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 1rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-step-wrap>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-step-wrap>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-step-wrap>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-step-wrap>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-rating-modal-step-wrap>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-rating-modal-step-wrap>.justify-center{order:1}.align-start-logo.store-header .container>.s-rating-modal-step-wrap>.justify-end{order:3;justify-content:start;width:auto}}
.s-rating-modal-product-details{
  position: relative;
  display: flex;
  flex: 1 1 0%;
  flex-direction: column;
  padding-bottom: 1rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-product-details>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-product-details>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-product-details>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-product-details>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-rating-modal-product-details>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-rating-modal-product-details>.justify-center{order:1}.align-start-logo.store-header .container>.s-rating-modal-product-details>.justify-end{order:3;justify-content:start;width:auto}}
.s-rating-modal-product-details-main{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-product-details-main>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-product-details-main>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-product-details-main>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-product-details-main>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-rating-modal-product-details-main>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-rating-modal-product-details-main>.justify-center{order:1}.align-start-logo.store-header .container>.s-rating-modal-product-details-main>.justify-end{order:3;justify-content:start;width:auto}}
.s-rating-modal-product-details-main .s-rating-stars-wrapper{
  margin-bottom: 0.375rem;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}
@media (min-width: 640px){
  .s-rating-modal-product-details-main .s-rating-stars-wrapper{
    margin-bottom: 0px;
    flex-direction: row;
    gap: 0px;
  }
}
.s-rating-modal-rounded-icon{
  margin-bottom: 1rem;
  display: flex;
  height: 7rem;
  width: 7rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  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));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-rounded-icon>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-rounded-icon>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-rounded-icon>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-rounded-icon>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-rating-modal-rounded-icon>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-rating-modal-rounded-icon>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-rating-modal-rounded-icon{order:1}.align-start-logo.store-header .container>.s-rating-modal-rounded-icon>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .min--2 .s-rating-modal-rounded-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-rating-modal-rounded-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-rating-modal-rounded-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-rating-modal-rounded-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-rating-modal-rounded-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-rating-modal-rounded-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-rating-modal-rounded-icon{justify-content:center}
.s-rating-modal-title{
  margin-bottom: 1rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
}
.s-rating-modal-store-logo{
  width: 4rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.s-rating-modal-shipping-logo{
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.s-rating-modal-shipping-icon{
  font-size: 3rem;
  line-height: 1;
  color: #414042;
  color: var(--color-primary);
}
.s-rating-modal-comment{
  height: 5rem !important;
}
.s-rating-modal-comment{
  margin-bottom: 0.5rem;
  width: 100%;
  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));
  padding: 0.75rem;
  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: 150ms;
}
.s-product-card-content-footer.s-rating-modal-comment button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-rating-modal-comment{border-radius:.25rem}
.s-rating-modal-comment:focus{
  border-color: #414042;
  border-color: var(--color-primary);
}
.dark *.s-rating-modal-comment{
  --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));
}
.s-rating-modal-validation-msg{
  margin-top: -3px;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, 1);
  color: rgba(248, 113, 113, var(--tw-text-opacity, 1));
}
.s-rating-modal-product{
  margin-bottom: 1.5rem;
}
.s-rating-modal-product:last-child{
  margin-bottom: 0px;
}
.s-rating-modal-product .rating-outer-form{
  display: flex;
}
.s-rating-modal-product .rating-outer-form > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-product .rating-outer-form>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-product .rating-outer-form>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-product .rating-outer-form>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-product .rating-outer-form>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-rating-modal-product .rating-outer-form>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-rating-modal-product .rating-outer-form>.justify-center{order:1}.align-start-logo.store-header .container>.s-rating-modal-product .rating-outer-form>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 640px){
  .s-rating-modal-product .rating-outer-form > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--tw-space-x-reverse));
    margin-left: calc(1.25rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
  }
}
.s-rating-modal-product .rating-outer-form:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 1;
}
.s-rating-modal-product-img-wrap{
  height: 3.5rem;
  width: auto;
  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));
}
.s-product-card-content-footer.s-rating-modal-product-img-wrap button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-rating-modal-product-img-wrap{border-radius:.25rem}
@media (min-width: 640px){
  .s-rating-modal-product-img-wrap{
    width: 5rem;
  }
}
.s-rating-modal-product-img{
  position: relative;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-size: 0px;
}
.s-rating-modal-product-img::before{
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity, 1));
  --tw-content: '';
  content: var(--tw-content);
}
.s-rating-modal-product-title{
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
}
.s-rating-modal-thanks{
  padding-left: 2rem;
  padding-right: 2rem;
  text-align: center;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
.s-rating-modal-icon{
  display: inline-flex;
  height: 5rem;
  width: 5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, 1);
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity, 1));
  color: #414042;
  color: var(--color-primary);
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.s-rating-modal-icon{order:1}}
@media (min-width: 768px){
  .min--2 .s-rating-modal-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-rating-modal-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-rating-modal-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-rating-modal-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-rating-modal-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-rating-modal-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-rating-modal-icon{justify-content:center}
.s-rating-modal-icon svg{
  height: 1.75rem;
  width: 1.75rem;
  fill: #414042;
  fill: var(--color-primary);
}
.s-rating-modal-thanks-title{
  margin-top: 1rem;
  font-weight: 700;
}
.s-rating-modal-thanks-msg{
  margin-bottom: 1.5rem;
  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));
}
.s-rating-modal-thanks-btn{
  height: 2.5rem;
  flex: none;
  display: inline-flex;
  flex: 1 1 0%;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 0.375rem;
  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, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.s-rating-modal-thanks-btn{order:1}}
.s-product-card-content-sub.s-rating-modal-thanks-btn{justify-content:center}
.s-product-card-content-footer.s-rating-modal-thanks-btn button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-rating-modal-thanks-btn{border-radius:.25rem}
.s-rating-modal-thanks-btn:hover{
  opacity: 0.8;
}
.s-rating-modal-thanks-btn{
  border-width: 1px;
  border-color: #414042;
  border-color: var(--color-primary);
  background-color: #414042;
  background-color: var(--color-primary);
  color: #ff6767;
  color: var(--color-primary-reverse);color:var(--text-btn);display: inline-flex;flex: 1 1 0%;align-items: center;justify-content: center;white-space: nowrap;border-radius: 0.375rem;padding-left: 1.5rem;padding-right: 1.5rem;padding-bottom: 0.625rem;padding-top: 0.5rem;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, -webkit-backdrop-filter;transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);transition-duration: 300ms;font-family:var(--font-main);
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.s-rating-modal-thanks-btn{order:1}}
.s-product-card-content-sub.s-rating-modal-thanks-btn{justify-content:center}
.s-product-card-content-footer.s-rating-modal-thanks-btn button{
  border-radius: 0.375rem;
}
.s-product-card-content-title.s-rating-modal-thanks-btn a{font-family:var(--font-main)}
custom-salla-product-card.s-rating-modal-thanks-btn{border-radius:.25rem}
.s-rating-modal-thanks-btn{color:var(--text-btn)}
.s-rating-modal-thanks-btn:hover{
  opacity: 0.8;
}
.s-rating-modal-thanks-btn.faq-link{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  font-size: 0.75rem;
  line-height: 1rem;
}
.s-rating-modal-thanks-btn .loader{width:0;opacity:0;height:16px;transform:scale(0);transition:.3s}
.s-rating-modal-thanks-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), 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);
}
.s-rating-modal-thanks-btn.btn:disabled:hover{
  background-color: transparent;
}
.s-rating-modal-thanks-btn:disabled .s-button-text{
  opacity: 0.7;
}
.s-rating-modal-thanks-btn.lang,.s-rating-modal-thanks-btn.currency{
  padding: 0.625rem;
  padding-top: 0.5rem;
  color: inherit;
}
.dark .s-rating-modal-thanks-btn.lang,.dark .s-rating-modal-thanks-btn.currency{color:var(--dark-text-main)}
.s-rating-modal-thanks-btn.lang,.s-rating-modal-thanks-btn.currency{
  padding: 0.625rem;
  padding-top: 0.5rem;
  color: inherit;
}
.dark .s-rating-modal-thanks-btn.lang,.dark .s-rating-modal-thanks-btn.currency{color:var(--dark-text-main)}
.mobile-menu .lang.s-rating-modal-thanks-btn{padding:1rem}
@media (min-width: 768px){
  .no-content-placeholder .s-rating-modal-thanks-btn{
    font-size: 1rem;
  }
}
.no-content-placeholder .s-rating-modal-thanks-btn{padding:3px 10px}
.s-rating-modal-thanks-time{
  margin-top: 0.75rem;
  display: block;
  height: 1.5rem;
  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));
}
.s-rating-modal-stars-company{
  margin-bottom: 1.25rem;
}
salla-installment>.s-rating-modal-stars-company{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-rating-modal-stars-company button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-rating-modal-stars-company button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-rating-modal-stars-company button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-rating-modal-stars-company button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-rating-modal-stars-company button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-rating-modal-stars-company button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-rating-modal-stars-company button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-rating-modal-stars-company{border-radius:.75rem}
.dark salla-installment>.s-rating-modal-stars-company{color:var(--dark-text-main);background-color:var(--dark-grey)}
.s-rating-modal-stars-company .s-rating-stars-wrapper{
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.s-rating-modal-stars-company .s-rating-stars-wrapper{order:1}}
.s-product-card-content-sub.s-rating-modal-stars-company .s-rating-stars-wrapper{justify-content:center}
.s-rating-modal-stars-product{
  margin-bottom: 0.25rem;
}
.s-rating-modal-bg-gray{
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity, 1));
}
.s-rating-modal-bg-primary{
  background-color: #414042;
  background-color: var(--color-primary);
}
unicode{
  unicode-bidi: plaintext;
}
.s-rating-modal-wrap .s-modal-body{
  position: relative !important;
}
.s-rating-modal-skeleton{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-skeleton>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-skeleton>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-skeleton>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-skeleton>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-rating-modal-skeleton>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-rating-modal-skeleton>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-rating-modal-skeleton{order:1}.align-start-logo.store-header .container>.s-rating-modal-skeleton>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-rating-modal-skeleton{justify-content:center}
.s-rating-modal-skeleton salla-skeleton:nth-child(1){
  margin-bottom: 1.25rem;
}
.s-rating-modal-skeleton salla-skeleton:nth-child(2){
  margin-bottom: 0.75rem;
}
.s-rating-modal-skeleton salla-skeleton:nth-child(3){
  margin-bottom: 1.25rem;
}
.s-rating-modal-skeleton salla-skeleton:nth-child(4){
  margin-bottom: 2rem;
}
.s-rating-modal-skeleton-footer{
  margin-top: 1.5rem;
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-skeleton-footer>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-skeleton-footer>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-skeleton-footer>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-skeleton-footer>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-rating-modal-skeleton-footer>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-rating-modal-skeleton-footer>.justify-center{order:1}.align-start-logo.store-header .container>.s-rating-modal-skeleton-footer>.justify-end{order:3;justify-content:start;width:auto}.align-start-logo.store-header .container>.flex>.s-rating-modal-skeleton-footer{order:3;justify-content:start;width:auto}}
.s-rating-modal-skeleton-footer salla-skeleton{
  margin-bottom: 0px !important;
}
.s-rating-modal-skeleton-stars{
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}
.s-rating-modal-skeleton-stars > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-skeleton-stars>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-skeleton-stars>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-skeleton-stars>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-skeleton-stars>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-rating-modal-skeleton-stars>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-rating-modal-skeleton-stars>.justify-center{order:1}.align-start-logo.store-header .container>.s-rating-modal-skeleton-stars>.justify-end{order:3;justify-content:start;width:auto}}
.s-rating-modal-skeleton-stars:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 1;
}
.s-rating-modal-skeleton-stars div svg{
  width: 25px;
  fill: currentColor;
  --tw-text-opacity: 1;
  color: rgba(209, 213, 219, 1);
  color: rgba(209, 213, 219, var(--tw-text-opacity, 1));
}
.s-rating-modal-uploader{
  height: 0px;
  opacity: 0;
  transition-property: all;
  transition-duration: 100ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.s-rating-modal-uploader.is-opened{
  margin-bottom: 1.5rem;
}
.s-rating-modal-uploader.is-closed{
  pointer-events: none;
  z-index: 0;
}
.s-rating-modal-uploader .filepond--drop-label{
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, 1);
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity, 1));
}
.s-rating-modal-uploader .filepond--file-status .filepond--file-status-main{
  font-size: 11px;
}
.s-rating-modal-uploader .filepond--file-info-main{
  font-size: 11px;
}
.s-rating-modal-uploader li[data-filepond-item-state='load-invalid'] .filepond--file-info{
  display: none;
}
.index section.s-block.s-rating-modal-uploader li[data-filepond-item-state='load-invalid'] .filepond--file-info{display:none}
.s-rating-modal-filepond-placeholder-text{
  font-size: 0.75rem !important;
  line-height: 1rem !important;
}
.s-rating-modal-filepond-placeholder{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-filepond-placeholder>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-filepond-placeholder>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-filepond-placeholder>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-filepond-placeholder>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-rating-modal-filepond-placeholder>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-rating-modal-filepond-placeholder>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-rating-modal-filepond-placeholder{order:1}.align-start-logo.store-header .container>.s-rating-modal-filepond-placeholder>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-rating-modal-filepond-placeholder{justify-content:center}
.s-rating-modal-filepond-placeholder-icon{
  margin-bottom: 0.25rem;
}
.s-rating-modal-filepond-placeholder-icon svg{
  height: 1.5rem;
  width: 1.5rem;
  fill: #7c8082;
}
.s-rating-modal-contact{
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  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: 0.5rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-contact>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-contact>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-contact>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-contact>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-rating-modal-contact>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-rating-modal-contact>.justify-center{order:1}.align-start-logo.store-header .container>.s-rating-modal-contact>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-footer.s-rating-modal-contact button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-rating-modal-contact{border-radius:.25rem}
.s-rating-modal-contact p{
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, 1);
  color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
}
.s-rating-modal-contact-icons{
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-contact-icons>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-contact-icons>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-contact-icons>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-contact-icons>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-rating-modal-contact-icons>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-rating-modal-contact-icons>.justify-center{order:1}.align-start-logo.store-header .container>.s-rating-modal-contact-icons>.justify-end{order:3;justify-content:start;width:auto}}
.s-rating-modal-contact-icons span{
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  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));
  padding: 0.375rem;
}
.s-rating-modal-contact-icons span *{pointer-events:none}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-contact-icons span>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-contact-icons span>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-contact-icons span>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-contact-icons span>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-rating-modal-contact-icons span>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-rating-modal-contact-icons span>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-rating-modal-contact-icons span{order:1}.align-start-logo.store-header .container>.s-rating-modal-contact-icons span>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-rating-modal-contact-icons span{justify-content:center}
.s-product-card-content-footer.s-rating-modal-contact-icons span button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-rating-modal-contact-icons span{border-radius:.25rem}
.s-rating-modal-contact-icons span svg{
  height: 1rem;
  width: 1rem;
  fill: #414042;
  fill: var(--color-primary);
}
.s-rating-modal-footer-end{
  justify-content: flex-end;
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.s-rating-modal-footer-end{order:3;justify-content:start;width:auto}}
.s-rating-modal-delete-wrapper{
  text-align: center;
}
.s-rating-modal-delete-wrapper h3{
  margin-top: 1.25rem;
  font-size: 1.125rem;
  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-rating-modal-delete-wrapper p{
  margin-top: 1.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));
}
.s-rating-modal-delete-actions{
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-delete-actions>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-delete-actions>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-rating-modal-delete-actions>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-modal-delete-actions>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-rating-modal-delete-actions>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-rating-modal-delete-actions>.justify-center{order:1}.align-start-logo.store-header .container>.s-rating-modal-delete-actions>.justify-end{order:3;justify-content:start;width:auto}}
.s-rating-modal-delete-actions salla-button{
  width: 100%;
}
.s-rating-modal-delete-actions salla-button button{
  width: 100%;
}
.s-rating-stars-wrapper{
  display: inline-flex;
  align-items: center;
}
.s-rating-stars-btn-star{
  border-width: 0px;
  fill: #d1d5db;
  padding-left: 0.125rem;
  padding-right: 0.125rem;
  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-rating-stars-large svg{
  height: 1.75rem;
  width: 1.75rem;
}
.s-rating-stars-medium svg{
  height: 1.25rem;
  width: 1.25rem;
}
.s-rating-stars-small svg{
  height: 1rem;
  width: 1rem;
}
.s-rating-stars-mini svg{
  height: 0.75rem;
  width: 0.75rem;
}
.s-rating-stars-hovered{
  fill: #fbbf24;
}
.s-rating-stars-selected{
  fill: #fbbf24;
}
.s-rating-stars-element{
  display: flex;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-rating-stars-element>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-stars-element>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-rating-stars-element>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-stars-element>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-rating-stars-element>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-rating-stars-element>.justify-center{order:1}.align-start-logo.store-header .container>.s-rating-stars-element>.justify-end{order:3;justify-content:start;width:auto}}
.s-rating-stars-reviews{
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
}
.s-rating-stars-label{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  display: flex;
  height: -moz-fit-content;
  height: fit-content;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity, 1));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, 1);
  color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-rating-stars-label>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-stars-label>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-rating-stars-label>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-stars-label>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-rating-stars-label>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-rating-stars-label>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-rating-stars-label{order:1}.align-start-logo.store-header .container>.s-rating-stars-label>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .min--2 .s-rating-stars-label{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-rating-stars-label{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-rating-stars-label{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-rating-stars-label{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-rating-stars-label{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-rating-stars-label{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-rating-stars-label{justify-content:center}
.s-review-card-slider-container{
  position: relative;
  display: grid;
  height: auto;
  overflow: clip;
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, 1);
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity, 1));
}
.s-review-card-slides{
  display: flex;
  height: 100%;
  width: 100%;
  transition-property: transform;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-review-card-slides>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-review-card-slides>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-review-card-slides>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-review-card-slides>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-review-card-slides>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-review-card-slides>.justify-center{order:1}.align-start-logo.store-header .container>.s-review-card-slides>.justify-end{order:3;justify-content:start;width:auto}}
.s-review-card-slider-slide{
  display: grid;
  height: 100%;
  width: 100%;
  flex-shrink: 0;
  align-content: center;
  justify-content: center;
  place-content: center;
}
.s-review-card-slider-slide img{
  -o-object-fit: cover;
     object-fit: cover;
}
.s-review-card-slider-dots{
  position: absolute;
  bottom: 1rem;
  left: 0px;
  right: 0px;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
input[type=radio].sr-only div.s-review-card-slider-dots{transition:all .3s}
input[type=radio].sr-only:checked~div.s-review-card-slider-dots{border-color:var(--color-main)}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-review-card-slider-dots>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-review-card-slider-dots>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-review-card-slider-dots>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-review-card-slider-dots>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-review-card-slider-dots>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-review-card-slider-dots>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-review-card-slider-dots{order:1}.align-start-logo.store-header .container>.s-review-card-slider-dots>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-review-card-slider-dots{justify-content:center}
.s-review-card-slider-dot{
  aspect-ratio: 1 / 1;
  height: 0.5rem;
  width: 0.5rem;
  cursor: pointer;
  justify-self: center;
  border-radius: 9999px;
  border-width: 0.5px;
  border-color: #414042;
  border-color: var(--color-primary);
  background-color: rgba(255, 255, 255, 0.7);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.s-review-card-slider-dot *{pointer-events:none}
@media (min-width: 768px){
  .min--2 .s-review-card-slider-dot{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-review-card-slider-dot{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-review-card-slider-dot{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-review-card-slider-dot{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-review-card-slider-dot{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-review-card-slider-dot{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-review-card-slider-dot.active{
  --tw-scale-x: 1.5;
  --tw-scale-y: 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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  background-color: #414042;
  background-color: var(--color-primary);
}
.s-review-card-container{
  overflow: clip;
  border-radius: 4px;
  border-width: 1px;
}
.s-review-card-image{
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.s-review-card-content{
  display: grid;
  grid-gap: 0.5rem;
  gap: 0.5rem;
  --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;
}
.s-review-card-header{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-review-card-header>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-review-card-header>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-review-card-header>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-review-card-header>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-review-card-header>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-review-card-header>.justify-center{order:1}.align-start-logo.store-header .container>.s-review-card-header>.justify-end{order:3;justify-content:start;width:auto}}
.s-review-card-stars{
  display: flex;
  gap: 0.25rem;
  --tw-text-opacity: 1;
  color: rgba(251, 191, 36, 1);
  color: rgba(251, 191, 36, var(--tw-text-opacity, 1));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-review-card-stars>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-review-card-stars>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-review-card-stars>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-review-card-stars>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-review-card-stars>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-review-card-stars>.justify-center{order:1}.align-start-logo.store-header .container>.s-review-card-stars>.justify-end{order:3;justify-content:start;width:auto}}
.s-review-card-reviewer-name{
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-review-card-reviewer-name>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-review-card-reviewer-name>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-review-card-reviewer-name>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-review-card-reviewer-name>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-review-card-reviewer-name>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-review-card-reviewer-name>.justify-center{order:1}.align-start-logo.store-header .container>.s-review-card-reviewer-name>.justify-end{order:3;justify-content:start;width:auto}}
.s-review-card-reviewer-name:where([dir="ltr"], [dir="ltr"] *){
  margin-right: auto;
}
.s-review-card-reviewer-name:where([dir="rtl"], [dir="rtl"] *){
  margin-left: auto;
}
.s-review-card-review-content{
  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));
  word-wrap: anywhere;
}
.s-review-card-product-container{
  display: flex;
  gap: 0.5rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-review-card-product-container>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-review-card-product-container>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-review-card-product-container>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-review-card-product-container>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-review-card-product-container>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-review-card-product-container>.justify-center{order:1}.align-start-logo.store-header .container>.s-review-card-product-container>.justify-end{order:3;justify-content:start;width:auto}}
.s-review-card-product-container img{
  flex-shrink: 0;
}
.s-review-card-product-image{
  height: 60px;
  width: 60px;
  border-radius: 2px;
  border-width: 1px;
  -o-object-fit: contain;
     object-fit: contain;
}
.s-review-card-product-details{
  align-self: center;
}
.s-review-card-product-details-name{
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #414042;
  color: var(--color-primary);
  word-wrap: anywhere;
}
.s-review-card-product-details-purchase-count{
  display: flex;
  align-items: center;
  gap: 0.5rem;
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, 1);
  color: rgba(239, 68, 68, var(--tw-text-opacity, 1));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-review-card-product-details-purchase-count>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-review-card-product-details-purchase-count>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-review-card-product-details-purchase-count>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-review-card-product-details-purchase-count>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-review-card-product-details-purchase-count>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-review-card-product-details-purchase-count>.justify-center{order:1}.align-start-logo.store-header .container>.s-review-card-product-details-purchase-count>.justify-end{order:3;justify-content:start;width:auto}}
.s-review-card-divider{
  margin-left: auto;
  margin-right: auto;
  height: 1px;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity, 1));
}
.s-review-card-verified-icon{
  display: flex;
  height: 1.25rem;
  width: 1.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgba(251, 191, 36, 1);
  background-color: rgba(251, 191, 36, var(--tw-bg-opacity, 1));
  font-size: 0.75rem;
  line-height: 1rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-review-card-verified-icon>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-review-card-verified-icon>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-review-card-verified-icon>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-review-card-verified-icon>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-review-card-verified-icon>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-review-card-verified-icon>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-review-card-verified-icon{order:1}.align-start-logo.store-header .container>.s-review-card-verified-icon>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .min--2 .s-review-card-verified-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-review-card-verified-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-review-card-verified-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-review-card-verified-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-review-card-verified-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-review-card-verified-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-review-card-verified-icon{justify-content:center}
.s-review-card-verified-icon svg{
  height: 0.75rem;
  width: 0.75rem;
}
@media (min-width: 1024px){
  .s-reviews-container{
    overflow: hidden;
  }
}
.s-reviews-header-wrapper{
  display: flex;
  justify-content: space-between;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-reviews-header-wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-reviews-header-wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-reviews-header-wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-reviews-header-wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-reviews-header-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-reviews-header-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.s-reviews-header-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
.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-avatar-image{
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.s-reviews-content{
  margin-bottom: 0.5rem;
  margin-top: 1rem;
  line-height: 1.5rem;
}
@media (min-width: 640px){
  .s-reviews-content{
    margin-top: 0px;
  }
}
.s-reviews-customer-header{
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
}
@media (min-width: 480px){
  .s-reviews-customer-header{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.s-reviews-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-reviews-display-all:hover{
  opacity: 1;
}
.s-reviews-display-all-icon svg{
  display: inline-block;
  height: 14px;
  width: 14px;
}
.s-reviews-display-all-icon svg:where([dir="ltr"], [dir="ltr"] *){
  --tw-rotate: 180deg;
  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-quote-icon svg{
  position: absolute;
  top: 1rem;
  font-size: 2.25rem;
  line-height: 2.5rem;
  color: #414042;
  color: var(--color-primary);
}
input[type=radio].sr-only div.s-reviews-quote-icon svg{transition:all .3s}
input[type=radio].sr-only:checked~div.s-reviews-quote-icon svg{border-color:var(--color-main)}
@media (min-width: 640px){
  .s-reviews-quote-icon svg{
    font-size: 3rem;
    line-height: 1;
  }
}
.s-reviews-quote-icon svg:where([dir="ltr"], [dir="ltr"] *){
  right: 2rem;
}
@media (min-width: 640px){
  .s-reviews-quote-icon svg:where([dir="ltr"], [dir="ltr"] *){
    right: 3rem;
  }
}
@media (min-width: 1024px){
  .s-reviews-quote-icon svg:where([dir="ltr"], [dir="ltr"] *){
    right: 2rem;
  }
}
.s-reviews-quote-icon svg:where([dir="rtl"], [dir="rtl"] *){
  left: 2rem;
}
@media (min-width: 640px){
  .s-reviews-quote-icon svg:where([dir="rtl"], [dir="rtl"] *){
    left: 3rem;
  }
}
@media (min-width: 1024px){
  .s-reviews-quote-icon svg:where([dir="rtl"], [dir="rtl"] *){
    left: 2rem;
  }
}
.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), 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);
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-reviews-testimonial>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-reviews-testimonial>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-reviews-testimonial>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-reviews-testimonial>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-reviews-testimonial>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-reviews-testimonial>.justify-center{order:1}.align-start-logo.store-header .container>.s-reviews-testimonial>.justify-end{order:3;justify-content:start;width:auto}}
@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), 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);
  }
}
.s-reviews-testimonials-slider{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
@media (min-width: 1024px){
  .s-reviews-testimonials-slider .swiper{
    margin-left: -200px;
    margin-right: -200px;
  }
}
.s-reviews-testimonials-slider .swiper:where([dir="ltr"], [dir="ltr"] *){
  padding-right: 3rem;
  padding-left: 1.25rem;
}
@media (min-width: 1024px){
  .s-reviews-testimonials-slider .swiper:where([dir="ltr"], [dir="ltr"] *){
    padding-right: 0px;
    padding-left: 0px;
  }
}
.s-reviews-testimonials-slider .swiper:where([dir="rtl"], [dir="rtl"] *){
  padding-left: 3rem;
  padding-right: 1.25rem;
}
@media (min-width: 1024px){
  .s-reviews-testimonials-slider .swiper:where([dir="rtl"], [dir="rtl"] *){
    padding-left: 0px;
    padding-right: 0px;
  }
  .s-reviews-testimonials-slider .swiper .s-slider-button-next{
    margin-right: 200px;
  }
  .s-reviews-testimonials-slider .swiper .s-slider-button-prev{
    margin-left: 200px;
  }
}
.s-reviews-testimonials-slider .swiper:not(.swiper-initialized){
  opacity: 0;
}
.s-reviews-testimonial__inner{
  display: flex;
  align-items: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-reviews-testimonial__inner>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-reviews-testimonial__inner>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-reviews-testimonial__inner>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-reviews-testimonial__inner>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-reviews-testimonial__inner>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-reviews-testimonial__inner>.justify-center{order:1}.align-start-logo.store-header .container>.s-reviews-testimonial__inner>.justify-end{order:3;justify-content:start;width:auto}}
.s-reviews-testimonial__avatar{
  height: 5rem;
  width: 5rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 .s-reviews-testimonial__avatar{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-reviews-testimonial__avatar{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-reviews-testimonial__avatar{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-reviews-testimonial__avatar{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-reviews-testimonial__avatar{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-reviews-testimonial__avatar{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.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 .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;
}
.index section.s-block.s-reviews-testimonial__text p{display:none}
@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(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-reviews-testimonial__name_wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-reviews-testimonial__name_wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-reviews-testimonial__name_wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-reviews-testimonial__name_wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-reviews-testimonial__name_wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-reviews-testimonial__name_wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-reviews-testimonial__name_wrapper{order:1}.align-start-logo.store-header .container>.s-reviews-testimonial__name_wrapper>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-reviews-testimonial__name_wrapper{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;
}
.index section.s-block.s-reviews-testimonial__rating{display:none}
.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;
  }
}
.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(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;
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.s-reviews-container .swiper-slide-prev .s-reviews-testimonial{order:3;justify-content:start;width:auto}}
.s-reviews-container .swiper-slide-next .s-reviews-testimonial{
  align-items: center;
  justify-content: flex-start;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-reviews-container .swiper-slide-next .s-reviews-testimonial{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-reviews-container .swiper-slide-next .s-reviews-testimonial{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-reviews-container .swiper-slide-next .s-reviews-testimonial{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-reviews-container .swiper-slide-next .s-reviews-testimonial{margin-right:auto;
  }.align-start-logo.store-header .container>.flex>.s-reviews-container .swiper-slide-next .s-reviews-testimonial{order:2;justify-content:end;width:auto}}
.s-product-card-starting-price.s-reviews-container .swiper-slide-next .s-reviews-testimonial{justify-content: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), 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));
}
.index section.s-block.s-reviews-container .s-slider--nav-arrow{display:none}
@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-page-grid{
  display: grid;
  align-items: flex-start;
  grid-gap: 1.25rem;
  gap: 1.25rem;
}
@media (min-width: 640px){
  .s-reviews-page-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px){
  .s-reviews-page-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px){
  .s-reviews-page-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.s-reviews-page-title{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  row-gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 0.75rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-reviews-page-title>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-reviews-page-title>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-reviews-page-title>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-reviews-page-title>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-reviews-page-title>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-reviews-page-title>.justify-center{order:1}.align-start-logo.store-header .container>.s-reviews-page-title>.justify-end{order:3;justify-content:start;width:auto}}
.s-reviews-page-count{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, 1);
  color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}
.s-reviews-page-filter{
  height: auto;
  min-width: 164px;
  border-radius: 0.375rem;
  border-width: 1px;
  border-color: #414042;
  border-color: var(--color-primary);
  padding: 0.25rem;
  color: #414042;
  color: var(--color-primary);
}
.s-product-card-content-footer.s-reviews-page-filter button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-reviews-page-filter{border-radius:.25rem}
.s-reviews-page-filter:focus{
  border-color: #414042;
  border-color: var(--color-primary);
}
.s-reviews-page-filter-label{
  display: none;
  white-space: nowrap;
}
.index section.s-block.s-reviews-page-filter-label{display:none}
@media (min-width: 640px){
  .s-reviews-page-filter-label{
    display: block;
  }
}
.s-reviews-page-filter-wrapper{
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-reviews-page-filter-wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-reviews-page-filter-wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-reviews-page-filter-wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-reviews-page-filter-wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-reviews-page-filter-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-reviews-page-filter-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.s-reviews-page-filter-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
.s-reviews-page-load-more-btn{
  margin-top: 1.5rem;
}
.s-reviews-page-header-wrapper{
  margin-bottom: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-reviews-page-header-wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-reviews-page-header-wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-reviews-page-header-wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-reviews-page-header-wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-reviews-page-header-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-reviews-page-header-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.s-reviews-page-header-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
.s-reviews-page-load-more-container{
  text-align: center;
}
.s-reviews-summary-wrapper{
  display: flex;
  flex-direction: column;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 1.5rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-reviews-summary-wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-reviews-summary-wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-reviews-summary-wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-reviews-summary-wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-reviews-summary-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-reviews-summary-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.s-reviews-summary-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 640px){
  .s-reviews-summary-wrapper{
    flex-direction: row;
  }
}
.s-reviews-summary-header{
  display: grid;
  align-content: flex-start;
  grid-gap: 2rem;
  gap: 2rem;
}
@media (min-width: 640px){
  .s-reviews-summary-header{
    gap: 2.5rem;
  }
}
.s-reviews-summary-header .s-rating-stars-selected{
  fill: #414042;
  fill: var(--color-primary);
}
.s-reviews-summary-header .s-rating-stars-btn-star{
  padding: 0px;
}
.s-reviews-summary-header-section{
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-reviews-summary-header-section>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-reviews-summary-header-section>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-reviews-summary-header-section>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-reviews-summary-header-section>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-reviews-summary-header-section>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-reviews-summary-header-section>.justify-center{order:1}.align-start-logo.store-header .container>.s-reviews-summary-header-section>.justify-end{order:3;justify-content:start;width:auto}}
.s-reviews-summary-average{
  font-size: 3rem;
  line-height: 1;
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, 1);
  color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
}
.s-reviews-summary-count{
  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-reviews-summary-rows{
  display: grid;
  grid-gap: 1rem;
  gap: 1rem;
}
@media (min-width: 640px){
  .s-reviews-summary-rows{
    width: 54%;
  }
}
.s-reviews-summary-row{
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-reviews-summary-row>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-reviews-summary-row>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-reviews-summary-row>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-reviews-summary-row>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-reviews-summary-row>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-reviews-summary-row>.justify-center{order:1}.align-start-logo.store-header .container>.s-reviews-summary-row>.justify-end{order:3;justify-content:start;width:auto}}
.s-reviews-summary-row-rate{
  display: flex;
  align-items: center;
  gap: 0.25rem;
  fill: #1f2937;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-reviews-summary-row-rate>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-reviews-summary-row-rate>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-reviews-summary-row-rate>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-reviews-summary-row-rate>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-reviews-summary-row-rate>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-reviews-summary-row-rate>.justify-center{order:1}.align-start-logo.store-header .container>.s-reviews-summary-row-rate>.justify-end{order:3;justify-content:start;width:auto}}
.s-reviews-summary-row-rate span svg{
  max-height: -moz-max-content;
  max-height: max-content;
  width: 1rem;
  fill: #fbbf24;
}
.s-reviews-summary-progress{
  flex-grow: 1;
}
.s-reviews-summary-progress .s-progress-bar-wrapper{
  margin-bottom: 0px;
}
.s-reviews-summary-progress .s-progress-bar-container{
  margin-bottom: 0px;
}
.s-reviews-summary-percentage{
  width: 2rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, 1);
  color: rgba(55, 65, 81, var(--tw-text-opacity, 1));
}
.s-reviews-summary-recommendation-percentage{
  font-size: 2.25rem;
  line-height: 2.5rem;
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, 1);
  color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
}
.s-reviews-summary-header-section.s-reviews-summary-recommendation-only{
  gap: 3rem;
}
.s-reviews-summary-header-section.s-reviews-summary-recommendation-only p{
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, 1);
  color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
}
.s-scopes-title{
  margin-bottom: 0.75rem;
}
.s-scopes-header{
  margin-bottom: 0.5rem;
  display: block;
  text-align: center;
}
.s-scopes-header-icon{
  margin: auto;
  display: flex;
  height: 5rem;
  width: 5rem;
  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(252, 252, 252, 1);
  background-color: rgba(252, 252, 252, var(--tw-bg-opacity, 1));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-scopes-header-icon>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-scopes-header-icon>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-scopes-header-icon>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-scopes-header-icon>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-scopes-header-icon>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-scopes-header-icon>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-scopes-header-icon{order:1}.align-start-logo.store-header .container>.s-scopes-header-icon>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .min--2 .s-scopes-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-scopes-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-scopes-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-scopes-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-scopes-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-scopes-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-scopes-header-icon{justify-content:center}
.s-scopes-header-icon svg{
  height: 2rem;
  fill: #414042;
  fill: var(--color-primary);
}
.s-scopes-header-title{
  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));
}
.s-scopes-header-subtitle{
  text-align: left;
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.s-scopes-header-subtitle:where([dir="rtl"], [dir="rtl"] *){
  text-align: right;
}
.s-scopes-search-wrapper{
  position: relative;
  width: 100%;
}
.s-scopes-search-icon{
  pointer-events: none;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  display: flex;
  align-items: center;
  padding-left: 0.75rem;
}
input[type=radio].sr-only div.s-scopes-search-icon{transition:all .3s}
input[type=radio].sr-only:checked~div.s-scopes-search-icon{border-color:var(--color-main)}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-scopes-search-icon>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-scopes-search-icon>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-scopes-search-icon>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-scopes-search-icon>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-scopes-search-icon>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-scopes-search-icon>.justify-center{order:1}.align-start-logo.store-header .container>.s-scopes-search-icon>.justify-end{order:3;justify-content:start;width:auto}}
.s-scopes-search-icon:where([dir="rtl"], [dir="rtl"] *){
  left: auto;
  right: 0px;
  padding-left: 0px;
  padding-right: 0.75rem;
}
.s-scopes-search-icon svg{
  height: 1.25rem;
  width: 1.25rem;
  fill: #9ca3af;
}
.s-scopes-search-input{
  display: block;
  width: 100%;
  border-radius: 0.25rem;
  border-width: 1px;
  --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(249, 250, 251, 1);
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity, 1));
  padding: 0.625rem;
  padding-left: 2.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgba(17, 24, 39, 1);
  color: rgba(17, 24, 39, var(--tw-text-opacity, 1));
}
.s-scopes-search-input:focus{
  --tw-ring-color: var(--color-primary);
}
.s-scopes-search-input:where([dir="rtl"], [dir="rtl"] *){
  padding-left: 0px;
  padding-right: 2.5rem;
}
.s-scopes-input-wrap{
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-scopes-input-wrap>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-scopes-input-wrap>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-scopes-input-wrap>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-scopes-input-wrap>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-scopes-input-wrap>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-scopes-input-wrap>.justify-center{order:1}.align-start-logo.store-header .container>.s-scopes-input-wrap>.justify-end{order:3;justify-content:start;width:auto}}
salla-installment>.s-scopes-input-wrap{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-scopes-input-wrap button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-scopes-input-wrap button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-scopes-input-wrap button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-scopes-input-wrap button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-scopes-input-wrap button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-scopes-input-wrap button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-scopes-input-wrap button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-scopes-input-wrap{border-radius:.75rem}
.dark salla-installment>.s-scopes-input-wrap{color:var(--dark-text-main);background-color:var(--dark-grey)}
.s-scopes-input-wrap:last-child{
  margin-bottom: 0px;
}
.s-scopes-input{
  height: 1rem;
  width: 1rem;
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 219, 1);
  border-color: rgba(209, 213, 219, var(--tw-border-opacity, 1));
  color: #414042;
  color: var(--color-primary);
}
.s-scopes-input:focus{
  --tw-ring-color: var(--color-primary);
}
.s-scopes-input:where([dir="ltr"], [dir="ltr"] *){
  margin-right: 0.75rem;
}
.s-scopes-input:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 0.75rem;
}
.s-scopes-label{
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, 1);
  color: rgba(55, 65, 81, var(--tw-text-opacity, 1));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-scopes-label>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-scopes-label>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-scopes-label>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-scopes-label>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-scopes-label>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-scopes-label>.justify-center{order:1}.align-start-logo.store-header .container>.s-scopes-label>.justify-end{order:3;justify-content:start;width:auto}}
.s-scopes-select{
  height: 2.5rem;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  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));
  padding-left: 1rem;
  padding-right: 1rem;
  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;
}
.s-product-card-content-footer.s-scopes-select button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-scopes-select{border-radius:.25rem}
.s-scopes-select:focus{
  border-color: #414042;
  border-color: var(--color-primary);
}
.s-scopes-container{
  margin-top: 1.25rem;
  max-height: 300px;
  overflow-y: auto;
  padding-left: 0.5rem;
}
.s-scopes-container:where([dir="rtl"], [dir="rtl"] *){
  padding-left: 0px;
  padding-right: 0.5rem;
}
.s-scopes-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;
}
input[type=radio].s-scopes-sr-only div.absolute{transition:all .3s}
input[type=radio].s-scopes-sr-only:checked~div.absolute{border-color:var(--color-main)}
.s-scopes-is-closed{
  opacity: 0.5;
}
.s-scopes-closed-badge{
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, 1);
  color: rgba(248, 113, 113, var(--tw-text-opacity, 1));
}
.s-scopes-clickable{
  cursor: pointer;
}
.s-scopes-clickable *{pointer-events:none}
.s-scopes-submit{
  margin-top: 1.5rem;
  height: auto;
}
.s-scopes-color-red{
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, 1);
  color: rgba(248, 113, 113, var(--tw-text-opacity, 1));
}
.s-scopes-color-green{
  --tw-text-opacity: 1;
  color: rgba(34, 197, 94, 1);
  color: rgba(34, 197, 94, var(--tw-text-opacity, 1));
}
.s-scopes-color-gray{
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
}
.s-scopes-hidden{
  display: none;
}
.index section.s-block.s-scopes-hidden{display:none}
.s-scopes-input-wrap.is-hidden-branch{
  display: none;
}
.index section.s-block.s-scopes-input-wrap.is-hidden-branch{display:none}
.s-scopes-wrap{
  display: flex;
  max-height: 350px;
  flex-direction: column;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-scopes-wrap>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-scopes-wrap>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-scopes-wrap>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-scopes-wrap>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-scopes-wrap>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-scopes-wrap>.justify-center{order:1}.align-start-logo.store-header .container>.s-scopes-wrap>.justify-end{order:3;justify-content:start;width:auto}}
.s-scopes-wrap .s-placeholder-wrapper{
  display: flex;
  height: 12rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-scopes-wrap .s-placeholder-wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-scopes-wrap .s-placeholder-wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-scopes-wrap .s-placeholder-wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-scopes-wrap .s-placeholder-wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-scopes-wrap .s-placeholder-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-scopes-wrap .s-placeholder-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-scopes-wrap .s-placeholder-wrapper{order:1}.align-start-logo.store-header .container>.s-scopes-wrap .s-placeholder-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-scopes-wrap .s-placeholder-wrapper{justify-content:center}
.s-scopes-footer{
  margin-top: auto;
}
.s-scopes-modal .s-modal-header{
  display: block !important;
}
.s-scopes-skeleton .s-list-tile-item-content{
  display: block;
  width: 100%;
}
.s-scopes-skeleton .s-scopes-header-title > salla-skeleton{
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  display: block;
}
.s-scopes-skeleton .s-scopes-header-subtitle > salla-skeleton{
  margin-bottom: 0.75rem;
  display: block;
}
.s-scopes-skeleton .s-scopes-skeleton-scopes > salla-skeleton{
  margin-bottom: 1.25rem;
  display: block;
}
salla-installment>.s-scopes-skeleton .s-scopes-skeleton-scopes > salla-skeleton{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-scopes-skeleton .s-scopes-skeleton-scopes > salla-skeleton button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-scopes-skeleton .s-scopes-skeleton-scopes > salla-skeleton button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-scopes-skeleton .s-scopes-skeleton-scopes > salla-skeleton button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-scopes-skeleton .s-scopes-skeleton-scopes > salla-skeleton button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-scopes-skeleton .s-scopes-skeleton-scopes > salla-skeleton button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-scopes-skeleton .s-scopes-skeleton-scopes > salla-skeleton button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-scopes-skeleton .s-scopes-skeleton-scopes > salla-skeleton button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-scopes-skeleton .s-scopes-skeleton-scopes > salla-skeleton{border-radius:.75rem}
.dark salla-installment>.s-scopes-skeleton .s-scopes-skeleton-scopes > salla-skeleton{color:var(--dark-text-main);background-color:var(--dark-grey)}
.s-scopes-skeleton .s-scopes-skeleton-search{
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.s-scopes-skeleton .s-scopes-skeleton-search > salla-skeleton{
  margin-bottom: 0.75rem;
  display: block;
}
.s-scopes-skeleton .s-list-tile-item-icon{
  margin-right: 2rem;
}
.s-scopes-skeleton .s-list-tile-item-icon:where([dir="rtl"], [dir="rtl"] *){
  margin-right: 0px;
  margin-left: 2rem;
}
.s-scopes-skeleton-btn{
  margin-top: 2rem;
}
.s-search-container{
  position: relative;
  z-index: 99;
  max-height: 14rem;
  border-radius: 0.375rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.s-product-card-content-footer.s-search-container button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-search-container{border-radius:.25rem}
.s-search-oval{
  border-radius: 20px;
}
.s-search-inline{
  min-width: 220px;
}
.s-search-container-open{
  border-radius: 0px !important;
}
.s-search-container-open{
  max-height: 24rem;
}
.s-search-container-open .s-search-input{
  border-top-left-radius: 0.375rem !important;
  border-top-right-radius: 0.375rem !important;
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}
.s-search-container-open .s-search-input{
  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));
}
.s-search-no-results .s-search-input{
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  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));
}
.s-search-input{
  height: 2.5rem;
  width: 100%;
  border-radius: 0.375rem;
  --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-top: 0px;
  padding-bottom: 0.125rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --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;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.s-product-card-content-footer.s-search-input button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-search-input{border-radius:.25rem}
.s-search-input:focus{
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, 1);
  border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
  --tw-ring-color: transparent;
}
.s-search-input:where([dir="ltr"], [dir="ltr"] *){
  padding-left: 2.5rem;
}
.s-search-input:where([dir="rtl"], [dir="rtl"] *){
  padding-right: 2.5rem;
}
.s-search-icon-wrap{
  position: absolute;
  top: 50%;
  --tw-translate-y: -50%;
  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));
  line-height: 1;
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
}
input[type=radio].sr-only div.s-search-icon-wrap{transition:all .3s}
input[type=radio].sr-only:checked~div.s-search-icon-wrap{border-color:var(--color-main)}
.s-search-icon-wrap:where([dir="ltr"], [dir="ltr"] *){
  left: 1rem;
}
.s-search-icon-wrap:where([dir="rtl"], [dir="rtl"] *){
  right: 1rem;
}
.s-search-icon svg{
  height: 1rem;
  width: 1rem;
  fill: #9ca3af;
}
.s-search-spinner-loader{
  display: block;
  height: 1rem;
  width: 1rem;
}
@keyframes spin{
  to{
    transform: rotate(360deg);
  }
}
.s-search-spinner-loader{
  animation: spin 1s linear infinite;
  border-radius: 9999px;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, 1);
  border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
  border-right-color: #414042;
  border-right-color: var(--color-primary);
}
@media (min-width: 768px){
  .min--2 .s-search-spinner-loader{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-search-spinner-loader{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-search-spinner-loader{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-search-spinner-loader{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-search-spinner-loader{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-search-spinner-loader{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-search-results{
  position: absolute;
  margin: auto;
  max-height: 24rem;
  width: 100%;
  max-width: 100%;
  overflow-y: auto;
  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));
  --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px 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);
}
input[type=radio].sr-only div.s-search-results{transition:all .3s}
input[type=radio].sr-only:checked~div.s-search-results{border-color:var(--color-main)}
.s-search-no-results{
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}
.s-search-no-results-placeholder{
  padding: 1rem;
  text-align: center;
  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));
}
.s-search-product{
  display: flex;
  height: 100%;
  justify-content: space-around;
  overflow: hidden;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(243, 244, 246, 1);
  border-color: rgba(243, 244, 246, var(--tw-border-opacity, 1));
  background-color: transparent;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  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;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-search-product>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-search-product>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-search-product>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-search-product>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-search-product>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-search-product>.justify-center{order:1}.align-start-logo.store-header .container>.s-search-product>.justify-end{order:3;justify-content:start;width:auto}}
.s-search-product:last-child{
  border-bottom-width: 0px;
}
.s-search-product:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, 1);
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity, 1));
}
@media (min-width: 480px){
  .s-search-product{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.s-search-product-image-container{
  position: relative;
  height: 3.5rem;
  width: 5rem;
  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));
}
.s-product-card-content-footer.s-search-product-image-container button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-search-product-image-container{border-radius:.25rem}
.s-search-product-image{
  position: relative;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-size: 0px;
}
.s-search-product-image::before{
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity, 1));
  --tw-content: '';
  content: var(--tw-content);
}
.s-search-product-details{
  flex: 1 1 0%;
  padding-top: 0.25rem;
}
.s-search-product-details:where([dir="ltr"], [dir="ltr"] *){
  padding-left: 1rem;
}
@media (min-width: 480px){
  .s-search-product-details:where([dir="ltr"], [dir="ltr"] *){
    padding-left: 1.25rem;
  }
}
.s-search-product-details:where([dir="rtl"], [dir="rtl"] *){
  padding-right: 1rem;
}
@media (min-width: 480px){
  .s-search-product-details:where([dir="rtl"], [dir="rtl"] *){
    padding-right: 1.25rem;
  }
}
.s-search-product-title{
  margin-bottom: 0.375rem;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: flex-start;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgba(75, 85, 99, 1);
  color: rgba(75, 85, 99, var(--tw-text-opacity, 1));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-search-product-title>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-search-product-title>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-search-product-title>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-search-product-title>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-search-product-title>.justify-start{order:2;justify-content:end;width:auto}[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-search-product-title{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-search-product-title{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-search-product-title{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-search-product-title{margin-right:auto;
  }.align-start-logo.store-header .container>.flex>.s-search-product-title{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-search-product-title>.justify-center{order:1}.align-start-logo.store-header .container>.s-search-product-title>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-starting-price.s-search-product-title{justify-content:start}
.s-search-product-price{
  display: flex;
  width: 100%;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  color: #414042;
  color: var(--color-primary);
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-search-product-price>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-search-product-price>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-search-product-price>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-search-product-price>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-search-product-price>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-search-product-price>.justify-center{order:1}.align-start-logo.store-header .container>.s-search-product-price>.justify-end{order:3;justify-content:start;width:auto}}
.s-search-product-regular-price{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-weight: 500;
  --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;
}
.s-search-product-not-available{
  --tw-grayscale: grayscale(100%);
  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-search-action{
  position: absolute;
  height: 100%;
}
input[type=radio].sr-only div.s-search-action{transition:all .3s}
input[type=radio].sr-only:checked~div.s-search-action{border-color:var(--color-main)}
.s-search-action:where([dir="ltr"], [dir="ltr"] *){
  right: 0px;
}
.s-search-action:where([dir="rtl"], [dir="rtl"] *){
  left: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.s-search-action-oval:where([dir="ltr"], [dir="ltr"] *){
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
}
.s-search-action-oval:where([dir="rtl"], [dir="rtl"] *){
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
}
.s-search-input-wrapper{
  position: relative;
  display: flex;
  flex-grow: 1;
  align-items: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-search-input-wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-search-input-wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-search-input-wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-search-input-wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-search-input-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-search-input-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.s-search-input-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
.s-search-modal .s-modal-wrapper{
  align-items: flex-start;
  padding: 0;
}
.s-search-modal .s-modal-spacer{
  display: inline;
}
.s-search-modal .s-modal-body{
  position: relative !important;
}
.s-search-modal .s-modal-body{
  padding: 0;
  width: 700px;
  max-width: 90%;
  margin-top: 3.2rem;
  border-radius: 0.5rem;
  background: transparent;
  overflow: visible;
}
.s-search-modal .s-modal-close{
  top: 50%;
  transform: translateY(-50%);
}
.s-skeleton-wrapper{
  display: block;
}
@keyframes pulse{
  50%{
    opacity: .5;
  }
}
.s-skeleton-wrapper{
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.s-skeleton-item{
  height: 100%;
  width: 100%;
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity, 1));
}
.s-product-card-content-footer.s-skeleton-item button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-skeleton-item{border-radius:.25rem}
.dark *.s-skeleton-item{
  --tw-bg-opacity: 1;
  background-color: rgba(55, 65, 81, 1);
  background-color: rgba(55, 65, 81, var(--tw-bg-opacity, 1));
}
.s-skeleton-item-circular{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 .s-skeleton-item-circular{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-skeleton-item-circular{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-skeleton-item-circular{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-skeleton-item-circular{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-skeleton-item-circular{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-skeleton-item-circular{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-slider-swiper-wrapper > div{
  align-items: stretch;
}
.s-slider-container{
  display: block;
}
.s-slider-horizontal .s-slider-thumbs{
  margin-top: 1rem;
}
.s-slider-thumbs-container{
  position: relative;
  margin-left: -5px;
  margin-right: -5px;
}
@media (min-width: 640px){
  .s-slider-thumbs-container{
    padding-left: 0px;
    padding-right: 0px;
  }
}
.s-slider-thumbs-container:where([dir="ltr"], [dir="ltr"] *){
  padding-right: 3rem;
}
@media (min-width: 1024px){
  .s-slider-thumbs-container:where([dir="ltr"], [dir="ltr"] *){
    padding-right: 0px;
  }
}
.s-slider-thumbs-container:where([dir="rtl"], [dir="rtl"] *){
  padding-left: 3rem;
}
@media (min-width: 1024px){
  .s-slider-thumbs-container:where([dir="rtl"], [dir="rtl"] *){
    padding-left: 0px;
  }
}
.s-slider-wrapper{
  position: relative;
}
.s-slider-block__title{
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
  display: flex;
  max-width: 1280px;
  align-items: center;
  justify-content: space-between;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-slider-block__title>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-slider-block__title>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-slider-block__title>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-slider-block__title>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-slider-block__title>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-slider-block__title>.justify-center{order:1}.align-start-logo.store-header .container>.s-slider-block__title>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .s-slider-block__title{
    margin-bottom: 2rem;
  }
}
.s-slider-block__title-right:where([dir="ltr"], [dir="ltr"] *){
  padding-right: 2rem;
}
.s-slider-block__title-right:where([dir="rtl"], [dir="rtl"] *){
  padding-left: 2rem;
}
.s-slider-block__title-left{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.s-slider-block__title-left > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1.5rem * var(--tw-space-x-reverse));
  margin-left: calc(1.5rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-slider-block__title-left>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-slider-block__title-left>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-slider-block__title-left>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-slider-block__title-left>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-slider-block__title-left>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-slider-block__title-left>.justify-center{order:1}.align-start-logo.store-header .container>.s-slider-block__title-left>.justify-end{order:3;justify-content:start;width:auto}.align-start-logo.store-header .container>.flex>.s-slider-block__title-left{order:3;justify-content:start;width:auto}}
.s-slider-block__title-left:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 1;
}
.s-slider-block__title h2{
  position: relative;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
}
.s-slider-block__title h2:where([dir="ltr"], [dir="ltr"] *){
  padding-right: 2rem;
}
.s-slider-block__title h2:where([dir="rtl"], [dir="rtl"] *){
  padding-left: 2rem;
}
.s-slider-block__title p{
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  opacity: 0.6;
}
@media (min-width: 768px){
  .s-slider-block__title p:where([dir="ltr"], [dir="ltr"] *){
    padding-right: 4rem;
  }
  .s-slider-block__title p:where([dir="rtl"], [dir="rtl"] *){
    padding-left: 4rem;
  }
}
.s-slider-block__title-nav{
  display: flex;
}
.s-slider-block__title-nav > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.625rem * var(--tw-space-x-reverse));
  margin-left: calc(0.625rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse)));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-slider-block__title-nav>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-slider-block__title-nav>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-slider-block__title-nav>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-slider-block__title-nav>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-slider-block__title-nav>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-slider-block__title-nav>.justify-center{order:1}.align-start-logo.store-header .container>.s-slider-block__title-nav>.justify-end{order:3;justify-content:start;width:auto}}
.s-slider-block__title-nav:where([dir="ltr"], [dir="ltr"] *){
  margin-left: 1.5rem;
  flex-direction: row-reverse;
}
.s-slider-block__title-nav:where([dir="rtl"], [dir="rtl"] *){
  margin-right: 1.5rem;
}
.s-slider-block__title-nav:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 1;
}
salla-slider[direction='ltr'] .s-slider-block__title-nav{
  flex-direction: row-reverse;
}
.carousel-slider .s-slider-block__title-nav{
  display: none;
}
.index section.s-block.carousel-slider .s-slider-block__title-nav{display:none}
@media (min-width: 1024px){
  .carousel-slider .s-slider-block__title-nav{
    display: flex;
  }
}
.s-slider-v-centered .s-slider-block__title-nav{
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  margin-left: 0px;
  margin-right: 0px;
  width: 94%;
  --tw-translate-x: -50%;
  --tw-translate-y: -50%;
  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));
  justify-content: space-between;
}
input[type=radio].sr-only div.s-slider-v-centered .s-slider-block__title-nav{transition:all .3s}
input[type=radio].sr-only:checked~div.s-slider-v-centered .s-slider-block__title-nav{border-color:var(--color-main)}
.s-slider-v-centered .s-slider-block__title-nav button{
  pointer-events: auto;
  border-style: none;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px 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);
  --tw-shadow-color: #d1d5db;
  --tw-shadow: var(--tw-shadow-colored);
}
.s-slider-v-centered .s-slider-block__title-nav button:hover{
  --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), 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);
}
.s-slider-v-centered .s-slider-block__title-nav button.swiper-button-disabled{
  opacity: 1;
  --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), 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);
}
.store-header.z-3 .s-slider-v-centered .s-slider-block__title-nav button.swiper-button-disabled:not(.fixed-pinned) .inner{background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;background:initial}
.s-slider-v-centered .s-slider-block__title-nav button.swiper-button-disabled svg{
  fill: #d1d5db;
}
.s-slider-v-centered.fullwidth-slider .s-slider-block__title-nav button{
  --tw-shadow-color: #374151;
  --tw-shadow: var(--tw-shadow-colored);
}
.s-slider-controls-outer .s-slider-block__title-nav{
  width: 97%;
}
@media (min-width: 1536px){
  .s-slider-controls-outer .s-slider-block__title-nav{
    width: calc(100% + 32px);
  }
}
.s-slider-block__display-all{
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  color: #414042;
  color: var(--color-primary);
}
.s-slider-block__display-all:hover{
  opacity: 0.8;
}
.s-slider-nav-arrow{
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 219, 1);
  border-color: rgba(209, 213, 219, var(--tw-border-opacity, 1));
  font-size: 1.25rem;
  line-height: 1.75rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.s-slider-nav-arrow{order:1}}
@media (min-width: 768px){
  .min--2 .s-slider-nav-arrow{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-slider-nav-arrow{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-slider-nav-arrow{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-slider-nav-arrow{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-slider-nav-arrow{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-slider-nav-arrow{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-slider-nav-arrow{justify-content:center}
.s-slider-nav-arrow svg{
  width: 22px;
  fill: #6b7280;
}
.s-slider-thumbs-nav{
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  margin-left: 0px;
  margin-right: 0px;
  display: flex;
  width: 94%;
  --tw-translate-x: -50%;
  --tw-translate-y: -50%;
  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));
  justify-content: space-between;
}
.s-slider-thumbs-nav > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.625rem * var(--tw-space-x-reverse));
  margin-left: calc(0.625rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse)));
}
input[type=radio].sr-only div.s-slider-thumbs-nav{transition:all .3s}
input[type=radio].sr-only:checked~div.s-slider-thumbs-nav{border-color:var(--color-main)}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-slider-thumbs-nav>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-slider-thumbs-nav>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-slider-thumbs-nav>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-slider-thumbs-nav>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-slider-thumbs-nav>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-slider-thumbs-nav>.justify-center{order:1}.align-start-logo.store-header .container>.s-slider-thumbs-nav>.justify-end{order:3;justify-content:start;width:auto}}
.s-slider-thumbs-nav:where([dir="ltr"], [dir="ltr"] *){
  flex-direction: row-reverse;
}
.s-slider-thumbs-nav:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 1;
}
.s-slider-thumbs-nav button{
  pointer-events: auto;
  border-style: none;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
}
.s-slider-thumbs-nav button:hover{
  --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), 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);
}
.s-slider-thumbs-nav button.swiper-button-disabled{
  opacity: 1;
  --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), 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);
}
.store-header.z-3 .s-slider-thumbs-nav button.swiper-button-disabled:not(.fixed-pinned) .inner{background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;background:initial}
.s-slider-thumbs-nav button.swiper-button-disabled svg{
  fill: #d1d5db;
}
.s-slider-nav-arrow:not(:disabled):hover{
  border-color: #414042;
  border-color: var(--color-primary);
}
.s-slider-nav-arrow:not(:disabled):hover svg{
  fill: #414042;
  fill: var(--color-primary);
}
salla-slider:not(.hydrated), .carousel-slider{
  visibility: visible;
}
salla-slider:not(.hydrated) .tooltip-content, .carousel-slider .tooltip-content{visibility:visible;opacity:1;transform:translate(82px, -110px)}
salla-slider[type]:not(.hydrated) > div, salla-slider[type]:not(.hydrated) .swiper > div > div, .carousel-slider .swiper{
  margin-left: -0.625rem;
  margin-right: -0.625rem;
  display: flex;
  padding-left: 5px;
  padding-right: 5px;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>salla-slider[type]:not(.hydrated) > div>.justify-start,[dir="ltr"] .align-start-logo.store-header .container> salla-slider[type]:not(.hydrated) .swiper > div > div>.justify-start,[dir="ltr"] .align-start-logo.store-header .container> .carousel-slider .swiper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>salla-slider[type]:not(.hydrated) > div>.justify-start,[dir="rtl"] .align-start-logo.store-header .container> salla-slider[type]:not(.hydrated) .swiper > div > div>.justify-start,[dir="rtl"] .align-start-logo.store-header .container> .carousel-slider .swiper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>salla-slider[type]:not(.hydrated) > div>.justify-start,[dir="ltr"] .align-start-logo.store-header .container> salla-slider[type]:not(.hydrated) .swiper > div > div>.justify-start,[dir="ltr"] .align-start-logo.store-header .container> .carousel-slider .swiper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>salla-slider[type]:not(.hydrated) > div>.justify-start,[dir="rtl"] .align-start-logo.store-header .container> salla-slider[type]:not(.hydrated) .swiper > div > div>.justify-start,[dir="rtl"] .align-start-logo.store-header .container> .carousel-slider .swiper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>salla-slider[type]:not(.hydrated) > div>.justify-start,.align-start-logo.store-header .container> salla-slider[type]:not(.hydrated) .swiper > div > div>.justify-start,.align-start-logo.store-header .container> .carousel-slider .swiper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>salla-slider[type]:not(.hydrated) > div>.justify-center,.align-start-logo.store-header .container> salla-slider[type]:not(.hydrated) .swiper > div > div>.justify-center,.align-start-logo.store-header .container> .carousel-slider .swiper>.justify-center{order:1}.align-start-logo.store-header .container>salla-slider[type]:not(.hydrated) > div>.justify-end,.align-start-logo.store-header .container> salla-slider[type]:not(.hydrated) .swiper > div > div>.justify-end,.align-start-logo.store-header .container> .carousel-slider .swiper>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 640px){
  salla-slider[type]:not(.hydrated) > div, salla-slider[type]:not(.hydrated) .swiper > div > div, .carousel-slider .swiper{
    padding-left: 0px;
    padding-right: 0px;
  }
}
salla-slider[type]:not(.hydrated) > div:where([dir="ltr"], [dir="ltr"] *), salla-slider[type]:not(.hydrated) .swiper > div > div:where([dir="ltr"], [dir="ltr"] *), .carousel-slider .swiper:where([dir="ltr"], [dir="ltr"] *){
  padding-right: 3rem;
}
@media (min-width: 1024px){
  salla-slider[type]:not(.hydrated) > div:where([dir="ltr"], [dir="ltr"] *), salla-slider[type]:not(.hydrated) .swiper > div > div:where([dir="ltr"], [dir="ltr"] *), .carousel-slider .swiper:where([dir="ltr"], [dir="ltr"] *){
    padding-right: 0px;
  }
}
salla-slider[type]:not(.hydrated) > div:where([dir="rtl"], [dir="rtl"] *), salla-slider[type]:not(.hydrated) .swiper > div > div:where([dir="rtl"], [dir="rtl"] *), .carousel-slider .swiper:where([dir="rtl"], [dir="rtl"] *){
  padding-left: 3rem;
}
@media (min-width: 1024px){
  salla-slider[type]:not(.hydrated) > div:where([dir="rtl"], [dir="rtl"] *), salla-slider[type]:not(.hydrated) .swiper > div > div:where([dir="rtl"], [dir="rtl"] *), .carousel-slider .swiper:where([dir="rtl"], [dir="rtl"] *){
    padding-left: 0px;
  }
}
salla-slider[type]:not(.hydrated) > div > div, salla-slider[type]:not(.hydrated) .swiper > div > div > div, .carousel-slider .swiper-wrapper > div{
  flex-shrink: 0;
  padding-left: 5px;
  padding-right: 5px;
}
@media (min-width: 640px){
  salla-slider[type]:not(.hydrated) > div > div, salla-slider[type]:not(.hydrated) .swiper > div > div > div, .carousel-slider .swiper-wrapper > div{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}
salla-slider:not([type='carousel']):not([type='thumbs']):not(.hydrated) > div, salla-slider.photos-slider:not(.hydrated) > div{
  margin-left: 0px;
  margin-right: 0px;
  width: 100%;
  padding-left: 0px;
  padding-right: 0px;
}
salla-slider:not([type='carousel']):not([type='thumbs']):not(.hydrated) > div > div, salla-slider.photos-slider:not(.hydrated) > div > div{
  padding: 0px;
}
salla-slider:not([type='carousel']):not([type='thumbs']):not(.hydrated) > div > div:nth-child(n+2){
  display: none;
}
.index sectionsalla-slider.s-block:not([type='carousel']):not([type='thumbs']):not(.hydrated) > div > div:nth-child(n+2){display:none}
salla-slider[type='fullscreen'] [slot='items'] > div{
  min-height: calc(100vh - 100px);
  width: 100%;
}
salla-slider:not(.hydrated){
  display: block;
  overflow: hidden;
}
.s-slider-has-notitle .s-slider-block__title{
  margin-bottom: 0px;
}
salla-slider div[slot='thumbs']{
  margin-top: 0.625rem;
}
salla-slider{
  display: block;
}
salla-slider div[slot='thumbs'] > div{
  height: 5rem;
  padding-left: 5px;
  padding-right: 5px;
}
.s-slider-vertical{
  height: 100%;
}
@media (min-width: 768px){
  .s-slider-vertical{
    display: flex;
  }
}
.s-slider-vertical .s-slider-container{
  margin-left: 0px;
  margin-right: 0px;
}
.s-slider-vertical .s-slider-thumbs{
  margin-left: -0.625rem;
  margin-right: -0.625rem;
  margin-top: 0.625rem;
  width: 100%;
}
@media (min-width: 768px){
  .s-slider-vertical .s-slider-thumbs{
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 15px;
    height: 100%;
    width: 8rem;
    padding: 0px;
  }
  .s-slider-vertical .s-slider-thumbs:where([dir="rtl"], [dir="rtl"] *){
    margin-left: 0px;
    margin-right: 15px;
  }
}
.s-slider-vertical .s-slider-thumbs-container{
  margin-left: -0.625rem;
  margin-right: -0.625rem;
  margin-top: 0.625rem;
  max-height: 360px;
  width: 100vw;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
@media (min-width: 768px){
  .s-slider-vertical .s-slider-thumbs-container{
    top: 50%;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    min-height: 100%;
    width: 8rem;
    --tw-translate-y: -50%;
    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));
    padding: 0px;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.s-slider-vertical .s-slider-thumbs-prev{
  margin-left: 0px !important;
  margin-right: 0px !important;
}
.s-slider-vertical .s-slider-thumbs-prev{
  position: absolute;
  top: 1%;
  left: 50%;
  z-index: 1;
  display: none;
  --tw-translate-x: -50%;
  --tw-rotate: 90deg;
  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));
}
input[type=radio].sr-only div.s-slider-vertical .s-slider-thumbs-prev{transition:all .3s}
input[type=radio].sr-only:checked~div.s-slider-vertical .s-slider-thumbs-prev{border-color:var(--color-main)}
.index section.s-block.s-slider-vertical .s-slider-thumbs-prev{display:none}
@media (min-width: 768px){
  .s-slider-vertical .s-slider-thumbs-prev{
    display: flex;
  }
}
.s-slider-vertical .s-slider-thumbs-prev:where([dir="rtl"], [dir="rtl"] *){
  --tw-rotate: -90deg;
  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-slider-vertical .s-slider-thumbs-next{
  margin-left: 0px !important;
  margin-right: 0px !important;
}
.s-slider-vertical .s-slider-thumbs-next{
  position: absolute;
  bottom: 1%;
  left: 50%;
  z-index: 1;
  display: none;
  --tw-translate-x: -50%;
  --tw-rotate: 90deg;
  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));
}
input[type=radio].sr-only div.s-slider-vertical .s-slider-thumbs-next{transition:all .3s}
input[type=radio].sr-only:checked~div.s-slider-vertical .s-slider-thumbs-next{border-color:var(--color-main)}
.index section.s-block.s-slider-vertical .s-slider-thumbs-next{display:none}
@media (min-width: 768px){
  .s-slider-vertical .s-slider-thumbs-next{
    display: flex;
  }
}
.s-slider-vertical .s-slider-thumbs-next:where([dir="rtl"], [dir="rtl"] *){
  --tw-rotate: -90deg;
  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-slider-vertical .s-slider-thumbs-nav{
  height: 100%;
}
.s-slider-thumbs .s-slider-thumbs-container .swiper-slide{
  margin-left: 5px;
  margin-right: 5px;
  height: 4rem;
  width: 25%;
  cursor: pointer;
  overflow: hidden;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, 1);
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity, 1));
  padding: 0px;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.s-slider-thumbs .s-slider-thumbs-container .swiper-slide *{pointer-events:none}
.s-slider-thumbs .s-slider-thumbs-container .swiper-slide:hover{
  opacity: 0.8;
}
@media (min-width: 640px){
  .s-slider-thumbs .s-slider-thumbs-container .swiper-slide{
    width: 20%;
  }
}
@media (min-width: 768px){
  .s-slider-thumbs .s-slider-thumbs-container .swiper-slide{
    height: 5rem;
    width: 25%;
  }
}
@media (min-width: 1024px){
  .s-slider-thumbs .s-slider-thumbs-container .swiper-slide{
    width: 20%;
  }
}
.s-slider-vertical .s-slider-thumbs-container .swiper-slide{
  margin-left: 0;
  margin-right: 0;
  margin-top: 5px;
  margin-bottom: 5px;
  height: 4rem;
  cursor: pointer;
  padding: 0px;
}
.s-slider-vertical .s-slider-thumbs-container .swiper-slide *{pointer-events:none}
@media (min-width: 768px){
  .s-slider-vertical .s-slider-thumbs-container .swiper-slide{
    height: 5rem;
    width: 100%;
  }
}
.s-slider-thumbs .s-slider-thumbs-container .swiper-slide:after{
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  height: 100%;
  width: 100%;
  border-radius: 0.25rem;
  --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: var(--tw-ring-offset-shadow), 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));
  --tw-ring-inset: inset;
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity, 1));
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  --tw-content: '';
  content: var(--tw-content);
}
input[type=radio].sr-only div.s-slider-thumbs .s-slider-thumbs-container .swiper-slide:after{transition:all .3s}
input[type=radio].sr-only:checked~div.s-slider-thumbs .s-slider-thumbs-container .swiper-slide:after{border-color:var(--color-main)}
@media (min-width: 768px){
  thumbs .s-slider-thumbs-container{
    direction: ltr;
  }
  .s-slider-thumbs .s-slider-thumbs-container.has-more-4-slides{
    padding-left: 0px;
    padding-right: 0px;
  }
}
.s-slider-thumbs .s-slider-thumbs-container.has-more-4-slides:where([dir="ltr"], [dir="ltr"] *){
  padding-right: 2.5rem;
}
.s-slider-thumbs .s-slider-thumbs-container.has-more-4-slides:where([dir="rtl"], [dir="rtl"] *){
  padding-left: 2.5rem;
}
salla-slider .video-entry, salla-slider .model-entry{
  position: relative;
}
salla-slider .video-entry:before, salla-slider .model-entry:before{
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: flex;
  height: 4rem;
  width: 4rem;
  --tw-translate-x: -50%;
  --tw-translate-y: -50%;
  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));
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: rgba(0, 0, 0, 0.3);
  font-size: 3rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.8);
  --tw-content: '\ee61';
  content: var(--tw-content);
}
input[type=radio].sr-only divsalla-slider .video-entry:before,input[type=radio].sr-only div salla-slider .model-entry:before{transition:all .3s}
input[type=radio].sr-only:checked~divsalla-slider .video-entry:before,input[type=radio].sr-only:checked~div salla-slider .model-entry:before{border-color:var(--color-main)}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>salla-slider .video-entry>.justify-start:before,[dir="ltr"] .align-start-logo.store-header .container> salla-slider .model-entry>.justify-start:before{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>salla-slider .video-entry>.justify-start:before,[dir="rtl"] .align-start-logo.store-header .container> salla-slider .model-entry>.justify-start:before{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>salla-slider .video-entry>.justify-start:before,[dir="ltr"] .align-start-logo.store-header .container> salla-slider .model-entry>.justify-start:before{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>salla-slider .video-entry>.justify-start:before,[dir="rtl"] .align-start-logo.store-header .container> salla-slider .model-entry>.justify-start:before{margin-right:auto;
  }.align-start-logo.store-header .container>salla-slider .video-entry>.justify-start:before,.align-start-logo.store-header .container> salla-slider .model-entry>.justify-start:before{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>salla-slider .video-entry>.justify-center:before,.align-start-logo.store-header .container> salla-slider .model-entry>.justify-center:before{order:1}.align-start-logo.store-header .container>.flex>salla-slider .video-entry:before,.align-start-logo.store-header .container>.flex> salla-slider .model-entry:before{order:1}.align-start-logo.store-header .container>salla-slider .video-entry>.justify-end:before,.align-start-logo.store-header .container> salla-slider .model-entry>.justify-end:before{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .min--2 salla-slider .video-entry:before,.min--2  salla-slider .model-entry:before{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-slider .video-entry:before,.min--3  salla-slider .model-entry:before{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-slider .video-entry:before,.min--4  salla-slider .model-entry:before{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-slider .video-entry:before,.min--5  salla-slider .model-entry:before{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-slider .video-entry:before,.min--6  salla-slider .model-entry:before{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-slider .video-entry:before,.min--10  salla-slider .model-entry:before{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
salla-slider.s-product-card-content-sub .video-entry:before, salla-slider.s-product-card-content-sub .model-entry:before{justify-content:center}
.video-entry:before, .model-entry:before{
  font-family: sallaicons;
}
salla-slider .model-entry .s-toggle-switcher{
  pointer-events: auto;
}
salla-slider .model-entry:before{
  --tw-content: '\e9a0';
  content: var(--tw-content);
}
.s-slider-thumbs .swiper-slide.video-entry:before, .s-slider-thumbs .swiper-slide.model-entry:before{
  height: 1.75rem;
  width: 1.75rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.s-slider-thumbs .s-slider-thumbs-container .swiper-slide.swiper-slide-thumb-active:after{
  --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: var(--tw-ring-offset-shadow), 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));
  --tw-ring-color: var(--color-primary);
}
.s-slider-with-grid-thumbs .s-slider-thumbs .s-slider-thumbs-container .swiper-slide{
  margin-left: 0px !important;
  margin-right: 0px !important;
}
.s-slider-with-grid-thumbs .s-slider-thumbs .s-slider-thumbs-container .swiper-slide{
  -o-object-fit: cover;
     object-fit: cover;
}
.s-slider-with-grid-thumbs .s-slider-thumbs .s-slider-thumbs-container{
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.s-slider-with-grid-thumbs .s-slider-thumbs-nav{
  display: none;
}
.index section.s-block.s-slider-with-grid-thumbs .s-slider-thumbs-nav{display:none}
.s-slider-grid-thumbs{
  transform: none !important;
}
.s-slider-grid-thumbs{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}
.s-social-list{
  display: flex;
  gap: 0.625rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-social-list>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-social-list>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-social-list>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-social-list>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-social-list>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-social-list>.justify-center{order:1}.align-start-logo.store-header .container>.s-social-list>.justify-end{order:3;justify-content:start;width:auto}}
.s-social-link a{
  display: flex;
  height: 2rem;
  width: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border-width: 1px;
  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, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-social-link a>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-social-link a>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-social-link a>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-social-link a>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-social-link a>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.flex>.s-social-link a{order:1}.align-start-logo.store-header .container>.s-social-link a>.justify-center{order:1}.align-start-logo.store-header .container>.s-social-link a>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .min--2 .s-social-link a{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-social-link a{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-social-link a{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-social-link a{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-social-link a{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-social-link a{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-social-link a{justify-content:center}
.s-social-link a:hover{
  opacity: 0.75;
}
.s-social-link a svg{
  height: 0.875rem;
  width: 0.875rem;
  fill: currentColor;
}
.s-social-share-wrapper{
  position: relative;
}
.s-social-share-btn span{
  pointer-events: none;
}
.s-social-share-btn span svg{
  height: 1rem;
  width: 1rem;
}
.s-social-share-list{
  position: absolute;
  top: 3rem;
  left: 2.5px;
  z-index: 10;
  display: flex;
  height: 0px;
  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: 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), 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);
}
input[type=radio].sr-only div.s-social-share-list{transition:all .3s}
input[type=radio].sr-only:checked~div.s-social-share-list{border-color:var(--color-main)}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-social-share-list>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-social-share-list>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-social-share-list>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-social-share-list>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-social-share-list>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-social-share-list>.justify-center{order:1}.align-start-logo.store-header .container>.s-social-share-list>.justify-end{order:3;justify-content:start;width:auto}}
.s-social-share-list.opened{
  height: auto;
}
.s-social-share-list a{
  display: block;
  padding: 0.75rem;
}
.s-social-share-list a:hover svg{
  fill: #414042;
  fill: var(--color-primary);
}
.s-social-share-icon svg{
  height: 1rem;
  width: 1rem;
}
.s-tabs-bg-normal{
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, 1);
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity, 1));
}
.s-tabs-header{
  display: flex;
  cursor: pointer;
  align-content: center;
  justify-content: flex-start;
}
.s-tabs-header > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.s-tabs-header{
  overflow-x: auto;
  border-bottom-width: 2px;
  border-color: #414042;
  border-color: var(--color-primary);
}
.s-tabs-header *{pointer-events:none}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-tabs-header>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-tabs-header>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-tabs-header>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-tabs-header>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-tabs-header>.justify-start{order:2;justify-content:end;width:auto}[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-tabs-header{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-tabs-header{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-tabs-header{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-tabs-header{margin-right:auto;
  }.align-start-logo.store-header .container>.flex>.s-tabs-header{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-tabs-header>.justify-center{order:1}.align-start-logo.store-header .container>.s-tabs-header>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-starting-price.s-tabs-header{justify-content:start}
@media (min-width: 768px){
  .s-tabs-header{
    overflow-x: hidden;
  }
}
.s-tabs-header:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 1;
}
.s-tabs-header *{
  pointer-events: auto !important;
}
.s-tabs-header-item{
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity, 1));
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media (min-width: 768px){
  .s-tabs-header-item{
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}
.s-tabs-content{
  display: none;
}
.index section.s-block.s-tabs-content{display:none}
.s-tabs-content-wrapper{
  padding-top: 0.75rem;
}
.s-tabs-content-selected{
  display: block;
}
.s-tabs-active{
  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-tel-input-control{
  height: 2.5rem;
  width: 100%;
  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));
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  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: 150ms;
}
.s-product-card-content-footer.s-tel-input-control button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-tel-input-control{border-radius:.25rem}
.s-tel-input-control:focus{
  border-color: #414042;
  border-color: var(--color-primary);
}
.dark *.s-tel-input-control{
  --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));
}
.s-tel-input-error-msg{
  display: block;
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-border-opacity: 1;
  border-color: rgba(248, 113, 113, 1);
  border-color: rgba(248, 113, 113, var(--tw-border-opacity, 1));
}
.s-tel-input-error-msg:focus{
  --tw-border-opacity: 1;
  border-color: rgba(239, 68, 68, 1);
  border-color: rgba(239, 68, 68, var(--tw-border-opacity, 1));
}
.s-tel-input-error-msg{
  --tw-border-opacity: 1 !important;
  border-color: rgba(239, 68, 68, 1) !important;
  border-color: rgba(239, 68, 68, var(--tw-border-opacity, 1)) !important;
  --tw-text-opacity: 1 !important;
  color: rgba(239, 68, 68, 1) !important;
  color: rgba(239, 68, 68, var(--tw-text-opacity, 1)) !important;
}
salla-user-menu div[slot='trigger']{
  display: none;
}
.s-user-menu-wrapper{
  display: block;
  min-width: -moz-max-content;
  min-width: max-content;
  flex-shrink: 0;
}
.s-user-menu-relative-dropdown{
  position: relative;
}
.s-user-menu-trigger{
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  align-items: center;
  border-top-right-radius: 0.375rem;
  border-top-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-left: 0.625rem;
  padding-right: 0.625rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.s-user-menu-trigger *{pointer-events:none}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-user-menu-trigger>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-user-menu-trigger>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-user-menu-trigger>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-user-menu-trigger>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-user-menu-trigger>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-user-menu-trigger>.justify-center{order:1}.align-start-logo.store-header .container>.s-user-menu-trigger>.justify-end{order:3;justify-content:start;width:auto}}
.s-user-menu-trigger-icon svg{
  height: 1.25rem;
  width: 1.25rem;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
.s-user-menu-toggler::before{
  pointer-events: none;
  visibility: hidden;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 10;
  height: 100vh;
  width: 100vw;
  background-color: rgba(113,113,122,0.74902);
  opacity: 0;
  transition-duration: 300ms;
  --tw-content: '';
  content: var(--tw-content);
}
.s-user-menu-toggler.opened::before{
  pointer-events: auto;
  visibility: visible;
  content: var(--tw-content);
  opacity: 1;
}
@media (min-width: 768px){
  .s-user-menu-toggler.opened::before{
    pointer-events: none;
    visibility: hidden;
    content: var(--tw-content);
    opacity: 0;
  }
}
.s-user-menu-toggler.opened .s-user-menu-trigger svg{
  --tw-rotate: 180deg;
  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-user-menu-toggler.opened .s-user-menu-dropdown{
  visibility: visible;
  --tw-translate-y: 0px;
  --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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  opacity: 1;
}
.s-user-menu-toggler.opened .s-user-menu-dropdown .tooltip-content{visibility:visible;opacity:1;transform:translate(82px, -110px)}
.s-user-menu-trigger-avatar{
  display: inline-block;
  height: 2.5rem;
  width: 2.5rem;
  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));
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px){
  .min--2 .s-user-menu-trigger-avatar{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-user-menu-trigger-avatar{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-user-menu-trigger-avatar{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-user-menu-trigger-avatar{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-user-menu-trigger-avatar{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-user-menu-trigger-avatar{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-user-menu-trigger-content{
  margin-left: 0.5rem;
  margin-right: 0.25rem;
}
.s-user-menu-trigger-content:where([dir="rtl"], [dir="rtl"] *){
  margin-right: 0.5rem;
  margin-left: 0.25rem;
}
.s-user-menu-trigger-avatar-only .s-user-menu-trigger-content{
  display: none;
}
.index section.s-block.s-user-menu-trigger-avatar-only .s-user-menu-trigger-content{display:none}
.s-user-menu-trigger-avatar-only .s-user-menu-trigger-icon{
  display: none;
}
.index section.s-block.s-user-menu-trigger-avatar-only .s-user-menu-trigger-icon{display:none}
.s-user-menu-trigger-avatar-only .s-user-menu-trigger-avatar{
  border-width: 0px;
}
.s-user-menu-trigger-hello{
  font-size: 14px;
  --tw-text-opacity: 1;
  color: rgba(153, 153, 153, 1);
  color: rgba(153, 153, 153, var(--tw-text-opacity, 1));
}
.s-user-menu-trigger-name{
  margin-top: 0.125rem;
  font-size: 15px;
  line-height: 1;
  --tw-text-opacity: 1;
  color: rgba(68, 68, 68, 1);
  color: rgba(68, 68, 68, var(--tw-text-opacity, 1));
}
.s-user-menu-trigger-icon{
  margin-left: 10px;
}
.s-user-menu-trigger-icon:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 0px;
  margin-right: 10px;
}
.s-user-menu-trigger-text-value{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, 1);
  color: rgba(55, 65, 81, var(--tw-text-opacity, 1));
}
.s-user-menu-dropdown{
  visibility: hidden;
  position: fixed;
  bottom: 0px;
  top: auto;
  right: 0px;
  z-index: 30;
  width: 100%;
  transform-origin: center;
  --tw-translate-y: 2.5rem;
  --tw-scale-y: .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: 0px;
  border-bottom-left-radius: 0px;
  --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: 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), 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);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.store-header.z-3 .s-user-menu-dropdown:not(.fixed-pinned) .inner{background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;background:initial}
@media (min-width: 768px){
  .s-user-menu-dropdown{
    position: absolute;
    bottom: auto;
    bottom: initial;
    top: 100%;
    width: 15rem;
    transform-origin: top right;
    --tw-translate-y: -1rem;
    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: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
    --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), 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);
    transition-duration: 200ms;
  }
}
@media (min-width: 1024px){
  .s-user-menu-dropdown{
    border-top-width: 1px;
    border-color: rgba(209, 213, 219, 0.3);
  }
}
.s-user-menu-dropdown:where([dir="rtl"], [dir="rtl"] *){
  left: 0px;
  right: auto;
  right: initial;
}
.s-user-menu-dropdown-list > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1px * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1px * var(--tw-space-y-reverse));
}
.s-user-menu-dropdown-list{
  padding-top: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 1rem;
}
@media (min-width: 1024px){
  .s-user-menu-dropdown-list{
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0.5rem;
  }
}
.s-user-menu-dropdown-item a{
  display: flex;
  align-items: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  --tw-text-opacity: 1;
  color: rgba(68, 68, 68, 1);
  color: rgba(68, 68, 68, 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: 300ms;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-user-menu-dropdown-item a>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-user-menu-dropdown-item a>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-user-menu-dropdown-item a>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-user-menu-dropdown-item a>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-user-menu-dropdown-item a>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-user-menu-dropdown-item a>.justify-center{order:1}.align-start-logo.store-header .container>.s-user-menu-dropdown-item a>.justify-end{order:3;justify-content:start;width:auto}}
.s-user-menu-dropdown-item a:hover{
  background-color: rgba(229, 231, 235, 0.3);
}
@media (min-width: 640px){
  .s-user-menu-dropdown-item a{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.s-user-menu-dropdown-item-logout a{
  --tw-text-opacity: 1 !important;
  color: rgba(255, 68, 58, 1) !important;
  color: rgba(255, 68, 58, var(--tw-text-opacity, 1)) !important;
}
.s-user-menu-dropdown-item-logout a svg{
  fill: #FF443A !important;
}
.s-user-menu-dropdown-item a svg{
  margin-right: 0.75rem;
  height: 1rem;
  width: 1rem;
  fill: #9ca3af;
}
.s-user-menu-dropdown-item a svg:where([dir="rtl"], [dir="rtl"] *){
  margin-right: 0px;
  margin-left: 0.75rem;
}
.s-user-menu-dropdown-header{
  position: relative;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  border-bottom-width: 1px;
  padding: 1rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-user-menu-dropdown-header>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-user-menu-dropdown-header>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-user-menu-dropdown-header>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-user-menu-dropdown-header>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-user-menu-dropdown-header>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-user-menu-dropdown-header>.justify-center{order:1}.align-start-logo.store-header .container>.s-user-menu-dropdown-header>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .s-user-menu-dropdown-header{
    display: none;
  }
}
.s-user-menu-dropdown-header img{
  pointer-events: none;
  margin-right: 0.75rem;
  height: 3rem;
  width: 3rem;
  border-radius: 9999px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px){
  .min--2 .s-user-menu-dropdown-header img{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-user-menu-dropdown-header img{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-user-menu-dropdown-header img{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-user-menu-dropdown-header img{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-user-menu-dropdown-header img{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-user-menu-dropdown-header img{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-user-menu-dropdown-header img:where([dir="rtl"], [dir="rtl"] *){
  margin-right: 0px;
  margin-left: 0.75rem;
}
.s-user-menu-dropdown-header-content span{
  font-size: 14px;
  --tw-text-opacity: 1;
  color: rgba(153, 153, 153, 1);
  color: rgba(153, 153, 153, var(--tw-text-opacity, 1));
}
.s-user-menu-dropdown-header-content p{
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  line-height: 1;
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, 1);
  color: rgba(55, 65, 81, var(--tw-text-opacity, 1));
}
.s-user-menu-dropdown-header-close{
  position: absolute;
  top: 1.25rem;
  right: 1rem;
  z-index: 50;
  border-radius: 9999px;
}
input[type=radio].sr-only div.s-user-menu-dropdown-header-close{transition:all .3s}
input[type=radio].sr-only:checked~div.s-user-menu-dropdown-header-close{border-color:var(--color-main)}
@media (min-width: 768px){
  .min--2 .s-user-menu-dropdown-header-close{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-user-menu-dropdown-header-close{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-user-menu-dropdown-header-close{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-user-menu-dropdown-header-close{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-user-menu-dropdown-header-close{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-user-menu-dropdown-header-close{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-user-menu-dropdown-header-close:where([dir="rtl"], [dir="rtl"] *){
  right: auto;
  right: initial;
  left: 1rem;
}
.s-user-menu-dropdown-header-close svg{
  height: 1.25rem;
  width: 1.25rem;
  fill: #ef4444;
}
.s-user-menu-dropdown-item-badge{
  position: absolute;
  right: 0.625rem;
  display: flex;
  height: 1.25rem;
  width: 1.25rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgba(239, 68, 68, 1);
  background-color: rgba(239, 68, 68, var(--tw-bg-opacity, 1));
  font-size: 0.75rem;
  line-height: 1rem;
  line-height: inherit;
  --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-user-menu-dropdown-item-badge{transition:all .3s}
input[type=radio].sr-only:checked~div.s-user-menu-dropdown-item-badge{border-color:var(--color-main)}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-user-menu-dropdown-item-badge>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-user-menu-dropdown-item-badge>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-user-menu-dropdown-item-badge>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-user-menu-dropdown-item-badge>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-user-menu-dropdown-item-badge>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-user-menu-dropdown-item-badge>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-user-menu-dropdown-item-badge{order:1}.align-start-logo.store-header .container>.s-user-menu-dropdown-item-badge>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .min--2 .s-user-menu-dropdown-item-badge{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-user-menu-dropdown-item-badge{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-user-menu-dropdown-item-badge{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-user-menu-dropdown-item-badge{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-user-menu-dropdown-item-badge{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-user-menu-dropdown-item-badge{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-user-menu-dropdown-item-badge{justify-content:center}
.s-user-menu-dropdown-item-badge:where([dir="rtl"], [dir="rtl"] *){
  right: auto;
  right: initial;
  left: 0.625rem;
}
.s-user-menu-red-dot .s-user-menu-avatar-wrap{
  position: relative;
}
.s-user-menu-red-dot .s-user-menu-avatar-wrap:after{
  position: absolute;
  top: 0px;
  height: 0.75rem;
  width: 0.75rem;
  border-radius: 9999px;
  border-width: 2px;
  --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(248, 113, 113, 1);
  background-color: rgba(248, 113, 113, var(--tw-bg-opacity, 1));
  --tw-content: '';
  content: var(--tw-content);
}
input[type=radio].sr-only div.s-user-menu-red-dot .s-user-menu-avatar-wrap:after{transition:all .3s}
input[type=radio].sr-only:checked~div.s-user-menu-red-dot .s-user-menu-avatar-wrap:after{border-color:var(--color-main)}
@media (min-width: 768px){
  .min--2 .s-user-menu-red-dot .s-user-menu-avatar-wrap:after{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-user-menu-red-dot .s-user-menu-avatar-wrap:after{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-user-menu-red-dot .s-user-menu-avatar-wrap:after{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-user-menu-red-dot .s-user-menu-avatar-wrap:after{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-user-menu-red-dot .s-user-menu-avatar-wrap:after{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-user-menu-red-dot .s-user-menu-avatar-wrap:after{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-user-menu-red-dot .s-user-menu-avatar-wrap:where([dir="ltr"], [dir="ltr"] *):after{
  left: 0px;
}
.s-user-menu-red-dot .s-user-menu-avatar-wrap:where([dir="rtl"], [dir="rtl"] *):after{
  right: 0px;
}
.header-is-dark .s-user-menu-red-dot .s-user-menu-avatar-wrap:after{
  --tw-border-opacity: 1;
  border-color: rgba(14, 15, 15, 1);
  border-color: rgba(14, 15, 15, var(--tw-border-opacity, 1));
}
.s-user-menu-login-btn{
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  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));
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-user-menu-login-btn>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-user-menu-login-btn>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-user-menu-login-btn>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-user-menu-login-btn>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-user-menu-login-btn>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-user-menu-login-btn>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-user-menu-login-btn{order:1}.align-start-logo.store-header .container>.s-user-menu-login-btn>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .min--2 .s-user-menu-login-btn{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-user-menu-login-btn{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-user-menu-login-btn{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-user-menu-login-btn{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-user-menu-login-btn{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-user-menu-login-btn{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-user-menu-login-btn{justify-content:center}
.s-user-menu-login-btn:hover{
  opacity: 0.8;
}
.s-user-menu-login-btn svg{
  height: 1.25rem;
  width: 1.25rem;
  fill: #374151;
}
.s-user-profile-wrapper{
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}
@media (min-width: 640px){
  .s-user-profile-wrapper{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
}
.s-user-profile-field-label{
  margin-bottom: 0.5rem;
  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));
}
.s-user-profile-field-error{
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, 1);
  color: rgba(239, 68, 68, var(--tw-text-opacity, 1));
}
.s-user-profile-submit{
  margin-top: 1.5rem;
  width: 100%;
}
.s-user-profile-filepond-placeholder{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-user-profile-filepond-placeholder>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-user-profile-filepond-placeholder>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-user-profile-filepond-placeholder>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-user-profile-filepond-placeholder>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-user-profile-filepond-placeholder>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-user-profile-filepond-placeholder>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-user-profile-filepond-placeholder{order:1}.align-start-logo.store-header .container>.s-user-profile-filepond-placeholder>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-user-profile-filepond-placeholder{justify-content:center}
.s-user-profile-filepond-placeholder-icon{
  margin-bottom: 0.25rem;
}
.s-user-profile-filepond-placeholder-icon svg{
  height: 1.5rem;
  width: 1.5rem;
  fill: #7c8082;
}
.s-user-profile-skeleton-wrapper{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  grid-gap: 3rem;
  gap: 3rem;
}
.s-user-settings-section{
  border-bottom-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));
}
.s-user-settings-section:first-child{
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}
.s-user-settings-section:last-child{
  border-bottom-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-width: 0px;
}
.s-user-settings-section .s-list-tile-item{
  align-items: flex-start;
  background-color: transparent;
  padding: 1.25rem;
}
@media (min-width: 768px){
  .s-user-settings-section .s-list-tile-item{
    align-items: center;
  }
}
.s-user-settings-section .s-list-tile-item-action{
  margin-left: auto;
}
.s-user-settings-section .s-list-tile-item-action:where([dir="rtl"], [dir="rtl"] *){
  margin-right: auto;
  margin-left: 0px;
}
.s-user-settings-section .s-list-tile-item-action button{
  width: 100%;
  padding: 10px;
}
.s-user-settings-section-deactivate-user .s-list-tile-item{
  flex-wrap: wrap;
}
@media (min-width: 768px){
  .s-user-settings-section-deactivate-user .s-list-tile-item{
    flex-wrap: nowrap;
  }
}
.s-user-settings-section-deactivate-user .s-list-tile-item-icon{
  position: relative;
  top: 5px;
}
@media (min-width: 768px){
  .s-user-settings-section-deactivate-user .s-list-tile-item-icon{
    top: 0px;
  }
}
@media (max-width: 768px){
  .s-user-settings-section-deactivate-user .s-list-tile-item-content{
    flex: 1 0 85%;
  }
  .s-user-settings-section-deactivate-user .s-list-tile-item-action{
    flex: 1 1 100%;
    margin-top: 1rem;
  }
}
.s-user-settings-section-title{
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgba(17, 24, 39, 1);
  color: rgba(17, 24, 39, var(--tw-text-opacity, 1));
}
.s-user-settings-section-subtitle{
  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-user-settings-section-icon svg{
  height: 1.25rem;
  width: 1.25rem;
}
.s-user-settings-confirmation{
  text-align: center;
}
.s-user-settings-confirmation svg{
  text-align: center;
}
.s-user-settings-confirmation-icon{
  display: inline-flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border-width: 1px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, 1);
  border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.s-user-settings-confirmation-icon{order:1}}
@media (min-width: 768px){
  .min--2 .s-user-settings-confirmation-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-user-settings-confirmation-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-user-settings-confirmation-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-user-settings-confirmation-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-user-settings-confirmation-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-user-settings-confirmation-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-user-settings-confirmation-icon{justify-content:center}
@media (min-width: 640px){
  .s-user-settings-confirmation-icon{
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    height: 5rem;
    width: 5rem;
  }
}
.s-user-settings-confirmation-icon:where([dir="ltr"], [dir="ltr"] *){
  margin-right: 0.5rem;
}
@media (min-width: 640px){
  .s-user-settings-confirmation-icon:where([dir="ltr"], [dir="ltr"] *){
    margin-right: 0px;
  }
}
.s-user-settings-confirmation-icon:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 0.5rem;
}
@media (min-width: 640px){
  .s-user-settings-confirmation-icon:where([dir="rtl"], [dir="rtl"] *){
    margin-left: 0px;
  }
}
.s-user-settings-confirmation-icon svg{
  height: 1.25rem;
  width: 1.25rem;
  flex-shrink: 0;
  fill: #9ca3af;
}
.s-user-settings-confirmation-warning{
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, 1);
  color: rgba(239, 68, 68, var(--tw-text-opacity, 1));
}
.s-user-settings-confirmation-actions{
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.s-user-settings-confirmation-actions > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1.25rem * var(--tw-space-x-reverse));
  margin-left: calc(1.25rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-user-settings-confirmation-actions>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-user-settings-confirmation-actions>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-user-settings-confirmation-actions>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-user-settings-confirmation-actions>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-user-settings-confirmation-actions>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-user-settings-confirmation-actions>.justify-center{order:1}.align-start-logo.store-header .container>.s-user-settings-confirmation-actions>.justify-end{order:3;justify-content:start;width:auto}}
.s-user-settings-confirmation-actions:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 1;
}
.s-verify-message{
  text-align: center;
  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-verify-label{
  margin-bottom: 1rem;
  display: block;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.s-verify-codes{
  margin-left: -0.25rem;
  margin-right: -0.25rem;
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: space-between;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-verify-codes>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-verify-codes>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-verify-codes>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-verify-codes>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-verify-codes>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-verify-codes>.justify-center{order:1}.align-start-logo.store-header .container>.s-verify-codes>.justify-end{order:3;justify-content:start;width:auto}}
salla-installment>.s-verify-codes{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-verify-codes button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-verify-codes button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-verify-codes button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-verify-codes button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-verify-codes button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-verify-codes button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-verify-codes button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-verify-codes{border-radius:.75rem}
.dark salla-installment>.s-verify-codes{color:var(--dark-text-main);background-color:var(--dark-grey)}
.s-verify-codes.has-error{
  margin-bottom: 0px;
}
.s-verify-input{
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  height: 2.5rem;
  width: 100%;
  border-radius: 0.25rem;
  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.5rem;
  padding-right: 0.5rem;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  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-verify-input:focus{
  border-color: #414042;
  border-color: var(--color-primary);
}
.dark *.s-verify-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));
}
.s-verify-footer{
  text-align: center;
}
.s-verify-submit{
  margin-bottom: 1.25rem;
  width: 100%;
}
salla-installment>.s-verify-submit{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-verify-submit button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-verify-submit button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-verify-submit button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-verify-submit button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-verify-submit button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-verify-submit button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-verify-submit button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-verify-submit{border-radius:.75rem}
.dark salla-installment>.s-verify-submit{color:var(--dark-text-main);background-color:var(--dark-grey)}
.s-verify-header-icon{
  display: inline-flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border-width: 1px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, 1);
  border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.s-verify-header-icon{order:1}}
@media (min-width: 768px){
  .min--2 .s-verify-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-verify-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-verify-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-verify-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-verify-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-verify-header-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-verify-header-icon{justify-content:center}
@media (min-width: 640px){
  .s-verify-header-icon{
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    height: 5rem;
    width: 5rem;
  }
}
.s-verify-header-icon:where([dir="ltr"], [dir="ltr"] *){
  margin-right: 0.5rem;
}
@media (min-width: 640px){
  .s-verify-header-icon:where([dir="ltr"], [dir="ltr"] *){
    margin-right: 0px;
  }
}
.s-verify-header-icon:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 0.5rem;
}
@media (min-width: 640px){
  .s-verify-header-icon:where([dir="rtl"], [dir="rtl"] *){
    margin-left: 0px;
  }
}
.s-verify-resend-message{
  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));
}
.s-verify-error-message{
  margin-bottom: 1.25rem;
  display: block;
  height: 1.75rem;
  padding-top: 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-border-opacity: 1;
  border-color: rgba(248, 113, 113, 1);
  border-color: rgba(248, 113, 113, var(--tw-border-opacity, 1));
}
.s-verify-error-message:focus{
  --tw-border-opacity: 1;
  border-color: rgba(239, 68, 68, 1);
  border-color: rgba(239, 68, 68, var(--tw-border-opacity, 1));
}
.s-verify-error-message{
  --tw-border-opacity: 1 !important;
  border-color: rgba(239, 68, 68, 1) !important;
  border-color: rgba(239, 68, 68, var(--tw-border-opacity, 1)) !important;
  --tw-text-opacity: 1 !important;
  color: rgba(239, 68, 68, 1) !important;
  color: rgba(239, 68, 68, var(--tw-text-opacity, 1)) !important;
}
salla-installment>.s-verify-error-message{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-verify-error-message button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-verify-error-message button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-verify-error-message button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-verify-error-message button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-verify-error-message button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-verify-error-message button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-verify-error-message button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-verify-error-message{border-radius:.75rem}
.dark salla-installment>.s-verify-error-message{color:var(--dark-text-main);background-color:var(--dark-grey)}
.s-verify-timer{
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, 1);
  color: rgba(55, 65, 81, var(--tw-text-opacity, 1));
}
.s-verify-resend{
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #414042;
  color: var(--color-primary);
}
.s-verify-back{
  position: absolute;
  left: 10px;
  top: 10px;
  display: flex;
  height: 2rem;
  width: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, 1);
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity, 1));
  font-size: 1.125rem;
  line-height: 1.75rem;
  --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, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
input[type=radio].sr-only div.s-verify-back{transition:all .3s}
input[type=radio].sr-only:checked~div.s-verify-back{border-color:var(--color-main)}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-verify-back>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-verify-back>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-verify-back>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-verify-back>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-verify-back>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-verify-back>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-verify-back{order:1}.align-start-logo.store-header .container>.s-verify-back>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .min--2 .s-verify-back{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-verify-back{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-verify-back{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-verify-back{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-verify-back{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-verify-back{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-verify-back{justify-content:center}
.s-verify-back:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, 1);
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity, 1));
}
.s-verify-back:where([dir="rtl"], [dir="rtl"] *){
  left: auto;
  left: initial;
  right: 10px;
}
.s-verify-back svg{
  height: 18px;
  width: 18px;
}
[dir='ltr'] .s-verify-back{
  transform: scale(-1);
}
.s-wallet-container > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.625rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.625rem * var(--tw-space-y-reverse));
}
@media (min-width: 768px){
  .s-wallet-container > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1.25rem * (1 - var(--tw-space-y-reverse)));
    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
  }
}
.s-wallet-mobile-title{
  display: inline-block;
  width: 8rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
}
@media (min-width: 768px){
  .s-wallet-mobile-title{
    display: none;
  }
}
.s-wallet-reference-id{
  display: none;
}
.index section.s-block.s-wallet-reference-id{display:none}
@media (min-width: 768px){
  .s-wallet-reference-id{
    display: inline-block;
  }
}
.s-wallet-buy-as-gift-icon{
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  display: inline-block;
  color: #414042;
  color: var(--color-primary);
}
.s-wallet-copy-to-clipboard-button{
  display: flex;
  align-items: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-wallet-copy-to-clipboard-button>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-wallet-copy-to-clipboard-button>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-wallet-copy-to-clipboard-button>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-wallet-copy-to-clipboard-button>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-wallet-copy-to-clipboard-button>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-wallet-copy-to-clipboard-button>.justify-center{order:1}.align-start-logo.store-header .container>.s-wallet-copy-to-clipboard-button>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .s-wallet-copy-to-clipboard-button{
    display: none;
  }
}
.s-wallet-copy-to-clipboard-button salla-button{
  position: relative;
}
.s-wallet-copy-to-clipboard-button-icon{
  pointer-events: none;
  font-size: 0.75rem;
  line-height: 1rem;
}
.s-wallet-copy-to-clipboard-button-icon:where([dir="ltr"], [dir="ltr"] *){
  margin-left: 0.25rem;
}
.s-wallet-copy-to-clipboard-button-icon:where([dir="rtl"], [dir="rtl"] *){
  margin-right: 0.25rem;
}
@media (min-width: 768px){
  .s-wallet-status-container{
    margin-left: 0px;
    margin-right: 0px;
  }
}
.s-wallet-status-container:where([dir="ltr"], [dir="ltr"] *){
  margin-left: auto;
}
.s-wallet-status-container:where([dir="rtl"], [dir="rtl"] *){
  margin-right: auto;
}
.s-wallet-status-container i{
  margin-top: 0.25rem;
}
.s-wallet-status-container i:where([dir="ltr"], [dir="ltr"] *){
  margin-right: 0.25rem;
}
.s-wallet-status-container i:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 0.25rem;
}
.s-wallet-rated-text{
  --tw-text-opacity: 1;
  color: rgba(251, 191, 36, 1);
  color: rgba(251, 191, 36, var(--tw-text-opacity, 1));
}
.s-wallet-unrated-text{
  --tw-text-opacity: 1;
  color: rgba(229, 231, 235, 1);
  color: rgba(229, 231, 235, var(--tw-text-opacity, 1));
}
.s-wallet-no-content{
  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));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-wallet-no-content>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-wallet-no-content>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-wallet-no-content>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-wallet-no-content>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-wallet-no-content>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-wallet-no-content>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-wallet-no-content{order:1}.align-start-logo.store-header .container>.s-wallet-no-content>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-wallet-no-content{justify-content:center}
.s-wallet-no-content .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));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-wallet-no-content .icon>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-wallet-no-content .icon>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-wallet-no-content .icon>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-wallet-no-content .icon>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-wallet-no-content .icon>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-wallet-no-content .icon>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-wallet-no-content .icon{order:1}.align-start-logo.store-header .container>.s-wallet-no-content .icon>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .min--2 .s-wallet-no-content .icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-wallet-no-content .icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-wallet-no-content .icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-wallet-no-content .icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-wallet-no-content .icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-wallet-no-content .icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.s-wallet-no-content .icon{justify-content:center}
.s-wallet-no-content 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-wallet-table{
  min-width: 100%;
  border-collapse: separate;
}
@media (min-width: 768px){
  .s-wallet-table{
    margin-bottom: -0.75rem;
    --tw-border-spacing-y: 1.25rem;
    border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
  }
}
.s-wallet-table-head{
  margin-bottom: 1.25rem;
  display: none;
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, 1);
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity, 1));
}
.index section.s-block.s-wallet-table-head{display:none}
salla-installment>.s-wallet-table-head{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-wallet-table-head button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-wallet-table-head button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-wallet-table-head button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-wallet-table-head button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-wallet-table-head button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-wallet-table-head button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-wallet-table-head button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-wallet-table-head{border-radius:.75rem}
.dark salla-installment>.s-wallet-table-head{color:var(--dark-text-main);background-color:var(--dark-grey)}
@media (min-width: 768px){
  .s-wallet-table-head{
    display: table-header-group;
  }
}
[dir="ltr"] .s-wallet-table-head-tr-th{
  text-align: left;
}
[dir="rtl"] .s-wallet-table-head-tr-th{
  text-align: right;
}
.s-wallet-table-head-tr-th{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
[dir="rtl"] .s-wallet-table-head-tr-th{
  text-align: right;
}
[dir="ltr"] .s-wallet-table-head-tr-th{
  text-align: left;
}
.s-wallet-table-head-tr-th:where([dir="ltr"], [dir="ltr"] *){
  text-align: left;
}
.s-wallet-table-head-tr-th:last-child:where([dir="ltr"], [dir="ltr"] *){
  text-align: right;
}
.s-wallet-table-head-tr-th:where([dir="rtl"], [dir="rtl"] *){
  text-align: right;
}
.s-wallet-table-head-tr-th:last-child:where([dir="rtl"], [dir="rtl"] *){
  text-align: left;
}
.s-wallet-table-tbody-tr{
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  overflow: hidden;
  border-radius: 0.25rem;
  border-bottom-width: 8px;
  border-top-width: 8px;
  --tw-border-opacity: 1;
  border-color: rgba(249, 250, 251, 1);
  border-color: rgba(249, 250, 251, 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.5rem;
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-wallet-table-tbody-tr>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-wallet-table-tbody-tr>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-wallet-table-tbody-tr>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-wallet-table-tbody-tr>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-wallet-table-tbody-tr>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-wallet-table-tbody-tr>.justify-center{order:1}.align-start-logo.store-header .container>.s-wallet-table-tbody-tr>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .s-wallet-table-tbody-tr{
    display: table-row;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 0px;
  }
}
.s-wallet-table-tbody-tr-td{
  width: 100%;
  white-space: nowrap;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.s-wallet-table-tbody-tr-td:first-child{
  font-weight: 700;
}
@media (min-width: 768px){
  .s-wallet-table-tbody-tr-td{
    height: 5rem;
    width: auto;
  }
  [dir="ltr"] .s-wallet-table-tbody-tr-td:last-child{
    text-align: right;
  }
  [dir="rtl"] .s-wallet-table-tbody-tr-td:last-child{
    text-align: left;
  }
  [dir="rtl"] .s-wallet-table-tbody-tr-td:last-child{
    text-align: left;
  }
  [dir="ltr"] .s-wallet-table-tbody-tr-td:last-child{
    text-align: right;
  }
  .s-wallet-table-tbody-tr-td:first-child:where([dir="ltr"], [dir="ltr"] *){
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }
  .s-wallet-table-tbody-tr-td:first-child:where([dir="rtl"], [dir="rtl"] *){
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }
}
.s-wallet-table-tbody-tr-td:first-child{
  font-weight: 700;
}
.s-wallet-table-tbody-tr-td-content{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-wallet-table-tbody-tr-td-content>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-wallet-table-tbody-tr-td-content>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-wallet-table-tbody-tr-td-content>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-wallet-table-tbody-tr-td-content>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-wallet-table-tbody-tr-td-content>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-wallet-table-tbody-tr-td-content>.justify-center{order:1}.align-start-logo.store-header .container>.s-wallet-table-tbody-tr-td-content>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .s-wallet-table-tbody-tr-td-content{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.s-wallet-table-tbody-tr-td-content:where([dir="ltr"], [dir="ltr"] *){
  padding-right: 0.5rem;
}
.s-wallet-table-tbody-tr-td-content:where([dir="rtl"], [dir="rtl"] *){
  padding-left: 0.5rem;
}
.s-wallet-table-tbody-tr a{
  position: absolute;
  top: 0px;
  bottom: 0px;
  display: block;
  width: 100%;
}
input[type=radio].sr-only div.s-wallet-table-tbody-tr a{transition:all .3s}
input[type=radio].sr-only:checked~div.s-wallet-table-tbody-tr a{border-color:var(--color-main)}
.s-wallet-table-tbody-tr a:where([dir="ltr"], [dir="ltr"] *){
  left: 0px;
}
.s-wallet-table-tbody-tr a:where([dir="rtl"], [dir="rtl"] *){
  right: 0px;
}
[dir="ltr"] .pe-1{
  padding-right: 0.25rem;
}
[dir="rtl"] .pe-1{
  padding-left: 0.25rem;
}
[dir="ltr"] .pe-2{
  padding-right: 0.5rem;
}
[dir="rtl"] .pe-2{
  padding-left: 0.5rem;
}
[dir="ltr"] .pe-3{
  padding-right: 0.75rem;
}
[dir="rtl"] .pe-3{
  padding-left: 0.75rem;
}
[dir="ltr"] .ps-4{
  padding-left: 1rem;
}
[dir="rtl"] .ps-4{
  padding-right: 1rem;
}
[dir="ltr"] .pe-4{
  padding-right: 1rem;
}
[dir="rtl"] .pe-4{
  padding-left: 1rem;
}
[dir="ltr"] .pe-8{
  padding-right: 2rem;
}
[dir="rtl"] .pe-8{
  padding-left: 2rem;
}
[dir="ltr"] .pe-10{
  padding-right: 2.5rem;
}
[dir="rtl"] .pe-10{
  padding-left: 2.5rem;
}
[dir="ltr"] .pe-16{
  padding-right: 4rem;
}
[dir="rtl"] .pe-16{
  padding-left: 4rem;
}
[dir="ltr"] .pe-24{
  padding-right: 6rem;
}
[dir="rtl"] .pe-24{
  padding-left: 6rem;
}
[dir="ltr"] .pe-0\.5{
  padding-right: 0.125rem;
}
[dir="rtl"] .pe-0\.5{
  padding-left: 0.125rem;
}
[dir="ltr"] .me-0{
  margin-right: 0px;
}
[dir="rtl"] .me-0{
  margin-left: 0px;
}
[dir="ltr"] .ms-1{
  margin-left: 0.25rem;
}
[dir="rtl"] .ms-1{
  margin-right: 0.25rem;
}
[dir="ltr"] .me-1{
  margin-right: 0.25rem;
}
[dir="rtl"] .me-1{
  margin-left: 0.25rem;
}
[dir="ltr"] .ms-2{
  margin-left: 0.5rem;
}
[dir="rtl"] .ms-2{
  margin-right: 0.5rem;
}
[dir="ltr"] .me-2{
  margin-right: 0.5rem;
}
[dir="rtl"] .me-2{
  margin-left: 0.5rem;
}
[dir="ltr"] .me-3{
  margin-right: 0.75rem;
}
[dir="rtl"] .me-3{
  margin-left: 0.75rem;
}
[dir="ltr"] .ms-4{
  margin-left: 1rem;
}
[dir="rtl"] .ms-4{
  margin-right: 1rem;
}
[dir="ltr"] .me-4{
  margin-right: 1rem;
}
[dir="rtl"] .me-4{
  margin-left: 1rem;
}
[dir="ltr"] .ms-auto{
  margin-left: auto;
}
[dir="rtl"] .ms-auto{
  margin-right: auto;
}
[dir="ltr"] .me-auto{
  margin-right: auto;
}
[dir="rtl"] .me-auto{
  margin-left: auto;
}
[dir="ltr"] .me-1\.5{
  margin-right: 0.375rem;
}
[dir="rtl"] .me-1\.5{
  margin-left: 0.375rem;
}
[dir="rtl"] .start-0{
  right: 0px;
}
[dir="rtl"] .end-0{
  left: 0px;
}
[dir="ltr"] .end-0{
  right: 0px;
}
[dir="ltr"] .start-0{
  left: 0px;
}
[dir="rtl"] .end-1{
  left: 0.25rem;
}
[dir="ltr"] .end-1{
  right: 0.25rem;
}
[dir="rtl"] .start-2{
  right: 0.5rem;
}
[dir="rtl"] .end-2{
  left: 0.5rem;
}
[dir="ltr"] .end-2{
  right: 0.5rem;
}
[dir="ltr"] .start-2{
  left: 0.5rem;
}
[dir="rtl"] .start-4{
  right: 1rem;
}
[dir="rtl"] .end-4{
  left: 1rem;
}
[dir="ltr"] .end-4{
  right: 1rem;
}
[dir="ltr"] .start-4{
  left: 1rem;
}
[dir="rtl"] .end-8{
  left: 2rem;
}
[dir="ltr"] .end-8{
  right: 2rem;
}
[dir="ltr"] .rounded-e-none{
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
[dir="ltr"] .rounded-s-none{
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
[dir="rtl"] .rounded-e-none{
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
[dir="rtl"] .rounded-s-none{
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
[dir="ltr"] .rounded-ts-none{
  border-top-left-radius: 0px;
}
[dir="rtl"] .rounded-ts-none{
  border-top-right-radius: 0px;
}
[dir="ltr"] .border-e-0{
  border-right-width: 0px;
}
[dir="rtl"] .border-e-0{
  border-left-width: 0px;
}
[dir="ltr"] .border-e-2{
  border-right-width: 2px;
}
[dir="rtl"] .border-e-2{
  border-left-width: 2px;
}
[dir="rtl"] .text-start{
  text-align: right;
}
[dir="rtl"] .text-end{
  text-align: left;
}
[dir="ltr"] .text-end{
  text-align: right;
}
[dir="ltr"] .text-start{
  text-align: left;
}
[dir="ltr"] .space-s-1 > :not([hidden]) ~ :not([hidden]){
  margin-right: calc(0.25rem * var(--tw-space-s-reverse));
}
[dir="rtl"] .space-s-1 > :not([hidden]) ~ :not([hidden]){
  margin-left: calc(0.25rem * var(--tw-space-s-reverse));
}
[dir="ltr"] .space-s-1 > :not([hidden]) ~ :not([hidden]){
  margin-left: calc(0.25rem * (1 - var(--tw-space-s-reverse)));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-s-reverse)));
}
[dir="rtl"] .space-s-1 > :not([hidden]) ~ :not([hidden]){
  margin-right: calc(0.25rem * (1 - var(--tw-space-s-reverse)));
  margin-right: calc(0.25rem * calc(1 - var(--tw-space-s-reverse)));
}
[dir="ltr"] .space-s-1 > :not([hidden]) ~ :not([hidden]){
  margin-left: calc(0.25rem * (1 - var(--tw-space-s-reverse)));
}
[dir="rtl"] .space-s-1 > :not([hidden]) ~ :not([hidden]){
  margin-right: calc(0.25rem * (1 - var(--tw-space-s-reverse)));
}
.space-s-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-s-reverse: 0;
}
[dir="ltr"] .space-s-2 > :not([hidden]) ~ :not([hidden]){
  margin-right: calc(0.5rem * var(--tw-space-s-reverse));
}
[dir="rtl"] .space-s-2 > :not([hidden]) ~ :not([hidden]){
  margin-left: calc(0.5rem * var(--tw-space-s-reverse));
}
[dir="ltr"] .space-s-2 > :not([hidden]) ~ :not([hidden]){
  margin-left: calc(0.5rem * (1 - var(--tw-space-s-reverse)));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-s-reverse)));
}
[dir="rtl"] .space-s-2 > :not([hidden]) ~ :not([hidden]){
  margin-right: calc(0.5rem * (1 - var(--tw-space-s-reverse)));
  margin-right: calc(0.5rem * calc(1 - var(--tw-space-s-reverse)));
}
[dir="ltr"] .space-s-2 > :not([hidden]) ~ :not([hidden]){
  margin-left: calc(0.5rem * (1 - var(--tw-space-s-reverse)));
}
[dir="rtl"] .space-s-2 > :not([hidden]) ~ :not([hidden]){
  margin-right: calc(0.5rem * (1 - var(--tw-space-s-reverse)));
}
.space-s-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-s-reverse: 0;
}
[dir="ltr"] .space-s-3 > :not([hidden]) ~ :not([hidden]){
  margin-right: calc(0.75rem * var(--tw-space-s-reverse));
}
[dir="rtl"] .space-s-3 > :not([hidden]) ~ :not([hidden]){
  margin-left: calc(0.75rem * var(--tw-space-s-reverse));
}
[dir="ltr"] .space-s-3 > :not([hidden]) ~ :not([hidden]){
  margin-left: calc(0.75rem * (1 - var(--tw-space-s-reverse)));
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-s-reverse)));
}
[dir="rtl"] .space-s-3 > :not([hidden]) ~ :not([hidden]){
  margin-right: calc(0.75rem * (1 - var(--tw-space-s-reverse)));
  margin-right: calc(0.75rem * calc(1 - var(--tw-space-s-reverse)));
}
[dir="ltr"] .space-s-3 > :not([hidden]) ~ :not([hidden]){
  margin-left: calc(0.75rem * (1 - var(--tw-space-s-reverse)));
}
[dir="rtl"] .space-s-3 > :not([hidden]) ~ :not([hidden]){
  margin-right: calc(0.75rem * (1 - var(--tw-space-s-reverse)));
}
.space-s-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-s-reverse: 0;
}
[dir="ltr"] .space-s-5 > :not([hidden]) ~ :not([hidden]){
  margin-right: calc(1.25rem * var(--tw-space-s-reverse));
}
[dir="rtl"] .space-s-5 > :not([hidden]) ~ :not([hidden]){
  margin-left: calc(1.25rem * var(--tw-space-s-reverse));
}
[dir="ltr"] .space-s-5 > :not([hidden]) ~ :not([hidden]){
  margin-left: calc(1.25rem * (1 - var(--tw-space-s-reverse)));
  margin-left: calc(1.25rem * calc(1 - var(--tw-space-s-reverse)));
}
[dir="rtl"] .space-s-5 > :not([hidden]) ~ :not([hidden]){
  margin-right: calc(1.25rem * (1 - var(--tw-space-s-reverse)));
  margin-right: calc(1.25rem * calc(1 - var(--tw-space-s-reverse)));
}
[dir="ltr"] .space-s-5 > :not([hidden]) ~ :not([hidden]){
  margin-left: calc(1.25rem * (1 - var(--tw-space-s-reverse)));
}
[dir="rtl"] .space-s-5 > :not([hidden]) ~ :not([hidden]){
  margin-right: calc(1.25rem * (1 - var(--tw-space-s-reverse)));
}
.space-s-5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-s-reverse: 0;
}
[dir="ltr"] .space-s-6 > :not([hidden]) ~ :not([hidden]){
  margin-right: calc(1.5rem * var(--tw-space-s-reverse));
}
[dir="rtl"] .space-s-6 > :not([hidden]) ~ :not([hidden]){
  margin-left: calc(1.5rem * var(--tw-space-s-reverse));
}
[dir="ltr"] .space-s-6 > :not([hidden]) ~ :not([hidden]){
  margin-left: calc(1.5rem * (1 - var(--tw-space-s-reverse)));
  margin-left: calc(1.5rem * calc(1 - var(--tw-space-s-reverse)));
}
[dir="rtl"] .space-s-6 > :not([hidden]) ~ :not([hidden]){
  margin-right: calc(1.5rem * (1 - var(--tw-space-s-reverse)));
  margin-right: calc(1.5rem * calc(1 - var(--tw-space-s-reverse)));
}
[dir="ltr"] .space-s-6 > :not([hidden]) ~ :not([hidden]){
  margin-left: calc(1.5rem * (1 - var(--tw-space-s-reverse)));
}
[dir="rtl"] .space-s-6 > :not([hidden]) ~ :not([hidden]){
  margin-right: calc(1.5rem * (1 - var(--tw-space-s-reverse)));
}
.space-s-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-s-reverse: 0;
}
[dir="ltr"] .space-s-2\.5 > :not([hidden]) ~ :not([hidden]){
  margin-right: calc(0.625rem * var(--tw-space-s-reverse));
}
[dir="rtl"] .space-s-2\.5 > :not([hidden]) ~ :not([hidden]){
  margin-left: calc(0.625rem * var(--tw-space-s-reverse));
}
[dir="ltr"] .space-s-2\.5 > :not([hidden]) ~ :not([hidden]){
  margin-left: calc(0.625rem * (1 - var(--tw-space-s-reverse)));
  margin-left: calc(0.625rem * calc(1 - var(--tw-space-s-reverse)));
}
[dir="rtl"] .space-s-2\.5 > :not([hidden]) ~ :not([hidden]){
  margin-right: calc(0.625rem * (1 - var(--tw-space-s-reverse)));
  margin-right: calc(0.625rem * calc(1 - var(--tw-space-s-reverse)));
}
[dir="ltr"] .space-s-2\.5 > :not([hidden]) ~ :not([hidden]){
  margin-left: calc(0.625rem * (1 - var(--tw-space-s-reverse)));
}
[dir="rtl"] .space-s-2\.5 > :not([hidden]) ~ :not([hidden]){
  margin-right: calc(0.625rem * (1 - var(--tw-space-s-reverse)));
}
.space-s-2\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-s-reverse: 0;
}
*,::before,::after{font-weight:inherit !important}
h1,h2,h3,h4,h5,h6,strong,.tab-trigger{font-family:var(--font-main)}
a,p,span{font-family:var(--font-secondary)}
.font-primary{font-family:var(--font-main) !important}
#preloader{display:flex;position:fixed;top:0;left:0;width:100%;height:100%;justify-content:center;align-items:center;z-index:9999;transition:opacity .2s ease-in-out;background-color:hsla(0,0%,100%,.2);-webkit-backdrop-filter:blur(15px);backdrop-filter:blur(15px)}
#preloader img.is-animated{animation-iteration-count:infinite;animation:1s blink linear infinite}
#preloader .loading-logo-dark{display:none}
#preloader .loading-logo-light{display:flex}
.dark #preloader{background-color:rgba(0,0,0,.2)}
.dark #preloader .loading-logo-light{display:none !important}
.dark #preloader .loading-logo-dark{display:flex}
.spin-loader #preloader img{animation:2s spin linear infinite}
:root{--infinte-color: #c9c9c9;--main-text-color: #231f1e;--main-text-color-dark: #2b2d34;--color-primary: #5cd5c4;--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-sm: 0.8685714286rem;--mm-ocd-width: 80%}
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{text-decoration:none;transition:color .2s}
img{max-width:100%}
a:focus{outline: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: var(--tw-ring-offset-shadow), 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));
}
input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}
[type=submit]{-webkit-appearance:listitem}
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}
.spinner-loader.reverse{background-color:#f98181}
.hide-scroll{-ms-overflow-style:none;scrollbar-width:none;overflow-y:scroll}
.hide-scroll::-webkit-scrollbar{display:none}
.remove-item-btn:after{font-family:"sallaicons" !important}
.remove-item-btn:after{content:"";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 .3s cubic-bezier(0.2, 1, 0.3, 1)}
.no-scrollbar::-webkit-scrollbar{display:none}
.no-scrollbar{-ms-overflow-style:none;scrollbar-width:none}
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)}}
.animated{animation-duration:1s;animation-duration:var(--animate-duration);animation-fill-mode:both}
@keyframes pulse-anime{from{transform:scale3d(1, 1, 1)}50%{transform:scale3d(1.25, 1.15, 1)}to{transform:scale3d(1, 1, 1)}}
.pulse-anime{animation-name:pulse-anime;animation-timing-function:ease-in-out}
.content .content-entry img{margin:15px 0 25px}
salla-modal:not(.hydrated){display:none}
.videoWrapper{position:relative;padding-bottom:56.25%;height:0}
.videoWrapper lite-youtube{
  border-radius: 0.5rem;
}
.s-product-card-content-footer.videoWrapper lite-youtube button{
  border-radius: 0.5rem;
}
custom-salla-product-card.videoWrapper lite-youtube{border-radius:.5rem}
.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;
  height: 2.5rem;
  width: 2.5rem;
  cursor: pointer;
  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}
.grid-trigger{
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.grid-trigger>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.grid-trigger>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.grid-trigger>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.grid-trigger>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.grid-trigger>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.grid-trigger>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.grid-trigger{order:1}.align-start-logo.store-header .container>.grid-trigger>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.grid-trigger{justify-content:center}
.s-product-card-content-footer.grid-trigger button{
  border-radius: 0.375rem;
}
custom-salla-product-card.grid-trigger{border-radius:.25rem}
.dark .grid-trigger{color:var(--dark-text-sec)}
.flex-center{
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.flex-center>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex-center>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.flex-center>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex-center>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.flex-center>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.flex-center>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.flex-center{order:1}.align-start-logo.store-header .container>.flex-center>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.flex-center{justify-content:center}
.center-between{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.center-between>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.center-between>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.center-between>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.center-between>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.center-between>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.center-between>.justify-center{order:1}.align-start-logo.store-header .container>.center-between>.justify-end{order:3;justify-content:start;width:auto}}
.grow-0{flex-grow:0 !important}
.basis-0{flex-basis:0}
.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;
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.badge{order:1}}
@media (min-width: 768px){
  .min--2 .badge{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .badge{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .badge{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .badge{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .badge{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .badge{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.badge{justify-content:center}
.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-verify-back{top:.5rem}
.s-verify-back svg{max-width:18px;fill:rgba(107, 114, 128, var(--tw-text-opacity))}
[dir=rtl] .s-verify-back{right:.5rem}
[dir=ltr] .s-verify-back{left:.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}}
.s-modal-container{z-index:999999}
body.modal-is-open{position:static;position:initial}
.header-btn .sicon-add::before{content:""}
body.no-copy{-webkit-user-select:none;-moz-user-select:none;user-select: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 .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), 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);left:43%;bottom:-7px}
.visible .tooltip-content{visibility:visible;opacity:1;transform:translate(82px, -110px)}
.close-tooltip{padding:9px 7px !important}
.close-tooltip{position:absolute;top:0;left:0}
@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{49%{transform:translateY(-100%)}50%{opacity:0;transform:translateY(100%)}51%{opacity:1}}
@keyframes delayKeyframe{0%{opacity:0}100%{opacity:0}}
@keyframes rubberBand{from{transform:scale3d(1, 1, 1)}30%{transform:scale3d(1.25, 0.75, 1)}40%{transform:scale3d(0.75, 1.25, 1)}50%{transform:scale3d(1.15, 0.85, 1)}65%{transform:scale3d(0.95, 1.05, 1)}75%{transform:scale3d(1.05, 0.95, 1)}to{transform:scale3d(1, 1, 1)}}
.rubberBand{animation-name:rubberBand;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:1}
.move-up{
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px 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);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.move-up:hover{
  --tw-translate-y: -0.25rem;
  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));
}
@keyframes flash{0%{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(3)}}
@keyframes blink{0%{opacity:0}50%{opacity:1}100%{opacity:0}}
@keyframes flying{0%{transform:translate(0, 0)}50%{transform:translate(0, 15px)}100%{transform:translate(0, 0)}}
@keyframes spin{to{transform:rotate(1turn)}}
@keyframes marquee{0%{transform:translateX(0)}to{transform:translateX(100%)}}
@keyframes marqueeltr{0%{transform:translateX(0)}to{transform:translateX(-100%)}}
.swiper-lazy{
  opacity: 0;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  position: absolute;
  top: 0px;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
}
input[type=radio].sr-only div.swiper-lazy{transition:all .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%;
  --tw-translate-y: 0.75rem;
  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));
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
input[type=radio].sr-only div.lazy__bg{transition:all .3s}
input[type=radio].sr-only:checked~div.lazy__bg{border-color:var(--color-main)}
.dark .lazy__bg{background-color:var(--dark-bg-main)}
.lazy__bg.loaded{
  --tw-translate-y: 0px;
  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;
}
.lazy__bg.lazy_avatar{
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
}
.lazy__bg.lazy_menu{
  position: relative;
  height: 1.5rem;
  width: 1.5rem;
  flex-shrink: 0;
  background-color: transparent;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 768px){
  .lazy__bg.lazy_menu{
    height: 3rem;
    width: 3rem;
  }
}
.lazy__bg.lazy_menu.cat_profile{
  height: 3.5rem;
  width: 3.5rem;
}
.lazy__bg.lazy_img{
  position: relative;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.lazy__bg.lazy_icon{
  position: relative;
  height: 1.5rem;
  width: 1.5rem;
  flex-shrink: 0;
  background-color: transparent;
  background-size: cover;
  background-repeat: no-repeat;
}
img.lazy{visibility:hidden;opacity:0}
img.lazy.loaded{visibility:visible;transition:opacity .5s;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 .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:""}
[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 .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;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media (min-width: 640px){
  .form-label{
    margin-top: 1px;
  }
}
@media (min-width: 768px){
  .form-label{
    margin-bottom: 0px;
  }
}
label{
  display: block;
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, 1);
  color: rgba(0, 0, 0, var(--tw-text-opacity, 1));font-family:var(--font-main);
}
label.s-product-card-content-title a{font-family:var(--font-main)}
.dark label{color:var(--dark-text-main)}
.form-input,input,textarea,select,.tel-input,.s-login-modal-input,.s-product-availability-input,.s-verify-input,.s-comment-form-input{
  height: 2.5rem;
  width: 100%;
  border-radius: 0.375rem;
  --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));
  font-family: var(--font-secondary);
  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;
}
.s-product-card-content-footer.form-input button,input.s-product-card-content-footer button,textarea.s-product-card-content-footer button,select.s-product-card-content-footer button,.s-product-card-content-footer.tel-input button,.s-product-card-content-footer.s-login-modal-input button,.s-product-card-content-footer.s-product-availability-input button,.s-product-card-content-footer.s-verify-input button,.s-product-card-content-footer.s-comment-form-input button{
  border-radius: 0.375rem;
}
custom-salla-product-card.form-input,custom-salla-product-cardinput,custom-salla-product-cardtextarea,custom-salla-product-cardselect,custom-salla-product-card.tel-input,custom-salla-product-card.s-login-modal-input,custom-salla-product-card.s-product-availability-input,custom-salla-product-card.s-verify-input,custom-salla-product-card.s-comment-form-input{border-radius:.25rem}
.dark .form-input,.dark input,.dark textarea,.dark select,.dark .tel-input,.dark .s-login-modal-input,.dark .s-product-availability-input,.dark .s-verify-input,.dark .s-comment-form-input{color:var(--dark-text-main);background-color:var(--dark-grey)}
.form-input:focus,input:focus,textarea:focus,select:focus,.tel-input:focus,.s-login-modal-input:focus,.s-product-availability-input:focus,.s-verify-input:focus,.s-comment-form-input:focus{
  border-color: #414042;
  border-color: var(--color-primary);
  --tw-ring-color: transparent;
}
.dark *.form-input{
  --tw-border-opacity: 0.2;
}
input.dark *{
  --tw-border-opacity: 0.2;
}
textarea.dark *{
  --tw-border-opacity: 0.2;
}
select.dark *{
  --tw-border-opacity: 0.2;
}
.dark *.tel-input{
  --tw-border-opacity: 0.2;
}
.dark *.s-login-modal-input{
  --tw-border-opacity: 0.2;
}
.dark *.s-product-availability-input{
  --tw-border-opacity: 0.2;
}
.dark *.s-verify-input{
  --tw-border-opacity: 0.2;
}
.dark *.s-comment-form-input{
  --tw-border-opacity: 0.2;
}
.form-input:focus:is(.dark *),input:focus:is(.dark *),textarea:focus:is(.dark *),select:focus:is(.dark *),.tel-input:focus:is(.dark *),.s-login-modal-input:focus:is(.dark *),.s-product-availability-input:focus:is(.dark *),.s-verify-input:focus:is(.dark *),.s-comment-form-input:focus:is(.dark *){
  border-color: #414042;
  border-color: var(--color-primary);
}
.form-input,input,textarea,select,.tel-input,.s-login-modal-input,.s-product-availability-input,.s-verify-input,.s-comment-form-input{-moz-appearance:none;appearance:none;-webkit-appearance:none}
textarea{min-height:5rem !important}
.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));
}
.s-product-options-wrapper{
  background-color: transparent;
  padding: 0px;
}
.s-product-options-wrapper input,.s-product-options-wrapper textarea,.s-product-options-wrapper select{
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, 1);
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity, 1));
}
.dark .s-product-options-wrapper input,.dark .s-product-options-wrapper textarea,.dark .s-product-options-wrapper select{background-color:var(--dark-bg-main)}
.s-product-options-option-label{
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, 1);
  color: rgba(0, 0, 0, var(--tw-text-opacity, 1));
}
.dark .s-product-options-option-label{color:var(--dark-text-main)}
.s-product-options-option-label small{
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
}
.dark .s-product-options-option-label small{color:var(--dark-text-sec)}
.s-product-options-colors-wrapper{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-options-colors-wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-options-colors-wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-options-colors-wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-options-colors-wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-options-colors-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-options-colors-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.s-product-options-colors-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-options-colors-wrapper input[type=radio]+label{
  text-wrap: wrap;
}
.s-product-options-colors-wrapper div{
  font-family: var(--font-secondary);
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, 1);
  color: rgba(0, 0, 0, var(--tw-text-opacity, 1));
}
.dark .s-product-options-colors-wrapper div{color:var(--dark-text-main)}
.s-product-options-colors-wrapper div{margin:0 !important;margin:initial !important}
.s-product-options-colors-wrapper div label span{margin:0 !important;margin:initial !important}
.s-product-options-multiple-options-wrapper div input{
  height: 1.25rem;
  width: 1.25rem;
}
.dark .s-product-options-multiple-options-wrapper div input{color:#414042;color:var(--color-primary)}
.s-product-options-multiple-options-wrapper div input{--tw-ring-offset-width: unset !important}
.s-product-options-multiple-options-wrapper div input:checked{
  background-color: #414042;
  background-color: var(--color-primary);
}
.s-product-options-multiple-options-wrapper div label{
  font-family: var(--font-secondary);
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, 1);
  color: rgba(0, 0, 0, var(--tw-text-opacity, 1));
}
.dark .s-product-options-multiple-options-wrapper div label{color:var(--dark-text-main)}
.dark *.s-product-options-splitter{
  border-color: var(--dark-bg-main);
}
@media (max-width: 767px){.s-product-options-thumbnails-wrapper{grid-template-columns:repeat(3, minmax(0, 1fr))}}
.s-product-options-thumbnails-wrapper .s-product-options-thumbnails-icon{left:50% !important;top:50% !important;transform:translate(-50%, -50%) !important}
.s-product-options-grid-mode-span{
  border-radius: 0.375rem;
}
.s-product-card-content-footer.s-product-options-grid-mode-span button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-product-options-grid-mode-span{border-radius:.25rem}
.dark .s-product-options-grid-mode-span{background-color:var(--dark-bg-main);border-color:var(--dark-grey)}
.s-product-options-grid-mode input:checked+div{
  background-color: #414042;
  background-color: var(--color-primary);color:var(--text-btn);
}
.s-comment-form-content{
  position: relative;
  display: flex;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-comment-form-content>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comment-form-content>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-comment-form-content>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comment-form-content>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-comment-form-content>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-comment-form-content>.justify-center{order:1}.align-start-logo.store-header .container>.s-comment-form-content>.justify-end{order:3;justify-content:start;width:auto}}
[dir="ltr"] .s-comment-form-content .s-comment-form-action{
  right: 0.5rem;
}
[dir="rtl"] .s-comment-form-content .s-comment-form-action{
  left: 0.5rem;
}
.s-comment-form-content .s-comment-form-action{
  position: absolute;
  bottom: 0.5rem;
  margin: 0px;
  width: -moz-max-content;
  width: max-content;
}
[dir="rtl"] .s-comment-form-content .s-comment-form-action{
  left: 0.5rem;
}
[dir="ltr"] .s-comment-form-content .s-comment-form-action{
  right: 0.5rem;
}
input[type=radio].sr-only div.s-comment-form-content .s-comment-form-action{transition:all .3s}
input[type=radio].sr-only:checked~div.s-comment-form-content .s-comment-form-action{border-color:var(--color-main)}
.s-comment-form-content .s-comment-form-action salla-button{
  width: -moz-max-content;
  width: max-content;
}
.s-comment-form-content .s-comment-form-action salla-button button{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px){
  .s-comment-form-content .s-comment-form-action salla-button button{
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.s-file-upload-wrapper .filepond--panel-root,.filepond--drop-label{background:transparent none repeat 0 0 / auto auto padding-box border-box scroll !important;background:initial !important}
.s-file-upload-hidden-input{display:none}
.flatpickr-calendar input{
  --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(0, 0, 0, 1);
  color: rgba(0, 0, 0, var(--tw-text-opacity, 1));
}
.s-quantity-input-input{border:medium none currentColor !important;border:initial !important;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll !important;background:initial !important}
.s-quantity-input-input.focus-visible{outline:medium none invert !important;outline:initial !important}
.s-quantity-input-input.focus-visible{outline:medium none invert !important;outline:initial !important}
.s-quantity-input-input.focus-visible{outline:medium none invert !important;outline:initial !important}
.s-quantity-input-input:focus-visible{outline:medium none invert !important;outline:initial !important}
.s-login-modal-input[type=email]{
  margin-bottom: 1rem;
}
salla-button[width=wide]{
  width: 100%;
}
salla-button.copied .s-button-text{
  --tw-text-opacity: 1;
  color: rgba(34, 197, 94, 1);
  color: rgba(34, 197, 94, var(--tw-text-opacity, 1));
}
salla-button.copied .s-button-text:is(.dark *){
  --tw-text-opacity: 1;
  color: rgba(34, 197, 94, 1);
  color: rgba(34, 197, 94, var(--tw-text-opacity, 1));
}
salla-button.copied i:before{content:"";--tw-text-opacity: 1;color: rgba(34, 197, 94, 1);color: rgba(34, 197, 94, var(--tw-text-opacity, 1))}
salla-button.copied i:is(.dark *):before{
  --tw-text-opacity: 1;
  color: rgba(34, 197, 94, 1);
  color: rgba(34, 197, 94, var(--tw-text-opacity, 1));
}
salla-button.hydrated{border:medium none currentColor !important;border:initial !important;background-color:transparent !important;background-color:initial !important}
salla-button span{font-family:var(--font-main);
}
salla-button.s-product-card-content-title span a{font-family:var(--font-main)}
.s-button-primary,.btn-primary{color:var(--text-btn)}
.s-button-light,.btn-light{
  border-style: none;
  --tw-bg-opacity: 1;
  background-color: rgba(55, 65, 81, 1);
  background-color: rgba(55, 65, 81, 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{
  display: inline-flex;
  flex: 1 1 0%;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 0.375rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 0.625rem;
  padding-top: 0.5rem;
  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, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;font-family:var(--font-main);
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.btn{order:1}}
.s-product-card-content-sub.btn{justify-content:center}
.s-product-card-content-footer.btn button{
  border-radius: 0.375rem;
}
.s-product-card-content-title.btn a{font-family:var(--font-main)}
custom-salla-product-card.btn{border-radius:.25rem}
.btn{color:var(--text-btn)}
.btn:hover{
  opacity: 0.8;
}
.btn.faq-link{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  font-size: 0.75rem;
  line-height: 1rem;
}
.btn .loader{width:0;opacity:0;height:16px;transform:scale(0);transition:.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:rgba(0,0,0,0);border-bottom-color:#fff;border-left-color:rgba(0,0,0,0);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: 300ms;
}
.dark .btn--quantity{color:var(--dark-text-sec)}
.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: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{
  fill: #ef4444;
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, 1);
  color: rgba(239, 68, 68, var(--tw-text-opacity, 1));
}
.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;
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.btn--rounded-gray{order:1}}
@media (min-width: 768px){
  .min--2 .btn--rounded-gray{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .btn--rounded-gray{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .btn--rounded-gray{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .btn--rounded-gray{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .btn--rounded-gray{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .btn--rounded-gray{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.btn--rounded-gray{justify-content:center}
.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;
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.btn--circle-gray{order:1}}
@media (min-width: 768px){
  .min--2 .btn--circle-gray{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .btn--circle-gray{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .btn--circle-gray{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .btn--circle-gray{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .btn--circle-gray{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .btn--circle-gray{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-sub.btn--circle-gray{justify-content:center}
.btn--circle-gray:hover{
  background-color: rgba(229, 231, 235, 0.5);
}
.btn--icon{
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  height: 2.5rem;
  width: 2.5rem;
  flex-shrink: 0;
  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, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.btn--icon>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.btn--icon>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.btn--icon>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.btn--icon>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.btn--icon>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.btn--icon>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.btn--icon{order:1}.align-start-logo.store-header .container>.btn--icon>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.btn--icon{justify-content:center}
@media (min-width: 768px){
  .min--2 .btn--icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .btn--icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .btn--icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .btn--icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .btn--icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .btn--icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.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}
[dir="ltr"] .btn--close{
  right: 0px;
}
[dir="rtl"] .btn--close{
  left: 0px;
}
.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));
}
[dir="rtl"] .btn--close{
  left: 0px;
}
[dir="ltr"] .btn--close{
  right: 0px;
}
input[type=radio].sr-only div.btn--close{transition:all .3s}
input[type=radio].sr-only:checked~div.btn--close{border-color:var(--color-main)}
.index section.s-block.btn--close{display:none}
@media (min-width: 480px){
  .btn--close{
    display: block;
  }
}
[dir="ltr"] .btn--close-sm{
  right: 0px;
}
[dir="rtl"] .btn--close-sm{
  left: 0px;
}
.btn--close-sm{
  position: fixed;
  top: 0px;
  z-index: 9999;
  height: 51px;
  width: 51px;
  font-size: 1.5rem;
  line-height: 2rem;
}
[dir="rtl"] .btn--close-sm{
  left: 0px;
}
[dir="ltr"] .btn--close-sm{
  right: 0px;
}
.dark .btn--close-sm{color:var(--dark-text-main)}
.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(107, 114, 128, 1);
  color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.btn--collapse>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.btn--collapse>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.btn--collapse>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.btn--collapse>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.btn--collapse>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.btn--collapse>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.btn--collapse{order:1}.align-start-logo.store-header .container>.btn--collapse>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.btn--collapse{justify-content:center}
.s-product-card-content-footer.btn--collapse button{
  border-radius: 0.375rem;
}
custom-salla-product-card.btn--collapse{border-radius:.25rem}
@media (min-width: 480px){
  [dir="ltr"] .btn--collapse{
    padding-right: 1.25rem;
  }
  [dir="rtl"] .btn--collapse{
    padding-left: 1.25rem;
  }
  [dir="ltr"] .btn--collapse{
    padding-left: 1.75rem;
  }
  [dir="rtl"] .btn--collapse{
    padding-right: 1.75rem;
  }
}
.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), 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);
}
.btn.btn:disabled:hover{
  background-color: transparent;
}
.btn:disabled .s-button-text{
  opacity: 0.7;
}
.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;
  border-color: #414042;
  border-color: var(--color-primary);
  background-color: #414042;
  background-color: var(--color-primary);color:var(--text-btn);
}
.btn--outline-primary{
  border-width: 1px;
  border-color: #414042;
  border-color: var(--color-primary);
  color: #414042;
  color: var(--color-primary);
}
.btn--outline-primary:hover{
  background-color: #414042;
  background-color: var(--color-primary);
  color: #ff6767;
  color: var(--color-primary-reverse);
}
.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), 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);
}
.dark .btn--outline{color:var(--dark-text-sec)}
.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));
}
.dark *.btn--outline{
  --tw-border-opacity: 0.2;
}
.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;
}
@media (min-width: 768px){
  .min--2 .btn--rounded-full{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .btn--rounded-full{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .btn--rounded-full{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .btn--rounded-full{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .btn--rounded-full{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .btn--rounded-full{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.btn.lang,.btn.currency{
  padding: 0.625rem;
  padding-top: 0.5rem;
  color: inherit;
}
.dark .btn.lang,.dark .btn.currency{color:var(--dark-text-main)}
.rounded-icon{
  height: 4rem;
  width: 4rem;
  border-radius: 9999px;
  font-size: 1.5rem;
  line-height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.rounded-icon>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.rounded-icon>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.rounded-icon>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.rounded-icon>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.rounded-icon>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.rounded-icon>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.rounded-icon{order:1}.align-start-logo.store-header .container>.rounded-icon>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.rounded-icon{justify-content:center}
@media (min-width: 768px){
  .min--2 .rounded-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .rounded-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .rounded-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .rounded-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .rounded-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .rounded-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
[dir="ltr"] button.btn--coupon{
  right: 0px;
}
[dir="rtl"] button.btn--coupon{
  left: 0px;
}
[dir="ltr"] button.btn--coupon{
  border-top-left-radius: 0px;
}
[dir="rtl"] button.btn--coupon{
  border-top-right-radius: 0px;
}
[dir="ltr"] button.btn--coupon{
  border-bottom-left-radius: 0px;
}
[dir="rtl"] button.btn--coupon{
  border-bottom-right-radius: 0px;
}
button.btn--coupon{
  position: absolute;
  top: 0px;
  height: 40px;
  flex-shrink: 0;
}
[dir="rtl"] button.btn--coupon{
  left: 0px;
}
[dir="ltr"] button.btn--coupon{
  right: 0px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
[dir="rtl"] button.btn--coupon{
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
input[type=radio].sr-only divbutton.btn--coupon{transition:all .3s}
input[type=radio].sr-only:checked~divbutton.btn--coupon{border-color:var(--color-main)}
button.btn--coupon.has-coupon{
  border-style: none;
}
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;
}
.index sectionsalla-button.s-block.has-not-coupon button .icon,.index sectionsalla-button.s-block.has-coupon button .coupon-text{display:none}
salla-button.has-coupon button{
  width: 3rem;
  padding-left: 0px;
  padding-right: 0px;
}
.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, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-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{
  position: relative;
  margin-bottom: 1rem;
  cursor: pointer;
  border-bottom-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
#btn-show-more *{pointer-events:none}
#btn-show-more{
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>#btn-show-more>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>#btn-show-more>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>#btn-show-more>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>#btn-show-more>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>#btn-show-more>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>#btn-show-more>.justify-center{order:1}.align-start-logo.store-header .container>.flex>#btn-show-more{order:1}.align-start-logo.store-header .container>#btn-show-more>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub#btn-show-more{justify-content:center}
#btn-show-more.is-expanded{
  display: none;
}
.index section.s-block#btn-show-more.is-expanded{display:none}
.cart-item .btn--wishlist.is-added{border-color:#414042 !important;border-color:var(--color-primary) !important}
.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 #fff;background-repeat:no-repeat;background-position:center;text-align:center;line-height:40px;box-shadow:0 1px 3px 0 rgba(0,0,0,.075)}
.custom-radios input[type=radio]+label span::after{font-family:"sallaicons" !important}
.custom-radios input[type=radio]+label span::after{opacity:0;display:inline-block;transform:scale(0.4);transition:all .3s ease;font-style:normal;font-weight:normal;font-feature-settings:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;content:"";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:.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 .2s,color .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}
.s-product-card-content-footer.radio-images__label button{
  border-radius: 0.375rem;
}
custom-salla-product-card.radio-images__label{border-radius:.25rem}
@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(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 .3s}
input[type=radio].sr-only:checked~div.radio-images__badge{border-color:var(--color-main)}
@media (min-width: 768px){
  .min--2 .radio-images__badge{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .radio-images__badge{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .radio-images__badge{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .radio-images__badge{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .radio-images__badge{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .radio-images__badge{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.radio-images input[type=radio]{display:none}
.radio-images input[type=radio]+label{position:relative}
.radio-images input[type=radio]+label:after{font-family:"sallaicons" !important}
.radio-images input[type=radio]+label:after{content:"";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:#fff;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 .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 .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:.3}
.radio-images input[type=radio]:disabled+label{opacity:.45}
.store-header.z-3 .shadow-none:not(.fixed-pinned) .inner{background:transparent none repeat 0 0 / auto auto padding-box border-box scroll !important;background:initial !important}
.main-nav-container.animated .inner,.main-nav-container.hide .inner{transition:top .5s,transform .5s,opacity .4s}
.main-nav-container.fixed-pinned .inner{
  position: fixed;
  top: 0px;
  right: 0px;
  left: 0px;
  z-index: 10;
  width: 100%;box-shadow:0 0 5px rgba(0,0,0,.1);transform:translate3d(0, -100%, 0);opacity:.95;
}
@media(max-width: 1024px){.main-nav-container.fixed-pinned .inner{transform:none;top:-70px}}
.main-nav-container.fixed-pinned .navbar-brand h4{line-height:1}
.main-nav-container.fixed-pinned .main-menu>li>a{padding-top:20px;padding-bottom:20px}
.main-nav-container.fixed-header .inner{transform:translate3d(0, 0, 0)}
@media(max-width: 1024px){.main-nav-container.fixed-header .inner{transform:none;top:0}}
.navbar-brand{
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.navbar-brand>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.navbar-brand>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.navbar-brand>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.navbar-brand>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.navbar-brand>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.navbar-brand>.justify-center{order:1}.align-start-logo.store-header .container>.navbar-brand>.justify-end{order:3;justify-content:start;width:auto}}
.navbar-brand img{
  width: auto;
  max-width: 145px;
}
@media (min-width: 1024px){
  .navbar-brand img{
    max-width: 170px;
  }
}
.search-btn{
  justify-content: flex-start;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.flex>.search-btn{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.search-btn{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.flex>.search-btn{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.search-btn{margin-right:auto;
  }.align-start-logo.store-header .container>.flex>.search-btn{order:2;justify-content:end;width:auto}}
.s-product-card-starting-price.search-btn{justify-content:start}
@media (min-width: 768px){
  .search-btn{
    justify-content: center;
  }
}
.s-modal-overlay{
  opacity: 0;-webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);background:rgba(0,0,0,.1);transition:opacity .5s cubic-bezier(0.4, 0, 0.6, 1) 80ms,visibility .32s step-end 80ms;
}
.modal-is-open .s-modal-overlay{
  opacity: 1;transition:opacity .5s cubic-bezier(0.4, 0, 0.6, 1) 80ms,visibility .32s step-end 80ms;
}
.s-search-results{
  --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), 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);
}
.store-header.z-3 .s-search-results:not(.fixed-pinned) .inner{background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;background:initial}
.s-search-inline .s-search-input{border:medium none currentColor !important;border:initial !important}
.angel-search-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.angel-search-container>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.angel-search-container>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.angel-search-container>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.angel-search-container>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.angel-search-container>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.angel-search-container>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.angel-search-container{order:1}.align-start-logo.store-header .container>.angel-search-container>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.angel-search-container{justify-content:center}
@media (min-width: 768px){
  .angel-search-container{
    flex-direction: row;
  }
  .angel-search-links{
    flex-direction: column;
  }
}
.angel-search-list{
  flex-wrap: wrap;
  gap: 0.625rem;
  font-size: 1rem;
  line-height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.angel-search-list>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.angel-search-list>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.angel-search-list>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.angel-search-list>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.angel-search-list>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.angel-search-list>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.angel-search-list{order:1}.align-start-logo.store-header .container>.angel-search-list>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.angel-search-list{justify-content:center}
.angel-search-tags-list{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.angel-search-btn{
  cursor: pointer;
  border-radius: 0.375rem;
  border-width: 1px;
  border-color: transparent;
  --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.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
.angel-search-btn *{pointer-events:none}
.angel-search-btn{
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.angel-search-btn>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.angel-search-btn>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.angel-search-btn>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.angel-search-btn>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.angel-search-btn>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.angel-search-btn>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.angel-search-btn{order:1}.align-start-logo.store-header .container>.angel-search-btn>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.angel-search-btn{justify-content:center}
.s-product-card-content-footer.angel-search-btn button{
  border-radius: 0.375rem;
}
custom-salla-product-card.angel-search-btn{border-radius:.25rem}
.dark .angel-search-btn{background-color:var(--dark-bg-main)}
.angel-search-btn:hover{
  border-color: #414042;
  border-color: var(--color-primary);
}
.angel-search-btn:focus{
  border-color: #414042;
  border-color: var(--color-primary);
}
[dir="ltr"] .angel-search-links-btn{
  padding-right: 0.25rem;
}
[dir="rtl"] .angel-search-links-btn{
  padding-left: 0.25rem;
}
.angel-search-links-btn{
  padding: 0px;
}
[dir="ltr"] .angel-search-links-btn img{
  margin-right: 0.25rem;
}
[dir="rtl"] .angel-search-links-btn img{
  margin-left: 0.25rem;
}
.angel-search-links-btn img{
  height: 6rem;
}
.angel-search-tag-btn{
  border-radius: 0.125rem;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0.125rem;
}
.s-product-card-content-footer.angel-search-tag-btn button{
  border-radius: 0.125rem;
}
custom-salla-product-card.angel-search-tag-btn{border-radius:.125rem}
.angel-search-tag-btn{background:transparent none repeat 0 0 / auto auto padding-box border-box scroll !important;background:initial !important;border:medium none currentColor !important;border:initial !important}
.angel-search-tag-btn span{
  text-decoration-line: underline;
}
.angel-search-tag-btn:hover span{color:#414042 !important;color:var(--color-primary) !important;
}
.angel-search-tag-btn:hover span{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
@media (min-width: 768px){
  .angel-search-modal .angelmodal__container{
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
  }
}
.main-nav-container{
  min-height: 0;
  min-height: initial;
}
[dir="ltr"] #nav-cart{
  margin-left: 1rem;
}
[dir="rtl"] #nav-cart{
  margin-right: 1rem;
}
#nav-cart{
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>#nav-cart>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>#nav-cart>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>#nav-cart>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>#nav-cart>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>#nav-cart>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>#nav-cart>.justify-center{order:1}.align-start-logo.store-header .container>#nav-cart>.justify-end{order:3;justify-content:start;width:auto}}
[dir="ltr"] #nav-cart .icon{
  margin-right: 0.5rem;
}
[dir="rtl"] #nav-cart .icon{
  margin-left: 0.5rem;
}
#nav-cart span{
  position: absolute;
  top: 0.25rem;
}
input[type=radio].sr-only div#nav-cart span{transition:all .3s}
input[type=radio].sr-only:checked~div#nav-cart span{border-color:var(--color-main)}
#nav-cart span:where([dir="ltr"], [dir="ltr"] *){
  left: -0.5rem;
}
#nav-cart span:where([dir="rtl"], [dir="rtl"] *){
  right: -0.5rem;
}
.header-btn{
  display: flex;
  height: 2rem;
  width: 2rem;
  padding: 0.5rem;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.header-btn>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.header-btn>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.header-btn>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.header-btn>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.header-btn>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.header-btn>.justify-center{order:1}.align-start-logo.store-header .container>.header-btn>.justify-end{order:3;justify-content:start;width:auto}}
.header-btn:hover{
  opacity: 0.8;
}
.has-text-color{
  color: var(--mainnav-text-color);
}
.menu-item{
  display: flex;
  align-items: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  --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;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.menu-item>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.menu-item>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.menu-item>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.menu-item>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.menu-item>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.menu-item>.justify-center{order:1}.align-start-logo.store-header .container>.menu-item>.justify-end{order:3;justify-content:start;width:auto}}
.menu-item:hover{
  background-color: rgba(229, 231, 235, 0.3);
}
@media (min-width: 640px){
  .menu-item{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.menu-item.logout{
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, 1);
  color: rgba(248, 113, 113, var(--tw-text-opacity, 1));
}
.menu-item.is-active{
  background-color: rgba(229, 231, 235, 0.2);
  color: #414042;
  color: var(--color-primary);
}
.s-cart-summary-wrapper .s-cart-summary-content{
  line-height: 0;
}
.s-cart-summary-total{color:#000;font-weight:600}
@media(max-width: 480px){.s-cart-summary-total:where([dir="ltr"], [dir="ltr"] *){
    line-height: .75rem;
  }.s-cart-summary-total{font-size:.8rem;line-height:.7;width:-moz-max-content;width:max-content}}
.s-cart-summary-count{top:0px !important;left:auto !important;left:initial !important;right:0 !important}
.s-cart-summary-count{background:#414042;background:var(--color-primary);padding:.1rem;height:.9rem;width:.9rem}
[dir=ltr] .s-cart-summary-count{left:0 !important;right:auto !important;right:initial !important}
.s-login-modal .s-modal-body{
  border-radius: 0.375rem;
  padding: 1rem;
  padding-top: 1.5rem;
}
.s-product-card-content-footer.s-login-modal .s-modal-body button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-login-modal .s-modal-body{border-radius:.25rem}
.s-login-modal .s-modal-close{
  background-color: transparent;
  background-color: initial;
}
.s-login-modal .s-login-modal-label{font-family:var(--font-main);
}
.s-product-card-content-title.s-login-modal .s-login-modal-label a{font-family:var(--font-main)}
.s-login-modal .s-verify-message{
  margin-bottom: 0.5rem;
  font-family: var(--font-secondary);
}
.dark .s-login-modal .s-verify-message{color:var(--dark-text-main)}
.s-login-modal .s-login-modal-currentEmail,.s-login-modal .s-login-modal-currentPhone{
  margin-bottom: 0.5rem;
  text-align: center;
}
.dark .s-login-modal .s-login-modal-currentEmail,.dark .s-login-modal .s-login-modal-currentPhone{color:var(--dark-text-main)}
.s-modal-body{
  border-radius: 0.5rem;
}
.s-product-card-content-footer.s-modal-body button{
  border-radius: 0.5rem;
}
custom-salla-product-card.s-modal-body{border-radius:.5rem}
.s-modal-close{background:transparent none repeat 0 0 / auto auto padding-box border-box scroll !important;background:initial !important}
input{font-family:var(--font-secondary)}
.s-tel-input .iti{margin-bottom:1rem}
.nav-header .follow{
  display: none;
}
.index section.s-block.nav-header .follow{display:none}
.nav-header .icon{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
header nav>ul>li a.active>div>span{color:#414042 !important;color:var(--color-primary) !important}
.mm-ocd nav>ul>li a.active>h5{color:#414042 !important;color:var(--color-primary) !important}
.z-3{z-index:3}
.is_large .header-btn{padding:.35rem}
.is_large .header-btn .sicon-search,.is_large .header-btn .sicon-user{font-size:1.2rem !important}
.is_large .header-btn .sicon-menu{font-size:1.55rem !important}
.is_large .header-btn .sicon-arrow-left,.is_large .header-btn .sicon-arrow-right{
  font-size: 1.5rem;
  line-height: 2rem;
}
.is_large .s-cart-summary-wrapper i{font-size:1.2rem !important}
.is_large .bottom-header-icon i{font-size:1.4rem !important}
.is_large .bottom-header .sicon-search,.is_large .bottom-header .sicon-user{font-size:1.4rem !important}
.store-header .bottom-header .s-user-menu-trigger img{
  height: 1.5rem;
  width: 1.5rem;
}
.store-header .bottom-header .s-user-menu-avatar-wrap{padding:0 !important;padding:initial !important;height:100% !important;width:100% !important}
.store-header .bottom-header .s-user-menu-avatar-wrap{display:flex;justify-content:center;align-items:center}
.bottom-header .s-cart-summary-wrapper{
  flex-direction: column;
}
.bottom-header .s-cart-summary-wrapper .s-cart-summary-content{line-height:1}
.bottom-header .s-cart-summary-wrapper .s-cart-summary-total{
  display: flex;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.bottom-header .s-cart-summary-wrapper .s-cart-summary-total>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.bottom-header .s-cart-summary-wrapper .s-cart-summary-total>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.bottom-header .s-cart-summary-wrapper .s-cart-summary-total>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.bottom-header .s-cart-summary-wrapper .s-cart-summary-total>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.bottom-header .s-cart-summary-wrapper .s-cart-summary-total>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.bottom-header .s-cart-summary-wrapper .s-cart-summary-total>.justify-center{order:1}.align-start-logo.store-header .container>.bottom-header .s-cart-summary-wrapper .s-cart-summary-total>.justify-end{order:3;justify-content:start;width:auto}}
.bottom-header .s-cart-summary-wrapper .s-cart-summary-total{line-height:1}
header .no-summary .s-cart-summary-content{
  display: none;
}
.index sectionheader.s-block .no-summary .s-cart-summary-content{display:none}
.fixed-header>.inner .navbar-brand{animation:.5s fadeInUp linear}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.flex>.justify-start{margin-right:0 !important;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.justify-start{margin-left:0 !important;
  }[dir="ltr"] .align-start-logo.store-header .container>.flex>.justify-start{margin-left:auto !important;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.justify-start{margin-right:auto !important;
  }.align-start-logo.store-header .container>.flex>.justify-start{order:2 !important;justify-content:end !important;width:auto !important}.align-start-logo.store-header .container>.flex>.justify-center{order:1 !important}.align-start-logo.store-header .container>.flex>.justify-end{order:3 !important;justify-content:start !important;width:auto !important}.align-start-logo.store-header .s-cart-summary-content{display:none !important}}
.align-start-logo.fixed-header>.inner{margin:.5rem auto !important;width:calc(100% - 1rem) !important;border-radius:.75rem !important}
[dir="ltr"] .align-start-logo.store-header .header-btn{margin-left:3px !important;
}
[dir="rtl"] .align-start-logo.store-header .header-btn{margin-right:3px !important;
}
.bottom-header{
  position: fixed;
  bottom: 0px;
  right: 0px;
  left: 0px;
  z-index: 10;
  margin: 1rem;
  border-radius: 0.375rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.s-product-card-content-footer.bottom-header button{
  border-radius: 0.375rem;
}
custom-salla-product-card.bottom-header{border-radius:.25rem}
@media (min-width: 768px){
  .bottom-header{
    display: none;
  }
}
.bottom-header-buttons{
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.bottom-header-buttons>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.bottom-header-buttons>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.bottom-header-buttons>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.bottom-header-buttons>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.bottom-header-buttons>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.bottom-header-buttons>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.bottom-header-buttons{order:1}.align-start-logo.store-header .container>.bottom-header-buttons>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.bottom-header-buttons{justify-content:center}
.bottom-header-button{
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.bottom-header-button>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.bottom-header-button>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.bottom-header-button>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.bottom-header-button>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.bottom-header-button>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.bottom-header-button>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.bottom-header-button{order:1}.align-start-logo.store-header .container>.bottom-header-button>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.bottom-header-button{justify-content:center}
.bottom-header-icon{
  height: 2.5rem;
  width: 2.5rem;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.bottom-header-icon>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.bottom-header-icon>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.bottom-header-icon>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.bottom-header-icon>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.bottom-header-icon>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.bottom-header-icon>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.bottom-header-icon{order:1}.align-start-logo.store-header .container>.bottom-header-icon>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.bottom-header-icon{justify-content:center}
.bottom-header-icon{
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.bottom-header-icon>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.bottom-header-icon>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.bottom-header-icon>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.bottom-header-icon>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.bottom-header-icon>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.bottom-header-icon>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.bottom-header-icon{order:1}.align-start-logo.store-header .container>.bottom-header-icon>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.bottom-header-icon{justify-content:center}
.bottom-header-icon i{font-size:1.5rem !important}
.bottom-header-icon i+span{
  margin-top: 0.375rem;
  line-height: 1;
}
.dark .bottom-header-icon i+span{color:var(--dark-text-main)}
.bottom-header-user{
  flex-direction: column;
}
.bottom-header-user>span{
  margin-top: 0.375rem;
  line-height: 1;
}
.dark .bottom-header-user>span{color:var(--dark-text-main)}
@media (max-width: 767px){
  .is-bottom-header .fixed-pinned .header-container{
    display: none;
  }
  .is-bottom-header .footer-bottom{
    margin-bottom: 4rem;
  }
}
.is-bottom-header.is-sticky-product-bar.product-single .bottom-header{
  bottom: 0px;
  margin: 0px;
  border-radius: 0px;
  opacity: 1;
}
.s-product-card-content-footer.is-bottom-header.is-sticky-product-bar.product-single .bottom-header button{
  border-radius: 0px;
}
custom-salla-product-card.is-bottom-header.is-sticky-product-bar.product-single .bottom-header{border-radius:0;border-radius:initial}
@media (max-width: 767px){
  .is-bottom-header.is-sticky-product-bar.product-single .sticky-product-bar{
    bottom: 4rem;
  }
}
.store-footer{
  position: relative;
  margin-top: 2rem;
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, 1);
  color: rgba(0, 0, 0, var(--tw-text-opacity, 1));
}
@media (min-width: 640px){
  .store-footer{
    margin-top: 4rem;
  }
}
.store-footer a{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.store-footer a:hover{color:#414042 !important;color:var(--color-primary) !important}
.store-footer__inner{
  border-color: currentColor;
  border-color: initial;
}
.store-footer h3{
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
}
@media (min-width: 1024px){
  .store-footer h3{
    margin-bottom: 1.25rem;
  }
}
.store-footer h3{color:#414042;color:var(--color-primary)}
.store-footer .footer-container{
  justify-content: space-between;
  gap: 1rem;
  border-bottom-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-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
}
.store-footer .footer-container:is(.dark *){
  --tw-border-opacity: 0.2;
}
.store-footer .footer-container .logo-footer{justify-content:center}
.store-footer .footer-container .logo-footer .foo{margin-bottom:.5rem;width:auto}
.store-footer .footer-container .footer-list a{margin-bottom:.75rem}
.store-footer .contact-social{
  margin-top: 1.25rem;
  border-top-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-top: 1.25rem;
}
.store-footer .contact-social:is(.dark *){
  --tw-border-opacity: 0.2;
}
.store-footer .contact-social ul{
  margin-bottom: 0px;
}
.store-footer .store-links-items{-moz-columns:2;columns:2}
.store-footer .store-links-items a{max-width:12rem}
.store-footer .footer-vat .items-end{align-items:center}
[dir="ltr"] .store-footer .vat-num{text-align:left;
}
[dir="rtl"] .store-footer .vat-num{text-align:right;
}
.store-footer .to-top a:hover .icon{animation:toTopFromBottom .3s}
.dark .footer-bottom .copyrights p{color:var(--dark-text-main)}
.contact-links a{
  min-width: 3.5rem;
  border-radius: 0.375rem;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity, 1));
  --tw-bg-opacity: 0.5;
  padding: 0.5rem;
}
.s-product-card-content-footer.contact-links a button{
  border-radius: 0.375rem;
}
custom-salla-product-card.contact-links a{border-radius:.25rem}
.dark .contact-links a{color:var(--dark-text-main)}
.contact-links a:is(.dark *){
  --tw-bg-opacity: 0.05;
}
@media(min-width: 992px){[dir="ltr"] .footer-middle h3{text-align:left;
  }[dir="rtl"] .footer-middle h3{text-align:right;
  }[dir="ltr"] .footer-middle .footer-list a{text-align:left;
  }[dir="rtl"] .footer-middle .footer-list a{text-align:right;
  }.footer-middle .contact-links{justify-content:start;flex-wrap:wrap;max-width:13rem}[dir="ltr"] .footer-newsletter .title-mail h2{text-align:left;
  }[dir="rtl"] .footer-newsletter .title-mail h2{text-align:right;
  }[dir="ltr"] .footer-newsletter .title-mail p{text-align:left;
  }[dir="rtl"] .footer-newsletter .title-mail p{text-align:right;
  }.footer-social{
    justify-content: center;
  }
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.footer-social{order:1}}
.s-product-card-content-sub.footer-social{justify-content:center}}
[dir="ltr"] .bubble{
  left: 50%;
}
[dir="rtl"] .bubble{
  right: 50%;
}
.bubble{
  position: absolute;
  top: 0px;
  width: -moz-max-content;
  width: max-content;
  --tw-translate-x: 50%;
  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: default;
  border-radius: 0.375rem;
  background-color: #414042;
  background-color: var(--color-primary);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  opacity: 0;
  --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), 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);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
[dir="rtl"] .bubble{
  right: 50%;
}
[dir="ltr"] .bubble{
  left: 50%;
}
input[type=radio].sr-only div.bubble{transition:all .3s}
input[type=radio].sr-only:checked~div.bubble{border-color:var(--color-main)}
.s-product-card-content-footer.bubble button{
  border-radius: 0.375rem;
}
custom-salla-product-card.bubble{border-radius:.25rem}
.bubble{color:var(--text-btn)}
.bubble::before{
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  height: 0.5rem;
  width: 0.5rem;
  --tw-translate-x: -50%;
  --tw-rotate: 45deg;
  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));
  background-color: #414042;
  background-color: var(--color-primary);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  --tw-content: "";
  content: var(--tw-content);
}
input[type=radio].sr-only div.bubble::before{transition:all .3s}
input[type=radio].sr-only:checked~div.bubble::before{border-color:var(--color-main)}
.bubble:where([dir="ltr"], [dir="ltr"] *)::before{
  right: 50%;
}
.bubble-show{
  position: relative;
  cursor: pointer;
}
.bubble-show *{pointer-events:none}
.bubble-show:hover .bubble{
  visibility: visible;
  top: -2.5rem;
  opacity: 1;
}
.bubble-show:hover .bubble .tooltip-content{visibility:visible;opacity:1;transform:translate(82px, -110px)}
.social-links .social-icon::before,.social-links .social-icon::after{display:none !important}
.social-links .icon{width:100% !important;margin:auto !important}
.footer-middle .follow{
  display: none;
}
.index section.s-block.footer-middle .follow{display:none}
.footer-images{
  flex-wrap: wrap;
  gap: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.footer-images>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.footer-images>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.footer-images>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.footer-images>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.footer-images>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.footer-images>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.footer-images{order:1}.align-start-logo.store-header .container>.footer-images>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.footer-images{justify-content:center}
@media (min-width: 768px){
  .footer-images{
    max-width: 20rem;
  }
}
.footer-images img{
  height: 2.5rem;
  width: auto;
  padding: 0.125rem;
}
.footer-profile p{
  margin-left: auto;
  margin-right: auto;
  max-width: 24rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-family: var(--font-secondary);
  line-height: 1.5rem;
}
.dark .footer-profile p{color:var(--dark-text-main)}
.dark .footer-profile blockquote{color:var(--dark-text-main)}
:root{--mm-ocd-width: 80%;--mm-ocd-min-width: 200px;--mm-ocd-max-width: 440px}
body.mm-ocd-opened{overflow-y:hidden;overscroll-behavior:none}
.mm-ocd{position:fixed;top:0;right:0;bottom:100%;left:0;z-index:9999;overflow:hidden;overscroll-behavior:contain;background:rgba(0,0,0,0);transition-property:bottom,background-color;transition-duration:0s,.3s;transition-timing-function:ease;transition-delay:.45s,.15s}
.mm-ocd--open{bottom:0;background:rgba(0,0,0,.25);-webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);transition-delay:0s}
.dark.mobile-menu{background:var(--dark-bg-main) !important;color:var(--dark-text-main) !important}
.mm-ocd__content{position:absolute;top:0;bottom:0;z-index:2;width:80%;width:var(--mm-ocd-width);min-width:200px;min-width:var(--mm-ocd-min-width);max-width:440px;max-width:var(--mm-ocd-max-width);transition-property:transform;transition-duration:.3s;transition-timing-function:ease}
.mm-ocd--left .mm-ocd__content{left:0;transform:translate3d(-100%, 0, 0)}
.mm-ocd--right .mm-ocd__content{right:0;transform:translate3d(100%, 0, 0)}
.mm-ocd--open .mm-ocd__content{transform:translate3d(0, 0, 0)}
.mm-ocd__backdrop{position:absolute;top:0;bottom:0;z-index:3;width:clamp(100% - 440px,100% - 80%,100% - 200px);width:clamp(100% - var(--mm-ocd-max-width),100% - var(--mm-ocd-width),100% - var(--mm-ocd-min-width));background:rgba(3,2,1,0)}
.mm-ocd--left .mm-ocd__backdrop{right:0}
.mm-ocd--right .mm-ocd__backdrop{left:0}
.mm-spn,.mm-spn a,.mm-spn li,.mm-spn span:not(.s-user-menu-dropdown-item-badge),.mm-spn ul{display:block;padding:0;margin:0;box-sizing:border-box}
:root{--mm-spn-item-height: 50px;--mm-spn-item-indent: 20px;--mm-spn-line-height: 24px;--mm-spn-panel-offset: 30%}
.mm-spn{width:100%;height:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-overflow-scrolling:touch;overflow:hidden;clip-path:inset(0 0 0 0);transform:translateX(0)}
.mm-spn ul{-webkit-overflow-scrolling:touch;position:fixed;top:0;left:100%;bottom:0;z-index:2;width:calc(100% + 30%);width:calc(100% + var(--mm-spn-panel-offset));padding-right:30%;padding-right:var(--mm-spn-panel-offset);line-height:24px;line-height:var(--mm-spn-line-height);overflow:visible;overflow-y:auto;background:inherit;transition:left .3s ease 0s;cursor:default}
.mm-spn ul:after{content:"";display:block;height:50px;height:var(--mm-spn-item-height)}
.mm-spn>ul{left:0}
.mm-spn ul.mm-spn--open{-ms-overflow-style:none;scrollbar-width:none;overflow-y:scroll}
.mm-spn ul.mm-spn--open::-webkit-scrollbar{display:none}
.mm-spn ul.mm-spn--open{left:0}
.mm-spn ul.mm-spn--parent{left:calc(-1*30%);left:calc(-1*var(--mm-spn-panel-offset));overflow:visible}
.mm-spn li{position:relative;background:inherit;cursor:pointer;padding-right:.75rem;padding-left:.75rem}
.mm-spn li:before{content:"";display:block;position:absolute;top:calc(50px/2);top:calc(var(--mm-spn-item-height)/2);right:calc(50px/2);right:calc(var(--mm-spn-item-height)/2);z-index:0;width:10px;height:10px;border-top:2px solid;border-right:2px solid;transform:rotate(45deg) translate(0, -50%);opacity:.4}
.mm-spn li:after{content:"";display:block;margin-left:20px;margin-left:var(--mm-spn-item-indent);border-top:1px solid;opacity:.15}
.mm-spn a,.mm-spn span{position:relative;z-index:1;padding:calc((50px - 24px)/2) 20px;padding:calc((var(--mm-spn-item-height) - var(--mm-spn-line-height))/2) var(--mm-spn-item-indent)}
.mm-spn a{background:inherit;color:inherit;text-decoration:none}
.mm-spn a:not(:last-child){width:100%}
.mm-spn a.has-max{width:-moz-max-content;width:max-content;pointer-events:none}
.mm-spn a:not(:last-child):after{content:"";display:block;position:absolute;top:0;right:0;bottom:0;border-right:1px solid;opacity:.15}
.mm-spn span{background:0 0}
.mm-spn.mm-spn--navbar{cursor:pointer}
.mm-spn.mm-spn--navbar:before{content:"";display:block;position:absolute;top:calc(50px/2);top:calc(var(--mm-spn-item-height)/2);left:20px;left:var(--mm-spn-item-indent);width:10px;height:10px;margin-top:2px;border-top:2px solid;border-left:2px solid;transform:rotate(-45deg) translate(50%, -50%);opacity:.4}
.mm-spn.mm-spn--navbar.mm-spn--main{cursor:default}
.mm-spn.mm-spn--navbar.mm-spn--main:before{content:none;display:none}
.mm-spn.mm-spn--navbar:after{content:attr(data-mm-spn-title);display:block;position:absolute;top:0;left:0;right:0;height:50px;height:var(--mm-spn-item-height);padding:0 calc(20px*2);padding:0 calc(var(--mm-spn-item-indent)*2);line-height:50px;line-height:var(--mm-spn-item-height);opacity:.4;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}
.mm-spn.mm-spn--navbar.mm-spn--main:after{padding-left:20px;padding-left:var(--mm-spn-item-indent)}
.mm-spn.mm-spn--navbar ul{top:calc(50px + 1px);top:calc(var(--mm-spn-item-height) + 1px)}
.mm-spn.mm-spn--navbar ul:before{content:"";display:block;position:fixed;top:inherit;z-index:2;width:100%;border-top:1px solid currentColor;opacity:.15}
.mm-spn.mm-spn--light{color:#444;background:#f3f3f3}
.mm-spn.mm-spn--dark{color:#ddd;background:#333}
.mm-spn.mm-spn--vertical{overflow-y:auto}
.mm-spn.mm-spn--vertical ul{width:100%;padding-right:0;position:static}
.mm-spn.mm-spn--vertical ul ul{display:none;padding-left:20px;padding-left:var(--mm-spn-item-indent)}
.mm-spn.mm-spn--vertical ul ul:after{height:calc(50px/2);height:calc(var(--mm-spn-item-height)/2)}
.mm-spn.mm-spn--vertical ul.mm-spn--open{display:block}
.mm-spn.mm-spn--vertical li.mm-spn--open:before{transform:rotate(135deg) translate(-50%, 0)}
.mm-spn.mm-spn--vertical ul ul li:last-child:after{content:none;display:none}
.mobile-menu-slider{padding:0 !important}
.mobile-menu-slider::after,.mobile-menu-slider::before{display:none !important}
.mobile-menu-slider .swiper-notification{padding:0 !important}
.mobile-menu{display:none;overflow: hidden}
.mobile-menu .lang.btn{padding:1rem !important}
.mobile-menu .social-menu .title{
  display: none;
}
.index section.s-block.mobile-menu .social-menu .title{display:none}
.mobile-menu .currency::before,.mobile-menu .language::before{display:none !important}
.mobile-menu .currency .lang,.mobile-menu .language .lang{width:100% !important}
.mobile-menu .offers-link{display:flex !important}
.mobile-menu .offers-link h5{width:-moz-max-content;width:max-content}
.mobile-menu .links-menu h3{
  display: none;
}
.index section.s-block.mobile-menu .links-menu h3{display:none}
.mobile-menu .links-menu .footer-list a{width:100% !important}
.mobile-menu .links-menu .footer-list a{padding-bottom:.5rem}
.mm-ocd-opened .mobile-menu{display:block}
.mm-spn.mm-spn--light{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
}
.dark .mm-spn.mm-spn--light{color:var(--dark-text-main);background-color:var(--dark-bg-main)}
.mm-spn ul.main-menu:not(.s-user-menu-dropdown-list) li:before{
  height: 0.5rem;
  width: 0.5rem;
}
[dir="ltr"] .mm-spn.mm-spn--navbar:after{
  text-align: left;
}
[dir="rtl"] .mm-spn.mm-spn--navbar:after{
  text-align: right;
}
.mm-spn.mm-spn--navbar:after{
  font-weight: 700;
  opacity: 0.9;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
[dir="rtl"] .mm-spn.mm-spn--navbar:after{
  text-align: right;
}
[dir="ltr"] .mm-spn.mm-spn--navbar:after{
  text-align: left;
}
.mm-spn.mm-spn--navbar:where([dir="ltr"], [dir="ltr"] *):after{
  padding-left: 3rem;
}
.mm-spn.mm-spn--navbar:where([dir="rtl"], [dir="rtl"] *):after{
  padding-right: 3rem;
}
.mm-spn.mm-spn--navbar.mm-spn--main:where([dir="ltr"], [dir="ltr"] *):after{
  padding-left: 0.75rem;
}
.mm-spn.mm-spn--navbar.mm-spn--main:where([dir="rtl"], [dir="rtl"] *):after{
  padding-right: 0.75rem;
}
[dir=rtl] .mm-spn.mm-spn--navbar:before{transform:rotate(135deg) translateY(77%);right:20px;right:var(--mm-spn-item-indent);left:auto}
.mm-spn li::after{margin:0;margin:initial}
.mm-spn li a,.mm-spn li span:not(.s-user-menu-dropdown-item-badge){
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.mm-spn li a span:not(.s-user-menu-dropdown-item-badge){
  padding: 1rem;
}
.mm-spn li a:after{display:none !important}
[dir=rtl] .mm-spn li:before{width:6px;height:6px;top:50%;left:25px;left:calc(50px/2);left:calc(var(--mm-spn-item-height)/2);right:auto;border-bottom:1px solid;border-left:1px solid;border-right:none;border-top:none}
.mm-spn li:after{width:100%;border-color:#c9c9c9;border-color:var(--infinte-color)}
.main-menu .contact-links{
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.main-menu .contact-links a,.main-menu .contact-links span{padding:.2rem !important;
}
.main-menu .contact-links a,.main-menu .contact-links span{
  width: auto;
  flex-shrink: 0;
  gap: 0.25rem;
}
.main-menu .contact-links a::after,.main-menu .contact-links span::after{
  display: none;
}
.index section.s-block.main-menu .contact-links a::after,.index section.s-block.main-menu .contact-links span::after{display:none}
.main-menu .contact-links a i::before,.main-menu .contact-links span i::before{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.social-menu .social-links a.social-icon{
  gap: 0.25rem;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.social-menu .social-links a.social-icon>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.social-menu .social-links a.social-icon>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.social-menu .social-links a.social-icon>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.social-menu .social-links a.social-icon>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.social-menu .social-links a.social-icon>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.social-menu .social-links a.social-icon>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.social-menu .social-links a.social-icon{order:1}.align-start-logo.store-header .container>.social-menu .social-links a.social-icon>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.social-menu .social-links a.social-icon{justify-content:center}
.social-menu .social-links a.social-icon{width:-moz-max-content !important;width:max-content !important}
.sidemenu-link{display:flex !important}
.sidemenu-link{align-items:center}
#mobile-menu .brands-link,#mobile-menu [href$=blog]{
  display: flex;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>#mobile-menu .brands-link>.justify-start,[dir="ltr"] .align-start-logo.store-header .container>#mobile-menu [href$=blog]>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>#mobile-menu .brands-link>.justify-start,[dir="rtl"] .align-start-logo.store-header .container>#mobile-menu [href$=blog]>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>#mobile-menu .brands-link>.justify-start,[dir="ltr"] .align-start-logo.store-header .container>#mobile-menu [href$=blog]>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>#mobile-menu .brands-link>.justify-start,[dir="rtl"] .align-start-logo.store-header .container>#mobile-menu [href$=blog]>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>#mobile-menu .brands-link>.justify-start,.align-start-logo.store-header .container>#mobile-menu [href$=blog]>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>#mobile-menu .brands-link>.justify-center,.align-start-logo.store-header .container>#mobile-menu [href$=blog]>.justify-center{order:1}.align-start-logo.store-header .container>#mobile-menu .brands-link>.justify-end,.align-start-logo.store-header .container>#mobile-menu [href$=blog]>.justify-end{order:3;justify-content:start;width:auto}}
#mobile-menu .brands-link,#mobile-menu [href$=blog]{align-items:center}
.ad-slider .swiper-wrapper{align-items:center}
li .mm-spn--open>.display-all-category{
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, 1);
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity, 1));
}
.dark li .mm-spn--open>.display-all-category{background-color:var(--dark-grey)}
li .mm-spn--open>.display-all-category>.menu-img{height:3rem;width:3rem}
[dir="ltr"] .menu_promo{
  right: 3rem;
}
[dir="rtl"] .menu_promo{
  left: 3rem;
}
.menu_promo{
  pointer-events: none;
  position: absolute;
  top: 50%;
  z-index: 1;
  --tw-translate-y: -50%;
  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));
  padding: 0.25rem;
}
[dir="rtl"] .menu_promo{
  left: 3rem;
}
[dir="ltr"] .menu_promo{
  right: 3rem;
}
input[type=radio].sr-only div.menu_promo{transition:all .3s}
input[type=radio].sr-only:checked~div.menu_promo{border-color:var(--color-main)}
.menu-user-login::before{display:none !important}
.menu-user-login .s-user-menu-wrapper{
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, 1);
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity, 1));
}
.dark .menu-user-login .s-user-menu-wrapper{background-color:var(--dark-grey)}
.menu-user-login .s-user-menu-wrapper .s-user-menu-dropdown-item{
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, 1);
  border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
}
.menu-user-login .s-user-menu-wrapper .s-user-menu-dropdown-item:is(.dark *){
  --tw-border-opacity: 0.2;
}
.menu-user-login .s-user-menu-wrapper .s-user-menu-dropdown-item a:hover{background:rgba(0,0,0,0) !important}
.menu-user-login .s-user-menu-wrapper .s-user-menu-dropdown-item a:hover{color:#414042;color:var(--color-primary)}
.menu-user-login .s-user-menu-wrapper .s-user-menu-trigger-hello{
  padding: 0px;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.dark .menu-user-login .s-user-menu-wrapper .s-user-menu-trigger-hello{color:var(--dark-text-main)}
.menu-user-login .s-user-menu-wrapper .s-user-menu-trigger-name{
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #414042;
  color: var(--color-primary);font-family:var(--font-main);
}
.s-product-card-content-title.menu-user-login .s-user-menu-wrapper .s-user-menu-trigger-name a{font-family:var(--font-main)}
.menu-user-login .s-user-menu-wrapper .s-user-menu-dropdown-list{
  padding: 0px;
}
.menu-user-login salla-user-menu{
  display: block;
  width: 100%;
}
.menu-user-login .s-user-menu-trigger{
  width: 100%;
  background-color: transparent;
  padding: 1rem;
}
.menu-user-login .s-user-menu-toggler{
  display: flex;
  width: 100%;
  flex-direction: column;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.menu-user-login .s-user-menu-toggler>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.menu-user-login .s-user-menu-toggler>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.menu-user-login .s-user-menu-toggler>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.menu-user-login .s-user-menu-toggler>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.menu-user-login .s-user-menu-toggler>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.menu-user-login .s-user-menu-toggler>.justify-center{order:1}.align-start-logo.store-header .container>.menu-user-login .s-user-menu-toggler>.justify-end{order:3;justify-content:start;width:auto}}
.menu-user-login .s-user-menu-toggler .s-user-menu-dropdown{
  position: static;
  max-height: 0px;
  width: 100%;
  --tw-translate-y: -1.25rem;
  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));
  overflow: hidden;
  opacity: 0;
}
.menu-user-login .s-user-menu-toggler.opened::before{
  display: none;
  --tw-content: "";
  content: var(--tw-content);
}
.index section.s-block.menu-user-login .s-user-menu-toggler.opened::before{display:none}
.menu-user-login .s-user-menu-toggler.opened .s-user-menu-dropdown{
  max-height: 18rem;
  --tw-translate-y: 0px;
  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;
}
[dir="ltr"] .menu-user-login .s-user-menu-trigger-icon{
  margin-left: auto;
}
[dir="rtl"] .menu-user-login .s-user-menu-trigger-icon{
  margin-right: auto;
}
.menu-user-login .s-user-menu-trigger-icon:is(.dark *){
  fill: var(--dark-text-main);
}
.menu-user-login .s-user-menu-trigger-avatar{
  height: 3.5rem;
  width: 3.5rem;
  border-width: 0px;
}
.menu-user-login .s-user-menu-dropdown{
  background-color: transparent;
}
.dark .s-user-menu-dropdown-item-title{color:var(--dark-text-main)}
.store-header .s-user-menu-trigger{
  background-color: transparent;
  padding: 0px;
}
.store-header .s-user-menu-trigger .s-user-menu-avatar-wrap{
  height: 2.25rem;
  width: 2.25rem;
  padding: 0.375rem;
}
.store-header .s-user-menu-trigger img{
  height: 100%;
  width: 100%;
}
.store-header .s-user-menu-toggler .s-user-menu-dropdown{
  border-radius: 0.5rem;
  border-width: 0px;
}
.s-product-card-content-footer.store-header .s-user-menu-toggler .s-user-menu-dropdown button{
  border-radius: 0.5rem;
}
custom-salla-product-card.store-header .s-user-menu-toggler .s-user-menu-dropdown{border-radius:.5rem}
.dark .store-header .s-user-menu-toggler .s-user-menu-dropdown{background-color:var(--dark-bg-main)}
.dark .store-header .s-user-menu-toggler .s-user-menu-dropdown .s-user-menu-dropdown-header-content span{color:var(--dark-text-main)}
.store-header .s-user-menu-toggler .s-user-menu-dropdown .s-user-menu-dropdown-header-content p{
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #414042;
  color: var(--color-primary);font-family:var(--font-main);
}
.s-product-card-content-title.store-header .s-user-menu-toggler .s-user-menu-dropdown .s-user-menu-dropdown-header-content p a{font-family:var(--font-main)}
.s-user-menu-dropdown-header{border:medium none currentColor;border:initial}
.dark.store-header .s-user-menu-dropdown{background-color:var(--dark-bg-main)}
.dropdown__trigger{
  height: 2.5rem;
  width: 2.5rem;
  overflow: hidden;
  border-radius: 9999px;
  font-weight: 500;
}
@media (min-width: 768px){
  .min--2 .dropdown__trigger{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .dropdown__trigger{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .dropdown__trigger{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .dropdown__trigger{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .dropdown__trigger{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .dropdown__trigger{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.dropdown__trigger:focus{
  --tw-ring-offset-color: transparent;
}
.dropdown__trigger.filter{
  height: auto;
  width: auto;
  overflow: visible;
  border-radius: 0px;
}
.s-product-card-content-footer.dropdown__trigger.filter button{
  border-radius: 0px;
}
custom-salla-product-card.dropdown__trigger.filter{border-radius:0;border-radius:initial}
.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), 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-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));
  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), 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);
  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 .3s}
input[type=radio].sr-only:checked~div.dropdown__menu{border-color:var(--color-main)}
.dark .dropdown__menu{background-color:var(--dark-bg-main)}
.dark *.dropdown__menu{
  --tw-border-opacity: 0.2;
}
@media (min-width: 1024px){
  .dropdown__menu{
    width: 15rem;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-top-width: 1px;
  }
}
.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;
}
.dropdown-toggler:before{content:"";background:rgba(113,113,122,.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), 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)}
@media(max-width: 1024px){.dropdown-toggler .dropdown__menu{left:0 !important}.dropdown-toggler .dropdown__menu{position: fixed;bottom: 0px;top: auto;width: 100%;transform-origin: center;--tw-translate-y: 2.5rem;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), 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="ltr"] .product-single .product-form:invalid .p-product:before{
  left: 0.25rem;
}
[dir="rtl"] .product-single .product-form:invalid .p-product:before{
  right: 0.25rem;
}
.product-single .product-form:invalid .p-product:before{
  position: absolute;
  top: 0.25rem;
  display: block;
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgba(239, 68, 68, 1);
  background-color: rgba(239, 68, 68, var(--tw-bg-opacity, 1));
  --tw-content: "";
  content: var(--tw-content);
}
[dir="rtl"] .product-single .product-form:invalid .p-product:before{
  right: 0.25rem;
}
[dir="ltr"] .product-single .product-form:invalid .p-product:before{
  left: 0.25rem;
}
input[type=radio].sr-only div.product-single .product-form:invalid .p-product:before{transition:all .3s}
input[type=radio].sr-only:checked~div.product-single .product-form:invalid .p-product:before{border-color:var(--color-main)}
@media (min-width: 768px){
  .min--2 .product-single .product-form:invalid .p-product:before{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .product-single .product-form:invalid .p-product:before{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .product-single .product-form:invalid .p-product:before{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .product-single .product-form:invalid .p-product:before{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .product-single .product-form:invalid .p-product:before{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .product-single .product-form:invalid .p-product:before{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.product-single .product-form:invalid .p-product:before{animation:flash 2s infinite both}
salla-notification-item{margin-top:0 !important;margin-top:initial !important;margin-bottom:1rem !important;padding:0 !important;padding:initial !important}
.s-notifications-item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  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.25rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
[dir="ltr"] .s-notifications-item > :not([hidden]) ~ :not([hidden]){
  margin-right: calc(1rem * var(--tw-space-s-reverse));
}
[dir="rtl"] .s-notifications-item > :not([hidden]) ~ :not([hidden]){
  margin-left: calc(1rem * var(--tw-space-s-reverse));
}
[dir="ltr"] .s-notifications-item > :not([hidden]) ~ :not([hidden]){
  margin-left: calc(1rem * (1 - var(--tw-space-s-reverse)));
  margin-left: calc(1rem * calc(1 - var(--tw-space-s-reverse)));
}
[dir="rtl"] .s-notifications-item > :not([hidden]) ~ :not([hidden]){
  margin-right: calc(1rem * (1 - var(--tw-space-s-reverse)));
  margin-right: calc(1rem * calc(1 - var(--tw-space-s-reverse)));
}
[dir="ltr"] .s-notifications-item > :not([hidden]) ~ :not([hidden]){
  margin-left: calc(1rem * (1 - var(--tw-space-s-reverse)));
}
[dir="rtl"] .s-notifications-item > :not([hidden]) ~ :not([hidden]){
  margin-right: calc(1rem * (1 - var(--tw-space-s-reverse)));
}
.s-notifications-item > :not([hidden]) ~ :not([hidden]){
  --tw-space-s-reverse: 0;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-notifications-item>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-notifications-item>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-notifications-item>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-notifications-item>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-notifications-item>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-notifications-item>.justify-center{order:1}.align-start-logo.store-header .container>.s-notifications-item>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-footer.s-notifications-item button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-notifications-item{border-radius:.25rem}
.dark .s-notifications-item{color:var(--dark-text-main);background-color:var(--dark-grey)}
.s-notifications-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), 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);
}
.s-notifications-item-read{
  opacity: 0.8;
}
.s-notifications-item-icon{
  height: 3.5rem;
  width: 3.5rem;
  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: 1.25rem;
  line-height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-notifications-item-icon>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-notifications-item-icon>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-notifications-item-icon>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-notifications-item-icon>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-notifications-item-icon>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-notifications-item-icon>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-notifications-item-icon{order:1}.align-start-logo.store-header .container>.s-notifications-item-icon>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-notifications-item-icon{justify-content:center}
@media (min-width: 768px){
  .min--2 .s-notifications-item-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-notifications-item-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-notifications-item-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-notifications-item-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-notifications-item-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-notifications-item-icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.dark .s-notifications-item-icon{color:var(--dark-text-main);background-color:var(--dark-grey)}
.s-notifications h4{
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  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-notifications p{
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media (min-width: 768px){
  .s-notifications p{
    margin-bottom: 0px;
  }
}
.s-table{
  min-width: 100%;
  border-collapse: separate;
}
@media(min-width: 768px){.s-table{
    margin-bottom: -0.75rem;border-spacing:0 20px;
  }}
.s-table thead{
  margin-bottom: 1.25rem;
  display: none;
}
.index section.s-block.s-table thead{display:none}
salla-installment>.s-table thead{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-table thead button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-table thead button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-table thead button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-table thead button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-table thead button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-table thead button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-table thead button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-table thead{border-radius:.75rem}
.dark salla-installment>.s-table thead{color:var(--dark-text-main);background-color:var(--dark-grey)}
.dark .s-table thead{color:#414042;color:var(--color-primary)}
@media (min-width: 768px){
  .s-table thead{
    display: table-header-group;
  }
}
[dir="ltr"] .s-table thead th{
  text-align: left;
}
[dir="rtl"] .s-table thead th{
  text-align: right;
}
.s-table thead th{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
[dir="rtl"] .s-table thead th{
  text-align: right;
}
[dir="ltr"] .s-table thead th{
  text-align: left;
}
[dir="ltr"] .s-table thead th:last-child{
  text-align: right;
}
[dir="rtl"] .s-table thead th:last-child{
  text-align: left;
}
[dir="rtl"] .s-table thead th:last-child{
  text-align: left;
}
[dir="ltr"] .s-table thead th:last-child{
  text-align: right;
}
.s-table tbody tr{
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  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: 0.5rem;
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-table tbody tr>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-table tbody tr>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-table tbody tr>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-table tbody tr>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-table tbody tr>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-table tbody tr>.justify-center{order:1}.align-start-logo.store-header .container>.s-table tbody tr>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-footer.s-table tbody tr button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-table tbody tr{border-radius:.25rem}
.dark .s-table tbody tr{background-color:var(--dark-grey)}
.s-table tbody tr: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), 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: 768px){
  .s-table tbody tr{
    display: table-row;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 0px;
  }
}
@media (max-width: 767px){
  .s-table tbody tr{
    margin-bottom: 1rem;
  }
}
.s-table tbody tr td{
  width: 100%;
  white-space: nowrap;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.s-table tbody tr td:first-child{
  font-weight: 700;
}
@media (min-width: 768px){
  .s-table tbody tr td{
    height: 5rem;
    width: auto;
  }
  [dir="ltr"] .s-table tbody tr td:first-child{
    border-top-left-radius: 0.375rem;
  }
  [dir="rtl"] .s-table tbody tr td:first-child{
    border-top-right-radius: 0.375rem;
  }
  [dir="ltr"] .s-table tbody tr td:first-child{
    border-bottom-left-radius: 0.375rem;
  }
  [dir="rtl"] .s-table tbody tr td:first-child{
    border-bottom-right-radius: 0.375rem;
  }
  [dir="ltr"] .s-table tbody tr td:first-child{
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }
  [dir="rtl"] .s-table tbody tr td:first-child{
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }
  [dir="ltr"] .s-table tbody tr td:last-child{
    text-align: right;
  }
  [dir="rtl"] .s-table tbody tr td:last-child{
    text-align: left;
  }
  [dir="rtl"] .s-table tbody tr td:last-child{
    text-align: left;
  }
  [dir="ltr"] .s-table tbody tr td:last-child{
    text-align: right;
  }
}
.s-table tbody tr td>div{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-table tbody tr td>div>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-table tbody tr td>div>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-table tbody tr td>div>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-table tbody tr td>div>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-table tbody tr td>div>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-table tbody tr td>div>.justify-center{order:1}.align-start-logo.store-header .container>.s-table tbody tr td>div>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .s-table tbody tr td>div{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.s-table tbody tr .mobile-title{
  display: inline-block;
  width: 8rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
}
.dark .s-table tbody tr .mobile-title{color:var(--dark-text-sec)}
@media (min-width: 768px){
  .s-table tbody tr .mobile-title{
    display: none;
  }
}
[dir="ltr"] .s-table tbody tr a{
  left: 0px;
}
[dir="rtl"] .s-table tbody tr a{
  right: 0px;
}
.s-table tbody tr a{
  position: absolute;
  top: 0px;
  bottom: 0px;
  display: block;
  width: 100%;
}
[dir="rtl"] .s-table tbody tr a{
  right: 0px;
}
[dir="ltr"] .s-table tbody tr a{
  left: 0px;
}
input[type=radio].sr-only div.s-table tbody tr a{transition:all .3s}
input[type=radio].sr-only:checked~div.s-table tbody tr a{border-color:var(--color-main)}
.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;
}
.s-product-card-entry.tag{
  border-radius: 1rem;
}
.s-product-card-content-footer.tag button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 .s-product-card-content-footer.tag button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-product-card-content-footer.tag button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-product-card-content-footer.tag button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-product-card-content-footer.tag button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-product-card-content-footer.tag button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-product-card-content-footer.tag button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-card.tag{border-radius:1rem}
.tag--primary{
  border-color: #414042;
  border-color: var(--color-primary);
  color: #414042;
  color: var(--color-primary);
}
.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);
}
.s-product-card-content-footer.rating-header button{
  border-radius: 0.375rem;
}
custom-salla-product-card.rating-header{border-radius:.25rem}
.thankyou-block{
  margin-bottom: 1.5rem;
  flex: 1 1 0%;
  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: 2rem;
  transition-duration: 500ms;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.thankyou-block>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.thankyou-block>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.thankyou-block>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.thankyou-block>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.thankyou-block>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.thankyou-block>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.thankyou-block{order:1}.align-start-logo.store-header .container>.thankyou-block>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.thankyou-block{justify-content:center}
.s-product-card-content-footer.thankyou-block button{
  border-radius: 0.375rem;
}
custom-salla-product-card.thankyou-block{border-radius:.25rem}
.dark .thankyou-block{background-color:var(--dark-grey)}
.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), 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: 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;
  height: 4rem;
  width: 4rem;
  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));
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.thankyou-block.sent>.justify-start:before{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.thankyou-block.sent>.justify-start:before{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.thankyou-block.sent>.justify-start:before{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.thankyou-block.sent>.justify-start:before{margin-right:auto;
  }.align-start-logo.store-header .container>.thankyou-block.sent>.justify-start:before{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.thankyou-block.sent>.justify-center:before{order:1}.align-start-logo.store-header .container>.flex>.thankyou-block.sent:before{order:1}.align-start-logo.store-header .container>.thankyou-block.sent>.justify-end:before{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.thankyou-block.sent:before{justify-content:center}
@media (min-width: 768px){
  .min--2 .thankyou-block.sent:before{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .thankyou-block.sent:before{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .thankyou-block.sent:before{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .thankyou-block.sent:before{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .thankyou-block.sent:before{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .thankyou-block.sent:before{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.thankyou-block.sent:before{content:"";font-family:"sallaicons"}
.form--user-profile input,.form--user-profile select{
  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));
}
.dark .form--user-profile input,.dark .form--user-profile select{background-color:var(--dark-grey)}
.form--user-profile input:focus,.form--user-profile select:focus{
  border-color: #414042;
  border-color: var(--color-primary);
}
.dark .s-user-settings-wrapper svg{fill:var(--dark-text-main)}
.s-user-settings-section-title{font-family:var(--font-main);
}
.s-product-card-content-title.s-user-settings-section-title a{font-family:var(--font-main)}
.dark .s-user-settings-section-title{color:#414042;color:var(--color-primary)}
.dark .s-user-settings-section-subtitle{color:var(--dark-text-main)}
li.blog-cat>a.active{
  color: #414042;
  color: var(--color-primary);font-family:var(--font-main);
}
li.s-product-card-content-title.blog-cat>a.active a{font-family:var(--font-main)}
.blog-articles .blog-article{
  width: 100%;
}
@media (min-width: 768px){.blog-articles .blog-article{width:calc(50% - 1.5rem)}}
.digital-content-btn{
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgba(22, 163, 74, 1);
  background-color: rgba(22, 163, 74, var(--tw-bg-opacity, 1));
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
@media (min-width: 768px){
  .min--2 .digital-content-btn{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .digital-content-btn{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .digital-content-btn{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .digital-content-btn{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .digital-content-btn{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .digital-content-btn{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.digital-content-btn{animation:1s tada linear;animation-delay:1.5s}
.s-block{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
@media (min-width: 640px){
  .s-block{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.s-block__title{
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-block__title>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-block__title>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-block__title>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-block__title>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-block__title>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-block__title>.justify-center{order:1}.align-start-logo.store-header .container>.s-block__title>.justify-end{order:3;justify-content:start;width:auto}}
.dark .s-block__title{color:#414042;color:var(--color-primary)}
@media (min-width: 768px){
  .s-block__title{
    margin-bottom: 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: 1;
}
@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 * var(--tw-space-x-reverse));
  margin-left: calc(0.625rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse)));
}
.index section.s-block.s-block__title-nav{display:none}
@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;
}
.dark .s-block--special-product .timer.product li{background-color:var(--dark-bg-main)}
.s-block.dark{background-color:var(--dark-grey)}
.s-block.has-bg,.s-block .has-bg{
  background-size: cover;
  background-position: center;
}
.s-block--hero-slider{
  padding-top: 0px;
  padding-bottom: 0px;
}
.s-block--hero-slider.full-nav .s-slider-block__title-nav{
  height: 100%;
  width: 100%;
}
.s-block--hero-slider.full-nav .s-slider-block__title-nav button{
  height: 100%;
  width: 5rem;
}
@media (max-width: 767px){.s-block--hero-slider.responsive-video .video-swiper{
    position: relative;
    height: 528px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-block--hero-slider.responsive-video .video-swiper>.justify-start{margin-right:0;
    }[dir="rtl"] .align-start-logo.store-header .container>.s-block--hero-slider.responsive-video .video-swiper>.justify-start{margin-left:0;
    }[dir="ltr"] .align-start-logo.store-header .container>.s-block--hero-slider.responsive-video .video-swiper>.justify-start{margin-left:auto;
    }[dir="rtl"] .align-start-logo.store-header .container>.s-block--hero-slider.responsive-video .video-swiper>.justify-start{margin-right:auto;
    }.align-start-logo.store-header .container>.s-block--hero-slider.responsive-video .video-swiper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-block--hero-slider.responsive-video .video-swiper>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-block--hero-slider.responsive-video .video-swiper{order:1}.align-start-logo.store-header .container>.s-block--hero-slider.responsive-video .video-swiper>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-block--hero-slider.responsive-video .video-swiper{justify-content:center}.s-block--hero-slider.responsive-video .video-swiper video{
    height: 100%;
    width: auto;
    max-width: none;
  }}
.s-block--hero-slider .round .swiper{
  border-radius: 0.375rem;
}
.s-product-card-content-footer.s-block--hero-slider .round .swiper button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-block--hero-slider .round .swiper{border-radius:.25rem}
.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, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  --tw-content: "";
  content: var(--tw-content);
}
input[type=radio].sr-only div.s-block--hero-slider .swiper-slide .swiper-lazy:after{transition:all .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:not(.swiper-slide-active) .angel_animated__,.s-block--hero-slider .swiper-slide:not(.swiper-slide-active) .angel___{animation-name:none}
[dir="ltr"] .s-block--hero-slider .angel-typing-cursor{margin-left:-0.3rem;
}
[dir="rtl"] .s-block--hero-slider .angel-typing-cursor{margin-right:-0.3rem;
}
.s-block--hero-slider .angel-typing-cursor{width:2px;animation:blink 1s infinite}
.s-block--hero-slider .angel-typing-cursor.typing{animation:none}
.angel_animated__,.angel___{animation-duration:.7s;animation-timing-function:ease-in;animation-fill-mode:backwards;animation-iteration-count:none}
.angel_animated__.hero-slider-title,.angel___.hero-slider-title{animation-delay:.3s}
.angel_animated__.hero-slider-subtitle,.angel___.hero-slider-subtitle{animation-delay:.6s}
.angel_animated__.hero-slider-btn,.angel___.hero-slider-btn{animation-delay:.9s}
.angel_animated__.delay_1,.angel___.delay_1,.animate__.delay_1{animation-delay:.5s !important}
.angel_animated__.delay_2,.angel___.delay_2,.animate__.delay_2{animation-delay:.6s !important}
.angel_animated__.delay_3,.angel___.delay_3,.animate__.delay_3{animation-delay:.7s !important}
.angel_animated__.delay_4,.angel___.delay_4,.animate__.delay_4{animation-delay:.8s !important}
.angel_animated__.delay_5,.angel___.delay_5,.animate__.delay_5{animation-delay:.9s !important}
.angel_animated__.delayx1,.angel___.delayx1,.animate__.delayx1{animation-delay:1s !important}
.angel_animated__.delayx2,.angel___.delayx2,.animate__.delayx2{animation-delay:2s !important}
.angel_animated__.delayx3,.angel___.delayx3,.animate__.delayx3{animation-delay:3s !important}
.angel_animated__.delayx4,.angel___.delayx4,.animate__.delayx4{animation-delay:4s !important}
.angel_animated__.delayx5,.angel___.delayx5,.animate__.delayx5{animation-delay:5s !important}
.angel_animated__.slowx1,.angel___.slowx1,.animate__.slowx1{animation-duration:1s !important}
.angel_animated__.slowx2,.angel___.slowx2,.animate__.slowx2{animation-duration:1.5s !important}
.angel_animated__.slowx3,.angel___.slowx3,.animate__.slowx3{animation-duration:2s !important}
.angel_animated__.infinite,.angel___.infinite,.animate__.infinite{animation-iteration-count:infinite !important}
.angel_animated__.infinite:hover,.angel___.infinite:hover,.animate__.infinite:hover{animation-play-state:paused}
@media screen and (min-width: 768px){.banner:hover .banner__title{animation:toTopFromBottom .9s}.banner:hover .banner__description{animation:delayKeyframe .3s,toTopFromBottom .9s .3s}}
.banner--fixed img{
  display: block;
  width: 100%;
  border-radius: 0.375rem;
  border-style: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.s-product-card-content-footer.banner--fixed img button{
  border-radius: 0.375rem;
}
custom-salla-product-card.banner--fixed img{border-radius:.25rem}
.banner--fixed img:not(.loaded){
  height: 7rem;
}
@media (min-width: 640px){
  .banner--fixed img:not(.loaded){
    height: 12rem;
  }
}
.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));
}
.s-product-card-content-footer.banner-entry button{
  border-radius: 0.375rem;
}
custom-salla-product-card.banner-entry{border-radius:.25rem}
.dark .banner-entry{background-color:var(--dark-bg-main)}
@media (min-width: 480px){
  .banner-entry{
    padding: 1rem;
  }
}
.banner-entry h3{
  line-height: 1.5rem;
}
.banner-entry a{
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.banner-entry a>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.banner-entry a>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.banner-entry a>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.banner-entry a>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.banner-entry a>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.banner-entry a>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.banner-entry a{order:1}.align-start-logo.store-header .container>.banner-entry a>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.banner-entry a{justify-content:center}
.banner-entry a:hover{
  opacity: 1;
}
@media (min-width: 768px){
  .banner-entry a{
    opacity: 0;
  }
}
@media (min-width: 480px){
  .banner-entry a{
    padding: 1.5rem;
  }
}
@media(max-width: 480px){.s-block--banners .two-row{grid-template-columns:1fr 1fr}.s-block--banners .two-row .banner-entry{height:100px}.s-block--banners .two-row .banner-entry h3{font-size:.875rem}}
.s-block--banners .banner-square h3{
  margin-top: 0.375rem;
}
.dark .s-block--banners .banner-square h3{color:#414042;color:var(--color-primary)}
.s-block--banners .banner-square p{
  line-height: 1.5;
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, 1);
  color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}
.dark .s-block--banners .banner-square p{color:var(--dark-text-sec)}
.s-block--banners .on-text{top:50%;left:50%;transform:translate(-50%, -50%)}
[dir=rtl] .s-block.p-left .swiper{padding-left:5px !important}
[dir=ltr] .s-block.p-left .swiper{padding-right:5px !important}
@media (min-width: 768px){.s-block.angel-products.p-left .swiper{padding-right:0px !important;padding-left:0px !important}}
.grid-cols-5{grid-template-columns:repeat(5, minmax(0, 1fr))}
.grid-cols-6{grid-template-columns:repeat(6, minmax(0, 1fr))}
.padded-squares .banner-square{
  padding: 0.25rem;
}
@media (min-width: 768px){
  .padded-squares .banner-square{
    padding: 0.75rem;
  }
  .padded-squares .container{
    max-width: 64rem;
  }
}
.max--1{
  height: auto;
  width: 100%;
  max-width: 100%;
}
.max--2{
  height: auto;
  width: 50%;
  max-width: 50%;
}
.max--3{
  height: auto;
  width: 33.333333%;
  max-width: 33.3333%;
}
.max--4{
  height: auto;
  width: 25%;
  max-width: 25%;
}
.max--5{
  height: auto;
  width: 20%;
  max-width: 20%;
}
.max--6{
  height: auto;
  width: 16.666667%;
  max-width: 16.6667%;
}
@media (min-width: 768px){
  .min--2{
    width: 50%;
    max-width: 50%;
  }
  .min--2 .rounded-full{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3{
    width: 33.333333%;
    max-width: 33.3333%;
  }
  .min--3 .rounded-full{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4{
    width: 25%;
    max-width: 25%;
  }
  .min--4 .rounded-full{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5{
    width: 20%;
    max-width: 20%;
  }
  .min--5 .rounded-full{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6{
    width: 16.666667%;
    max-width: 16.6667%;
  }
  .min--6 .rounded-full{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--7{
    width: 14.2857%;
    max-width: 14.2857%;
  }
  .min--8{
    width: 12.5%;
    max-width: 12.5%;
  }
  .min--10{
    width: 10%;
    max-width: 10%;
  }
  .min--10 .rounded-full{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.has-overlay:after{
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  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: var(--tw-content);
}
input[type=radio].sr-only div.has-overlay:after{transition:all .3s}
input[type=radio].sr-only:checked~div.has-overlay:after{border-color:var(--color-main)}
.has-overlay-sm:after{
  background-color: rgba(0, 0, 0, 0.2);
}
.has-overlay.with-hover:after{transition:opacity .3s;opacity:0}
.has-overlay.with-hover:hover:after{opacity:1}
.has-overlay:hover:after{
  background-color: rgba(0, 0, 0, 0.5);
}
.full-banner-entry{
  position: relative;
  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;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.full-banner-entry.nav-header{
  background-repeat: repeat-y;background-size:100% auto;
}
@media (max-width: 767px){.full-banner-entry.nav-header{
    background-size: cover;
    background-repeat: no-repeat;
  }}
.tabs{
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  overflow-x: scroll;-ms-overflow-style:none;scrollbar-width:none;overflow-y:scroll;
}
.tabs::-webkit-scrollbar{display:none}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.tabs>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.tabs>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.tabs>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.tabs>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.tabs>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.tabs>.justify-center{order:1}.align-start-logo.store-header .container>.tabs>.justify-end{order:3;justify-content:start;width:auto}}
.tabs{overflow-y:hidden !important}
.tabs .tab-trigger{
  cursor: pointer;
  gap: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.tabs .tab-trigger *{pointer-events:none}
.tabs .tab-trigger{
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.tabs .tab-trigger>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.tabs .tab-trigger>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.tabs .tab-trigger>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.tabs .tab-trigger>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.tabs .tab-trigger>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.tabs .tab-trigger>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.tabs .tab-trigger{order:1}.align-start-logo.store-header .container>.tabs .tab-trigger>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.tabs .tab-trigger{justify-content:center}
@media (min-width: 768px){
  .tabs .tab-trigger{
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.tabs .tab-trigger.is-active{
  --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(0, 0, 0, 1);
  color: rgba(0, 0, 0, var(--tw-text-opacity, 1));
}
.dark .tabs .tab-trigger.is-active{color:var(--dark-text-main);background-color:var(--dark-grey)}
.tabs .tab-trigger i{
  height: -moz-max-content;
  height: max-content;
}
.tabs .tab-trigger span{
  white-space: nowrap;
}
.tabs__product .tab-trigger{
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  background-color: #414042;
  background-color: var(--color-primary);
  padding: 0.5rem;color:var(--text-btn);
}
.tabs__outline .tab-trigger{
  border-radius: 9999px;
  border-width: 2px;
  border-color: #414042;
  border-color: var(--color-primary);
  padding: 0.75rem;
}
@media (min-width: 768px){
  .min--2 .tabs__outline .tab-trigger{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .tabs__outline .tab-trigger{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .tabs__outline .tab-trigger{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .tabs__outline .tab-trigger{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .tabs__outline .tab-trigger{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .tabs__outline .tab-trigger{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.dark .tabs__outline .tab-trigger{color:var(--dark-text-main);background-color:var(--dark-bg-main)}
.tabs__outline .tab-trigger.is-active{background-color:#414042 !important;background-color:var(--color-primary) !important;color:var(--text-btn) !important}
.tabs__flex{
  align-items: center;
}
@media (min-width: 768px){
  .tabs__flex{
    justify-content: center;
  }
}
.tabs__flex .tab-trigger{
  border-radius: 0.375rem;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.s-product-card-content-footer.tabs__flex .tab-trigger button{
  border-radius: 0.375rem;
}
custom-salla-product-card.tabs__flex .tab-trigger{border-radius:.25rem}
.dark .tabs__flex .tab-trigger{background-color:var(--dark-bg-main)}
.tabs-wrapper{
  min-height: 5rem;
  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));
}
.s-product-card-content-footer.tabs-wrapper button{
  border-radius: 0.375rem;
}
custom-salla-product-card.tabs-wrapper{border-radius:.25rem}
.dark .tabs-wrapper{background-color:var(--dark-grey)}
.tabs-wrapper .tabs__item{
  display: none;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.index section.s-block.tabs-wrapper .tabs__item{display:none}
.tabs-wrapper .tabs__item.is-active{
  display: block;
}
[dir="ltr"] .tabs-wrapper__products{
  border-top-left-radius: 0px;
}
[dir="rtl"] .tabs-wrapper__products{
  border-top-right-radius: 0px;
}
.s-block--slider-with-bg .slider-bg{
  height: 15rem;
}
@media (min-width: 768px){
  .s-block--slider-with-bg .slider-bg{
    height: 24rem;
  }
}
.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 .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;
}
.index section.s-block.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-items: end;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-block--slider-with-bg .s-slider-block__title-left>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-block--slider-with-bg .s-slider-block__title-left>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-block--slider-with-bg .s-slider-block__title-left>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-block--slider-with-bg .s-slider-block__title-left>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-block--slider-with-bg .s-slider-block__title-left>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-block--slider-with-bg .s-slider-block__title-left>.justify-center{order:1}.align-start-logo.store-header .container>.s-block--slider-with-bg .s-slider-block__title-left>.justify-end{order:3;justify-content:start;width:auto}}
.s-slider-block__display-all,.s-block__display-all{
  display: flex;
  width: -moz-max-content;
  width: max-content;
  flex-shrink: 0;
  flex-direction: column;
  gap: 0.25rem;
  border-radius: 0.375rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: inherit;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-slider-block__display-all>.justify-start,[dir="ltr"] .align-start-logo.store-header .container>.s-block__display-all>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-slider-block__display-all>.justify-start,[dir="rtl"] .align-start-logo.store-header .container>.s-block__display-all>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-slider-block__display-all>.justify-start,[dir="ltr"] .align-start-logo.store-header .container>.s-block__display-all>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-slider-block__display-all>.justify-start,[dir="rtl"] .align-start-logo.store-header .container>.s-block__display-all>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-slider-block__display-all>.justify-start,.align-start-logo.store-header .container>.s-block__display-all>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-slider-block__display-all>.justify-center,.align-start-logo.store-header .container>.s-block__display-all>.justify-center{order:1}.align-start-logo.store-header .container>.s-slider-block__display-all>.justify-end,.align-start-logo.store-header .container>.s-block__display-all>.justify-end{order:3;justify-content:start;width:auto}}
.s-slider-block__display-all::after,.s-block__display-all::after{
  display: block;
  height: 3px;
  width: 50%;
  border-radius: 9999px;
  background-color: #414042;
  background-color: var(--color-primary);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  --tw-content: "";
  content: var(--tw-content);
}
@media (min-width: 768px){
  .min--2 .s-slider-block__display-all::after,.min--2 .s-block__display-all::after{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-slider-block__display-all::after,.min--3 .s-block__display-all::after{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-slider-block__display-all::after,.min--4 .s-block__display-all::after{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-slider-block__display-all::after,.min--5 .s-block__display-all::after{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-slider-block__display-all::after,.min--6 .s-block__display-all::after{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-slider-block__display-all::after,.min--10 .s-block__display-all::after{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-slider-block__display-all:hover::after,.s-block__display-all:hover::after{
  width: 100%;
}
.s-product-card-content-footer.s-slider-block__display-all button,.s-product-card-content-footer.s-block__display-all button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-slider-block__display-all,custom-salla-product-card.s-block__display-all{border-radius:.25rem}
.dark .s-slider-block__display-all,.dark .s-block__display-all{color:var(--dark-text-main)}
.s-slider-block__display-all.divider-url.center:after,.s-block__display-all.divider-url.center:after{
  margin-left: auto;
  margin-right: auto;
}
.slide--cat-entry{
  height: 6rem;
  flex-direction: column;
  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));
  text-align: center;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.slide--cat-entry>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.slide--cat-entry>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.slide--cat-entry>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.slide--cat-entry>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.slide--cat-entry>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.slide--cat-entry>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.slide--cat-entry{order:1}.align-start-logo.store-header .container>.slide--cat-entry>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.slide--cat-entry{justify-content:center}
.s-product-card-content-footer.slide--cat-entry button{
  border-radius: 0.375rem;
}
custom-salla-product-card.slide--cat-entry{border-radius:.25rem}
.dark .slide--cat-entry{color:var(--dark-text-main);background-color:var(--dark-grey)}
.slide--cat-entry:hover{
  color: #414042;
  color: var(--color-primary);
  --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), 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: 768px){
  .slide--cat-entry{
    height: 9rem;
  }
}
.slide--cat-entry i{
  margin-bottom: 0.5rem;
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #414042;
  color: var(--color-primary);
}
@media (min-width: 768px){
  .slide--cat-entry i{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.slide--cat-entry h4{
  font-size: 0.75rem;
  line-height: 1rem;
}
.dark .slide--cat-entry h4{color:var(--dark-text-sec)}
@media (min-width: 768px){
  .slide--cat-entry h4{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.slide--offer-entry{
  display: flex;
  height: 9rem;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  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));
  --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, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.slide--offer-entry>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.slide--offer-entry>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.slide--offer-entry>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.slide--offer-entry>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.slide--offer-entry>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.slide--offer-entry>.justify-center{order:1}.align-start-logo.store-header .container>.slide--offer-entry>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-footer.slide--offer-entry button{
  border-radius: 0.375rem;
}
custom-salla-product-card.slide--offer-entry{border-radius:.25rem}
.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), 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);
}
.dark *.slide--offer-entry{
  --tw-border-opacity: 0.2;
}
.s-block--full-bg:first-of-type{
  margin-top: 0px;
}
.s-block--full-bg+.merge-with-top-component{
  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-block--categories__title{color:#fff !important}
.s-block--full-bg+.merge-with-top-component .s-block--categories__title{text-align: center}
@media (min-width: 640px){
  [dir="ltr"] .s-block--full-bg+.merge-with-top-component .s-block--categories__title{
    text-align: left;
  }
  [dir="rtl"] .s-block--full-bg+.merge-with-top-component .s-block--categories__title{
    text-align: right;
  }
  .s-block--full-bg+.merge-with-top-component .s-block--categories__title{
    margin-bottom: 0.5rem;
  }
  [dir="rtl"] .s-block--full-bg+.merge-with-top-component .s-block--categories__title{
    text-align: right;
  }
  [dir="ltr"] .s-block--full-bg+.merge-with-top-component .s-block--categories__title{
    text-align: left;
  }
}
.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;
  }
}
.underlined::after{
  display: block;
  height: 3px;
  width: 50%;
  border-radius: 9999px;
  background-color: #414042;
  background-color: var(--color-primary);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  --tw-content: "";
  content: var(--tw-content);
}
@media (min-width: 768px){
  .min--2 .underlined::after{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .underlined::after{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .underlined::after{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .underlined::after{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .underlined::after{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .underlined::after{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.underlined:hover::after{
  width: 100%;
}
.angel-feature:hover i,.p--features__item:hover i{animation:toRightFromLeft .3s forwards}
.s-block--faqs .faqs-list input:checked+div{
  border-color: #414042;
  border-color: var(--color-primary);
}
.s-block--faqs .faqs-list input:checked+div label{
  color: #414042;
  color: var(--color-primary);
}
.s-block--faqs .faqs-list input:checked+div .open-badge{background-color:#414042 !important;background-color:var(--color-primary) !important;
}
.s-block--faqs .faqs-list input:checked+div .open-badge{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.s-block--faqs .faqs-list input:checked+div .open-badge::before{
  --tw-content: "";
  content: var(--tw-content);
}
.s-block--faqs .faqs-list input:checked+div .faq-answer{
  max-height: 20rem;
  --tw-translate-y: 0px;
  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;
}
[dir="ltr"] .angel-stories .story{margin-right:.5rem !important;
}
[dir="rtl"] .angel-stories .story{margin-left:.5rem !important;
}
.angel-stories .story{margin:0 !important;margin:initial !important}
.angel-stories .info{
  font-size: 0.75rem;
  line-height: 1rem;
}
.dark .angel-stories .info{color:var(--dark-text-main)}
#zuck-modal{-webkit-backdrop-filter:blur(30px);backdrop-filter:blur(30px)}
#zuck-modal .story-viewer .time{display:none !important}
#zuck-modal .story-viewer .close{display:block !important}
#zuck-modal .story-viewer .item-preview{height:50px !important;width:50px !important}
#zuck-modal .story-viewer .item{background:hsla(0,0%,100%,0) !important}
#zuck-modal .story-viewer .item .tip.link{background-color:#414042 !important;background-color:var(--color-primary) !important;font-family:var(--font-main) !important}
#zuck-modal .story-viewer .item img.media{-o-object-fit:contain !important;object-fit:contain !important}
#zuck-modal.rtl.with-effects{transform-origin:top center}
.dark .story>.item-link>.item-preview>img{border-color:var(--dark-grey) !important}
.s-block+.s-angel--divider.no-margin-top{padding-bottom:0 !important;padding-bottom:initial !important}
.s-angel--divider.no-margin-bottom+.s-block{padding-top:0 !important;padding-top:initial !important}
.s-angel--divider.no-margin-bottom+.s-block{z-index:1}
.s-angel--divider .divider-url{
  padding-top: 0px;
}
.s-angel--divider.no-margin-bottom,.s-angel--divider.no-margin-top{padding:0 !important;padding:initial !important}
.s-angel--divider.merge-bottom+.s-design-invisible-dom+footer{margin-top:0 !important}
.s-angel--divider.merge-bottom+.s-block{background-color:transparent !important;background-color:initial !important;margin-top:0 !important;margin-top:initial !important;padding-top:0 !important;padding-top:initial !important}
.s-angel--divider.merge-bottom+.s-block.dark{background-color:var(--dark-grey) !important}
.s-angel--divider.merge-bottom+.s-block .s-block__title,.s-angel--divider.merge-bottom+.s-block .s-slider-block__title{display:none !important}
.s-angel--divider.merge-bottom+.s-block .s-block__title,.s-angel--divider.merge-bottom+.s-block .s-slider-block__title{visibility:hidden}
.s-angel--divider.xl-title{
  gap: 0.5rem;
}
.s-angel--divider.xl-title img{
  max-height: 5rem;
}
.s-angel--divider.xl-title i{
  font-size: 1.875rem;
  line-height: 2.25rem;
}
@media (min-width: 768px){
  .s-angel--divider.xl-title i{
    font-size: 3rem;
    line-height: 1;
  }
}
.s-angel--divider.xl-title h2{
  font-size: 1.5rem;
  line-height: 2rem;
}
@media (min-width: 768px){
  .s-angel--divider.xl-title h2{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
.s-angel--divider.xl-title p{
  font-size: 1rem;
  line-height: 1.5rem;
}
@media (min-width: 768px){
  .s-angel--divider.xl-title p{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
.s-angel--divider.xl-title .divider-url{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media (min-width: 768px){
  .s-angel--divider.xl-title .divider-url{
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.s-angel--divider.xl-title lord-icon{
  height: 5rem;
  width: 5rem;
}
@media (min-width: 768px){
  .s-angel--divider.xl-title lord-icon{
    height: 6rem;
    width: 6rem;
  }
}
.s-angel-maps iframe{
  height: 15rem;
  border-width: 0px;
}
@media (min-width: 768px){
  .s-angel-maps iframe{
    height: 28rem;
  }
}
.angel-ad{
  position: relative;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
@media (min-width: 768px){
  .angel-ad{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.angel-ad__container{
  overflow: hidden;
}
.angel-ad__slider{
  display: flex;
  --tw-translate-x: 0px;
  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));
  gap: 1rem;
  white-space: nowrap;
  will-change: transform;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.angel-ad__slider>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.angel-ad__slider>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.angel-ad__slider>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.angel-ad__slider>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.angel-ad__slider>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.angel-ad__slider>.justify-center{order:1}.align-start-logo.store-header .container>.angel-ad__slider>.justify-end{order:3;justify-content:start;width:auto}}
.angel-ad__slider{animation:marquee linear infinite}
.angel-ad.ltr-marquee .angel-ad__slider{animation:marqueeltr linear infinite}
[dir="ltr"] .angel-ad__item{
  margin-right: 0.25rem;
}
[dir="rtl"] .angel-ad__item{
  margin-left: 0.25rem;
}
.angel-ad__item{
  gap: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.angel-ad__item>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.angel-ad__item>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.angel-ad__item>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.angel-ad__item>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.angel-ad__item>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.angel-ad__item>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.angel-ad__item{order:1}.align-start-logo.store-header .container>.angel-ad__item>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.angel-ad__item{justify-content:center}
@media (min-width: 768px){
  [dir="ltr"] .angel-ad__item{
    margin-right: 0.5rem;
  }
  [dir="rtl"] .angel-ad__item{
    margin-left: 0.5rem;
  }
}
.angel-ad__img{
  height: 1.5rem;
  width: auto;
}
.angel-ad__content:hover{
  color: #414042;
  color: var(--color-primary);
}
.angel-ad:hover .angel-ad__slider{animation-play-state:paused}
.angelmodal{
  pointer-events: none;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 9999;
  height: 100%;
  width: 100%;
}
.angelmodal__overlay{
  pointer-events: auto;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 100%;
  width: 100%;
  opacity: 0;-webkit-backdrop-filter:blur(35px);backdrop-filter:blur(35px);background:hsla(0,0%,100%,.3);transition:opacity .5s cubic-bezier(0.4, 0, 0.6, 1) 80ms,visibility .5s step-end 80ms;
}
.angelmodal__container{
  pointer-events: auto;
  position: relative;
  margin: 1.5rem;
  height: auto;
  --tw-translate-y: -2rem;
  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));
  overflow: hidden;
  opacity: 0;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
@media (min-width: 768px){
  .angelmodal__container{
    margin: 4rem;
  }
}
.angelmodal__container>div{
  margin-bottom: 1rem;
  border-radius: 0.375rem;
  padding: 1rem;
}
.s-product-card-content-footer.angelmodal__container>div button{
  border-radius: 0.375rem;
}
custom-salla-product-card.angelmodal__container>div{border-radius:.25rem}
@media (min-width: 768px){
  .angelmodal__container>div{
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.angelmodal__container>div{background:hsla(0,0%,100%,.1)}
.angelmodal__container>.angel-search-block{background:transparent none repeat 0 0 / auto auto padding-box border-box scroll !important;background:initial !important;
}
.angelmodal__container>.angel-search-block{
  background-image: none;
  padding: 0px;
}
.angelmodal__container_search{
  margin-top: 3rem;
  height: 75%;-ms-overflow-style:none;scrollbar-width:none;overflow-y:scroll;
}
.angelmodal__container_search::-webkit-scrollbar{display:none}
.angelmodal__content{
  height: auto;
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}
.angelmodal__content .square-grid{max-height:33rem}
@media (min-width: 768px){.angelmodal__content .square-grid{max-height:40rem}}
[dir="ltr"] .angelmodal__close{
  right: 1rem;
}
[dir="rtl"] .angelmodal__close{
  left: 1rem;
}
.angelmodal__close{
  pointer-events: auto;
  position: absolute;
  top: 1rem;
  z-index: 99999;
  display: flex;
  height: 2rem;
  width: 2rem;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
[dir="rtl"] .angelmodal__close{
  left: 1rem;
}
[dir="ltr"] .angelmodal__close{
  right: 1rem;
}
input[type=radio].sr-only div.angelmodal__close{transition:all .3s}
input[type=radio].sr-only:checked~div.angelmodal__close{border-color:var(--color-main)}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.angelmodal__close>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.angelmodal__close>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.angelmodal__close>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.angelmodal__close>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.angelmodal__close>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.angelmodal__close>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.angelmodal__close{order:1}.align-start-logo.store-header .container>.angelmodal__close>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.angelmodal__close{justify-content:center}
.angelmodal__close:after,.angelmodal__close:before{
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  margin-top: 1rem;
  height: 2px;
  width: 2rem;
  --tw-rotate: 45deg;
  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));
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  --tw-content: "";
  content: var(--tw-content);
}
input[type=radio].sr-only div.angelmodal__close:after,input[type=radio].sr-only div.angelmodal__close:before{transition:all .3s}
input[type=radio].sr-only:checked~div.angelmodal__close:after,input[type=radio].sr-only:checked~div.angelmodal__close:before{border-color:var(--color-main)}
.angelmodal__close:before{
  --tw-rotate: -45deg;
  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));
}
.angelmodal__close:hover:after,.angelmodal__close:hover:before{
  --tw-rotate: 0deg;
  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-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.angelmodal-is-open{
  overflow: hidden;
}
.angelmodal-is-open .angelmodal__overlay{opacity:1;transition:opacity .5s cubic-bezier(0.4, 0, 0.6, 1) 80ms,visibility .5s step-end 80ms}
.angelmodal-is-open .angelmodal__container{
  --tw-translate-y: 0px;
  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;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.angelmodal-is-open .angelmodal__close{
  opacity: 1;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
.dark .angelmodal__overlay{background:rgba(0,0,0,.6)}
.centered-title .s-block__title{
  text-align: center;
}
.centered-title .s-block__title.divider-title{
  margin: 0px;
}
.is_flying .flying-obj{animation:flying 3s ease-in-out infinite}
.is_spinning .spinning-obj{animation:spin 3s linear infinite}
[dir=ltr] .ar-only{display:none !important}
[dir=rtl] .en-only{display:none !important}
.faq-container:hover .faq-item{background-color:#414042 !important;background-color:var(--color-primary) !important}
.box-img{
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.box-img>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.box-img>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.box-img>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.box-img>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.box-img>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.box-img>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.box-img{order:1}.align-start-logo.store-header .container>.box-img>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.box-img{justify-content:center}
.box-img img{
  --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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transition-property: all;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.is_zoomed .zoomed-img:hover .box-img img{
  --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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
  will-change: transform;
}
.is_grayscaled .grayscaled-img img{
  --tw-grayscale: grayscale(100%);
  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);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
.is_grayscaled .grayscaled-img:hover img,.is_grayscaled .grayscaled-img:focus img{
  --tw-grayscale: grayscale(0);
  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);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
.mask-block,.mask-slider .swiper{-webkit-mask-image:linear-gradient(to right, hsla(0, 0%, 0%, 0), hsl(0, 0%, 0%) 20%, hsl(0, 0%, 0%) 80%, hsla(0, 0%, 0%, 0));mask-image:linear-gradient(to right, hsla(0, 0%, 0%, 0), hsl(0, 0%, 0%) 20%, hsl(0, 0%, 0%) 80%, hsla(0, 0%, 0%, 0))}
.mask-block-bottom,.mask-slider-bottom .swiper{-webkit-mask-image:linear-gradient(to bottom, hsla(0, 0%, 0%, 0), hsl(0, 0%, 0%) 0%, hsl(0, 0%, 0%) 100%, hsla(0, 0%, 0%, 0));mask-image:linear-gradient(to bottom, hsla(0, 0%, 0%, 0), hsl(0, 0%, 0%) 0%, hsl(0, 0%, 0%) 70%, hsla(0, 0%, 0%, 0))}
.mask-block-top,.mask-slider-top .swiper{-webkit-mask-image:linear-gradient(to top, hsla(0, 0%, 0%, 0), hsl(0, 0%, 0%) 0%, hsl(0, 0%, 0%) 100%, hsla(0, 0%, 0%, 0));mask-image:linear-gradient(to top, hsla(0, 0%, 0%, 0), hsl(0, 0%, 0%) 0%, hsl(0, 0%, 0%) 70%, hsla(0, 0%, 0%, 0))}
.full-width .container,.full-width.container{max-width:none;max-width:initial;padding:0;padding:initial}
.s-block--banners.no-space .banner-square{padding:0;padding:initial}
.s-block--banners.no-space .container>div{gap:initial}
[dir="ltr"] .faded-sq .banner-square:after{
  right: 0px;
}
[dir="rtl"] .faded-sq .banner-square:after{
  left: 0px;
}
.faded-sq .banner-square:after{
  pointer-events: none;
  position: absolute;
  top: auto;
  bottom: 0px;
  z-index: 0;
  height: 50%;
  width: 100%;
  border-bottom-width: 0px;
  border-color: #414042;
  border-color: var(--color-primary);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  --tw-content: "";
  content: var(--tw-content);
}
[dir="rtl"] .faded-sq .banner-square:after{
  left: 0px;
}
[dir="ltr"] .faded-sq .banner-square:after{
  right: 0px;
}
input[type=radio].sr-only div.faded-sq .banner-square:after{transition:all .3s}
input[type=radio].sr-only:checked~div.faded-sq .banner-square:after{border-color:var(--color-main)}
.faded-sq .banner-square:after{background:linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, var(--bg-color) 100%)}
.faded-sq .banner-square .text-wrapper{
  bottom: 0.5rem;
  top: auto;
  z-index: 1;
  --tw-translate-x: -50%;
  --tw-translate-y: 0px;
  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));
  overflow: hidden;
}
.faded-sq .banner-square .text-wrapper h3{
  visibility: visible;
  opacity: 1;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
  will-change: transform;
}
.faded-sq .banner-square .text-wrapper h3 .tooltip-content{visibility:visible;opacity:1;transform:translate(82px, -110px)}
.faded-sq .banner-square .text-wrapper h3{text-shadow:0 1px 0 rgba(0,0,0,.25)}
.faded-sq .banner-square .text-wrapper p,.faded-sq .banner-square .text-wrapper a{
  visibility: hidden;
  --tw-scale-x: 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(var(--tw-scale-y));
  opacity: 0;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
  will-change: transform;
}
.dark .faded-sq .banner-square .text-wrapper p,.dark .faded-sq .banner-square .text-wrapper a{color:var(--dark-text-main)}
.faded-sq .banner-square .text-wrapper p,.faded-sq .banner-square .text-wrapper a{text-shadow:0 1px 0 rgba(0,0,0,.25)}
.faded-sq .banner-square:hover:after{
  height: 100%;
  border-bottom-width: 4px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.faded-sq .banner-square:hover .text-wrapper h3{
  visibility: hidden;
  --tw-scale-x: 2.2;
  --tw-scale-y: 2.2;
  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: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;text-shadow:0 1px 0 rgba(0,0,0,.25);
}
.faded-sq .banner-square:hover .text-wrapper p,.faded-sq .banner-square:hover .text-wrapper a{
  visibility: visible;
  --tw-translate-y: -1rem;
  --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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  opacity: 1;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
.faded-sq .banner-square:hover .text-wrapper p .tooltip-content,.faded-sq .banner-square:hover .text-wrapper a .tooltip-content{visibility:visible;opacity:1;transform:translate(82px, -110px)}
.dark .faded-sq .banner-square:after{background:linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, var(--dark-bg-main) 100%)}
.s-modal-body.s-modal-align-middle{margin-bottom:3rem !important}
.centered-title .angel-products-title{
  justify-content: center;
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.centered-title .angel-products-title{order:1}}
.s-product-card-content-sub.centered-title .angel-products-title{justify-content:center}
.special-product salla-add-product-button{
  max-width: 50%;
}
.special-product salla-add-product-button button{
  --tw-border-opacity: 1;
  border-color: rgba(220, 38, 38, 1);
  border-color: rgba(220, 38, 38, var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgba(220, 38, 38, 1);
  background-color: rgba(220, 38, 38, 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));
}
.special-product salla-add-product-button button:hover{
  border-color: #414042;
  border-color: var(--color-primary);
}
.special-product .tabs-wrapper{
  min-height: 1rem;
}
.special-product .btn--primary{
  max-width: 50%;
}
@media (min-width: 768px){.special-product img,.special-product video{
    min-height: 100%;
    width: auto;
  }.special-product video{
    max-width: none;
  }.centered-products .swiper{
    padding: 0px;
  }.centered-products .swiper-wrapper{
    justify-content: center;
  }
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.centered-products .swiper-wrapper{order:1}}
.s-product-card-content-sub.centered-products .swiper-wrapper{justify-content:center}}
.index section.s-block.hidden{display:none !important}
.multihome-tabs-wrapper{
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.multihome-tabs-wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.multihome-tabs-wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.multihome-tabs-wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.multihome-tabs-wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.multihome-tabs-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.multihome-tabs-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.multihome-tabs-wrapper{order:1}.align-start-logo.store-header .container>.multihome-tabs-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.multihome-tabs-wrapper{justify-content:center}
.multihome-tabs-wrapper li{
  width: 100%;
  flex: 1 1 0%;
  text-align: center;
}
.multihome-tabs-wrapper li button{
  position: relative;
  width: 100%;
  padding: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  text-align: center;
}
.dark .multihome-tabs-wrapper li button{color:var(--dark-text-main)}
[dir="ltr"] .multihome-tabs-wrapper li button::after{
  left: 0px;
}
[dir="rtl"] .multihome-tabs-wrapper li button::after{
  right: 0px;
}
[dir="ltr"] .multihome-tabs-wrapper li button::after{
  right: auto;
}
[dir="rtl"] .multihome-tabs-wrapper li button::after{
  left: auto;
}
.multihome-tabs-wrapper li button::after{
  position: absolute;
  bottom: 0px;
  display: block;
  height: 2px;
  width: 0px;
  background-color: #414042;
  background-color: var(--color-primary);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 1000ms;
  --tw-content: "";
  content: var(--tw-content);
}
[dir="rtl"] .multihome-tabs-wrapper li button::after{
  right: 0px;
}
[dir="ltr"] .multihome-tabs-wrapper li button::after{
  left: 0px;
}
[dir="rtl"] .multihome-tabs-wrapper li button::after{
  left: auto;
}
[dir="ltr"] .multihome-tabs-wrapper li button::after{
  right: auto;
}
input[type=radio].sr-only div.multihome-tabs-wrapper li button::after{transition:all .3s}
input[type=radio].sr-only:checked~div.multihome-tabs-wrapper li button::after{border-color:var(--color-main)}
.multihome-tabs-wrapper li button.active{
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity, 1));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.dark .multihome-tabs-wrapper li button.active{background-color:var(--dark-grey)}
.multihome-tabs-wrapper li button.active::after{
  width: 100%;
}
.multihome-tabs-wrapper li:last-child{
  border-width: 0px;
}
.multihome-tabs-image{
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 9999px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px){
  .min--2 .multihome-tabs-image{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .multihome-tabs-image{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .multihome-tabs-image{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .multihome-tabs-image{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .multihome-tabs-image{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .multihome-tabs-image{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.multihome-loading{
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 2;
  height: 100%;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity, 1));
  font-size: 1.125rem;
  line-height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.multihome-loading>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.multihome-loading>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.multihome-loading>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.multihome-loading>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.multihome-loading>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.multihome-loading>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.multihome-loading{order:1}.align-start-logo.store-header .container>.multihome-loading>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.multihome-loading{justify-content:center}
.dark .multihome-loading{background-color:var(--dark-grey)}
.multihome-loading{color:var(--text-btn)}
.with-transparent-header .main-nav-container:not(.fixed-pinned) .multihome-tabs-button.active{background-color:rgba(0,0,0,0) !important}
@media (min-width: 768px){
  salla-slider.details-slider .s-slider-container{
    border-radius: 0.375rem;
  }
}
salla-slider.details-slider .swiper-slide{
  position: relative;
  border-radius: 0px;
}
salla-slider.s-product-card-content-footer.details-slider .swiper-slide button{
  border-radius: 0px;
}
custom-salla-product-cardsalla-slider.details-slider .swiper-slide{border-radius:0;border-radius:initial}
[dir="ltr"] salla-slider.details-slider .s-slider-thumbs .swiper{
  padding-right: 3rem;
}
[dir="rtl"] salla-slider.details-slider .s-slider-thumbs .swiper{
  padding-left: 3rem;
}
@media (max-width: 767px){
  [dir="ltr"] salla-slider.details-slider .s-slider-thumbs .swiper{
    padding-left: 0.5rem;
  }
  [dir="rtl"] salla-slider.details-slider .s-slider-thumbs .swiper{
    padding-right: 0.5rem;
  }
}
salla-slider .s-slider-block__title-nav{
  display: none;
}
.index sectionsalla-slider.s-block .s-slider-block__title-nav{display:none}
@media (min-width: 640px){
  salla-slider .s-slider-block__title-nav{
    display: flex;
  }
}
salla-slider .s-slider-block__title-nav button{background:transparent none repeat 0 0 / auto auto padding-box border-box scroll !important;background:initial !important;box-shadow:none !important;box-shadow:initial !important;border:medium none currentColor !important;border:initial !important}
salla-slider .s-slider-block__title-nav button{opacity:.8}
salla-slider .s-slider-block__title-nav button .s-slider-button-icon svg{fill:#414042 !important;fill:var(--color-primary) !important;width:100% !important;
}
salla-slider .s-slider-block__title-nav button .s-slider-button-icon svg{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;opacity:.8;
}
salla-slider .s-slider-block__title-nav button:hover svg{
  --tw-scale-x: 1.25;
  --tw-scale-y: 1.25;
  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;
}
salla-slider .s-slider-block__title-nav button.swiper-button-disabled svg{fill:gray !important}
salla-slider .s-slider-block__title-nav button.swiper-button-disabled:hover svg{
  --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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  opacity: 0.8;
}
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}
.dark .s-social-share-list{fill:var(--dark-text-main);background-color:var(--dark-grey)}
button.s-social-share-btn{
  margin: 0px;
  border-width: 0px;
}
.dark button.s-social-share-btn{color:var(--dark-text-main);background-color:var(--dark-grey)}
.sidebar salla-button.btn--wishlist .btn--wishlist{
  border-width: 0px;
}
.dark .sidebar salla-button.btn--wishlist .btn--wishlist{color:var(--dark-text-main);background-color:var(--dark-grey)}
.sidebar salla-button.btn--wishlist .btn--wishlist.is-added{
  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));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
[dir="ltr"] .promotion-title{
  left: 1rem;
}
[dir="rtl"] .promotion-title{
  right: 1rem;
}
.promotion-title{
  position: absolute;
  top: 1rem;
  z-index: 10;
  margin: 0px;
  width: auto;
  border-radius: 0.375rem;
  --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.75rem;
  padding-right: 0.75rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
  opacity: 0.8;
}
[dir="rtl"] .promotion-title{
  right: 1rem;
}
[dir="ltr"] .promotion-title{
  left: 1rem;
}
input[type=radio].sr-only div.promotion-title{transition:all .3s}
input[type=radio].sr-only:checked~div.promotion-title{border-color:var(--color-main)}
.s-product-card-content-footer.promotion-title button{
  border-radius: 0.375rem;
}
custom-salla-product-card.promotion-title{border-radius:.25rem}
.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{padding:0 !important;padding:initial !important;
}
salla-slider.photos-slider .swiper{
  margin-left: 0px;
  margin-right: 0px;
  width: 100%;
}
salla-slider.photos-slider:not(.hydrated)>div{
  justify-content: center;
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>salla-slider.photos-slider:not(.hydrated)>div{order:1}}
salla-slider.s-product-card-content-sub.photos-slider:not(.hydrated)>div{justify-content:center}
salla-slider.photos-slider .swiper-slide{
  position: relative;
  height: auto;
  width: 100%;
  overflow: hidden;
  border-radius: 0.375rem;
  padding: 0px;
  opacity: 0;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
salla-slider.s-product-card-content-footer.photos-slider .swiper-slide button{
  border-radius: 0.375rem;
}
custom-salla-product-cardsalla-slider.photos-slider .swiper-slide{border-radius:.25rem}
salla-slider.photos-slider .swiper-slide img{
  border-radius: 0px;
}
salla-slider.s-product-card-content-footer.photos-slider .swiper-slide img button{
  border-radius: 0px;
}
custom-salla-product-cardsalla-slider.photos-slider .swiper-slide img{border-radius:0;border-radius:initial}
salla-slider.photos-slider .swiper-slide.swiper-slide-active{
  opacity: 1;
}
.swiper .swiper-pagination-bullet{
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgba(107, 114, 128, 1);
  background-color: rgba(107, 114, 128, var(--tw-bg-opacity, 1));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
@media (min-width: 768px){
  .min--2 .swiper .swiper-pagination-bullet{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .swiper .swiper-pagination-bullet{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .swiper .swiper-pagination-bullet{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .swiper .swiper-pagination-bullet{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .swiper .swiper-pagination-bullet{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .swiper .swiper-pagination-bullet{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.swiper .swiper-pagination-bullet-active{
  width: 1.5rem;
  background-color: #414042;
  background-color: var(--color-primary);
}
.swiper .swiper-pagination-bullets.swiper-pagination-horizontal{
  bottom: 0px;
}
.pagination-line .swiper-pagination-bullet{
  height: 0.125rem;
  width: 0.5rem;
  border-radius: 0px;
}
.s-product-card-content-footer.pagination-line .swiper-pagination-bullet button{
  border-radius: 0px;
}
custom-salla-product-card.pagination-line .swiper-pagination-bullet{border-radius:0;border-radius:initial}
.pagination-line .swiper-pagination-bullet{margin:0 !important;margin:initial !important}
.swiper:not(.swiper-initialized) .swiper-button{opacity:0}
.s-slider-block__title{
  margin-left: 0px;
  margin-right: 0px;
  max-width: 100%;
}
.dark .s-slider-block__title h2{color:#414042;color:var(--color-primary)}
.s-slider-block__title p{
  margin-top: 0.25rem;
}
.dark .s-slider-block__title p{color:var(--dark-text-main)}
salla-slider .swiper-wrapper{height:auto !important;height:initial !important}
.swiper-button-disabled{opacity:.5}
.offer-slider .s-slider-block__title{
  position: relative;
}
.offer-slider .s-slider-block__title:before{
  position: absolute;
  top: 1rem;
  z-index: -1;
  font-size: 3.75rem;
  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 .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:is(.dark *):before{
  color: var(--dark-grey);
}
.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:"";font-family:"sallaicons"}
.offer-slider .s-slider-block__title h2{
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, 1);
  color: rgba(248, 113, 113, var(--tw-text-opacity, 1));
}
.dark .cart .btn--wishlist{color:var(--dark-text-main);background-color:var(--dark-bg-main)}
.cart .btn--wishlist.is-added{
  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));
}
@media (max-width: 767px){[dir="ltr"] .wish-share .s-social-share-list{
    right: auto;
  }[dir="rtl"] .wish-share .s-social-share-list{
    left: auto;
  }[dir="ltr"] .wish-share .s-social-share-list{
    left: 3rem;
  }[dir="rtl"] .wish-share .s-social-share-list{
    right: 3rem;
  }.wish-share .s-social-share-list{
    top: auto;
    bottom: 0px;
    z-index: 2;
    flex-direction: row;
  }[dir="rtl"] .wish-share .s-social-share-list{
    right: 3rem;
  }[dir="ltr"] .wish-share .s-social-share-list{
    left: 3rem;
  }[dir="rtl"] .wish-share .s-social-share-list{
    left: auto;
  }[dir="ltr"] .wish-share .s-social-share-list{
    right: auto;
  }}
.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), 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);
}
input[type=radio].sr-only div.share-btns-list{transition:all .3s}
input[type=radio].sr-only:checked~div.share-btns-list{border-color:var(--color-main)}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.share-btns-list>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.share-btns-list>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.share-btns-list>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.share-btns-list>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.share-btns-list>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.share-btns-list>.justify-center{order:1}.align-start-logo.store-header .container>.share-btns-list>.justify-end{order:3;justify-content:start;width:auto}}
.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;
}
.is-sticky-product-bar.product-single{
  padding-bottom: 4rem;
}
@media (min-width: 768px){
  .is-sticky-product-bar.product-single{
    padding-bottom: 5rem;
  }
}
.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), 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));
  align-items: center;
  justify-content: space-between;
  border-radius: 0px;
  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), 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);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-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(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.is-sticky-product-bar .sticky-product-bar>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.is-sticky-product-bar .sticky-product-bar>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.is-sticky-product-bar .sticky-product-bar>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.is-sticky-product-bar .sticky-product-bar>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.is-sticky-product-bar .sticky-product-bar>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.is-sticky-product-bar .sticky-product-bar>.justify-center{order:1}.align-start-logo.store-header .container>.is-sticky-product-bar .sticky-product-bar>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-footer.is-sticky-product-bar .sticky-product-bar button{
  border-radius: 0px;
}
custom-salla-product-card.is-sticky-product-bar .sticky-product-bar{border-radius:0;border-radius:initial}
.is-sticky-product-bar .sticky-product-bar__quantity,.is-sticky-product-bar .sticky-product-bar salla-add-product-button{
  --tw-translate-y: 1.25rem;
  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, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-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;
}
.index section.s-block.is-sticky-product-bar .sticky-product-bar__price,.index section.s-block.is-sticky-product-bar .sticky-product-bar .form-label{display:none}
.is-sticky-product-bar .sticky-product-bar__quantity{
  margin: 0px;
  transition-delay: 900ms;
}
@media (min-width: 768px){
  .is-sticky-product-bar .sticky-product-bar__quantity{
    width: 10rem;
  }
}
.is-sticky-product-bar .sticky-product-bar salla-add-product-button{
  margin: 0px;
  width: auto;
  flex: 1 1 0%;
  transition-delay: 1000ms;
}
@media (min-width: 768px){
  .is-sticky-product-bar .sticky-product-bar salla-add-product-button{
    min-width: 25%;
  }
}
.is-sticky-product-bar .sticky-product-bar salla-add-product-button button[quick-buy]{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.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), 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;
}
.is-sticky-product-bar .sticky-product-bar.dark{background-color:var(--dark-grey)}
.s-add-product-button-main .s-add-product-button-mini-checkout{border-radius:.25rem !important;--salla-fast-checkout-button-border-radius: 0.25rem !important}
.product-single salla-add-product-button .s-button-text{
  display: flex;
  align-items: center;
  gap: 0.25rem;font-family:var(--font-main);
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.product-single salla-add-product-button .s-button-text>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.product-single salla-add-product-button .s-button-text>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.product-single salla-add-product-button .s-button-text>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.product-single salla-add-product-button .s-button-text>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.product-single salla-add-product-button .s-button-text>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.product-single salla-add-product-button .s-button-text>.justify-center{order:1}.align-start-logo.store-header .container>.product-single salla-add-product-button .s-button-text>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-title.product-single salla-add-product-button .s-button-text a{font-family:var(--font-main)}
.s-tabs-header *{pointer-events:auto !important}
.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 .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 .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: var(--tw-content);
}
.dark .s-toggle .s-toggle-switcher-has-text:before{color:var(--dark-text-sec)}
.s-toggle .s-toggle-switcher-has-text:before{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));
}
.nav-header .sub-nav-header:is(.dark *){
  --tw-gradient-from: var(--dark-grey) 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);
}
.nav-header .sub-nav-header #subcat-slider .swiper{padding-left:0 !important;padding-right:0 !important}
[dir="ltr"] .s-rating-stars-wrapper .s-rating-stars-btn-star{
  padding-right: 0.125rem;
}
[dir="rtl"] .s-rating-stars-wrapper .s-rating-stars-btn-star{
  padding-left: 0.125rem;
}
.s-rating-stars-wrapper .s-rating-stars-btn-star{
  padding: 0px;
}
[dir="ltr"] .s-rating-stars-wrapper .s-rating-stars-reviews{
  margin-left: 0.25rem;
}
[dir="rtl"] .s-rating-stars-wrapper .s-rating-stars-reviews{
  margin-right: 0.25rem;
}
.dark .s-rating-stars-wrapper .s-rating-stars-reviews{color:var(--dark-text-main)}
.s-rating-stars-wrapper .s-rating-stars-btn-star{
  display: flex;
  align-items: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-rating-stars-wrapper .s-rating-stars-btn-star>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-stars-wrapper .s-rating-stars-btn-star>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-rating-stars-wrapper .s-rating-stars-btn-star>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-rating-stars-wrapper .s-rating-stars-btn-star>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-rating-stars-wrapper .s-rating-stars-btn-star>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-rating-stars-wrapper .s-rating-stars-btn-star>.justify-center{order:1}.align-start-logo.store-header .container>.s-rating-stars-wrapper .s-rating-stars-btn-star>.justify-end{order:3;justify-content:start;width:auto}}
.size-guide .s-button-text{
  display: flex;
  gap: 0.25rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.size-guide .s-button-text>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.size-guide .s-button-text>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.size-guide .s-button-text>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.size-guide .s-button-text>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.size-guide .s-button-text>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.size-guide .s-button-text>.justify-center{order:1}.align-start-logo.store-header .container>.size-guide .s-button-text>.justify-end{order:3;justify-content:start;width:auto}}
.details{
  margin-top: 1rem;
  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: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.s-product-card-content-footer.details button{
  border-radius: 0.375rem;
}
custom-salla-product-card.details{border-radius:.25rem}
.dark .details{background-color:var(--dark-grey)}
.details__wrapper{
  display: flex;
  min-height: 2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.details__wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.details__wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.details__wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.details__wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.details__wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.details__wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.details__wrapper>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .details__wrapper{
    gap: 2rem;
  }
}
.details__container{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.details__container>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.details__container>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.details__container>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.details__container>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.details__container>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.details__container>.justify-center{order:1}.align-start-logo.store-header .container>.details__container>.justify-end{order:3;justify-content:start;width:auto}}
.dark .details__container{color:var(--dark-text-main)}
.details__title{
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.details__title>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.details__title>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.details__title>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.details__title>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.details__title>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.details__title>.justify-center{order:1}.align-start-logo.store-header .container>.details__title>.justify-end{order:3;justify-content:start;width:auto}}
.details__title i{
  font-size: 0.75rem;
  line-height: 1rem;
}
.details__title span{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.details.total{
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, 1);
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity, 1));
}
.dark .details.total{background-color:var(--dark-bg-main)}
.details.product-options,.details.product-reviews{
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}
.opt-text{word-wrap:anywhere}
.dark .opt-text h4{color:var(--dark-text-main)}
.opt-text p{
  text-align: justify;
}
.dark .opt-text p{color:var(--dark-text-main)}
.opt-text p{text-justify:inter-character}
.opt-text li{
  font-family: var(--font-secondary);
}
.dark .opt-text li{color:var(--dark-text-main)}
.opt-text li{list-style-type:disc;list-style-type:initial;list-style-position:inside}
.opt-text ol{list-style:arabic-indic;list-style-position:inside}
.opt-text strong:is(.dark *){
  color: #414042;
  color: var(--color-primary);
}
.opt-text a{
  color: #414042;
  color: var(--color-primary);
  text-decoration-line: underline;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
.opt-text a:hover{
  --tw-brightness: brightness(.75);
  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);
}
.opt-text iframe{width:100%;height:22vw}
@media(max-width: 639px){.opt-text iframe{height:50vw}}
.dark .opt-text.text-light *{color:#fff !important;background-color:transparent !important;background-color:initial !important}
[dir=ltr] .product__description ol{list-style:decimal}
.vertical-line{height:calc(100% - 37px)}
.hide-questions .no-order{display:none !important}
.hide-reviews .has-order{display:none !important}
#blog-slider .s-slider-container{
  border-radius: 0.375rem;
}
.s-quick-order .s-quick-order-confirm{
  border-radius: 0.375rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.s-product-card-content-footer.s-quick-order .s-quick-order-confirm button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-quick-order .s-quick-order-confirm{border-radius:.25rem}
.s-quick-order .s-quick-order-container{
  border-radius: 0.375rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.s-product-card-content-footer.s-quick-order .s-quick-order-container button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-quick-order .s-quick-order-container{border-radius:.25rem}
.s-quick-order .s-quick-order-container{background-color:#fff !important}
.s-quick-order .s-quick-order-container .s-quick-order-button-cont div h3{
  color: #414042;
  color: var(--color-primary);
}
.dark .s-quick-order .s-quick-order-container .s-quick-order-button-cont div p{color:var(--dark-text-main)}
.s-quick-order .s-quick-order-container .s-quick-order-button-cont salla-button button{
  border-width: 1px;
  border-color: #414042;
  border-color: var(--color-primary);
  background-color: #414042;
  background-color: var(--color-primary);
  color: #ff6767;
  color: var(--color-primary-reverse);color:var(--text-btn);
}
.s-quick-order .s-quick-order-container .s-quick-order-button-cont .s-quick-order-btn-close button{
  border-radius: 0.375rem;
  border-style: none;
  --tw-bg-opacity: 1;
  background-color: rgba(239, 68, 68, 1);
  background-color: rgba(239, 68, 68, var(--tw-bg-opacity, 1));
}
.s-product-card-content-footer.s-quick-order .s-quick-order-container .s-quick-order-button-cont .s-quick-order-btn-close button button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-quick-order .s-quick-order-container .s-quick-order-button-cont .s-quick-order-btn-close button{border-radius:.25rem}
.s-quick-order .s-quick-order-container .s-quick-order-expandable{
  display: none;
}
.index section.s-block.s-quick-order .s-quick-order-container .s-quick-order-expandable{display:none}
.s-quick-order .s-quick-order-container .s-quick-order-shown{
  margin-bottom: 1rem;
  display: block;
}
@media (max-width: 767px){.s-quick-order .s-quick-order-container .s-quick-order-flex-input{
    flex-direction: column;
  }.s-quick-order .s-quick-order-container .s-quick-order-flex-input .s-form-group{
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
  }.s-quick-order .s-quick-order-container .s-quick-order-flex-input .s-tel-input .iti{margin-bottom:0;margin-bottom:initial}}
.s-gifting-modal-badge-wrapper>span{color:var(--dark-text-main)}
.s-gifting-modal-uploader-title{color:var(--dark-text-main);text-align:center}
.s-gifting-modal-icon{fill:#414042;fill:var(--color-primary);background:#414042;background:var(--color-primary)}
.s-gifting-modal-uploader{background:#414042;background:var(--color-primary);border-radius:11px}
.s-gifting-schedule span{color:var(--dark-text-main)}
.dark .s-product-card-entry{background-color:var(--dark-bg-main)}
.s-product-card-entry.dark{background-color:var(--dark-grey)}
.s-products-list-wishlist .s-products-list-wrapper{
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-products-list-wishlist .s-products-list-wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-products-list-wishlist .s-products-list-wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-products-list-wishlist .s-products-list-wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-products-list-wishlist .s-products-list-wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-products-list-wishlist .s-products-list-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-products-list-wishlist .s-products-list-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-products-list-wishlist .s-products-list-wrapper{order:1}.align-start-logo.store-header .container>.s-products-list-wishlist .s-products-list-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-products-list-wishlist .s-products-list-wrapper{justify-content:center}
.s-products-list-wrapper{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 0.25rem;
  gap: 0.25rem;
}
@media (min-width: 768px){
  .s-products-list-wrapper{
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.5rem;
  }
}
.s-products-list-placeholder{
  gap: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-products-list-placeholder>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-products-list-placeholder>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-products-list-placeholder>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-products-list-placeholder>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-products-list-placeholder>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-products-list-placeholder>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-products-list-placeholder{order:1}.align-start-logo.store-header .container>.s-products-list-placeholder>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-products-list-placeholder{justify-content:center}
.s-products-list-placeholder span{
  fill: #6b7280;
}
.dark .s-products-list-placeholder p{color:var(--dark-text-sec)}
@media (min-width: 768px){
  .large-cards .s-products-list-wrapper{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.s-product-card-entry{
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  border-width: 2px;
  border-color: #414042;
  border-color: var(--color-primary);
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-entry>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-entry>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-entry>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-entry>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-card-entry>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-card-entry>.justify-center{order:1}.align-start-logo.store-header .container>.s-product-card-entry>.justify-end{order:3;justify-content:start;width:auto}}
.dark .s-product-card-entry{background-color:var(--dark-grey)}
.s-product-card-entry.rounded-2xl{
  border-radius: 1rem;
}
.s-product-card-entry.no-bg{
  background-color: transparent;
}
.s-product-card-entry:hover img:nth-child(2){opacity:1 !important}
.s-product-card-image{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-image>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-image>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-image>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-image>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-card-image>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-card-image>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-product-card-image{order:1}.align-start-logo.store-header .container>.s-product-card-image>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-product-card-image{justify-content:center}
.s-product-card-image{width:auto !important;height:auto !important;max-height:none !important;max-height:initial !important;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll !important;background:initial !important;border-radius:0 !important;border-radius:initial !important;flex-shrink:0 !important;overflow:visible !important;overflow:initial !important}
.s-product-card-image-contain{
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.s-product-card-image-cover{
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.s-product-card-wishlist-btn{
  margin-left: 0px;
  margin-right: 0px;
  height: auto;
  width: auto;
  border-style: none;
  font-size: 1.3rem;
  --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), 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);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-wishlist-btn>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-wishlist-btn>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-wishlist-btn>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-wishlist-btn>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-card-wishlist-btn>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-card-wishlist-btn>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-product-card-wishlist-btn{order:1}.align-start-logo.store-header .container>.s-product-card-wishlist-btn>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-product-card-wishlist-btn{justify-content:center}
.store-header.z-3 .s-product-card-wishlist-btn:not(.fixed-pinned) .inner{background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;background:initial}
.s-product-card-wishlist-btn{box-shadow:none !important;position:static !important;position:initial !important;padding:0 !important;background-color:rgba(0,0,0,0) !important;border:medium none currentColor !important;border:initial !important}
.s-product-card-wishlist-added{
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, 1);
  color: rgba(239, 68, 68, var(--tw-text-opacity, 1));
}
[dir="ltr"] .s-product-card-promotion-title{
  left: 0px;
}
[dir="rtl"] .s-product-card-promotion-title{
  right: 0px;
}
.s-product-card-promotion-title{
  position: absolute;
  top: 0px;
  z-index: 1;
  width: auto;
  --tw-bg-opacity: 1;
  background-color: rgba(248, 113, 113, 1);
  background-color: rgba(248, 113, 113, var(--tw-bg-opacity, 1));
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
  opacity: 0.9;
}
[dir="rtl"] .s-product-card-promotion-title{
  right: 0px;
}
[dir="ltr"] .s-product-card-promotion-title{
  left: 0px;
}
input[type=radio].sr-only div.s-product-card-promotion-title{transition:all .3s}
input[type=radio].sr-only:checked~div.s-product-card-promotion-title{border-color:var(--color-main)}
.s-product-card-promotion-title{top:0 !important;padding:.25rem .5rem !important;border-radius:0 !important;border-radius:initial !important;border-bottom-left-radius:.75rem !important}
.s-product-card-content{
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-content>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-content>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-content>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-content>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-card-content>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-card-content>.justify-center{order:1}.align-start-logo.store-header .container>.s-product-card-content>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content{padding:.5rem !important;margin-bottom:0 !important;margin-bottom:initial !important}
.s-product-card-content-main{
  margin-bottom: 0.25rem;
}
.s-product-card-content-title{
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
.dark .s-product-card-content-title{color:var(--dark-text-main)}
.s-product-card-content-title:hover{
  color: #414042;
  color: var(--color-primary);
}
.s-product-card-content-title{margin:0 !important;margin:initial !important}
.s-product-card-content-title a{overflow:visible !important;overflow:initial !important;display:inline !important;display:initial !important;-webkit-box-orient:unset !important;-webkit-line-clamp:unset !important;line-clamp:initial !important;color:inherit !important}
.s-product-card-content-subtitle{
  margin-top: 0.25rem;
  --tw-text-opacity: 1;
  color: rgba(75, 85, 99, 1);
  color: rgba(75, 85, 99, var(--tw-text-opacity, 1));
}
.dark .s-product-card-content-subtitle{color:var(--dark-text-sec)}
.s-product-card-content-subtitle{margin-bottom:0 !important;margin-bottom:initial !important;font-size:.75rem !important;line-height:1rem !important}
.s-product-card-content-footer{
  margin-top: auto;
  gap: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-content-footer>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-content-footer>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-content-footer>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-content-footer>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-card-content-footer>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-card-content-footer>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-product-card-content-footer{order:1}.align-start-logo.store-header .container>.s-product-card-content-footer>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-product-card-content-footer{justify-content:center}
.s-product-card-content-sub{margin-bottom:.375rem !important;
}
.s-product-card-content-sub{
  flex-wrap: wrap;
}
.s-product-card-content-sub.justify-center{justify-content:center !important}
.s-product-card-content-footer.rounded-none button{
  border-radius: 0px;
}
.s-product-card-content-footer.rounded-sm button{
  border-radius: 0.125rem;
}
.s-product-card-content-footer.rounded-md button{
  border-radius: 0.375rem;
}
.s-product-card-content-footer.rounded-lg button{
  border-radius: 0.5rem;
}
.s-product-card-content-footer.rounded-xl button,.s-product-card-content-footer.rounded-2xl button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 .s-product-card-content-footer.rounded-xl button,.min--2 .s-product-card-content-footer.rounded-2xl button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-product-card-content-footer.rounded-xl button,.min--3 .s-product-card-content-footer.rounded-2xl button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-product-card-content-footer.rounded-xl button,.min--4 .s-product-card-content-footer.rounded-2xl button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-product-card-content-footer.rounded-xl button,.min--5 .s-product-card-content-footer.rounded-2xl button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-product-card-content-footer.rounded-xl button,.min--6 .s-product-card-content-footer.rounded-2xl button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-product-card-content-footer.rounded-xl button,.min--10 .s-product-card-content-footer.rounded-2xl button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-product-card-content-footer .s-button-btn{
  padding: 0.25rem;
}
.s-product-card-content-footer salla-add-product-button .s-button-primary{color:var(--text-btn)}
.s-product-card-content-footer salla-add-product-button .s-button-outline{
  border-color: #414042;
  border-color: var(--color-primary);
}
.dark .s-product-card-content-footer salla-add-product-button .s-button-outline{color:var(--dark-text-main)}
.s-product-card-content-footer salla-add-product-button .s-button-outline:hover{color:var(--text-btn) !important}
.s-product-card-content salla-add-product-button .s-button-text{
  gap: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-content salla-add-product-button .s-button-text>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-content salla-add-product-button .s-button-text>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-content salla-add-product-button .s-button-text>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-content salla-add-product-button .s-button-text>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-card-content salla-add-product-button .s-button-text>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-card-content salla-add-product-button .s-button-text>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-product-card-content salla-add-product-button .s-button-text{order:1}.align-start-logo.store-header .container>.s-product-card-content salla-add-product-button .s-button-text>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-product-card-content salla-add-product-button .s-button-text{justify-content:center}
.dark *.s-product-card-price{
  color: var(--dark-text-main);
}
.s-product-card-sale-price{
  display: flex;
  flex-wrap: wrap;
  line-height: 1.2;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-sale-price>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-sale-price>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-sale-price>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-sale-price>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-card-sale-price>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-card-sale-price>.justify-center{order:1}.align-start-logo.store-header .container>.s-product-card-sale-price>.justify-end{order:3;justify-content:start;width:auto}}
[dir="ltr"] .s-product-card-sale-price h4{
  margin-right: 0.25rem;
}
[dir="rtl"] .s-product-card-sale-price h4{
  margin-left: 0.25rem;
}
.s-product-card-sale-price h4{
  flex-shrink: 0;
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, 1);
  color: rgba(239, 68, 68, var(--tw-text-opacity, 1));
}
.s-product-card-sale-price h4:is(.dark *){
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, 1);
  color: rgba(248, 113, 113, var(--tw-text-opacity, 1));
}
.s-product-card-sale-price span{
  flex-shrink: 0;
  --tw-text-opacity: 1;
  color: rgba(75, 85, 99, 1);
  color: rgba(75, 85, 99, var(--tw-text-opacity, 1));
  text-decoration-line: line-through;
}
.dark .s-product-card-sale-price span{color:var(--dark-text-sec)}
.s-product-card-starting-price{
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 0.25rem;
  line-height: 1.2;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-starting-price>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-starting-price>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-starting-price>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-starting-price>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-card-starting-price>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-card-starting-price>.justify-center{order:1}.align-start-logo.store-header .container>.s-product-card-starting-price>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-starting-price{justify-content:center !important}
.s-product-card-starting-price.justify-start{justify-content:start !important}
[dir="ltr"] .s-product-card-discount{
  right: 0.5rem;
}
[dir="rtl"] .s-product-card-discount{
  left: 0.5rem;
}
.s-product-card-discount{
  position: absolute;
  top: 0px;
  z-index: 1;
  display: flex;
  width: 2rem;
  flex-direction: column;
  align-items: center;
  --tw-bg-opacity: 1;
  background-color: rgba(239, 68, 68, 1);
  background-color: rgba(239, 68, 68, var(--tw-bg-opacity, 1));
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
  opacity: 0.9;
}
[dir="rtl"] .s-product-card-discount{
  left: 0.5rem;
}
[dir="ltr"] .s-product-card-discount{
  right: 0.5rem;
}
input[type=radio].sr-only div.s-product-card-discount{transition:all .3s}
input[type=radio].sr-only:checked~div.s-product-card-discount{border-color:var(--color-main)}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-discount>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-discount>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-discount>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-discount>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-card-discount>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-card-discount>.justify-center{order:1}.align-start-logo.store-header .container>.s-product-card-discount>.justify-end{order:3;justify-content:start;width:auto}}
[dir="ltr"] .s-product-card-rating{
  right: 0.25rem;
}
[dir="rtl"] .s-product-card-rating{
  left: 0.25rem;
}
.s-product-card-rating{
  position: absolute;
  bottom: 0.25rem;
  gap: 0px;
  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));
  padding-left: 0.375rem;
  padding-right: 0.375rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  opacity: 0.9;
}
[dir="rtl"] .s-product-card-rating{
  left: 0.25rem;
}
[dir="ltr"] .s-product-card-rating{
  right: 0.25rem;
}
.s-product-card-rating{
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-rating>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-rating>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-rating>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-rating>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-card-rating>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-card-rating>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-product-card-rating{order:1}.align-start-logo.store-header .container>.s-product-card-rating>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-product-card-rating{justify-content:center}
input[type=radio].sr-only div.s-product-card-rating{transition:all .3s}
input[type=radio].sr-only:checked~div.s-product-card-rating{border-color:var(--color-main)}
@media (min-width: 768px){
  .min--2 .s-product-card-rating{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-product-card-rating{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-product-card-rating{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-product-card-rating{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-product-card-rating{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-product-card-rating{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.dark .s-product-card-rating{color:var(--dark-text-main);background-color:var(--dark-grey)}
.s-product-card-rating i{
  --tw-text-opacity: 1;
  color: rgba(250, 204, 21, 1);
  color: rgba(250, 204, 21, var(--tw-text-opacity, 1));
}
.s-product-card-rating span{
  line-height: 1;
}
.dark .s-product-card-rating span{color:var(--dark-text-main)}
.s-product-card-out-of-stock.hide-out-of-stock{
  position: relative;
}
.s-product-card-out-of-stock.hide-out-of-stock::after{content:"نفدت الكمية";pointer-events: none;position: absolute;top: 50%;left: 50%;z-index: 2;display: block;width: -moz-max-content;width: max-content;--tw-translate-y: -50%;--tw-translate-x: -50%;--tw-rotate: -12deg;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: 3px;--tw-border-opacity: 1;border-color: rgba(239, 68, 68, 1);border-color: rgba(239, 68, 68, var(--tw-border-opacity, 1));padding-left: 0.75rem;padding-right: 0.75rem;padding-top: 0.375rem;padding-bottom: 0.375rem;font-size: 1.25rem;line-height: 1.75rem;line-height: 1;--tw-text-opacity: 1;color: rgba(239, 68, 68, 1);color: rgba(239, 68, 68, var(--tw-text-opacity, 1));opacity: 0.8}
input[type=radio].sr-only div.s-product-card-out-of-stock.hide-out-of-stock::after{transition:all .3s}
input[type=radio].sr-only:checked~div.s-product-card-out-of-stock.hide-out-of-stock::after{border-color:var(--color-main)}
.s-product-card-out-of-stock.hide-out-of-stock:where([dir="ltr"], [dir="ltr"] *)::after{
  --tw-content: "SOLD-OUT";
  content: var(--tw-content);
}
.s-product-card-out-of-stock.hide-out-of-stock salla-add-product-button{
  display: none;
}
.index section.s-block.s-product-card-out-of-stock.hide-out-of-stock salla-add-product-button{display:none}
.s-product-card-out-of-stock salla-add-product-button .s-button-disabled{
  --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(55, 65, 81, 1);
  color: rgba(55, 65, 81, var(--tw-text-opacity, 1));
}
.s-product-card-out-of-stock img{filter:none !important}
.s-product-card-props{
  margin-bottom: 0.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-props>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-props>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-props>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-props>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-card-props>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-card-props>.justify-center{order:1}.align-start-logo.store-header .container>.s-product-card-props>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-category,.s-product-card-brand{
  border-radius: 0.125rem;
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity, 1));
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  line-height: 1;
}
.s-product-card-content-footer.s-product-card-category button,.s-product-card-content-footer.s-product-card-brand button{
  border-radius: 0.125rem;
}
custom-salla-product-card.s-product-card-category,custom-salla-product-card.s-product-card-brand{border-radius:.125rem}
.dark .s-product-card-category,.dark .s-product-card-brand{color:var(--dark-text-main);background-color:var(--dark-bg-main)}
.s-product-card-options .s-product-options-wrapper{
  margin-bottom: 0.25rem;
  margin-top: 0.5rem;
}
.s-product-card-options .s-product-options-option-container{
  margin-bottom: 0.5rem;
}
.s-product-card-options .s-product-options-option-container select{
  height: 2rem;
  padding-top: 0px;
  padding-bottom: 0px;
}
.s-product-card-options .s-product-options-option{
  flex-direction: column;
  gap: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-options .s-product-options-option>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-options .s-product-options-option>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-options .s-product-options-option>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-options .s-product-options-option>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-card-options .s-product-options-option>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-card-options .s-product-options-option>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-product-card-options .s-product-options-option{order:1}.align-start-logo.store-header .container>.s-product-card-options .s-product-options-option>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-product-card-options .s-product-options-option{justify-content:center}
.s-product-card-options .s-product-options-option>.s-product-options-option-label{
  display: none;
}
.index section.s-block.s-product-card-options .s-product-options-option>.s-product-options-option-label{display:none}
.s-product-card-options .s-product-options-option-content{
  width: 100%;
}
.s-product-card-options .s-product-options-colors-wrapper{
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.s-product-card-options .s-product-options-colors-wrapper{order:1}}
.s-product-card-content-sub.s-product-card-options .s-product-options-colors-wrapper{justify-content:center}
.s-product-card-options .s-product-options-colors-item{
  width: -moz-max-content;
  width: max-content;
}
.s-product-card-options .s-product-options-colors-item label>div{
  display: none;
}
.index section.s-block.s-product-card-options .s-product-options-colors-item label>div{display:none}
.s-product-card-options .s-product-options-grid-mode{
  margin-bottom: 0px;
  justify-content: center;
  gap: 0.25rem;
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.s-product-card-options .s-product-options-grid-mode{order:1}}
.s-product-card-content-sub.s-product-card-options .s-product-options-grid-mode{justify-content:center}
.s-product-card-options .s-product-options-grid-mode-span{
  min-height: 1.75rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  font-size: 11px;
}
.s-product-card-options .s-product-options-thumbnails-wrapper{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-options .s-product-options-thumbnails-wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-options .s-product-options-thumbnails-wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-options .s-product-options-thumbnails-wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-options .s-product-options-thumbnails-wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-card-options .s-product-options-thumbnails-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-card-options .s-product-options-thumbnails-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-product-card-options .s-product-options-thumbnails-wrapper{order:1}.align-start-logo.store-header .container>.s-product-card-options .s-product-options-thumbnails-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-product-card-options .s-product-options-thumbnails-wrapper{justify-content:center}
.s-product-card-options .s-product-options-thumbnails-wrapper>div{
  display: flex;
  width: auto;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-options .s-product-options-thumbnails-wrapper>div>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-options .s-product-options-thumbnails-wrapper>div>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-options .s-product-options-thumbnails-wrapper>div>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-options .s-product-options-thumbnails-wrapper>div>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-card-options .s-product-options-thumbnails-wrapper>div>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-card-options .s-product-options-thumbnails-wrapper>div>.justify-center{order:1}.align-start-logo.store-header .container>.s-product-card-options .s-product-options-thumbnails-wrapper>div>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-options .s-product-options-thumbnails-wrapper>div label{
  height: auto;
  border-radius: 0.375rem;
}
.s-product-card-content-footer.s-product-card-options .s-product-options-thumbnails-wrapper>div label button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-product-card-options .s-product-options-thumbnails-wrapper>div label{border-radius:.25rem}
.s-product-card-options .s-product-options-thumbnails-wrapper>div label img{height:2.5rem !important;width:2.5rem !important}
.s-product-card-options .s-product-options-thumbnails-wrapper>div>p{
  display: none;
}
.index section.s-block.s-product-card-options .s-product-options-thumbnails-wrapper>div>p{display:none}
.s-product-card-options .has-label .s-product-options-option>.s-product-options-option-label{
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-options .has-label .s-product-options-option>.s-product-options-option-label>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-options .has-label .s-product-options-option>.s-product-options-option-label>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-options .has-label .s-product-options-option>.s-product-options-option-label>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-options .has-label .s-product-options-option>.s-product-options-option-label>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-card-options .has-label .s-product-options-option>.s-product-options-option-label>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-card-options .has-label .s-product-options-option>.s-product-options-option-label>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-product-card-options .has-label .s-product-options-option>.s-product-options-option-label{order:1}.align-start-logo.store-header .container>.s-product-card-options .has-label .s-product-options-option>.s-product-options-option-label>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-product-card-options .has-label .s-product-options-option>.s-product-options-option-label{justify-content:center}
.s-product-card-options .has-label .s-product-options-option>.s-product-options-option-label small{
  display: none;
}
.index section.s-block.s-product-card-options .has-label .s-product-options-option>.s-product-options-option-label small{display:none}
.s-product-card-options .has-label .s-product-options-option>.s-product-options-option-label b{
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  line-height: 1rem;
  text-decoration-line: underline;
}
.s-product-card-options .hide-required [data-option-required=false]{
  display: none;
}
.index section.s-block.s-product-card-options .hide-required [data-option-required=false]{display:none}
.s-product-card-options .justify-options-start .s-product-options-option{
  align-items: flex-start;
}
.s-product-card-options .justify-options-start .s-product-options-colors-wrapper,.s-product-card-options .justify-options-start .s-product-options-thumbnails-wrapper{
  justify-content: flex-start;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-product-card-options .justify-options-start .s-product-options-colors-wrapper,[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-product-card-options .justify-options-start .s-product-options-thumbnails-wrapper{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-product-card-options .justify-options-start .s-product-options-colors-wrapper,[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-product-card-options .justify-options-start .s-product-options-thumbnails-wrapper{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-product-card-options .justify-options-start .s-product-options-colors-wrapper,[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-product-card-options .justify-options-start .s-product-options-thumbnails-wrapper{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-product-card-options .justify-options-start .s-product-options-colors-wrapper,[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-product-card-options .justify-options-start .s-product-options-thumbnails-wrapper{margin-right:auto;
  }.align-start-logo.store-header .container>.flex>.s-product-card-options .justify-options-start .s-product-options-colors-wrapper,.align-start-logo.store-header .container>.flex>.s-product-card-options .justify-options-start .s-product-options-thumbnails-wrapper{order:2;justify-content:end;width:auto}}
.s-product-card-starting-price.s-product-card-options .justify-options-start .s-product-options-colors-wrapper,.s-product-card-starting-price.s-product-card-options .justify-options-start .s-product-options-thumbnails-wrapper{justify-content:start}
.s-product-card-options .justify-options-start .s-product-options-colors-item label{
  align-items: flex-start;
}
.s-product-card-options .justify-options-start .s-product-options-grid-mode{
  justify-content: flex-start;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-product-card-options .justify-options-start .s-product-options-grid-mode{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-product-card-options .justify-options-start .s-product-options-grid-mode{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-product-card-options .justify-options-start .s-product-options-grid-mode{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-product-card-options .justify-options-start .s-product-options-grid-mode{margin-right:auto;
  }.align-start-logo.store-header .container>.flex>.s-product-card-options .justify-options-start .s-product-options-grid-mode{order:2;justify-content:end;width:auto}}
.s-product-card-starting-price.s-product-card-options .justify-options-start .s-product-options-grid-mode{justify-content:start}
.s-products-slider-card.swiper-slide{
  display: flex;
  width: 50%;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-products-slider-card.swiper-slide>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-products-slider-card.swiper-slide>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-products-slider-card.swiper-slide>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-products-slider-card.swiper-slide>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-products-slider-card.swiper-slide>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-products-slider-card.swiper-slide>.justify-center{order:1}.align-start-logo.store-header .container>.s-products-slider-card.swiper-slide>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .s-products-slider-card.swiper-slide{
    width: 16.666667%;
  }
}
.s-products-slider-card.swiper-slide{padding-left:.25rem !important;padding-right:.25rem !important}
.large-cards .s-products-slider-card.swiper-slide{
  display: flex;
  width: 75%;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.large-cards .s-products-slider-card.swiper-slide>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.large-cards .s-products-slider-card.swiper-slide>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.large-cards .s-products-slider-card.swiper-slide>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.large-cards .s-products-slider-card.swiper-slide>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.large-cards .s-products-slider-card.swiper-slide>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.large-cards .s-products-slider-card.swiper-slide>.justify-center{order:1}.align-start-logo.store-header .container>.large-cards .s-products-slider-card.swiper-slide>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .large-cards .s-products-slider-card.swiper-slide{
    width: 25%;
  }
}
.s-products-slider-wrapper .s-slider-container{
  min-height: 8rem;
}
.s-product-card-content-title.font-primary a{font-family:var(--font-main) !important}
[dir="ltr"] .s-filters-radio{
  margin-right: 0.5rem;
}
[dir="rtl"] .s-filters-radio{
  margin-left: 0.5rem;
}
.s-filters-radio{
  position: relative;
  height: 1rem;
  width: 1rem;
  border-width: 1px;
  border-color: #414042;
  border-color: var(--color-primary);
  color: transparent;
}
.dark .s-filters-radio{color:var(--dark-text-main)}
.s-filters-radio[type=radio]:focus{
  border-style: none;
  border-color: #414042;
  border-color: var(--color-primary);
  color: transparent;
  outline-width: 0px;
  --tw-ring-offset-width: 0px;
}
.s-filters-radio:checked{
  border-width: 1px;
  border-color: #414042;
  border-color: var(--color-primary);
  color: transparent;
}
[dir="ltr"] .s-filters-radio:checked::after{
  right: 50%;
}
[dir="rtl"] .s-filters-radio:checked::after{
  left: 50%;
}
.s-filters-radio:checked::after{
  position: absolute;
  top: 50%;
  display: block;
  height: 0.5rem;
  width: 0.5rem;
  --tw-translate-x: -50%;
  --tw-translate-y: -50%;
  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: 9999px;
  background-color: #414042;
  background-color: var(--color-primary);
  --tw-content: "";
  content: var(--tw-content);
}
[dir="rtl"] .s-filters-radio:checked::after{
  left: 50%;
}
[dir="ltr"] .s-filters-radio:checked::after{
  right: 50%;
}
input[type=radio].sr-only div.s-filters-radio:checked::after{transition:all .3s}
input[type=radio].sr-only:checked~div.s-filters-radio:checked::after{border-color:var(--color-main)}
@media (min-width: 768px){
  .min--2 .s-filters-radio:checked::after{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-filters-radio:checked::after{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-filters-radio:checked::after{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-filters-radio:checked::after{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-filters-radio:checked::after{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-filters-radio:checked::after{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-filters-label{
  position: relative;
  margin-bottom: 0.375rem;
  display: flex;
  cursor: pointer;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.25rem;font-family:var(--font-main);
}
.s-filters-label *{pointer-events:none}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-filters-label>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-filters-label>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-filters-label>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-filters-label>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-filters-label>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-filters-label>.justify-center{order:1}.align-start-logo.store-header .container>.s-filters-label>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-title.s-filters-label a{font-family:var(--font-main)}
.s-filters-label *{
  pointer-events: none;
}
.s-filters-option-name{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.dark .s-filters-option-name{color:var(--dark-text-main)}
.s-filters-footer{
  display: flex;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-filters-footer>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-filters-footer>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-filters-footer>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-filters-footer>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-filters-footer>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-filters-footer>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-filters-footer{order:1}.align-start-logo.store-header .container>.s-filters-footer>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-filters-footer{justify-content:center}
.s-filters-footer salla-button{
  flex: 1 1 0%;
}
.s-filters-footer salla-button button{
  width: 100%;
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, 1);
  color: rgba(239, 68, 68, var(--tw-text-opacity, 1));
}
.s-filters-footer salla-button button:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(239, 68, 68, 1);
  background-color: rgba(239, 68, 68, var(--tw-bg-opacity, 1));
}
.s-filters-widget-container{
  margin-bottom: 0.5rem;
  display: block;
  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-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.s-product-card-content-footer.s-filters-widget-container button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-filters-widget-container{border-radius:.25rem}
.dark .s-filters-widget-container{background-color:var(--dark-grey)}
.s-filters-widget-content{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.s-filters-widget-opened{
  visibility: visible;
  opacity: 1;
}
.s-filters-widget-opened .tooltip-content{visibility:visible;opacity:1;transform:translate(82px, -110px)}
.s-filters-widget-opened{height:100% !important}
.s-filters-widget-opened .tooltip-content{
  opacity: 1;visibility:visible;
}
.s-filters-widget-closed{height:0 !important;
}
.s-filters-widget-closed{
  visibility: hidden;
  padding: 0px;
  opacity: 0;
}
.s-filters-widget-title{
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  line-height: 1.5rem;font-family:var(--font-main);
}
.s-filters-widget-title *{pointer-events:none}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-filters-widget-title>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-filters-widget-title>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-filters-widget-title>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-filters-widget-title>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-filters-widget-title>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-filters-widget-title>.justify-center{order:1}.align-start-logo.store-header .container>.s-filters-widget-title>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-title.s-filters-widget-title a{font-family:var(--font-main)}
.dark .s-filters-widget-title{color:var(--dark-text-main)}
.s-filters-widget-title *{
  pointer-events: none;
}
.s-filters-widget-arrow{
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #414042;
  color: var(--color-primary);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.s-filters-widget-arrow svg{
  height: 1.25rem;
  width: 1.25rem;
}
.s-filters-widget-active-arrow{
  --tw-rotate: 90deg;
  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-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.s-filters-widget-values{
  overflow: hidden;
  padding-top: 0.5rem;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.s-filters-widget-values .s-price-range-inputs{
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  gap: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-filters-widget-values .s-price-range-inputs>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-filters-widget-values .s-price-range-inputs>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-filters-widget-values .s-price-range-inputs>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-filters-widget-values .s-price-range-inputs>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-filters-widget-values .s-price-range-inputs>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-filters-widget-values .s-price-range-inputs>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-filters-widget-values .s-price-range-inputs{order:1}.align-start-logo.store-header .container>.s-filters-widget-values .s-price-range-inputs>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-filters-widget-values .s-price-range-inputs{justify-content:center}
@media (min-width: 768px){
  .s-filters-widget-values .s-price-range-inputs{
    flex-wrap: wrap;
  }
  .s-filters-widget-values .s-price-range-inputs salla-button{
    width: 100%;
  }
  .s-filters-widget-values .s-price-range-inputs salla-button button{
    margin-left: 0px;
    margin-right: 0px;
    width: 100%;
  }
}
.s-filters-widget-values .s-price-range-relative{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-filters-widget-values .s-price-range-relative>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-filters-widget-values .s-price-range-relative>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-filters-widget-values .s-price-range-relative>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-filters-widget-values .s-price-range-relative>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-filters-widget-values .s-price-range-relative>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-filters-widget-values .s-price-range-relative>.justify-center{order:1}.align-start-logo.store-header .container>.s-filters-widget-values .s-price-range-relative>.justify-end{order:3;justify-content:start;width:auto}}
[dir="ltr"] .s-filters-widget-values .s-price-range-currency{
  right: 0px;
}
[dir="rtl"] .s-filters-widget-values .s-price-range-currency{
  left: 0px;
}
.s-filters-widget-values .s-price-range-currency{
  position: absolute;
  top: 50%;
  --tw-translate-y: -50%;
  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));
}
[dir="rtl"] .s-filters-widget-values .s-price-range-currency{
  left: 0px;
}
[dir="ltr"] .s-filters-widget-values .s-price-range-currency{
  right: 0px;
}
input[type=radio].sr-only div.s-filters-widget-values .s-price-range-currency{transition:all .3s}
input[type=radio].sr-only:checked~div.s-filters-widget-values .s-price-range-currency{border-color:var(--color-main)}
.dark .s-filters-widget-values .s-price-range-currency{color:var(--dark-text-main)}
.s-filters-widget-values .s-price-range-number-input{
  border-radius: 0.375rem;
  border-style: none;
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, 1);
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity, 1));
}
.s-product-card-content-footer.s-filters-widget-values .s-price-range-number-input button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-filters-widget-values .s-price-range-number-input{border-radius:.25rem}
.dark .s-filters-widget-values .s-price-range-number-input{background-color:var(--dark-bg-main)}
@media (min-width: 768px){
  .s-filters-widget-values .s-price-range-number-input{
    width: 5rem;
  }
}
.dark .s-filters-widget-values .s-price-range-gray-text{color:var(--dark-text-main)}
.s-filters-widget-more{
  margin-top: 0.5rem;
  display: block;
  cursor: pointer;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #414042;
  color: var(--color-primary);
}
.s-filters-widget-more *{pointer-events: none}
.s-filters-widget-plusminus{
  position: relative;
  height: 0.75rem;
  width: 0.75rem;
  --tw-rotate: 90deg;
  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));
}
[dir="ltr"] .s-filters-widget-plusminus::before,[dir="ltr"] .s-filters-widget-plusminus::after{
  right: 50%;
}
[dir="rtl"] .s-filters-widget-plusminus::before,[dir="rtl"] .s-filters-widget-plusminus::after{
  left: 50%;
}
.s-filters-widget-plusminus::before,.s-filters-widget-plusminus::after{
  position: absolute;
  top: 50%;
  height: 100%;
  width: 1px;
  --tw-translate-x: -50%;
  --tw-translate-y: -50%;
  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(209, 213, 219, 1);
  background-color: rgba(209, 213, 219, var(--tw-bg-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  --tw-content: "";
  content: var(--tw-content);
}
[dir="rtl"] .s-filters-widget-plusminus::before,[dir="rtl"] .s-filters-widget-plusminus::after{
  left: 50%;
}
[dir="ltr"] .s-filters-widget-plusminus::before,[dir="ltr"] .s-filters-widget-plusminus::after{
  right: 50%;
}
input[type=radio].sr-only div.s-filters-widget-plusminus::before,input[type=radio].sr-only div.s-filters-widget-plusminus::after{transition:all .3s}
input[type=radio].sr-only:checked~div.s-filters-widget-plusminus::before,input[type=radio].sr-only:checked~div.s-filters-widget-plusminus::after{border-color:var(--color-main)}
.dark .s-filters-widget-plusminus::before,.dark .s-filters-widget-plusminus::after{color:var(--dark-text-sec)}
.s-filters-widget-plusminus::after{
  --tw-rotate: 90deg;
  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-filters-widget-plusminus-active::before{
  --tw-translate-y: -50%;
  --tw-rotate: -90deg;
  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;
}
.s-filters-widget-plusminus-active::after{
  --tw-translate-y: -50%;
  --tw-rotate: 0deg;
  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));
  background-color: #414042;
  background-color: var(--color-primary);
}
.filters-trigger,.prod-filter{flex:0 0 48%}
@media only screen and (max-width: 1024px){.product-index .mm-ocd__content{
    overflow-y: auto;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));-ms-overflow-style:none;scrollbar-width:none;overflow-y:scroll;
  }
.product-index .mm-ocd__content::-webkit-scrollbar{display:none}
.dark .product-index .mm-ocd__content{background-color:var(--dark-bg-main)}.product-index .mm-ocd__content .filters-menu{
    display: flex;
    flex-direction: column;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.product-index .mm-ocd__content .filters-menu>.justify-start{margin-right:0;
    }[dir="rtl"] .align-start-logo.store-header .container>.product-index .mm-ocd__content .filters-menu>.justify-start{margin-left:0;
    }[dir="ltr"] .align-start-logo.store-header .container>.product-index .mm-ocd__content .filters-menu>.justify-start{margin-left:auto;
    }[dir="rtl"] .align-start-logo.store-header .container>.product-index .mm-ocd__content .filters-menu>.justify-start{margin-right:auto;
    }.align-start-logo.store-header .container>.product-index .mm-ocd__content .filters-menu>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.product-index .mm-ocd__content .filters-menu>.justify-center{order:1}.align-start-logo.store-header .container>.product-index .mm-ocd__content .filters-menu>.justify-end{order:3;justify-content:start;width:auto}}}
[dir=ltr] .s-product-card-promotion-title{border-bottom-right-radius:.75rem !important}
custom-salla-product-card.rounded-none{border-radius:0 !important;border-radius:initial !important}
custom-salla-product-card.rounded-sm{border-radius:.125rem !important}
custom-salla-product-card.rounded-md{border-radius:.25rem !important}
custom-salla-product-card.rounded-lg{border-radius:.5rem !important}
custom-salla-product-card.rounded-xl{border-radius:.75rem !important}
custom-salla-product-card.rounded-2xl{border-radius:1rem !important}
.dark .s-metadata-box{color:var(--dark-text-main);background-color:var(--dark-grey)}
.dark .s-metadata-row-name{color:var(--dark-text-main)}
.dark .s-metadata-row-value{color:var(--dark-text-main)}
.buy-with .s-products-list-wrapper{margin-bottom:0 !important;margin-bottom:initial !important}
.angel-discountcoupon{
  border-width: 2px;
  border-style: dashed;
  --tw-border-opacity: 1;
  border-color: rgba(239, 68, 68, 1);
  border-color: rgba(239, 68, 68, var(--tw-border-opacity, 1));
}
.angel-discountcoupon .coupon-value{
  border-radius: 0.375rem;
}
.s-product-card-content-footer.angel-discountcoupon .coupon-value button{
  border-radius: 0.375rem;
}
custom-salla-product-card.angel-discountcoupon .coupon-value{border-radius:.25rem}
.angel-discountcoupon .copycodebtn{background-color:#414042;background-color:var(--color-primary);color:var(--text-btn)}
.angel-discountcoupon .coupon-copied{
  --tw-border-opacity: 1;
  border-color: rgba(22, 163, 74, 1);
  border-color: rgba(22, 163, 74, var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgba(22, 163, 74, 1);
  background-color: rgba(22, 163, 74, var(--tw-bg-opacity, 1));
}
.sticky-product-bar__quantity{
  width: 100%;
}
salla-quantity-input{
  width: 100%;
}
salla-quantity-input .s-quantity-input-container{
  width: 100%;
}
.s-add-product-button-main{width:100% !important}
salla-mini-checkout-widget .s-fast-checkout-button{padding:0;padding:initial}
.customer-wishlist .s-product-card-wishlist-btn{position:absolute !important}
.customer-wishlist .s-button-wrap svg{height:2rem;width:2rem}
.customer-wishlist .s-product-card-rating{position:relative}
.magnify-wrapper .img-magnifier-glass{
  display: none;
}
.index section.s-block.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;width:300px;height:300px;opacity:0;pointer-events:none;transform:scale(0);transition:transform .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:.3s}
.cat-slider-container .s-slider-block__title{
  margin-bottom: 0.5rem;
}
.s-comments-page{
  padding-top: 0px;
}
.s-comments-container{
  padding-left: 0px;
  padding-right: 0px;
}
.s-comments-title{
  display: none;
}
.index section.s-block.s-comments-title{display:none}
.s-comments .s-reviews-summary-wrapper{
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
  padding-left: 0px;
  padding-right: 0px;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-comments .s-reviews-summary-wrapper>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments .s-reviews-summary-wrapper>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-comments .s-reviews-summary-wrapper>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments .s-reviews-summary-wrapper>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-comments .s-reviews-summary-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-comments .s-reviews-summary-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.s-comments .s-reviews-summary-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
@media (min-width: 768px){
  .s-comments .s-reviews-summary-wrapper{
    margin-top: 0.5rem;
    flex-direction: row;
    gap: 2rem;
  }
}
.s-comments .s-reviews-summary-header{
  margin-bottom: 0px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.s-comments .s-reviews-summary-header{order:1}}
.s-product-card-content-sub.s-comments .s-reviews-summary-header{justify-content:center}
.s-comments .s-reviews-summary-average{
  text-align: center;
}
.dark .s-comments .s-reviews-summary-average{color:var(--dark-text-main)}
.s-comments .s-reviews-summary-recommendation-percentage{
  text-align: center;
}
.dark .s-comments .s-reviews-summary-recommendation-percentage{color:var(--dark-text-main)}
.s-comments .s-reviews-summary-count{
  text-align: center;
}
.dark .s-comments .s-reviews-summary-count{color:var(--dark-text-sec)}
.s-comments .s-reviews-summary-rows{
  width: 100%;
}
.dark .s-comments .s-reviews-summary-percentage{color:var(--dark-text-sec)}
.dark .s-comments .s-reviews-summary-row-rate{color:var(--dark-text-sec)}
.dark .s-comments .s-reviews-summary-progress .s-progress-bar-wrapper{background-color:var(--dark-bg-main)}
.dark .s-comments-count-label{color:var(--dark-text-main)}
.s-comments-item{
  margin-bottom: 1.25rem;
  border-style: none;
  padding-bottom: 0px;
}
salla-installment>.s-comments-item{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.s-comments-item button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.s-comments-item button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.s-comments-item button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.s-comments-item button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.s-comments-item button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.s-comments-item button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.s-comments-item button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.s-comments-item{border-radius:.75rem}
.dark salla-installment>.s-comments-item{color:var(--dark-text-main);background-color:var(--dark-grey)}
.s-comments-item-avatar{
  position: relative;
  flex-direction: column;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-comments-item-avatar>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-item-avatar>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-comments-item-avatar>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-item-avatar>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-comments-item-avatar>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-comments-item-avatar>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-comments-item-avatar{order:1}.align-start-logo.store-header .container>.s-comments-item-avatar>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-comments-item-avatar{justify-content:center}
@media (min-width: 768px){
  .min--2 .s-comments-item-avatar{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-comments-item-avatar{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-comments-item-avatar{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-comments-item-avatar{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-comments-item-avatar{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-comments-item-avatar{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.s-comments-item-avatar img{
  height: 2rem;
  min-height: 2rem;
  width: 2rem;
  min-width: 2rem;
  --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: contain;
     object-fit: contain;
}
.dark .s-comments-item-avatar img{background-color:var(--dark-bg-main)}
.s-comments-item-avatar img.lazy{
  visibility: visible;
  opacity: 1;
}
.s-comments-item-avatar img.lazy .tooltip-content{visibility:visible;opacity:1;transform:translate(82px, -110px)}
[dir="ltr"] .s-comments-item-avatar::after{
  left: 50%;
}
[dir="rtl"] .s-comments-item-avatar::after{
  right: 50%;
}
.s-comments-item-avatar::after{
  display: block;
  height: 100%;
  width: 0.125rem;
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity, 1));
  opacity: 0;
  --tw-content: "";
  content: var(--tw-content);
}
[dir="rtl"] .s-comments-item-avatar::after{
  right: 50%;
}
[dir="ltr"] .s-comments-item-avatar::after{
  left: 50%;
}
.s-comments-item-avatar:is(.dark *)::after{
  --tw-bg-opacity: 0.2;
}
.s-comments-item[\:has\(.s-comments-item-admin\)] .s-comments-item-avatar:after{opacity:1}
.s-comments-item:has(.s-comments-item-admin) .s-comments-item-avatar:after{opacity:1}
.s-comments-item-inner .s-comments-flex-1{
  flex: 1 1 0%;
  border-radius: 0.75rem;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity, 1));
  --tw-bg-opacity: 0.2;
  padding: 0.75rem;
  --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), 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);
}
.s-product-card-content-footer.s-comments-item-inner .s-comments-flex-1 button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 .s-product-card-content-footer.s-comments-item-inner .s-comments-flex-1 button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .s-product-card-content-footer.s-comments-item-inner .s-comments-flex-1 button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .s-product-card-content-footer.s-comments-item-inner .s-comments-flex-1 button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .s-product-card-content-footer.s-comments-item-inner .s-comments-flex-1 button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .s-product-card-content-footer.s-comments-item-inner .s-comments-flex-1 button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .s-product-card-content-footer.s-comments-item-inner .s-comments-flex-1 button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-card.s-comments-item-inner .s-comments-flex-1{border-radius:.75rem}
.s-comments-item-inner .s-comments-flex-1:is(.dark *){
  --tw-bg-opacity: 0.05;
}
.s-comments-item-user-info{
  margin-bottom: 0px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-comments-item-user-info>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-item-user-info>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-comments-item-user-info>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-comments-item-user-info>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-comments-item-user-info>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-comments-item-user-info>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-comments-item-user-info{order:1}.align-start-logo.store-header .container>.s-comments-item-user-info>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-comments-item-user-info{justify-content:center}
[dir="ltr"] .s-comments-item-user-info-name{
  margin-right: 0px;
}
[dir="rtl"] .s-comments-item-user-info-name{
  margin-left: 0px;
}
.s-comments-item-user-info-name{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.dark .s-comments-item-user-info-name{color:var(--dark-text-main)}
.s-comments-item-timestamp{
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
}
.dark .s-comments-item-timestamp{color:var(--dark-text-sec)}
.s-comments-item-content{
  margin-top: 0.25rem;
}
.s-comments-item-content p{
  max-width: none;
  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));
}
.dark .s-comments-item-content p{color:var(--dark-text-main)}
.s-comments-item-stars{
  margin-bottom: 0px;
}
.s-comments-item-has-order-check-icon{
  height: 1rem;
  width: 1rem;
  --tw-bg-opacity: 1;
  background-color: rgba(59, 130, 246, 1);
  background-color: rgba(59, 130, 246, 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-comments-item-has-order-check-icon path{
  fill: #fff;
}
.s-comments-item-has-order-check-text,.s-comments-item-rated-widget{
  display: none;
}
.index section.s-block.s-comments-item-has-order-check-text,.index section.s-block.s-comments-item-rated-widget{display:none}
[dir="ltr"] .s-comments-item-admin-wrapper{
  padding-left: 15px;
}
[dir="rtl"] .s-comments-item-admin-wrapper{
  padding-right: 15px;
}
.s-comments-item-admin-wrapper{
  margin-top: 0px;
}
.s-comments-item-admin-wrapper .s-comments-item-inner .s-comments-flex-1{
  margin-top: 0.5rem;
}
.s-comments-item-admin-wrapper .s-comments-item-inner .s-comments-item-avatar{
  justify-content: flex-start;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-comments-item-admin-wrapper .s-comments-item-inner .s-comments-item-avatar{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-comments-item-admin-wrapper .s-comments-item-inner .s-comments-item-avatar{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-comments-item-admin-wrapper .s-comments-item-inner .s-comments-item-avatar{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-comments-item-admin-wrapper .s-comments-item-inner .s-comments-item-avatar{margin-right:auto;
  }.align-start-logo.store-header .container>.flex>.s-comments-item-admin-wrapper .s-comments-item-inner .s-comments-item-avatar{order:2;justify-content:end;width:auto}}
.s-product-card-starting-price.s-comments-item-admin-wrapper .s-comments-item-inner .s-comments-item-avatar{justify-content:start}
.s-comments-item-admin-wrapper .s-comments-item-inner .s-comments-item-avatar:after{
  display: none;
}
.index section.s-block.s-comments-item-admin-wrapper .s-comments-item-inner .s-comments-item-avatar:after{display:none}
.s-comments-item-admin-wrapper .s-comments-item-inner .s-comments-item-avatar img{
  margin-top: 0.5rem;
}
.s-comments-item-reply-icon svg{
  display: none;
}
.index section.s-block.s-comments-item-reply-icon svg{display:none}
[dir="ltr"] .s-comments-item-reply-icon:after{
  border-left-width: 2px;
}
[dir="rtl"] .s-comments-item-reply-icon:after{
  border-right-width: 2px;
}
.s-comments-item-reply-icon:after{
  display: block;
  height: 1rem;
  width: 1.25rem;
  border-bottom-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, 1);
  border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
  padding-top: 1.25rem;
  --tw-content: "";
  content: var(--tw-content);
}
[dir="ltr"] .s-comments-item-reply-icon:after{
  border-bottom-left-radius: 0.375rem;
}
[dir="rtl"] .s-comments-item-reply-icon:after{
  border-bottom-right-radius: 0.375rem;
}
[dir="ltr"] .s-comments-item-reply-icon:after{
  border-left-width: 2px;
}
[dir="rtl"] .s-comments-item-reply-icon:after{
  border-right-width: 2px;
}
.s-comments-item-reply-icon:is(.dark *):after{
  --tw-border-opacity: 0.2;
}
.sub-categories[\:has\(.selected-cat-item\)]{
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
  padding: 0.5rem;
}
.sub-categories[\:has\(.selected-cat-item\)]{
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
  padding: 0.5rem;
}
.sub-categories[\:has\(.selected-cat-item\)]{
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
  padding: 0.5rem;
}
.sub-categories:has(.selected-cat-item){
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
  padding: 0.5rem;
}
.s-product-card-content-footer.sub-categories[\:has\(.selected-cat-item\)] button{
  border-radius: 0.5rem;
}
.s-product-card-content-footer.sub-categories:has(.selected-cat-item) button{
  border-radius: 0.5rem;
}
custom-salla-product-card.sub-categories[\:has\(.selected-cat-item\)]{border-radius:.5rem}
custom-salla-product-card.sub-categories:has(.selected-cat-item){border-radius:.5rem}
.sub-categories[\:has\(.selected-cat-item\)]:is(.dark *){
  background-color: var(--dark-bg-main);
}
.sub-categories:has(.selected-cat-item):is(.dark *){
  background-color: var(--dark-bg-main);
}
.sub-categories .selected-cat-item{
  display: flex;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.sub-categories .selected-cat-item>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.sub-categories .selected-cat-item>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.sub-categories .selected-cat-item>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.sub-categories .selected-cat-item>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.sub-categories .selected-cat-item>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.sub-categories .selected-cat-item>.justify-center{order:1}.align-start-logo.store-header .container>.sub-categories .selected-cat-item>.justify-end{order:3;justify-content:start;width:auto}}
.sub-categories .selected-cat-img{
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.sub-categories .selected-cat-img>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.sub-categories .selected-cat-img>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.sub-categories .selected-cat-img>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.sub-categories .selected-cat-img>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.sub-categories .selected-cat-img>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.sub-categories .selected-cat-img>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.sub-categories .selected-cat-img{order:1}.align-start-logo.store-header .container>.sub-categories .selected-cat-img>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.sub-categories .selected-cat-img{justify-content:center}
.sub-categories .selected-cat-img img{margin:0 !important;margin:initial !important}
.sub-categories .selected-cat-img img{height:auto}
.sub-categories[\:has\(.selected-cat-item\%20input\[name\%3Dselected-cat\]\:checked\)]{background:#414042;background:var(--color-primary);color:var(--text-btn)}
.sub-categories[\:has\(.selected-cat-item\%20input\[name\%3Dselected-cat\]\:checked\)]{background:#414042;background:var(--color-primary);color:var(--text-btn)}
.sub-categories:has(.selected-cat-item input[name=selected-cat]:checked){background:#414042;background:var(--color-primary);color:var(--text-btn)}
.brands-nav__item.is-selected{
  background-color: #414042;
  background-color: var(--color-primary);
}
.brands-nav__item span{
  pointer-events: none;
}
[dir="ltr"] .brands-nav.is-sticky{
  left: 0.5rem;
}
[dir="rtl"] .brands-nav.is-sticky{
  right: 0.5rem;
}
.brands-nav.is-sticky{
  position: fixed;
  top: 2.25rem;
  z-index: 1;
  height: 100%;
  flex-direction: column;
  flex-wrap: wrap;
  padding-top: 4rem;
  padding-bottom: 2.5rem;
}
[dir="rtl"] .brands-nav.is-sticky{
  right: 0.5rem;
}
[dir="ltr"] .brands-nav.is-sticky{
  left: 0.5rem;
}
.brands-nav.is-sticky .brands-nav__item.is-selected{
  --tw-scale-x: 1.2;
  --tw-scale-y: 1.2;
  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));color:var(--text-btn);
}
.no-content-placeholder{
  height: 100%;
  gap: 1rem;
  padding-top: 4rem;
  padding-bottom: 5rem;
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.no-content-placeholder>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.no-content-placeholder>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.no-content-placeholder>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.no-content-placeholder>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.no-content-placeholder>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.no-content-placeholder>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.no-content-placeholder{order:1}.align-start-logo.store-header .container>.no-content-placeholder>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.no-content-placeholder{justify-content:center}
.dark .no-content-placeholder{color:var(--dark-text-sec)}
.no-content-placeholder .icon{
  height: 5rem;
  width: 5rem;
  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: 1.875rem;
  line-height: 2.25rem;
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.no-content-placeholder .icon>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.no-content-placeholder .icon>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.no-content-placeholder .icon>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.no-content-placeholder .icon>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.no-content-placeholder .icon>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.no-content-placeholder .icon>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.no-content-placeholder .icon{order:1}.align-start-logo.store-header .container>.no-content-placeholder .icon>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.no-content-placeholder .icon{justify-content:center}
@media (min-width: 768px){
  .min--2 .no-content-placeholder .icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .no-content-placeholder .icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .no-content-placeholder .icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .no-content-placeholder .icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .no-content-placeholder .icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .no-content-placeholder .icon{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.dark .no-content-placeholder .icon{color:var(--dark-text-sec);background-color:var(--dark-grey)}
@media (min-width: 768px){
  .no-content-placeholder .icon{
    height: 7rem;
    width: 7rem;
    font-size: 3rem;
    line-height: 1;
  }
}
.no-content-placeholder p{
  font-size: 1.125rem;
  line-height: 1.75rem;
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, 1);
  color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}
.dark .no-content-placeholder p{color:var(--dark-text-sec)}
@media (min-width: 768px){
  .no-content-placeholder p{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .no-content-placeholder .btn{
    font-size: 1rem;
  }
}
.no-content-placeholder .btn{padding:3px 10px !important}
.no-content-placeholder--comments{
  padding-top: 1.25rem;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, 1);
  color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}
.dark .no-content-placeholder--comments{color:var(--dark-text-sec)}
.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{
  margin-top: 0.75rem;
  border-radius: 0.375rem;
  border-style: none;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
}
.s-product-card-content-footer.s-gifting-widget .s-list-tile-item button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-gifting-widget .s-list-tile-item{border-radius:.25rem}
.dark .s-gifting-widget .s-list-tile-item{background-color:var(--dark-grey)}
.s-gifting-widget .s-list-tile-item .s-list-tile-item-title{
  color: #414042;
  color: var(--color-primary);
}
.s-gifting-widget .s-list-tile-item .s-gifting-widget-action{
  display: inline-flex;
  flex: 1 1 0%;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 0.375rem;
  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, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.s-gifting-widget .s-list-tile-item .s-gifting-widget-action{order:1}}
.s-product-card-content-sub.s-gifting-widget .s-list-tile-item .s-gifting-widget-action{justify-content:center}
.s-product-card-content-footer.s-gifting-widget .s-list-tile-item .s-gifting-widget-action button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-gifting-widget .s-list-tile-item .s-gifting-widget-action{border-radius:.25rem}
.s-gifting-widget .s-list-tile-item .s-gifting-widget-action:hover{
  opacity: 0.8;
}
.s-gifting-widget .s-list-tile-item .s-gifting-widget-action{
  border-width: 1px;
  border-color: #414042;
  border-color: var(--color-primary);
  background-color: #414042;
  background-color: var(--color-primary);
  color: #ff6767;
  color: var(--color-primary-reverse);color:var(--text-btn);display: inline-flex;flex: 1 1 0%;align-items: center;justify-content: center;white-space: nowrap;border-radius: 0.375rem;padding-left: 1.5rem;padding-right: 1.5rem;padding-bottom: 0.625rem;padding-top: 0.5rem;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, -webkit-backdrop-filter;transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);transition-duration: 300ms;font-family:var(--font-main);
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.s-gifting-widget .s-list-tile-item .s-gifting-widget-action{order:1}}
.s-product-card-content-sub.s-gifting-widget .s-list-tile-item .s-gifting-widget-action{justify-content:center}
.s-product-card-content-footer.s-gifting-widget .s-list-tile-item .s-gifting-widget-action button{
  border-radius: 0.375rem;
}
.s-product-card-content-title.s-gifting-widget .s-list-tile-item .s-gifting-widget-action a{font-family:var(--font-main)}
custom-salla-product-card.s-gifting-widget .s-list-tile-item .s-gifting-widget-action{border-radius:.25rem}
.s-gifting-widget .s-list-tile-item .s-gifting-widget-action{color:var(--text-btn)}
.s-gifting-widget .s-list-tile-item .s-gifting-widget-action:hover{
  opacity: 0.8;
}
.s-gifting-widget .s-list-tile-item .s-gifting-widget-action.faq-link{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  font-size: 0.75rem;
  line-height: 1rem;
}
.s-gifting-widget .s-list-tile-item .s-gifting-widget-action .loader{width:0;opacity:0;height:16px;transform:scale(0);transition:.3s}
.s-gifting-widget .s-list-tile-item .s-gifting-widget-action.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), 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);
}
.s-gifting-widget .s-list-tile-item .s-gifting-widget-action.btn:disabled:hover{
  background-color: transparent;
}
.s-gifting-widget .s-list-tile-item .s-gifting-widget-action:disabled .s-button-text{
  opacity: 0.7;
}
.s-gifting-widget .s-list-tile-item .s-gifting-widget-action.lang,.s-gifting-widget .s-list-tile-item .s-gifting-widget-action.currency{
  padding: 0.625rem;
  padding-top: 0.5rem;
  color: inherit;
}
.dark .s-gifting-widget .s-list-tile-item .s-gifting-widget-action.lang,.dark .s-gifting-widget .s-list-tile-item .s-gifting-widget-action.currency{color:var(--dark-text-main)}
.s-gifting-widget .s-list-tile-item .s-gifting-widget-action.lang,.s-gifting-widget .s-list-tile-item .s-gifting-widget-action.currency{
  padding: 0.625rem;
  padding-top: 0.5rem;
  color: inherit;
}
.dark .s-gifting-widget .s-list-tile-item .s-gifting-widget-action.lang,.dark .s-gifting-widget .s-list-tile-item .s-gifting-widget-action.currency{color:var(--dark-text-main)}
.mobile-menu .lang.s-gifting-widget .s-list-tile-item .s-gifting-widget-action{padding:1rem}
@media (min-width: 768px){
  .no-content-placeholder .s-gifting-widget .s-list-tile-item .s-gifting-widget-action{
    font-size: 1rem;
  }
}
.no-content-placeholder .s-gifting-widget .s-list-tile-item .s-gifting-widget-action{padding:3px 10px}
.s-gifting-widget .s-list-tile-item .s-gifting-widget-action-content{
  display: flex;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-gifting-widget .s-list-tile-item .s-gifting-widget-action-content>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-gifting-widget .s-list-tile-item .s-gifting-widget-action-content>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-gifting-widget .s-list-tile-item .s-gifting-widget-action-content>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-gifting-widget .s-list-tile-item .s-gifting-widget-action-content>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-gifting-widget .s-list-tile-item .s-gifting-widget-action-content>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-gifting-widget .s-list-tile-item .s-gifting-widget-action-content>.justify-center{order:1}.align-start-logo.store-header .container>.s-gifting-widget .s-list-tile-item .s-gifting-widget-action-content>.justify-end{order:3;justify-content:start;width:auto}}
.landing-page{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
}
@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(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: var(--tw-content)}
input[type=radio].sr-only div.landing-page>header:before{transition:all .3s}
input[type=radio].sr-only:checked~div.landing-page>header:before{border-color:var(--color-main)}
.index section.s-block.landing-page>header:before{display:none}
@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: 480px){[dir="ltr"] .align-start-logo.store-header .container>.landing-page .center-products .vertical-products .s-products-list-wrapper>.justify-start{margin-right:0;
    }[dir="rtl"] .align-start-logo.store-header .container>.landing-page .center-products .vertical-products .s-products-list-wrapper>.justify-start{margin-left:0;
    }[dir="ltr"] .align-start-logo.store-header .container>.landing-page .center-products .vertical-products .s-products-list-wrapper>.justify-start{margin-left:auto;
    }[dir="rtl"] .align-start-logo.store-header .container>.landing-page .center-products .vertical-products .s-products-list-wrapper>.justify-start{margin-right:auto;
    }.align-start-logo.store-header .container>.landing-page .center-products .vertical-products .s-products-list-wrapper>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.landing-page .center-products .vertical-products .s-products-list-wrapper>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.landing-page .center-products .vertical-products .s-products-list-wrapper{order:1}.align-start-logo.store-header .container>.landing-page .center-products .vertical-products .s-products-list-wrapper>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.landing-page .center-products .vertical-products .s-products-list-wrapper{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;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.landing-page--quick-buy salla-mini-checkout-widget>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.landing-page--quick-buy salla-mini-checkout-widget>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.landing-page--quick-buy salla-mini-checkout-widget>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.landing-page--quick-buy salla-mini-checkout-widget>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.landing-page--quick-buy salla-mini-checkout-widget>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.landing-page--quick-buy salla-mini-checkout-widget>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.landing-page--quick-buy salla-mini-checkout-widget{order:1}.align-start-logo.store-header .container>.landing-page--quick-buy salla-mini-checkout-widget>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.landing-page--quick-buy salla-mini-checkout-widget{justify-content:center}
.landing-page--quick-buy salla-mini-checkout-widget{--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), 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), 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);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-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(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.landing-page--quick-buy>.justify-start{margin-right:0;
    }[dir="rtl"] .align-start-logo.store-header .container>.landing-page--quick-buy>.justify-start{margin-left:0;
    }[dir="ltr"] .align-start-logo.store-header .container>.landing-page--quick-buy>.justify-start{margin-left:auto;
    }[dir="rtl"] .align-start-logo.store-header .container>.landing-page--quick-buy>.justify-start{margin-right:auto;
    }.align-start-logo.store-header .container>.landing-page--quick-buy>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.landing-page--quick-buy>.justify-center{order:1}.align-start-logo.store-header .container>.landing-page--quick-buy>.justify-end{order:3;justify-content:start;width:auto}}@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), 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;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.landing-page.notfound>header>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.landing-page.notfound>header>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.landing-page.notfound>header>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.landing-page.notfound>header>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.landing-page.notfound>header>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.landing-page.notfound>header>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.landing-page.notfound>header{order:1}.align-start-logo.store-header .container>.landing-page.notfound>header>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.landing-page.notfound>header{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;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.landing-page.expired>header>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.landing-page.expired>header>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.landing-page.expired>header>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.landing-page.expired>header>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.landing-page.expired>header>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.landing-page.expired>header>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.landing-page.expired>header{order:1}.align-start-logo.store-header .container>.landing-page.expired>header>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.landing-page.expired>header{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}
.store-loyalty-program .breadcrumbs{
  padding-bottom: 0px;
  padding-top: 4rem;
}
.store-loyalty-program .breadcrumbs ol{
  justify-content: center;
}
@media(max-width: 480px){.align-start-logo.store-header .container>.flex>.store-loyalty-program .breadcrumbs ol{order:1}}
.s-product-card-content-sub.store-loyalty-program .breadcrumbs ol{justify-content:center}
@media (min-width: 1024px){
  .store-loyalty-program .breadcrumbs ol{
    justify-content: flex-start;
  }
}
.store-loyalty-program .breadcrumbs a,.store-loyalty-program .breadcrumbs span,.store-loyalty-program .breadcrumbs .arrow{
  color: rgba(255, 255, 255, 0.9);
}
.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), 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);
}
.s-product-card-content-footer.loyalty__banner button{
  border-radius: 0.375rem;
}
custom-salla-product-card.loyalty__banner{border-radius:.25rem}
@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;
  }
  [dir="ltr"] .loyalty__banner-inner > :not([hidden]) ~ :not([hidden]){
    margin-right: calc(3rem * var(--tw-space-s-reverse));
  }
  [dir="rtl"] .loyalty__banner-inner > :not([hidden]) ~ :not([hidden]){
    margin-left: calc(3rem * var(--tw-space-s-reverse));
  }
  [dir="ltr"] .loyalty__banner-inner > :not([hidden]) ~ :not([hidden]){
    margin-left: calc(3rem * (1 - var(--tw-space-s-reverse)));
    margin-left: calc(3rem * calc(1 - var(--tw-space-s-reverse)));
  }
  [dir="rtl"] .loyalty__banner-inner > :not([hidden]) ~ :not([hidden]){
    margin-right: calc(3rem * (1 - var(--tw-space-s-reverse)));
    margin-right: calc(3rem * calc(1 - var(--tw-space-s-reverse)));
  }
  [dir="ltr"] .loyalty__banner-inner > :not([hidden]) ~ :not([hidden]){
    margin-left: calc(3rem * (1 - var(--tw-space-s-reverse)));
  }
  [dir="rtl"] .loyalty__banner-inner > :not([hidden]) ~ :not([hidden]){
    margin-right: calc(3rem * (1 - var(--tw-space-s-reverse)));
  }
  .loyalty__banner-inner > :not([hidden]) ~ :not([hidden]){
    --tw-space-s-reverse: 0;
  }
}
.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 .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(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(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.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), 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(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.points-ways__list .way-item>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.points-ways__list .way-item>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.points-ways__list .way-item>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.points-ways__list .way-item>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.points-ways__list .way-item>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.points-ways__list .way-item>.justify-center{order:1}.align-start-logo.store-header .container>.points-ways__list .way-item>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-footer.points-ways__list .way-item button{
  border-radius: 0.375rem;
}
custom-salla-product-card.points-ways__list .way-item{border-radius:.25rem}
.points-ways__list .way-item__icon{
  position: relative;
  height: 3rem;
  width: 3rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.points-ways__list .way-item__icon>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.points-ways__list .way-item__icon>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.points-ways__list .way-item__icon>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.points-ways__list .way-item__icon>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.points-ways__list .way-item__icon>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.points-ways__list .way-item__icon>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.points-ways__list .way-item__icon{order:1}.align-start-logo.store-header .container>.points-ways__list .way-item__icon>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.points-ways__list .way-item__icon{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 .3s}
input[type=radio].sr-only:checked~div.points-ways__list .way-item__icon span{border-color:var(--color-main)}
@media (min-width: 768px){
  .min--2 .points-ways__list .way-item__icon span{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 .points-ways__list .way-item__icon span{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 .points-ways__list .way-item__icon span{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 .points-ways__list .way-item__icon span{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 .points-ways__list .way-item__icon span{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 .points-ways__list .way-item__icon span{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
.points-ways__list .way-item__content{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.points-ways__list .way-item__content>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.points-ways__list .way-item__content>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.points-ways__list .way-item__content>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.points-ways__list .way-item__content>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.points-ways__list .way-item__content>.justify-start{order:2;justify-content:end;width:auto}[dir="ltr"] .align-start-logo.store-header .container>.flex>.points-ways__list .way-item__content{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.points-ways__list .way-item__content{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.flex>.points-ways__list .way-item__content{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.points-ways__list .way-item__content{margin-right:auto;
  }.align-start-logo.store-header .container>.flex>.points-ways__list .way-item__content{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.points-ways__list .way-item__content>.justify-center{order:1}.align-start-logo.store-header .container>.points-ways__list .way-item__content>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-starting-price.points-ways__list .way-item__content{justify-content: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));
}
.dark .points-ways__list .way-item__content p{color:var(--dark-text-sec)}
.points-ways__list .way-item__action{
  margin-top: auto;
  padding-top: 1rem;
}
.dark .s-loyalty-header-subtitle{color:var(--dark-text-main)}
.cart .s-list-tile-item::after{display:none !important}
.dark .loyalty .s-list-tile-item{color:var(--dark-text-main)}
.dark .s-list-tile-item{color:var(--dark-text-main);background-color:var(--dark-grey)}
.virtooal{margin:15px 0;border-radius:10px;border:1px solid #e5e5e5;background:#fff}
@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:.875rem;padding:.5rem 1.5rem .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{opacity:.8 !important}
.virtooal--action button:hover{background:var(--color-primary-dark)}
@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:.75rem}
[dir=ltr] .virtooal--action button .icon{margin-right:.75rem}
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}
body.mm-ocd-opened #wa-angel,body.modal-is-open #wa-angel,body.fancybox-open #wa-angel{
  --tw-translate-y: 10rem;
  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));
}
@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}body.dropdown--is-opened #wa-angel{
    --tw-translate-y: 10rem;
    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));
  }#tidio-chat{z-index:9999999999;position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none}#tidio-chat #tidio-chat-iframe{bottom:0 !important}#tidio-chat #tidio-chat-iframe{pointer-events:auto}[id^=gb-widget]{bottom:20px !important;z-index:9999 !important}#fb-root .fb_dialog iframe[data-testid=bubble_iframe]{bottom:20px !important}iframe.tawk-widget{bottom:20px !important}#chat-widget-container{bottom:0 !important}#chat-widget-container{height:100%}}
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}
.dark #tabbyPromo>[class*=styles__tabby],.dark .tamara-product-widget,.dark .s-installment-madfu-wrapper,.dark .s-installment-emkan-wrapper{background:var(--dark-grey) !important;color:var(--dark-text-main) !important}
#tabbyPromo>[class*=styles__tabby],.tamara-product-widget,.s-installment-emkan-wrapper{border:1px solid #414042 !important;border:1px solid var(--color-primary) !important}
#tabbyPromo>[class*=styles__tabby],.tamara-product-widget,.s-installment-emkan-wrapper{margin-top:1rem;border-radius:.375rem}
.iti-mobile .iti--container{z-index:99999999 !important}
.tamara-product-widget,.spotii-wrapper{min-height:100% !important;padding:16px 16px 16px 122px !important}
.dark #tabbyPromoWrapper #tabbyPromo *,.dark .s-installment-emkan-content-text{color:var(--dark-text-main)}
salla-installment>.mb-5{
  border-radius: 0.75rem;
}
salla-installment.s-product-card-content-footer>.mb-5 button{
  border-radius: 9999px;
}
@media (min-width: 768px){
  .min--2 salla-installment.s-product-card-content-footer>.mb-5 button{
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
  }
  .min--3 salla-installment.s-product-card-content-footer>.mb-5 button{
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }
  .min--4 salla-installment.s-product-card-content-footer>.mb-5 button{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .min--5 salla-installment.s-product-card-content-footer>.mb-5 button{
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .min--6 salla-installment.s-product-card-content-footer>.mb-5 button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .min--10 salla-installment.s-product-card-content-footer>.mb-5 button{
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
custom-salla-product-cardsalla-installment>.mb-5{border-radius:.75rem}
.dark salla-installment>.mb-5{color:var(--dark-text-main);background-color:var(--dark-grey)}
.dark .styles__containerPortal--c9f84{background-color:var(--dark-grey)}
.swal2-container{top:5rem !important;z-index:999999999 !important;left:50% !important}
.swal2-container{transform:translateX(-50%)}
.swal2-container .swal2-popup.swal2-toast{max-width:100%;padding:0 10px 5px;box-shadow:0 1px 3px 1px rgba(0,0,0,.0705882353)}
[dir="ltr"] .swal2-container .swal2-popup.swal2-toast .swal2-icon{
  margin-right: 0.25rem;
}
[dir="rtl"] .swal2-container .swal2-popup.swal2-toast .swal2-icon{
  margin-left: 0.25rem;
}
.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(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-left: -0.375rem;
}
.swal2-container .swal2-popup.swal2-toast .swal2-icon:where([dir="rtl"], [dir="rtl"] *){
  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));
}
.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;
}
[dir="ltr"] .swal2-container .swal2-popup.swal2-toast .swal2-close{
  margin-left: 0.5rem;
}
[dir="rtl"] .swal2-container .swal2-popup.swal2-toast .swal2-close{
  margin-right: 0.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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.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));
}
.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 (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm){@supports(-webkit-appearance: none){.full-banner-entry{background-attachment:scroll;background-attachment:initial}}}
salla-button .s-quick-buy-button{padding-right:.5rem;padding-left:.5rem}
html:not(.theme-light) .store-header.dark .logo-light,html:not(.theme-light) .store-footer.dark .logo-light{display:none !important}
html:not(.theme-light) .store-header.dark .logo-dark,html:not(.theme-light) .store-footer.dark .logo-dark{display:block !important}
.logo-light,.dark-logo{
  height: 2.5rem;
  width: auto;
}
apple-pay-button{display:flex !important}
apple-pay-button{--apple-pay-button-padding: 0px}
[product-status=out]>salla-quick-buy{display:none !important}
.index>.app-inner{
  overflow-x: hidden;
}
[dir="ltr"] .s-offer-modal-product{margin-right:5px;
}
[dir="rtl"] .s-offer-modal-product{margin-left:5px;
}
.s-offer-modal-product{max-width:150px !important;padding:.5rem !important}
.s-offer-modal-product{border:1px solid #414042;border:1px solid var(--color-primary);border-radius:6px}
.s-offer-modal-product-name{width:100%}
.dark salla-tab-content .s-tabs-content td{color:var(--dark-text-main)}
@media(min-width: 768px){.md\:grid-cols-5{grid-template-columns:repeat(5, minmax(0, 1fr))}}
.s-count-down-list{
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0px;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-count-down-list>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-count-down-list>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-count-down-list>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-count-down-list>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-count-down-list>.justify-start{order:2;justify-content:end;width:auto}[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-count-down-list{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-count-down-list{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.flex>.s-count-down-list{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.flex>.s-count-down-list{margin-right:auto;
  }.align-start-logo.store-header .container>.flex>.s-count-down-list{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-count-down-list>.justify-center{order:1}.align-start-logo.store-header .container>.s-count-down-list>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-starting-price.s-count-down-list{justify-content:start}
.s-count-down-item{
  margin: 0px;
  height: 4rem;
  width: 4rem;
  flex: none;
  flex-direction: column;
  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));
  font-size: 1rem;
  line-height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-count-down-item>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-count-down-item>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-count-down-item>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-count-down-item>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-count-down-item>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-count-down-item>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-count-down-item{order:1}.align-start-logo.store-header .container>.s-count-down-item>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-count-down-item{justify-content:center}
.s-product-card-content-footer.s-count-down-item button{
  border-radius: 0.375rem;
}
custom-salla-product-card.s-count-down-item{border-radius:.25rem}
.dark .s-count-down-item{color:var(--dark-text-main);background-color:var(--dark-grey)}
@media (min-width: 768px){
  .s-count-down-item{
    height: 5rem;
    width: 5rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
.s-count-down-item::after{
  display: none;
}
.index section.s-block.s-count-down-item::after{display:none}
.s-count-down-item-label{
  margin-top: 0px;
}
.dark .s-count-down-item-label{color:var(--dark-text-main)}
.s-count-down-ended li{
  display: none;
}
.index section.s-block.s-count-down-ended li{display:none}
.s-count-down-end-text{
  display: none;
  width: -moz-max-content;
  width: max-content;
  --tw-bg-opacity: 1;
  background-color: rgba(239, 68, 68, 1);
  background-color: rgba(239, 68, 68, var(--tw-bg-opacity, 1));
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.index section.s-block.s-count-down-end-text{display:none}
.dark .special-product-countdown .s-count-down-item{background-color:var(--dark-bg-main)}
.s-product-card-countdown{
  --tw-bg-opacity: 1;
  background-color: rgba(239, 68, 68, 1);
  background-color: rgba(239, 68, 68, var(--tw-bg-opacity, 1));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  text-align: center;
}
.s-product-card-countdown .s-count-down-list{
  gap: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-countdown .s-count-down-list>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-countdown .s-count-down-list>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-countdown .s-count-down-list>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-countdown .s-count-down-list>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-card-countdown .s-count-down-list>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-card-countdown .s-count-down-list>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-product-card-countdown .s-count-down-list{order:1}.align-start-logo.store-header .container>.s-product-card-countdown .s-count-down-list>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-product-card-countdown .s-count-down-list{justify-content:center}
.s-product-card-countdown .s-count-down-item{
  height: 1.5rem;
  width: 100%;
  flex: 1 1 0%;
  flex-direction: column;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 480px){[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-countdown .s-count-down-item>.justify-start{margin-right:0;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-countdown .s-count-down-item>.justify-start{margin-left:0;
  }[dir="ltr"] .align-start-logo.store-header .container>.s-product-card-countdown .s-count-down-item>.justify-start{margin-left:auto;
  }[dir="rtl"] .align-start-logo.store-header .container>.s-product-card-countdown .s-count-down-item>.justify-start{margin-right:auto;
  }.align-start-logo.store-header .container>.s-product-card-countdown .s-count-down-item>.justify-start{order:2;justify-content:end;width:auto}.align-start-logo.store-header .container>.s-product-card-countdown .s-count-down-item>.justify-center{order:1}.align-start-logo.store-header .container>.flex>.s-product-card-countdown .s-count-down-item{order:1}.align-start-logo.store-header .container>.s-product-card-countdown .s-count-down-item>.justify-end{order:3;justify-content:start;width:auto}}
.s-product-card-content-sub.s-product-card-countdown .s-count-down-item{justify-content:center}
.dark .s-product-card-countdown .s-count-down-item{color:var(--dark-text-main)}
.s-product-card-countdown .s-count-down-item{background-color:rgba(0,0,0,0) !important}
.s-product-card-countdown .s-count-down-ended li{
  display: none;
}
.index section.s-block.s-product-card-countdown .s-count-down-ended li{display:none}
.s-product-card-countdown .s-count-down-item-label{
  display: none;
}
.index section.s-block.s-product-card-countdown .s-count-down-item-label{display:none}
.divider-countdown .s-count-down-item{
  height: 3rem;
  width: 3rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.dark .divider-countdown .s-count-down-item{color:var(--dark-text-main)}
[dir="ltr"] .s-count-down-end-text{
  left: 0px;
}
[dir="rtl"] .s-count-down-end-text{
  right: 0px;
}
.s-count-down-end-text{
  position: relative;
  top: 0px;
  margin: auto;
  transform: none;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
[dir="rtl"] .s-count-down-end-text{
  right: 0px;
}
[dir="ltr"] .s-count-down-end-text{
  left: 0px;
}
.s-count-down-md+.s-count-down-end-text{font-size:1rem;line-height:1;font-weight:normal}
body.font-dinnextltarabic-regular .btn--add-to-cart{padding-top:0 !important;padding-bottom:0 !important}
lite-youtube{background-color:#000;position:relative;display:block;contain:content;background-position:center center;background-size:cover;cursor:pointer;max-width:720px}
lite-youtube::before{content:"";display:block;position:absolute;top:0;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==);background-position:top;background-repeat:repeat-x;height:60px;padding-bottom:50px;width:100%;transition:all .2s cubic-bezier(0, 0, 0.2, 1)}
lite-youtube::after{content:"";display:block;padding-bottom:56.25%}
lite-youtube>iframe{width:100%;height:100%;position:absolute;top:0;left:0;border:0}
lite-youtube>.lty-playbtn{width:68px;height:48px;position:absolute;cursor:pointer;transform:translate3d(-50%, -50%, 0);top:50%;left:50%;z-index:1;background-color:transparent;background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 68 48"><path fill="%23f00" fill-opacity="0.8" d="M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z"></path><path d="M 45,24 27,14 27,34" fill="%23fff"></path></svg>');filter:grayscale(100%);transition:filter .1s cubic-bezier(0, 0, 0.2, 1);border:none}
lite-youtube:hover>.lty-playbtn,lite-youtube .lty-playbtn:focus{filter:none}
lite-youtube.lyt-activated{cursor:inherit}
lite-youtube.lyt-activated::before,lite-youtube.lyt-activated>.lty-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}
@font-face{font-family:swiper-icons;src:url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");font-weight:400;font-style:normal}
:root{--swiper-theme-color:#007aff}
.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}
.swiper-vertical>.swiper-wrapper{flex-direction:column}
.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}
.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px, 0, 0)}
.swiper-pointer-events{touch-action:pan-y}
.swiper-pointer-events.swiper-vertical{touch-action:pan-x}
.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}
.swiper-slide-invisible-blank{visibility:hidden}
.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}
.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}
.swiper-backface-hidden .swiper-slide{transform:translateZ(0);backface-visibility:hidden}
.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}
.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}
.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}
.swiper-3d .swiper-slide-shadow{background:rgba(0, 0, 0, 0.15)}
.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}
.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}
.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}
.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}
.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}
.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}
.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}
.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}
.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}
.swiper-centered>.swiper-wrapper::before{content:"";flex-shrink:0;order:9999}
[dir="ltr"] .swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-left:var(--swiper-centered-offset-before);
}
[dir="rtl"] .swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-right:var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}
.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-top:var(--swiper-centered-offset-before)}
.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}
.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}
.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}
.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:"";position:absolute;left:0;top:0;pointer-events:none}
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}
:root{--swiper-navigation-size:44px}
.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(44px/44*27);width:calc(var(--swiper-navigation-size)/44*27);height:44px;height:var(--swiper-navigation-size);margin-top:calc(0px - 44px/2);margin-top:calc(0px - var(--swiper-navigation-size)/2);z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:#007aff;color:var(--swiper-navigation-color, var(--swiper-theme-color))}
.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}
.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}
.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none !important}
.swiper-button-next:after,.swiper-button-prev:after{text-transform:none !important}
.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:44px;font-size:var(--swiper-navigation-size);letter-spacing:0;font-feature-settings:;font-variant:normal;font-variant:initial;line-height:1}
.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}
.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:"prev"}
.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}
.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:"next"}
.swiper-button-lock{display:none}
.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0, 0, 0);z-index:10}
.swiper-pagination.swiper-pagination-hidden{opacity:0}
.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none !important}
.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}
.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(0.33);position:relative}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(0.66)}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(0.33)}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(0.66)}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(0.33)}
.swiper-pagination-bullet{width:8px;width:var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));height:8px;height:var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));display:inline-block;border-radius:50%;background:#000;background:var(--swiper-pagination-bullet-inactive-color, #000);opacity:0.2;opacity:var(--swiper-pagination-bullet-inactive-opacity, 0.2)}
button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}
.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}
.swiper-pagination-bullet:only-child{display:none !important}
.swiper-pagination-bullet-active{opacity:1;opacity:var(--swiper-pagination-bullet-opacity, 1);background:#007aff;background:var(--swiper-pagination-color, var(--swiper-theme-color))}
.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px, -50%, 0)}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;margin:var(--swiper-pagination-bullet-vertical-gap, 6px) 0;display:block}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px;margin:0 var(--swiper-pagination-bullet-horizontal-gap, 4px)}
.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}
.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}
.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}
.swiper-pagination-progressbar{background:rgba(0, 0, 0, 0.25);position:absolute}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:#007aff;background:var(--swiper-pagination-color, var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}
.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}
.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}
.swiper-pagination-lock{display:none}
.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0, 0, 0, 0.1)}
.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none !important}
.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}
.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}
.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0, 0, 0, 0.5);border-radius:10px;left:0;top:0}
.swiper-scrollbar-cursor-drag{cursor:move}
.swiper-scrollbar-lock{display:none}
.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}
.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;-o-object-fit:contain;object-fit:contain}
.swiper-slide-zoomed{cursor:move}
.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid #007aff;border:4px solid var(--swiper-preloader-color, var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}
.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}
.swiper-lazy-preloader-black{--swiper-preloader-color:#000}
@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}
.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}
.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}
.swiper-grid>.swiper-wrapper{flex-wrap:wrap}
.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}
.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}
.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}
.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}
.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}
.swiper-cube{overflow:visible}
.swiper-cube .swiper-slide{pointer-events:none;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}
.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}
.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}
.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}
.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}
.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;backface-visibility:hidden}
.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}
.swiper-cube .swiper-cube-shadow:before{content:"";background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}
.swiper-flip{overflow:visible}
.swiper-flip .swiper-slide{pointer-events:none;backface-visibility:hidden;z-index:1}
.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}
.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}
.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;backface-visibility:hidden}
.swiper-creative .swiper-slide{backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}
.swiper-cards{overflow:visible}
.swiper-cards .swiper-slide{transform-origin:center bottom;backface-visibility:hidden;overflow:hidden}
.dark .da-cp{color:#414042 !important;color:var(--color-primary) !important}
.dark .da-tm{color:var(--dark-text-main) !important}
.dark .da-ts{color:var(--dark-text-sec) !important}
.dark .da-fm{fill:var(--dark-text-main) !important}
.dark .da-fg{fill:var(--dark-grey) !important}
.dark .da-bgm{background-color:var(--dark-bg-main) !important}
.dark .da-bgg{background-color:var(--dark-grey) !important}
.dark .da-brdr{border-color:var(--dark-grey) !important}
.dark .store-header .mode-toggler .dark-mode{stroke:var(--dark-text-main)}
.dark .s-search-modal .s-search-results{background:var(--dark-bg-main) !important}
.dark .s-search-modal .s-search-results .s-search-product{border-color:var(--dark-grey)}
.dark .s-search-modal .s-search-results .s-search-product:hover{background:#414042;background:var(--color-primary)}
.dark .s-search-modal .s-search-results .s-search-product .s-search-product-title{color:var(--dark-text-main)}
.dark .s-search-modal .s-search-results .s-search-no-results-placeholder{background:var(--dark-bg-main) !important}
.dark .s-search-modal .s-search-input{background:var(--dark-bg-main) !important}
.dark .s-search-modal .s-search-input{color:var(--dark-text-main)}
.dark .s-search-inline .s-search-input{background:var(--dark-bg-main) !important;border:medium none currentColor !important;border:initial !important}
.dark .s-login-modal .s-login-modal-main-btn{background:var(--dark-bg-main);border-color:var(--dark-grey)}
.dark .s-login-modal .s-login-modal-main-btn .s-login-modal-main-btn-text{color:var(--dark-text-main)}
.dark .iti__selected-flag{color:var(--dark-text-main)}
.dark .iti__arrow::after{filter:invert(1)}
.dark .iti__country-list{background:var(--dark-grey) !important}
.dark .iti__country-list{color:var(--dark-text-main)}
.dark .s-verify-timer{color:var(--dark-text-main)}
.dark .s-verify-back{background:#414042 !important;background:var(--color-primary) !important}
.dark .s-verify-back svg{fill:var(--dark-text-main)}
.dark .s-cart-summary-total{color:var(--dark-text-main) !important}
.dark .mode-toggler .light-mode{stroke:var(--dark-text-main)}
.dark .contact-links a{background-color:var(--dark-grey) !important}
.dark .s-quantity-input-container{border-color:var(--dark-text-sec)}
.dark .s-quantity-input-button{fill:var(--dark-text-sec)}
.dark .s-quantity-input-button:hover{fill:#414042;fill:var(--color-primary)}
.dark .brands-nav__item{background-color:var(--dark-grey)}
.dark .s-product-availability-subscribed{background-color:var(--dark-bg-main)}
.dark .s-quick-order .s-quick-order-container{background-color:var(--dark-grey) !important}
.dark .s-quick-order input{background-color:var(--dark-bg-main)}
.dark .s-modal-body{background-color:var(--dark-bg-main)}
.dark .s-modal-body .s-localization-modal-title{color:var(--dark-text-main)}
.dark .s-modal-body .s-localization-modal-label span{color:var(--dark-text-main)}
.s-modal-body .s-rating-modal-wrapper{height:auto !important}
.s-modal-body .s-rating-modal-rounded-icon{
  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));
}
.s-modal-body .s-rating-modal-store-logo{
  width: 100%;
  padding: 0.5rem;
}
.s-modal-body .s-rating-modal-title{
  text-align: center;
}
.dark .s-modal-body .s-rating-modal-title{color:var(--dark-text-main)}
.dark .s-modal-body .s-rating-modal-comment{background-color:var(--dark-grey)}
.dark .s-modal-body .s-rating-modal-product-title{color:var(--dark-text-main)}
.dark .s-modal-body .s-rating-modal-thanks-title{color:var(--dark-text-main)}
.dark .s-modal-body .s-rating-modal-icon{background-color:var(--dark-grey)}
.s-modal-body .s-rating-modal-product-img-wrap{height: 3.5rem;width: 3.5rem}
@media (min-width: 768px){
  .s-modal-body .s-rating-modal-product-img-wrap{
    height: 5rem;
    width: 5rem;
  }
}
.dark .s-modal-body .s-rating-modal-contact{background-color:var(--dark-grey)}
.dark .s-modal-body .s-rating-modal-contact p{color:var(--dark-text-main)}
.dark .s-modal-header .s-modal-header-content .s-modal-title{color:var(--dark-text-main)}
.s-modal-header .s-modal-header-content .s-modal-sub-title{
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, 1);
  color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}
.dark .s-modal-header .s-modal-header-content .s-modal-sub-title{color:var(--dark-text-sec)}
.dark .s-modal-header .s-offer-modal-header-icon{border-color:var(--dark-grey)}
.dark .s-modal-header .s-offer-modal-badge{background-color:var(--dark-grey)}
.s-modal-header .s-offer-modal-badge:is(.dark *){
  border-color: transparent;
}
.dark .s-placeholder-title{color:var(--dark-text-main)}
.dark .s-offer-modal-product-name{color:var(--dark-text-main)}
.dark .s-offer-modal-product-price{color:#414042;color:var(--color-primary)}
.btn-text{color:var(--text-btn) !important}
.angel-theme:not(.dark):not(.theme-light):not(.theme-dark) .logo-dark{display:none !important}
.dark .x-icon{fill:var(--dark-text-main)}
a:hover .x-icon{fill:#414042 !important;fill:var(--color-primary) !important}
.dark ::-moz-placeholder{color:#b8b8b8 !important;opacity:.8 !important}
.dark ::placeholder{color:#b8b8b8 !important;opacity:.8 !important}
@media (min-width: 768px){
  .md\:container{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 10px;
    padding-left: 10px;
  }
  @media (min-width: 1280px){
    .md\:container{
      max-width: 1280px;
    }
  }
}
@media (max-width: 767px){
  .mob\:container{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 10px;
    padding-left: 10px;
  }
  @media (min-width: 1280px){
    .mob\:container{
      max-width: 1280px;
    }
  }
}
.first\:rounded-t-md:first-child{
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}
.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;
}
.hover\:scale-110:hover{
  --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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:text-primary:hover{
  color: #414042;
  color: var(--color-primary);
}
.hover\:text-primary-d:hover{
  color: var(--color-primary-dark);
}
.hover\:underline:hover{
  text-decoration-line: underline;
}
.hover\:opacity-100:hover{
  opacity: 1;
}
.hover\:opacity-80:hover{
  opacity: 0.8;
}
.hover\:opacity-90:hover{
  opacity: 0.9;
}
.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), 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);
}
.group:hover .group-hover\:-translate-x-1{
  --tw-translate-x: -0.25rem;
  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\:\!opacity-100{
  opacity: 1 !important;
}
.dark\:divide-opacity-20:is(.dark *) > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0.2;
}
.dark *.dark\:border-opacity-20{
  --tw-border-opacity: 0.2;
}
.dark *.dark\: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));
}
.dark *.dark\:text-white{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
@media (min-width: 640px){
  .sm\:mb-6{
    margin-bottom: 1.5rem;
  }
  .sm\:mt-0{
    margin-top: 0px;
  }
  .sm\:mt-8{
    margin-top: 2rem;
  }
  .sm\:block{
    display: block;
  }
  .sm\:h-24{
    height: 6rem;
  }
  .sm\:h-full{
    height: 100%;
  }
  .sm\:\!w-\[220px\]{
    width: 220px !important;
  }
  .sm\:w-24{
    width: 6rem;
  }
  .sm\:grow-0{
    flex-grow: 0;
  }
  .sm\:translate-y-0{
    --tw-translate-y: 0px;
    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(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(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\:gap-4{
    gap: 1rem;
  }
  .sm\:gap-6{
    gap: 1.5rem;
  }
  .sm\:gap-8{
    gap: 2rem;
  }
  .sm\:space-y-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1.25rem * (1 - var(--tw-space-y-reverse)));
    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
  }
  .sm\:p-1{
    padding: 0.25rem;
  }
  .sm\:p-4{
    padding: 1rem;
  }
  .sm\:p-5{
    padding: 1.25rem;
  }
  .sm\:pb-20{
    padding-bottom: 5rem;
  }
  .sm\:pt-12{
    padding-top: 3rem;
  }
  .sm\:pt-20{
    padding-top: 5rem;
  }
  .sm\:pt-4{
    padding-top: 1rem;
  }
  .sm\:pt-5{
    padding-top: 1.25rem;
  }
}
@media (min-width: 768px){
  .md\:sticky{
    position: sticky;
  }
  .md\:bottom-24{
    bottom: 6rem;
  }
  .md\:bottom-4{
    bottom: 1rem;
  }
  [dir="ltr"] .md\:end-4{
    right: 1rem;
  }
  [dir="rtl"] .md\:end-4{
    left: 1rem;
  }
  .md\:top-4{
    top: 1rem;
  }
  .md\:mx-0{
    margin-left: 0px;
    margin-right: 0px;
  }
  .md\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }
  .md\:\!mb-0{
    margin-bottom: 0px !important;
  }
  .md\:-mt-44{
    margin-top: -11rem;
  }
  .md\:mb-0{
    margin-bottom: 0px;
  }
  .md\:mb-10{
    margin-bottom: 2.5rem;
  }
  .md\:mb-16{
    margin-bottom: 4rem;
  }
  .md\:mb-2{
    margin-bottom: 0.5rem;
  }
  .md\:mb-5{
    margin-bottom: 1.25rem;
  }
  .md\:mb-6{
    margin-bottom: 1.5rem;
  }
  .md\:mb-8{
    margin-bottom: 2rem;
  }
  [dir="ltr"] .md\:me-4{
    margin-right: 1rem;
  }
  [dir="rtl"] .md\:me-4{
    margin-left: 1rem;
  }
  [dir="ltr"] .md\:me-8{
    margin-right: 2rem;
  }
  [dir="rtl"] .md\:me-8{
    margin-left: 2rem;
  }
  [dir="ltr"] .md\:ms-2{
    margin-left: 0.5rem;
  }
  [dir="rtl"] .md\:ms-2{
    margin-right: 0.5rem;
  }
  .md\:mt-0{
    margin-top: 0px;
  }
  .md\:mt-4{
    margin-top: 1rem;
  }
  .md\:mt-5{
    margin-top: 1.25rem;
  }
  .md\:\!block{
    display: block !important;
  }
  .md\:block{
    display: block;
  }
  .md\:inline-block{
    display: inline-block;
  }
  .md\:flex{
    display: flex;
  }
  .md\:\!hidden{
    display: none !important;
  }
  .md\:hidden{
    display: none;
  }
  .md\:\!h-20{
    height: 5rem !important;
  }
  .md\:h-10{
    height: 2.5rem;
  }
  .md\:h-20{
    height: 5rem;
  }
  .md\:h-24{
    height: 6rem;
  }
  .md\:h-28{
    height: 7rem;
  }
  .md\:h-32{
    height: 8rem;
  }
  .md\:h-8{
    height: 2rem;
  }
  .md\:h-80{
    height: 20rem;
  }
  .md\:\!w-2\/5{
    width: 40% !important;
  }
  .md\:\!w-20{
    width: 5rem !important;
  }
  .md\:w-1\/2{
    width: 50%;
  }
  .md\:w-10{
    width: 2.5rem;
  }
  .md\:w-20{
    width: 5rem;
  }
  .md\:w-24{
    width: 6rem;
  }
  .md\:w-32{
    width: 8rem;
  }
  .md\:w-40{
    width: 10rem;
  }
  .md\:w-52{
    width: 13rem;
  }
  .md\:w-96{
    width: 24rem;
  }
  .md\:w-full{
    width: 100%;
  }
  .md\:w-max{
    width: -moz-max-content;
    width: max-content;
  }
  .md\:max-w-lg{
    max-width: 32rem;
  }
  .md\:max-w-md{
    max-width: 28rem;
  }
  .md\:max-w-sm{
    max-width: 24rem;
  }
  .md\:max-w-xs{
    max-width: 20rem;
  }
  .md\:-translate-y-2\/3{
    --tw-translate-y: -66.666667%;
    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));
  }
  .md\:grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .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-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .md\:grid-cols-7{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .md\:grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .md\:flex-row{
    flex-direction: row;
  }
  .md\:flex-row-reverse{
    flex-direction: row-reverse;
  }
  .md\:flex-col{
    flex-direction: column;
  }
  .md\:items-start{
    align-items: flex-start;
  }
  .md\:items-center{
    align-items: center;
  }
  .md\:justify-between{
    justify-content: space-between;
  }
  .md\:gap-10{
    gap: 2.5rem;
  }
  .md\:gap-16{
    gap: 4rem;
  }
  .md\:gap-2{
    gap: 0.5rem;
  }
  .md\:gap-3{
    gap: 0.75rem;
  }
  .md\:gap-4{
    gap: 1rem;
  }
  .md\:gap-8{
    gap: 2rem;
  }
  .md\:space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * (1 - var(--tw-space-y-reverse)));
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }
  .md\:space-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(2rem * (1 - var(--tw-space-y-reverse)));
    margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(2rem * var(--tw-space-y-reverse));
  }
  .md\:rounded-md{
    border-radius: 0.375rem;
  }
  .md\:p-16{
    padding: 4rem;
  }
  .md\:p-8{
    padding: 2rem;
  }
  .md\:px-10{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .md\:px-32{
    padding-left: 8rem;
    padding-right: 8rem;
  }
  .md\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .md\:px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .md\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .md\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .md\:py-0{
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .md\:py-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .md\:py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .md\:pb-16{
    padding-bottom: 4rem;
  }
  [dir="ltr"] .md\:text-start{
    text-align: left;
  }
  [dir="rtl"] .md\:text-start{
    text-align: right;
  }
  .md\:text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .md\:text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .md\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md\:text-5xl{
    font-size: 3rem;
    line-height: 1;
  }
  .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\:text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .md\:text-xs{
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .md\:leading-16{
    line-height: 4rem;
  }
  .md\:leading-18{
    line-height: 4.5rem;
  }
  [dir="ltr"] .md\:ms-2{
    margin-left: 0.5rem;
  }
  [dir="rtl"] .md\:ms-2{
    margin-right: 0.5rem;
  }
  [dir="ltr"] .md\:me-4{
    margin-right: 1rem;
  }
  [dir="rtl"] .md\:me-4{
    margin-left: 1rem;
  }
  [dir="ltr"] .md\:me-8{
    margin-right: 2rem;
  }
  [dir="rtl"] .md\:me-8{
    margin-left: 2rem;
  }
  [dir="rtl"] .md\:end-4{
    left: 1rem;
  }
  [dir="ltr"] .md\:end-4{
    right: 1rem;
  }
  [dir="rtl"] .md\:text-start{
    text-align: right;
  }
  [dir="ltr"] .md\:text-start{
    text-align: left;
  }
}
@media (min-width: 1024px){
  .lg\:sticky{
    position: sticky;
  }
  .lg\:top-32{
    top: 8rem;
  }
  .lg\:-mt-20{
    margin-top: -5rem;
  }
  .lg\:mb-0{
    margin-bottom: 0px;
  }
  .lg\:mb-24{
    margin-bottom: 6rem;
  }
  [dir="ltr"] .lg\:me-4{
    margin-right: 1rem;
  }
  [dir="rtl"] .lg\:me-4{
    margin-left: 1rem;
  }
  [dir="ltr"] .lg\:ms-8{
    margin-left: 2rem;
  }
  [dir="rtl"] .lg\:ms-8{
    margin-right: 2rem;
  }
  .lg\:mt-12{
    margin-top: 3rem;
  }
  .lg\:mt-6{
    margin-top: 1.5rem;
  }
  .lg\:\!block{
    display: block !important;
  }
  .lg\:block{
    display: block;
  }
  .lg\:\!inline-block{
    display: inline-block !important;
  }
  .lg\:\!flex{
    display: flex !important;
  }
  .lg\:flex{
    display: flex;
  }
  .lg\:hidden{
    display: none;
  }
  .lg\:h-100{
    height: 28rem;
  }
  .lg\:h-36{
    height: 9rem;
  }
  .lg\:w-1\/2{
    width: 50%;
  }
  .lg\:w-10\/12{
    width: 83.333333%;
  }
  .lg\:w-24{
    width: 6rem;
  }
  .lg\:w-72{
    width: 18rem;
  }
  .lg\:w-96{
    width: 24rem;
  }
  .lg\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, 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\:flex-row{
    flex-direction: row;
  }
  .lg\:gap-4{
    gap: 1rem;
  }
  .lg\:space-y-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(4rem * (1 - var(--tw-space-y-reverse)));
    margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(4rem * var(--tw-space-y-reverse));
  }
  .lg\:p-8{
    padding: 2rem;
  }
  .lg\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }
  .lg\:py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .lg\:pb-2{
    padding-bottom: 0.5rem;
  }
  .lg\:pb-20{
    padding-bottom: 5rem;
  }
  .lg\:pb-4{
    padding-bottom: 1rem;
  }
  [dir="ltr"] .lg\:ps-20{
    padding-left: 5rem;
  }
  [dir="rtl"] .lg\:ps-20{
    padding-right: 5rem;
  }
  .lg\:pt-4{
    padding-top: 1rem;
  }
  .lg\:text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .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), 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);
  }
  [dir="ltr"] .lg\:ps-20{
    padding-left: 5rem;
  }
  [dir="rtl"] .lg\:ps-20{
    padding-right: 5rem;
  }
  [dir="ltr"] .lg\:me-4{
    margin-right: 1rem;
  }
  [dir="rtl"] .lg\:me-4{
    margin-left: 1rem;
  }
  [dir="ltr"] .lg\:ms-8{
    margin-left: 2rem;
  }
  [dir="rtl"] .lg\:ms-8{
    margin-right: 2rem;
  }
  [dir="ltr"] .lg\:space-s-8 > :not([hidden]) ~ :not([hidden]){
    margin-right: calc(2rem * var(--tw-space-s-reverse));
  }
  [dir="rtl"] .lg\:space-s-8 > :not([hidden]) ~ :not([hidden]){
    margin-left: calc(2rem * var(--tw-space-s-reverse));
  }
  [dir="ltr"] .lg\:space-s-8 > :not([hidden]) ~ :not([hidden]){
    margin-left: calc(2rem * (1 - var(--tw-space-s-reverse)));
    margin-left: calc(2rem * calc(1 - var(--tw-space-s-reverse)));
  }
  [dir="rtl"] .lg\:space-s-8 > :not([hidden]) ~ :not([hidden]){
    margin-right: calc(2rem * (1 - var(--tw-space-s-reverse)));
    margin-right: calc(2rem * calc(1 - var(--tw-space-s-reverse)));
  }
  [dir="ltr"] .lg\:space-s-8 > :not([hidden]) ~ :not([hidden]){
    margin-left: calc(2rem * (1 - var(--tw-space-s-reverse)));
  }
  [dir="rtl"] .lg\:space-s-8 > :not([hidden]) ~ :not([hidden]){
    margin-right: calc(2rem * (1 - var(--tw-space-s-reverse)));
  }
  .lg\:space-s-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-s-reverse: 0;
  }
}
@media (min-width: 1280px){
  .xl\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (min-width: 480px){
  .xs\:p-11{
    padding: 2.75rem;
  }
  .xs\:p-7{
    padding: 1.75rem;
  }
}
@media (max-width: 767px){
  .mob\:bottom-24{
    bottom: 6rem;
  }
  .mob\:bottom-4{
    bottom: 1rem;
  }
  [dir="ltr"] .mob\:start-4{
    left: 1rem;
  }
  [dir="rtl"] .mob\:start-4{
    right: 1rem;
  }
  .mob\:mt-4{
    margin-top: 1rem;
  }
  .mob\:flex{
    display: flex;
  }
  .mob\:\!hidden{
    display: none !important;
  }
  .mob\:hidden{
    display: none;
  }
  .mob\:flex-col{
    flex-direction: column;
  }
  .mob\:items-center{
    align-items: center;
  }
  .mob\:justify-center{
    justify-content: center;
  }
  .mob\:p-3{
    padding: 0.75rem;
  }
  [dir="rtl"] .mob\:start-4{
    right: 1rem;
  }
  [dir="ltr"] .mob\:start-4{
    left: 1rem;
  }
}
.ltr\:-ml-4:where([dir="ltr"], [dir="ltr"] *){
  margin-left: -1rem;
}
.ltr\:ml-1:where([dir="ltr"], [dir="ltr"] *){
  margin-left: 0.25rem;
}
.ltr\:ml-\[10px\]:where([dir="ltr"], [dir="ltr"] *){
  margin-left: 10px;
}
.ltr\:ml-auto:where([dir="ltr"], [dir="ltr"] *){
  margin-left: auto;
}
.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-3:where([dir="ltr"], [dir="ltr"] *){
  margin-right: 0.75rem;
}
.ltr\:rounded-l-none:where([dir="ltr"], [dir="ltr"] *){
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.ltr\:rounded-r-md:where([dir="ltr"], [dir="ltr"] *){
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}
.ltr\:rounded-r-none:where([dir="ltr"], [dir="ltr"] *){
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.ltr\:border-r:where([dir="ltr"], [dir="ltr"] *){
  border-right-width: 1px;
}
.ltr\:border-r-0:where([dir="ltr"], [dir="ltr"] *){
  border-right-width: 0px;
}
.ltr\:pl-2\.5:where([dir="ltr"], [dir="ltr"] *){
  padding-left: 0.625rem;
}
.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\:text-right:where([dir="ltr"], [dir="ltr"] *){
  text-align: right;
}
[dir="ltr"] .ltr\:text-end:where([dir="ltr"], [dir="ltr"] *){
  text-align: right;
}
[dir="rtl"] .ltr\:text-end:where([dir="ltr"], [dir="ltr"] *){
  text-align: left;
}
[dir="rtl"] .ltr\:text-end:where([dir="ltr"], [dir="ltr"] *){
  text-align: left;
}
[dir="ltr"] .ltr\:text-end:where([dir="ltr"], [dir="ltr"] *){
  text-align: right;
}
@media (min-width: 640px){
  .sm\:ltr\:text-left:where([dir="ltr"], [dir="ltr"] *){
    text-align: left;
  }
}
@media (min-width: 768px){
  .ltr\:md\:pr-8:where([dir="ltr"], [dir="ltr"] *){
    padding-right: 2rem;
  }
}
@media (min-width: 1024px){
  .ltr\:lg\:ml-4:where([dir="ltr"], [dir="ltr"] *){
    margin-left: 1rem;
  }
}
.rtl\:-mr-4:where([dir="rtl"], [dir="rtl"] *){
  margin-right: -1rem;
}
.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-3:where([dir="rtl"], [dir="rtl"] *){
  margin-left: 0.75rem;
}
.rtl\:mr-1:where([dir="rtl"], [dir="rtl"] *){
  margin-right: 0.25rem;
}
.rtl\:mr-\[10px\]:where([dir="rtl"], [dir="rtl"] *){
  margin-right: 10px;
}
.rtl\:mr-auto:where([dir="rtl"], [dir="rtl"] *){
  margin-right: auto;
}
.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(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-md:where([dir="rtl"], [dir="rtl"] *){
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}
.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:where([dir="rtl"], [dir="rtl"] *){
  border-left-width: 1px;
}
.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\:pr-2\.5:where([dir="rtl"], [dir="rtl"] *){
  padding-right: 0.625rem;
}
.rtl\:text-left:where([dir="rtl"], [dir="rtl"] *){
  text-align: left;
}
[dir="ltr"] .rtl\:text-start:where([dir="rtl"], [dir="rtl"] *){
  text-align: left;
}
[dir="rtl"] .rtl\:text-start:where([dir="rtl"], [dir="rtl"] *){
  text-align: right;
}
[dir="rtl"] .rtl\:text-start:where([dir="rtl"], [dir="rtl"] *){
  text-align: right;
}
[dir="ltr"] .rtl\:text-start:where([dir="rtl"], [dir="rtl"] *){
  text-align: left;
}
@media (min-width: 640px){
  .sm\:rtl\:text-right:where([dir="rtl"], [dir="rtl"] *){
    text-align: right;
  }
}
@media (min-width: 768px){
  .rtl\:md\:pl-8:where([dir="rtl"], [dir="rtl"] *){
    padding-left: 2rem;
  }
}
@media (min-width: 1024px){
  .rtl\:lg\:mr-4:where([dir="rtl"], [dir="rtl"] *){
    margin-right: 1rem;
  }
}
