:root {
    --page-help-trigger-primary: #3F585C;
}

body.page-help-route #header {
    display: none !important;
}

.page-help-host {
    position: relative !important;
}

.page-help-trigger {
    align-items: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    box-shadow: 0 2px 7px rgba(15, 23, 42, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    color: #ffffff !important;
    display: inline-flex;
    height: 34px;
    justify-content: center;
    line-height: 1;
    position: absolute !important;
    right: 16px;
    text-decoration: none;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
    width: 34px;
    z-index: 4;
}

.page-help-host--light .page-help-trigger {
    background: rgba(255, 255, 255, 0.92);
    border-color: color-mix(in srgb, var(--page-help-trigger-primary) 28%, #ffffff);
    box-shadow: 0 2px 7px rgba(15, 23, 42, 0.14), inset 0 1px 0 #ffffff;
    color: var(--page-help-trigger-primary) !important;
}

.page-help-trigger:hover,
.page-help-trigger:focus-visible {
    background: rgba(255, 255, 255, 0.26);
    border-color: #ffffff;
    box-shadow: 0 4px 11px rgba(15, 23, 42, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    color: #ffffff !important;
    outline: none;
    transform: translateY(-50%) scale(1.06);
}

.page-help-host--light .page-help-trigger:hover,
.page-help-host--light .page-help-trigger:focus-visible {
    background: #ffffff;
    border-color: var(--page-help-trigger-primary);
    box-shadow: 0 4px 11px rgba(15, 23, 42, 0.18), inset 0 1px 0 #ffffff;
    color: var(--page-help-trigger-primary) !important;
}

.page-help-trigger i {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
}

.page-help-tooltip {
    background: #172033;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 5px;
    box-shadow: 0 5px 14px rgba(15, 23, 42, 0.22);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 700;
    left: 0;
    line-height: 1.2;
    opacity: 0;
    padding: 6px 9px;
    pointer-events: none;
    position: fixed;
    top: 0;
    transform: translate(-50%, -2px);
    transition: opacity 120ms ease, transform 120ms ease;
    white-space: nowrap;
    z-index: 10000;
}

.page-help-tooltip.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

@media (max-width: 600px) {
    .page-help-trigger {
        height: 32px;
        right: 12px;
        width: 32px;
    }
}
