@font-face {
    font-family: "Sans 3";
    src: url('SourceSans3-VariableFont_wght.ttf');
}

hr {
    border: none;
    border-top: 1px solid #f4f4f4;
}

.dimmed {
    opacity: 0.15;
    filter: grayscale(60%);
    transition: opacity 200ms ease, filter 200ms ease;
}

.highlighted {
    opacity: 1 !important;
    filter: none !important;
}

#legend {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    max-width: 240px;
    font-family: Inter, sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#legend .legend-title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

#legend .legend-items {
    display: flex;
    flex-direction: column; /* verticale */
    gap: 6px; /* spazio tra le righe */
}

#legend .legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #333;
}

#legend .legend-swatch {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    border: 1px solid #ccc;
    flex-shrink: 0;
}

.resize-handle {
    fill: #0078d4;
    stroke: #fff;
    stroke-width: 1.5px;
    rx: 3;
    ry: 3;
}

.resize-hit {
    fill: transparent;
    pointer-events: all;
}

.resize-handle.e, .resize-hit.e {
    cursor: ew-resize;
    touch-action: none;
}

.resize-handle.s, .resize-hit.s {
    cursor: ns-resize;
    touch-action: none;
}

.resize-handle.se, .resize-hit.se {
    cursor: nwse-resize;
    touch-action: none;
}

.resize-handle:hover {
    transform: scale(1.2);
    transform-box: fill-box;
    transform-origin: 50% 50%;
    fill: #0aa7ff;
}


.stream-box:hover,
.theme-box:hover,
.team-box:hover {
    outline: 1px dashed #666;
    outline-offset: 2px;
}


.switch-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    padding: 8px 12px;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.switch-label input {
    display: none;
}

.slider {
    position: relative;
    width: 50px;
    height: 24px;
    background-color: #ccc;
    border-radius: 24px;
    transition: background-color 0.3s;
}

.slider::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    left: 2px;
    top: 2px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

input:checked + .slider {
    background-color: #0078d4; /* colore coerente con bottoni */
}

input:checked + .slider::before {
    transform: translateX(26px);
}

.toast-container {
    position: fixed;
    top: 70px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.toast {
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.top-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 16px;
    background: #fff;
    border-bottom: 1px solid #eee;
    gap: 12px;
}

#hamburger-btn {
    font-size: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.top-search {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.top-search input {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.top-search button {
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #f8f8f8;
    cursor: pointer;
}

#side-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .18);
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease, visibility 200ms ease;
    z-index: 999;
}

#side-overlay.visible {
    opacity: 1;
    visibility: visible;
}

#side-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 80vw;
    height: 100vh;
    background: #fff;
    box-shadow: 4px 0 16px rgba(0, 0, 0, .2);
    transform: translateX(-100%);
    transition: transform 280ms ease;
    z-index: 4000;
    display: flex;
    flex-direction: column;
}

#side-drawer.open {
    transform: translateX(0);
}


@media (max-width: 768px) {
    #side-drawer {
        width: 100vw !important;
        max-width: none !important;
        height: 100vh !important;
        transform: translateX(-100%);
    }

    #side-drawer.open {
        transform: translateX(0);
    }
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
}

#side-drawer .content {
    padding: 12px 10px;
    overflow-y: auto;
    flex: 1;
}

#side-drawer .actions {
    list-style: none;
    padding: 0;
    margin: 0;
}

#side-drawer .actions li {
    margin-bottom: 10px;
}

#side-drawer .actions button {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #f8f8f8;
    cursor: pointer;
    text-align: left;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

#side-drawer .actions button:hover {
    background-color: black;
    color: white;
}

.drawer-search {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}


.drawer-search input {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.drawer-search button {
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #f8f8f8;
    cursor: pointer;
}

.drawer-footer {
    border-top: 1px solid #eee;
    padding: 10px 12px;
    color: #666;
}


body.side-drawer-open {
    overflow: hidden;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    box-sizing: border-box;
    border: none;
    border-bottom: 2px solid black;
    font-size: 16px;
    font-family: "Montserrat", "Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", Arial, sans-serif;
}

input[type="text"]::placeholder {
    color: #aaa;
    font-style: italic;
}

.hidden {
    display: none !important;
}

.custom-file-upload {
    display: none;
}

button {
    transition: background-color 0.4s ease, color 0.4s ease;
    background-color: white;
    color: black;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
}

h1, h3, text, label, button, a, footer {
    font-family: "Montserrat", "Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", Arial, sans-serif;
}

button:hover, .custom-file-upload:hover {
    background-color: black;
    color: white;
}

input[type="file"] {
    display: none;
}

html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    font-family: "Montserrat", "Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", Arial, sans-serif;
}

svg {
    width: 100vw;
    height: 100vh;
    background-color: #f0f0f0;
}

.stream-box {
    fill: #f8f8f8;
    stroke: #bbb;
    stroke-width: 3;
    rx: 40;
    ry: 40;
    filter: drop-shadow(0px 8px 24px rgba(0, 0, 0, 0.10));
}

.theme-box {
    fill: #f5f5ff;
    stroke: #7a7ad1;
    stroke-width: 2;
    rx: 30;
    ry: 30;
    filter: drop-shadow(0px 6px 16px rgba(0, 0, 0, 0.10));
}

.team-box {
    fill: #fff;
    stroke: #999;
    stroke-width: 2;
    rx: 20;
    ry: 20;
    filter: drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.10));
}

.theme-title {
    font-size: 65px;
    font-weight: bold;
    font-family: "Montserrat", "Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", Arial, sans-serif;
    fill: #4a4a9a;
}

.drawer-footer {
    font-size: 18px;
    text-align: center;
}

.team-title {
    font-size: 50px;
    font-weight: bold;
    font-family: "Montserrat", "Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", Arial, sans-serif;
    fill: #333;
}

.profile-box {
    stroke: #ccc;
    stroke-width: 1;
    rx: 14;
    ry: 14;
    filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.10));
}

.profile-photo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 30px;
    display: block;
    margin: 0 auto;
    background: #e0e0e0;
}

.info {
    font-family: "Montserrat", "Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", Arial, sans-serif;
    font-size: 12px;
    color: #333;
    text-align: center;
    margin-top: 8px;
}

.info div {
    margin-bottom: 2px;
}

.profile-name {
    font-size: 14px;
    font-weight: bold;
    margin-top: 6px;
    margin-bottom: 4px;
    text-align: center;
}


#drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 90vw;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 12px rgba(0, 0, 0, .15);
    transform: translateX(100%);
    transition: transform .28s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    #drawer {
        width: 100vw !important;
        max-width: none !important;
        height: 100vh !important;
    }
}

#drawer .content {
    padding: 16px 20px;
    overflow: auto;
}

#drawer.open {
    transform: translateX(0);
}

#drawer header {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#drawer {
    border: none;
    line-height: 1;
    cursor: pointer;
    z-index: 9999 !important;
}

#drawer .content ul {
    margin: 0;
    padding-left: 18px;
}

#drawer .content li {
    margin: 6px 0;
}

#drawer .content li.empty {
    list-style: none;
    color: #666;
    padding-left: 0;
}

#drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .3);
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
    z-index: 9998;
}

#drawer-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

body.drawer-open {
    overflow: hidden;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 6px 0 8px;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 4px;
    border-radius: 12px;
    background: #fff;
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.12);
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    font-size: 10px;
    line-height: 1;
}

.contact-icon .icon {
    font-size: 16px;
}

.contact-icon .label {
    font-weight: 600;
}

.contact-icon {
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

.contact-icon:hover {
    background-color: black !important;
    color: white !important;
    border-color: black !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.30) !important;
}

.contact-icon:focus-visible {
    outline: 2px solid #0078d4;
    outline-offset: 2px;
}

.contact-icon.chat {
}

.contact-icon.mail {
}

.contact-fabs.contact-fabs--right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
}

.contact-fab:focus-visible,
.contact-fabs:focus-within {
    opacity: 1;
    pointer-events: auto;
}

.contact-fab {
    text-decoration: none !important;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    position: relative;
    display: block;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: background-color .25s, color .25s, border-color .25s, box-shadow .25s, transform .12s;
}

.contact-fab .icon {
    text-decoration: none !important;

    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;

    width: 100%;
    height: 100%;
    line-height: 1;
    font-size: 14px;
    font-family: "Montserrat", "Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", Arial, sans-serif;

    transform: translateY(var(--emoji-nudge, 0px));
    line-height: 1;
}


@media (max-width: 1024px), (pointer: coarse) {
    .contact-fab .icon {
        --emoji-nudge: 0.5px;
    }
}

@media (max-width: 480px) {
    .contact-fab {
        width: 28px;
        height: 28px;
    }

    .contact-fab .icon {
        font-size: 16px;
    }

    .contact-fabs.contact-fabs--left { gap: 3px !important; }
}

.contact-fab:hover {
    background-color: black;
    color: white;
    border-color: black;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.30);
}

.contact-fab:focus-visible {
    outline: 2px solid #0078d4;
    outline-offset: 2px;
}

.solitaire-tooltip {
    position: fixed;
    z-index: 2147483647;
    background: #000;
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1.2;
    border-radius: 6px;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -8px);
    transition: opacity 120ms ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
}

.solitaire-tooltip.show {
    opacity: 1;
}

.solitaire-tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
}

@media (max-width: 480px) {
    .contact-fabs.contact-fabs--right {
        gap: 3px !important;
    }
}


@supports (-webkit-touch-callout: none) {
    .contact-fabs,
    .contact-fab {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        will-change: opacity, transform;
    }

    .contact-fab {
        cursor: pointer;
    }
}

.contact-fabs-svg .fab-circle {
    fill: #fff;
    stroke: rgba(0,0,0,0.12);
    stroke-width: 1;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08));
}

.contact-fabs-svg a.contact-fab:hover .fab-circle {
    fill: #000;
    stroke: #000;
}

.contact-fabs-svg .fab-emoji {
    font-size: 14px;
    font-family: "Montserrat", "Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", Arial, sans-serif;
    pointer-events: none;
}

@media (max-width: 480px) {
    .contact-fabs-svg .fab-emoji { font-size: 16px; }
}

.simple-modal__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 2147483646;
    display: flex;
    align-items: center;
    justify-content: center;
}

.simple-modal {
    background: #fff;
    border-radius: 12px;
    max-width: 520px;
    width: calc(100% - 32px);
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
    padding: 20px 22px;
    font-family: "Montserrat", "Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", Arial, sans-serif;
}

.simple-modal h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.simple-modal p {
    margin: 0 0 16px;
    color: #333;
    line-height: 1.35;
}

.simple-modal__buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}



.stream-title {
    font-size: 67px;
    font-weight: bold;
    fill: #222;
    text-transform: uppercase;
}

svg text.stream-title {
    font-size: 67px;
}

.stream-title .stream-icon {
    font-size: 67px;
    font-weight: bold;
    fill: #222;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

g[data-key^="stream::"]:hover .stream-title .stream-icon {
    opacity: 1;
    pointer-events: auto;
}

.theme-title .theme-icon {
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

g[data-key^="theme::"]:hover .theme-title .theme-icon {
    opacity: 1;
    pointer-events: auto;
}

.simple-modal__btn {
    appearance: none;
    border: 1px solid #ddd;
    background: #f7f7f7;
    color: #111;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
}

.simple-modal__btn--primary {
    background: #111;
    color: #fff;
    border-color: #111;
}

.simple-modal__btn:focus {
    outline: 2px solid #4c9ffe;
    outline-offset: 2px;
}

.stream-icon {
    transition: 120ms ease;
}

.stream-icon:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.contact-fabs.contact-fabs--left {
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.draggable:hover .contact-fabs.contact-fabs--left {
    opacity: 1;
    pointer-events: auto;
}

.contact-fabs-svg.contact-fabs--left {
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
}

.service-hit-highlight {
    display: inline-block;
    border: 4px solid #e10600; /* rosso, spessore 4px */
    border-radius: 6px;
    padding: 2px 6px;
    margin: 2px 0;
}

#drawer-list li a {
    display: inline-block;
    line-height: 1.2;
    text-decoration: none;
    color: inherit;
}

#drawer-list li a:hover {
    text-decoration: underline;
}

.field-hit-highlight {
    box-shadow: inset 0 0 0 2px #e10600;
    border-radius: 6px;
    padding: 2px 4px;
}

.contact-fabs-svg.contact-fabs--right {
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
}

.draggable:hover .contact-fabs-svg.contact-fabs--right,
.draggable:hover .contact-fabs-svg.contact-fabs--left {
    opacity: 1;
    pointer-events: auto;
}

.contact-fabs-svg a { pointer-events: auto; }

g.card.card--fabs-visible .contact-fabs--right,
g.card.card--fabs-visible .contact-fabs--left,
g.card.card--fabs-visible .contact-fabs-svg.contact-fabs--right,
g.card.card--fabs-visible .contact-fabs-svg.contact-fabs--left {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.draggable:hover .contact-fabs.contact-fabs--right,
.draggable:hover .contact-fabs.contact-fabs--left {
    opacity: 1;
    pointer-events: auto;
}


.profile-photo,
.magnifier-icon,
.magnifier-bg {
    transition: opacity 140ms ease;
}

.photo-wrapper .magnifier-icon {
    pointer-events: none;
}

.magnifier-bg {
    fill: #000;
}

.photo-wrapper {
    pointer-events: all;
}
.photo-wrapper image {
    pointer-events: none;
}

.multi-team-photo-badge text {
    font-family: Segoe UI, system-ui, -apple-system, Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;
}
.multi-team-photo-badge {
    pointer-events: none;
}

#legend-root.legend.legend--generic{
    position: fixed;
    left: max(16px, env(safe-area-inset-left));
    right: auto;
    bottom: 16px;
    z-index: 1000;
    max-width: 320px;
    background: rgba(255,255,255,0.92);
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 8px 10px;
    box-shadow: 0 6px 16px rgba(0,0,0,.12);
    -webkit-backdrop-filter: saturate(180%) blur(6px);
    backdrop-filter: saturate(180%) blur(6px);
}

#legend-root .legend__title{
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: #333;
}

#legend-root .legend__list{
    overflow-y: auto;      /* scroll oltre 11 elementi */
    padding-right: 6px;    /* spazio per scrollbar */
}

#legend-root .legend__item{
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 24px;
    line-height: 24px;
    color: #222;
}

#legend-root .legend__swatch{
    width: 14px;
    height: 14px;
    border-radius: 3px;
    border: 1px solid rgba(0,0,0,.15);
    box-sizing: border-box;
}

#legend-root .legend__swatch--white{
    border-color: #777;    /* bordo visibile sul bianco */
}

#legend-root .legend__label{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

#legend-root .legend__count{
    margin-left: auto;
    color: #666;
    font-variant-numeric: tabular-nums;
}

.legend__item {
    cursor: pointer;
    user-select: none;
    color: #0366d6;
}

.legend__item .legend__label {
    text-decoration: none;
}

.legend__item:hover .legend__label,
.legend__item:focus-visible .legend__label {
    text-decoration: underline;
}

.legend__item:hover {
    background: rgba(0, 0, 0, 0.04);
    border-radius: 4px;
}

#drawer,
#drawer-overlay {
    z-index: 9999 !important;
}

#legend-root,
.legend {
    z-index: 3000;
}

#legend-root .legend__title.is-dragging {
    cursor: grabbing;
}

#legend-root {
    cursor: default !important;
}

#legend-root .legend__title.is-dragging {
    cursor: grabbing;
}

#legend-root,
.legend,
#legend-root.legend.legend--generic {
    position: fixed !important;
    pointer-events: auto !important;
}

#legend-root .legend__title {
    pointer-events: auto !important;
}
#legend-root .legend__title.is-dragging {
    cursor: move !important;
}

#legend-root .legend__title {
    cursor: move !important;
}

#legend-root .legend__item {
    pointer-events: auto !important;
}

body.drawer-open #legend-root {
    z-index: 10000 !important;
}

body.side-drawer-open #legend-root {
    z-index: 2000 !important;
}

#legend-root {
    z-index: 9990 !important;
}

@media (max-width: 768px) {
    #legend-root {
        z-index: 500 !important;
    }
}


@media (max-width: 768px) {
    body.drawer-open #legend-root {
        z-index: 500 !important;
        pointer-events: none !important;
    }
}


.drawer-accordion{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.drawer-section{
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    overflow: hidden;
}

.drawer-section__summary{
    list-style:none;
    cursor:pointer;
    padding: 12px 14px;
    font-weight: 650;
    user-select:none;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.drawer-section__summary::-webkit-details-marker{
    display:none;
}

.drawer-section__summary::after{
    content:"▸";
    opacity:.9;
    transform: rotate(0deg);
    transition: transform .18s ease;
}

.drawer-section[open] > .drawer-section__summary::after{
    transform: rotate(90deg);
}

.drawer-section__body{
    padding: 0 14px 12px 14px;
}

.drawer-section__body ul{
    margin: 8px 0 0 18px;
    padding: 0;
}

.drawer-section__body li{
    margin: 6px 0;
}
