* {
    margin: 0;
    padding: 0;
}

body {
    background-color: black;
    color: white;
}

.keep {
    gap: 10px;
    margin: 10px 0px;
    position: relative;
    overflow-x: hidden;
    display: flex;
}

.upbar {
    align-items: center;
    /* margin: 6px 0px; */
    padding: 4px 0px 0px 0px;
    position: sticky;
    top: 0px;
    z-index: 5;
    background-color: black;
}

.logo {
    margin: 0px;
    /* position: absolute; */
}

.task {
    gap: 10px;
    position: absolute;
    left: 34vw;
}

.searchbar {
    padding: 5px;
}

.home {
    width: 22px;
    padding: 0px 16px;
    color: white;
    /* margin: 0px 6px; */
    /* border: 2px solid black; */
    border-radius: 100%;
    cursor: pointer;
    background-color: rgb(226, 228, 228);
}

.search {
    padding: 12px 22px 12px 16px;
    width: 30vw;
    background-color: rgb(33, 33, 33);
    color: white;
    /* border: 2px solid white; */
    border: none;
    border-radius: 25px;
    font-size: medium;
}

.login {
    position: absolute;
    right: 5vw;
}

.log {
    background-color: rgb(2, 191, 2);
    border: 6px solid rgb(29, 27, 27);
    color: black;
    border-radius: 30px;
    padding: 12px;
    cursor: pointer;
}

.log:hover {
    color: white;
}

.library {
    margin: 14px 8px 36px 8px;
    background: linear-gradient(to bottom right, green, rgb(150, 150, 150));
    border-radius: 6px;
    padding: 5px;
}

.lib {
    width: 30px;
    /* cursor: pointer; */
}

.libtxt {
    margin-top: 22px;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(to bottom right, green, rgb(255, 255, 255));
    background-clip: padding-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.libflex {
    margin-top: 10px;
}

.stb {
    margin: 25px 0px 10px 12px;
    font-size: 26px;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.ctxt {
    margin: 10px 2px 2px 20px;
}

.card {
    margin-top: 30px;
    margin-left: 12px;
    border-radius: 6px;
    width: 250px;
    height: 150px;
    background-color: rgb(233, 59, 117);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.card1 {
    margin-top: 30px;
    margin-left: 12px;
    border-radius: 6px;
    width: 250px;
    height: 150px;
    background-color: darkgreen;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.card2 {
    margin-top: 30px;
    margin-left: 12px;
    border-radius: 6px;
    width: 250px;
    height: 150px;
    background-color: purple;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.card3 {
    margin-top: 30px;
    margin-left: 12px;
    border-radius: 6px;
    width: 250px;
    height: 150px;
    background-color: blue;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.card4 {
    margin-top: 30px;
    margin-left: 12px;
    border-radius: 6px;
    width: 250px;
    height: 150px;
    background-color: crimson;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.liked {
    gap: 10px;
    flex-direction: column;
    /* align-items: center; */
    cursor: pointer;
    margin-bottom: 40px;
}

.heart {
    background: linear-gradient(to bottom right, mediumslateblue, rgb(192, 191, 191));
    padding: 10px 14px;
    border-radius: 8px;
    width: 15px;
}

.likedtxt{
    margin-left: -14px;
    font-size: 14px;
}

.p2h {
    margin: 30px 0px 20px 12px;
    font-size: 26px;
}

.cardcontainer {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    margin-top: 40px;
    margin-left: 30px;
}

.cont {
    /* border: 2px solid white; */
    cursor: pointer;
    width: 222px;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    position: relative;
    transition: all .6s;
}

.cont p {
    font-size: 14px;
    font-weight: 500;
    color: grey;
    padding: 6px 20px 10px 20px;
}

.cont:hover {
    background-color: rgb(44, 41, 41);
    border-radius: 10px;
}

.playbtnin {
    width: 28px;
    height: 28px;
    background-color: #1fdf64;
    border-radius: 50%;
    padding: 1px 3px 4px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 70px;
    right: 17px;
    opacity: 0;
    transition: all .5s ease-out;
}

.playbar {
    background-color: black;
    width: 100%;
    height: 13%;
    position: fixed;
    bottom: 0;
    border-radius: 16px;
}

.end {
    margin-bottom: 100px;
    margin-top: 60px;
    margin-left: 10px;
}

.playbar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.midp {
    display: flex;
    align-items: center;
    /* gap: 300px; */
    position: relative;
}

.songinfo {
    position: absolute;
    left: 30px;
    top: 22px;
}

.songtime {
    position: absolute;
    right: 30px;
    top: 22px;
}

.songlist ul li {
    list-style-type: none;
    cursor: pointer;
    border: 3px solid lightblue;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    justify-content: space-around;
    gap: 20px;
    align-items: center;
}

.songlist ul {
    margin: 5px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 360px;
    overflow: auto;
}

.playul {
    background-color: #278f6c;
    padding: 5px 6px 4px 8px;
    border-radius: 50px;
    filter: invert(1);
}

.songname {
    font-size: 14px;
}

.seekbar {
    width: 92vw;
    border: 2px solid white;
    border-radius: 10px;
    cursor: pointer;
    position: absolute;
    left: 3%;
    bottom: 15%;
    z-index: -1;
}

.circlesb {


    width: 0%;
    /*set !*/


    border: 2px solid #1fdf64;
    border-radius: 10px;
    transition: left 0.5s;
}

.cir {
    background-color: white;
    padding: 3px;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    position: absolute;
    left: -0.5%;
    /* set (n)! */
    bottom: -132%;
    transition: left 0.5s;
}

.hamcontain {
    display: none;
}

.youritem{
    margin: 20px 2px 20px 25px;
}

.yi{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 30px;
}

.yitems{
    margin-left: 15px;
    gap: 32px;
}

.addpl{
    margin-top: -3px;
    cursor: pointer;
}

.addd{
    font-size: 24px;
    font-weight: 500;
    padding: 10px 18px;
    background-color: rgba(74, 73, 73, 0.458);
    border-radius: 100%;
}

.okok{
    margin-left: 13px;
    margin-top: 8px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
}

.blkline{
    border: 3px solid black;
    margin-top: -14px;
}