@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

*{
    scroll-behavior: smooth;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

:root{
    --bodyBg: #0e0d13;
    --bodyBgMP: rgb(18, 14, 24);
    --mainColor: #251e2c;
    --mainColorLighter: rgba(21, 19, 23, 0.6);
    --mainColorLighter2:rgb(139, 135, 146);
    --secondaryColor: rgba(19, 19, 19, 0.45);
    --offWhite: #DCD6F7;
    --offWhiteDark: #8a85a1;
    --accentColor: #8f59f5;
    --accentColorLO: rgba(118, 45, 255, 0.5);
    --playerColor: #1f1d23;
    --vaultTransparentBG: rgba(22, 20, 28, 0.4);
    --latestReleaseBox: black;
    --allChColor: rgba(172, 121, 255, 0.15);
    --popupScreenBg: linear-gradient(0deg, rgb(14, 11, 19), rgb(21, 17, 27));

    --artistSearch: rgba(0, 128, 0, 0.3);
    --songSearch: rgba(255, 0, 0, 0.2);
    --playlistSearch: rgba(141, 111, 252, 0.5);

    --currentSongColor: rgb(28, 22, 37);
    --currentSongColorBig: rgb(28, 22, 37);

    --sidePageback: black;

    --gmBackdrop: blur(20px) brightness(1.2);
    --gmBackdropPlayer: brightness(0.5) blur(50px) saturate(2.5);

    --footerBg: rgba(26, 21, 34, 0.7);
    --footerBgHO: rgb(30, 27, 37);

    --topInsetArea: env(safe-area-inset-top);
    --sortPopupTop: 0px;
    --sortPopupLeft: 0px;
}

html{
    -ms-touch-action: none;
    touch-action: none;
    overscroll-behavior-y: none;
    overflow-x: hidden !important;
}

body{
    background-color: var(--bodyBg);
    background-image: var(--sidePageback);
    font-family: 'Outfit', sans-serif !important;
    min-height: 100vh;
    color: var(--offWhite);
    -ms-touch-action: none;
    touch-action: none;
    overflow: hidden !important;
    overscroll-behavior-y: none;
}

.bodyHolder{
    position: relative;
    height: 100vh;
    overflow: hidden !important;
}

.highlightSpan{
    color: var(--accentColor);
    font-weight: 900;
    text-shadow: 0px 0px 25px rgba(141, 111, 252, 0.4);
}

.highlightSpan2{
    color: var(--accentColor);
    background: linear-gradient(45deg, var(--accentColor), var(--offWhite));
    background-size: 500%;
    background-position: left;
    font-size: 20px;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 0px 25px rgba(141, 111, 252, 0.4);
    animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes textPulse {
    0%{ background-position: left; }
    50%{ background-position: right; }
    100%{ background-position: left; }
}

ul::-webkit-scrollbar, div::-webkit-scrollbar{
    display: none;
}

ul, div{
    list-style: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

h2::-webkit-scrollbar{
    display: none;
}

h2{
    -ms-overflow-style: none;
    scrollbar-width: none;
    font-weight: 500 !important; 
}

h3::-webkit-scrollbar{
    display: none;
}

h3{
    -ms-overflow-style: none;
    scrollbar-width: none;
}

button{
    font-family: 'Outfit', sans-serif;
    transition: all .15s ease-in-out !important;
    cursor: pointer;
}

input{
    font-family: 'Outfit', sans-serif;
}

.buttonTurnedOn i{
    color: var(--accentColor) !important;
}

.buttonClicked{
    transform: scale(0.9) !important;
    filter: brightness(0.5);
}

.disabledBtn{
    opacity: 0.4;
    pointer-events: none !important;
}

li{
    transition: all .15s ease-in-out;
    cursor: pointer;
}

#changeLoginScreenBtn{
    cursor: pointer;
}

img{
    background-color: black;
    pointer-events: none;
}

.fcenter{
    display: flex !important;
    justify-content: center;
    align-items: center;
}

::placeholder {
    color: var(--offWhiteDark) !important;
}
  
::-ms-input-placeholder { /* Edge 12 -18 */
    color: var(--offWhiteDark) !important;
}

/* ----- HEADER ----- */

header{
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
    padding-bottom: 15px;
    padding-top: calc(var(--topInsetArea) + 15px);
    transition: all .3s ease-in-out;
    z-index: 2;
}

header h2{
    color: var(--offWhite);
    line-height: 20px;
}

.accountName{
    color: var(--accentColor);
    text-transform: uppercase;
    font-weight: 700 !important;
}

header button{
    background: none;
    border: none;
}

header button i{
    font-size: 25px;
    color: var(--offWhite);
}

header .buttonClicked{
    transform: scale(0.9) rotate(40deg) !important;
    filter: brightness(0.5);
}

.greeting{
    position: relative;
}

/* ----- MAIN ----- */

main{
    width: 100%;
    height: 100vh;
    z-index: 10;
    padding-bottom: calc(env(safe-area-inset-bottom) + 200px);
    overflow-x: hidden !important;
    overflow-y: scroll !important;
    position: relative;
    flex-direction: column;
    gap: 15px;
    display: none;
    transform: translateX(0%);
    transition: all .3s ease-in-out;
    pointer-events: all;
}

.activeMain{
    display: flex;
}

.mainToSide{
    transform: translateX(-40%);
    pointer-events: none;
    opacity: 0 !important;
}

.homeAccentBubble{
    position: absolute;
    z-index: -1;
    background-color: var(--accentColor);
    filter: blur(250px);
    width: 100vw;
    height: 50vh;
    top: -750vw;
    left: -25vh;
}

.catTitle{
    font-size: 20px;
    margin-left: 20px;
    width: calc(100% - 40px);
    font-weight: 600;
}

.catTitleNoMargin{
    font-size: 20px;
    margin-left: 0px !important;
    width: calc(100% - 10px) !important;
    font-weight: 600;
}

.catTitleAlone{
    font-size: 20px;
    margin-bottom: 15px;
    margin-left: 20px;
    width: calc(100% - 40px);
    font-weight: 600;
}

.catTitleRightBtn{
    display: flex;
    justify-content: space-between;
    width: calc(100% - 40px);
    margin-left: 20px;
    font-size: 20px;
    font-weight: 600;
}

.catTitleRightBtn div{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    margin-top: -7px;
}

.catTitleRightBtn button{
    width: 40px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
}

.artistWork .catTitleRightBtn button{
    width: 30px;
}

.catTitleRightBtn button i{
    font-size: 24px;
    color: var(--offWhite);
    margin-left: 12px;
}

.artistWork .catTitleRightBtn button i{
    font-size: 20px !important;
}

.yoursScreen h1 button:nth-child(1) i{
    font-size: 18px;
    margin-top: 2px;
}

.catDesc{
    font-size: 10px;
    font-weight: 300;
    margin: 2px;
    color: var(--offWhiteDark);
    margin-bottom: 15px;
    margin-left: 20px;
    width: calc(100% - 40px);
}

.scrollTextCl{
    display: inline-block;
    animation: textScroll 6s infinite ease-in-out;
}

@keyframes textScroll {
    0%{ transform: translateX(-10%); }
    40%{ transform: translateX(0%); }
    60%{ transform: translateX(0%); }
    100%{ transform: translateX(-10%); }
}

/* ----- The Vault Section ----- */

.vaultSection{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    width: calc(100% - 40px) !important;
    margin-left: 20px !important;
    border: 1px solid var(--offWhite);
    border-radius: 15px;
    box-shadow: 0px -150px 250px 25px var(--accentColorLO);
    margin-top: 5px;
    padding: 12px;
    padding-block: 15px;
    transition: all .3s ease-in-out;
}

.vaultSection video{
    filter: contrast(1.5) hue-rotate(-25deg);
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    position: absolute;
}

.vaultSection h2{
    color: #DCD6F7;
    text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.6);
}

.vaultPlayBtn{
    font-size: 20px;
    color: #DCD6F7;
    background-color: var(--vaultTransparentBG);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid #DCD6F7;
    padding-block: 13px;
    padding-inline: 60px;
    border-radius: 10px;
    transition: all .4s ease-in-out;
    transition-delay: .4s;
}

.vaultPlayBtn i{
    margin-left: 3px;
}

.vaultCatsHolder{
    width: 100%;
    height: 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    margin-top: -5px;
    transition: all .4s ease-in-out;
}

.vaultCat{
    color: #DCD6F7;
    text-align: center;
    width: 100%;
    padding-block: 10px;
    background-color: var(--vaultTransparentBG);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid #DCD6F7;
    border-radius: 7px;
}

.vaultSectionOn .vaultCatsHolder{
    margin-top: 0px;
    height: 260px;
    gap: 10px;
}

.vaultSectionOn .vaultPlayBtn i{
    margin-left: 0px;
}

/* ----- Recommended songs Section ----- */

.recSongs, .categoryRecommendedSongs, .yourPlaylists, .yourLPlaylists{
    list-style: none;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 20px;
    padding-block: 0px;
}

.yourPlaylists, .yourLPlaylists{
    width: calc(100% - 40px) !important;
    margin-left: 20px !important;
}

.categoryRecommendedSongs, .yourPlaylists, .yourLPlaylists{
    padding: 0px;
}

.songItem{
    background-color: var(--footerBg);
    border: 1px solid var(--playerColor);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.15);
    transition: all .3s ease-in-out;
    /* animation: showUp 0.3s ease-in-out; */
    overflow: hidden;
}

@keyframes showUp {
    from {
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

@keyframes dontShowUp {
    from {
        opacity: 1;
    }
    to{
        opacity: 0;
    }
}

.songInfo{
    display: flex;
    align-items: center;
    gap: 10px;
}

.songText h2{
    font-size: 16px;
    width: 60vw;
    font-weight: 400 !important;
    margin-top: 0px;
    margin-inline: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.songText h3{
    font-size: 13px;
    color: var(--offWhiteDark);
    width: 60vw;
    line-height: 13px;
    margin-bottom: 3px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.songInfo img{
    border-radius: 5px;
    width: 45px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-left: 0px;
    border: 1px solid var(--playerColor);
}

.songBtns{
    display: flex;
    gap: 15px;
    padding-right: 10px;
    z-index: 2;
}

.songItemSearch .songBtns{
    padding-right: 8px;
}

.songBtns button{
    background: none;
    padding: 0px;
    border: none;
}

.songBtns i{
    font-size: 20px;
    color: var(--offWhite);
}

.songClickDiv{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: calc(100% - 50px);
}

.songVisualizer{
    position: absolute;
    width: 45px;
    aspect-ratio: 1 / 1;
    margin-left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
}

.songVisualizer span{
    height: 50%;
    width: 4px;
    background-color: #DCD6F7;
    border-radius: 20px;
}

.songVisualizer span:nth-child(1){
    animation: visSpanAnim .75s ease-in-out infinite;
    animation-delay: 0s;
}

.songVisualizer span:nth-child(2){
    animation: visSpanAnim .75s ease-in-out infinite;
    animation-delay: 0.25s;
}

.songVisualizer span:nth-child(3){
    animation: visSpanAnim .75s ease-in-out infinite;
    animation-delay: 0.5s;
}

.songVisualizer span:nth-child(4){
    animation: visSpanAnim .75s ease-in-out infinite;
    animation-delay: 0.75s;
}

@keyframes visSpanAnim {
    0%{ height: 50%; }
    50%{ height: 20%; }
    100%{ height: 50%; }
}

.songPlayingLi{
    background-image: linear-gradient(270deg, transparent, rgba(165, 102, 224, 0.1));
}

.songPlayingLi .songInfo img{
    filter: brightness(0.3);
    opacity: 0.8;
    transition: box-shadow .5s ease-in-out;
}

.songPlayingLi .songVisualizer{
    opacity: 1;
}

.songPlayingLiPaused{
    background-image: linear-gradient(270deg, transparent, rgba(165, 102, 224, 0.1));
}

/* ----- Ad Section ----- */

.desktopSection{
    position: relative;
    width: calc(100vw - 40px);
    max-width: 450px;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.desktopSection h2, .desktopSection h5{
    margin-left: 0px;
}

.desktopSection img{
    width: 100%;
    aspect-ratio: 16 / 9;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    border-bottom: none;
    box-shadow: 0px 0px 50px rgba(129, 67, 200, 0.13);
}

.desktopSection a{
    display: block;
    text-align: center;
    width: 100%;
    text-decoration: none;
    background-color: var(--offWhite);
    color: var(--bodyBg);
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border: 1px solid var(--playerColor);
    border-top: none;
    padding: 10px;
    transition: all .2s ease-in-out;
}

/* ----- Recommended artists Section ----- */

.recArtists, .yourFArtists{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: scroll;
    overflow-y: hidden;
    padding-block: 10px;
    padding-inline: 20px;
}

.yourFArtists{
    min-height: 125px;
}

.artistItem{
    width: calc(30vw + 7.5px);
    max-width: 150px;
    max-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    justify-content: center;
    flex-shrink: 0;
    padding-top: 5px;
    /* animation: showUp 0.3s ease-in-out; */
}

.yourFArtists .artistItem{
    width: 100px;
    padding-top: 0px;
}

.artistItem img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.2);
    background-color: transparent !important;
    padding: 5px;
    border: 2px solid var(--offWhite);
}

.yourFArtists .artistItem img{
    box-shadow: none;   
}

.artistItem h3{
    text-align: center;
    font-size: 12px;
    width: 80%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: var(--offWhite);
    margin-top: 5px;
}

/* ----- Recommended playlists Section ----- */

.recPlaylists, .categoryRecommendedPlaylists{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: scroll;
    overflow-y: hidden;
    padding-block: 10px;
    padding-inline: 20px;
}

.categoryRecommendedPlaylists{
    padding-left: 0px;
}

.categoryRecommendedPlaylists .playlistItem img{
    box-shadow: none !important;
}

.playlistItem{
    position: relative;
    width: calc(30vw + 7.5px);
    max-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding-top: 5px;
    transition: all .2s ease-in-out;
    /* animation: showUp 0.3s ease-in-out; */
}

.vaultPlItem h3{
    margin-top: 10px !important;
}

.vaultPlItem img{
    border: 2px solid white;
}

.vaultPlItem i{
    display: grid;
    border-radius: 50%;
    border: 5px solid white;
    place-items: center;
    margin: 35px;
    padding-left: 5px;
    position: absolute;
    padding-top: 1px;
    width: calc(100% - 40px);
    aspect-ratio: 1 / 1;
    top: 5px;
    pointer-events: none;
    font-size: 25px;
    color: #DCD6F7;
    backdrop-filter: brightness(0.5) blur(2px);
    -webkit-backdrop-filter: brightness(0.5) blur(2px);
}

.playlistItem div{
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
}

.playlistItem img{
    width: 100%;
    aspect-ratio: 1 / 1.25;
    object-fit: cover;
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--playerColor);
    border-radius: 13px;
}

.playlistItem h3{
    text-align: left;
    font-size: 13px;
    width: 100%;
    margin-top: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: var(--offWhite);
}

.playlistItem h5{
    text-align: left;
    font-size: 10px;
    width: 100%;
    margin-top: 0px;
    line-height: 12px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: var(--offWhiteDark);
    font-weight: 300;
}

.crimsonPlaylistTag{
    position: absolute;
    top: 8px;
    left: 8px;
    width: 15px !important;
    height: 15px;
    box-shadow: none !important;
}

/* ----- SEARCH SCREEN ----- */

.searchBar{
    margin-bottom: -10px;
    padding-bottom: 10px;
    padding-top: calc(env(safe-area-inset-top) + 20px);
    border-bottom: 1px solid transparent;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 7px;
    z-index: 9;
    transition: all .1s ease-in-out;
}

.searchBar form{
    width: calc(100% - 40px);
    display: flex;
    gap: 10px;
    margin-left: 20px;
    z-index: 9;
}

.searchBar input{
    padding: 15px;
    width: 80%;
    flex-grow: 1;
    border-radius: 10px;
    border: none;
    background-color: var(--bodyBg);
    border: 1px solid var(--playerColor);
    font-size: 15px;
    color: var(--offWhite);
}

#submitSearch, #submitYoursSearch{
    width: 20% !important;
    max-width: 60px;
    color: var(--offWhite);
    transition: all .3s ease-in-out;
    font-size: 15px !important;
}

.searchList{
    flex-direction: column;
    gap: 10px;
    width: calc(100% - 40px);
    display: none;
    margin-left: 20px;
}

.searchListOpen{
    display: flex;
}

.songItemSearch{
    border-bottom: 1px solid var(--songSearch);
}

.artistItemSearch{
    width: 100%;
    background-color: rgba(141, 111, 252, 0.02);
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: space-between;
    flex-shrink: 0;
    padding-block: 5px;
    padding-right: 15px;
    padding-left: 5px;
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--playerColor);
    border-bottom: 1px solid var(--artistSearch);
    border-radius: 30px;
}

.artistItemSearch div{
    width: 80%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.artistItemSearch img{
    width: 40px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--mainColorLighter);
}

.artistItemSearch h3{
    font-size: 15px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: var(--offWhite);
}

.artistItemSearch i{
    font-size: 20px;
}

.playlistItemSearch{
    width: 100%;
    background-color: rgba(141, 111, 252, 0.02);
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: space-between;
    flex-shrink: 0;
    padding-block: 5px;
    padding-right: 15px;
    padding-left: 5px;
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--playerColor);
    border-bottom: 1px solid var(--playlistSearch);
    border-radius: 10px;
}

.playlistItemHolder{
    display: flex;
    align-items: center;
    gap: 10px;
}

.playlistItemHolder img{
    width: 40px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid var(--mainColorLighter);
}

.playlistItemHolder div h3{
    font-size: 15px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: var(--offWhite);
}

.playlistItemHolder div h5{
    font-size: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: var(--offWhiteDark);
}

.playlistItemSearch i{
    font-size: 20px;
}

.SearchTypeChips{
    display: flex;
    width: 100%;
    overflow-x: scroll;
    align-items: center;
    gap: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-inline: 20px;
    animation: none;
    transition: all .25s ease-in-out;
}

.SearchTypeChips::-webkit-scrollbar{
    display: none;
}

.searchChip{
    width: 100px;
    height: 40px;
    position: relative;
    flex-shrink: 0;
}

.searchChip input{
    appearance: none !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: calc(100% - 4px) !important;
    border: 1px solid var(--playerColor);
    margin-block: 2px;
    position: absolute;
    border-radius: 10px !important;
    background-color: var(--bodyBg);
    z-index: 1;
    transition: all .1s ease-in-out;
    cursor: pointer;
}

.allchipCh{
    background-color: var(--allChColor)  !important;
}

.searchChip label{
    position: absolute;
    pointer-events: none;
    z-index: 2;
    font-size: 15px;
    top: 0;
    left: 0;
    height: calc(100% - 2px);
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ----- CATEGORIES ----- */

.categories{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: calc(100% - 40px);
    margin-left: 20px;
}

.catItems{
    width: 100%;
    height: 85px;
    gap: 10px;
    display: flex;
    align-items: center;
}

.catItems:hover{
    transform: scale(1) !important;
}

.catItem{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    position: relative;
    background-color: #000000;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='26' viewBox='0 12 32 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 0v3.994C14 7.864 10.858 11 7 11c-3.866 0-7-3.138-7-7.006V0h2v4.005C2 6.765 4.24 9 7 9c2.756 0 5-2.236 5-4.995V0h2zm0 26v-5.994C14 16.138 10.866 13 7 13c-3.858 0-7 3.137-7 7.006V26h2v-6.005C2 17.235 4.244 15 7 15c2.76 0 5 2.236 5 4.995V26h2zm2-18.994C16 3.136 19.142 0 23 0c3.866 0 7 3.138 7 7.006v9.988C30 20.864 26.858 24 23 24c-3.866 0-7-3.138-7-7.006V7.006zm2-.01C18 4.235 20.244 2 23 2c2.76 0 5 2.236 5 4.995v10.01C28 19.765 25.756 22 23 22c-2.76 0-5-2.236-5-4.995V6.995z' fill='%23000000' fill-opacity='0.1' fill-rule='even'/%3E%3C/svg%3E");
    background-size: 75px 100px;
    border: 1px solid var(--playerColor);
    overflow: hidden;
    box-shadow: inset 0px 0px 200px 0px rgba(0, 0, 0, 0.2);
    transition: all .2s ease-in-out;
}

.catItem h3{
    position: absolute;
    z-index: 2;
    text-transform: uppercase;
    font-size: 20px;
    text-shadow: 0px 0px 1px black;
    padding-left: 10px;
    bottom: 4px;
    color: #DCD6F7;
}

.darkenCat{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent);
}

/* ----- LOGIN SCREEN ----- */

.pageBar{
    width: 100%;
    display: flex;
    height: calc(env(safe-area-inset-top) + 50px);
    align-items: flex-end;
    padding-bottom: 10px;
    padding-inline: 15px;
    justify-content: flex-start;
    gap: 15px;
    border-bottom: 1px solid var(--playerColor);
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
}

.pageBar button{
    background: none;
    border: none;
    margin-bottom: 0px;
}

.pageBar button i{
    color: var(--offWhite);
    font-size: 23px;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    padding-left: 6.7px;
    padding-right: 8.2px;
    padding-block: 2.8px;
}

.pageBar h2{
    transition: all .25s ease-in-out;
}

.closeCurrentScreen{
    position: absolute;
    top: 50px;
    bottom: 0;
    left: 0;
    width: 7vw;
    z-index: 9;
}

.loginScreen, .LicenseAndProfileScreen{
    position: absolute;
    top: 0px;
    min-height: 100vh;
    left: 0;
    width: 100vw;
    background-color: var(--bodyBg);
    background-image: var(--sidePageback);
    z-index: 999;
    pointer-events: none;
    transform: translateX(100%);
    transition: all .3s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden !important;
}

.LicenseAndProfileScreen hr{
    margin-block: 15px;
}

.profileSS{
    padding-bottom: 125px !important;
}

.profileSS form{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.profileSS form .accPhotoWrapper{
    position: relative;
}

.profileSS form .accPhotoWrapper img{
    background-color: transparent;
    width: calc(40vw + 10px);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    max-width: 250px;
    border-radius: 50%;
    border: 2px solid var(--offWhite);
    padding: 5px;
    filter: drop-shadow(0px 0px 50px rgba(141, 111, 252, 0.2));
}

.profileSS form .accPhotoWrapper i{
    background-color: var(--offWhite);
    color: var(--bodyBg);
    border-radius: 10px;
    padding: 10px;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.profileSS h5{
    color: var(--offWhiteDark);
    font-weight: 300;
    margin-top: -20px;
}

#saveAccount{
    width: 70vw;
    max-width: 250px;
    background-color: var(--offWhite);
    border: 1px solid var(--playerColor);
    padding: 15px;
    border-radius: 10px;
    color: var(--bodyBg) !important;
    font-weight: 700;
    font-size: 15px;
    margin-top: 5px;
}

.photoPicker{
    width: 90vw;
    max-width: 300px;
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(3, 1fr);
}

.photoPicker img{
    animation: imgWiggle 5s infinite;
    width: 100%;
    background-color: transparent;
    filter: drop-shadow(0px 0px 50px rgba(141, 111, 252, 0.2));
    pointer-events: all !important;
}

@keyframes imgWiggle {
    0%{ transform: rotate(0deg); }
    10%{ transform: rotate(0deg); }
    13%{ transform: rotate(5deg); }
    16%{ transform: rotate(0deg); }
    100%{ transform: rotate(0deg); }
}

.loginScreen .pageBar, .LicenseAndProfileScreen .pageBar{
    background-color: var(--footerBg) !important;
    backdrop-filter: var(--gmBackdrop);
    -webkit-backdrop-filter: var(--gmBackdrop);
    z-index: 3;
}

.loginScreenOpen, .LicenseAndProfileScreenOpen{
    transform: translateX(0%);
    pointer-events: all;
}

.loginScreen .screenScrollable, .LicenseAndProfileScreen .screenScrollable{
    position: absolute;
    top: 0;
    padding-top: calc(env(safe-area-inset-top) + 50px);
    padding-bottom: 225px;
}

.LicenseAndProfileScreen .screenScrollable{
    padding-inline: 15px;
    padding-top: calc(env(safe-area-inset-top) + 60px);
}

.loginForm, .bugReportForm{
    padding: 10px;
    margin: auto;
    margin-top: 25px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    min-width: calc(100vw - 20px);
    max-width: 500px;
    transition: all .4s ease-in-out;
}

.loginForm{
    background-color: var(--footerBg);
    border: 1px solid var(--playerColor);
    width: 90vw;
    padding: 25px;
    padding-top: 25px;
    margin-top: -25px;
}

.bugReportForm{
    margin-top: 0px;
    padding: 20px;
    gap: 10px;
    margin: 0px;
}

.loginCrimsonLogo{
    width: 50px;
    margin-top: 20px;
    margin-inline: auto;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    z-index: 2;
}

.loginForm hr{
    margin-top: 10px;
    margin-bottom: 5px;
}

.loginForm h2{
    width: 100%;
    margin-bottom: 10px;
}

.loginForm input, .bugReportForm input, .bugReportForm textarea{
    width: 100%;
    padding: 12.5px;
    border-radius: 7.5px;
    border: none;
    font-size: 13px;
    border: 1px solid var(--playerColor);
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
    background-color: var(--footerBg);
    color: var(--offWhite);
    margin-top: 7px;
}

.bugReportForm input, .bugReportForm textarea{
    margin-top: 0px;
}

.bugReportForm input[type="submit"]{
    color: var(--bodyBg);
}

.bugReportForm textarea{
    min-width: 100%;
    min-height: 40vh;
    resize: none;
}

.bugReportForm i{
    font-size: 30px;
    margin-bottom: 10px;
}

@media screen and (max-height: 550px) {
    .bugReportForm i{
        display: none;
    }
}

.loginForm h5{
    font-size: 11px;
    width: 100%;
    text-align: center;
    color: var(--offWhiteDark);
    font-weight: 400;
}

#alreadtAcc{
    margin-top: 10px;
    font-size: 14px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--mainColorLighter2);
    opacity: 1; /* Firefox */
}
  
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--mainColorLighter2);
}
  
::-ms-input-placeholder { /* Microsoft Edge */
    color: var(--mainColorLighter2);
}

.buttonField{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
    gap: 5px;
}

.buttonField input, .buttonField button{
    border-radius: 10px;
    background-color: var(--offWhite);
    color: var(--bodyBg);
    border: 2px solid transparent;
    padding: 15px;
    font-size: 13px;
    font-weight: 600;
}

#registerBtn, #loginBtn{
    border: 2px solid var(--offWhite);
    background-color: transparent;
    color: var(--offWhite);
}

.buttonField input{
    border: 1px solid var(--offWhite);
    color: var(--offWhite);
}

.loggedInScreen{
    padding: 15px;
    width: 100%;
    min-width: 275px;
    transition: all .4s ease-in-out;
    display: flex;
    gap: 15px;
    flex-direction: column;
}

hr{
    width: 100%;
    height: 1px;
    border: none;
    border-radius: 5px;
    background-color: var(--playerColor);
}

.accountSection{
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-width: 275px;
    align-items: center;
    border: none;
    background-color: transparent;
    color: var(--offWhite);
    text-align: left;
}

.accountInfo{
    display: flex;
    align-items: center;
    gap: 15px;
}

.accountInfo img{
    width: 45px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 2px solid var(--offWhite);
    border-radius: 50%;
    background-color: transparent !important;
    padding: 3px;
    box-shadow: 0px 0px 125px var(--accentColor);
}

.loggedInScreen h2{
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
}

.loggedInScreen h5{
    color: var(--offWhiteDark);
    font-size: 13px;
    font-weight: 300;
}

/* ----- THEME IN SETTINGS ----- */

.themeSection{
    width: 100%;
}

.themeSection div{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 5px;
}

.themeSection h2{
    font-size: 20px;
}

.themeItem{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.themeItem img{
    border-radius: 0px !important;
    width: 85%;
    max-width: 100px;
    aspect-ratio: 1 / 2;
    background-color: transparent !important;
}

.themeItem h3{
    text-transform: uppercase;
    font-weight: 200;
}

.themeSection div .fullInput{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

.themeSection div input[type="checkbox"]{
    margin-right: 0px !important;
    width: 30px;
    height: 30px;
}

/* ----- VERSION IN SETTINGS ----- */

.versionSection{
    display: flex;
    flex-direction: column;
}

.versionSection img{
    width: 50px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid var(--playerColor);
}

.versionSection h2{
    font-size: 20px;
}

.versionSection h5{
    font-size: 10px;
    line-height: 10px;
    font-weight: 300;
    margin-top: 5px;
}

/* ----- LOG OUT IN SETTINGS ----- */

.logOutSection{
    width: 100%;
    margin-top: 15px;
    display: grid;
    place-content: center;
}

.logOutSection button{
    background-color: var(--accentColor) !important;
    color: var(--offWhite) !important;
    box-shadow: 0px 0px 30px rgba(141, 111, 252, 0.3);
    padding-block: 11px;
    padding-inline: 30px;
    border: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
}

/* ----- TOGGLES IN SETTINGS ----- */

.toggleSection{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100% !important;
    text-align: left;
    padding: 0px !important;
    border: none !important;
    background-color: transparent !important;
}

a.toggleSection{
    text-decoration: none !important;
}

.toggleSection .toggleText{
    width: 75%;
}


.loginForm .toggleSection .toggleText h5{
    text-align: left !important;
}

.loginForm .toggleSection i{
    margin-right: 0px !important;
}

.toggleSection .toggleText h2{
    font-weight: 500 !important;
    font-size: 20px;
    color: var(--offWhite);
}

.toggleSection .toggleText h5{
    font-size: 10px;
    line-height: 10px;
    font-weight: 300;
    margin-top: 5px;
    color: var(--offWhiteDark);
}

.loginScreen input[type="checkbox"]{
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    /* Remove most all native input styles */
    appearance: none;
    /* For iOS < 15 */
    background-color: var(--mainColor);
    /* Not removed via appearance */
    font: inherit;
    color: currentColor;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    border: 1px solid var(--offWhite);
    border-radius: 10px;
    display: grid;
    place-content: center;
    margin-bottom: 10px;
    margin-right: 10px;
}

.toggleSection i, .accountSection i{
    font-size: 25px;
    width: 35px;
    height: 35px;
    display: grid;
    place-content: center;
    margin-right: 10px;
    color: var(--offWhite);
}

a.toggleSection i{
    font-size: 20px;
}

.LicenseAndProfileScreen a.toggleSection i{
    font-size: 20px;
    margin-right: -5px;
}

.loginScreen input[type="checkbox"]::before{
    content: "";
    width: 1em;
    height: 1em;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--offWhite);
    /* Windows High Contrast Mode */
    background-color: var(--offWhite);
}
  
.loginScreen input[type="checkbox"]:checked::before{
    transform: scale(1);
}

/* ----- ARTIST SCREEN ----- */

.artistScreen, .playlistScreen, .categoryScreen, .makePlaylistScreen, .bugReportScreen{
    position: absolute;
    top: 0px;
    min-height: 100vh;
    left: 0;
    width: 100vw;
    background-color: var(--bodyBg);
    z-index: 999;
    pointer-events: none;
    transform: translateX(100%);
    transition: all .3s ease-out;
    z-index: 99;
    overflow: hidden;
}

.screenOpenOnTop{
    z-index: 100 !important;
}

.screenScrollable{
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

.makePlaylistScreen .screenScrollable, .bugReportScreen .screenScrollable{
    padding-top: env(safe-area-inset-top);
}

.artistScreen .closeCurrentScreen, .playlistScreen .closeCurrentScreen, .categoryScreen .closeCurrentScreen, .makePlaylistScreen .closeCurrentScreen, .bugReportScreen .closeCurrentScreen{
    z-index: 3;
}

.artistScreenOpen, .playlistScreenOpen, .categoryPageOpen, .makePlaylistScreenOpen, .bugReportScreenOpen{
    transform: translateX(0%);
    pointer-events: all;
}

.artistScreen .pageBar, .playlistScreen .pageBar, .categoryScreen .pageBar, .makePlaylistScreen .pageBar{
    z-index: 99;
    top: 0px;
    border: none;
    border-bottom: 2px solid transparent;
    box-shadow: none;
    position: fixed;
    transition: all 0.3s ease-in-out;
}

.makePlaylistScreen .pageBar, .bugReportScreen .pageBar{
    background-color: var(--footerBg);
    backdrop-filter: var(--gmBackdrop);
    -webkit-backdrop-filter: var(--gmBackdrop);
    border-bottom: 1px solid var(--playerColor) !important;
}

.bugReportScreen .pageBar{
    gap: 0px !important;
}

.artistScreen .pageBar h2, .playlistScreen .pageBar h2, .categoryScreen .pageBar h2{
    opacity: 0;
    transition: all 0.35s ease-in-out;
    font-weight: 500;
}

.pageBarOn{
    background-color: var(--footerBg);
    backdrop-filter: var(--gmBackdrop);
    -webkit-backdrop-filter: var(--gmBackdrop);
    border-bottom: 1px solid var(--playerColor) !important;
}

.pageBarOn2{
    opacity: 0;
}

.pageBarOn h2{
    opacity: 1 !important;
    transform: translateX(0%) !important;
}

.artistScreenOpen .pageBar h2, .playlistScreenOpen .pageBar h2, .categoryScreenOpen .pageBar h2{
    transform: translateX(3vw);
}

.makePlaylistScreen .pageBar h2{
    line-height: 26px;
    font-weight: 500;
}

.makePlaylistScreenOpen .pageBar h2{
    transform: translateX(0%);
}

.artistInfo{
    width: 100%;
}

.artistInfo img{
    position: absolute;
    width: 100%;
    top: 0;
    object-fit: cover;
    height: calc(env(safe-area-inset-top) + 500px);
    border-bottom: 1px solid var(--playerColor);
    transition: all .25s ease-in-out;
}

.artistControls{
    padding-block: 5px;
    padding-inline: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: calc(env(safe-area-inset-top) + 275px);
    gap: 10px;
    padding-bottom: 14px;
    transition: all .25s ease-in-out !important;
}

.darken{
    position: absolute;
    width: 100%;
    height: 60%;
    bottom: -1px;
    background: linear-gradient(0deg, var(--bodyBg), transparent);
    z-index: 1;
}

.artistText{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    z-index: 2;
}

.artistControls h3{
    text-align: center;
    color: var(--offWhite);
    font-size: 40px;
    line-height: 40px;
    margin-block: 0px;
    z-index: 2;
}

.artistControls h5{
    width: auto;
    text-align: center;
    background: var(--bodyBg);
    box-shadow: 0px 0px 20px var(--playerColor);
    border: 1px solid var(--playerColor);
    border-radius: 10px;
    color: var(--offWhiteDark);
    font-size: 15px;
    padding-top: 5px;
    padding-bottom: 6px;
    padding-inline: 15px;
    line-height: 15px;
    margin-bottom: 0px;
    margin-top: 5px;
}

.artistBtns{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7.5px;
    z-index: 2;
}

.artistBtns button{
    background: var(--offWhite);
    color: var(--bodyBg);
    border-radius: 10px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-inline: 15px;
    font-weight: 500;
}

.artistBtns button i{
    color: var(--sidePageback);
    font-size: 20px;
}

#aboutTheArtist{
    width: 100%;
    height: 200px;
    border-radius: 10px;
    border: 1px solid var(--playerColor);
    position: relative;
    overflow: hidden;
}

#aboutTheArtist img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    z-index: -1;
}

#aboutTheArtist p{
    width: 100%;
    position: absolute;
    bottom: 0;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    color: var(--offWhiteDark);
}

.artistWork, .playlistWork, .catWork{
    width: 100%;
    padding: 15px;
    padding-bottom: 225px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2;
    background-color: var(--bodyBg);
}

.catWork{
    background: linear-gradient(180deg, transparent, var(--bodyBg), var(--bodyBg), var(--bodyBg), var(--bodyBg));
}

#catH3Title{
    text-shadow: 0px 0px 50px var(--bodyBg), 0px 0px 1px var(--bodyBg);
}

.latestRelease{
    width: 100%;
    padding: 0px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.latestRelease li{
    border: 2px solid var(--offWhite);
    background-color: var(--bodyBg);
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.5);
}

.artistAppearsOn{
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: scroll;
}

.artistAppearsOn .playlistItem img{
    box-shadow: none !important;
}

.artistSongs, .playlistSongsList{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-height: 50px;
}

.smallSideScreenBtn{
    width: 35px;
    height: 35px;
}

.bigSideScreenBtn{
    width: 130px;
    height: 35px;
}

.categoryAccentBubble{
    position: absolute;
    background: radial-gradient(closest-side, red, transparent);
    width: 200vw;
    top: -40vh;
    left: -50vw;
    height: 90vh;
    filter: blur(50px);
    transition: all 0.2s ease-in-out;
    animation: blink 4s ease-in-out infinite;
    z-index: -1;
    opacity: 0.8;
}

@keyframes blink {
    0% {
      opacity: 0.8;
      transform: translateY(0%);
    }
    50% {
      opacity: 0.6;
      transform: translateY(-5%);
    }
    100% {
      opacity: 0.8;
      transform: translateY(0%);
    }
}

.center{
    text-align: center;
}

.categoryScreen .screenScrollable .artistInfo .artistControls{
    padding-top: 160px;
    padding-bottom: 0px !important;
}

.catBanner{
    height: calc(env(safe-area-inset-top) + 200px) !important;
}

/* ----- LIBRARY / YOURS SCREEN ----- */

.yoursScreen .searchBar{
    display: none;
    transition: all .3s ease-in-out;
    position: relative !important;
    top: auto !important;
    margin-bottom: 0px !important;
    padding-block: 0px;
    width: calc(100% - 10px) !important;
    margin-left: 5px !important;
}

.favoritesItem{
    transition: all .1s ease-in-out;
    border-radius: 10px !important;
    border: none !important;
    text-align: left !important;
    padding-block: 40px;
    width: calc(100% - 40px);
    margin-left: 20px;
    background: linear-gradient(45deg,rgba(0, 0, 0, 1),rgba(0, 0, 0, 1) ,rgba(97, 0, 40, 1));
    box-shadow: 0px -150px 250px 25px rgba(90, 0, 38, 0.6);
}

.favoritesItem .songInfo img{
    background-color: black !important;
    width: 60px !important;
    border-radius: 0px !important;
    border: none;
    filter: hue-rotate(-20deg) saturate(0.6) brightness(0.7);
}

.favoritesItem .songInfo .songText h2{
    font-size: 25px;
    color: #DCD6F7;
    line-height: 25px;
    font-family: 'Outfit', sans-serif !important;
}

.favoritesItem .songInfo .songText h3{
    font-family: 'Outfit', sans-serif !important;
    font-size: 13px;
    line-height: 13px;
    margin-bottom: 3px;
    opacity: 0.7;
    color: #8a85a1;
}

.yoursScreen .searchBarOn{
    display: flex;
    /* animation: showUp .3s ease-in-out; */
}

/* ----- MAKE A PLAYLIST ----- */

.makePlaylistForm{
    height: calc(100% - 50px);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.formImageInput{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.formImageInput div{
    background-color: rgb(26, 14, 20);
    width: 70vw;
    max-width: 250px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--playerColor);
    border-radius: 10px;
    color: var(--playerColor);
    box-shadow: 0px 0px 20px black;
    background-size: cover;
}

.formImageInput div i{
    font-size: 50px;
    color: var(--playerColor);
    text-shadow: 0px 0px 20px black;
}

.formImageInput input{
    display: none;
}

#nameInput{
    padding: 10px;
    width: 70vw;
    max-width: 250px;
    border-radius: 10px;
    border: 1px solid var(--playerColor);
    background-color: var(--mainColorLighter);
    color: var(--offWhite);
}

#submitMakePlaylist{
    width: 70vw;
    max-width: 250px;
    background-color: var(--offWhite);
    border: 1px solid var(--playerColor);
    padding: 15px;
    border-radius: 10px;
    color: var(--bodyBg) !important;
    font-weight: 700;
    font-size: 15px;
}

/* ----- POPUP ----- */

#popupWrapper{
    top: 0px;
    height: 100vh;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0);
    position: fixed;
    z-index: 9999;
    gap: 15px;
    padding: 15px;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}

.popupOpen{
    background-color: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(2px) brightness(0.65);
    -webkit-backdrop-filter: blur(2px) brightness(0.8);
    pointer-events: all !important;
}

.closePopup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.popupScreen{
    width: 100%;
    height: 60%;
    background: var(--popupScreenBg);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-top: 1px solid #242027;
    position: absolute;
    overflow: scroll;
    bottom: 0px;
    left: 0px;
    transform: translateY(300%);
    transition: all 0.5s ease-in-out;
    overflow: scroll;
}

.popupOpen .popupScreen{
    transform: translateY(0%);
}

.popupPl{
    top: 0px !important;
    height: 100% !important;
    border-radius: 0px;
    border-top: 1px solid transparent;
    padding-top: env(safe-area-inset-top);
}

@media screen and (orientation: landscape) {
    #popupWrapper{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .popupScreen{
        position: relative;
        width: 40%;
        border: 1px solid var(--playerColor);
        border-radius: 30px;
        transition: all 0.3s ease-in-out;
    }
    main{
        padding-left: env(safe-area-inset-left, 20px) !important;
        padding-right: env(safe-area-inset-right, 20px) !important;
    }
    .screenScrollable{
        padding-left: env(safe-area-inset-left, 20px) !important;
        padding-right: env(safe-area-inset-right, 20px) !important;
    }
}

#addToPlBtn{
    padding: 0px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    border-bottom: none;
}

#addToPlBtn .playlistAddPopup{
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 22px;
    padding: 15px;
    border-bottom: 1px solid #242027;
    font-weight: 100;
    padding: 20px;
    transition: all .3s ease-in-out;
    width: 100%;
}

#addToPlBtn #closePopupPlBtn{
    background-color: var(--offWhite);
    border: none;
    border-radius: 9px;
    padding-inline: 45px;
    padding-block: 11px;
    margin-top: 5px;
    display: none;
    color: var(--bodyBg);
}

.popupMyPlaylists{
    display: none;
    margin-top: 5px;
    margin-bottom: calc(env(safe-area-inset-bottom) + 15px);
    width: calc(100% - 30px);
}

.popupMyPlaylists .songItem{
    overflow: hidden;
    position: relative;
}

.popupMyPlaylists .songItem .songInfo{
    width: calc(100% - 45px);
}

.popupPl .songPopupBody #addToPlBtn .popupMyPlaylists{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popupPl .songPopupBody #addToPlBtn #closePopupPlBtn{
    display: block;
}

.greenSidePl{
    position: absolute;
    width: 70%;
    height: 200%;
    right: -20%;
    top: -50%;
    z-index: -1;
    pointer-events: none;
    filter: blur(20px);
    background: linear-gradient(90deg, transparent, rgba(172, 255, 47, 0.4));
    opacity: 0;
    transition: all .4s ease-in-out;
}

.checkAnim{
    transition: all .2s ease-in-out;
    color: var(--offWhite);
}

.greenCheck button i{
    color: greenyellow !important;
}

.greenCheck .greenSidePl{
    opacity: 1;
}

.popupInfo{
    align-items: center;
    padding-bottom: 10px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #242027;
    padding: 20px;
    padding-top: 35px;
    color: #DCD6F7;
}

.popupInfo img{
    width: 75px;
    border-radius: 10px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.popupText{
    flex-grow: 1;
    color: #DCD6F7;
}

.popupText h2{
    font-size: 22px;
    line-height: 22px;
    font-weight: 500;
    color: var(--offWhite);
    text-align: center;
}

.popupText h3{
    font-size: 13px;
    line-height: 13px;
    font-weight: 300;
    color: #8a85a1;
    text-align: center;
}

.popupInfo i{
    font-size: 25px;
    margin-right: 10px;
}

.popupItem{
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 22px;
    padding: 15px;
    border-bottom: 1px solid #242027;
    font-weight: 100;
    padding: 20px;
    transition: all .3s ease-in-out;
}

.popupItem h5{
    font-weight: 500;
    transition: none;
    color: var(--offWhite);
}

.popupItem i{
    font-size: 20px;
    color: var(--offWhite);
}

.likeBtnAnim2{
    animation: danceBtn 0.3s;
}

@keyframes danceBtn {
    0%{
        background-color: rgba(255, 0, 0, 0);
        filter: brightness(1);
    }
    50%{
        background-color: rgba(111, 0, 255, 0.15);
        filter: brightness(2);
    }
    100%{
        background-color: rgba(255, 0, 0, 0);
        filter: brightness(1);
    }
}

/* ----- SORT POPUP ----- */

.sortPopup{
    position: absolute;
    top: var(--sortPopupTop);
    left: var(--sortPopupLeft);
    width: 40%;
    min-width: 120px;
    height: auto;
    background: var(--popupScreenBg);
    border-radius: 10px;
    border: 1px solid var(--playerColor);
    box-shadow: 0px 0px 20px black;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    list-style: none;
    z-index: 9999;
    transition: all .15s ease-in-out, top 0s, left 0s;
    transform: translate(5px, -5px);
    opacity: 0;
    pointer-events: none;
}

.sortPopupOpen .sortPopup{
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: all;
}

.sortPopup h4{
    width: 100%;
    background-color: var(--bodyBgMP);
    text-align: center;
    padding: 5px;
    border-bottom: 1px solid #242027;
}

.sortPopup li{
    text-align: center;
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid #242027;
}

.sortPopup li:last-child{
    border-bottom: none;
}

.popupBackgroundBlur{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(5px);
    transition: all .15s ease-in-out;
    z-index: 9998;
    pointer-events: none;
    opacity: 0;
}

.sortPopupOpen .popupBackgroundBlur{
    opacity: 1;
    pointer-events: all;
}

/* ----- PLAYER ----- */

.player{
    position: fixed;
    left: 0;
    right: 0;
    top: auto;
    bottom: calc(-100svh + 85px + env(safe-area-inset-bottom)*0.6);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    height: calc(100svh + 55px) !important;
    transition: all .2s ease-out, padding-top 0s;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    background-color: transparent;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.darkenPlayer{
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: black;
    opacity: 0;
    transition: all .3s ease-in-out;
}

.songBackdrop{
    opacity: 0;
    position: absolute;
    height: calc(100vh + 120px);
    top: -60px;
    left: -60px;
    width: calc(100vw + 120px);
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
    filter: brightness(0.5) blur(50px) saturate(2.5);
    -webkit-transform: translate3d(0, 0, 0) translateZ(0);
    -moz-transform: translate3d(0, 0, 0) translateZ(0);
    -ms-transform: translate3d(0, 0, 0) translateZ(0);
    -o-transform: translate3d(0, 0, 0) translateZ(0);
    transform: translate3d(0, 0, 0) translateZ(0);
    transition: all 0s !important;
}

.playerOpen .songBackdrop{
    opacity: 1;
}

.playerSongInfo img{
    border-radius: 5px;
    width: 40px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-block: 2px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
}

.playerSongNames{
    position: relative;
}

#openArtistPageBigBtn{
    position: absolute;
    width: 50%;
    height: 100%;
    z-index: 2;
}

/* ----- LANDSCAPE ORIENTATION ----- */
@media screen and (orientation: landscape) {
    .playerSongInfo img{
        width: 45px;
        margin-block: 7px;
    }
}

.playerOpen{
    bottom: 0;
    padding-top: 50px;
    background-color: var(--currentSongColorBig);
    border-top: 1px solid #242027;
    overflow: hidden;
}

.player .draggableBarTop{
    display: none;
}

.player .draggableBarTop div{
    background-color: #DCD6F7 !important;
}

.playerOpen .draggableBarTop{
    display: flex;
}

@media screen and (orientation: landscape) {
    .playerOpen{
        height: calc(100svh);
    }
    .player{
        top: auto !important;
    }
    .miniPlayer{
        bottom: 5px !important;
        margin: 0px !important;
        padding-top: 10px !important;
        border-radius: 0px !important;
    }
    .miniSeek{
        top: 3px !important;
        height: 4px !important;
        border-radius: 30px !important;
        overflow: hidden !important;
        transition: all .2s ease-in-out !important;
        cursor: pointer;
        z-index: 2;
    }
    .miniSeek:hover{
        top: 2px !important;
        height: 6px !important;
    }
    #miniSeekBar{
        border-radius: 30px !important;
    }
}

.player .pageBar{
    display: none;
    justify-content: space-between;
    box-shadow: none;
    border: none;
    transition: all .2s ease-in-out;
    padding-top: max(var(--topInsetArea), 45px) !important;
    padding-bottom: 20px !important;
    z-index: 4;
    height: 50px;
}

.playerOpen .pageBar{
    display: flex;
}

.player .pageBar h2{
    font-weight: 200 !important;
    color: #8a85a1;
    transform: translateX(0%) !important;
    font-size: 17px;
    line-height: 17px;
    text-shadow: 0px 0px 20px black;
    flex-grow: 1;
    pointer-events: none;
    margin-bottom: 8px;
    margin-right: 2px;
    text-align: center;
}

.smallH2{
    margin-bottom: 0px !important;
    font-size: 14px !important;
    line-height: 14px !important;
}

.player .pageBar span{
    font-weight: 300;
    color: #DCD6F7;
}

.player .pageBar button i{
    color: #DCD6F7;
    background-color: transparent !important;
}

.player .pageBar button{
    z-index: 2;
    background-color: transparent !important;
    width: 30px;
}

/* MINIPLAYER */
.miniPlayer{
    display: flex;
    justify-content: space-between;
    padding: 5px;
    transition: opacity .1s ease-in-out, margin .4s ease-in-out;
    z-index: 2;
    position: relative;
    background-color: var(--footerBg);
    backdrop-filter: var(--gmBackdrop);
    -webkit-backdrop-filter: var(--gmBackdrop);
    margin: 10px;
    border-radius: 10px;
    border: 1px solid var(--playerColor);
    box-shadow: 0px calc(110px + env(safe-area-inset-bottom)*0.6) 60px 100px var(--bodyBg);
}

.playerOpen .miniPlayer .playerClickDiv{
    display: none;
}

.playerClickDiv2Lyrics{
    display: none !important;
}

.playerOpen .playerClickDiv2{
    display: block;
}

.playerOpen .miniPlayer{
    display: none;
}

.miniSeek{
    position: absolute;
    top: -1px;
    left: 10px;
    width: calc(100% - 20px);
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

#miniSeekBar{
    width: 0%;
    height: 100%;
    background-color: var(--offWhite);
}

.playerSongInfo{
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 18px;
    margin-left: 3px;
}

.miniPlayer .playerSongInfo .playerSongText h2{
    width: 57vw !important;
}

.playerSongText h2{
    font-size: 16px;
    line-height: 21px;
    overflow-x: hidden;
    overflow-y: visible;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 62vw;
    font-weight: 500;
    color: var(--offWhite);
    position: relative;
}

.playerSongText h2 div{
    white-space: nowrap;
    width: 100%;
}

.playerSongText h3{
    font-size: 13px;
    color: var(--offWhiteDark);
    font-weight: 300;
    overflow-x: hidden;
    overflow-y: visible;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 57vw;
    line-height: 15px !important;
    margin-bottom: 2px;
}

.playerSongBtns{
    display: flex;
    gap: 15px;
    padding-right: 5px;
    z-index: 2;
}

.playerSongBtns button{
    background: none;
    border: none;
}

.playerSongBtns i{
    font-size: 27.5px;
    color: var(--offWhite);
    text-shadow: 0px 0px 30px var(--bodyBg);
}

.playerClickDiv{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: calc(100% - 95px);
}

.playerClickDiv2{
    position: fixed;
    top: 0vh;
    bottom: 10vh;
    z-index: 1;
    left: -5vw;
    width: 120vw;
    display: none;
}

/* BIGPLAYER */

.bigPlayer{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bigSongInfo{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
    padding-top: 100px;
    gap: 10px;
    padding-bottom: 0px;
    transition: all .4s ease-in-out;
}

.bigSongInfo img{
    width: 87vw;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 0px 65px 5px rgba(0, 0, 0, 0.7);
    z-index: 0;
    margin-bottom: 2.5vh;
    transition: all .35s ease-in-out;
    animation: popInBanner .45s ease-in-out;
}

.bannerFromRight{
    animation: bannerFromRight 0.5s ease-in-out;
}

.bannerFromLeft{
    animation: bannerFromLeft 0.5s ease-in-out;
}

@keyframes bannerFromRight {
    from{
        transform: translateX(100vw);
    }
    to{
        transform: translateX(0);
    }
}

@keyframes bannerFromLeft {
    from{
        transform: translateX(-100vw);
    }
    to{
        transform: translateX(0);
    }
}

.playerBannerAway{
    position: absolute;
    transform: translateX(200%) !important;
}

@keyframes popInBanner {
    0%{ transform: translateX(200%); }
    1000%{ transform: translateX(0%); }
}

.playerMovable{
    transition: none !important;
}

/* ---- ORIENT - LANDSCAPE PLAYER */

@media screen and (orientation: landscape) {
    .bigSongInfo{
        flex-direction: row;
    }
    .bigSongInfo img{
        width: 30% !important;
    }
}

.bigSongInfo .playerSongText{
    text-align: left;
    width: 98%;
    padding-top: 10px;
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
    transition: all .45s ease-in-out;
    animation: popInBanner .45s ease-in-out;
}

.littleSongBtns{
    display: flex;
    align-items: center;
    gap: 20px;
}

.bigSongInfo .playerSongText h2{
    font-size: 22px;
    line-height: 25px;
    text-align: left;
    overflow: scroll;
    overflow-y: visible;
    text-overflow: clip;
    white-space: nowrap;
    flex-grow: 1;
    font-weight: 500;
    color: #DCD6F7;
}

.bigSongInfo .playerSongText h3{
    line-height: 14px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: left;
    overflow: scroll;
    overflow-y: visible;
    text-overflow: clip;
    white-space: nowrap;
    flex-grow: 1;
    color: #8a85a1;
}

.bigSongInfo .playerSongText button{
    border: none;
    background: none;
}

.bigSongInfo .playerSongText button i{
    color: #DCD6F7;
    font-size: 24px;
}

.playerLyrcis{
    padding-block: 65px;
    position: relative;
    width: 85vw;
    height: 60vh;
    overflow-y: scroll;
    overflow-x: hidden;
    display: none;
    margin-bottom: 25px;
    z-index: 99;
    font-size: 2.1rem;
    line-height: 2.2rem;
    font-weight: 500;
    text-align: left;
    transition: all .35s ease-in-out;
    animation: popInLyrics .45s ease-in-out;
    color: #DCD6F7 !important;
}

.playerLyrcis br{
    content: " ";
    display: block;
    margin-block: 30px;
}

@keyframes appear {
    0%{ opacity: 0; }
    100%{ opacity: 1; }
}

.playerLyricsAway{
    position: absolute;
    transform: translateX(-200%);
}

@keyframes popInLyrics {
    0%{ transform: translateX(-200%); }
    1000%{ transform: translateX(0%); }
}

.bigControls{
    position: absolute;
    top: 0px;
    bottom: 0;
    padding-bottom: calc(env(safe-area-inset-bottom));
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all .1s linear;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    pointer-events: none;
}

.playerOpen .bigPlayer .bigControls{
    opacity: 1;
}

.playerOpen .bigPlayer .bigControls{
    pointer-events: all;
}

.bigControls .bipCC{
    width: 85vw;
    padding: 0px;
    padding-bottom: 30px;
    position: relative;
    z-index: 3;
}

.bigControls .bipCC input{
    width: 100%;
    height: 5px;
}

.bigControls .bipCC span{
    position: absolute;
    font-size: 10px;
    color: #8a85a1;
    top: 50%;
}

#currentSongTime{
    left: 0px;
}

#currentSongTimeLeft{
    right: 0px;
}

.bpCC{
    display: flex;
    justify-content: space-between;
    width: 90vw;
    max-width: 650px;
    align-items: center;
    z-index: 3;
}

.bpCC button{
    background: none;
    border: none;
}

.bpCC button i{
    color: #DCD6F7;
    font-size: 1.9rem;
    width: 55px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bigPlayButton{
    aspect-ratio: 1 / 1;
}

.bigPlayButton i{
    color: var(--mainColor);
    font-size: 3.9rem !important;
    margin-inline: 5px;
}

.rewindButton i{
    font-size: 2.3rem !important;
}

.bCC{
    display: flex;
    width: 90vw;
    max-width: 650px;
    justify-content: space-between;
    gap: 15px;
    margin-top: 10px;
    z-index: 3;
}

.bCC button{
    background: none;
    border: none;
}

.bCC button i{
    color: #DCD6F7;
    font-size: 15px;
    width: 25px;
    margin-inline: 10px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ----- NAV ----- */

nav{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--footerBg);
    backdrop-filter: var(--gmBackdrop);
    -webkit-backdrop-filter: var(--gmBackdrop);
    width: 100%;
    margin-left: 0px;
    gap: 10px;
    flex-shrink: 0;
    bottom: -1px;
    left: 0;
    right: 0;
    padding-block: 10px;
    padding-bottom: calc(env(safe-area-inset-bottom)*0.6 + 15px);
    padding-inline: 15px;
    margin-bottom: 0px;
    z-index: 1001;
    transition: all 0.4s ease-in-out, backdrop-filter 0s, -webkit-backdrop-filter 0s, background-color 0s;
    border-top: 1px solid var(--playerColor);
    box-shadow: none;
}

.navNoPlayer{
    box-shadow: 0px 50px 50px 75px var(--bodyBg) !important;
}

.navClosed{
    background-color: var(--footerBgHO);
    transform: translateY(200%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.navBig{
    display: none;
    top: env(safe-area-inset-top, 0px);
    align-items: center;
    padding-bottom: 10px !important;
    height: 60px;
    border-top: none;
    border-bottom: 1px solid  var(--playerColor);
    background-color: var(--footerBg);
    backdrop-filter: var(--gmBackdrop);
    -webkit-backdrop-filter: var(--gmBackdrop);
    justify-content: flex-start;
}

.navBig img{
    width: 40px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 10px;
}

.navBig div{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    display: none;
    pointer-events: none;
}

nav button{
    height: 100%;
    border-radius: 10px;
    background-color: transparent;
    outline: none;
    border: none;
    flex-grow: 1;
    flex-shrink: 0;
    transition: all .2s linear;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    color: var(--offWhite);
    font-weight: 600;
    font-size: 11px;
    font-family: 'Outfit', sans-serif !important;
}

.navBig button{
    max-width: 150px;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: var(--offWhite);
    font-weight: 600;
    gap: 10px;
    transition: all 0.2s ease-in-out;
    font-size: 17px;
    padding-block: 20px;
    border: 1px solid transparent;
}

.navBig button:hover{
    filter: brightness(1.75);
    background-color: var(--bodyBg);
    border: 1px solid var(--playerColor);
}

.activeScreen{
    color: var(--accentColor);
}

.navBig .activeScreen{
    background-color: transparent;
}

.navBig button i{
    font-size: 20px;
}

nav button i{
    font-size: 15px;
    color: var(--offWhite);
    animation: none;
}

.activeScreen i{
    color: var(--accentColor) !important;
    animation: navBtnAnim 0.5s ease-in-out;
}

@keyframes navBtnAnim {
    0%{ transform: translateY(0px); }
    25%{ transform: translateY(3px); }
    50%{ transform: translateY(0px); }
    75%{ transform: translateY(-1px); }
    100%{ transform: translateY(0px); }
}

/* ----- MAX WIDTH 450px ----- */

@media (max-width: 450px) {
    .loginForm{
        min-width: 75% !important;
    }
}

/* ----- MAX WIDTH 370px ----- */

@media (max-width: 370px) {
    .bpCC{
        gap: 3vw;
    }
    .bpCC button i{
        font-size: 1.5rem;
    }
    .bigPlayButton i{
        font-size: 3.2rem !important;
    }
    .rewindButton i{
        font-size: 1.7rem !important;
    }
}

/* ----- MAX WIDTH 335px ----- */

@media (max-width: 335px) {
    .bpCC{
        gap: 1vw;
    }
    .bigPlayButton i{
        font-size: 3rem !important;
    }
}

/* ----- MAX WIDTH 300px ----- */

@media (max-width: 300px) {
    .bpCC{
        gap: 0vw;
    }
    .bigPlayButton i{
        font-size: 2.5rem !important;
    }
    .bpCC button i{
        font-size: 1.2rem;
    }
    .rewindButton i{
        font-size: 1.4rem !important;
    }
    .popupItem h5{
        font-size: 15px;
    }
    .popupInfo i{
        display: none;
    }
    .popupInfo img{
        width: 50px;
    }
}

/* ----- MIN WIDTH 400px ----- */

@media (min-width: 400px) {
    .bpCC{
        gap: 5vw;
    }
    .bpCC button i{
        font-size: 2rem;
    }
    .bigPlayButton i{
        color: var(--mainColor);
        font-size: 3.6rem !important;
        margin-inline: 5px;
    }
    .rewindButton i{
        font-size: 2.3rem !important;
    }
    .bigControls img{
        width: 100% !important;
        max-width: calc(100vw - 60px) !important;
    }
}

/* ----- MIN WIDTH 500px ----- */

@media (min-width: 500px){
    main{
        padding-top: calc(env(safe-area-inset-top) + 60px);
    }
    nav{
        display: none;
    }
    .navBig{
        display: flex;
        justify-content: center;
    }
    header{
        display: none !important;
    }
    .player{
        bottom: calc(-100svh + 15px + env(safe-area-inset-bottom));
    }
    .playerOpen{
        height: calc(100svh);
    }
    .bigSongInfo img{
        width: 57.5vw !important;
    }
    .artistScreen, .playlistScreen, .categoryScreen{
        top: 60px;
        border-top: 1px solid var(--playerColor);
    }
    .loginScreen, .LicenseAndProfileScreen{
        top: 60px;
    }
    .makePlaylistScreen, .bugReportScreen{
        top: 60px
    }
    .searchBar{
        background-color: var(--footerBg);
        backdrop-filter: blur(15px) brightness(1.2);
        border-bottom: 1px solid var(--playerColor);
        -webkit-backdrop-filter: blur(15px) brightness(1.2);
    }
    .yoursScreen .searchBar{
        background-color: none !important;
        backdrop-filter: none !important;
        border: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

/* ----- MIN WIDTH 900px ----- */

@media (min-width: 900px){
    .navBig div{
        display: flex;
    }
    .navBig{
        justify-content: flex-start;
    }
}

/* ----- MIN HEIGHT 570px ----- */

@media screen and (max-height: 570px){
    .bigSongInfo img{
        width: 100%;
        aspect-ratio: 1 / 1;
    }
    .loginForm{
        margin-top: 10px;
    }
}

/* ----- MIN HEIGHT 515px ----- */

@media screen and (max-height: 515px){
    .loginForm input{
        padding: 13px;
        padding-inline: 15px;
    }
    .loginForm button{
        padding: 13px;
    }
}

/* ----- MIN HEIGHT 500px ----- */

@media screen and (max-height: 500px){
    .loginForm input{
        padding: 10px;
        padding-inline: 15px;
    }
    .loginForm button{
        padding: 10px;
    }
    .popupScreen{
        height: 80%;
    }
}

#autoplayBtn{
    display: flex;
    align-items: center;
    font-size: 9px;
    gap: 5px;
    color: var(--accentColor);
}

#autoplayBtn i{
    color: var(--accentColor);
    margin: 0;
    margin-right: 10px;
}

#autoplayBtn.activeBtn{
    color: var(--offWhite);
}

#autoplayBtn.activeBtn i{
    color: var(--offWhite);
    margin: 0;
    margin-right: 10px;
}

.draggableBarTop{
    position: absolute;
    width: 100%;
    height: 5px;
    top: 15px;
    display: flex;
    justify-content: center;
}

.draggableBarTop div{
    width: 40px;
    border-radius: 20px;
    background-color: var(--offWhite);
}

/* ----- THIS MONTHS FEATURE ----- */

.thisMFSection{
    transition: all .15s ease-in-out;
}

.thisMFDiv{
    position: relative;
    display: flex;
    gap: 15px;
    margin-top: 15px;
    margin-left: 20px;
    width: calc(100% - 40px);
    height: 150px;
    background-color: rgba(53, 40, 63, 0.9);
    background-image: url('videos/ThisMF.gif');
    background-size: cover;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 0px 50px rgba(48, 138, 173, 0.2);
    transition: all .25s ease-in-out;
}

#artistMFBanner{
    height: 100%;
    aspect-ratio: 1 / 1;
    border-right: 2px solid rgba(48, 138, 173, 1);
    object-fit: cover;
    transition: all .25s ease-in-out;
}

.thisMFDiv div{
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 15px;
}

.thisMFDiv div h2{
    color: #DCD6F7;
    font-size: 32.5px;
    font-weight: 900;
    letter-spacing: 1px;
    font-family: 'Bebas Neue', sans-serif !important;
    text-shadow: 0px 0px 20px black;
}

.thisMFDiv div h5{
    color: #8a85a1;
    font-weight: 400;
    line-height: 12.8px;
    text-shadow: 0px 0px 20px black;
}

.thisMFDiv div .songItem{
    position: relative;
    margin-top: 17px;
    width: 100%;
    background-color: rgba(151, 27, 139, 0.4);
    box-shadow: 0px 0px 25px rgba(151, 27, 139, 0.8);
}

.thisMFDiv div .songItem .songInfo{
    display: flex;
    flex-direction: row;
}

.thisMFDiv div .songItem .songClickDiv{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.thisMFDiv div .songItem .songText h2{
    width: 100%;
}

.thisMFDiv div .songItem .songText h3{
    width: 100%;
}

.thisMFDiv div .songItem .songBtns{
    padding-right: 0px;
}

.thisMFSection button{
    border-radius: 9px;
    width: 100%;
    padding-block: 10px;
    margin-top: 30px;
    border: none;
    background-color: rgba(48, 138, 173, 1);
    box-shadow: 0px 0px 100px var(--offWhite);
    color: black;
}

.displayNone{
    display: none !important;
}

.likeBtnAnim{
    animation: likeBtnAnimation .4s ease-in-out;
}

.likeBtnAnim i{
    animation: likeBtnAnimationIAdd .4s ease-in-out;
}

.likeBtnAnimDel{
    animation: likeBtnAnimation .4s ease-in-out;
}

.likeBtnAnimDel i{
    animation: likeBtnAnimationIDel .4s ease-in-out;
}

@keyframes likeBtnAnimation{
    0%{ transform: scale(1);  }
    25%{ transform: scale(1.1); }
    50%{ transform: scale(1); }
    75%{ transform: scale(1.05); }
    100%{ transform: scale(1); }
}

@keyframes likeBtnAnimationIAdd{
    0%{ color: auto; }
    50%{ color: var(--accentColor); }
    100%{ color: auto; }
}

@keyframes likeBtnAnimationIDel{
    0%{ color: auto; }
    50%{ color: rgb(212, 66, 90); }
    100%{ color: auto; }
}

/* ----- BUG BUTTON ----- */

.bugSection button{
    position: relative;
    margin-top: 10px;
    margin-left: 20px;
    width: calc(100% - 40px);
    padding-block: 10px;
    text-align: right;
    padding-right: 15px;
    color: var(--offWhite);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    border: 2px solid var(--offWhite);
    text-shadow: 0px 0px 30px black;
    box-shadow: 0px 0px 60px rgba(141, 111, 252, 0.3);
    border-radius: 15px;
    background-color: transparent;
    background-image: linear-gradient(45deg, rgba(206, 194, 255, 0.5), rgb(117, 92, 209,0.5));
    overflow: hidden;
}

.bugSection button span{
    display: block;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.466);
    font-size: 15px;
    line-height: 0px;
    margin-bottom: 15px;
    z-index: -1;
}

.bugSection button i{
    position: absolute;
    font-size: 25vw;
    bottom: -7vw;
    left: 3vw;
    text-shadow: 0px 0px 100px black;
    animation: bugDance 2s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes bugDance {
    0%{ transform: rotate(0deg); }
    5%{ transform: rotate(-3deg); }
    10%{ transform: rotate(0deg); }
    15%{ transform: rotate(2deg); }
    20%{ transform: rotate(0deg); }
    100%{ transform: rotate(0deg); }
}

/* ----- Login Popup ----- */

.loginPopup{
    position: fixed;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    padding: 15px;
    padding-top: max(env(safe-area-inset-top, 15px), 15px);
    padding-bottom: 50px;
    z-index: 99999;
    background: linear-gradient(180deg, rgb(19, 0, 6), transparent);
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease-in-out;
}

.loginPopupOn{
    opacity: 1;
    pointer-events: all;
}

.loginPopup div{
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    box-shadow: 0px 0px 50px rgba(255, 0, 76, 0.1);
    border: 1px solid var(--playerColor);
    background-color: var(--footerBg);
    backdrop-filter: var(--gmBackdrop);
    -webkit-backdrop-filter: var(--gmBackdrop);
    border-radius: 10px;
    padding: 15px;
    padding-inline: 17px;
    transform: translateY(-400%);
    transition: all .3s ease-in-out;
}

.loginPopupOn div{
    transform: translateY(0px);
    animation: shakeAnim 0.35s ease-in-out .3s;
}

@keyframes shakeAnim {
    0% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(2px) rotate(0.1deg); }
    50% { transform: translateX(-2px) rotate(-0.1deg); }
    75% { transform: translateX(2px) rotate(0.1deg); }
    100% { transform: translateX(0) rotate(0deg); }
   }

.loginPopup div h5{
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
}

.loginPopup div i{
    font-size: 30px;
}

/* ----- REDUCE ANIMATIONS CLASS ----- */

.noAnimTransitions{
    animation: none !important;
    transition: none !important;
}

.noPointerEvents{
    pointer-events: none !important;
}

/* ----- LOADER ----- */

.loaderWrapper{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bodyBg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: all .2s ease-in-out;
    overflow: hidden;
}

.loaderOff {
    opacity: 0 !important;
    pointer-events: none !important;
}

.loader {
    animation: rotate 1.5s infinite ease-in-out;
    height: 50px;
    width: 50px;
    filter: drop-shadow(0px 0px 50px var(--accentColor));
}
  
.loader:before,
.loader:after {
    border-radius: 50%;
    content: '';
    display: block;
    height: 20px;
    width: 20px;
}
  
.loader:before {
    animation: ball1 1s infinite;
    background-color: #a48cfa;
    box-shadow: 30px 0 0 #a48cfa;
    margin-bottom: 10px;
}
  
.loader:after {
    animation: ball2 1s infinite;
    background-color: #8d6ffc;
    box-shadow: 30px 0 0 #8d6ffc;
}
  
@keyframes rotate {
    0% {
      transform: rotate(0deg) scale(0.8);
      -webkit-transform: rotate(0deg) scale(0.8);
      -moz-transform: rotate(0deg) scale(0.8);
    }
  
    50% {
      transform: rotate(360deg) scale(1.2);
      -webkit-transform: rotate(360deg) scale(1.2);
      -moz-transform: rotate(360deg) scale(1.2);
    }
  
    100% {
      transform: rotate(720deg) scale(0.8);
      -webkit-transform: rotate(720deg) scale(0.8);
      -moz-transform: rotate(720deg) scale(0.8);
    }
}
  
@keyframes ball1 {
    0% {
      box-shadow: 30px 0 0 #b5a1fc;
    }
  
    50% {
      box-shadow: 0 0 0 #b5a1fc;
      margin-bottom: 0;
      transform: translate(15px,15px);
      -webkit-transform: translate(15px,15px);
      -moz-transform: translate(15px, 15px);
    }
  
    100% {
      box-shadow: 30px 0 0 #b5a1fc;
      margin-bottom: 10px;
    }
}
  
@keyframes ball2 {
    0% {
      box-shadow: 30px 0 0 #a48cfa;
    }
  
    50% {
      box-shadow: 0 0 0 #a48cfa;
      margin-top: -20px;
      transform: translate(15px,15px);
      -webkit-transform: translate(15px,15px);
      -moz-transform: translate(15px, 15px);
    }
  
    100% {
      box-shadow: 30px 0 0 #a48cfa;
      margin-top: 0;
    }
}

.artistItem.buttonClicked, 
.playlistItem.buttonClicked, 
.thisMFDiv.buttonClicked, 
.bugSection button.buttonClicked,
.favoritesItem.buttonClicked,
.songItem.buttonClicked,
.accountSection.buttonClicked,
.toggleSection.buttonClicked{
    transform: scale(0.98) !important;
}

.noStorageMessage{
    position: fixed;
    z-index: 99999999999999;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bodyBg);
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('images/noStorageBg.gif');
    background-size: cover;
}

.noStorageMessage div{
    width: 90vw;
    font-size: 25px;
    text-shadow: 0px 0px 30px black;
}

.noStorageMessage div span{
    font-size: 25px !important;
    font-weight: 700;
}

.displayNone{
    display: none !important;
}