.levels {
    position: absolute;
    left: 50px;
    top: 50px;
    color: white;
    font-size: 30px;
    width: 1200px;
    // flex-wrap: wrap;

    font-family: Lilian;
    text-shadow: 1px 1px 0 black;
    font-smooth: never;
    gap: 5px;
    flex-direction: column;

    .level-list {
        max-height: 660px;
        flex-direction: column;
        overflow: scroll;
        gap: 10px;
    }

    .level-button {
        // border: none;
        // background-color: transparent;
        // width: 1200px;
        width: auto;
        height: 120px;
        flex-shrink: 0;
        // align-items: center;
        // justify-content: center;
        // flex-direction: column;
        gap: 20px;
        position: relative;

        .preview {
            // width: 70%;
            // height: 60%;
            width: 100px;
            height: 100px;
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center;
            background-color: rgba(0, 0, 0, 0.3);
        }

        .text-content {
            flex-direction: column;
        }

        h2 {
            // font-size: 40px;
        }

        small {
            font-size: 18px;
            font-weight: normal;
            color: lightblue;
        }

        &.disabled {
            // filter: grayscale(100%);
            cursor: not-allowed;

            .preview {
                opacity: 0.5;
            }
            /*span, small {
                color: rgba(255, 255, 255, 0.8);
            }*/
        }

        .locked-icon {
            position: absolute;
            top: 10px;
            left: 10px;
            color: white;
            font-size: 60px;
        }
        /* &:not(.disabled) {

            &:hover {
                background-color: rgba(203, 211, 225, 0.32);
                sound-in: "sounds/menu/button-hover.sound";
                cursor: pointer;
            }

            &:active {
                // background-color: rgba(129, 154, 217, 0.32);
                sound-in: "sounds/menu/button-click.sound";
            }

        }*/
        /*&.selected {
            background-color: rgba(46, 66, 117, 0.32);
        }*/
    }
}
