@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --a: 0;
}

* {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: auto;
    font-style: normal;
    font-variation-settings: "width" 100;

}

body {
    background-color: #121212 !important;
    padding: 5px;
}

.left {
    width: 25vw;
    padding: 10px;
}

.logoArea {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.right {
    width: 75vw;
    margin: 15px 0 !important;
    max-height: 98vh;
    overflow-y: scroll;
    position: relative;

}

.home ul li {
    width: 14px;
    list-style: none;
    display: flex;
    gap: 15px !important;
    padding-top: 14px;
}

.library {
    min-height: 80vh;
    position: relative;
}

.heading {
    width: 100%;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    font-size: 11px;
    gap: 13px;
    position: absolute;
    bottom: 0;
}


.footer a {
    color: gray;
    text-decoration: none;
}

.header {
    display: flex;
    justify-content: space-between;
    background-color: #2d2c2c;
    align-items: center;
    height: 70px;
}

.header>* {
    padding: 20px;
}

.sign,
.log {
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
}

.log {
    color: black;
    background-color: white;
    border: 1px solid white;
    outline: none;

}

.log:hover {
    font-size: 17px;
    transition: 0.3s ease-out;
    background-color: rgb(165, 165, 165);
    border: 1px solid rgb(165, 165, 165);
    font-weight: bold;


}

.sign {
    color: grey;
    background-color: #2d2c2c;
    border: none;
    outline: none;

}

.sign:hover {
    color: white;
    font-size: 17px;
    transition: 0.3s ease-out;
}

.nav {
    padding: 15px;
}

.iamflex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
}

.spotifyPlaylists {
    padding: 16px;
    height: 80vh;
    overflow-y: scroll;
}

.cardContainer {
    margin: 30px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.card {
    width: 250px;
    padding: 10px;
    border-radius: 5px;
    background-color: #252525;
    position: relative;
    transition: 0.5s all ease-out;

}

.card>* {

    padding-top: 10px;
}


.card img {
    width: 100%;
    object-fit: contain;
}

.card:hover {
    cursor: pointer;
    background-color: #2c2c2c;
    --a: 1;
    transform: scale(1.01);
}

.img1 {
    position: relative;
}

.gpi {
    width: 50px;
    position: absolute;
    transition: 0.5s all ease-out;
    right: 8px;
    bottom: 8px;
    opacity: var(--a);
}


.play {
    position: absolute;
    top: 210px;
    right: 15px;
}


.playbar {
    position: fixed;
    bottom: 20px;
    background-color: #2d2c2c;
    width: 70vw;
    min-height: 50px;
    padding: 12px;
    border-radius: 10px;
}



.info {
    width: 400px;
}

.naatList ul {
    /* padding: 3px 10px; */
    list-style: none;
    height: 70vh;
    overflow: scroll;
}

.naatList ul li {
    display: flex;
    height: 90px;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    border: 1px solid white;
    padding: 10px !important;
    margin: 10px;
    font-size: 14px;
    margin-left: 0;
    border-radius: 12px;
}

.playnow {
    display: flex;
    padding: 10px;
    gap: 3px;
    justify-content: center;
    align-items: center;
    width: 150px;
    align-self: flex-end;
    margin: auto;
}

.playnow span {
    font-size: 15px;
}


.seekbar {
    height: 4px;
    width: 70vw;
    background-color: rgba(255, 255, 255, 0.312);
    cursor: pointer;
    position: absolute;
    bottom: 5px;
}


.circle {
    width: 13px;
    height: 13px;
    border-radius: 100%;
    background-color: white;
    position: relative;
    bottom: 6px;
    left: 0%;
    transition: 0.5s ease-out;
}

.controlButtons {
    display: flex;
    justify-content: center;
    gap: 16px;
    width: 30%;
    margin-top: 12px;
}

.controlButtons img {
    width: 25px;
    cursor: pointer;
}


.information {
    display: flex;
    justify-content: space-between;
    /* align-items: ce; */
}


.timeNvol {
    width: 35%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 20px;
    align-items: center;
}

.range {
    display: flex;
    justify-content: center;
    align-items: center;
}

.volume {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.volume img {
    cursor: pointer;
}


.audioInfo {
    width: 35%;
    margin: auto;
}

.audioTime {
    display: flex;
    justify-content: end;
    align-items: center;
    /* width: 35%; */
}


.hamburger {
    display: none;
}

.leftMobile {
    width: 350px;
}

.cross {
    display: none;
}

@media (max-width: 1400px) {
    .left {

        height: 100vh;
        position: fixed;
        left: -100%;
        z-index: 1;
        transition: 0.3s ease-in;
        top: 0;
        background-color: #1f1f1f;
    }

    .container {
        margin: 0;
    }

    .right {
        width: 100vw;
        height: 100vh;
        margin: 0 !important;
        overflow-x: hidden;
    }

    .playbar {
        width: calc(100vw - 70px);
    }

    .seekbar {
        width: 95%;
    }

    .cardContainer {
        justify-content: center;
        margin-right: 100px;
        padding: 0;
    }

    .spotifyPlaylists {
        width: 100vw;

    }

    .hamburger {
        display: block;
    }

    .cross {
        display: block;
    }

    .buttons {
        display: flex;
        font: 13px;
    }

    .sign,
    .log {
        font-size: 13px !important;
    }


}

@media (max-width: 782px) {
    .audioInfo {
        width: auto;
        margin: auto;
        padding: 0;
        display: flex;
        justify-content: center;
    }

    .audioTime {
        width: auto;
        margin: auto;
        padding: 0;
        display: flex;
        justify-content: center;
        padding-bottom: 12px;
    }

    .playbar {
        width: calc(100vw - 70px);
        min-height: 65px;
    }

    .timeNvol {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .information {
        padding: 5px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        justify-content: center;
        align-items: center;
    }


    .container {
        margin: 0 !important;
    }

    .left {
        background-color: #1f1f1f;
    }

    .right {
        width: 100vw;
        height: 100vh;
        margin: 0 !important;
        overflow-x: hidden;

    }

    .sign,
    .log {
        font-size: 13px !important;
    }


    #rHeading {
        font-size: 25px;
        padding: 10px;
    }

    .spotifyPlaylists {
        overflow-y: unset;
    }

    .cardContainer {
        padding-bottom: 35vh !important;

    }
}

@media (max-width: 605px) {

    .sign,
    .log {
        font-size: 8px;
        padding: 8px 15px;
    }

    .audioInfo {
        width: auto;
        margin: auto;
        padding: 0;
        display: flex;
        justify-content: center;
    }

    .audioTime {
        width: auto;
        margin: auto;
        padding: 0;
        display: flex;
        justify-content: center;
        padding-bottom: 12px;
    }

    .playbar {
        width: calc(100vw - 35px);
        min-height: 65px;
    }

    .timeNvol {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .information {
        padding: 5px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        justify-content: center;
        align-items: center;
    }


    .container {
        margin: 0 !important;
    }

    .left {
        background-color: #1f1f1f;
    }

    .right {
        width: 100vw;
        height: 100vh;
        margin: 0 !important;
        overflow-x: hidden;

    }

    .sign,
    .log {
        font-size: 13px !important;
    }


    #rHeading {
        font-size: 25px;
        padding: 10px;
    }

    .cardContainer {
        flex-direction: column;
        gap: 15px;
        margin: 0;
    }

    .spotifyPlaylists {
        padding: 0;
    }

    .card {
        width: calc(100vw - 30px);
    }
}

@media (max-width: 355px) {
    .arrowonHead {
        display: none;
    }
}

@media (max-width: 301px) {
    .leftMobile {
        max-width: 100vw;

    }

    .left {
        flex-wrap: wrap;
        padding: 5px;
        overflow-x: hidden;
    }

    .audioTime {
        font-size: 15px;
    }
}