section.customizer > div.settings
{
    position: absolute;
    z-index: 4;
    top: 1rem;
    right: 1rem;
    background-color: var(--customizerColorPrimary);
    border-radius: 7px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.15));
    max-height: calc(100dvh - 100px);
    max-width: 220px;
    overflow: auto;
    visibility: hidden;
}

section.customizer > div.settings > div.title
{
    display: flex;
    justify-content: flex-end;
    border-radius: 7px;
    padding: 0.5rem;
    gap: 0.25rem;
    cursor: move;
}

section.customizer > div.settings > div.title > div.title
{
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

section.customizer > div.settings > div.title > div.title > img.icon
{
    width: 20px;
    rotate: 45deg;
    cursor: pointer;
}

section.customizer > div.settings > div.content
{
    display: none;
    flex-direction: column;
    padding: 0.75rem;
    padding-top: 0;
    width: 220px;
}

section.customizer > div.settings > div.content > div
{
    padding: 0.25rem;
}

section.customizer > div.settings > div.content > div:not(.language, .title, .about, .takeAScreenshot, .stats)
{
    border: 1px solid var(--customizerColorText);
    border-radius: 4px;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
}

section.customizer > div.settings > div.content > div.colors > div > div > p.title
{
    padding-bottom: 0.25rem;
}

section.customizer > div.settings > div.content > div.colors > div > div > div,
section.customizer > div.settings > div.content > div.language > div.langs
{
    display: flex;
    gap: 0.25rem;
}


section.customizer > div.settings > div.content > div:not(.language) > div:not(.title)
{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 0.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.15s cubic-bezier(0.45, 0, 0.55, 1);
}

section.customizer > div.settings > div.content > div > div.title
{
    display: flex;
    cursor: pointer;
}

section.customizer > div.settings > div.content > div > div.title > img
{
    transition: rotate 0.15s cubic-bezier(0.45, 0, 0.55, 1);
    width: 14px;
}



section.customizer > div.settings > div.content > div.exportFormat > div > div
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}







section.customizer > div.settings > div.content > div.about
{
    padding-top: 1rem;
}

section.customizer > div.settings > div.content > div.about > button
{
    font-size: 0.65rem;
    padding: 0.28rem 0.375rem;
    text-transform: uppercase;
}


@media screen and (max-width: 500px)
{

}