            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
            /* Wrapper or the main box */
            
            .music-wrapper {
                font-family: "Roboto", sans-serif;
                --bg: #ebebeb;
                --black: #333333;
                --prog: #a4b7be;
                width: 100%;
                max-width: 300px;
                min-height: 550px;
                padding: 3rem 1.25rem 2.25rem 1.25rem;
                color: var(--black);
                background: var(--bg);
                box-shadow: 10px 10px 30px #4d4b4b, -1px -2px 30px #4d4b4b;
                border-radius: 15px;
                border: 1px solid rgb(223, 223, 223);
                position: relative;
                z-index: 1;
                overflow: hidden;
            }
            /* 
    The notch
*/
            
            .music-wrapper::before {
                content: "";
                display: block;
                background: var(--black);
                width: 100px;
                height: 20px;
                border-radius: 0 0 50% 50%;
                position: absolute;
                top: 0;
                left: 50%;
                transform: translateX(-50%);
            }
            
            .music-wrapper button {
                cursor: pointer;
                display: grid;
                place-items: center;
            }
            /* 
    Top bar, menu bar and search icons 
*/
            
            .top-bar {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            
            .top-bar button {
                width: 2rem;
                height: 2rem;
                border: 0;
                color: var(--black);
                background: linear-gradient(145deg, #fbfbfb, #d4d4d4);
                box-shadow: 4px 4px 7px #cccccc, -4px -4px 7px #ffffff;
                border-radius: 6px;
            }
            /* 
    Album Art
*/
            
            .img-area {
                width: 175px;
                height: 175px;
                margin: 1rem auto;
                border-radius: 50%;
                border: 4px solid #ebebed;
                box-shadow: 16px 16px 57px #acacac, -16px -16px 57px #ffffff;
            }
            
            .img-area img {
                width: 100%;
                height: 100%;
                border-radius: inherit;
            }
            
            .paused .img-area {
                animation: rolling-disk 10s 0.25s linear infinite;
            }
            
            @keyframes rolling-disk {
                0% {
                    transform: rotate(0);
                }
                100% {
                    transform: rotate(1turn);
                }
            }
            /* 
    Song Details, title, artist 
*/
            
            .song-details {
                margin: 1.5rem 0;
                text-align: center;
            }
            
            .song-details h3 {
                color: var(--black);
                font-size: 1.5rem;
                font-weight: 400;
                margin-bottom: 0.5rem;
            }
            
            .song-details .artist {
                color: var(--prog);
            }
            /* 
    Progress Bar & Info 
*/
            
            .progress-area {
                padding: 10px 0;
            }
            
            .song-timer {
                padding: 3px 5px;
                color: var(--prog);
                font-weight: bold;
                display: flex;
                justify-content: space-between;
            }
            
            .song-timer span {
                font-size: 0.75rem;
                font-weight: normal;
            }
            
            .progress-bar {
                cursor: pointer;
                width: 99%;
                height: 10px;
                padding: 1px;
                border-radius: 25px;
                background: linear-gradient(145deg, #fbfbfb, #d4d4d4);
                box-shadow: 5px 5px 10px #a5a5a5, -5px -5px 10px #ffffff;
            }
            
            .progress-bar-inner {
                width: 0%;
                height: 8px;
                background: var(--prog);
                border-radius: 25px;
            }
            /* 
    Controls - prev, play/pause, next btn 
*/
            
            .controls {
                margin: 1rem;
                display: flex;
                justify-content: center;
                align-items: center;
            }
            
            .controls .button {
                color: var(--prog);
                border: 0;
                cursor: pointer;
                border-radius: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
                box-shadow: 5px 5px 10px #d4d4d4, -5px -5px 10px #ffffff;
                transition: all 0.3s ease-in-out;
            }
            
            .controls .button-sm {
                width: 2.5rem;
                height: 2.5rem;
            }
            
            .controls .button-lg {
                width: 3.5rem;
                height: 3.5rem;
                margin: 0 0.75rem;
                box-shadow: inset 6px 6px 12px #c8c8c8, inset -6px -6px 12px #ffffff;
            }
            
            .controls .button-lg i {
                font-size: 2.25rem;
            }
            /* 
    Swipe Bar 
*/
            
            .swipe-bar {
                width: 50%;
                height: 2px;
                margin: auto;
                background: var(--prog);
                border-radius: 25px;
                position: absolute;
                left: 25%;
                bottom: 1rem;
            }
            /* 
    Music List 
*/
            
            .music-list {
                position: absolute;
                background: var(--bg);
                width: 100%;
                height: 275px;
                left: 0;
                bottom: -100%;
                opacity: 0;
                pointer-events: none;
                z-index: 500;
                padding: 15px 30px;
                border-radius: 15px;
                box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
                transform: scale(0.8);
                transition: all 1s ease-out;
            }
            
            .music-list.show {
                bottom: 0;
                opacity: 1;
                pointer-events: auto;
                transform: scale(1);
                transition: all 0.75s ease-out;
            }
            
            .music-list .header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 1rem;
            }
            
            .music-list .header .row {
                display: flex;
                align-items: center;
            }
            
            .music-list .header .row span {
                font-weight: bold;
                margin-left: 0.5rem;
            }
            
            .music-list .header #close {
                width: 2rem;
                height: 2rem;
                border: 0;
                color: var(--black);
                background: linear-gradient(145deg, #fbfbfb, #d4d4d4);
                box-shadow: 4px 4px 7px #cccccc, -4px -4px 7px #ffffff;
                border-radius: 6px;
            }
            
            .music-list .musics {
                list-style: none;
                margin: 10px 0;
                max-height: 200px;
                overflow: auto;
            }
            
            .music-list .musics::-webkit-scrollbar {
                width: 0px;
            }
            
            .music-list .musics li {
                font-size: 0.9rem;
                display: flex;
                justify-content: space-between;
                align-items: center;
                cursor: pointer;
                padding-bottom: 10px;
                margin-bottom: 5px;
                border-bottom: 1px solid var(--prog);
            }
            
            .music-list .musics li:last-child {
                border-bottom: 0px;
            }
            
            .music-list .musics li .audio-duration {
                font-size: 0.8rem;
            }
            
            .music-list .musics li.playing {
                pointer-events: none;
                color: rgb(115, 56, 122);
            }
            /* 
    Author Credit
*/
            
            .author-credit {
                background: var(--bg);
                border: 1px solid #2a9d8f;
                width: 100%;
                height: 175px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                text-align: center;
                font-size: 14px;
                position: absolute;
                top: 100px;
                left: 0;
                z-index: 500;
                padding: 15px 1.25rem;
                border-radius: 15px;
                box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
                opacity: 0;
                transform: scale(0);
                transition: all 0.4s ease-out;
            }
            
            .author-credit.show {
                opacity: 1;
                pointer-events: auto;
                transform: scale(1);
                transition: all 0.4s ease-out;
            }
            
            .author-credit p {
                margin-top: 1rem;
            }
            
            .author-credit p:last-child {
                display: flex;
                align-items: center;
            }
            
            .author-credit .material-icons {
                font-size: 18px;
            }
            
            .author-credit span {
                margin: 0 0.25rem;
            }
            
            .author-credit a {
                text-decoration: none;
                color: #2a9d8f;
            }
            
            .author-credit a:hover {
                text-decoration: underline;
            }
            
            .close-author {
                position: absolute;
                top: 0.8rem;
                right: 0.8rem;
                width: 2rem;
                height: 2rem;
                border: 1px solid #2a9d8f;
                color: #ffffff;
                background: #2a9d8f;
                box-shadow: 4px 4px 7px #cccccc, -4px -4px 7px #ffffff;
                border-radius: 50%;
            }
            /* 
    Mobile 
*/
            
            @media only screen and (max-width: 37.5rem) {
                .music-wrapper {
                    width: 100%;
                    max-width: 14.375rem;
                    min-height: 25rem;
                    padding-top: 1rem;
                    padding-left: 1.25rem;
                    padding-right: 1.25rem;
                    padding-bottom: 1rem;
                }
                .music-wrapper::before {
                    height: 1rem;
                }
                .img-area {
                    margin: 0.25rem auto 1rem;
                }
                .song-details {
                    margin: 0 auto -0.5rem;
                }
                .song-details h3 {
                    font-size: 1.25rem;
                    font-weight: 100;
                    margin-top: 0.3125rem;
                    margin-bottom: 0.25rem;
                }
                .controls {
                    margin: 0.5rem 1rem 1rem;
                }
                .swipe-bar {
                    margin: auto;
                    position: absolute;
                    left: 25%;
                    bottom: 1rem;
                }
            }