OptionsSidePanel
{
    height: 95%;
    width: 500px;

    align-items: center;

    flex-direction: column;
    
    pointer-events: all;

    transition: all 0.5s ease-in-out;

    padding: 12px;

    background-color: #333333;
    border-color: rgb(59, 59, 59);

    border-width: 4px;
    border-radius: 4px;

    overflow-y: scroll;
    overflow-x: hidden;

    gap: 24px;

    &:intro
    {
        transform: translateX(100%);
    }

    &:outro
    {
        transform: translateX(100%);
    }

    .header
    {
        width: 100%;
        height: 50px;
        align-items: center;
        justify-content: center;

        font-size: 32px;

        border-bottom: 5px solid #ffffff;
    }

    .close
    {
        width: 100%;
        height: 25;

        align-items: center;

        > .icon
        {
            font-family: Material Icons;

            width: 32px;
            height: 10px;

            font-size: 32px;

            cursor: pointer;
        }
    }
}