/* =========================================================
   QUESTIONS BETWEEN US — FULL CSS (Option B: Fancy Classic)
   ========================================================= */

/* -------------------------
   THEME (Option B)
-------------------------- */
:root{
  /* Option B — Deep Wine + Cream + Rose Gold */
  --bg: #0B070A;                  /* near-black wine */
  --text: #FFF7F2;                /* soft cream */
  --muted: rgba(201,182,174,.82); /* warm muted */
  --line: rgba(255,247,242,.14);

  --card: rgba(20, 11, 16, .62);  /* wine glass */
  --alt: rgba(15, 8, 12, .92);    /* darker alt */
  --shadow: 0 20px 40px rgba(0,0,0,.62);

  --accent: #D9A3A3;              /* rose */
  --accent-strong: #C27C86;       /* rose gold */
  --accent-deep: #5A1E2C;         /* deep wine */
  --glow: rgba(217,163,163,.25);  /* accent glow */
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans";
  color:var(--text);
  background: var(--bg);
}

.container{max-width:1100px;margin:0 auto;padding:0 18px}
a{color:inherit;text-decoration:none}
a:hover{opacity:.92}
.muted{color:var(--muted)}
.small{font-size:12px}

/* -------------------------
   NAV
-------------------------- */
.nav{
  position:sticky; top:0; z-index:50;
  background: rgba(11,7,10,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.nav__links{display:flex; gap:14px; align-items:center}
.nav__links a{font-size:14px; color: rgba(255,247,242,.95)}
@media (max-width: 720px){
  .nav__links a:not(.btn){display:none}
}

.brand{display:flex; gap:10px; align-items:center}
.brand__logo{
  width:38px;height:38px;border-radius:14px;
  display:grid;place-items:center;
  border:1px solid var(--line);
  background: rgba(255,247,242,.06);
  box-shadow: 0 2px 10px rgba(0,0,0,.5);
  font-weight:700;
}
.brand__text{font-weight:700; font-size:14px}

/* -------------------------
   BUTTONS
-------------------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius: 16px;
  border:1px solid var(--line);
  background: rgba(255,247,242,.06);
  font-weight:600;
  font-size:14px;
  color: var(--text);
  box-shadow: 0 6px 20px rgba(0,0,0,.5);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, opacity .15s ease;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0,0,0,.7);
  background: rgba(255,247,242,.09);
}

.btn--primary{
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color:#1a0f13;
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(194,124,134,.32);
}
.btn--primary:hover{
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.btn--ghost{
  background: rgba(255,247,242,.04);
}

/* -------------------------
   HERO POSTER
-------------------------- */
.hero--image{
  position: relative;
  min-height: calc(100vh - 70px);
  padding-top: 72px;
  background-size: cover;
  background-position: center right;
  display: grid;
  align-items: center;
  overflow: hidden;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

.hero__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 22% 25%, rgba(217,163,163,.22), transparent 55%),
    radial-gradient(circle at 70% 35%, rgba(90,30,44,.25), transparent 60%),
    linear-gradient(to right,
      rgba(11,7,10,.92),
      rgba(11,7,10,.62),
      rgba(11,7,10,.28)
    );
}

.hero__content{
  position:relative;
  z-index:2;
  max-width: 650px;
  color: #fff;
  padding: 40px 18px 90px;
  will-change: transform;
}

/* Animated title */
.hero__title{
  margin: 0;
  display: inline-block;
  will-change: transform;
}

.reveal-line{
  display: block;
  font-weight: 850;
  letter-spacing: -0.02em;
  font-size: 64px;
  line-height: 1.02;
  transform: translateY(34px);
  opacity: 0;
  filter: blur(12px);
  animation: lineIn 1200ms cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: var(--d, 0ms);
}

.reveal-line.muted{
  color: rgba(255,247,242,.75);
}

.reveal-up{
  transform: translateY(28px);
  opacity: 0;
  filter: blur(10px);
  animation: upIn 1100ms cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: var(--d, 0ms);
}

.lead{
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,247,242,.86);
  max-width: 560px;
}

/* Chips */
.chips{margin-top:18px; display:flex; gap:10px; flex-wrap:wrap}
.chip{
  font-size:12px;
  padding:8px 12px;
  border-radius: 999px;
  border:1px solid rgba(217,163,163,.22);
  background: rgba(217,163,163,.10);
  color: rgba(255,247,242,.92);
}

/* Hero actions */
.hero__actions{margin-top:18px; display:flex; gap:10px; flex-wrap:wrap}

/* Keyframes */
@keyframes lineIn{
  to{ transform: translateY(0); opacity: 1; filter: blur(0); }
}
@keyframes upIn{
  to{ transform: translateY(0); opacity: 1; filter: blur(0); }
}
@keyframes slowZoom{
  from { background-size: 100%; }
  to { background-size: 110%; }
}

/* -------------------------
   SECTIONS
-------------------------- */
.section{padding: 54px 0}
.section--alt{
  background: var(--alt);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
h2{margin:0; font-size:28px; letter-spacing:-.01em}
.lead2{margin-top:10px; color:var(--muted); max-width: 760px; line-height:1.65}

.grid3{display:grid; gap:14px; grid-template-columns: repeat(3, 1fr); margin-top:18px}
@media (max-width: 900px){ .grid3{grid-template-columns:1fr} }

.card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(20,11,16,.72), rgba(15,8,12,.78));
  border-radius: 22px;
  padding:18px;
  box-shadow: var(--shadow);
}
.card h3{margin:6px 0 6px; font-size:16px}
.card p{margin:0; color:var(--muted); line-height:1.6}
.step{font-size:12px; font-weight:700; color: var(--accent);}

.cta{
  margin-top:18px;
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(20,11,16,.72), rgba(15,8,12,.78));
  border-radius: 22px;
  padding:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  box-shadow: var(--shadow);
}
@media (max-width: 820px){
  .cta{flex-direction:column; align-items:flex-start}
}
.cta__buttons{display:flex; gap:10px; flex-wrap:wrap}

/* -------------------------
   LIST (Dashboard)
-------------------------- */
.list{ list-style:none; padding:0; margin:12px 0 0; display:grid; gap:10px; }
.list__item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,247,242,.05);
}

/* -------------------------
   SCROLL REVEAL + STAGGER
-------------------------- */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 800ms cubic-bezier(.16,1,.3,1),
              transform 800ms cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
.reveal.show{
  opacity: 1;
  transform: translateY(0);
}

.stagger > *{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms cubic-bezier(.16,1,.3,1),
              transform 700ms cubic-bezier(.16,1,.3,1);
}
.stagger.show > *{
  opacity: 1;
  transform: translateY(0);
}
.stagger.show > *:nth-child(1){ transition-delay: 80ms; }
.stagger.show > *:nth-child(2){ transition-delay: 160ms; }
.stagger.show > *:nth-child(3){ transition-delay: 240ms; }
.stagger.show > *:nth-child(4){ transition-delay: 320ms; }

/* Responsive */
@media (max-width: 720px){
  .reveal-line{ font-size: 46px; }
  .hero__content{ padding: 30px 18px 70px; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce){
  .hero--image{ animation: none !important; }
  .reveal-line, .reveal-up{
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .reveal, .stagger > *{
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================================================
   AUTH (GLASS LOGIN / SIGNUP)
========================================================= */
.auth-screen{
  min-height: calc(100vh - 70px);
  padding: 90px 18px 70px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: grid;
  place-items: center;
}

.auth-screen__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 30% 20%, rgba(217,163,163,.20), transparent 55%),
    radial-gradient(circle at 70% 25%, rgba(90,30,44,.22), transparent 60%),
    linear-gradient(to bottom, rgba(11,7,10,.55), rgba(11,7,10,.86));
}

.auth-screen__wrap{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  display: grid;
  gap: 16px;
}

.auth-top{ text-align: center; }
.auth-top__title{
  color: rgba(255,247,242,.92);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 34px;
  text-transform: lowercase;
}

/* Glass card */
.glass-card{
  border-radius: 18px;
  border: 1px solid rgba(255,247,242,.18);
  background: rgba(20,11,16,.35);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 70px rgba(0,0,0,.65);
  overflow: hidden;
}

.glass-card__inner{ padding: 18px; }

.glass-title{
  margin: 0;
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  color: rgba(255,247,242,.92);
}

.glass-sub{
  margin-top: 8px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,247,242,.70);
}

.glass-link{
  color: rgba(255,247,242,.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,247,242,.20);
}
.glass-link:hover{ opacity:.9; }

/* Form */
.glass-form{ margin-top: 14px; display: grid; gap: 12px; }

.glass-field{ position: relative; }

.glass-field label{
  display:block;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,247,242,.72);
  margin-bottom: 6px;
}

.glass-field input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,247,242,.18);
  background: rgba(0,0,0,.25);
  color: rgba(255,247,242,.92);
  outline: none;
}

.glass-field input:focus{
  border-color: rgba(194,124,134,.85);
  box-shadow: 0 0 0 4px rgba(194,124,134,.18);
}

/* Primary submit */
.glass-btn{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  color: #1a0f13;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: 0 14px 34px rgba(194,124,134,.26);
}
.glass-btn:hover{ opacity: .95; }

/* Divider */
.glass-divider{
  margin-top: 2px;
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(255,247,242,.55);
  font-size: 12px;
}
.glass-divider span{ padding: 0 10px; }
.glass-divider::before,
.glass-divider::after{
  content:"";
  height: 1px;
  flex: 1;
  background: rgba(255,247,242,.14);
}

/* Social row */
.social-row{
  display:flex;
  gap: 10px;
  justify-content:center;
  padding-top: 2px;
}

.social-btn{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  text-decoration:none;
  font-weight: 900;
  color: rgba(255,247,242,.9);
  border: 1px solid rgba(255,247,242,.18);
  background: rgba(255,247,242,.06);
}
.social-btn:hover{ background: rgba(255,247,242,.10); }

/* Optional */
.auth-screen + .footer{ display:none; }

/* =========================================================
   FLOATING HINT TOOLTIPS
========================================================= */
.hint-wrap{ position: relative; display: inline-flex; align-items: center; }

.hint-btn{
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255,247,242,.25);
  background: rgba(255,247,242,.08);
  color: rgba(255,247,242,.85);
  font-weight: 800;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  transition: background .15s ease, transform .15s ease;
}
.hint-btn:hover{ background: rgba(255,247,242,.18); transform: scale(1.05); }

.hint-bubble{
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(6px) scale(.98);
  width: 260px;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,247,242,.92);
  background: rgba(20,11,16,.96);
  border: 1px solid rgba(255,247,242,.18);
  box-shadow: 0 14px 40px rgba(0,0,0,.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 50;
}
.hint-bubble::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(20,11,16,.96) transparent transparent transparent;
}
.hint-bubble.show{
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}
@media (max-width: 420px){
  .hint-bubble{ width: 220px; }
}

/* Label + ? on same line */
.glass-field .field-label{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 6px;
}
.glass-field .field-label label{
  display:inline;
  margin:0;
  line-height: 1;
}

/* Tooltip anchored above input */
.glass-field .hint-bubble{
  left: 50%;
  top: 34px;
  bottom: auto;
  transform: translateX(-50%) translateY(-100%) scale(.96);
  width: calc(100% - 16px);
  max-width: 340px;
}
.glass-field .hint-bubble.show{
  opacity: 1;
  transform: translateX(-50%) translateY(calc(-100% - 8px)) scale(1);
}

@media (max-width: 420px){
  .glass-field .hint-bubble{ max-width: 240px; }
}

/* Email validation */
.field-error{
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255, 120, 120, .95);
  display: none;
  text-align: right;
}
.glass-field.is-invalid input{
  border-color: rgba(255, 95, 95, .85) !important;
  box-shadow: 0 0 0 4px rgba(255, 95, 95, .12) !important;
}
.glass-field.is-invalid .field-error{ display: block; }
.glass-field.is-invalid input::placeholder{ color: rgba(255, 120, 120, .9); }

/* =========================================================
   LIGHT THEME (WELCOME / HOME)
========================================================= */
.theme-light{
  --bg: #fbfbfd;
  --text: #17171a;
  --muted: rgba(23,23,26,.70);
  --line: rgba(0,0,0,.08);
  --card: #ffffff;
  --alt: #f6f6fa;
  --shadow: 0 18px 40px rgba(0,0,0,.08);
  --accent: #C27C86; /* matches option B */
  background: var(--bg);
  color: var(--text);
}
.theme-light .nav{
  background: rgba(251,251,253,.75);
  border-bottom: 1px solid var(--line);
}
.theme-light .nav__links a{ color: #1b1b1f; }

/* Welcome */
.welcome-hero{ padding: 86px 18px 60px; background: var(--bg); }
.welcome-shell{ max-width: 980px; margin: 0 auto; text-align: center; }
.welcome-kicker{
  font-size: 13px;
  letter-spacing: .12em;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 18px;
}
.welcome-title{
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
  font-size: 84px;
  color: #eeeaef;
}
.welcome-sub{
  margin: 20px auto 0;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}
.welcome-actions{
  margin-top: 28px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 16px;
  flex-wrap: wrap;
}
.welcome-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 22px;
  border-radius: 16px;
  background: rgba(0,0,0,.18);
  color: #fff;
  font-weight: 800;
  border: 0;
  box-shadow: 0 18px 40px rgba(221, 213, 213, 0.18);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.welcome-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 26px 60px rgba(0,0,0,.22);
  opacity: .96;
}
.welcome-link{
  font-weight: 700;
  color: #e4dfe8;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.15);
  padding-bottom: 2px;
}
.welcome-link:hover{ opacity: .85; }

/* Steps section */
.steps{
  padding: 70px 18px 90px;
  background: var(--alt);
  border-top: 1px solid rgba(237, 229, 229, 0.06);
}
.steps-shell{ max-width: 980px; margin: 0 auto; }
.steps-kicker{
  font-size: 13px;
  letter-spacing: .12em;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 14px;
  text-align:center;
}
.steps-title{
  margin: 0;
  text-align:center;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 52px;
  letter-spacing: -0.02em;
  color: #e5dfe7;
}
.steps-sub{
  margin: 14px auto 0;
  text-align:center;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}
.steps-list{ margin-top: 34px; display: grid; gap: 16px; }
.step-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  box-shadow: 0 14px 30px #e5dfe7;
}
.step-number{
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--accent);
  background: rgba(0,0,0,.15);
  border: 1px solid rgba(194,124,134,.18);
}
.step-content h3{ margin: 2px 0 6px; font-size: 18px; color: #1f1b22; }
.step-content p{ margin: 0; color: rgba(23,23,26,.78); line-height: 1.7; }
.steps-mini{ margin-top: 14px; text-align:center; font-size: 13px; color: rgba(23,23,26,.65); }

/* Reveal animation on light theme */
.theme-light .reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms cubic-bezier(.16,1,.3,1),
              transform 700ms cubic-bezier(.16,1,.3,1);
}
.theme-light .reveal.show{
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px){
  .welcome-title{ font-size: 56px; }
  .step-card{ grid-template-columns: 1fr; }
}

/* =========================================================
   QUIZ DESIGN (Your question page style)
========================================================= */
.quiz-theme{
  background: #0b0b0b;
}
.quiz-wrap{ padding: 90px 18px 90px; }

.quiz-shell{
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(194,124,134,.90), rgba(90,30,44,.88));
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
}

.quiz-head{ text-align:center; padding: 10px 10px 18px; }
.quiz-title{
  font-weight: 900;
  letter-spacing: .10em;
  font-size: 26px;
  color: rgba(255,255,255,.92);
}
.quiz-sub{
  margin-top: 6px;
  color: rgba(255,255,255,.85);
  font-size: 13px;
}

.quiz-form{ display:grid; gap: 16px; }

.qcard{
  background: rgba(255,255,255,.95);
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
}
.qtext{
  font-size: 18px;
  font-weight: 800;
  text-align:center;
  color: #222;
  margin-bottom: 14px;
}

.qtext-area{
  width: 100%;
  min-height: 120px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  padding: 12px;
  font-size: 15px;
  resize: vertical;
}

.quiz-submit{
  margin-top: 6px;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-radius: 14px;
  cursor:pointer;
  font-weight: 900;
  color: #fff;
  background: #111;
  box-shadow: 0 16px 34px rgba(0,0,0,.35);
}
.quiz-submit:hover{ opacity:.95; }

/* =========================
   RATE POPUP (Start)
========================= */

.popup-screen{
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  z-index: 999;
}

.popup-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
}

.popup-card{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 30px 70px rgba(0,0,0,.18);
  text-align: center;
}

.popup-heart{
  width: 56px;
  height: 56px;
  margin: 0 auto 10px;
  border-radius: 16px;
  display: grid;
  place-items:center;
  background: rgba(233,30,120,.12);
  font-size: 26px;
}

.popup-title{
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  color: #1f1b22;
}

.popup-sub{
  margin: 10px auto 0;
  max-width: 420px;
  color: rgba(23,23,26,.75);
  line-height: 1.55;
}

.popup-actions{
  display:flex;
  gap: 10px;
  justify-content:center;
  margin-top: 14px;
}

.popup-yes{
  border: 0;
  cursor: pointer;
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 900;
  color: #fff;
  background: #1f1b22;
  box-shadow: 0 16px 34px rgba(0,0,0,.15);
}
.popup-yes:hover{ opacity: .95; }

/* Slider layout */
.rate-form{ margin-top: 14px; }

.rate-row{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
}

.rate-min, .rate-max{
  font-size: 12px;
  color: rgba(23,23,26,.60);
  width: 34px;
  text-align: center;
}

.rate-slider-wrap{
  width: 100%;
  max-width: 360px;
}

.rate-slider{
  width: 100%;
  appearance: none;
  height: 8px;
  border-radius: 999px;
  outline: none;
  background: linear-gradient(to right, #f28c28 75%, #d9d9e6 75%);
}

/* Thumb */
.rate-slider::-webkit-slider-thumb{
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f28c28;
  border: 2px solid #ffffff;
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
  cursor: pointer;
}
.rate-slider::-moz-range-thumb{
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f28c28;
  border: 2px solid #ffffff;
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
  cursor: pointer;
}

/* Value bubble */
.rate-value{
  margin-top: 10px;
  font-weight: 900;
  color: #1f1b22;
  font-size: 14px;
}

.rate-note{
  margin-top: 12px;
  font-size: 12px;
  color: rgba(23,23,26,.65);
}
