/* ==========================================================================
   MOTOLECTRON NOTIFICATION BELL & FLYONUI COMPONENT INTEGRATION
   Minimalist Dark Zinc Theme (#18181b) matching Sonner Toast System
   Simple, sleek, zero loud neon colors, clean borders & subtle typography
   ========================================================================== */

/* Minimalist Page Stability */
html {
  scrollbar-gutter: stable;
}

/* Dropdown Container */
.dropdown.relative,
.notification-container {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
}

/* Bell Button & Toggle */
#notifBtn,
#dropdown-scrollable,
.dropdown-toggle[aria-label="Notification Button"] {
  background: transparent !important;
  border: none !important;
  color: #a1a1aa !important; /* text-base-content/70 */
  cursor: pointer !important;
  padding: 8px !important;
  border-radius: 9999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: color 0.15s ease, background-color 0.15s ease, transform 0.15s ease !important;
  outline: none !important;
  text-decoration: none !important;
}

#notifBtn:hover,
#dropdown-scrollable:hover,
.dropdown-toggle[aria-label="Notification Button"]:hover {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
  transform: scale(1.04) !important;
}

#notifBtn:active,
#dropdown-scrollable:active {
  transform: scale(0.96) !important;
}

/* Bell SVG Icon */
.icon-\[tabler--bell\],
#notifBtn svg,
#dropdown-scrollable svg,
.cart-icon-wrapper svg {
  width: 20px !important;
  height: 20px !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  fill: none !important;
  transition: stroke 0.15s ease !important;
}

/* Indicator Wrapper */
.indicator,
.notification-container .cart-icon-wrapper {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Indicator Item / Badge (Clean Red, No Neon Glare) */
.indicator-item,
.notification-badge,
#notifCount,
#notificationBadge {
  position: absolute !important;
  top: -2px !important;
  right: -4px !important;
  background-color: #ef4444 !important; /* bg-error */
  color: #ffffff !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  min-width: 16px !important;
  height: 16px !important;
  line-height: 1 !important;
  border-radius: 9999px !important;
  padding: 0 4px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid #09090b !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4) !important;
  pointer-events: none !important;
  z-index: 5 !important;
  box-sizing: border-box !important;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease !important;
}

/* Dot Indicator Variant */
.indicator-item.size-2\.5,
.indicator-item.dot-only {
  width: 9px !important;
  height: 9px !important;
  min-width: 9px !important;
  top: 1px !important;
  right: 1px !important;
  padding: 0 !important;
}

.notification-badge.bump,
#notifCount.bump {
  animation: notifBadgeBump 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

@keyframes notifBadgeBump {
  0% { transform: scale(1); }
  50% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

/* ==========================================================================
   DROPDOWN MENU CARD (Matching Minimalist Sonner Toast Aesthetics)
   ========================================================================== */
#notifDropdown,
.notif-dropdown,
.dropdown-menu[aria-labelledby="dropdown-scrollable"],
.dropdown-menu[role="menu"] {
  display: none;
  position: absolute !important;
  top: calc(100% + 10px) !important;
  right: -10px !important;
  width: 380px !important;
  max-width: calc(100vw - 24px) !important;
  background-color: #18181b !important; /* Dark Zinc #18181b */
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px !important;
  box-shadow:
    0 20px 40px -15px rgba(0, 0, 0, 0.75),
    0 8px 16px -4px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  z-index: 100050 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  transform-origin: top right !important;
  animation: notifDropdownFade 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

#notifDropdown.show,
.notif-dropdown.show,
.dropdown.open > .dropdown-menu,
.dropdown-menu.dropdown-open\:opacity-100:not(.hidden) {
  display: block !important;
}

@keyframes notifDropdownFade {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Header */
.notif-dropdown-header,
.dropdown-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 14px 18px !important;
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.notif-header-title-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.notif-dropdown-header h6,
.dropdown-header h6,
.notif-header-title {
  color: #ffffff !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  margin: 0 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

/* Unread Count Badge in Header */
.notif-unread-pill {
  background: #27272a !important; /* bg-zinc-800 */
  color: #d4d4d8 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  padding: 2px 8px !important;
  border-radius: 9999px !important;
}

/* Mark all read button */
.notif-mark-all-btn {
  background: transparent !important;
  color: #a1a1aa !important;
  border: none !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  padding: 4px 8px !important;
  border-radius: 6px !important;
  transition: color 0.15s ease, background-color 0.15s ease !important;
}

.notif-mark-all-btn:hover {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
}

.notif-mark-all-btn svg {
  width: 13px !important;
  height: 13px !important;
  stroke: currentColor !important;
  stroke-width: 2.2 !important;
}

/* ==========================================================================
   SCROLLABLE NOTIFICATION LIST & ITEMS
   ========================================================================== */
.notif-list,
.dropdown-menu .overflow-y-auto {
  max-height: 360px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  padding: 4px 0 !important;
}

/* Minimalist Dark Zinc Scrollbar (Zero neon colors!) */
.notif-list::-webkit-scrollbar,
.dropdown-menu .overflow-y-auto::-webkit-scrollbar {
  width: 5px !important;
}

.notif-list::-webkit-scrollbar-track,
.dropdown-menu .overflow-y-auto::-webkit-scrollbar-track {
  background: transparent !important;
}

.notif-list::-webkit-scrollbar-thumb,
.dropdown-menu .overflow-y-auto::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12) !important;
  border-radius: 4px !important;
}

.notif-list::-webkit-scrollbar-thumb:hover,
.dropdown-menu .overflow-y-auto::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25) !important;
}

/* Notification Item */
.notif-item,
.dropdown-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 12px 18px !important;
  color: #d4d4d8 !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  transition: background-color 0.15s ease !important;
  position: relative !important;
  box-sizing: border-box !important;
  cursor: pointer !important;
}

.notif-item:last-child,
.dropdown-item:last-child {
  border-bottom: none !important;
}

.notif-item:hover,
.dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.05) !important;
}

.notif-item.unread,
.dropdown-item.unread {
  background-color: rgba(255, 255, 255, 0.02) !important;
}

.notif-item.unread:hover,
.dropdown-item.unread:hover {
  background-color: rgba(255, 255, 255, 0.06) !important;
}

/* Avatar / Circular Badge (Muted Zinc #27272a, Matching Toast) */
.notif-icon-box,
.avatar {
  position: relative !important;
  display: inline-flex !important;
  flex-shrink: 0 !important;
}

.notif-icon-box,
.avatar > div,
.avatar .w-10 {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  border-radius: 9999px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #27272a !important; /* bg-zinc-800 */
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #f4f4f5 !important;
  overflow: hidden !important;
  margin-top: 1px !important;
}

.avatar img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 9999px !important;
}

.notif-icon-box svg {
  width: 18px !important;
  height: 18px !important;
  stroke: #ffffff !important;
  stroke-width: 2 !important;
  fill: none !important;
}

/* Item Content & Typography */
.notif-content-wrap,
.dropdown-item > div:last-child {
  flex: 1 !important;
  min-width: 0 !important;
}

.notif-title,
.dropdown-item h6 {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 0 2px 0 !important;
  line-height: 1.35 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.notif-message,
.dropdown-item small {
  font-size: 12px !important;
  color: #a1a1aa !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.notif-time {
  font-size: 11px !important;
  color: #71717a !important;
  margin-top: 4px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
}

.notif-time svg {
  width: 11px !important;
  height: 11px !important;
  stroke: currentColor !important;
}

/* Minimalist Unread Dot */
.notif-unread-dot {
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background-color: #ef4444 !important;
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  box-shadow: 0 0 4px rgba(239, 68, 68, 0.5) !important;
}

/* Empty State */
.notif-empty-state {
  text-align: center !important;
  padding: 36px 20px !important;
  color: #a1a1aa !important;
}

.notif-empty-icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 12px !important;
  color: #a1a1aa !important;
}

.notif-empty-icon svg {
  width: 20px !important;
  height: 20px !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
}

.notif-empty-title {
  color: #f4f4f5 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  margin-bottom: 4px !important;
}

.notif-empty-desc {
  font-size: 12px !important;
  color: #71717a !important;
  margin: 0 !important;
}

/* ==========================================================================
   DROPDOWN FOOTER (FlyonUI "View all" with Tabler Eye)
   ========================================================================== */
.notif-dropdown-footer,
.dropdown-footer {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 12px 18px !important;
  background: transparent !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #a1a1aa !important;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: color 0.15s ease, background-color 0.15s ease !important;
  cursor: pointer !important;
}

.notif-dropdown-footer:hover,
.dropdown-footer:hover {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.04) !important;
}

.notif-dropdown-footer svg,
.icon-\[tabler--eye\] {
  width: 15px !important;
  height: 15px !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  fill: none !important;
}

/* ==========================================================================
   FLOATING TOAST CONTAINER (SHADCN / SONNER BASE-NOVA DESIGN)
   ========================================================================== */
#notificationToastContainer {
  position: fixed !important;
  bottom: max(32px, calc(24px + env(safe-area-inset-bottom, 0px))) !important;
  right: max(28px, calc(20px + env(safe-area-inset-right, 0px))) !important;
  display: flex !important;
  flex-direction: column-reverse !important;
  gap: 10px !important;
  width: 380px !important;
  max-width: calc(100vw - 32px) !important;
  z-index: 999999 !important;
  pointer-events: none !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

.notif-toast {
  pointer-events: auto !important;
  background-color: #18181b !important;
  border: 1px solid #27272a !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.65), 0 4px 6px -2px rgba(0, 0, 0, 0.4) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  padding: 14px 16px !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  color: #f4f4f5 !important;
  box-sizing: border-box !important;
  position: relative !important;
  overflow: hidden !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, box-shadow 0.2s ease, border-color 0.2s ease !important;
  animation: sonnerToastSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

.notif-toast:hover {
  transform: translateY(-2px) !important;
  border-color: #3f3f46 !important;
  box-shadow: 0 14px 36px -10px rgba(0, 0, 0, 0.8), 0 4px 6px -2px rgba(0, 0, 0, 0.4) !important;
}

.notif-toast.dismissing {
  animation: sonnerToastSlideOut 0.26s cubic-bezier(0.7, 0, 0.84, 0) forwards !important;
}

@keyframes sonnerToastSlideIn {
  from {
    transform: translateY(16px) scale(0.96);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes sonnerToastSlideOut {
  from {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  to {
    transform: translateY(12px) scale(0.94);
    opacity: 0;
  }
}

/* Minimalist Icon Badge */
.notif-toast .notif-icon-box {
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  border-radius: 50% !important;
  background: #27272a !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  margin-top: 1px !important;
}

.notif-toast .notif-icon-box svg {
  width: 15px !important;
  height: 15px !important;
  stroke-width: 2 !important;
}

.notif-toast .notif-icon-box.type-order,
.notif-toast .notif-icon-box.type-success {
  background: rgba(34, 197, 94, 0.12) !important;
  border-color: rgba(34, 197, 94, 0.25) !important;
  color: #22c55e !important;
}

.notif-toast .notif-icon-box.type-promo,
.notif-toast .notif-icon-box.type-favorites,
.notif-toast .notif-icon-box.type-info {
  background: rgba(56, 189, 248, 0.12) !important;
  border-color: rgba(56, 189, 248, 0.25) !important;
  color: #38bdf8 !important;
}

.notif-toast .notif-icon-box.type-restock,
.notif-toast .notif-icon-box.type-warning {
  background: rgba(245, 158, 11, 0.12) !important;
  border-color: rgba(245, 158, 11, 0.25) !important;
  color: #f59e0b !important;
}

.notif-toast .notif-icon-box.type-error {
  background: rgba(239, 68, 68, 0.12) !important;
  border-color: rgba(239, 68, 68, 0.25) !important;
  color: #ef4444 !important;
}

.notif-toast .notif-icon-box.type-system {
  background: rgba(161, 161, 170, 0.12) !important;
  border-color: rgba(161, 161, 170, 0.25) !important;
  color: #a1a1aa !important;
}

/* Toast Typography */
.notif-toast .notif-content-wrap {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
  padding-right: 18px !important;
}

.notif-toast .notif-title {
  color: #ffffff !important;
  font-weight: 500 !important;
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
  letter-spacing: -0.01em !important;
  margin: 0 !important;
}

.notif-toast .notif-message {
  color: #a1a1aa !important;
  font-size: 0.775rem !important;
  line-height: 1.15rem !important;
  margin-top: 2px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

/* Action Button ("View Cart", "View") */
.notif-toast-action-btn {
  flex-shrink: 0 !important;
  background-color: #27272a !important;
  color: #f4f4f5 !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  padding: 6px 12px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(63, 63, 70, 0.6) !important;
  cursor: pointer !important;
  outline: none !important;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.1s ease !important;
  align-self: center !important;
  margin-left: 4px !important;
  text-decoration: none !important;
}

.notif-toast-action-btn:hover {
  background-color: #3f3f46 !important;
  border-color: rgba(113, 113, 122, 0.8) !important;
  color: #ffffff !important;
}

.notif-toast-action-btn:active {
  transform: scale(0.96) !important;
}

/* Toast Close Dismiss Button (✕) */
.notif-toast-close {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 6px !important;
  background: transparent !important;
  border: none !important;
  color: #a1a1aa !important;
  cursor: pointer !important;
  padding: 0 !important;
  margin: 0 !important;
  outline: none !important;
  opacity: 0.65 !important;
  transition: opacity 0.15s ease, color 0.15s ease, background-color 0.15s ease !important;
}

.notif-toast-close:hover {
  opacity: 1 !important;
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  #notifDropdown,
  .notif-dropdown {
    width: calc(100vw - 20px) !important;
    right: -10px !important;
  }
  #notificationToastContainer {
    bottom: 16px !important;
    right: 12px !important;
    left: 12px !important;
    width: auto !important;
    max-width: none !important;
  }
}

/* ==========================================================================
   CUSTOM "ADDED TO CART!" TOAST & SHINE BUTTON
   ========================================================================== */
.notif-toast.cart-toast {
  border-radius: 20px !important;
  padding: 16px 20px !important;
  background-color: #18181b !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.75), 0 8px 16px -4px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 16px !important;
}

.toast-cart-badge {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  border-radius: 9999px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #27272a !important;
  color: #ffffff !important;
  flex-shrink: 0 !important;
  margin-top: 2px !important;
}

.toast-cart-content {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
  padding-right: 18px !important;
}

.toast-cart-header {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  line-height: 1.25 !important;
  margin: 0 0 3px 0 !important;
}

.toast-cart-product-name {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #e4e4e7 !important;
  line-height: 1.35 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  max-width: 240px !important;
}

.toast-cart-product-price {
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-top: 1px !important;
}

.toast-cart-btn {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: rgb(5, 5, 5);
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  gap: 8px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  outline: none;
  overflow: hidden;
  font-size: 14px;
  cursor: pointer;
  height: 38px;
  margin-top: 10px;
  width: fit-content;
  text-decoration: none;
}

.toast-cart-btn .btn-arrow-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease-in-out;
}

.toast-cart-btn:hover {
  transform: scale(1.04);
  border-color: rgba(255, 255, 255, 0.6);
}

.toast-cart-btn:hover .btn-arrow-icon {
  transform: translateX(4px);
}

.toast-cart-btn::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.75),
    rgba(255, 255, 255, 0) 80%
  );
  top: 0;
  left: -80px;
  opacity: 0.7;
}

.toast-cart-btn:hover::before {
  animation: toastBtnShine 1.4s ease-out infinite;
}

.toast-cart-btn .btn-arrow-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #050505;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 2px;
  transition: transform 0.3s ease-in-out;
}

.toast-cart-btn:hover .btn-arrow-badge {
  transform: translateX(3px);
}

.toast-cart-btn .btn-arrow-badge .btn-arrow-icon {
  width: 13px;
  height: 13px;
  stroke: #050505;
  stroke-width: 2.5;
  fill: none;
}

@keyframes toastBtnShine {
  0% {
    left: -80px;
  }
  60% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

