/* SignConnect Widget build 2026-01-27T11:48:46+00:00 v0.1.0 */


/* src\widget.css */

@import url("https://fonts.googleapis.com/css2?family=Arimo:wght@400..700&family=DM+Sans:wght@350;800&display=swap");

#sc-root .sc-player,
#sc-root .sc-player *,
#sc-root .sc-player *::before,
#sc-root .sc-player *::after,
#sc-root .sc-modal,
#sc-root .sc-modal *,
#sc-root .sc-modal *::before,
#sc-root .sc-modal *::after,
#sc-root .sc-fullscreen,
#sc-root .sc-fullscreen *,
#sc-root .sc-fullscreen *::before,
#sc-root .sc-fullscreen *::after,
#sc-root #aslPlayTab,
#sc-root #aslPlayTab *,
#sc-root #aslPlayTab *::before,
#sc-root #aslPlayTab *::after,
#sc-root .sc-fab,
#sc-root .sc-fab *,
#sc-root .sc-fab *::before,
#sc-root .sc-fab *::after {
  box-sizing: border-box;
}

#sc-root .sc-player,
#sc-root .sc-modal,
#sc-root .sc-fullscreen,
#sc-root #aslPlayTab,
#sc-root .sc-fab {
  --sc-border: rgba(0,0,0,.14);
  --sc-shadow: 0 18px 50px rgba(0,0,0,.22);
  --radius: 14px;
  --sc-user-bg: rgba(243,244,246,1);
  --sc-topbar-bg: rgba(225,225,225,.92);
  --font: "Arimo", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  --brand: "DM Sans", "Arimo", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  --videoSize: 220px;
  --topbarH: 56px;
  --btn: 26px;
  --btnFont: 13px;
  --ctlPad: 4px;
  --ctlGap: 6px;
  --powFont: 11px;
  --powPadY: 5px;
  --powPadX: 8px;
  --playSize: 44px;
  --videoZoom: 1.08;
}

.sc-asl-target {
  --sc-asl-border-style: dashed;
  --sc-asl-border-color: rgba(20,24,38,.55);
}

.sc-asl-target.sc-asl-locked {
  outline: none;
  box-shadow: none;
}

#sc-root .sc-highlight {
  position: fixed;
  z-index: 9997;
  display: none;
  border: 2px var(--sc-asl-border-style) var(--sc-asl-border-color);
  border-radius: 6px;
  pointer-events: none;
  box-shadow: none;
}

#sc-root #aslPlayTab {
  position: fixed;
  z-index: 9998;
  width: 28px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 14px 40px rgba(0,0,0,.16);
  border: 1px solid rgba(0,0,0,.10);
  padding: 0;
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
  display: none;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,.78);
}

#sc-root #aslPlayTab:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 2px;
}

#sc-root #aslPlayTab .sc-fa {
  font-size: 14px;
  transform: translateX(1px);
}

#sc-root .sc-player {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: var(--videoSize);
  height: calc(var(--videoSize) + var(--topbarH));
  z-index: 9999;
  border: 1px solid var(--sc-border);
  border-radius: var(--radius);
  box-shadow: var(--sc-shadow);
  overflow: hidden;
  display: none;
  flex-direction: column;
  background: var(--sc-user-bg);
  cursor: grab;
  touch-action: none;
  font-family: var(--font);
}

#sc-root .sc-icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
  display: block;
}

#sc-root .sc-icon-play {
  transform: translateX(1px);
}

#sc-root .sc-fa {
  display: block;
  line-height: 1;
}

#sc-root .sc-settings-btn .sc-icon {
  width: calc(var(--btnFont) + 6px);
  height: calc(var(--btnFont) + 6px);
}

#sc-root .sc-btn .sc-icon {
  width: 14px;
  height: 14px;
}

#sc-root .sc-play-btn .sc-icon {
  width: 18px;
  height: 18px;
}

#sc-root .sc-fab .sc-icon {
  width: 22px;
  height: 22px;
}

#sc-root .sc-settings-btn .sc-fa {
  font-size: calc(var(--btnFont) + 6px);
}

#sc-root .sc-btn .sc-fa {
  font-size: 14px;
}

#sc-root .sc-play-btn .sc-fa {
  font-size: 18px;
}

#sc-root .sc-fab .sc-fa {
  font-size: 20px;
}

#sc-root .sc-modal-close .sc-fa,
#sc-root .sc-fs-close .sc-fa {
  font-size: 16px;
}

#sc-root .sc-player.sc-playing {
  --sc-shadow: 0 12px 30px rgba(0,0,0,.18);
}

#sc-root .sc-player.sc-playing .sc-topbar,
#sc-root .sc-player.sc-playing .sc-controls,
#sc-root .sc-player.sc-playing .sc-settings-btn,
#sc-root .sc-player.sc-playing .sc-play-btn,
#sc-root .sc-player.sc-playing .sc-powered,
#sc-root .sc-player.sc-playing .sc-empty,
#sc-root .sc-player.sc-playing .sc-loading {
  backdrop-filter: none;
}

#sc-root .sc-player.on {
  display: flex;
}

#sc-root .sc-player.dragging {
  cursor: grabbing;
}

#sc-root .sc-topbar {
  height: var(--topbarH);
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  gap: 10px;
  background: var(--sc-topbar-bg);
  border-bottom: 1px solid rgba(0,0,0,.10);
}

#sc-root .sc-settings-btn {
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(0,0,0,.26);
  color: rgba(255,255,255,.96);
  border-radius: 12px;
  padding: var(--ctlPad);
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--btn) + (var(--ctlPad) * 2));
  height: calc(var(--btn) + (var(--ctlPad) * 2));
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
  backdrop-filter: blur(8px);
}

#sc-root .sc-settings-btn:hover {
  background: rgba(0,0,0,.32);
}

#sc-root .sc-controls {
  display: flex;
  gap: var(--ctlGap);
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 12px;
  padding: var(--ctlPad);
  backdrop-filter: blur(8px);
}

#sc-root .sc-btn {
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.96);
  border-radius: 10px;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-weight: 900;
  line-height: 1;
  width: var(--btn);
  height: var(--btn);
  font-size: var(--btnFont);
  padding: 0;
  touch-action: manipulation;
}

#sc-root .sc-btn:hover {
  background: rgba(255,255,255,.14);
}

#sc-root .sc-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

#sc-root .sc-btn:disabled:hover {
  background: rgba(255,255,255,.10);
}

#sc-root .sc-stage {
  position: relative;
  width: 100%;
  height: var(--videoSize);
  flex: 0 0 auto;
  overflow: hidden;
}

#sc-root #scVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

#sc-root .sc-player #scVideo {
  object-fit: cover;
  transform: scale(var(--videoZoom));
  transform-origin: center;
}

#sc-root .sc-empty {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  text-align: center;
  color: rgba(255,255,255,.92);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(6px);
  font-size: 12.5px;
  line-height: 1.45;
  pointer-events: none;
}

#sc-root .sc-empty.hidden {
  display: none;
}

#sc-root .sc-loading {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 14px;
  text-align: center;
  color: rgba(255,255,255,.92);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(6px);
  font-size: 12.5px;
  line-height: 1.45;
  pointer-events: none;
}

#sc-root .sc-loading.on {
  display: flex;
}

#sc-root .sc-play-overlay {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 12;
  pointer-events: none;
}

#sc-root .sc-play-overlay.on {
  display: flex;
}

#sc-root .sc-play-btn {
  width: var(--playSize);
  height: var(--playSize);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.96);
  box-shadow: 0 14px 50px rgba(0,0,0,.22);
  display: grid;
  place-items: center;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  backdrop-filter: blur(8px);
}

#sc-root .sc-play-btn:hover {
  background: rgba(0,0,0,.42);
}

#sc-root .sc-powered {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 30;
  background: rgba(0,0,0,.26);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 999px;
  padding: var(--powPadY) var(--powPadX);
  backdrop-filter: blur(8px);
  font-size: var(--powFont);
  color: rgba(255,255,255,.94);
  white-space: nowrap;
  max-width: calc(100% - 16px);
  overflow: hidden;
  text-overflow: ellipsis;
}

#sc-root .sc-powered .pow-by {
  opacity: .90;
  font-weight: 700;
}

#sc-root .sc-powered a {
  color: inherit;
  text-decoration: none;
  font-family: var(--brand);
  letter-spacing: .1px;
}

#sc-root .sc-powered a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

#sc-root .sc-powered .brand-sign {
  font-weight: 350;
}

#sc-root .sc-powered .brand-connect {
  font-weight: 800;
}

#sc-root .sc-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: #ffffff;
  color: #0b4ea2;
  box-shadow: 0 16px 44px rgba(0,0,0,.16);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  touch-action: manipulation;
}

#sc-root .sc-fab:hover {
  box-shadow: 0 18px 54px rgba(0,0,0,.18);
  transform: translateY(-1px);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

#sc-root .sc-fab.hidden {
  display: none;
}

#sc-root .sc-modal {
  position: fixed;
  z-index: 10001;
  display: none;
  width: min(360px, calc(100vw - 24px));
  border-radius: 16px;
  border: 1px solid rgba(20,24,38,.14);
  background: rgba(255,255,255,.96);
  box-shadow: 0 22px 70px rgba(0,0,0,.18);
  color: #141826;
  overflow: hidden;
  font-family: var(--font);
}

#sc-root .sc-modal.on {
  display: block;
}

#sc-root .sc-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px 8px;
}

#sc-root .sc-modal-title {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .2px;
}

#sc-root .sc-modal-close {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(20,24,38,.12);
  background: rgba(20,24,38,.06);
  color: #141826;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  touch-action: manipulation;
}

#sc-root .sc-modal-close:hover {
  background: rgba(20,24,38,.10);
}

#sc-root .sc-modal-body {
  padding: 8px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#sc-root .sc-field {
  border: 1px solid rgba(20,24,38,.10);
  border-radius: 14px;
  padding: 10px;
  background: rgba(255,255,255,.94);
}

#sc-root .sc-field-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

#sc-root .sc-label {
  font-size: 12.5px;
  font-weight: 900;
}

#sc-root .sc-select {
  border: 1px solid rgba(20,24,38,.14);
  background: #ffffff;
  color: #141826;
  border-radius: 12px;
  padding: 7px 10px;
  font-size: 12.5px;
  outline: none;
}

#sc-root .sc-swatches {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 6px;
}

#sc-root .sc-swatch {
  height: 30px;
  border-radius: 12px;
  border: 1px solid rgba(20,24,38,.14);
  background: var(--sw, #fff);
  cursor: pointer;
  position: relative;
  padding: 0;
  touch-action: manipulation;
}

#sc-root .sc-swatch:hover {
  outline: 2px solid rgba(20,24,38,.14);
  outline-offset: 2px;
}

#sc-root .sc-swatch.is-active {
  outline: 2px solid rgba(20,24,38,.55);
  outline-offset: 2px;
}

#sc-root .sc-swatch.is-active::after {
  content: "✓";
  position: absolute;
  right: 8px;
  top: 6px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(20,24,38,.85);
  text-shadow: 0 1px 0 rgba(255,255,255,.5);
}

#sc-root .sc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

#sc-root .sc-color {
  width: 52px;
  height: 38px;
  padding: 4px;
  border-radius: 12px;
  border: 1px solid rgba(20,24,38,.14);
  background: #fff;
  cursor: pointer;
}

#sc-root .sc-range-wrap {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

#sc-root .sc-range-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: rgba(20,24,38,.72);
  font-weight: 700;
}

#sc-root .sc-range {
  width: 100%;
}

#sc-root .sc-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(20,24,38,.75);
  font-weight: 800;
  user-select: none;
}

#sc-root .sc-toggle input {
  transform: translateY(1px);
}

@media (max-width: 520px) {
  #sc-root .sc-modal {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    top: auto !important;
  }
}

body.scw-noscroll {
  overflow: hidden;
}

#sc-root .sc-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 10002;
  display: none;
  background: rgba(10,12,18,.92);
}

#sc-root .sc-fullscreen.on {
  display: block;
}

#sc-root .sc-fs-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.96);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
  touch-action: manipulation;
  backdrop-filter: blur(10px);
}

#sc-root .sc-fs-close:hover {
  background: rgba(0,0,0,.42);
}

#sc-root .sc-fs-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

#sc-root .sc-fullscreen #scVideo {
  object-fit: contain;
  transform: none;
}

#sc-root .sc-fs-play {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

#sc-root .sc-fs-play.on {
  display: flex;
}

#sc-root .sc-fs-play .sc-play-btn {
  width: 62px;
  height: 62px;
  border-radius: 999px;
}

#sc-root .sc-fs-play .sc-play-btn .sc-icon {
  width: 22px;
  height: 22px;
}
