@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;
}

: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(144, 89, 245, 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(22, 20, 28, 0.7);
    --footerBgHO: rgb(20, 17, 25);

    --topInsetArea: env(safe-area-inset-top);
    --sortPopupTop: 0px;
    --sortPopupLeft: 0px;
}

html{
    touch-action: none;
    -ms-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;
    min-height: 100vh;
    color: var(--offWhite);
    touch-action: none;
    -ms-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;
    background-clip: text;
    -webkit-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{
    display: none;
}

ul{
    -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;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}
  
  /* Track */
::-webkit-scrollbar-track {
    background-color: black;
}
   
  /* Handle */
::-webkit-scrollbar-thumb {
    background: var(--accentColor);
    border-radius: 10px;
}
  
  /* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #b5a1fc;
}

button{
    font-family: 'Outfit', sans-serif;
    transition: all .15s ease-in-out !important;
    cursor: pointer;
}

input{
    font-family: 'Outfit', sans-serif;
}

input[type="submit"]{
    cursor: pointer;
}

button i{
    transition: all .1s ease-in-out;
}

button:hover i{
    filter: brightness(0.7);
}

.buttonTurnedOn i{
    color: var(--accentColor) !important;
}

.buttonClicked{
    transform: scale(0.9) !important;
    filter: brightness(0.5);
}

li{
    transition: all .15s ease-in-out;
    cursor: pointer;
}

#changeLoginScreenBtn{
    cursor: pointer;
}

img{
    background-color: black;
}

.fcenter{
    display: flex !important;
    justify-content: center;
    align-items: center;
}

/* ----- MAIN ----- */

main{
    width: 100%;
    height: 100vh;
    z-index: 10;
    padding-top: 65px;
    padding-bottom: 100px;
    overflow-x: hidden !important;
    overflow-y: scroll !important;
    position: relative;
    flex-direction: column;
    gap: 15px;
    display: none;
    transform: translateX(0%);
    transition: all .35s ease-in-out;
    pointer-events: all;
}

.navBigMain{
    width: calc(100% - 200px) !important;
    margin-left: 200px !important;
}

.searchScreen{
    padding-top: 50px;
}

.activeMain{
    display: flex;
}

.mainToSide{
    transform: translateX(-40%);
    pointer-events: none;
    opacity: 0 !important;
}

.catTitle{
    font-size: 20px;
    margin-left: 20px;
    width: calc(100% - 40px);
    display: flex;
    align-items: center;
    gap: 10px;
}

.catTitleNoMargin{
    font-size: 20px;
    margin-left: 0px;
    width: calc(100% - 40px);
}

.catTitleAlone{
    font-size: 20px;
    margin-bottom: 15px;
    margin-left: 20px;
    width: calc(100% - 40px);
}

.catTitle span{
    display: inline-flex;
    gap: 10px;
}

.catTitle span button{
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--offWhite);
    border: 1px solid var(--playerColor);
    width: 40px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}

.catTitle span button i{
    font-size: 24px;
}

.catTitle span button:hover{
    background-color: rgba(141, 111, 252, 0.1);
    border: 1px solid rgba(145, 126, 214, 0.12);
}

.catTitle span button:hover i{
    filter: none !important;
}

.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%); }
}

/* ----- VibeVault Section ----- */

.vibeVaultItem{
    width: calc(100% - 40px);
    min-height: 150px;
    background-color: var(--vibeVault);
    border-radius: 15px;
    margin-bottom: 15px;
    margin-left: 20px;
    margin-top: 7.5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    position: relative;
    box-shadow: 0px 0px 50px rgba(106, 48, 173, 0.2);
}

.vibeVaultItem video{
    z-index: -1;
    position: absolute;
    top: 0;
    height: 100%;
    left: 0;
    width: 100%;
    object-fit: cover;
    opacity: 1;
    border-radius: 15px;
    filter: contrast(1.5) hue-rotate(-25deg);
}

.vibeVaultItem i{
    font-size: 75px;
    bottom: -19px;
    position: absolute;
    color: #DCD6F7;
    text-shadow: 0px 0px 15px black;
    animation: speakerPulse 2.5s ease-in-out infinite;
}

.vibeVaultItem button{
    width: 120px;
    aspect-ratio: 2 / 1 !important;
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid #DCD6F7;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    box-shadow: 0px 0px 25px 1px rgba(104, 76, 126, 0.6);
    border-radius: 15px;
    transition: all .2s ease-in-out;
}

.vibeVaultItem button i{
    position: relative;
    bottom: auto;
    color: #DCD6F7;
    opacity: 1;
    font-size: 24px;
    margin-top: 1px;
    margin-left: 5px;
    text-shadow: none;
    animation: none !important;
}

.openedVaultBtn{
    padding-right: 3px;
    padding-left: 0px;
}

.vibeVaultItem h2{
    font-size: 25px;
    text-align: center;
    padding-top: 5px;
    color: #DCD6F7;
    text-shadow: 0px 0px 10px rgb(0, 0, 0);
}

.vaultEmotions{
    width: 100%;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 1;
    pointer-events: all;
    transition: all .2s ease-in-out;
}

.emotionItem{
    width: 100%;
    text-align: center;
    padding-block: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid #DCD6F7;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    box-shadow: 0px 0px 25px 1px rgba(104, 76, 126, 0.6);
    border-radius: 7.5px;
}

.emotionItem h3{
    color: #DCD6F7;
}

.vaultItemOff{
    height: 0px;
    opacity: 0;
    pointer-events: none;
    padding: 0px !important; 
}

.vaultItemOff2{
    display: none;
}

/* ----- 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% - 30px) !important;
    margin-left: 15px !important;
}

.categoryRecommendedSongs, .yourPlaylists, .yourLPlaylists{
    padding: 0px;
}

.songItem{
    background-color: rgba(141, 111, 252, 0.02);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px;
    border-radius: 10px;
    border: 1px solid rgba(141, 111, 252, 0.02);
    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; */
}

.songItem:hover{
    background-color: rgba(141, 111, 252, 0.1);
    border: 1px solid rgba(145, 126, 214, 0.12);
}

.songHPlayIcon{
    position: absolute;
    width: 45px;
    aspect-ratio: 1 / 1;
    margin-left: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    pointer-events: none;
    opacity: 0;
    transition: all .15s ease-in-out;
    color: #DCD6F7;
    z-index: 2;
    padding-left: 2px;
    padding-top: 1px;
    text-shadow: 0px 0px 10px black;
    transform: scale(0);
}

.songItem:hover .songHPlayIcon{
    opacity: 1;
    transform: scale(1);
}

@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: 7px;
    width: 45px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-left: 2px;
    transition: all .15s ease-in-out;
}

.songItem:hover .songInfo img{
    filter: brightness(0.6);
}

.songBtns{
    display: flex;
    gap: 15px;
    padding-right: 10px;
    z-index: 2;
}

.songBtns button{
    background: none;
    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: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    opacity: 0;
    z-index: 5;
    pointer-events: none;
}

.songVisualizer span{
    height: 50%;
    width: 4px;
    background-color: #DCD6F7;
    border-radius: 20px;
}

.songVisualizer span:nth-child(1){
    animation: visSpanAnim .6s ease-in-out infinite;
    animation-delay: 0s;
}

.songVisualizer span:nth-child(2){
    animation: visSpanAnim .6s ease-in-out infinite;
    animation-delay: 0.2s;
}

.songVisualizer span:nth-child(3){
    animation: visSpanAnim .6s ease-in-out infinite;
    animation-delay: 0.4s;
}

.songVisualizer span:nth-child(4){
    animation: visSpanAnim .6s ease-in-out infinite;
    animation-delay: 0.6s;
}

@keyframes visSpanAnim {
    0%{ height: 50%; }
    50%{ height: 20%; }
    100%{ height: 50%; }
}

.songPlayingLi{
    background: linear-gradient(270deg, transparent, var(--playerColor));
}

.songPlayingLi .songInfo img{
    filter: brightness(0.3) !important;
    opacity: 0.8;
}

.songPlayingLi:hover .songHPlayIcon{
    opacity: 0;
    transform: scale(0);
}

.songPlayingLi .songVisualizer{
    opacity: 1;
}

/* ----- Recommended artists Section ----- */

.recArtists, .yourFArtists{
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    gap: 15px;
    overflow-x: scroll;
    overflow-y: hidden;
    padding-block: 10px;
    padding-inline: 20px;
}

.yourFArtists{
    min-height: 120px;
    gap: 10px;
}

.artistItem{
    width: 35vw;
    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; */
}

.artistItem:hover{
    filter: brightness(1.2) saturate(1.2);
    transform: scale(1.01);
}

.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);
}

.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);
}

/* ----- Recommended playlists Section ----- */

.recPlaylists, .categoryRecommendedPlaylists{
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    gap: 15px;
    overflow-x: scroll;
    overflow-y: hidden;
    padding-block: 10px;
    padding-inline: 20px;
}

.categoryRecommendedPlaylists{
    padding-left: 0px;
}

.categoryRecommendedPlaylists .playlistItem img{
    box-shadow: none !important;
}

.playlistItem{
    width: calc(40vw + 7.5px);
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding-top: 5px;
    /* animation: showUp 0.3s ease-in-out; */
}

.playlistItem:hover{
    filter: brightness(1.2) saturate(1.2);
    transform: scale(1.01);
}

.playlistItem div{
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
}

.playlistItem img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.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: 5px;
    left: 5px;
    width: 30px !important;
    height: 30px;
    border-radius: 7px !important;
}

/* ----- SEARCH SCREEN ----- */

.searchBar{
    position: sticky;
    top: 0px;
    margin-block: -10px;
    padding-block: 10px;
    border-bottom: 1px solid transparent;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
    z-index: 9;
    transition: all .1s ease-in-out;
}

.searchBar.isSticky{
    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);
}

.searchBar form{
    width: calc(100% - 30px);
    display: flex;
    gap: 10px;
    margin-left: 15px;
    z-index: 9;
}

.searchBar input{
    padding: 15px;
    width: 80%;
    flex-grow: 1;
    border-radius: 10px;
    border: none;
    background-color: var(--mainColor);
    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% - 30px);
    display: none;
    margin-left: 15px;
}

.searchListOpen{
    display: flex;
}

.songItemSearch{
    border-bottom: 1px solid var(--songSearch);
}

.artistItemSearch{
    width: 100%;
    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(--mainColorLighter);
    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%;
    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(--mainColorLighter);
    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: none;
    width: 100%;
    overflow-x: scroll;
    align-items: center;
    gap: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-left: 15px;
    padding-right: 15px;
    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(--mainColor);
    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: 20px;
    width: calc(100% - 40px);
    margin-left: 20px;
}

.catItems{
    width: 100%;
    height: 90px;
    gap: 20px;
    display: flex;
    align-items: center;
    cursor: default;
}

.catItems:hover{
    transform: scale(1) !important;
}

.catItem{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    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-bottom: 1px solid var(--offWhite);
    box-shadow: inset 0px 0px 200px 0px rgba(0, 0, 0, 0.2);
    transition: all .2s ease-in-out;
    cursor: pointer;
}

.catItem:hover{
    filter: brightness(1.2);
    transform: scale(1.01);
}

.catItem h3{
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 17px;
    text-shadow: 0px 0px 1px black;
    padding: 5px;
    padding-left: 10px;
    color: #DCD6F7;
    transition: all .2s ease-in-out;
}

.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;
    transform: translateX(3vw);
}

.closeCurrentScreen{
    position: absolute;
    top: 45px;
    bottom: 0;
    left: 0;
    width: 5vw;
    z-index: 1;
}

.loginScreen{
    position: absolute;
    top: 52px;
    min-height: 100vh;
    left: 0;
    width: 100vw;
    background-color: var(--bodyBg);
    background-image: var(--sidePageback);
    z-index: 999;
    pointer-events: none;
    transform: translateX(110%);
    transition: all .35s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden !important;
}

.loginScreen .pageBar{
    background-color: var(--footerBg) !important;
    backdrop-filter: var(--gmBackdrop);
    -webkit-backdrop-filter: var(--gmBackdrop);
    z-index: 2;
}

.loginScreenOpen{
    transform: translateX(0%);
    pointer-events: all;
}

.loginScreenOpen .pageBar h2{
    transform: translateX(0%);
}

.loginScreen .screenScrollable{
    position: absolute;
    top: 0;
    padding-top: calc(env(safe-area-inset-top) + 50px);
}

.loginForm, .bugReportForm{
    padding: 10px;
    margin: auto;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    min-width: 375px;
    max-width: 500px;
    margin-top: 7.5vh;
}

.bugReportForm{
    gap: 10px;
}

.bugReportForm i{
    font-size: 30px;
    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.4);
    background-color: var(--mainColor);
    color: var(--offWhite);
}

.bugReportForm textarea{
    min-width: 100%;
    min-height: 40vh;
    resize: none;
}

.loginForm h5{
    font-size: 11px;
    width: 100%;
    text-align: center;
    color: var(--offWhiteDark);
    font-weight: 400;
}

.loginForm label{
    font-size: 14px;
    width: 100%;
    color: var(--offWhiteDark);
    font-weight: 400;
    margin-top: 5px;
    z-index: 2;
}

#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: 13px;
    background-color: var(--offWhite);
    color: var(--bodyBg) !important;
    border: 2px solid transparent;
    padding: 15px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0px 10px 35px rgba(220, 214, 247, 0.2);
}

#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;
    transform: translateX(100%);
    display: flex;
    gap: 15px;
    flex-direction: column;
}

hr{
    width: 100%;
    height: 1px;
    border: none;
    border-radius: 5px;
    background-color: var(--playerColor);
}

.logOutSection{
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-width: 275px;
    align-items: center;
}

.loginScreenOpen .loggedInScreen{
    transform: translateX(0%);
}

.loggedInScreen img{
    width: 33px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: transparent;
}

.accountInfo{
    display: flex;
    gap: 15px;
}

.accountInfo img{
    width: 40px;
    aspect-ratio: 1 / 1;
}

.loggedInScreen h2{
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
}

.loggedInScreen h5{
    font-size: 14px;
    color: var(--offWhiteDark);
    line-height: 14px;
    font-weight: 300;
}

.loggedInScreen button{
    width: 110px;
    background-color: var(--offWhite);
    color: var(--mainColor);
    color: var(--bodyBg);
    padding: 11px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
}

.loggedInScreen button:hover{
    filter: brightness(0.8);
    border: 1px solid black;
}

/* ----- THEME IN SETTINGS ----- */

select{
    border: 1px solid var(--offWhite);
    border-radius: 10px;
    background-color: var(--mainColor);
    color: var(--offWhite);
    padding-block: 5px;
    padding-right: 10px;
    padding-left: 3px;
    margin-right: 10px;
    transition: all .15s ease-in-out;
}

/* ----- 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: 14px;
    line-height: 14px;
    font-weight: 300;
    margin-top: 5px;
}

/* ----- TOGGLES IN SETTINGS ----- */

.toggleSection{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggleSection .toggleText{
    width: 75%;
}

.toggleSection .toggleText h2{
    font-size: 20px;
}

.toggleSection .toggleText h5{
    font-size: 14px;
    line-height: 14px;
    font-weight: 300;
    margin-top: 5px;
}

.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;
}

.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: 52px;
    min-height: 100vh;
    left: 0;
    width: 100vw;
    background-color: var(--bodyBg);
    z-index: 999;
    pointer-events: none;
    transform: translateX(110%);
    transition: all .35s ease-in-out;
    z-index: 99;
    overflow: hidden;
}

.screenScrollable{
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    display: flex;
    padding-bottom: 70px;
    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: 400px !important;
    border-bottom: 1px solid var(--playerColor);
    transition: all .25s ease-in-out;
    filter: brightness(0.5);
    z-index: -2;
}

.artistControls{
    padding-block: 5px;
    padding-inline: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 175px;
    gap: 10px;
    padding-bottom: 14px;
    transition: all .25s ease-in-out !important;
}

.artistText{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    z-index: 2;
}

.artistControls h3{
    color: var(--offWhite);
    font-size: 100px;
    margin-block: 0px;
    z-index: 2;
}

.artistControls h5{
    width: auto;
    background: var(--bodyBg);
    border: 1px solid var(--playerColor);
    border-radius: 10px;
    color: var(--offWhiteDark);
    font-size: 15px;
    padding-top: 5px;
    padding-bottom: 6px;
    padding-inline: 15px;
    margin-bottom: 0px;
    margin-top: 0px;
}

.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: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7.5px;
    gap: 10px;
    padding-inline: 15px;
    font-size: 14px;
    font-weight: 500;
    min-width: 120px;
}

.artistBtns button:hover{
    filter: brightness(0.8);
    border: 1px solid black;
}

.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;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2;
    background-color: 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);
}

.latestRelease li:hover{
    border: 2px solid rgba(145, 126, 214, 0.12);
}

.latestPin{
    position: absolute;
    padding: 3px;
    padding-inline: 10px;
    background-color: var(--offWhite);
    color: var(--bodyBg);
    border-radius: 20px;
    font-size: 12px;
    top: -13px;
    left: -10px;
    border: 1px solid var(--bodyBg);
    transform: rotate(-5deg);
}

.artistAppearsOn{
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: scroll;
}

.artistAppearsOn .playlistItem img{
    box-shadow: none !important;
}

.artistTopTracks, .playlistSongsList{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-height: 50px;
}

#likePlaylist{
    min-width: 0px !important;
    width: auto !important;
    aspect-ratio: 1 / 1 !important;
    padding-inline: 8px !important;
    padding-top: 5.5px !important;
    padding-bottom: 4.5px !important;
}

#addToPlaylistBtn{
    min-width: 0px !important;
    width: 30px !important;
    aspect-ratio: 1 / 1 !important;
    padding-inline: 8px !important;
    padding-left: 7px !important;
    padding-block: 0px !important;
    display: none;
}

.categoryAccentBubble{
    position: absolute;
    background: radial-gradient(closest-side, red, transparent);
    width: 200vw;
    top: 5vh;
    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;
}

/* ----- LIBRARY / YOURS SCREEN ----- */

.yoursScreen h1{
    display: flex;
    justify-content: space-between;
    width: calc(100% - 40px);
    margin-left: 20px;
    font-size: 20px;
    font-weight: 600;
}

.yoursScreen h1 div{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    margin-top: -7px;
}

.yoursScreen h1 button{
    width: 40px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
}

.yoursScreen h1 button i{
    font-size: 24px;
    color: var(--offWhite);
    margin-left: 6px;
}

.yoursScreen h1 button:nth-child(1) i{
    font-size: 18px;
    margin-top: 2px;
}

.yoursScreen .searchBar{
    display: none;
    transition: all .3s ease-in-out;
    position: relative !important;
    top: auto !important;
    margin-bottom: 0px !important;
    padding-block: 0px;
}

.favoritesItem{
    cursor: pointer;
    transition: all .15s ease-in-out;
    border-radius: 15px !important;
    border: none !important;
    width: calc(100% - 30px);
    margin-left: 15px;
    background: linear-gradient(45deg,rgba(0, 0, 0, 1),rgba(0, 0, 0, 1) ,rgba(97, 0, 40, 1));
}

.favoritesItem:hover{
    filter: brightness(1.3) saturate(1.2);
    transform: scale(1.005);
}

.favoritesItem .songInfo img{
    width: 60px !important;
    border-radius: 0px !important;
    filter: hue-rotate(-20deg) saturate(0.6) brightness(0.7);
}

.favoritesItem .songInfo .songText h2{
    font-size: 25px;
    color: #DCD6F7;
    line-height: 25px;
}

.favoritesItem .songInfo .songText h3{
    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{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    padding-top: 75px;
    width: 100%;
    gap: 15px;
}

.formImageInput{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.formImageInput div{
    background-color: rgb(26, 14, 20);
    width: 250px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--playerColor);
    border-radius: 15px;
    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: 250px;
    border-radius: 10px;
    border: 1px solid var(--playerColor);
    background-color: var(--mainColorLighter);
    color: var(--offWhite);
}

#submitMakePlaylist{
    width: 250px;
    background-color: var(--offWhite);
    border: 1px solid var(--playerColor);
    padding: 15px;
    width: 250px;
    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);
    box-shadow: 0px 0px 30px rgb(0, 0, 0);
    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;
}

.popupScreen::-webkit-scrollbar, #popupWrapper::-webkit-scrollbar{
    display: none;
}

.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%;
        min-width: 425px;
        border-radius: 30px;
        transition: all 0.3s ease-in-out;
    }
}

#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;
}

.popupMyPlaylists .songItem .songInfo{
    max-width: 80% !important;
}

.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);
    }
}

/* ----- PLAYER ----- */

.player{
    position: fixed;
    width: calc(100% - 100px);
    right: 0;
    bottom: -10px !important;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    height: auto !important;
    transition: all .35s ease-in-out, padding-top 0s;
    opacity: 0;
    pointer-events: none;
    transform: translateY(300%) translateZ(0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    background-color: transparent;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.navBigPlayer{
    width: calc(100% - 200px);
}

.playerMovable{
    transition: none;
}

.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: var(--gmBackdropPlayer);
    transform: translate3d(0, 0, 0) translateZ(0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transition: all 0s !important;
}

.playerOpen .songBackdrop{
    opacity: 1;
}

.playerSongInfo img{
    border-radius: 6px;
    width: 45px;
    margin-block: 10px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
}

.playerSongNames{
    position: relative;
}

#openArtistPageBigBtn{
    position: absolute;
    width: 50%;
    height: 100%;
    z-index: 2;
}

.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;
}

.player .pageBar{
    display: none;
    justify-content: space-between;
    box-shadow: none;
    border: none;
    transition: all .2s ease-in-out;
    padding-top: 40px !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;
    align-items: center;
    padding: 10px;
    padding-top: 0px;
    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: 0px !important;
    bottom: 0px !important;
    border-radius: 0px;
    border-top: 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;
}

.playerOpen .playerClickDiv2{
    display: block;
}

.playerOpen .miniPlayer{
    display: none;
}

.miniSeek{
    position: relative;
    width: 40vw;
    max-width: 70%;
    height: 4px !important;
    background-color: var(--offWhiteDark);
    border-radius: 30px !important;
    transition: all .2s ease-in-out !important;
    cursor: pointer;
    z-index: 2;
    margin-right: 25px;
}

.miniSeek span{
    position: absolute;
    top: -5px;
    left: -30px;
    color: var(--offWhiteDark);
    font-size: 11px;
    pointer-events: none;
}

#currentSongTimeLeft{
    right: -30px !important;
    left: auto !important;
}

#miniSeekBar{
    width: 0%;
    height: 100%;
    background-color: var(--accentColor);
    border-radius: 30px !important;
    border-right: 1px solid var(--bodyBg);
}

.miniSeek:hover #miniSeekBar{
    filter: brightness(1.25);
}

.playerSongInfo{
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 18px;
}

.playerSongText h2{
    font-size: 16px;
    line-height: 21px;
    overflow-x: hidden;
    overflow-y: visible;
    text-overflow: ellipsis;
    white-space: nowrap;
    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;
    line-height: 15px !important;
    margin-bottom: 2px;
}

.playerSongBtns{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: flex-end;
    gap: 10px;
    padding-right: 5px;
    z-index: 2;
}

.playerSongBtns button, .playerSongInfo button{
    background: none;
    border: none;
}

.playerSongBtns i, .playerSongInfo button i{
    font-size: 22.5px;
    color: var(--offWhite);
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

.playerControls{
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    width: 40vw;
    max-width: 70%;
}

/* #playPauseBtn i{
    font-size: 30px !important;
} */

.playerControls div{
    display: flex;
    align-items: center;
    gap: 15px;
}

.playerClickDiv{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: calc(100% - 95px);
}

.playerClickDiv2{
    position: fixed;
    top: -50vh;
    bottom: 0;
    z-index: 1;
    left: -5vw;
    width: 120vw;
    display: none;
}

.miniVolumeWrapper{
    position: fixed;
    background-color: var(--bodyBg);
    border: 1px solid var(--playerColor);
    padding: 10px;
    bottom: 80px;
    right: 5px;
    border-radius: 10px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all .15s ease-in-out;
}

.miniVolumeWrapper input{
    width: 100px;
}

.volumeMenuOn{
    opacity: 1;
    pointer-events: all;
}

@keyframes appear {
    0%{ opacity: 0; }
    100%{ opacity: 1; }
}

/* ----- NAV ----- */

nav{
    position: fixed;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
    flex-shrink: 0;
    bottom: -1px;
    left: 0;
    right: 0;
    padding: 5px;
    z-index: 1001;
    border: none;
}

.navBig{
    display: flex;
    top: 0;
    align-items: center;
    justify-content: center;
    height: fit-content;
    border-bottom: 1px solid var(--playerColor);
    background-color: var(--footerBg);
    backdrop-filter: var(--gmBackdrop);
    -webkit-backdrop-filter: var(--gmBackdrop);
    transition: all .35s ease-in-out;
}

.navBigBig{
    width: 200px !important;
}

.navBigBig div{
    transition: all .35s ease-in-out !important;
    width: 175px !important;
}

.navBig div{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--playerColor);
    background-color: var(--bodyBg);
    border-radius: 15px;
    gap: 5px;
    transition: none;
}

#navPullBtn{
    position: absolute;
    bottom: -16px;
    right: -22px;
    background-color: var(--bodyBg);
    border: 1px solid var(--playerColor);
    width: 20px !important;
    height: 20px !important;
    padding: 1px;
    padding-left: 2px;
    border-radius: 50% !important;
    transition: all .15s ease-in-out;
    display: none;
}

#navPullBtn:hover{
    border: 1px solid rgba(145, 126, 214, 0.75);
}

#navPullBtn i{
    font-size: 15px;
    color: var(--offWhiteDark);
    opacity: 0.5;
}

#navPullBtn:hover i{
    color: rgba(145, 126, 214, 0.75);
    opacity: 1;
}

.rotateY180 i{
    transform: rotate(180deg);
}

.rotateY180{
    padding-left: 1px !important;
    padding-right: 2px !important;
}

.navPullPoint{
    position: absolute;
    top: 0;
    right: -4px;
    height: 100%;
    width: 8px;
    cursor: e-resize;
    display: grid;
    place-items: center;
    pointer-events: none;
}

.navPullPoint span{
    height: 100%;
    width: 1px;
    background-color: transparent;
    opacity: 0.5;
    transition: .15s ease-in-out .1s;
}

.navPullPoint:hover span{
    background-color: rgba(145, 126, 214, 0.75);
}

.navBigBig div:not(.usersPlaylistsSide) button{
    height: 50px !important;
    gap: 10px !important;
}

.navBigBig div:not(.usersPlaylistsSide) button p{
    font-weight: 500 !important;
    font-size: 15px !important;
}

.navBigBig div button p{
    display: block !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.usersPlaylistsSide.usersPlaylistsSide{
    flex-grow: 1;
    justify-content: flex-start !important;
    gap: 0px !important;
    display: none;
    height: 0px;
    overflow-y: scroll;
}

.usersPlaylistsSide::-webkit-scrollbar{
    display: none !important;
}

.usersPlaylistsSide button{
    width: 100%;
    aspect-ratio: 1 / 1 !important;
    padding: 0px !important;
    overflow: hidden;
    flex-grow: 0;
    border: 1px solid transparent;
    padding: 5px !important;
    font-weight: 500 !important;
}

.navBigBig .usersPlaylistsSide button{
    aspect-ratio: auto !important;
    height: fit-content !important;
    justify-content: flex-start;
    gap: 15px;
}

.navBigBig .addPlBtnNav i{
    padding-block: 10px !important;
}

.navBigBig .addPlBtnNav:hover i{
    border: 1px solid rgba(145, 126, 214, 0.5) !important;
}

.navBigBig .usersPlaylistsSide button img{
    transition: none !important;
    width: 45px !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
}

.usersPlaylistsSide button img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: all .2s ease-in-out;
    border-radius: 5px;
    border: 1px solid var(--playerColor);
}

.usersPlaylistsSide button:hover{
    border: 1px solid var(--playerColor);
}

.usersPlaylistsSide button:hover img{
    filter: brightness(1.2);
}

.usersPlaylistsSide button i{
    border: 1px solid var(--playerColor);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.usersPlaylistsSide button:hover i{
    transform: scale(1) !important;
}

.navNoPlayer{
    border-top: 1px solid var(--playerColor);
    background-color: var(--footerBg);
    backdrop-filter: var(--gmBackdrop);
    -webkit-backdrop-filter: var(--gmBackdrop);
}

.navClosed{
    transform: translateY(150%);
}

nav button{
    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: 7px;
    color: var(--offWhite);
    font-weight: 600;
    font-size: 11px;
}

.navBig div button{
    padding: 10px 20px;
    display: flex;
    flex-direction: row;
    border-radius: 15px !important;
    font-size: 14px;
    border: 1px solid transparent;
}

.navBig div button:hover{
    background-color: rgba(141, 111, 252, 0.1);
    border: 1px solid rgba(145, 126, 214, 0.12);
}

.activeScreen{
    color: var(--accentColor);
}

.activeScreen i{
    color: var(--accentColor) !important;
}

nav button i{
    font-size: 18px;
    color: var(--offWhite);
    margin-bottom: 2px;
    transition: all .2s ease-in-out;
}

.navBig div button i{
    font-size: 14px;
    margin-bottom: 0px;
}

.sideSettingsBtn{
    flex-grow: 0;
    padding-block: 5px !important;
    display: none !important;
}

/* ----- MAX WIDTH 470px ----- */

@media (max-width: 470px) {
    .navBig div button p{
        display: none;
    }
    .navBig div button i{
        transition: none;
        font-size: 16px;
    }
}

/* ----- 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;
    }
}

/* ----- 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: 500px !important;
    }
}

/* ----- MIN WIDTH 500px ----- */

@media (min-width: 500px){
    nav{
        display: none;
    }
    .navBig{
        display: flex;
    }
    .playerOpen{
        height: calc(100svh);
    }
    .bigSongInfo img{
        width: 57.5vw;
    }
    .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 800px ----- */

@media (min-width: 800px){
    main{
        padding-top: 10px !important;
        width: calc(100% - 100px);
        margin-left: 100px;
    }
    .searchScreen{
        padding-top: 0px !important;
    }
    .navBig{
        width: 100px;
        height: 100%;
        left: 0;
        top: 0;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding-block: 10px;
        border: none;
        border-right: 1px solid var(--playerColor);
    }
    .navBig div{
        width: 75px;
        flex-direction: column;
        border-radius: 10px;
        padding: 5px;
        flex-shrink: 0;
    }
    .navBig div button{
        width: 100%;
        transition: all 0.3s ease-out !important;
        border-radius: 6px !important;
        aspect-ratio: 1.5 / 1;
    }
    .navPullPoint{
        pointer-events: all;
    }
    #navPullBtn{
        display: block;
    }
    .navBig div button p{
        display: none;
    }
    .navBig div button i{
        font-size: 20px;
        padding-block: 0px;
        transition: all .2s ease-out !important;
    }
    .navBig div button:hover i{
        filter: brightness(1.1);
    }
    .loginScreen, .bugReportScreen, .artistScreen, .playlistScreen, .categoryScreen, .makePlaylistScreen{
        width: calc(100vw - 100px);
        right: 0px;
        left: auto;
        top: 0px;
    }
    .sideSettingsBtn{
        display: flex !important;
    }
    .mainSettingsBtn{
        display: none !important;
    }
    .usersPlaylistsSide{
        display: flex !important;
    }
}

@media screen and (max-width: 800px) {
    .player{
        width: 100%;
        left: 0;
    }
}

/* ----- MIN HEIGHT 570px ----- */

@media screen and (max-height: 570px){
    .bigSongInfo img{
        width: 100%;
        aspect-ratio: 1 / 1;
    }
    .loginForm{
        margin-top: 10px;
    }
}

/* ----- MAX HEIGHT 515px ----- */

@media screen and (max-height: 515px){
    .loginForm input{
        padding: 13px;
        padding-inline: 15px;
    }
    .loginForm button{
        padding: 13px;
    }
}

/* ----- MAX 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 ----- */

.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{
    width: 100%;
    padding-inline: 20px;
    display: flex;
    justify-content: center;
}

.bugSection button{
    position: relative;
    margin-top: 15px;
    width: 250px;
    padding-block: 10px;
    text-align: right;
    padding-right: 15px;
    color: #DCD6F7;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    border: 1px solid var(--offWhite);
    text-shadow: 0px 0px 30px black;
    box-shadow: 0px 0px 60px rgba(141, 111, 252, 0.3);
    border-radius: 15px;
    background-image: linear-gradient(45deg, #d0c4ff, #755cd1);
    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: 75px;
    bottom: -20px;
    left: 10px;
    text-shadow: 0px 0px 100px black;
    animation: bugDance 2s ease-in-out infinite;
}

@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: 20px;
    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: 999;
    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;
    }
}

.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: 400px;
    font-size: 25px;
    text-shadow: 0px 0px 30px black;
}

.noStorageMessage div span{
    font-size: 25px !important;
    font-weight: 700;
}

.sidePageNavBig{
    width: calc(100vw - 200px) !important;
}