/* ============================================================
   ECA v4 — Uploader Guards (duration + plan + thumbnail picker)
   Mobile-first, full responsive, dark-mode aware
   ============================================================ */

/* ---------- FIX: Cover thumbnail stripes ----------
   When .x-image has a background-image set (cover applied), hide the
   entire .x-uploader form. SNGINE's CSS makes the <input type="file">
   100%×100% with font-size:100px and opacity:0 — but some browser
   shields (Brave anti-fingerprint, Wave, Dark Reader) override
   opacity:0 and render the native file-input as huge striped pixels.
   This CSS-only fix avoids the JS timing race entirely. */
.publisher-custom-thumbnail .x-image[style*="background-image"] .x-uploader,
.publisher-reel-custom-thumbnail .x-image[style*="background-image"] .x-uploader,
.publisher-video-custom-thumbnail .x-image[style*="background-image"] .x-uploader {
  display: none !important;
}
/* Also kill the native file input visibility hard, even when form is shown.
   This makes the placeholder ALWAYS transparent regardless of opacity overrides. */
.publisher-custom-thumbnail .x-uploader input[type="file"],
.publisher-reel-custom-thumbnail .x-uploader input[type="file"],
.publisher-video-custom-thumbnail .x-uploader input[type="file"] {
  opacity: 0 !important;
  visibility: hidden !important;
  font-size: 0 !important;
  color: transparent !important;
  background: transparent !important;
  width: 100% !important;
  height: 100% !important;
}
/* When background-image is set, the .x-image should show ONLY the image
   (and the close button + loader). Force background-size cover so the
   uploaded thumbnail fills the box without stretching. */
.publisher-custom-thumbnail .x-image[style*="background-image"],
.publisher-reel-custom-thumbnail .x-image[style*="background-image"],
.publisher-video-custom-thumbnail .x-image[style*="background-image"] {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-color: #000 !important;
}


/* ---------- Shared overlay ---------- */
.eca-ug-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity .2s ease;
}
.eca-ug-overlay.open {
  display: flex;
  opacity: 1;
}

/* ---------- Modal shell ---------- */
.eca-ug-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
  width: 100%;
  max-width: 460px;
  max-height: 92vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(.96);
  transition: transform .25s cubic-bezier(.16, 1, .3, 1);
}
.eca-ug-overlay.open .eca-ug-modal {
  transform: translateY(0) scale(1);
}
body.night-mode .eca-ug-modal {
  background: #1c2421;
  color: #e8eae9;
}

/* ---------- Modal header ---------- */
.eca-ug-modal-head {
  position: relative;
  padding: 22px 20px 16px;
  text-align: center;
  background: linear-gradient(135deg, #2e6b4d 0%, #1e4a35 100%);
  color: #fff;
}
.eca-ug-modal-head h3 {
  margin: 8px 0 4px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .2px;
}
.eca-ug-modal-head p {
  margin: 0;
  font-size: 13px;
  opacity: .9;
  line-height: 1.4;
}
.eca-ug-modal-head .eca-ug-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 4px;
  border-radius: 50%;
  background: rgba(240, 196, 81, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .08);
}
.eca-ug-modal-head .eca-ug-icon svg {
  width: 28px;
  height: 28px;
  color: #f0c451;
}
.eca-ug-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: 0;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
}
.eca-ug-close:hover { background: rgba(255, 255, 255, .28); }
.eca-ug-close svg { width: 16px; height: 16px; }

/* ---------- Modal body ---------- */
.eca-ug-modal-body {
  padding: 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* ---------- Plan limit display ---------- */
.eca-ug-plan-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #eef2f0 100%);
  border: 1px solid rgba(46, 107, 77, .15);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 14px;
}
body.night-mode .eca-ug-plan-card {
  background: linear-gradient(135deg, #2a3330 0%, #232b28 100%);
  border-color: rgba(240, 196, 81, .15);
}
.eca-ug-plan-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.eca-ug-plan-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #2e6b4d;
}
body.night-mode .eca-ug-plan-name { color: #5fb583; }
.eca-ug-plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(240, 196, 81, .15);
  color: #c8901a;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
body.night-mode .eca-ug-plan-badge { color: #f0c451; }
.eca-ug-plan-badge.enterprise {
  background: rgba(46, 107, 77, .12);
  color: #2e6b4d;
}
body.night-mode .eca-ug-plan-badge.enterprise {
  background: rgba(95, 181, 131, .15);
  color: #5fb583;
}
.eca-ug-duration {
  margin-top: 12px;
  text-align: center;
}
.eca-ug-duration-num {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  color: #2e6b4d;
  font-variant-numeric: tabular-nums;
}
body.night-mode .eca-ug-duration-num { color: #5fb583; }
.eca-ug-duration-label {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: #6b7570;
  text-transform: uppercase;
  letter-spacing: 1px;
}
body.night-mode .eca-ug-duration-label { color: #9ba39f; }

/* progress bar visual */
.eca-ug-bar {
  margin-top: 14px;
  height: 6px;
  border-radius: 3px;
  background: rgba(46, 107, 77, .12);
  overflow: hidden;
  position: relative;
}
body.night-mode .eca-ug-bar { background: rgba(255, 255, 255, .08); }
.eca-ug-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #2e6b4d 0%, #5fb583 50%, #f0c451 100%);
  border-radius: 3px;
  transition: width .4s cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Tips / hint list ---------- */
.eca-ug-tips {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: #4d5752;
}
body.night-mode .eca-ug-tips { color: #c2c8c5; }
.eca-ug-tips li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  line-height: 1.4;
}
.eca-ug-tips li svg {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  color: #5fb583;
  margin-top: 2px;
}

/* ---------- Upsell card (Premium → Enterprise) ---------- */
.eca-ug-upsell {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(240, 196, 81, .12) 0%, rgba(240, 196, 81, .04) 100%);
  border: 1px dashed rgba(240, 196, 81, .4);
  font-size: 12.5px;
  line-height: 1.45;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6b5a25;
}
body.night-mode .eca-ug-upsell {
  background: linear-gradient(135deg, rgba(240, 196, 81, .08) 0%, rgba(240, 196, 81, .02) 100%);
  color: #d8c891;
}
.eca-ug-upsell svg {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  color: #f0c451;
}
.eca-ug-upsell a {
  color: #c8901a;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 144, 26, .4);
}
.eca-ug-upsell a:hover { border-bottom-color: #c8901a; }

/* ---------- Modal footer actions ---------- */
.eca-ug-modal-foot {
  padding: 14px 20px 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.eca-ug-btn {
  flex: 1 1 auto;
  min-width: 120px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: inherit;
}
.eca-ug-btn:active { transform: translateY(1px); }
.eca-ug-btn-primary {
  background: linear-gradient(135deg, #d4a017 0%, #c8901a 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(200, 144, 26, .35);
}
.eca-ug-btn-primary:hover {
  box-shadow: 0 6px 20px rgba(200, 144, 26, .45);
}
.eca-ug-btn-green {
  background: linear-gradient(135deg, #2e6b4d 0%, #1e4a35 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(46, 107, 77, .35);
}
.eca-ug-btn-green:hover {
  box-shadow: 0 6px 20px rgba(46, 107, 77, .45);
}
.eca-ug-btn-ghost {
  background: transparent;
  color: #6b7570;
  border: 1px solid rgba(0, 0, 0, .12);
}
body.night-mode .eca-ug-btn-ghost {
  color: #c2c8c5;
  border-color: rgba(255, 255, 255, .12);
}
.eca-ug-btn-ghost:hover {
  background: rgba(0, 0, 0, .04);
}
body.night-mode .eca-ug-btn-ghost:hover {
  background: rgba(255, 255, 255, .06);
}

/* ---------- Lock state (Free user / blocked) ---------- */
.eca-ug-modal-head.locked {
  background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%);
}
.eca-ug-modal-head.locked .eca-ug-icon {
  background: rgba(240, 196, 81, .2);
}

/* ============================================================
   THUMBNAIL PICKER (Instagram-style)
   ============================================================ */
.eca-ug-thumb {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.eca-ug-thumb.open { display: flex; }

.eca-ug-thumb-panel {
  background: #0d0d0d;
  border-radius: 18px;
  width: 100%;
  max-width: 420px;
  max-height: 92vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #fff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .55);
}

.eca-ug-thumb-head {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.eca-ug-thumb-head h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.eca-ug-thumb-head .eca-ug-close {
  background: rgba(255, 255, 255, .1);
}

.eca-ug-thumb-preview {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 60vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.eca-ug-thumb-preview.landscape {
  aspect-ratio: 16 / 9;
}
.eca-ug-thumb-preview video,
.eca-ug-thumb-preview canvas {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.eca-ug-thumb-preview .eca-ug-thumb-hint {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, .55);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .5px;
  color: #f0c451;
  pointer-events: none;
}

/* Slider track with thumbnails strip background */
.eca-ug-thumb-track {
  padding: 14px 18px 8px;
}
.eca-ug-thumb-strip {
  position: relative;
  height: 56px;
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}
.eca-ug-thumb-strip-canvases {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 0;
}
.eca-ug-thumb-strip-canvases canvas {
  flex: 1 1 0;
  height: 100%;
  width: auto;
  object-fit: cover;
  display: block;
}
.eca-ug-thumb-strip-cursor {
  position: absolute;
  top: -2px;
  bottom: -2px;
  width: 4px;
  background: #f0c451;
  border-radius: 3px;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, .6), 0 0 12px rgba(240, 196, 81, .6);
  transform: translateX(-50%);
  pointer-events: none;
}

.eca-ug-thumb-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .15);
  outline: none;
  cursor: pointer;
}
.eca-ug-thumb-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f0c451;
  border: 3px solid #2e6b4d;
  box-shadow: 0 0 8px rgba(0, 0, 0, .5);
  cursor: pointer;
}
.eca-ug-thumb-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f0c451;
  border: 3px solid #2e6b4d;
  box-shadow: 0 0 8px rgba(0, 0, 0, .5);
  cursor: pointer;
}
.eca-ug-thumb-time {
  margin-top: 6px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  font-variant-numeric: tabular-nums;
}

/* Actions */
.eca-ug-thumb-actions {
  padding: 12px 18px 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.eca-ug-thumb-actions .eca-ug-btn {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .1);
}
.eca-ug-thumb-actions .eca-ug-btn:hover {
  background: rgba(255, 255, 255, .14);
}
.eca-ug-thumb-actions .eca-ug-btn-primary {
  background: linear-gradient(135deg, #d4a017 0%, #c8901a 100%);
  border: 0;
}
.eca-ug-thumb-actions .eca-ug-btn-primary:hover {
  background: linear-gradient(135deg, #e0b020 0%, #d4a017 100%);
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 575.98px) {
  .eca-ug-overlay,
  .eca-ug-thumb { padding: 0; align-items: flex-end; }
  .eca-ug-modal,
  .eca-ug-thumb-panel {
    max-width: 100%;
    max-height: 95vh;
    border-radius: 18px 18px 0 0;
  }
  .eca-ug-modal-head { padding: 18px 16px 14px; }
  .eca-ug-modal-head h3 { font-size: 17px; }
  .eca-ug-modal-body { padding: 16px; }
  .eca-ug-modal-foot { padding: 12px 16px 18px; }
  .eca-ug-duration-num { font-size: 32px; }
  .eca-ug-btn { padding: 11px 14px; font-size: 13px; min-width: 100%; }
  .eca-ug-thumb-preview { max-height: 50vh; }
  .eca-ug-thumb-actions .eca-ug-btn { min-width: 100%; }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .eca-ug-modal,
  .eca-ug-thumb-panel { max-width: 90vw; }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .eca-ug-overlay,
  .eca-ug-modal,
  .eca-ug-bar-fill { transition: none !important; }
}

/* ============================================================
   Frame Cover Picker
   - "Elegir frame del video" button injected into SNGINE's native
     .publisher-(reel|video)-custom-thumbnail container
   - Modal with video preview + range slider to pick the cover frame
   ============================================================ */

/* Inline button injected into SNGINE's native cover-thumbnail UI */
.eca-ug-frame-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 8px 6px 4px;
  padding: 9px 14px;
  background: linear-gradient(135deg, #2e6b4d 0%, #1e4a35 100%);
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(46, 107, 77, .35);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.eca-ug-frame-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(46, 107, 77, .45);
}
.eca-ug-frame-btn:active { transform: translateY(0); }
.eca-ug-frame-btn:focus-visible {
  outline: 2px solid #f0c451;
  outline-offset: 2px;
}
.eca-ug-frame-btn svg { color: #fff; flex-shrink: 0; }

/* Frame picker modal — larger than info modals to host the video preview */
.eca-ug-frame-modal {
  max-width: 720px;
  width: 100%;
}

/* Head */
.eca-ug-frame-head {
  position: relative;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #2e6b4d 0%, #1e4a35 100%);
  color: #fff;
}
.eca-ug-frame-head h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .2px;
}
.eca-ug-frame-head .eca-ug-close {
  position: static;
  background: rgba(255, 255, 255, .12);
  border: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background .15s ease;
}
.eca-ug-frame-head .eca-ug-close:hover { background: rgba(255, 255, 255, .22); }
.eca-ug-frame-head .eca-ug-close svg { width: 18px; height: 18px; }

/* Video stage */
.eca-ug-frame-stage {
  position: relative;
  background: #000;
  width: 100%;
  /* Aspect tuned for vertical reels but works for landscape too */
  aspect-ratio: 16 / 10;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eca-ug-frame-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  display: block;
}
/* Subtle grid overlay for "pro" framing feel */
.eca-ug-frame-overlay-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 33.333% 33.333%;
  opacity: .55;
  mix-blend-mode: screen;
}

/* Controls */
.eca-ug-frame-controls {
  padding: 16px 20px 8px;
  background: #fff;
}
body.night-mode .eca-ug-frame-controls { background: #1c2421; }

.eca-ug-frame-time {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  font-weight: 600;
  color: #2e6b4d;
  margin-bottom: 10px;
  letter-spacing: .3px;
}
.eca-ug-frame-time .sep { opacity: .45; font-weight: 400; }
.eca-ug-frame-time .dur { color: #6b7570; font-weight: 500; }
body.night-mode .eca-ug-frame-time { color: #7ec79c; }
body.night-mode .eca-ug-frame-time .dur { color: #9fa9a3; }

/* Range slider — custom, on-brand */
.eca-ug-frame-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 28px;
  background: transparent;
  cursor: pointer;
  display: block;
}
.eca-ug-frame-slider::-webkit-slider-runnable-track {
  height: 6px;
  background: linear-gradient(90deg, #2e6b4d 0%, #5fa37c 100%);
  border-radius: 999px;
}
.eca-ug-frame-slider::-moz-range-track {
  height: 6px;
  background: linear-gradient(90deg, #2e6b4d 0%, #5fa37c 100%);
  border-radius: 999px;
}
.eca-ug-frame-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #2e6b4d;
  margin-top: -8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
  cursor: grab;
  transition: transform .12s ease;
}
.eca-ug-frame-slider::-webkit-slider-thumb:active { transform: scale(1.1); cursor: grabbing; }
.eca-ug-frame-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #2e6b4d;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
  cursor: grab;
}
.eca-ug-frame-slider:focus-visible { outline: none; }
.eca-ug-frame-slider:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 0 4px rgba(240, 196, 81, .45);
}

.eca-ug-frame-hint {
  margin: 10px 0 0;
  text-align: center;
  font-size: 12.5px;
  color: #6b7570;
  line-height: 1.45;
}
body.night-mode .eca-ug-frame-hint { color: #9fa9a3; }

/* Loading spinner inside "Usar este frame" button */
.eca-ug-spin {
  animation: eca-ug-spin 0.9s linear infinite;
  vertical-align: -3px;
  margin-right: 4px;
}
@keyframes eca-ug-spin {
  to { transform: rotate(360deg); }
}
.eca-ug-btn.loading { opacity: .8; cursor: progress; }

/* ----- Frame picker responsive ----- */
@media (max-width: 575.98px) {
  /* On mobile: fullscreen-ish modal for max picker real estate */
  .eca-ug-frame-overlay { padding: 0; }
  .eca-ug-frame-modal {
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }
  .eca-ug-frame-stage {
    aspect-ratio: auto;
    flex: 1 1 auto;
    min-height: 0;
  }
  .eca-ug-frame-controls { padding: 14px 16px 6px; }
  .eca-ug-frame-head { padding: 14px 16px; }
  .eca-ug-frame-head h3 { font-size: 15px; }
  .eca-ug-frame-btn {
    width: calc(100% - 12px);
    justify-content: center;
    padding: 10px 14px;
  }
}

@media (min-width: 576px) {
  .eca-ug-frame-stage { aspect-ratio: 16 / 9; max-height: 60vh; }
}

@media (prefers-reduced-motion: reduce) {
  .eca-ug-spin { animation: none !important; }
  .eca-ug-frame-btn { transition: none !important; }
  .eca-ug-frame-slider::-webkit-slider-thumb { transition: none !important; }
}
