/* Customer Profile & Settings page — 7-pane wizard.
   Ported from /home/marco-maher/Downloads/HonCar Templetes/Customer/profile.html
   All selectors scoped under .hcs-app .hcs-profile-app so the mockup's generic
   classes (.container, .card, .btn, .field) can't bleed into the rest of the site. */

/* FULL-BLEED — neutralise Kadence's container constraints so the profile
   page fills the viewport instead of being boxed by the theme. body:has()
   scopes to this page only. Kills:
     .site-container{max-width:var(--global-content-width); margin:0 auto;
                     padding:0 var(--global-content-edge-padding)}
     .content-area  {margin:var(--global-xxl-spacing) 0}  (5rem bottom) */
body:has(.hcs-profile-app) .content-area,
body:has(.hcs-profile-app) .site-container,
body:has(.hcs-profile-app) .content-container.site-container,
body:has(.hcs-profile-app) .entry-content-wrap,
body:has(.hcs-profile-app) .entry-content,
body:has(.hcs-profile-app) .entry.single-entry,
body:has(.hcs-profile-app) .entry{
  margin:0 !important;padding:0 !important;
  max-width:none !important;box-shadow:none !important;background:transparent !important;
}

.hcs-app .hcs-profile-app{
  --prof-green:#0F8B4F;
  --prof-green-50:#E6F4EE;
  --prof-red:#C53030;
  --prof-red-50:#FEE;
  color:var(--ink,#0A2540);
  background:var(--bg-2,#F7F9FC);
}

.hcs-app .hcs-profile-app .container{width:100%;max-width:1200px;margin-inline:auto;padding-inline:20px;}

/* PAGE HEAD */
.hcs-app .hcs-profile-app .prof-page-hd{background:#fff;border-bottom:1px solid var(--line);padding:24px 0 22px;}
.hcs-app .hcs-profile-app .hd-row{display:flex;justify-content:space-between;align-items:flex-end;gap:18px;flex-wrap:wrap;}
.hcs-app .hcs-profile-app .hd-left h1{font-weight:700;font-size:clamp(22px,2.6vw,28px);color:var(--blue-900,#0A2540);letter-spacing:-.02em;line-height:1.2;margin:8px 0 4px;}
.hcs-app .hcs-profile-app .hd-left p{font-size:14px;color:var(--ink-3,#748094);}
.hcs-app .hcs-profile-app .prof-tag{display:inline-flex;align-items:center;gap:5px;background:var(--blue-50,#EEF4FB);color:var(--blue-700,#1E5AA8);padding:4px 10px;border-radius:999px;font-size:11.5px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;}

/* MAIN + LAYOUT */
.hcs-app .hcs-profile-app .prof-main{padding:24px 0 80px;}
.hcs-app .hcs-profile-app .prof-layout{display:grid;grid-template-columns:240px minmax(0,1fr);gap:24px;align-items:start;}
@media (max-width:900px){.hcs-app .hcs-profile-app .prof-layout{grid-template-columns:1fr;gap:18px;}}

/* SIDEBAR NAV */
.hcs-app .hcs-profile-app .prof-side-nav{position:sticky;top:80px;background:#fff;border:1px solid var(--line);border-radius:14px;padding:8px;box-shadow:var(--shadow-sm,0 1px 2px rgba(10,37,64,.06));}
.hcs-app .hcs-profile-app .prof-side-nav .head{padding:14px 14px 10px;font-size:11.5px;font-weight:700;color:var(--ink-3,#748094);text-transform:uppercase;letter-spacing:.1em;}
.hcs-app .hcs-profile-app .prof-side-nav ul{list-style:none;margin:0;padding:0;}
.hcs-app .hcs-profile-app .side-nav-link{
  display:flex;align-items:center;gap:11px;padding:9px 12px;border-radius:8px;
  font-size:14px;font-weight:500;color:var(--ink-2,#475569);
  transition:all .15s;width:100%;text-align:left;cursor:pointer;
  background:none;border:0;font-family:inherit;
}
.hcs-app .hcs-profile-app .side-nav-link:hover{background:var(--bg-2,#F7F9FC);color:var(--blue-700,#1E5AA8);}
.hcs-app .hcs-profile-app .side-nav-link.active{background:var(--blue-50,#EEF4FB);color:var(--blue-700,#1E5AA8);font-weight:600;}
.hcs-app .hcs-profile-app .side-nav-link .ic{width:18px;height:18px;display:grid;place-items:center;flex-shrink:0;color:currentColor;}
.hcs-app .hcs-profile-app .side-nav-link .arrow{margin-left:auto;color:var(--ink-3,#748094);opacity:0;transition:all .15s;}
.hcs-app .hcs-profile-app .side-nav-link.active .arrow{opacity:1;color:var(--blue-700,#1E5AA8);}
.hcs-app .hcs-profile-app .side-nav-divider{height:1px;background:var(--line);margin:6px 8px;list-style:none;}
.hcs-app .hcs-profile-app .side-nav-link.danger{color:var(--prof-red);}
.hcs-app .hcs-profile-app .side-nav-link.danger:hover{background:var(--prof-red-50);color:var(--prof-red);}

@media (max-width:900px){
  .hcs-app .hcs-profile-app .prof-side-nav{position:static;padding:6px;overflow-x:auto;}
  .hcs-app .hcs-profile-app .prof-side-nav .head{display:none;}
  .hcs-app .hcs-profile-app .side-nav-divider{display:none;}
  .hcs-app .hcs-profile-app .prof-side-nav ul{display:flex;gap:4px;flex-wrap:nowrap;}
  .hcs-app .hcs-profile-app .side-nav-link{flex-shrink:0;white-space:nowrap;font-size:13.5px;padding:8px 12px;}
  .hcs-app .hcs-profile-app .side-nav-link .arrow{display:none;}
  .hcs-app .hcs-profile-app .side-nav-link.danger{margin-left:auto;}
}

/* CARD */
.hcs-app .hcs-profile-app .prof-card{background:#fff;border:1px solid var(--line);border-radius:14px;box-shadow:var(--shadow-sm,0 1px 2px rgba(10,37,64,.06));overflow:hidden;}
.hcs-app .hcs-profile-app .prof-card + .prof-card{margin-top:18px;}
.hcs-app .hcs-profile-app .prof-card-head{padding:18px 22px;border-bottom:1px solid var(--line);display:flex;justify-content:space-between;align-items:flex-start;gap:14px;flex-wrap:wrap;}
.hcs-app .hcs-profile-app .prof-card-head h2{font-size:16px;font-weight:700;color:var(--blue-900,#0A2540);letter-spacing:-.01em;line-height:1.3;margin:0;}
.hcs-app .hcs-profile-app .prof-card-head .desc{font-size:12.5px;color:var(--ink-3,#748094);display:block;margin-top:2px;}
.hcs-app .hcs-profile-app .prof-card-body{padding:22px;}

/* PANE */
.hcs-app .hcs-profile-app .pane{display:none;}
.hcs-app .hcs-profile-app .pane.active{display:block;animation:profFade .25s ease;}
@keyframes profFade{from{opacity:0;transform:translateY(4px);}to{opacity:1;transform:translateY(0);}}

/* PROFILE HERO */
.hcs-app .hcs-profile-app .profile-hero{
  display:flex;gap:18px;align-items:center;
  padding:24px;
  background:linear-gradient(135deg,var(--blue-50,#EEF4FB) 0%,#fff 100%);
  border-radius:14px;border:1px solid var(--blue-100,#DCE8F5);
  margin-bottom:18px;flex-wrap:wrap;
}
.hcs-app .hcs-profile-app .av-lg{
  width:72px;height:72px;border-radius:50%;flex-shrink:0;
  background:linear-gradient(135deg,var(--blue-700,#1E5AA8),var(--blue-500,#3B7BE0));
  color:#fff;display:grid;place-items:center;font-weight:800;font-size:24px;letter-spacing:-.02em;
}
.hcs-app .hcs-profile-app .profile-hero .info{flex:1;min-width:200px;}
.hcs-app .hcs-profile-app .profile-hero .info strong{display:block;font-size:18px;font-weight:700;color:var(--blue-900,#0A2540);letter-spacing:-.01em;}
.hcs-app .hcs-profile-app .profile-hero .info small{font-size:13px;color:var(--ink-3,#748094);display:flex;align-items:center;gap:6px;margin-top:3px;flex-wrap:wrap;}
.hcs-app .hcs-profile-app .profile-hero .stats{display:flex;gap:24px;flex-shrink:0;}
.hcs-app .hcs-profile-app .profile-hero .stat strong{display:block;font-size:20px;font-weight:800;color:var(--blue-900,#0A2540);letter-spacing:-.01em;line-height:1;}
.hcs-app .hcs-profile-app .profile-hero .stat small{font-size:11.5px;color:var(--ink-3,#748094);font-weight:500;text-transform:uppercase;letter-spacing:.05em;margin-top:3px;display:block;}

/* FIELDS */
.hcs-app .hcs-profile-app .field-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
@media (max-width:560px){.hcs-app .hcs-profile-app .field-grid{grid-template-columns:1fr;}}
.hcs-app .hcs-profile-app .field-row{margin-bottom:14px;}
.hcs-app .hcs-profile-app .field-grid .field-row{margin-bottom:0;}
.hcs-app .hcs-profile-app .field-label{display:block;font-size:12.5px;font-weight:600;color:var(--ink,#0A2540);margin-bottom:6px;}
.hcs-app .hcs-profile-app .field-label .req{color:var(--blue-700,#1E5AA8);}
.hcs-app .hcs-profile-app .field-hint{font-size:11.5px;color:var(--ink-3,#748094);font-weight:400;margin-top:5px;}
.hcs-app .hcs-profile-app .field-hint a{color:var(--blue-700,#1E5AA8);font-weight:600;text-decoration:underline;}

.hcs-app .hcs-profile-app .text-input,
.hcs-app .hcs-profile-app .select-input,
.hcs-app .hcs-profile-app .text-area{
  width:100%;padding:10px 12px;
  border:1.5px solid var(--line);border-radius:8px;
  font-size:14px;font-weight:500;background:#fff;
  transition:all .15s;font-family:inherit;color:var(--ink,#0A2540);
}
.hcs-app .hcs-profile-app .text-input:focus,
.hcs-app .hcs-profile-app .select-input:focus,
.hcs-app .hcs-profile-app .text-area:focus{outline:0;border-color:var(--blue-700,#1E5AA8);box-shadow:0 0 0 3px rgba(30,90,168,.15);}
.hcs-app .hcs-profile-app .text-input::placeholder{color:var(--ink-3,#748094);font-weight:500;}
.hcs-app .hcs-profile-app .text-input:disabled{background:var(--bg-2,#F7F9FC);color:var(--ink-3,#748094);cursor:not-allowed;}
.hcs-app .hcs-profile-app .input-with-icon{position:relative;}
.hcs-app .hcs-profile-app .input-with-icon .leading{position:absolute;left:13px;top:50%;transform:translateY(-50%);color:var(--ink-3,#748094);pointer-events:none;}
.hcs-app .hcs-profile-app .input-with-icon .text-input{padding-left:40px;}

.hcs-app .hcs-profile-app .field-row.has-error .text-input,
.hcs-app .hcs-profile-app .field-row.has-error .select-input{border-color:var(--prof-red);box-shadow:0 0 0 3px rgba(197,48,48,.1);}
.hcs-app .hcs-profile-app .field-error{display:none;font-size:12px;color:var(--prof-red);font-weight:600;margin-top:5px;}
.hcs-app .hcs-profile-app .field-row.has-error .field-error{display:block;}

/* CARD FOOT */
.hcs-app .hcs-profile-app .prof-card-foot{
  padding:14px 22px;border-top:1px solid var(--line);
  background:var(--bg-2,#F7F9FC);
  display:flex;justify-content:space-between;align-items:center;gap:14px;flex-wrap:wrap;
}
.hcs-app .hcs-profile-app .prof-card-foot .note{font-size:12.5px;color:var(--ink-3,#748094);}

/* BUTTONS */
.hcs-app .hcs-profile-app .prof-btn{display:inline-flex;align-items:center;justify-content:center;gap:7px;padding:10px 16px;border-radius:8px;font-weight:600;font-size:13.5px;transition:all .15s;cursor:pointer;white-space:nowrap;border:0;background:none;font-family:inherit;color:inherit;text-decoration:none;}
.hcs-app .hcs-profile-app .prof-btn-sm{padding:7px 12px;font-size:12.5px;}
.hcs-app .hcs-profile-app .prof-btn-primary{background:var(--blue-700,#1E5AA8);color:#fff;}
.hcs-app .hcs-profile-app .prof-btn-primary:hover{background:var(--blue-800,#0F3A6B);}
.hcs-app .hcs-profile-app .prof-btn-primary:disabled{opacity:.6;cursor:not-allowed;}
.hcs-app .hcs-profile-app .prof-btn-outline{background:#fff;color:var(--blue-700,#1E5AA8);border:1.5px solid var(--blue-700,#1E5AA8);}
.hcs-app .hcs-profile-app .prof-btn-outline:hover{background:var(--blue-700,#1E5AA8);color:#fff;}
.hcs-app .hcs-profile-app .prof-btn-ghost{background:#fff;color:var(--ink-2,#475569);border:1.5px solid var(--line);}
.hcs-app .hcs-profile-app .prof-btn-ghost:hover{border-color:var(--ink-2,#475569);color:var(--ink,#0A2540);}
.hcs-app .hcs-profile-app .prof-btn-danger{background:var(--prof-red-50);color:var(--prof-red);}
.hcs-app .hcs-profile-app .prof-btn-danger:hover:not(:disabled){background:var(--prof-red);color:#fff;}
.hcs-app .hcs-profile-app .prof-btn-danger:disabled{opacity:.5;cursor:not-allowed;}
.hcs-app .hcs-profile-app .prof-spinner{display:none;width:14px;height:14px;border:2px solid rgba(255,255,255,.4);border-top-color:#fff;border-radius:50%;animation:profSpin .8s linear infinite;}
.hcs-app .hcs-profile-app .prof-btn.loading .prof-spinner{display:inline-block;}
.hcs-app .hcs-profile-app .prof-btn.loading .label{display:none;}
@keyframes profSpin{to{transform:rotate(360deg);}}

/* Inline status msg on the Personal form */
.hcs-app .hcs-profile-app .prof-msg{display:none;padding:10px 12px;border-radius:8px;margin-bottom:14px;font-size:13px;font-weight:500;}
.hcs-app .hcs-profile-app .prof-msg.show{display:block;}
.hcs-app .hcs-profile-app .prof-msg.success{background:var(--prof-green-50);color:var(--prof-green);border:1px solid #B9E2CB;}
.hcs-app .hcs-profile-app .prof-msg.error{background:var(--prof-red-50);color:var(--prof-red);border:1px solid #F2BABA;}

/* VEHICLE ROW */
.hcs-app .hcs-profile-app .prof-vehicle-row{display:flex;align-items:center;gap:14px;padding:16px;border:1px solid var(--line);border-radius:11px;background:#fff;transition:all .15s;}
.hcs-app .hcs-profile-app .prof-vehicle-row + .prof-vehicle-row{margin-top:10px;}
.hcs-app .hcs-profile-app .prof-vehicle-row:hover{border-color:var(--blue-100,#DCE8F5);box-shadow:var(--shadow-sm,0 1px 2px rgba(10,37,64,.06));}
.hcs-app .hcs-profile-app .prof-vehicle-row .ic{width:46px;height:46px;border-radius:11px;flex-shrink:0;background:var(--blue-50,#EEF4FB);color:var(--blue-700,#1E5AA8);display:grid;place-items:center;}
.hcs-app .hcs-profile-app .prof-vehicle-row .info{flex:1;min-width:0;}
.hcs-app .hcs-profile-app .prof-vehicle-row .info strong{display:block;font-size:14.5px;font-weight:700;color:var(--blue-900,#0A2540);line-height:1.25;}
.hcs-app .hcs-profile-app .prof-vehicle-row .info .reg{display:inline-block;background:var(--blue-900,#0A2540);color:#fff;padding:2px 10px;border-radius:5px;font-weight:800;font-size:12px;letter-spacing:.06em;margin-right:8px;}
.hcs-app .hcs-profile-app .prof-add-vehicle{
  margin-top:12px;padding:14px;
  border:1.5px dashed var(--line);border-radius:11px;
  background:none;text-align:center;cursor:pointer;
  font-size:13.5px;font-weight:600;color:var(--blue-700,#1E5AA8);
  display:flex;align-items:center;justify-content:center;gap:7px;width:100%;
  transition:all .15s;text-decoration:none;
}
.hcs-app .hcs-profile-app .prof-add-vehicle:hover{border-color:var(--blue-700,#1E5AA8);background:var(--blue-50,#EEF4FB);}
.hcs-app .hcs-profile-app .prof-empty{padding:20px;text-align:center;color:var(--ink-3,#748094);font-size:14px;background:var(--bg-2,#F7F9FC);border-radius:10px;}
.hcs-app .hcs-profile-app .prof-hint{font-size:12.5px;color:var(--ink-3,#748094);}
.hcs-app .hcs-profile-app .prof-hint a{color:var(--blue-700,#1E5AA8);font-weight:600;cursor:pointer;text-decoration:underline;}

/* ADDR ROW */
.hcs-app .hcs-profile-app .prof-addr-row{display:flex;align-items:flex-start;gap:14px;padding:16px;border:1px solid var(--line);border-radius:11px;background:#fff;}
.hcs-app .hcs-profile-app .prof-addr-row .ic{width:38px;height:38px;border-radius:10px;flex-shrink:0;background:var(--blue-50,#EEF4FB);color:var(--blue-700,#1E5AA8);display:grid;place-items:center;margin-top:2px;}
.hcs-app .hcs-profile-app .prof-addr-row .info{flex:1;min-width:0;}
.hcs-app .hcs-profile-app .prof-addr-row .info .label-row{display:flex;align-items:center;gap:8px;margin-bottom:3px;flex-wrap:wrap;}
.hcs-app .hcs-profile-app .prof-addr-row .info .label-row strong{font-size:14px;font-weight:700;color:var(--blue-900,#0A2540);}
.hcs-app .hcs-profile-app .prof-addr-row .info .label-row .tag{font-size:10.5px;font-weight:700;background:var(--blue-50,#EEF4FB);color:var(--blue-700,#1E5AA8);padding:2px 7px;border-radius:5px;text-transform:uppercase;letter-spacing:.04em;}
.hcs-app .hcs-profile-app .prof-addr-row .info .label-row .tag.primary{background:var(--prof-green-50);color:var(--prof-green);}
.hcs-app .hcs-profile-app .prof-addr-row .info p{font-size:13px;color:var(--ink-2,#475569);line-height:1.5;margin:0;}
.hcs-app .hcs-profile-app .prof-addr-row .info small{display:block;font-size:12px;color:var(--ink-3,#748094);margin-top:3px;}

/* COMING SOON */
.hcs-app .hcs-profile-app .prof-coming-soon{text-align:center;padding:32px 16px;color:var(--ink-3,#748094);}
.hcs-app .hcs-profile-app .prof-coming-soon .ic{width:52px;height:52px;border-radius:50%;background:var(--blue-50,#EEF4FB);color:var(--blue-700,#1E5AA8);display:grid;place-items:center;margin:0 auto 12px;}
.hcs-app .hcs-profile-app .prof-coming-soon strong{display:block;font-size:15px;color:var(--blue-900,#0A2540);font-weight:700;margin-bottom:6px;}
.hcs-app .hcs-profile-app .prof-coming-soon p{font-size:13.5px;color:var(--ink-2,#475569);max-width:380px;margin:0 auto;line-height:1.55;}

/* NOTIFICATIONS */
.hcs-app .hcs-profile-app .prof-notif-grid{display:grid;grid-template-columns:1fr auto auto;gap:0;font-size:13.5px;}
.hcs-app .hcs-profile-app .prof-notif-grid .notif-head{font-size:11.5px;font-weight:700;color:var(--ink-3,#748094);text-transform:uppercase;letter-spacing:.06em;padding:8px 0;border-bottom:1px solid var(--line);text-align:center;}
.hcs-app .hcs-profile-app .prof-notif-grid .notif-head:first-child{text-align:left;}
.hcs-app .hcs-profile-app .prof-notif-grid .notif-row{display:contents;}
.hcs-app .hcs-profile-app .prof-notif-grid .notif-row .label{padding:14px 12px 14px 0;border-bottom:1px solid var(--line);color:var(--ink,#0A2540);font-weight:500;}
.hcs-app .hcs-profile-app .prof-notif-grid .notif-row .label small{display:block;font-size:12px;font-weight:400;color:var(--ink-3,#748094);margin-top:2px;}
.hcs-app .hcs-profile-app .prof-notif-grid .notif-row .col{padding:14px 12px;border-bottom:1px solid var(--line);display:flex;align-items:center;justify-content:center;}
.hcs-app .hcs-profile-app .prof-notif-grid .notif-row:last-child .label,
.hcs-app .hcs-profile-app .prof-notif-grid .notif-row:last-child .col{border-bottom:0;}

/* TOGGLE */
.hcs-app .hcs-profile-app .toggle{position:relative;width:38px;height:22px;background:var(--line);border-radius:999px;cursor:pointer;transition:background .2s;display:inline-block;}
.hcs-app .hcs-profile-app .toggle.on{background:var(--blue-700,#1E5AA8);}
.hcs-app .hcs-profile-app .toggle::after{content:"";position:absolute;top:2px;left:2px;width:18px;height:18px;border-radius:50%;background:#fff;transition:transform .2s;box-shadow:0 1px 2px rgba(0,0,0,.2);}
.hcs-app .hcs-profile-app .toggle.on::after{transform:translateX(16px);}

/* SECURITY ROWS */
.hcs-app .hcs-profile-app .prof-security-row{display:flex;align-items:center;gap:14px;padding:14px 0;border-bottom:1px solid var(--line);}
.hcs-app .hcs-profile-app .prof-security-row:last-child{border-bottom:0;}
.hcs-app .hcs-profile-app .prof-security-row .ic{width:38px;height:38px;border-radius:9px;flex-shrink:0;background:var(--blue-50,#EEF4FB);color:var(--blue-700,#1E5AA8);display:grid;place-items:center;}
.hcs-app .hcs-profile-app .prof-security-row .info{flex:1;min-width:0;}
.hcs-app .hcs-profile-app .prof-security-row .info strong{display:block;font-size:14px;font-weight:700;color:var(--blue-900,#0A2540);}
.hcs-app .hcs-profile-app .prof-security-row .info small{display:block;font-size:12.5px;color:var(--ink-3,#748094);margin-top:2px;line-height:1.5;}
.hcs-app .hcs-profile-app .prof-security-row .status{font-size:11.5px;font-weight:700;padding:3px 10px;border-radius:5px;text-transform:uppercase;letter-spacing:.04em;}
.hcs-app .hcs-profile-app .prof-security-row .status.enabled{background:var(--prof-green-50);color:var(--prof-green);}
.hcs-app .hcs-profile-app .prof-security-row .status.disabled{background:var(--bg-2,#F7F9FC);color:var(--ink-3,#748094);}

/* DANGER ZONE */
.hcs-app .hcs-profile-app .prof-danger-zone{border:1.5px solid #FCC;}
.hcs-app .hcs-profile-app .prof-danger-zone .prof-card-head{border-bottom-color:#FCC;background:#FEE5E5;}
.hcs-app .hcs-profile-app .prof-danger-zone .prof-card-head h2{color:var(--prof-red);}
.hcs-app .hcs-profile-app .prof-danger-row{display:flex;align-items:center;gap:14px;padding:6px 0;}
.hcs-app .hcs-profile-app .prof-danger-row .info{flex:1;min-width:0;}
.hcs-app .hcs-profile-app .prof-danger-row .info strong{display:block;font-size:14px;font-weight:700;color:var(--blue-900,#0A2540);margin-bottom:3px;}
.hcs-app .hcs-profile-app .prof-danger-row .info p{font-size:13px;color:var(--ink-2,#475569);line-height:1.5;margin:0;}

/* TOAST */
.hcs-app .hcs-profile-app .prof-toast{position:fixed;bottom:24px;left:50%;transform:translateX(-50%) translateY(20px);background:var(--blue-900,#0A2540);color:#fff;padding:12px 20px;border-radius:10px;font-size:14px;font-weight:600;box-shadow:var(--shadow-lg,0 18px 40px rgba(10,37,64,.14));z-index:300;display:flex;align-items:center;gap:10px;opacity:0;transition:all .25s ease;pointer-events:none;}
.hcs-app .hcs-profile-app .prof-toast.show{opacity:1;transform:translateX(-50%) translateY(0);}
.hcs-app .hcs-profile-app .prof-toast.error{background:var(--prof-red);}
.hcs-app .hcs-profile-app .prof-toast svg{color:#67E8B8;}
.hcs-app .hcs-profile-app .prof-toast.error svg{color:#fff;}

@media (prefers-reduced-motion:reduce){
  .hcs-app .hcs-profile-app .pane{animation:none !important;}
}
