/* Client portal – shared */
:root {
  --portal-bg: #0f0f0f;
  --portal-card: #1a1a1a;
  --portal-border: rgba(212, 175, 55, 0.25);
  --portal-accent: #D4AF37;
  --portal-accent-hover: #C19B2E;
  --portal-text: rgba(255,255,255,0.9);
  --portal-muted: rgba(255,255,255,0.5);
  --portal-danger: #dc3545;
  --portal-success: #28a745;
}
.portal-body { background: var(--portal-bg); color: var(--portal-text); min-height: 100vh; font-family: inherit; }
.portal-alert { padding: 0.75rem 1rem; border-radius: 8px; margin-bottom: 1rem; }
.portal-alert-danger { background: rgba(220,53,69,0.15); color: #f8d7da; border: 1px solid var(--portal-danger); }
.portal-alert-success { background: rgba(40,167,69,0.15); color: #d4edda; border: 1px solid var(--portal-success); }
.portal-link { color: var(--portal-accent); text-decoration: none; }
.portal-link:hover { color: var(--portal-accent-hover); }
.portal-btn-link { background: none; border: none; padding: 0; font: inherit; cursor: pointer; color: var(--portal-accent); text-decoration: none; }
.portal-btn-link:hover { color: var(--portal-accent-hover); text-decoration: underline; }
.portal-btn-link:disabled { opacity: 0.6; cursor: not-allowed; }
.d-none { display: none !important; }

/* Auth pages (signup / login) */
.portal-auth { display: flex; align-items: center; justify-content: center; padding: 2rem; }
.portal-auth-card {
  width: 100%;
  max-width: 480px;
  background: var(--portal-card);
  border: 1px solid var(--portal-border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.portal-auth-card__logo { text-align: center; margin-bottom: 1.5rem; }
.portal-auth-card__logo-img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; display: block; margin: 0 auto 0.5rem; }
.portal-auth-card__logo-text { font-size: 1.25rem; font-weight: 700; color: var(--portal-accent); }
.portal-auth-card__title { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.5rem; text-align: center; }
.portal-auth-card__subtitle { font-size: 0.9375rem; color: var(--portal-muted); text-align: center; margin-bottom: 1.25rem; }
.portal-hint { display: block; font-size: 0.75rem; color: var(--portal-muted); margin-top: 0.35rem; }
.portal-auth-card__footer { text-align: center; margin-top: 1.25rem; color: var(--portal-muted); font-size: 0.9375rem; }
.portal-label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--portal-muted); margin-bottom: 0.35rem; }
.portal-required { color: #dc3545; margin-left: 2px; }
.portal-input, .portal-select {
  width: 100%;
  padding: 0.65rem 0.875rem;
  font-size: 0.9375rem;
  color: #fff;
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
}
.portal-input::placeholder { color: var(--portal-muted); }
.portal-input:focus, .portal-select:focus { border-color: var(--portal-accent); }
.portal-select { cursor: pointer; appearance: auto; }
.portal-checkbox { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--portal-muted); cursor: pointer; }
.portal-checkbox input { margin-top: 0.25rem; }
.portal-btn { padding: 0.75rem 1.25rem; font-size: 1rem; font-weight: 600; border-radius: 8px; border: none; cursor: pointer; transition: background 0.2s, color 0.2s; }
.portal-btn-primary { background: var(--portal-accent); color: #0f0f0f; }
.portal-btn-primary:hover:not(:disabled) { background: var(--portal-accent-hover); color: #fff; }
.portal-btn-block { width: 100%; }
.portal-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.portal-form .row { margin-bottom: 0; }
.portal-auth-card .portal-form .portal-btn { margin-top: 1.25rem; }
.portal-auth-card__forgot { margin-top: 0.5rem; font-size: 0.875rem; }
.portal-auth-card__forgot a { text-decoration: none; }
.portal-reset-countdown { font-size: 0.875rem; color: var(--portal-accent); text-align: center; margin-bottom: 1rem; font-variant-numeric: tabular-nums; }
.portal-reset-countdown--expired { color: var(--portal-danger); }

/* Dashboard layout */
.portal-body.portal-dash { overflow: hidden; }
.portal-dash { display: flex; min-height: 100vh; }
.portal-dash__main { flex: 1; display: flex; flex-direction: column; min-width: 0; background: var(--portal-bg); margin-left: 260px; height: 100vh; overflow: hidden; }
.portal-dash__content { flex: 1; padding: 1.5rem; overflow-y: auto; min-height: 0; }
.portal-notif-banner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
  padding: 1rem 1.25rem; margin-bottom: 1.25rem;
  background: rgba(212, 175, 55, 0.15); border: 1px solid var(--portal-accent);
  border-radius: 10px; color: var(--portal-text);
}
.portal-notif-banner a { color: var(--portal-accent); font-weight: 600; text-decoration: none; }
.portal-notif-banner a:hover { text-decoration: underline; }
.portal-notif-banner--new {
  animation: portal-notif-pulse 1.5s ease-out 2;
  box-shadow: 0 0 0 2px var(--portal-accent);
}
@keyframes portal-notif-pulse {
  0%, 100% { box-shadow: 0 0 0 2px var(--portal-accent); }
  50% { box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.4); }
}

/* Notifications modal (bell click) */
.portal-notif-modal-backdrop {
  display: none; position: fixed; inset: 0; z-index: 1050;
  background: rgba(0, 0, 0, 0.7); align-items: center; justify-content: center;
  padding: 1rem;
}
.portal-notif-modal-backdrop.open { display: flex; }
.portal-notif-modal {
  background: var(--portal-card, #1a1a1a); border: 1px solid var(--portal-border);
  border-radius: 12px; max-width: 480px; width: 100%; max-height: 85vh;
  display: flex; flex-direction: column; box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.portal-notif-modal__header {
  display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--portal-border);
}
.portal-notif-modal__title { margin: 0; font-size: 1.125rem; font-weight: 600; color: var(--portal-text); }
.portal-notif-modal__close {
  width: 36px; height: 36px; border: none; background: transparent; color: var(--portal-muted);
  border-radius: 8px; cursor: pointer; font-size: 1.25rem; line-height: 1;
  transition: background 0.2s, color 0.2s;
}
.portal-notif-modal__close:hover { background: rgba(255,255,255,0.08); color: var(--portal-text); }
.portal-notif-modal__body { padding: 1rem 1.25rem; overflow-y: auto; flex: 1; min-height: 0; }
.portal-notif-modal__list { list-style: none; padding: 0; margin: 0; }
.portal-notif-modal__item {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 0.75rem 1rem; margin-bottom: 0.5rem;
}
.portal-notif-modal__date { font-size: 0.75rem; color: var(--portal-muted); margin-bottom: 0.25rem; }
.portal-notif-modal__subject { font-weight: 600; font-size: 0.9375rem; margin-bottom: 0.15rem; }
.portal-notif-modal__reason { font-size: 0.8125rem; color: var(--portal-muted); }
.portal-notif-modal__badge { display: inline-block; padding: 0.15rem 0.4rem; border-radius: 6px; font-size: 0.65rem; font-weight: 600; margin-left: 0.5rem; }
.portal-notif-badge--message { background: rgba(59,130,246,0.2); color: #60a5fa; }
.portal-notif-badge--active { background: rgba(34,197,94,0.2); color: #4ade80; }
.portal-notif-badge--on_hold { background: rgba(251,191,36,0.2); color: #fbbf24; }
.portal-notif-badge--cancelled { background: rgba(248,113,113,0.2); color: #f87171; }
.portal-notif-modal__empty, .portal-notif-modal__loading { font-size: 0.9375rem; color: var(--portal-muted); margin: 0; }
.portal-notif-modal__footer { padding: 0.75rem 1.25rem; border-top: 1px solid var(--portal-border); }
.portal-notif-modal__link { color: var(--portal-accent); font-weight: 600; font-size: 0.9375rem; text-decoration: none; }
.portal-notif-modal__link:hover { text-decoration: underline; }

.portal-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.portal-modal-backdrop {
  display: none; position: fixed; inset: 0; z-index: 1050;
  background: rgba(0,0,0,0.7); align-items: center; justify-content: center;
  padding: 1rem;
}
.portal-modal-backdrop.open { display: flex; }
.portal-modal {
  background: var(--portal-card); border: 1px solid var(--portal-border);
  border-radius: 12px; max-width: 520px; width: 100%; max-height: 90vh;
  display: flex; flex-direction: column; box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.portal-modal__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--portal-border);
}
.portal-modal__title { margin: 0; font-size: 1.125rem; font-weight: 600; color: var(--portal-text); }
.portal-modal__close {
  width: 36px; height: 36px; border: none; background: transparent; color: var(--portal-muted);
  border-radius: 8px; cursor: pointer; font-size: 1.25rem; line-height: 1;
}
.portal-modal__close:hover { background: rgba(255,255,255,0.08); color: var(--portal-text); }
.portal-modal__body { padding: 1rem 1.25rem; overflow-y: auto; }
.portal-modal__footer {
  padding: 0.75rem 1.25rem; border-top: 1px solid var(--portal-border);
  display: flex; justify-content: flex-end; gap: 0.75rem;
}

.portal-header {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.75rem 1.5rem; background: #1a1a1a; border-bottom: 1px solid var(--portal-border);
}
.portal-header__left { display: flex; align-items: center; gap: 1rem; }
.portal-header__logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; color: var(--portal-accent); font-weight: 700; }
.portal-header__logo img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.portal-header__nav-toggle { background: none; border: none; color: #fff; font-size: 1.25rem; cursor: pointer; padding: 0.25rem; }
.portal-header__right { display: flex; align-items: center; gap: 1rem; }
.portal-header__notif {
  display: flex; align-items: center; justify-content: center;
  position: relative; width: 44px; height: 44px;
  color: var(--portal-muted); text-decoration: none; font-size: 1.25rem;
  border-radius: 10px; transition: color 0.2s, background 0.2s;
}
.portal-header__notif:hover { color: var(--portal-accent); background: rgba(212,175,55,0.08); }
.portal-header__notif-count {
  position: absolute; top: 4px; right: 4px;
  min-width: 1.125rem; height: 1.125rem; padding: 0 0.35rem;
  font-size: 0.625rem; font-weight: 700; line-height: 1.125rem;
  text-align: center; border-radius: 10px;
  background: #dc3545; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 1px rgba(220, 53, 69, 0.5);
}
.portal-header__notif-count--zero { display: none; }
.portal-header__user { display: flex; align-items: center; gap: 0.5rem; color: var(--portal-muted); font-size: 0.9375rem; }
.portal-header__usermenu { position: relative; cursor: pointer; }
.portal-header__usermenu-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 210px;
  background: rgba(0,0,0,0.72);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 0.5rem;
  z-index: 1000;
  flex-direction: column;
}
.portal-header__usermenu.open .portal-header__usermenu-dropdown { display: flex; }
.portal-header__usermenu-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  color: var(--portal-text);
  text-decoration: none;
  font-size: 0.95rem;
}
.portal-header__usermenu-item:hover { background: rgba(212,175,55,0.12); color: #fff; }
.portal-header__usermenu-item-logout:hover { background: rgba(248,113,113,0.14); color: #fecaca; }
.portal-header__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.portal-header__logout {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--portal-muted);
  font-size: 0.9rem;
  padding: 0.35rem 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.12);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.portal-header__logout:hover {
  color: var(--portal-text);
  border-color: rgba(248,113,113,0.6);
  background: rgba(248,113,113,0.12);
}
.portal-sidebar {
  width: 260px; flex-shrink: 0; background: #0f0f0f; border-right: 1px solid var(--portal-border);
  display: flex; flex-direction: column;
  position: fixed; left: 0; top: 0; bottom: 0; z-index: 1000;
  transform: translateX(0);
  overflow-y: auto; overflow-x: hidden;
}
.portal-sidebar__user { padding: 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.portal-sidebar__name { font-weight: 600; color: #fff; margin-bottom: 0.25rem; }
.portal-sidebar__id { font-size: 0.8125rem; color: var(--portal-muted); margin-bottom: 0.25rem; }
.portal-sidebar__status { font-size: 0.8125rem; font-weight: 600; color: #dc3545; }
.portal-sidebar__status.status-active { color: #22c55e; }
.portal-sidebar__status.status-pending,
.portal-sidebar__status.status-on-hold { color: #f59e0b; }
.portal-sidebar__status.status-cancelled { color: #ef4444; }
.portal-sidebar__nav { padding: 1rem 0; }
.portal-sidebar__nav-title { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.08em; color: var(--portal-muted); padding: 0 1.25rem; margin-bottom: 0.5rem; }
.portal-sidebar__link {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.65rem 1.25rem;
  color: var(--portal-muted); text-decoration: none; font-size: 0.9375rem; transition: color 0.2s, background 0.2s;
}
.portal-sidebar__link:hover { color: var(--portal-accent); background: rgba(212,175,55,0.08); }
.portal-sidebar__link.active { color: var(--portal-accent); background: rgba(212,175,55,0.12); }
.portal-sidebar__link i { width: 1.25rem; text-align: center; }
.portal-sub-arrow { margin-left: auto; font-size: 0.7rem; opacity: 0.7; }
.portal-sidebar__group { margin: 0; }
.portal-sidebar__toggle { width: 100%; text-align: left; background: none; border: none; color: inherit; cursor: pointer; font-size: inherit; display: flex; align-items: center; gap: 0.75rem; padding: 0.65rem 1.25rem; }
.portal-sidebar__sub { display: none; padding-left: 0.5rem; border-left: 2px solid rgba(212,175,55,0.3); margin-left: 1.25rem; margin-bottom: 0.25rem; }
.portal-sidebar__sub.open { display: block; }
.portal-sidebar__sublink { display: block; padding: 0.4rem 0.75rem; font-size: 0.875rem; color: var(--portal-muted); text-decoration: none; }
.portal-sidebar__sublink:hover { color: var(--portal-accent); }
.portal-summary { margin-bottom: 1.5rem; }
.portal-summary-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--portal-muted); margin-bottom: 0.25rem; }
.portal-summary-value { font-size: 1.25rem; font-weight: 700; color: #fff; }
.portal-summary-sub { color: var(--portal-muted); font-size: 0.75rem; display: block; margin-top: 0.25rem; }
.portal-pnl-dynamic.portal-pnl-gain { color: #28a745; }
.portal-pnl-dynamic.portal-pnl-loss { color: #dc3545; }
.portal-welcome { font-size: 1.125rem; color: var(--portal-muted); margin-bottom: 1.5rem; line-height: 1.5; max-width: 720px; }
.portal-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.portal-card {
  background: var(--portal-card); border: 1px solid var(--portal-border); border-radius: 12px;
  padding: 1.25rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.portal-card:hover { border-color: rgba(212,175,55,0.4); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.portal-card__title { font-size: 1.0625rem; font-weight: 600; margin-bottom: 0.5rem; color: #fff; }
.portal-card__status { font-size: 0.8125rem; font-weight: 600; color: #dc3545; margin-bottom: 0.75rem; }
.portal-card__status.completed { color: var(--portal-success); }
.portal-card__desc { font-size: 0.875rem; color: var(--portal-muted); line-height: 1.5; margin-bottom: 0.75rem; }
.portal-card__list { font-size: 0.8125rem; color: var(--portal-muted); padding-left: 1.25rem; margin: 0; }
.portal-card__list li { margin-bottom: 0.25rem; }
/* Investments section */
.portal-section-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; color: #fff; }
.portal-section-title--small { font-size: 1.05rem; }
.portal-section-sub { font-weight: 400; color: var(--portal-muted); font-size: 0.875rem; }
.portal-invest-form .card { background: var(--portal-card); border-color: var(--portal-border) !important; }
.portal-invest-form .card-body { padding: 1.25rem; }
.portal-invest-summary { padding: 0.75rem 1rem; background: rgba(255,255,255,0.05); border-radius: 8px; font-size: 0.9375rem; color: var(--portal-muted); }
.portal-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.portal-table th, .portal-table td { padding: 0.65rem 0.75rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.08); }
.portal-table th { color: var(--portal-muted); font-weight: 600; }
.portal-table td { color: var(--portal-text); }
.portal-table td .portal-link { font-weight: 600; }
.portal-doc-actions { display: inline-flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.portal-doc-delete-btn {
  padding: 0.32rem 0.65rem;
  font-size: 0.78rem;
  line-height: 1.2;
  border-radius: 7px;
  border: 1px solid rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.14);
  color: #f87171;
  cursor: pointer;
}
.portal-doc-delete-btn:hover:not(:disabled) {
  background: rgba(239, 68, 68, 0.24);
  color: #fecaca;
}
.portal-doc-delete-btn:disabled { opacity: 0.65; cursor: not-allowed; }
.portal-doc-note {
  display: inline-block;
  margin-top: 0.45rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #111;
  background: #d4af37;
}
.portal-pnl-gain { color: #28a745 !important; font-weight: 600; }
.portal-pnl-loss { color: #dc3545 !important; font-weight: 600; }
.portal-btn-sm { padding: 0.25rem 0.5rem; font-size: 1rem; line-height: 1; background: rgba(220,53,69,0.2); color: #dc3545; border: none; border-radius: 4px; cursor: pointer; }
.portal-btn-sm:hover { background: rgba(220,53,69,0.35); }
.portal-invest-note { color: var(--portal-muted); font-size: 0.8125rem; }

@media (max-width: 991px) {
  .portal-sidebar { position: fixed; left: 0; top: 0; bottom: 0; z-index: 1000; transform: translateX(-100%); transition: transform 0.25s; }
  .portal-sidebar.open { transform: translateX(0); }
  .portal-dash__main { margin-left: 0; }
}

/* Edit Profile page – same colors as portal (dark theme) */
.profile-edit-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.25rem; color: #fff; }
.profile-card {
  background: var(--portal-card); border: 1px solid var(--portal-border); border-radius: 12px;
  padding: 1.5rem; margin-bottom: 1rem;
}
.profile-card__heading { font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.05em; color: var(--portal-muted); margin-bottom: 1rem; }
.profile-card__sub { font-size: 0.875rem; color: var(--portal-muted); margin: 0; }
.profile-field { margin-bottom: 1rem; }
.profile-field__label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--portal-muted); margin-bottom: 0.35rem; }
.profile-field__value { font-size: 0.9375rem; color: var(--portal-text); }
.profile-field__value--static { padding: 0.5rem 0; }
.profile-field__input, .profile-field__select {
  width: 100%; padding: 0.5rem 0.75rem; font-size: 0.9375rem; color: #fff;
  background: #0f0f0f; border: 1px solid rgba(255,255,255,0.12); border-radius: 8px;
}
.profile-field__input:focus, .profile-field__select:focus { border-color: var(--portal-accent); outline: 0; }
.profile-field__wrap { position: relative; display: flex; align-items: center; }
.profile-field__wrap .profile-field__input { padding-right: 2.5rem; }
.profile-field__toggle { position: absolute; right: 0.5rem; background: none; border: none; color: var(--portal-muted); cursor: pointer; padding: 0.25rem; }
.profile-field__toggle:hover { color: var(--portal-accent); }
.profile-btn { padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 600; border-radius: 8px; border: none; cursor: pointer; transition: background 0.2s, color 0.2s; }
.profile-btn-primary { background: var(--portal-accent); color: #0f0f0f; }
.profile-btn-primary:hover:not(:disabled) { background: var(--portal-accent-hover); color: #fff; }
.profile-btn-upload { background: var(--portal-success); color: #fff; text-decoration: none; display: inline-block; padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.875rem; font-weight: 600; border: none; cursor: pointer; }
.profile-btn-upload:hover { background: #218838; color: #fff; }
.profile-password-reqs { font-size: 0.8125rem; color: var(--portal-muted); list-style: none; padding-left: 0; margin: 0.75rem 0 1rem; }
.profile-password-reqs li { margin-bottom: 0.25rem; }
.profile-verification-list { display: flex; flex-direction: column; gap: 0.75rem; }
.profile-verification-item {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.profile-verification-item:last-child { border-bottom: none; }
.profile-verification-label { font-weight: 600; color: var(--portal-text); min-width: 140px; }
.profile-verification-status { font-weight: 600; color: #dc3545; }
.profile-verification-status.complete { color: var(--portal-success); }
.profile-verification-status.pending { color: #ffc107; }
.profile-doc-upload { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.profile-doc-upload input[type="file"] { font-size: 0.875rem; color: var(--portal-text); max-width: 220px; }
.profile-doc-upload .profile-btn-upload { flex-shrink: 0; }

.questionnaire-form .portal-card { background: var(--portal-card); border: 1px solid var(--portal-border); }
.questionnaire-checkboxes { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; margin-bottom: 0.5rem; }
.questionnaire-checkboxes .portal-checkbox { margin-bottom: 0; }
