#aeu-player-link {
    margin-top: 0px;
    display: flex;
    justify-content: center;
    width: 100%;

    .sidebar_button {
        display: flex;
        width: 270px;
        height: 185px;
        cursor: pointer;
        background: url('images/sidebar.png') no-repeat;
        background-position: auto;
    }
}

#aeu-player {
    display: none;
    width: fit-content;
    height: 100%;
    align-self: center;
    background-color: #ffffff00;
    background-image: none;
    border-radius: 5px;
    margin-left: auto;
    margin-right: auto;

    div, li {
        user-select: none;
    }

    #player {
        position: relative;
        display: flex;
        background: url('images/bg.png');
        width: 506px;
        height: 159px;

        >div.track {
            font-family: 'Amstrad CPC';
            display: flex;
            font-size: 11px;
            flex-direction: column;
            position: relative;
            left:154px;
            top: 16px;
            width: 331px;
            height: 40px;

            >.album {
                top:18px;
                height: 20px;
                overflow: hidden;
            }
            >.title {
                height: 20px;
                overflow: hidden;
            }
        }

        >div.image {
            position: absolute;
            top: 14px;
            left: 19px;
            width: 113px;
            height: 113px;
            border: 0px;
            border-radius: 12px;
            background-size: 113px 113px;
            div {
                width: 113px;
                height: 113px;
                border-radius: 12px;
                background-image: url('images/thumb.png');
                background-size: 113px 113px;
            }
        }

        >.ratebox {
            position: absolute;
            top: 128px;
            left: 28px;
            width:98px;
            height: 29px;
            .currate {
                position: absolute;
                user-select: none;
                max-width: 88px;
                height: 19px;
                margin:5px;
                background: url('images/currate.png');
                background-position: 0px 0px;
                background-repeat: no-repeat;
            }

            .myrate {
                position: absolute;
                user-select: none;
                max-width: 88px;
                height: 19px;
                margin:5px;
                background: url('images/myrate.png');
                background-position: 0px 0px;
                background-repeat: no-repeat;
            }
        }

        >div.buttons {
            position: absolute;
            display: flex;
            flex-direction: row;
            align-items: center;
            top: 108px;
            left: 185px;
            width: 143px;
            height: 33px;
            margin:0px;
            padding: 0px;

            .button {
                border: none;
                background-color: #ffffff00;
                background-position: 0px 0px;
                margin:0px;
                padding: 0px;
            }

            .small {
                width: 33px;
                height: 33px;
            }

            .small:active {
                background-position: 66px 0px;
            }

            .big {
                width: 44px;
                height: 44px;
            }

            .big:active {
                background-position: 88px 0px;
            }

            .previous {
                background-image: url('images/previous_button.png');
            }

            .stop {
                background-image: url('images/stop_button.png');
            }

            .play {
                background-image: url('images/play_button.png');
            }

            .pause {
                background-image: url('images/pause_button.png');
            }

            .next {
                background-image: url('images/next_button.png');
            }
        }
        .trackbar {
            position: absolute;
            top: 70px;
            left: 185px;
            width: 264px;
            height: 20px;

            .progress {
                position: absolute;
                top: 9px;
                left: 3px;
                width: 0px;
                height: 7px;
                background-image: url('images/progress_bar.png');
            }
            .knob {
                position: relative;
                top: 3px;
                width: 20px;
                height: 20px;
                background-image: url('images/indicator.png');
                user-select: none;
            }
        }

        .volumebar {
            position: absolute;
            top: 109px;
            left: 340px;
            width: 108px;
            height: 20px;

            .progress {
                position: absolute;
                top: 9px;
                left: 3px;
                width: 0px;
                height: 7px;
                background-image: url('images/volume_bar.png');
            }
            .knob {
                position: relative;
                top: 3px;
                width: 20px;
                height: 20px;
                background-image: url('images/indicator.png');
                user-select: none;
            }
        }

    }

    #playlist, #selector {
        width: 506px;
        margin-bottom: 30px;

        .header, .footer {
            width: 506px;
            height: 11px;
            background-image: url('images/playlist_tb.png');
            background-repeat: no-repeat;
        }
        .footer {
            background-position: 0px -11px;
        }

        .body {
            width: 100%;
            height: 100%;
            background-image: url('images/playlist_bg.png');
            background-size: 100% 100%;
            padding-left:20px;
            padding-right:20px;
            align-self: center;
        }
    }


    #playlist {
        border: 1px solid salmon;
    }

    .select-list {
        position: relative;
        width: 506px;
        margin-top: 10px;
    }

    .select-list>select {
        display: none;
    }

    .playlist-view {
        position: relative;
        border: 1px solid #111111;
        width: 500px;
        height: 580px;
        margin-top: 10px;
        margin-left: 3px;
        margin-right: 3px;
        background-color: #333333;

        ul {
            display: none;
            list-style: none;
            padding: 0px;
            width: 500px;
            height: 580px;
            overflow-y: scroll;
            scrollbar-color: #333333 #222222;
            scrollbar-width: thin;
        }

        li {
            padding: 10px;
        }

        li:hover {
            background-color: #555555;
        }

    }
}
