section.customizer > div.help
{
    position: absolute;
    z-index: 5;
    bottom: 1rem;
    left: 1rem;
    background-color: var(--customizerColorPrimary);
    border-radius: 7px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.15));
    max-height: 400px;
    overflow: auto;
    visibility: hidden;
}

section.customizer > div.help > div.title
{
    display: flex;
    justify-content: flex-end;
    background-color: var(--customizerColorPrimary);
    border-radius: 7px;
    padding: 0.5rem;
    gap: 0.25rem;
    cursor: move;
}

section.customizer > div.help > div.title > div.title > img.icon
{
    height: 20px;
    cursor: pointer;
}



section.customizer > div.help > div.content
{
    display: none;
    flex-direction: column;
    padding: 0.75rem;
    padding-top: 0;
    line-height: 1.5;
    min-width: 400px;
}



@media screen and (max-width: 500px)
{
    section.customizer > div.help > div.content
    {
        min-width: 90vw;
        max-width: 90vw;
    }
}