
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    font-size: 14px;
    font-family: 'Roboto', sans-serif;

    --bg: #EBEBEB;
    --black: #333333;
    --prog: #A4B7BE;
}

/*
body {
    background: var(--bg);
    color: var(--black);
}
*/
.pod_a {
    text-decoration: none;
}

.pod_player {
    width: 80%;
    max-width: 275px;
    min-height: 550px;
    margin: 2rem auto;
    padding: 3rem 1.25rem;
    background: var(--bg);
    box-shadow: 20px 20px 60px #c8c8c8, 
                -20px -20px 60px #ffffff;
    border-radius: 15px;
    border: 1px solid rgb(223, 223, 223);
    position: relative;
}
.pod_player::before {
    content: '';
    display: block;
    background: #333;
    width: 100px;
    height: 20px;
    border-radius: 0 0 50% 50%; 
    position: absolute;
    top: 0;
    left: 87px;
}

.pod_header {
    height: 40px;
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    align-items: center;
    justify-items: center;
}

    .pod_header > .pod_button {
        width: 2rem;
        height: 2rem;
        display: grid;
        align-items: center;
        justify-items: center;
        color: var(--black);
        background: linear-gradient(145deg, #fbfbfb, #d4d4d4);
        box-shadow: 4px 4px 7px #cccccc, -4px -4px 7px #ffffff;
        border-radius: 6px;
    }

.pod_art {
    display: block;
    width: 175px;
    height: 175px;
    margin: 1rem auto;
    border-radius: 50%;
    border: 4px solid #EBEBED;
    box-shadow:  16px 16px 57px #acacac, 
                -16px -16px 57px #ffffff;
}

.pod_info {
    margin: 1.5rem 0;
    text-align: center;
}
.pod_info h1 {
    color: var(--black);
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.pod_info p {
    font-size: 1.15rem;
    color: var(--prog);
}

.pod_prog {
    padding: 10px 0;
}
.pod_prog-time {
    padding: 3px 5px;
    color: var(--prog);
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}
.pod_prog-time > p {
    font-size: 1.05rem;
}

.pod_prog-bar {
    width: 100%;
    height: 10px;
    padding: 1px;
    border-radius: 25px;

    background: linear-gradient(145deg, #fbfbfb, #d4d4d4);
    box-shadow:  5px 5px 10px #a5a5a5, 
                -5px -5px 10px #ffffff;

}

.pod_prog-bar-inner {
    height: 8px;
    background: var(--prog);
    border-radius: 25px;
}

.pod_buttons {
    margin: 2rem 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pod_button {
    color: var(--prog);
    border-radius: 50%;
    margin: 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 5px 5px 10px #d4d4d4, 
                -5px -5px 10px #ffffff;
}

.pod_button-sm {
    width: 2rem;
    height: 2rem;
    opacity: 0.75;
}

.pod_button-md {
    width: 2.5rem;
    height: 2.5rem;
    opacity: 0.85;
}
.pod_button-lg {
    width: 3.25rem;
    height: 3.25rem;
    box-shadow: inset 6px 6px 12px #c8c8c8, 
            inset -6px -6px 12px #ffffff
}


.pod_bar {
    width: 50%;
    height: 2px;
    margin: auto;
    background: var(--prog);
    border-radius: 25px;
    position: absolute;
    left: 25%;
    bottom: 1rem;
}

.pod_credit {
    background: linear-gradient(45deg, #3297D3, #8FEFFB);
    color: var(--black);
    padding: 1rem 0;
    text-align: center;
}


.pod_art {
    animation: rolling-disk 7.5s 0.25s linear infinite;
}
 .pod_prog-bar-inner {
    /*animation: timer 30s linear 0.1s;*/
    width: 0;
} 

/*      keyframes   */
@keyframes timer {
    0%      {width: 0%;}
    100%    {width: 100%;}
}

@keyframes rolling-disk {
    0%      {transform: rotate(0);}
    100%    {transform: rotate(1turn);}
}

/*body {
    color: #000;
    line-height: 150%;
}*/

/** {
    box-sizing: border-box;
    border: 0;
    padding: 0;
}

a, span {
    color: #005CDF;
}*/

    span a {
        text-decoration: none;
    }

h1 {
    font-size: 30px;
    margin-bottom: 30px;
}

#visualizer {
    height: 10px;
    background: #333;
}

#progress_box {
    margin-top: 50px;
    position: relative;
    width: 98%;
    margin-left: auto;
    margin-right: auto;
}

input {
    padding-bottom: 30px;
}

#track_time {
    display: inline-block;
    /*position: absolute;*/
    font-size: 25px;
    font-family: Arial;
    color: #3ab3a8;
    font-weight: bolder;
    top: 80px;
    right: 0;
}

    #track_time .total {
        color: #555;
        font-size: 15px;
    }

    #track_time .seek {
        color: #000;
        font-weight: bolder;
    }

#progress_bar_box {
    position: relative;
    background: #ccc;
    cursor: pointer;
}

#progress_bar {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: 40px;
    position: relative;
    z-index: 2;
}

#progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 40px;
    background: #3ab3a8;
    transition: width 0.3s linear;
    z-index: 1;
}

#play {
    position: absolute;
    top: -8px;
    right: 50%;
    width: 30px;
    height: 30px;
    margin-right: -15px;
    background: #fff;
    padding: 0px;
    cursor: pointer;
}

    #play.pause:before,
    #play.pause:after {
        position: absolute;
        content: "";
        top: 0;
        left: 5px;
        width: 8px;
        height: 30px;
        background: #3ab3a8;
    }

    #play.pause:after {
        left: 17px;
    }

    #play.play:after {
        position: absolute;
        content: "";
        left: 11px;
        border-width: 15px;
        border-style: solid;
        border-color: transparent transparent transparent #777;
    }