@font-face {
  font-family: nexalight;
  src: url(nexa/light.ttf);
}
@font-face {
  font-family: nexabold;
  src: url(nexa/bold.ttf);
}
@media (max-width: 660px) {
  body {
    overflow: hidden;
    margin: 0;
    font-family: nexalight;
    background-color: rgb(175, 54, 167);
  }
  #faves, #list, #search, #account {
    position: fixed;
    width: 90vw;
    left: 5vw;
    top: 150px;
  }
  .bar {
    display: flex !important;
  }
  #faves, #search, #account {
    display: none;
  }
  #search, #account {
    display: none;
  }
  #list {
    top: 160px !important;
  }
  header {
    background-color: rgb(33, 33, 33);
    width: 100vw;
    height: 150px;
    position: fixed;
    display: flex;
    flex-wrap: wrap;
    z-index: 99;
  }
  header .title-container {
    position: relative;
    left: 20px;
    top: 20px;
    width: 300px;
    height: 120px;
  }
  header .title-container .logo {
    position: absolute;
    height: 70px;
    width: 70px;
    background-image: url(../images/logo.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .misc-container {
    pointer-events: none;
    position: fixed;
    border-radius: 16px;
    top: 0;
    width: 100vw;
    height: 150px;
    z-index: 1000;
    display: flex !important;
  }
  .misc-container .now-playing {
    position: absolute;
    z-index: 1000;
    pointer-events: auto;
    width: 100vw;
    height: 150px;
  }
  .misc-container .now-playing .cover {
    position: absolute;
    border-radius: 16px;
    width: 110px;
    height: 110px;
    right: 10px;
    margin: auto;
    top: 10px;
    z-index: 9998;
    background-image: url(../images/cover-placeholder.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .misc-container .now-playing .song {
    color: rgb(255, 255, 255);
    position: relative;
    top: 20px;
    margin: auto;
    width: 80px;
    font-size: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
  .misc-container .now-playing .sound-container {
    position: absolute;
    top: 295px;
    width: 200px;
    padding: 15px;
    right: 30px !important;
    background: transparent;
    color: rgb(175, 54, 167);
    font-family: Arial, sans-serif;
    font-size: 13px;
  }
  .misc-container .now-playing .sound-container br {
    display: none;
  }
  .misc-container .now-playing .sound-container button {
    display: block;
    margin: 15px auto;
    width: 90px;
    height: 50px;
    border-radius: 50%;
    border: none;
    color: rgb(175, 54, 167);
    color: #000;
    font-weight: bold;
    cursor: pointer;
  }
  .misc-container .now-playing .sound-container input[type=range] {
    width: 100%;
    margin-top: 6px;
    margin-bottom: 15px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    height: 6px;
    border-radius: 3px;
    outline: none;
    background: #555;
    cursor: pointer;
    /* Webkit */
    /* Firefox */
  }
  .misc-container .now-playing .sound-container input[type=range]::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 3px;
  }
  .misc-container .now-playing .sound-container input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
            appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgb(175, 54, 167);
    margin-top: -4px;
    cursor: pointer;
  }
  .misc-container .now-playing .sound-container input[type=range]::-moz-range-track {
    height: 6px;
    border-radius: 3px;
    background-color: rgb(175, 54, 167);
  }
  .misc-container .now-playing .sound-container input[type=range]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgb(175, 54, 167);
    border: none;
    cursor: pointer;
  }
  .misc-container .now-playing .sound-container .volume {
    background: #949494;
  }
  .misc-container .now-playing .sound-container .timeline {
    background: linear-gradient(to right, #fff 0%, #fff var(--progress, 0%), #555 var(--progress, 0%), #555 100%);
  }
  .misc-container .artist-container {
    position: absolute;
    border-radius: 16px 0 0 16px;
    width: 100%;
    height: 150px;
    pointer-events: auto;
    color: rgb(255, 255, 255);
    display: flex;
  }
  .misc-container .artist-container .icon {
    position: relative;
    height: 30px;
    width: 30px;
    margin: auto;
    left: -52px;
    top: -40px;
    rotate: -45deg;
    background-image: url(../images/heart.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .misc-container .artist-container .artist {
    font-family: nexabold;
    position: absolute;
    right: 3px;
    top: 100px;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 100px;
    z-index: 9999;
  }
  .list-container {
    display: flex;
    width: 100vw;
    height: calc(100vh - 100px);
    padding-top: 0;
    box-sizing: border-box;
  }
  .list-container .list-songs-container {
    flex: 1;
    box-sizing: border-box;
    overflow-y: auto;
    height: calc(100vh - 40px);
    margin: 0;
    margin-left: 0 !important;
    scrollbar-width: none;
  }
  .list-container .list-songs-container::-webkit-scrollbar {
    display: none;
  }
  .list-container .list-songs-container .songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 140px);
    justify-content: center;
    gap: 20px;
    margin: 0;
  }
  .list-container .list-songs-container .song-card {
    background-color: rgb(33, 33, 33);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    width: 120px;
    height: 190px;
    flex-shrink: 0;
  }
  .list-container .list-songs-container .song-card .cover {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    background-image: url(../images/cover-placeholder.png);
    background-size: cover;
    background-position: center;
  }
  .list-container .list-songs-container .song-card .info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;
  }
  .list-container .list-songs-container .song-card .info .song-name {
    color: rgb(255, 255, 255);
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .list-container .list-songs-container .song-card .info .artist-name {
    color: rgb(255, 255, 255);
    font-size: 14px;
    opacity: 0.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .list-container .list-songs-container .song-card .pink-line {
    height: 4px;
    width: 78%;
    background-color: #ff4fa3;
    border-radius: 4px;
    margin-top: auto;
  }
  .searchbar-container {
    background-color: rgb(57, 57, 57);
    position: absolute;
    left: 20px;
    top: 10px;
    width: 100vw;
    height: 100vh;
  }
  .searchbar-container .searchbar {
    position: absolute;
    background-color: rgb(71, 71, 71);
    width: 80vw;
    height: 70px;
    border-radius: 20px;
    left: 5vw;
    top: 12.5px;
    margin: 0 auto;
  }
  .searchbar-container .icon {
    position: absolute;
    height: 55px;
    width: 55px;
    left: 10px;
    top: 7px;
    cursor: pointer;
    background-image: url(../images/search.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .searchbar-container .text {
    position: absolute;
    left: 68px;
    width: calc(100% - 75px);
    height: 55px;
    top: 7.5px;
    color: rgb(255, 255, 255);
    font-size: 40px;
    border-radius: 20px;
    text-align: left;
    background-color: transparent;
    border: none;
    outline: none;
  }
  .searchbar-container .text::-moz-placeholder {
    color: rgb(255, 255, 255);
  }
  .searchbar-container .text::placeholder {
    color: rgb(255, 255, 255);
  }
  .no-select {
    -webkit-user-select: none; /* Chrome, Safari */
    -moz-user-select: none; /* Firefox */ /* Microsoft Edge */
    user-select: none; /* Standard */
  }
  .faves-container {
    background-color: rgb(57, 57, 57);
    position: absolute;
    width: 300px;
    top: 120px;
    height: 100%;
    display: flex;
    flex-direction: column;
    resize: none;
    min-width: 272px;
    max-width: 600px;
  }
  .faves-container .title {
    position: relative;
    text-align: center;
    font-family: nexabold;
    color: rgb(255, 255, 255);
    font-size: 40px;
    letter-spacing: 3px;
    text-shadow: 0 5px rgb(175, 54, 167);
    font-size: 40px;
  }
  .faves-container .faves-song-container {
    position: absolute;
    top: 70px;
    left: 15px;
    right: 15px;
    bottom: 0;
    transition: opacity 0.2s ease;
    overflow-x: auto;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .faves-container .faves-song-container::-webkit-scrollbar {
    display: none;
  }
  .faves-container .faves-song-container .faves-song {
    background-color: rgb(33, 33, 33);
    color: rgb(255, 255, 255);
    border: 2px solid rgb(175, 54, 167);
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    height: 100px;
    width: 100%;
    box-sizing: border-box;
  }
  .faves-container .faves-song-container .faves-song .icon {
    position: relative;
    height: 90px;
    width: 90px;
    left: -6px;
    top: 0.5px;
    cursor: default;
    flex-shrink: 0;
    background-image: url(../images/cover-placeholder.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .faves-container .faves-song-container .faves-song .text-wrap {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .faves-container .faves-song-container .faves-song .songtitle {
    font-size: 22px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .faves-container .faves-song-container .faves-song .artist {
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.8;
  }
  .faves-container .faves-song:not(:last-child) {
    margin-bottom: 15px;
  }
}
@media (min-width: 660px) {
  body {
    overflow: hidden;
    margin: 0;
    font-family: nexalight;
    background-color: rgb(175, 54, 167);
  }
  header {
    background-color: rgb(33, 33, 33);
    width: 100vw;
    height: 120px;
    position: fixed;
    display: flex;
    flex-wrap: wrap;
    z-index: 9999;
  }
  .title-container {
    position: relative;
    left: 20px;
    top: 20px;
    width: 300px;
    height: 120px;
  }
  .title-container .logo {
    position: absolute;
    height: 80px !important;
    width: 80px !important;
    background-image: url(../images/logo.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .title-container .title {
    font-family: nexabold;
    color: rgb(255, 255, 255);
    font-size: 40px;
    letter-spacing: 3px;
    text-shadow: 0 5px rgb(175, 54, 167);
    position: absolute;
    width: 20vw;
    top: 10px;
    left: 100px;
  }
  .searchbar-container {
    position: relative;
    left: 20px;
    top: 10px;
    width: calc(100vw - 300px - 160px);
    height: 120px;
  }
  .searchbar-container .searchbar {
    position: relative;
    background-color: rgb(71, 71, 71);
    width: calc(55vw - 160px);
    height: 70px;
    border-radius: 20px;
    top: 12.5px;
    margin: 0 auto;
  }
  .searchbar-container .icon {
    position: absolute;
    height: 55px;
    width: 55px;
    left: 10px;
    top: 7px;
    cursor: pointer;
    background-image: url(../images/search.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .searchbar-container .text {
    position: absolute;
    left: 68px;
    width: calc(100% - 75px);
    height: 55px;
    top: 7.5px;
    color: rgb(255, 255, 255);
    font-size: 40px;
    border-radius: 20px;
    text-align: left;
    background-color: transparent;
    border: none;
    outline: none;
  }
  .searchbar-container .text::-moz-placeholder {
    color: rgb(255, 255, 255);
  }
  .searchbar-container .text::placeholder {
    color: rgb(255, 255, 255);
  }
  .account-container {
    display: block !important;
    position: absolute;
    right: 20px;
    top: 10px;
    width: 120px;
    height: 120px;
  }
  .account-container .icon {
    position: absolute;
    height: 100px;
    width: 100px;
    right: 0;
    background-image: url(../images/account-placeholder.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .account-container #popup {
    background-color: rgb(57, 57, 57);
    width: 300px;
    height: 400px;
    border-radius: 16px;
    position: relative;
    z-index: 9999;
    top: 100px;
    right: 170px;
    display: none;
  }
  .account-container #popup .cross {
    background-image: url(../images/cross.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 35px;
    height: 35px;
    left: 15px;
    top: 15px;
    position: relative;
    cursor: pointer;
  }
  .account-container #popup .title {
    font-family: nexabold;
    color: rgb(255, 255, 255);
    font-size: 30px;
    letter-spacing: 3px;
    text-shadow: 0 5px rgb(175, 54, 167);
    position: absolute;
    left: 40%;
    top: 10px;
  }
  .list-container {
    display: flex;
    width: 100vw;
    height: 100vh;
    padding-top: 118px;
    box-sizing: border-box;
  }
  .list-container .list-songs-container {
    flex: 1;
    padding: 24px;
    box-sizing: border-box;
    padding-right: 320px;
    overflow-y: auto;
    height: calc(100vh - 120px);
    scrollbar-width: none;
  }
  .list-container .list-songs-container::-webkit-scrollbar {
    display: none;
  }
  .list-container .list-songs-container .songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 180px);
    justify-content: center;
    gap: 20px;
    margin: 0;
  }
  .list-container .list-songs-container .song-card {
    background-color: rgb(33, 33, 33);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    width: 160px;
    height: 230px;
    flex-shrink: 0;
  }
  .list-container .list-songs-container .song-card .cover {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    background-image: url(../images/cover-placeholder.png);
    background-size: cover;
    background-position: center;
  }
  .list-container .list-songs-container .song-card .info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;
  }
  .list-container .list-songs-container .song-card .info .song-name {
    color: rgb(255, 255, 255);
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .list-container .list-songs-container .song-card .info .artist-name {
    color: rgb(255, 255, 255);
    font-size: 14px;
    opacity: 0.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .list-container .list-songs-container .song-card .pink-line {
    height: 4px;
    width: 78%;
    background-color: #ff4fa3;
    border-radius: 4px;
    margin-top: auto;
  }
  .misc-container {
    pointer-events: none;
    position: fixed;
    border-radius: 16px;
    top: 140px;
    right: 5px;
    width: 280px;
    height: calc(100vh - 120px - 20px);
    z-index: 1000;
  }
  .misc-container .now-playing {
    position: absolute;
    border-radius: 16px;
    width: 280px;
    height: 480px;
    z-index: 1000;
    pointer-events: auto;
    background-color: rgb(33, 33, 33);
  }
  .misc-container .now-playing .cover {
    position: absolute;
    border-radius: 16px !important;
    width: 250px;
    height: 250px;
    margin: auto;
    left: 15px;
    top: 10px;
    background-image: url(../images/cover-placeholder.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .misc-container .now-playing .song {
    color: rgb(255, 255, 255);
    position: relative;
    top: 265px;
    left: 30px;
    width: 220px;
    font-size: 30px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
  .misc-container .now-playing .sound-container {
    position: absolute;
    top: 295px;
    width: 200px;
    padding: 15px;
    right: 30px !important;
    background: transparent;
    color: rgb(175, 54, 167);
    font-family: Arial, sans-serif;
    font-size: 13px;
  }
  .misc-container .now-playing .sound-container br {
    display: none;
  }
  .misc-container .now-playing .sound-container button {
    display: block;
    margin: 15px auto;
    width: 90px;
    height: 50px;
    border-radius: 50%;
    border: none;
    color: rgb(175, 54, 167);
    color: #000;
    font-weight: bold;
    cursor: pointer;
  }
  .misc-container .now-playing .sound-container input[type=range] {
    width: 100%;
    margin-top: 6px;
    margin-bottom: 15px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    height: 6px;
    border-radius: 3px;
    outline: none;
    background: #555;
    cursor: pointer;
    /* Webkit */
    /* Firefox */
  }
  .misc-container .now-playing .sound-container input[type=range]::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 3px;
  }
  .misc-container .now-playing .sound-container input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
            appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgb(175, 54, 167);
    margin-top: -4px;
    cursor: pointer;
  }
  .misc-container .now-playing .sound-container input[type=range]::-moz-range-track {
    height: 6px;
    border-radius: 3px;
    background-color: rgb(175, 54, 167);
  }
  .misc-container .now-playing .sound-container input[type=range]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgb(175, 54, 167);
    border: none;
    cursor: pointer;
  }
  .misc-container .now-playing .sound-container .volume {
    background: #949494;
  }
  .misc-container .now-playing .sound-container .timeline {
    background: linear-gradient(to right, #fff 0%, #fff var(--progress, 0%), #555 var(--progress, 0%), #555 100%);
  }
  .misc-container .artist-container {
    position: absolute;
    border-radius: 16px 0 0 16px;
    width: 100%;
    height: 100px;
    top: 500px;
    right: -5px;
    pointer-events: auto;
    background-color: rgb(33, 33, 33);
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
  }
  .misc-container .artist-container .icon {
    position: absolute;
    height: 55px;
    width: 55px;
    left: 20px;
    background-image: url(../images/heart.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .misc-container .artist-container .artist {
    position: absolute;
    padding: 30px 0 30px 30px;
    left: 55px;
    font-size: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
  .no-select {
    -webkit-user-select: none; /* Chrome, Safari */
    -moz-user-select: none; /* Firefox */ /* Microsoft Edge */
    user-select: none; /* Standard */
  }
  .faves-container {
    background-color: rgb(57, 57, 57);
    position: absolute;
    width: 300px;
    top: 120px;
    height: 100%;
    display: flex;
    flex-direction: column;
    resize: none;
    min-width: 272px;
    max-width: 600px;
  }
  .faves-container .resize-handle {
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 100%;
    cursor: ew-resize;
    background: rgb(57, 57, 57);
    border-right: 4px solid rgb(33, 33, 33);
  }
  .faves-container.shrunk {
    width: 50px !important;
    min-width: 50px !important;
    transition: width 0.3s ease;
  }
  .faves-container.shrunk .title,
  .faves-container.shrunk .faves-song-container {
    opacity: 0;
    pointer-events: none;
  }
  .faves-container.shrunk .resize-handle {
    display: none;
  }
  .faves-container .title {
    position: relative;
    color: rgb(255, 255, 255);
    font-size: 40px;
    margin: 0 0 0 20px;
    transition: opacity 0.2s ease;
  }
  .faves-container .icon {
    position: absolute;
    height: 30px;
    width: 30px;
    right: 12px;
    top: 18px;
    cursor: pointer;
    background-image: url(../images/resize.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .faves-container .faves-song-container {
    position: absolute;
    top: 70px;
    left: 15px;
    right: 15px;
    bottom: 0;
    transition: opacity 0.2s ease;
    overflow-x: auto;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .faves-container .faves-song-container::-webkit-scrollbar {
    display: none;
  }
  .faves-container .faves-song:not(:last-child) {
    margin-bottom: 15px;
  }
  .mobile {
    display: block !important;
  }
}
.bar {
  background-color: black;
  width: 100vw;
  height: 110px;
  position: fixed;
  bottom: 0;
  z-index: 999;
  display: none;
  justify-content: space-evenly;
}

.bar div {
  position: relative;
  top: 10px;
  background-size: 100% 100%;
  width: 80px;
  height: 80px;
}

.faves-song {
  background-color: rgb(33, 33, 33);
  color: rgb(255, 255, 255);
  border: 2px solid rgb(175, 54, 167);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  height: 100px;
  width: 100%;
  box-sizing: border-box;
}
.faves-song .icon {
  position: relative;
  height: 90px;
  width: 90px;
  left: -6px;
  top: 0.5px;
  cursor: default;
  flex-shrink: 0;
  background-image: url(../images/cover-placeholder.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.faves-song .text-wrap {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.faves-song .songtitle {
  font-size: 22px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.faves-song .artist {
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.8;
}/*# sourceMappingURL=index.css.map */