:root {
    /* --blue-bubble: #bbe6f3; */
    --blue-bubble: #eeeeee;
    /* --small-b-bubble: #bae5f2; */
    --small-b-bubble: #dddddd;
    /* --pink-bubble: #ebc7e5; */
    --pink-bubble: #cccccc;
    /* --font-color: #063064; */
    --font-color: #333333;
}

* {
    box-sizing: border-box;

    &:focus {
        outline: none;
    }
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    background-color: #f4f4f4;
}

.player-container {
    background-color: #f3fcfd;
    width: 100%;
    height: 550px;
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    -webkit-box-shadow: 1px 2px 29px 2px rgba(220, 220, 220, 1);
    -moz-box-shadow: 1px 2px 29px 2px rgba(220, 220, 220, 1);
    box-shadow: 1px 2px 29px 2px rgba(220, 220, 220, 1);
}

.bubble {
    position: absolute;
    border-radius: 50%;
}

.pink-bubble {
    width: 460px;
    height: 460px;
    right: -160px;
    top: -110px;
    background-color: var(--pink-bubble);
}

.blue-bubble {
    width: 520px;
    height: 520px;
    left: -30px;
    top: 345px;
    background-color: var(--blue-bubble);
}

.small-b-bubble {
    width: 50px;
    height: 50px;
    right: 40px;
    bottom: 85px;
    background-color: var(--small-b-bubble);
}

.small-p-bubble {
    width: 105px;
    height: 105px;
    left: -45px;
    top: 140px;
    background-color: var(--pink-bubble);
}

.app-ui {
    background-color: #fff;
    width: 100%;
    height: 500px;
    position: absolute;
    border-radius: 17px;
    box-shadow: 2px 14px 40px -20px rgba(0, 0, 0, 0.2);
}

.player-wrapper {
    padding: 0px;
}

.right-ui {
    /* top: 60px; */
    box-shadow: -6px 14px 40px -20px rgba(0, 0, 0, 0.2);
    background-color: #111111;
    /* margin-left: 1.2em; 
    margin-top: 1.2em;  */
}

.inside-right {
    left: 0;
    top: 70px;
    /* height: 430px; */
}

.play-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    font-family: "Fjalla One", sans-serif;
    color: var(--font-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 235px;
    padding: 27px 27px 21px 27px;
    font-size: 22px;
}

.menu-line {
    border: 1px solid var(--font-color);
    width: 25px;
    border-radius: 50px;

    &:before {
        content: "";
        position: absolute;
        top: 45px;
        left: 197px;
        border: 0.05em solid;
        width: 8px;
        border-radius: 50px;
    }

    &:after {
        content: "";
        position: absolute;
        top: 45px;
        left: 190px;
        border: 0.05em solid;
        width: 3px;
        border-radius: 50px;
    }
}

.left-menu-bar {
    position: relative;
    font-family: "Roboto", sans-serif;
    color: var(--font-color);
    left: -5px;
}

.ur-playlist {
    font-size: 11px;
    font-weight: 500;
    transform: rotate(270deg);
    position: absolute;
    left: 2px;
    top: 40px;
    cursor: pointer;
}

.playlist-icon {
    width: 11px;
    position: absolute;
    left: 28px;
    top: -6px;
    cursor: pointer;
}

.like-recent {
    position: absolute;
    top: 110px;
}

.recent {
    left: 18px;
    top: 90px;
}

.recent-detail {
    width: 4px;
    height: 4px;
    background-color: var(--font-color);
    position: absolute;
    top: 95px;
    left: 15px;
    border-radius: 50%;
}

.like {
    left: 25px;
    top: 140px;
    color: #aeb8cc;

    &:hover {
        color: var(--font-color);
    }
}

.album-img {
    position: relative;
    background-image: url("https://images.unsplash.com/photo-1535392432937-a27c36ec07b5?ixlib=rb-1.2.1&auto=format&fit=crop&w=934&q=80");
    width: 130px;
    height: 165px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    margin-left: 58px;
    box-shadow: -10px 10px 30px -20px rgba(0, 0, 0, 0.5);
    cursor: pointer;

    &:hover {
        transform: scale(1.02);
    }
}

.relax {
    position: absolute;
    bottom: 15px;
    left: 20px;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 500;
}

.btn {
    background-color: #ffffff;
    position: absolute;
    width: 27px;
    height: 27px;
    right: 10px;
    bottom: 10px;
    border-radius: 9px;
    transition: all 100ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0px 1px 2px rgba(255, 255, 255, 1),
        0px 2px 1px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    border: none;

    &:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border-radius: 15px;
        z-index: 2;
    }

    &:active {
        box-shadow: 0 5px 50px rgba(0, 0, 0, 0.02);

        &:after {
            box-shadow: inset 0px 2px 3px rgb(255, 255, 255),
                inset 0px 2px 0px rgba(0, 0, 0, 0.1);
        }
    }

    &.active {
        &.play-pause {
            .icon {
                &.pause {
                    opacity: 1;
                    transform: translate(-50%, -50%);
                }

                &.play {
                    opacity: 0;
                }
            }
        }
    }
}

.play {
    width: 13px;
    position: absolute;
    top: 7px;
    left: 8px;

    svg {
        stroke-width: 5;
    }
}

.pause {
    width: 12px;
    opacity: 0;
    position: absolute;
    left: 14px;
    top: 15px;
}

.flowers-img {
    background-image: url("https://images.unsplash.com/photo-1490823670292-6699d9edbb7d?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=933&q=80");
    background-repeat: no-repeat;
    background-size: cover;
    height: 135px;
    width: 120px;
    position: absolute;
    right: -88px;
    top: 90px;
    border-radius: 20px;
    transform: rotate(180deg);
    box-shadow: -10px 10px 30px -20px rgba(0, 0, 0, 0.5);

    &:hover {
        cursor: pointer;
        -webkit-transform: rotate(180deg) scale(1.03);
    }
}

.music-list {
    cursor: pointer;
    margin-left: 50px;
    margin-top: 20px;
}

.song {
    display: flex;
    margin-bottom: 10px;
    align-items: center;

    &:hover {
        transform: scale(1.02);
        box-shadow: -8px 10px 3px -11px rgba(0, 0, 0, 0.4);
    }
}

.song-img>img {
    background-repeat: no-repeat;
    background-size: cover;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    margin-right: 10px;
}

.song-name {
    font-family: "Roboto", sans-serif;
    color: var(--font-color);
    font-weight: 500;
    font-size: 10px;
}

.song-detail {
    display: flex;
    flex-direction: column;
}

.artist {
    font-family: "Roboto", sans-serif;
    color: #d0d2e5;
    font-weight: 400;
    font-size: 9px;
    margin-top: 4px;
}

.nav svg {
    width: 17px;
}

.nav {
    position: absolute;
    bottom: 0;
    color: #c5c5c5;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-radius: 20px 20px 0 0;
    height: 52px;
}

.nav-first {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 52px;
}

.player-bg {
    position: absolute;
    top: 394px;
    left: 0;
    background-color: #efefef;
    height: 80px;
    width: 100%;
    border-radius: 25px 25px 0 0;
}

.player-info {
    position: absolute;
    top: 394px;
    left: 0;
}

.player-cover img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    margin: 10px 0 10px 25px;
    border: 2px solid #fff;
    box-shadow: 0px 15px 30px -6px rgba(0, 0, 0, 0.5);
}

.pointer {
    position: absolute;
    top: 27px;
    width: 9px;
    height: 9px;
    margin: -6px 0 0 37px;
    background-color: #a5a5a5;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1.7px #fff;
}

.player-info .song-detail {
    margin: -42px 0 0 65px;
}

.play-artist {
    color: #6590ad;
    margin-top: 5px;
    font-size: 8px;
}

.player-info svg {
    width: 12px;
    position: absolute;
    right: -50px;
    top: 22px;
}

.player-bg .btn {
    bottom: 40px;
    width: 24px;
    height: 23px;
    right: 25px;
}

.small-play {
    width: 10px;
    top: 5px;
    left: 8px;
}

.small-pause {
    width: 10px;
    left: 12px;
    top: 13px;
}

@media only screen and (max-width: 768px) {
    .player-container {
        /* transform: scale(0.8);  */
        /* right: 60px; */
        /* margin-top: -40px; */
    }
}

@media only screen and (max-width: 480px) {
    .player-container {
        /* transform: scale(0.6);  */
        /* right: 200px; */
    }
}

.play-action {
    display: flex;
    margin-top: 40px;
    justify-content: space-between;
    align-items: center;
}

.dot {
    border-radius: 50%;
    width: 3px;
    height: 3px;
    background-color: white;
    margin-right: 5px;
}

.what-play {
    font-family: "Roboto", sans-serif;
    color: white;
    font-weight: 500;
    font-size: 14px;
}

.double-dot {
    display: flex;
    margin-right: 15px;
}

.line {
    width: 20px;
    height: 2px;
    margin-left: 20px;
    border-radius: 10px;
    background-color: white;
}

.other-line {
    position: absolute;
    width: 10px;
    height: 2px;
    top: 44px;
    left: 19px;
    border-radius: 5px;
    background-color: #000000;
    transform: rotate(-30deg);
}

.half-arrow {
    margin-top: 2px;
}

.play-container img {
    width: 160px !important;
    height: 160px !important;
    border-radius: 50% !important;
    border: 3px solid #fff;
    position: relative;
    /* left: 37px; */
    top: 30px;
    object-fit: cover;
    object-position: top right;
    animation: rotateImg 3s linear 0s infinite forwards;
    animation-play-state: paused;
}

.bigPlay img.active {
    animation-play-state: running;
}

/* @keyframes rotateImg {
    0% {
        transform: rotateZ(0);
    }

    100% {
        transform: rotateZ(360deg);
    }
} */

.bigPlay {
    /* position: absolute; */
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;

    /* & .btn {
        top: -80px;
        left: 0px;
        width: 44px;
        height: 44px;
        border-radius: 18px;
        background-color: white !important;
        display: flex;
        position: relative;
    } */
}

.icon.play.bigger-play {
    width: 22px;
    top: 11px;
    left: 13px;
}

.icon.pause.bigger-pause {
    width: 20px;
    left: 22px;
    top: 23px;
}

.right-detail {
    margin-top: 30px;
    text-align: center;
}

.right-song {
    font-size: 20px;
    font-family: "Fjalla One", sans-serif;
}

.right-artist {
    font-size: 12px;
    color: #aeb8cc;
}


.lines {
    border-left: 2px solid var(--font-color);
    margin-left: -55px;
    height: 5px;
    transition: all .1s ease;

    &.grey {
        border-left: 2px solid #e8e9f4;
    }
}

.line-wrapper {
    /* margin-top: -50px;
    margin-left: 36px;  */
}

.heart {
    width: 18px;
    cursor: pointer;

    :hover {
        fill: #E52121;
    }

    &:hover {
        transform: scale(1.2);
    }
}

.addTo {
    width: 16px;
    cursor: pointer;
}

.menu {
    width: 16px;
    cursor: pointer;
}

.grey-detail {
    background-color: #eff3f8;
    width: 205px;
    height: 90px;
    border-radius: 50%;
    margin-top: -100px;
    /* margin-left: 13px; */
}

.grey-detail-sec {
    background-color: #dae3f0;
    width: 176px;
    height: 130px;
    border-radius: 50%;
    margin-top: -110px;
    /* margin-left: 29px; */
}










.bg {
    background-image: url("https://images.pexels.com/photos/2264753/pexels-photo-2264753.jpeg?auto=compress&cs=tinysrgb&dpr=3&h=250&w=250");
    position: relative;
    filter: blur(4px);
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.audio-container {
    /* background: rgba(0, 0, 0, 0.7); */
    /* padding: 50px; */
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
}

.track-img {
    border-radius: 50%;
    height: 200px;
    width: 200px;
    display: none;
}

.track-name,
.track-artist {
    margin: 10px;
    display: none;
}

.btn-controls {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-top: -10px 0;
    cursor: pointer;
    position: relative;
}


.seek-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    cursor: pointer;
}

.btn {
    cursor: pointer;
}

.change-track {
    display: none;
}

input[type="range"] {
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
    margin-right: 10px;
}

.playbackRate {
    padding: 0.5em;
}

.playbackLabel {
    font-size: 12px;
    color: #aeb8cc;
    font-weight: 400;
}

.currentSongNum {
    display: none;
}

.playpause-track {
    width: 100%;
    padding: 5px;
}