    .player {
        width: 100%;
        display: flex;
        align-items: center;
    }
    #playtoggle {
        position: relative;
        width: 4em;
        height: 4em;
        border-radius: 100%;
        background: #000;
        cursor: pointer;
        margin-right: 10px;
    }
    .icon_pause {
        position: absolute;
        height: 45%;
        top: 27%;
        left: 30%;
        width: 15%;
        border-right: 8px solid #fff;
        border-left: 8px solid #fff;
        display: none;
    }
    #playtoggle.playing .icon_pause {
        display: block;
    }
    .icon_play {
        top: 11%;
        left: 35%;
        position: relative;
        width: 0;
        height: 0;
        padding-top: 40%;
        padding-bottom: 40%;
        padding-left: 40%;
        overflow: hidden;
    }
    #playtoggle.playing .icon_play {
        display: none;
    }
    .icon_play:after {
        content: "";
        display: block;
        width: 0;
        height: 0;
        margin-top: -500px;
        margin-left: -800px;
        border-top: 500px solid transparent;
        border-bottom: 500px solid transparent;
        border-left: 800px solid rgba(255, 255, 255, 1);
    }
    #progress {
        width: 0%;
        min-width: 5px;
        height: 100%;
        background-image: url(../pics/bg.png);
        cursor: pointer;
        box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.5);
    }
    #bar {
        flex-grow: 1;
        height: 20px;
        padding: 1px;
        background: #000;
    }
    #wrapper #timeleft {
        right: 40px;
    }
    #timeleft {
        display: none;
        line-height: 48px;
        position: absolute;
        top: 0;
        right: 0;
        width: 50px;
        text-align: center;
        font-size: 11px;
        font-weight: bold;
    }
