body {
    font-family: 'Montserrat', sans-serif;
    margin: 0px;
    background-color: black;
    color: white;
    overflow: hidden;
}

.main {
    display: flex;
    height: 100vh;
    padding: 0.5rem;

}

#check {
    display: none;
}

.sidebar {
    background-color: black;
    width: 340px;
    border-radius: 1rem;
}

.main-content {
    background-color: #121212;
    flex: 1;
    border-radius: 1rem;
    overflow: auto;
    padding: 0 1.5rem 0 1.5rem;

}

.music-player {
    background-color: black;
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 72px;

}

a {
    text-decoration: none;
    color: #fff;
}

.nav {
    background-color: #121212;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    height: 100px;
    padding: 0.5rem, 0.7rem;
}

.nav-option {
    line-height: 2.5rem;
    opacity: 0.7;
    padding: 8px;

}

.nav-option:hover {

    opacity: 1;
}

.nav-option i {
    font-size: 1.25rem;

}

.nav-option1 {
    cursor: pointer;
    opacity: 0.7;
}

.nav-option a {
    font-size: 1rem;
    margin: 1rem;
}

.nav-option1:hover {
    opacity: 1;
}

.nav-option1 i {
    margin-right: 25px;
    cursor: pointer;
    margin-left: 10px;
}

.nav-option2 i:hover {
    opacity: 1;
}

label {
    cursor: pointer;
}

#ch1 {
    display: none;
}

.search {
    width: 200px;
    height: 20px;
    background-color: black;
    position: fixed;
    left: -330px;
    top: 30px;

}

input {
    width: 250px;
    height: 30px;
    color: black;
    position: absolute;
    top: 20px;
    left: 70px;
    border-radius: 3px;
    border: 1px solid rgb(51, 50, 50);
    display: none;
}

.library {
    background-color: #121212;
    border-radius: 1rem;
    height: 100%;
    margin-top: 0.75rem;
    padding: 0.5rem, 0.7rem;
}

.search_btn {
    width: 50px;
    height: 31px;
    border: 0px solid rgb(51, 50, 50);
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    position: absolute;
    left: 275px;
    top: 21px;
    cursor: pointer;
    background-color: orange;
    color: white;
    display: none;
}

#ch1:checked~.search {
    left: 150px;
    top: 30px;
}

.option {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.lib-option img {
    height: 1.25rem;
    width: 1.25rem;
}

.icons {
    font-size: 1.25rem;


    display: flex;
}

.icons i {
    opacity: 0.7;
    margin-right: 1rem;
}

.icons i:hover {
    opacity: 1;
}

.box {
    height: 8rem;
    background-color: #232323;
    border-radius: 0.5rem;
    margin: 0.5rem 0 0.5rem 0;
    padding: 1rem 2.5rem;
}

.box-p1 {
    font-size: 1rem;
    font-weight: 700;
}

.box-p2 {
    font-size: 0.75rem;
    opacity: 0.8;

}

.badge {
    background-color: white;
    border: none;
    border-radius: 100px;
    padding: 0.25rem 1rem;
    font-weight: 700;
    margin-top: 0.5rem;
    height: 2rem;
    width: fit-content;
}

.dark-badge {
    background-color: #000;
    color: white;
    cursor: pointer;

}

.sticky-nav {
    position: sticky;
    top: 0px;
    background-color: #121212;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 1rem;
    z-index: 10;
}

.sticky-nav .nav-icon {
    margin-left: 0.75rem;

}

.sticky-nav-options {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-nav-options i {
    cursor: pointer;
}

.sticky-nav-options button {
    margin-right: 1rem;
}

.nav-item {
    margin-right: 1rem;
}

@media (max-width:1000px) {
    .hide {
        display: none;
    }
}

.card {
    background-color: #232323;
    width: 200px;
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1.5rem;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
}

.card-img {
    width: 100%;
    border-radius: 0.5rem;
}

.card-litle {
    font-weight: 6oopx;
    font-size: 20px;
}

.card-info {
    font-size: 0.85rem;
    opacity: 0.5;
}

.footer {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.line {
    width: 90%;
    height: 60%;
    border-top: 1px solid white;
    opacity: 0.4;

}

.music-player {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.album {
    width: 25%;
    font-size: 30px;
    background-color: rgb(19, 9, 9);
    color: aliceblue;
    display: flex;
}
.album img{
    width: 70px;
    height: 50px;
    opacity: 0.8;
    padding-left: 10px ;
}
.album img:hover{
    
    opacity:9;
}
.player {
    width: 50%;
    background-color: transparent;
}
.album .album_text{
    font-size: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  opacity: 0.5;
  padding-left: 5px;
}

.player-control {
    display: flex;
    justify-content: center;
    align-items: center;

}

.player-control-icon {
    height: 1rem;
    margin-right: 2rem;
    opacity: 0.7;
    margin-top: 6px;
}

.play {
    cursor: pointer;
}

.player-control-icon:hover {
    opacity: 1;
}
.ch:hover{
opacity: 0.7;
}

#sp {
    color: red;
    font-size: 15px;
}

#check:checked~.logo {
    left: 74%;
    top: 15%;
}

.controls {
    width: 25%;
    display: flex;
    position: relative;
    background-color: black;
}

.controls img {
    width: 35px;
    height: 35px;
    background-color: black;
    cursor: pointer;
    border-radius: 50%;
    opacity: 0.7;
    margin-right: 2rem;

}

.controls img:hover {
    opacity: 1;
}

#setting {
    display: none;
}

.pa {
    width: 55px;
    height: 160px;
    position: fixed;
    top: 800px;
    right: 160px;
    padding: 0px;
    color: white;
    overflow: visible;
    border-radius: 5px;
    background-color: rgb(27, 15, 15);
    cursor: pointer;
}

.pa p:hover {
    color: green;
    border: 2px solid rgb(35, 32, 32);
}

#setting:checked~.pa {
    right: 180px;
    top: 505px;
}

#heart img {
    color: #000;
    background-color: #000;
    position: relative;
}

.controls .heart2 {
    color: aliceblue;
    width: 50px;
    height: 15px;
    font-size: 10px;
    border-radius: 5px;
    background-color: black;
    text-align: center;
    justify-content: center;
    position: absolute;
    top: 90%;
    right: 98px;
}

.badge {
    cursor: pointer;
}

.box a {
    background-color: white;
    border: none;
    border-radius: 100px;
    padding: 0.25rem 1rem;
    font-weight: 700;
    margin-top: 0.5rem;
    height: 2rem;
    width: fit-content;
    color: #000;
}
