section.customizer > div.shapeLayer
{
    position: absolute;
    z-index: 8;
    background-color: var(--customizerColorPrimary);
    border-radius: 7px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.15));
    display: none;
}

section.customizer > div.shapeLayer > div.title
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--customizerColorPrimary);
    border-radius: 7px;
    padding: 0.75rem;
    gap: 0.75rem;
    cursor: move;
}

section.customizer > div.shapeLayer > div.title > div.buttons
{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

section.customizer > div.shapeLayer > div.title > div.buttons > img
{
    height: 14px;
    cursor: pointer;
}

section.customizer > div.shapeLayer > div.title > div.buttons > img.rollup
{
    height: 5px;
    margin-right: 0.2rem;
}


section.customizer > div.shapeLayer > div.content
{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
    padding-top: 0;
    line-height: 1.5;
}





section.customizer > div.shapeLayer > div.content > div
{
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}


section.customizer > div.shapeLayer > div.content > div > div.toggle
{
    opacity: 0.5;
}



section.customizer > div.shapeLayer > div.content > div > div > div.button > img
{
    height: 12px;
}

section.customizer > div.shapeLayer > div.content > div > div > div.button
{
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

section.customizer > div.shapeLayer > div.content > div > div > div.button::after,
section.customizer > div.shapeLayer > div.content > div > div.selectImage > label::after
{
    content: attr(title);
    font-size: 0.65rem;
    max-width: 50px;
    line-height: 1.2;
    padding-top: 0.5rem;
    text-align: center;
}

section.customizer > div.shapeLayer > div.content > div > div.rotate,
section.customizer > div.shapeLayer > div.content > div > div.radius
{
    position: relative;
}

section.customizer > div.shapeLayer > div.content > div > div.rotate > div.list,
section.customizer > div.shapeLayer > div.content > div > div.radius > div.list
{
    position: absolute;
    display: none;
    padding: 0.5rem;
    background-color: var(--customizerColorPrimary);
    border-radius: 7px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.15));
    max-height: 60vh;
    overflow-y: auto;
    z-index: 2;
}

section.customizer > div.shapeLayer > div.content > div > div.rotate > div.list > div,
section.customizer > div.shapeLayer > div.content > div > div.radius > div.list > div
{
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

section.customizer > div.shapeLayer > div.content > div > div.rotate > div.list > div > input,
section.customizer > div.shapeLayer > div.content > div > div.radius > div.list > div > input
{
    width: 55px;
    padding: 0.25rem;
    padding-left: 0.5rem;
    font-size: 0.65rem;
}

section.customizer > div.shapeLayer > div.content > div > div.rotate > div.list > div > input[type="number"]::-webkit-inner-spin-button,
section.customizer > div.shapeLayer > div.content > div > div.radius > div.list > div > input[type="number"]::-webkit-inner-spin-button
{
    -webkit-appearance: none;
}




section.customizer > div.shapeLayer > div.content > canvas.preview
{
    border: 1px dashed var(--customizerColorText);
    align-self: center;
    cursor: move;
    width: 150px;
    height: 150px;
    background-color: var(--customizerColorPrimary);
}

@media screen and (max-width: 500px)
{
    section.customizer > div.shapeLayer > div.content
    {
        max-width: 90vw;
    }
}
