/* ============================================================
   RSB — Neumorphic 3D Mobile UI System
   ============================================================
   Design language taken from the reference shots:
   - Soft-3D (neumorphic) surfaces: extruded + pressed states
   - 3D glossy squircle app icons with labels in a grid
   - Bottom navigation with a RAISED CENTRAL button
   - Wave/curve section transitions
   - Pill inputs, soft switches, tactile cards

   Loads AFTER site-mobile.css / admin-mobile.css → wins on mobile.
   Desktop (>1023.98px) is completely untouched.
   ============================================================ */

@media (max-width: 1023.98px) {

  /* ============================================================
     1) NEUMORPHIC DESIGN TOKENS
     ============================================================ */
  :root {
    --nm-bg: #ECEEF6;              /* page canvas — calm lavender */
    --nm-surface: #F2F4FA;         /* raised card base */
    --nm-surface-2: #F7F8FC;       /* lighter face */
    --nm-text: #25294C;
    --nm-muted: #6B7390;
    --nm-accent: #3D4079;
    --nm-accent2: #5B5EA0;

    /* dual light-source shadows — soft lavender */
    --nm-sh-light: rgba(255, 255, 255, 0.9);
    --nm-sh-dark: rgba(160, 165, 195, 0.45);
    --nm-shadow: -5px -5px 12px var(--nm-sh-light), 6px 6px 14px rgba(160, 165, 195, 0.45);
    --nm-shadow-sm: -3px -3px 8px var(--nm-sh-light), 4px 4px 9px rgba(160, 165, 195, 0.4);
    --nm-inset: inset 3px 3px 7px rgba(160, 165, 195, 0.45), inset -3px -3px 7px var(--nm-sh-light);
    --nm-radius: 22px;
  }

  /* public dark theme */
  [data-theme="dark"] {
    --nm-bg: #151730;
    --nm-surface: #1F2241;
    --nm-surface-2: #252850;
    --nm-text: #D0D0E0;
    --nm-muted: #9090B0;
    --nm-sh-light: rgba(255, 255, 255, 0.06);
    --nm-shadow: -5px -5px 12px rgba(255, 255, 255, 0.045), 6px 6px 16px rgba(0, 0, 0, 0.65);
    --nm-shadow-sm: -3px -3px 8px rgba(255, 255, 255, 0.04), 4px 4px 10px rgba(0, 0, 0, 0.55);
    --nm-inset: inset 3px 3px 8px rgba(0, 0, 0, 0.6), inset -3px -3px 8px rgba(255, 255, 255, 0.05);
  }

  /* admin dark theme (body.dark) */
  body.dark {
    --nm-bg: #0d1420;
    --nm-surface: #131b2a;
    --nm-surface-2: #182234;
    --nm-text: #e0e6f0;
    --nm-muted: #8a9bb8;
    --nm-accent: #3f51b5;
    --nm-accent2: #00bcd4;
    --nm-sh-light: rgba(255, 255, 255, 0.05);
    --nm-shadow: -5px -5px 12px rgba(255, 255, 255, 0.045), 6px 6px 16px rgba(0, 0, 0, 0.65);
    --nm-shadow-sm: -3px -3px 8px rgba(255, 255, 255, 0.04), 4px 4px 10px rgba(0, 0, 0, 0.6);
    --nm-inset: inset 3px 3px 8px rgba(0, 0, 0, 0.6), inset -3px -3px 8px rgba(255, 255, 255, 0.05);
  }

  /* ---- Page canvas becomes the soft-3D surface ---- */
  body {
    background: var(--nm-bg) !important;
  }
  body.dark {
    background: var(--nm-bg) !important;
  }

  /* ============================================================
     2) 3D GLOSSY SQUIRCLE ICON SYSTEM
     ============================================================ */
  .rsb3d-icon {
    --icon-ink: #596080;
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--icon-ink);
    flex: none;
    background: linear-gradient(145deg, #F8F9FC 0%, #E3E6EF 100%);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow:
      -5px -5px 10px rgba(255, 255, 255, 0.82),
      6px 7px 13px rgba(153, 160, 181, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transform: translateZ(0);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, color 0.3s ease;
  }
  /* soft glass highlight, like the supplied neumorphic controls */
  .rsb3d-icon::before {
    content: '';
    position: absolute;
    left: 9%;
    right: 9%;
    top: 7%;
    height: 38%;
    border-radius: 12px 12px 18px 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
    opacity: 0.8;
    pointer-events: none;
  }
  .rsb3d-icon::after {
    content: '';
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 8%;
    height: 12%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.42);
    filter: blur(3px);
    pointer-events: none;
  }
  .rsb3d-icon:hover {
    transform: translateY(-3px);
    box-shadow:
      -6px -6px 12px rgba(255, 255, 255, 0.9),
      8px 10px 17px rgba(135, 143, 171, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }
  .rsb3d-icon:active {
    transform: scale(0.93);
    box-shadow: inset 3px 3px 7px rgba(151, 158, 180, 0.28), inset -3px -3px 7px rgba(255, 255, 255, 0.8);
  }

  /* ---- quiet icon ink variants — reference-inspired, not rainbow ---- */
  .rsb3d-icon--blue    { --icon-ink: #4E5792; }
  .rsb3d-icon--indigo  { --icon-ink: #59609A; }
  .rsb3d-icon--violet  { --icon-ink: #6E6A9E; }
  .rsb3d-icon--purple  { --icon-ink: #777695; }
  .rsb3d-icon--pink    { --icon-ink: #876F94; }
  .rsb3d-icon--red     { --icon-ink: #8C6F82; }
  .rsb3d-icon--orange  { --icon-ink: #8C786A; }
  .rsb3d-icon--amber   { --icon-ink: #817A61; }
  .rsb3d-icon--green   { --icon-ink: #5D8178; }
  .rsb3d-icon--teal    { --icon-ink: #5F7F91; }
  .rsb3d-icon--cyan    { --icon-ink: #587795; }
  .rsb3d-icon--slate   { --icon-ink: #626B84; }
  .rsb3d-icon--rose    { --icon-ink: #846C83; }
  .rsb3d-icon--grape   { --icon-ink: #6E6697; }
  .rsb3d-icon--steel   { --icon-ink: #5E6988; }

  /* small size variant */
  .rsb3d-icon--sm { width: 44px; height: 44px; border-radius: 14px; font-size: 17px; }
  .rsb3d-icon--lg { width: 64px; height: 64px; border-radius: 20px; font-size: 26px; }

  /* ============================================================
     3) ICON GRID (drawer / home sections)
     ============================================================ */
  .rsb3d-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 8px;
    padding: 6px 4px 2px;
  }
  .rsb3d-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 6px 2px;
    border-radius: 16px;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .rsb3d-grid-item:active {
    transform: scale(0.93);
  }
  .rsb3d-grid-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--nm-text);
    line-height: 1.3;
    text-align: center;
  }
  .rsb3d-grid-sub {
    display: block;
    font-size: 9.5px;
    font-weight: 500;
    color: var(--nm-muted);
    margin-top: 1px;
  }
  .rsb3d-grid-item.active .rsb3d-grid-label {
    color: var(--nm-accent);
  }
  /* badge pinned on icon */
  .rsb3d-grid-item { position: relative; }
  .rsb3d-grid-badge {
    position: absolute;
    top: -4px;
    inset-inline-end: 14%;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: linear-gradient(135deg, #ff4d4d, #ff7a7a);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(255, 77, 77, 0.45);
    z-index: 2;
  }

  /* ============================================================
     4) NEUMORPHIC BOTTOM NAV + RAISED CENTRAL BUTTON
     ============================================================ */
  .rsb-p-bottomnav,
  .rsb-m-bottomnav {
    background: var(--nm-bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-top: none;
    box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.12);
  }
  [data-theme="dark"] .rsb-p-bottomnav,
  .rsb-m-bottomnav {
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.55);
  }

  .rsb3d-nav-item .rsb-p-nav-icon,
  .rsb3d-nav-item .rsb-m-nav-icon,
  .rsb3d-bottomnav .rsb-p-nav-icon,
  .rsb3d-bottomnav .rsb-m-nav-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: var(--nm-surface);
    border: none;
    box-shadow: var(--nm-shadow-sm);
    color: var(--nm-muted) !important;
    transform: none !important;
    animation: none !important;
  }
  .rsb3d-bottomnav .rsb-p-nav-item.active .rsb-p-nav-icon,
  .rsb3d-bottomnav .rsb-m-nav-icon.active,
  .rsb3d-bottomnav .rsb-p-nav-item.active .rsb-p-nav-icon,
  .rsb3d-bottomnav .rsb-m-nav-item.active .rsb-m-nav-icon {
    background: linear-gradient(145deg, var(--nm-accent2), var(--nm-accent));
    color: #fff !important;
    border: none;
    box-shadow:
      inset 0 1px 1px rgba(255, 255, 255, 0.45),
      inset 0 -2px 5px rgba(0, 0, 0, 0.18),
      0 8px 18px -6px rgba(26, 115, 232, 0.55);
  }
  /* kill old shimmer/indicator on items in favor of clean neumorphic look */
  .rsb3d-bottomnav .rsb-p-nav-item.active::before,
  .rsb3d-bottomnav .rsb-p-nav-item.active .rsb-p-nav-icon::after,
  .rsb3d-bottomnav .rsb-m-nav-item.active::before,
  .rsb3d-bottomnav .rsb-m-nav-item.active .rsb-m-nav-icon::after {
    display: none;
  }
  .rsb3d-bottomnav .rsb-p-nav-item.active,
  .rsb3d-bottomnav .rsb-m-nav-item.active {
    color: var(--nm-accent);
  }
  [data-theme="dark"] .rsb3d-bottomnav .rsb-p-nav-item.active,
  .rsb3d-bottomnav .rsb-m-nav-item.active {
    color: var(--nm-accent2);
  }

  /* ---- raised central button ---- */
  .rsb3d-nav-fab {
    position: relative;
    width: 62px;
    height: 62px;
    margin-top: -32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    flex: none;
    align-self: flex-start;
    background:
      radial-gradient(120% 90% at 30% 12%, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 50%),
      linear-gradient(145deg, var(--nm-accent2), var(--nm-accent));
    border: 5px solid var(--nm-bg);
    box-shadow:
      inset 0 2px 2px rgba(255, 255, 255, 0.45),
      inset 0 -3px 6px rgba(0, 0, 0, 0.2),
      0 10px 22px -6px rgba(26, 115, 232, 0.55),
      0 4px 10px rgba(15, 23, 42, 0.22);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    transform: translateZ(0);
    -webkit-tap-highlight-color: transparent;
    z-index: 2;
  }
  .rsb3d-nav-fab::before {
    content: '';
    position: absolute;
    left: 14%;
    right: 14%;
    top: 7%;
    height: 40%;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.05));
    pointer-events: none;
  }
  .rsb3d-nav-fab:active {
    transform: scale(0.9);
  }
  .rsb3d-nav-fab.rsb-p-fab-open,
  .rsb3d-nav-fab.rsb-m-fab-open {
    transform: rotate(135deg);
  }
  .rsb3d-nav-fab.rsb-p-fab-open:active,
  .rsb3d-nav-fab.rsb-m-fab-open:active {
    transform: rotate(135deg) scale(0.9);
  }
  .rsb3d-nav-fab.rsb3d-fab-pulse {
    animation: rsb3dFabPulse 2.6s ease-in-out infinite;
  }
  @keyframes rsb3dFabPulse {
    0%, 100% {
      box-shadow: inset 0 2px 2px rgba(255,255,255,.45), inset 0 -3px 6px rgba(0,0,0,.2),
        0 10px 22px -6px rgba(26,115,232,.55), 0 4px 10px rgba(15,23,42,.2),
        0 0 0 0 rgba(26,115,232,.35);
    }
    50% {
      box-shadow: inset 0 2px 2px rgba(255,255,255,.45), inset 0 -3px 6px rgba(0,0,0,.2),
        0 10px 22px -6px rgba(26,115,232,.55), 0 4px 10px rgba(15,23,42,.2),
        0 0 0 16px rgba(26,115,232,0);
    }
  }

  /* ============================================================
     5) NEUMORPHIC APP BAR
     ============================================================ */
  .rsb-p-appbar,
  .rsb-m-appbar {
    background: var(--nm-bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    box-shadow: 0 6px 18px -6px rgba(163, 177, 198, 0.4);
  }
  [data-theme="dark"] .rsb-p-appbar,
  .rsb-m-appbar {
    box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.6);
  }
  .rsb-p-appbar-btn,
  .rsb-m-appbar-btn {
    background: var(--nm-surface);
    border: none;
    color: var(--nm-accent);
    box-shadow: var(--nm-shadow-sm);
  }
  [data-theme="dark"] .rsb-p-appbar-btn,
  .rsb-m-appbar-btn {
    color: var(--nm-accent2);
  }
  .rsb-p-appbar-btn:active,
  .rsb-m-appbar-btn:active {
    box-shadow: var(--nm-inset);
  }
  .rsb-p-appbar-logo,
  .rsb-m-appbar-logo {
    background: var(--nm-surface);
    border: none;
    box-shadow: var(--nm-shadow-sm);
  }

  /* ============================================================
     6) NEUMORPHIC DRAWER
     ============================================================ */
  .rsb-p-drawer,
  .rsb-m-drawer {
    background: var(--nm-bg);
    border-inline-start: none;
    box-shadow: -16px 0 44px rgba(100, 116, 139, 0.28);
  }
  [data-theme="dark"] .rsb-p-drawer,
  body.dark .rsb-m-drawer {
    box-shadow: -16px 0 44px rgba(0, 0, 0, 0.6);
  }
  .rsb-p-drawer-header,
  .rsb-m-drawer-header {
    border-bottom: none;
  }
  .rsb-p-drawer-close {
    position: absolute;
    top: 12px;
    inset-inline-start: 12px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 12px;
    background: rgba(230, 233, 244, 0.58);
    color: #414975;
    font-size: 14px;
    cursor: pointer;
    z-index: 3;
    box-shadow: -3px -3px 7px rgba(255, 255, 255, 0.7), 4px 5px 9px rgba(119, 128, 160, 0.28);
  }
  .rsb-p-drawer-close:active,
  .rsb-m-drawer-close:active {
    transform: scale(0.9);
  }
  .rsb-m-drawer-close {
    position: absolute;
    top: 12px;
    inset-inline-start: 12px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 12px;
    background: rgba(230, 233, 244, 0.58);
    color: #414975;
    font-size: 14px;
    cursor: pointer;
    z-index: 3;
    box-shadow: -3px -3px 7px rgba(255, 255, 255, 0.7), 4px 5px 9px rgba(119, 128, 160, 0.28);
  }

  /* Keep the install prompt readable and out of the drawer navigation. */
  .rsb-p-install-title,
  .rsb-p-install-desc {
    color: #fff !important;
  }
  .rsb-p-install-title {
    line-height: 1.4 !important;
  }
  .rsb-p-install-desc {
    line-height: 1.5 !important;
  }
  .rsb-p-drawer.open ~ .rsb-p-install,
  .rsb-p-drawer.open ~ .rsb-p-bottomnav {
    display: none !important;
  }

  /* ============================================================
     7) WAVE / CURVE SECTION DIVIDER
     ============================================================ */
  .rsb3d-wave {
    display: block;
    width: 100%;
    line-height: 0;
    margin-top: -1px;
    color: var(--nm-bg); /* fill matches the surface below */
  }
  .rsb3d-wave svg {
    display: block;
    width: 100%;
    height: 46px;
  }
  .rsb3d-wave--flip svg {
    transform: scaleX(-1);
  }
  .rsb3d-wave--sm svg {
    height: 30px;
  }

  /* ---- Drawer hero header (dark gradient + wave, like reference) ---- */
  .rsb-p-drawer-header,
  .rsb-m-drawer-header {
    position: relative;
    margin: 0 12px 14px;
    padding: 20px 16px 58px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 22px;
    background:
      radial-gradient(125% 110% at 18% 0%, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0) 54%),
      linear-gradient(145deg, #D5D8E8 0%, #B6BAD0 52%, #9EA4C3 100%);
    box-shadow:
      -7px -7px 14px rgba(255, 255, 255, 0.76),
      9px 12px 20px rgba(127, 135, 166, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.65);
    overflow: hidden;
  }
  .rsb-p-drawer-logo,
  .rsb-m-drawer-avatar {
    border-color: rgba(255, 255, 255, 0.82);
    box-shadow: 0 6px 16px -4px rgba(68, 74, 112, 0.28);
  }
  .rsb-p-drawer-name,
  .rsb-m-drawer-name {
    color: #2E345C;
  }
  .rsb-p-drawer-tagline,
  .rsb-m-drawer-role {
    color: rgba(46, 52, 92, 0.72);
  }
  /* wave sits at the bottom edge of the hero, filling with drawer bg */
  .rsb3d-wave--drawer {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    color: var(--nm-bg);
  }
  .rsb3d-wave--drawer svg {
    height: 34px;
  }
  /* drawer section titles */
  .rsb-p-drawer-section,
  .rsb-m-drawer-section {
    padding: 12px 20px 4px;
    font-size: 10.5px;
    letter-spacing: 1px;
  }

  /* ============================================================
     8) NEUMORPHIC CARDS / INPUTS / CONTROLS
     ============================================================ */
  .rsb3d-card,
  .rsb3d-card {
    background: var(--nm-surface);
    border: none;
    border-radius: var(--nm-radius);
    box-shadow: var(--nm-shadow);
  }
  .rsb3d-inset,
  .rsb3d-inset {
    background: var(--nm-bg);
    box-shadow: var(--nm-inset);
    border: none;
    border-radius: 16px;
  }
  /* soft inputs on mobile */
  .rsb-p-search input,
  .rsb-m-search input {
    background: var(--nm-bg);
    box-shadow: var(--nm-inset);
    border: none;
  }
  /* soft switches (bootstrap custom) */
  .custom-control-input:checked ~ .custom-control-label::before,
  .custom-control-input:checked ~ .custom-control-label::before {
    background: linear-gradient(145deg, var(--nm-accent2), var(--nm-accent));
    border: none;
  }

  /* ============================================================
     9) FAB SPEED-DIAL ITEMS — soft-3D chips
     ============================================================ */
  .rsb-p-fab-menu-item,
  .rsb-m-fab-menu-item {
    background: var(--nm-surface);
    border: none;
    box-shadow: var(--nm-shadow);
    color: var(--nm-text);
  }
  .rsb-p-fab-menu-item i,
  .rsb-m-fab-menu-item i {
    background: linear-gradient(145deg, var(--nm-accent2), var(--nm-accent));
    border: none;
    color: #fff !important;
    box-shadow: 0 6px 14px -4px rgba(26, 115, 232, 0.5);
  }

  /* ============================================================
     10) TOAST + INSTALL BANNER — soft-3D
     ============================================================ */
  .rsb-p-toast,
  .rsb-m-toast {
    background: var(--nm-surface);
    backdrop-filter: none;
    border: none;
    box-shadow: var(--nm-shadow);
    color: var(--nm-text);
  }
  .rsb-p-install {
    background: linear-gradient(135deg, var(--nm-accent2), var(--nm-accent));
  }

  /* ============================================================
     11) DRAWER ITEMS — soft rows
     ============================================================ */
  .rsb-p-drawer-item,
  .rsb-m-drawer-item {
    background: transparent;
    border: none;
  }
  .rsb-p-drawer-item:active,
  .rsb-m-drawer-item:active {
    background: var(--nm-bg);
    box-shadow: var(--nm-inset);
    transform: scale(0.98);
  }
  .rsb-p-drawer-item.active,
  .rsb-m-drawer-item.active {
    background: var(--nm-bg);
    box-shadow: var(--nm-inset);
    border: none;
  }
  .rsb-p-drawer-item i,
  .rsb-m-drawer-item i,
  .rsb-m-drawer-item .icon {
    background: var(--nm-surface) !important;
    border: none !important;
    box-shadow: var(--nm-shadow-sm) !important;
    color: var(--nm-accent) !important;
  }
  [data-theme="dark"] .rsb-p-drawer-item i,
  .rsb-m-drawer-item .icon,
  .rsb-m-drawer-item i {
    background: var(--nm-surface) !important;
    color: var(--nm-accent2) !important;
  }
  .rsb-p-drawer-item.active i,
  .rsb-m-drawer-item.active i,
  .rsb-m-drawer-item.active .icon {
    background: linear-gradient(145deg, #B7C9E8, #6F8FCC) !important;
    color: #fff !important;
    box-shadow: 0 8px 16px -6px rgba(85, 111, 178, 0.42), inset 0 1px 1px rgba(255,255,255,.65) !important;
  }

  /* Reference-style selected drawer tile: quiet blue glow, never a neon rainbow */
  .rsb3d-grid-item.active .rsb3d-icon {
    color: #fff;
    background: linear-gradient(145deg, #B8C9E8, #718FD0);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow:
      0 0 0 3px rgba(140, 174, 230, 0.2),
      0 8px 17px -5px rgba(74, 105, 177, 0.48),
      inset 0 1px 1px rgba(255, 255, 255, 0.72);
  }
  .rsb3d-grid-item.active .rsb3d-grid-label {
    color: #536BA6;
  }

  /* ============================================================
     12) HERO WAVE INTEGRATION
     ============================================================ */
  .rsb3d-hero {
    border-radius: 0 0 26px 26px;
    overflow: hidden;
    position: relative;
  }
  .rsb3d-hero .rsb3d-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
  }

  /* ============================================================
     13) SMALL PHONES
     ============================================================ */
  @media (max-width: 380px) {
    .rsb3d-icon { width: 50px; height: 50px; border-radius: 16px; font-size: 19px; }
    .rsb3d-nav-fab { width: 56px; height: 56px; margin-top: -28px; }
  }
}
