.carrousel_video-carrousel__xkQsT {
  width: 100%;
  height: 100%; /* Use iframe height instead of viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: transparent; /* Remove black background */
  transition: opacity 0.3s ease-out, filter 0.3s ease-out, transform 0.3s ease-out;
  position: relative;
  z-index: 1;
}

.carrousel_videos-scroll-container__UZkjC {
  display: flex;
  overflow-x: auto;
  gap: 20px; /* Increase space between cards */
  padding: 0 30px;
  height: 100%;
  width: 100%;
  align-items: center;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  transition: all 0.3s ease; /* Smooth transition for background display */
  filter: saturate(0.8);
  transform: scale(0.98);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none; /* Prevent text selection while dragging */
  scroll-behavior: smooth; /* Smooth scrolling for all platforms */
  direction: rtl;
}

body[dir='ltr'] .carrousel_videos-scroll-container__UZkjC {
  direction: ltr;
}

/* Styling for drag-to-scroll indicator */
.carrousel_videos-scroll-container__UZkjC:after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Show drag indicator when hovered */
.carrousel_videos-scroll-container__UZkjC:hover:after {
  opacity: 1;
}

/* Remove hover indicator on mobile */
@media (max-width: 768px) {
  .carrousel_videos-scroll-container__UZkjC:after {
    display: none;
  }
}

/* Add styling to make blur look better */
.carrousel_videos-scroll-container__UZkjC {
  filter: saturate(0.8); /* Reduce saturation for better blur effect */
  transform: scale(0.98); /* Slight scale down for depth effect */
}

/* Video loading placeholders */
.carrousel_video-loading-placeholder__PIvJ5 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 0;
}

.carrousel_loading-overlay__vRAbo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 8100;
}

/* Pre-client loading state to prevent any background flash */
.carrousel_pre-client__Mq1A8 {
  background-color: transparent !important;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}

.carrousel_pre-client__Mq1A8 .carrousel_loading-spinner__JfFch {
  border: 4px solid rgba(0, 0, 0, 0.2);
  border-top: 4px solid rgba(0, 0, 0, 0.6);
}

.carrousel_loading-spinner__JfFch {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top: 4px solid #fff;
  animation: carrousel_spin__6znFW 1s linear infinite;
}

@keyframes carrousel_spin__6znFW {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.carrousel_video-card__nwKtI {
  flex: 0 0 auto;
  height: 98%; /* Slightly less than container for better spacing */
  aspect-ratio: 9 / 16; /* Maintain 9:16 ratio automatically */
  scroll-snap-align: center;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  direction: ltr;
}

.carrousel_video-card__nwKtI:hover {
  transform: scale(1.02);
}

.carrousel_video-thumbnail-container__aaF0P {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
}

/* Play button overlay */
.carrousel_play-button-overlay__hAVxU {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: transparent; /* Remove background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1; /* Always visible */
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.carrousel_play-button-overlay__hAVxU svg {
  width: 17px;
  height: 21px;
  margin-left: 2px; /* Slight offset to center the triangle visually */
}

/* Show play button on hover */
.carrousel_video-card__nwKtI:hover .carrousel_play-button-overlay__hAVxU {
  opacity: 1;
}

.carrousel_video-player__dqos_ {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
  border-radius: 0;
}

.carrousel_video-card__nwKtI:hover .carrousel_video-player__dqos_ {
  transform: scale(1.04);
}

/* Prevent horizontal scrolling of play button */
.carrousel_videos-scroll-container__UZkjC::-webkit-scrollbar {
  display: none;
}

/* Based on content amount */
@media (min-width: 768px) {
  /* When there are 3 items or less, center them */
  .carrousel_videos-scroll-container__UZkjC:has(.carrousel_video-card__nwKtI:nth-child(-n + 3):last-child) {
    justify-content: center;
    padding-right: 0;
    padding-left: 0;
  }
}

/* For small screens */
@media (max-width: 768px) {
  .carrousel_videos-scroll-container__UZkjC {
    padding: 0 15px;
    gap: 15px;
  }

  .carrousel_video-card__nwKtI {
    height: 98%; /* Consistent height across all viewports */
    aspect-ratio: 9 / 16; /* Maintain 9:16 ratio automatically */
    min-width: 200px; /* Ensure minimum width on small devices */
    min-height: 356px; /* 16:9 ratio based on min-width */
  }

  .carrousel_video-card__nwKtI:last-child {
    margin-left: 15px;
    margin-right: 0;
  }

  body[dir='ltr'] .carrousel_video-card__nwKtI:last-child {
    margin-left: 0;
    margin-right: 15px;
  }

  /* Improve scrolling behavior on mobile */
  .carrousel_videos-scroll-container__UZkjC {
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  /* Better card scaling on mobile */
  .carrousel_video-card__nwKtI {
    scroll-snap-align: center;
    transform: scale(0.9); /* Reduced default size for mobile */
    transition: transform 0.3s ease; /* Smooth transition when changing focus */
  }

  /* Focus state for mobile only */
  .carrousel_video-card__nwKtI.carrousel_mobile-focus__Schp3 {
    transform: scale(0.95); /* Slightly larger than default (0.9) when in focus */
    z-index: 10; /* Ensure focused card appears above others */
  }

  /* We don't want hover effects on mobile */
  .carrousel_video-card__nwKtI:hover {
    transform: scale(0.9); /* Keep the default size on hover for mobile */
  }

  /* Only active touch state should remain small, focus is controlled by JS */
  .carrousel_video-card__nwKtI:active {
    transform: scale(0.9);
  }
}

/* Specific adjustments for small mobile devices */
@media (max-width: 480px) {
  .carrousel_video-card__nwKtI {
    height: 98%; /* Consistent height across all viewports */
    aspect-ratio: 9 / 16; /* Maintain 9:16 ratio automatically */
    min-width: 160px;
    min-height: 284px;
  }

  .carrousel_videos-scroll-container__UZkjC {
    gap: 10px;
    padding: 0 10px;
  }
}

/* For devices with very low height (landscape mobile) */
@media (max-height: 500px) {
  .carrousel_videos-scroll-container__UZkjC {
    height: 100%;
  }

  .carrousel_video-card__nwKtI {
    height: 98%;
    aspect-ratio: 9 / 16; /* Maintain 9:16 ratio automatically */
    min-height: 160px;
    min-width: 90px;
  }
}

/* Add padding to the last card to ensure full scrolling */
.carrousel_video-card__nwKtI:last-child {
  margin-left: 30px;
  margin-right: 0;
}

body[dir='ltr'] .carrousel_video-card__nwKtI:last-child {
  margin-left: 0;
  margin-right: 30px;
}

/* Make button visible on hover for desktop */
.carrousel_video-card__nwKtI:hover {
  opacity: 1;
}

.carrousel_video-card__nwKtI.carrousel_center-highlight__FYS2O {
  transform: scale(1.02);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Scroll buttons styling */
.carrousel_scroll-button__nyTPW {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(93deg, #00e4fd 6.86%, #169efe 94.89%);
  border: none;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.2s, box-shadow 0.3s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.carrousel_scroll-button__nyTPW:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.carrousel_scroll-button__nyTPW:active {
  transform: translateY(-50%) scale(0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Styling for disabled state */
.carrousel_scroll-button__nyTPW:disabled {
  background: linear-gradient(93deg, #a0a0a0 6.86%, #cccccc 94.89%);
  opacity: 0.5;
  cursor: default;
  box-shadow: none;
}

.carrousel_scroll-button__nyTPW:disabled:hover {
  transform: translateY(-50%);
  opacity: 0.5;
}

.carrousel_scroll-left__5xaVz {
  left: 15px;
  right: auto;
}

.carrousel_scroll-right__bKlYT {
  right: 15px;
  left: auto;
}

.carrousel_scroll-button__nyTPW span {
  color: #000;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

/* Disabled button has different text color */
.carrousel_scroll-button__nyTPW:disabled span {
  color: #666;
  text-shadow: none;
}

@media (max-width: 768px) and (pointer: coarse) and (any-pointer: coarse) {
  .carrousel_scroll-button__nyTPW {
    display: none;
  }
}

.carrousel_image-asset__GHpwl {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
  border-radius: 0;
}

.carrousel_video-card__nwKtI:hover .carrousel_image-asset__GHpwl {
  transform: scale(1.04);
}

/* Card timestamp styling - positioned on each card */
.carrousel_card-timestamp__LMFuT {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 100;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 4px;
  padding: 4px 8px;
  color: #1fb5f9;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  letter-spacing: 0.5px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom timestamp positioning for carousel */
.carrousel_carousel-timestamp__pLY2c {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  z-index: 100 !important;
}

body[dir='ltr'] .carrousel_carousel-timestamp__pLY2c {
  right: unset;
  left: 12px;
}

/* Override TimestampDisplay positioning when inside video cards */
.carrousel_video-card__nwKtI .carrousel_timestampDisplay__F7zKj {
  top: 12px !important;
  right: 12px !important;
}

/* Mobile override for TimestampDisplay in carousel */
@media (max-width: 768px) {
  .carrousel_video-card__nwKtI .carrousel_timestampDisplay__F7zKj {
    top: 12px !important;
    right: 12px !important;
  }

  body[dir='ltr'] .carrousel_video-card__nwKtI .carrousel_timestampDisplay__F7zKj {
    right: unset;
    left: 12px;
  }
}

/* Override TimestampDisplay positioning when inside video cards - using global selector */
.carrousel_video-card__nwKtI .timestampDisplay {
  top: 12px !important;
  right: 12px !important;
}

/* Mobile override for TimestampDisplay in carousel - using global selector */
@media (max-width: 768px) {
  .carrousel_video-card__nwKtI .timestampDisplay {
    top: 12px !important;
    right: 12px !important;
  }
}

/* Card content styling - title and description */
.carrousel_card-content__4_bUw {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 40px 15px 15px 15px;
  color: white;
  z-index: 50;
}

.carrousel_card-title__FBLcB {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: white;
  font-family: 'Rubik', sans-serif;
  line-height: 1.3;
  text-align: right;
  direction: rtl;
}

body[dir='ltr'] .carrousel_card-title__FBLcB {
  text-align: left;
  direction: ltr;
}

.carrousel_card-description__Ug1XG {
  white-space: pre-line;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Rubik', sans-serif;
  line-height: 1.4;
  text-align: right;
  direction: rtl;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 110%;
}

body[dir='ltr'] .carrousel_card-description__Ug1XG {
  text-align: left;
  direction: ltr;
}

/* Mobile adjustments for card content */
@media (max-width: 768px) {
  .carrousel_card-timestamp__LMFuT {
    top: 8px;
    right: 8px;
    font-size: 12px;
    padding: 3px 6px;
  }

  .carrousel_card-content__4_bUw {
    padding: 30px 12px 12px 12px;
  }

  .carrousel_card-title__FBLcB {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .carrousel_card-description__Ug1XG {
    font-size: 13px;
  }
}

/* Mobile override for carousel timestamp */
@media (max-width: 768px) {
  .carrousel_carousel-timestamp__pLY2c {
    top: 12px !important;
    right: 12px !important;
  }

  body[dir='ltr'] .carrousel_carousel-timestamp__pLY2c {
    right: unset;
    left: 12px;
  }
}

/**
 * Swiper 11.2.8
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 23, 2025
 */

/* FONT_START */
@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;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.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);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  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-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 var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .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);
  }
}
/* Slide styles end */

.product-buttons_products-container__OiqQh {
  position: absolute;
  display: flex;
  gap: 12px;
  top: 58px;
  right: 4.5%;
  z-index: 10;
  flex-direction: column;
  width: 75px;
}

body[dir='ltr'] .product-buttons_products-container__OiqQh {
  right: unset;
  left: 4.5%;
}

.product-buttons_product-item___qdJF {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.product-buttons_product-item--timeline__GBzDg:hover {
  transform: scale(1.05);
}

.product-buttons_product-button__QtNg1 {
  border-radius: 8%;
  margin-bottom: 4px;
}

.product-buttons_product-image__QCqy3 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
}

.product-buttons_product-initial__p_xVV {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #666;
  font-size: 20px;
  font-weight: bold;
}

.product-buttons_product-text__U1g7c {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  width: 75px;
  min-height: 25px;
  max-height: 35px;
  padding: 8px 1px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(8.100000381469727px);
          backdrop-filter: blur(8.100000381469727px);
}

.product-buttons_products-container-alignment__3WULO {
  top: 12px !important;
}

.product-buttons_bold-text__Z_S2t {
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  display: block;
}

.product-buttons_horizontal-product-item__Yhlo5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(62 62 62 / 40%);
  width: 100%;
  height: 92px;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}

.product-buttons_horizontal-product-item-image__oFvpn {
  width: 75px;
  height: 75px;
  border-radius: 8%;
  margin: 8.5px;
}

.product-buttons_horizontal-product-item-texts__ONeW0 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: right;
  gap: 5px;
  color: white;
  margin: 8.5px;
  font: 'Rubik';
  font-size: 14px;
  max-width: calc(100% - 110px);
}

body[dir='ltr'] .product-buttons_horizontal-product-item-texts__ONeW0 {
  align-items: flex-end;
  text-align: left;
}

.product-buttons_description-text__7_071 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-buttons_swiper-pagination__pL_KM {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.product-buttons_swiper-pagination-bullet__XFxHv {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  display: block;
  opacity: 0.3;
  cursor: pointer;
}

.product-buttons_swiper-pagination-bullet-active__qET_4 {
  opacity: 1;
  cursor: default;
}

.style_smart-product-debug-container__Jlh3i {
  display: none;
}

:hover > .style_smart-product-debug-container__Jlh3i {
  background: white;  
  bottom: 0;
  display: flex;
  flex-direction: column;
  font-size: 18px;
  padding: 10px;
  position: absolute;
  z-index: 30;
}

.style_smart-product-debug-row__dbLov {
  align-items: center;
  display: flex;
  flex-direction: row;
  font-weight: normal;
  gap: 10px;
  justify-content: space-between;
  width: 100%;
}

.style_smart-product-debug-row__dbLov label {
  font-weight: bold;
}

/* Poll Asset Styles */
.poll-card_poll-asset__8yPFC {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  background: #fff;
}

.poll-card_poll-gradient-overlay__JY3hm {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    181deg,
    rgba(0, 0, 0, 0) 21.39%,
    rgba(0, 0, 0, 0.43) 48.65%,
    rgba(255, 255, 255, 0.5) 85.69%
  );
  z-index: 1;
}

.poll-card_poll-content-overlay__kPlOO {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 20px 30px 80px 30px;
  max-width: 85%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.poll-card_poll-content-overlay--top__MoxAV {
  justify-content: flex-start;
}

.poll-card_poll-content-overlay--center__8Tbfe {
  justify-content: center;
}

.poll-card_poll-content-overlay--bottom__PY74w {
  justify-content: flex-end;
}

.poll-card_poll-icon__RBnvg {
  width: 36px;
  height: 36px;
  border-radius: 117px;
  border: 1.26px solid #8c8c8c;
  background: #fff;
  box-shadow: 0px 11.687px 23.374px -21.036px rgba(195, 195, 195, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.poll-card_poll-icon__RBnvg svg {
  width: 20px;
  height: 20px;
}

.poll-card_poll-title__eKCnr {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
  direction: rtl;
  text-align: center;
}

.poll-card_poll-subtitle__UwIxz {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  direction: rtl;
  text-align: center;
}

/* New styles for poll question and options */
.poll-card_poll-question__izsgG {
  font-family: Montserrat, Heebo, Assistant, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica, Arial, sans-serif !important;
  text-align: center;
  width: 100%;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 20px;
  color: #ffffff;
  flex-shrink: 0;
  padding: 0 10px;
}

.poll-card_poll-options___P0XV {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 280px;
  flex-shrink: 0;
}

.poll-card_poll-option-container__88N_G {
  width: 100%;
}

.poll-card_poll-option-bar__IyFgL {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border: 0 solid rgba(255, 255, 255, 1);
  border-radius: 6px;
  height: 8vh;
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.poll-card_poll-option-progress__ur0t2 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: rgba(140, 140, 140, 0.3);
  border-radius: 2px;
  transition: width 0.3s ease;
  z-index: 1;
}

.poll-card_poll-option-content__cpzKN {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  height: 100%;
  direction: rtl;
}

body[dir='ltr'] .poll-card_poll-option-content__cpzKN {
  direction: ltr;
}

.poll-card_poll-option-text__HSRCQ {
  font-size: 12px;
  font-family: Montserrat, Heebo, Assistant, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica, Arial, sans-serif !important;
  position: relative;
  z-index: 1;
  font-style: normal;
  line-height: 14px;
  font-weight: 500;
  color: #333;
  text-shadow: none;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 1;
  max-width: calc(100% - 40px);
}

body[dir='ltr'] .poll-card_poll-option-text__HSRCQ {
  text-align: left;
  direction: ltr;
}

.poll-card_poll-option-percentage__3wWI6 {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  text-shadow: none;
  margin-left: 8px;
}

.poll-card_poll-option__q_kSS {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  direction: rtl;
  text-align: center;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transition: all 0.2s ease;
}

.poll-card_poll-option__q_kSS:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.poll-card_poll-option-more__EkRqv {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  direction: rtl;
  text-align: center;
  margin-top: 4px;
}

/* Loading styles */
.poll-card_poll-loading__wuvGq {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
}

.poll-card_poll-spinner__GCIiB {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top: 2px solid white;
  animation: poll-card_spin__MIDgL 1s linear infinite;
}

@keyframes poll-card_spin__MIDgL {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Mobile specific styles for polls */
@media (max-width: 768px) {
  .poll-card_poll-question__izsgG {
    font-size: 15px;
  }

  .poll-card_poll-option-bar__IyFgL {
    height: 35px;
    border-radius: 8px;
  }

  .poll-card_poll-option-progress__ur0t2 {
    display: block;
  }

  .poll-card_poll-option-content__cpzKN {
    padding: 0 12px;
  }

  .poll-card_poll-option-text__HSRCQ {
    font-size: 12px;
    font-weight: 500;
    color: #333;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1 1;
    max-width: calc(100% - 40px);
  }

  body[dir='ltr'] .poll-card_poll-option-text__HSRCQ {
    text-align: left;
    direction: ltr;
  }

  .poll-card_poll-option-percentage__3wWI6 {
    font-size: 11px;
    font-weight: 600;
    color: #333;
  }

  .poll-card_poll-option__q_kSS {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 16px;
  }

  .poll-card_poll-option-more__EkRqv {
    font-size: 11px;
  }

  .poll-card_poll-title__eKCnr {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .poll-card_poll-subtitle__UwIxz {
    font-size: 12px;
  }

  .poll-card_poll-content-overlay__kPlOO {
    padding: 20px 14px 80px 14px;
  }

  .poll-card_poll-spinner__GCIiB {
    width: 20px;
    height: 20px;
  }
}

.timestamp-display_timestampDisplay__K_5KR {
  position: absolute;
  top: 5%;
  right: 10%;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 2px;
  padding: 2px 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

body[dir='ltr'] .timestamp-display_timestampDisplay__K_5KR {
  left: 10%;
  right: unset !important;
}

@media (max-width: 768px) {
  .timestamp-display_timestampDisplay__K_5KR {
    top: 5vh;
    right: 10vw;
    font-size: 20px;
    padding: 2px 8px;
    border-radius: 2px;
  }
}

.timestamp-display_timestampText__SI_rA {
  font-size: 16px;
  font-weight: 700;
  color: #1fb5f9;
  letter-spacing: 0.5px;
  font-family: 'Rubik';
}

@media (max-width: 768px) {
  .timestamp-display_timestampText__SI_rA {
    font-size: 16px;
  }
}

