#aeu-player {
    background-color: #ffffff00;
    background-image: none;
    border-radius: 5px;
    margin-left: 5%;
    margin-right: 5%;

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

        >div.title {
            position: relative;
            top:22px;
            left:152px;
            width: 350px;
            height: 15px;
            border: 1px solid #0000ff;;
        }

        >div.track {
                display: flex;
                flex-direction: column;
                position: relative;
                left:152px;
                top: 20px;
                width: 331px;

            >.name {
                top:19px;
                height: 19px;
            }
            >.title {
                height: 19px;
            }
        }

        >div.image {
            position: absolute;
            top: 14px;
            left: 19px;
            width: 113px;
            height: 113px;
            border: 0px;
            border-radius: 12px;
            background: url('/wp-content/uploads/aeu-player/11749eb1-6d80-4797-842e-a447e9f0a1e9.png');
            background-size: 113px 113px;
        }
        >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');
            }

            .next {
                background-image: url('images/next_button.png');
            }

        }

    }
}
