@font-face {
    font-family: "Plus Jakarta Sans";
    src: url('custom-font.ttf');
}
:root {
    --update-close-btn-percent-move: 4%;
    --update-content-transition-delay: 0.5s;
}
html, body {
    width: 100%;
    height: 100%;
    color: #f7f7f7;
    background-color: #01000a;
    padding: 0;
    margin: 0;
    overflow-x: clip;
    overflow-y: clip;
}
* {
    /*transition: all 0.75s cubic-bezier(.66,-0.03,.35,1.02);*/
    font-family: "Plus Jakarta Sans", sans-serif;
    scroll-behavior: initial;
    transition: opacity 0.5s ease;
    z-index: 5;
    cursor: default;
}
input[type="search"] {
    -webkit-appearance: none; /* Removes the default search icon in WebKit browsers (Chrome, Safari) */
    -moz-appearance: none;    /* Removes the default search icon in Firefox */
    appearance: none;         /* Removes the default search icon across all browsers */
}
.fa-user, .fa-house, .fa-brands, .fa-bars, .fa-music, .fa-xmark {
    cursor: pointer;
}

*::-webkit-scrollbar {
    height: 12px;
    width: 12px;
}
*::-webkit-scrollbar-track {
    border-radius: 2px;
    background-color: transparent;
}
*::-webkit-scrollbar-track:hover {
    background-color: transparent;
}
*::-webkit-scrollbar-track:active {
    background-color: transparent;
}
*::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #0061FF;
    border: 2px solid #130030;
}
*::-webkit-scrollbar-thumb:hover {
    background-color: #0183FF;
}
*::-webkit-scrollbar-thumb:active {
    background-color: #016ED5;
}  
/*----*//*----*/
/*----*//*----*/
/*----*//*----*/

.update-container {
    transition: all 0.5s ease, outline 0.2s ease, outline-offset 0.2s ease, box-shadow 0.2s ease, transform 0.5s ease;
    width: 75%;
    height: 75%;
    display: block;
    overflow: clip;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(25,25,25,0.9);
    outline: 2px solid grey;
    color: white;
    border-radius: 10px;
    z-index: 999;
    cursor: default;
    box-shadow: 0 0 0 0 black;
}
.update-container:hover {
    transition: all 0.25s ease, outline 0.15s ease, outline-offset 0.15s ease, box-shadow 0.15s ease;
    outline-offset: 5px;
    box-shadow: 0 0 5px 5px black;
}
.update-container .update-header {
    width: 100%;
    height: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: default;
    transition: all 0.5s ease, opacity 0.3s ease var(--update-content-transition-delay);
}
.update-container .update-header h2 {
    margin: 0;
    cursor: default;
    font-size: calc(1.75vw + 1.75vh);
}
.update-container .update-header h6 {
    margin: 2px;
    font-size: calc(0.3vw + 0.65vh);
    cursor: default;
}
.update-container .update-body {
    width: 50%;
    height: 75%;
    padding: 0 25%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    text-align: center;
    overflow: auto;
    overflow-x: clip;
    transition: all 0.2s ease, opacity 0.3s ease 0.5s;
}
.update-container .update-close-btn {
    width: calc(3vw + 3vh);
    height: calc(3vw + 3vh);
    color: white;
    background-color: rgba(0, 0, 15, 0.5);
    outline: 1px solid rgb(45, 45, 50);
    transition: all 0.2s ease, opacity 0.3s ease 0.5s;
    position: absolute;
    top: var(--update-close-btn-percent-move);
    right: var(--update-close-btn-percent-move);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.update-container .update-close-btn:hover {
    transition: all 0.15s ease, opacity 0.3s ease 0.5s;
    outline: 1px solid white;
    outline-offset: 5px;
    background-color: rgba(0,0,25,0.9);
}

/*----*//*----*/
/*----*//*----*/
/*----*//*----*/

.header {
    width: 100%;
    height: fit-content;
    min-height: 25%;
    padding: 2vh 0;
    color: white;
    /*background: linear-gradient(180deg, #080054 0%, #050030 100%);*/
    background: #050030 url(images/header-image.jpg) center center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.5s ease, opacity 0.5s ease-in-out;
    z-index: 0;
    overflow: clip;
    position: relative;
    -webkit-box-reflect: below -5px linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.3));
}
/*
.header::after {
    content: '';
    transition: all 0s ease;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100;
    min-height: 25%;
    width: 100%;
    background-color: rgba(0,0,0,0.5);
    filter: brightness(0.7);
    z-index: 1;
    overflow: clip;
}
*/
.header::before {
    content: '';
    transition: all 0s ease;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100;
    min-height: 25%;
    width: 100%;
    /*background: #050030 url(images/header-image.jpg) center center/cover no-repeat;
    filter: blur(10px) brightness(0.3);
    opacity: 0.8;*/
    background-color: rgba(0,0,0,0.5);
    filter: brightness(0.7);
    z-index: 1;
    overflow: clip;
}
.header .header-name {
    transition: all 0.25s ease;
    font-size: calc(2.5vw + 2.5vh);
    transform: scale(1);
    cursor: default;
    margin: 5%;
}
.loading-header {
    transition: all 0.25s ease;
    font-size: calc(1.5vw + 1.5vh);
    transform: scale(1);
    margin: 3%;
    cursor: default;
}
.header .header-name:hover, .loading-header:hover {
    text-shadow: 0 0 5px white;
    transition: all 0.15s ease;
    transform: scale(1.005);
}
.header .socials-container {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header .link {
    height: fit-content;
    text-align: center;
    width: fit-content;
    padding: calc(0.5vw + 0.5vh);
    background-color: rgba(36, 36, 36, 0.25);
    color: white;
    margin: 2%;
    text-decoration: none;
    max-width: 80%;
    min-width: 20%;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    border: 1px solid transparent;
    outline: 1px solid transparent;
    transition: outline 0.2s ease, outline-offset 0.2s ease;
    box-shadow: 0 0 2px 1px rgb(30, 30, 30);
}
.header .link:hover, .header .link.inputSelect {
    box-shadow: 0 0 2px 5px rgba(255, 255, 255, 0.2);
    outline-offset: 5px;
    border: 1px solid rgba(129, 129, 129, 0.405);
    outline: 1px solid white;
    transition: outline 0.15s ease, outline-offset 0.15s ease, box-shadow 0.15s ease;
}

/*----*//*----*/
/*----*//*----*/
/*----*//*----*/

.options-container {
    position: relative;
    width: calc(90% - 30px);
    height: fit-content;
    padding: 10px;
    flex-direction: row;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 5%;
    margin-right: 10px;
}
.options-btn {
    position: relative;
    cursor: pointer;
    transition: outline 0.2s ease, outline-offset 0.2s ease, background-color 0.2s ease, width 0.2s ease, height 0.2s ease;
    width: calc(0.75vw + 0.75vh);
    height: calc(0.75vw + 0.75vh);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0);
    outline: 1px solid transparent;
    border: none;
    border-bottom: 1px solid transparent;
}
.options-btn:hover {
    transition: outline 0.15s ease, outline-offset 0.15s ease, background-color 0.15s ease, width 0.2s ease, height 0.2s ease;
    background-color: rgba(255, 255, 255, 0.1);
    outline: 1px solid white;
    outline-offset: 5px;
}
.options-btn#searchBtn {
    margin-left: 15px;
}
.options-btn#searchBtn .search-input {
    color: white;
    transition: width 0.2s ease, opacity 0.2s ease, border-bottom 0.2s ease, transform 0.2s ease;
    opacity: 0;
    cursor: pointer;
    position: absolute;
    width: calc(100% - 25px);
    height: calc(0.75vw + 0.75vh);
    left: 50%;
    transform: translate(calc(-50% + 0px), 0);
    border: none;
    border-bottom: 1px solid transparent;
    outline: 1px solid transparent;
    background-color: transparent;
}
.options-btn#searchBtn .search-input[type="search"] {
    padding: 20px 10px;
}
.options-btn#searchBtn .search-input[type="text"] {
    padding: 10px;
}
.options-btn#searchBtn .search-input[type="search"]:focus {
    padding: 20px 10px;
}
.options-btn#searchBtn .search-input[type="text"]:focus {
    padding: 10px;
}
.options-btn#searchBtn .search-input:focus {
    transform: translate(calc(-50% + 10px), 0);
    width: 100%;
    opacity: 1;
    border-bottom: 1px solid white;
}
.options-btn#searchBtn .search-input:focus:hover {
    transition: width 0.2s ease, opacity 0.2s ease, border-bottom 0s ease;
    opacity: 1;
    border-bottom: 1px solid transparent;
}
.options-btn#searchBtn:focus-within {
    width: calc(50% - 75px);
    height: (0.75vw + 0.75vh);
    border-radius: 5px;
}
.options-btn i:not(.inner) {
    transition: transform 0.2s ease, opacity 0.2s ease 0.2s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
}
.options-btn:focus-within i:not(.inner) {
    transition: opacity 0s ease;
    opacity: 0;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}
/*----*/
.options-container .options-btn#filterBtn {
    border-radius: 100%;
    transition: all 0.2s ease, border-radius 0.2s ease 0.175s;
    width: calc(0.75vw + 0.75vh);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.options-container .options-btn#filterBtn .i-holder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.options-container .options-btn#filterBtn.open {
    border-radius: 10px;
    transition: all 0.2s ease, border-radius 0.04s ease;
    cursor: default;
}
.options-container .options-btn#filterBtn.open {
    width: 50%;
}
.options-container .options-btn#filterBtn.open:not(.options-btn#filterBtn.open:hover) {
    border: none;
    border-bottom: 1px solid white;
}
.options-container .options-btn#filterBtn.open i.fa-filter {
    transition: opacity 0.2s ease;
    opacity: 0;
}
.options-container .options-btn#filterBtn i.fa-filter {
    transition: opacity 0.2s ease 0.2s;
    opacity: 1;
}
.options-container .options-btn#filterBtn.open i:not(.fa-filter) {
    transition: opacity 0.2s ease;
    opacity: 1;
}
.options-container .options-btn#filterBtn.open i:not(.fa-filter) {
    transition: opacity 0.2s ease 0.2s;
    opacity: 0;
}
.options-container .options-btn#filterBtn .filter-buttons {
    opacity: 0;
    background-color: transparent;
    display: none;
    opacity: 0;
    height: 100%;
    width: 100%;
}
.options-container .options-btn#filterBtn.open .filter-buttons {
    transition: all 0.2s ease;
    opacity: 1;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.options-container .options-btn.open#filterBtn .filter-buttons i {
    opacity: 1;
    position: relative;
}
.options-container .options-btn#filterBtn .filter-buttons .filter-btn {
    border-radius: 5px;
    transition: all 0.15s ease;
    width: fit-content;
    height: calc(100% - 25px);
    padding: 15px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0);
    outline: 1px solid transparent;
    outline-offset: -3px;
}
.options-container .options-btn#filterBtn .filter-buttons .filter-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    outline: 1px solid white;
    outline-offset: 3px;
}

/*----*//*----*/
/*----*//*----*/
/*----*//*----*/

.song-previews {
    background: linear-gradient(180deg, #050035 0%, #03001f 50%, #03001f 65%, #01000a 100%);
    height: fit-content;
    min-height: 25%;
    width: 100%;
    padding: 5px;
    padding-top: calc(1.5vw + 2vh);
    transition: all 0.5s ease, opacity 0.5s ease-in-out;
}
.song-previews .preview-container {
    width: 90%;
    height: 10%;
    padding: 5px 0px;
    padding-left: 5px;
    margin: calc(5% - 5px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    background-color: transparent;
    box-shadow: 0px 0px 0px 0px rgb(0, 0, 0);
    transition: all 0.05s ease;
}
.song-previews .preview-container:hover, .song-previews .preview-container.inputSelect {
    box-shadow: 0px 0px 5px 1px rgb(42, 42, 42);
    background-color: rgba(255,255,255,0.1);
}
/*----*/
.song-previews .preview-container .song-cover {
    padding: 0;
    margin: 0;
    width: calc(25% - 5px);
    height: fit-content;
    min-height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}
.song-previews .preview-container .song-cover .img-container i {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: calc(3vw + 3vh);
}
.song-previews .preview-container .song-cover .img-container img:hover + i {
    display: none;
}
.song-previews .preview-container .song-cover .img-container img {
    transform: scale(0.9);
    width: auto;
    height: 100%;
    transition: transform 0.25s ease-in-out;
    filter: drop-shadow(0px 0px 1px rgb(255, 255, 255));
    -webkit-box-reflect: below -5px linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.1));
    /*-webkit-box-reflect: below -5px linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.3));*/
}
.song-previews .preview-container .song-cover .img-container img.tbd {
    opacity: 0;
}
.song-previews .preview-container:hover .song-cover .img-container img {
    transition: transform 0.2s ease-out;
    transform: scale(0.95);
}
.song-previews .preview-container:hover .song-cover .img-container img:hover {
    transition: transform 0.1s ease-out;
    transform: scale(1.0);
}
.song-previews .preview-container:hover .song-cover .img-container i:hover + img {
    transition: transform 0.1s ease-out;
    transform: scale(1.0);
}
.img-container {
    width: fit-content;
    height: fit-content;
    position: relative;
}
.img-container.tbd {
    background-color: rgba(255,255,255,0.1);
}
/*----*/
.song-previews .preview-container .song-name {
    transition: transform 0.25s ease-in-out;
    transform: scale(0.98);
    padding: 0;
    margin: 0;
    width: 25%;
    height: 100%;
    color: white;
    text-align: center;
    cursor: default;
}
.song-previews .preview-container:hover .song-name {
    transform: scale(1.0);
}
/*----*/
.song-previews .preview-container .song-links-container {
    padding: 0;
    margin: 0;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}
.song-previews .preview-container .song-links-container .song-link {
    outline: 1px solid transparent;
    outline-offset: 0px;
    transition: transform 0.25s ease-in-out, outline-offset 0.2s ease-out;
    width: fit-content;
    height: fit-content;
    padding: 0;
    border-radius: 5px;
    background-color: black;
    /*box-shadow: 0px 0px 5px 1px rgb(42, 42, 42);*/
    transform: scale(0.975);
}
.song-previews .preview-container:hover .song-links-container .song-link:hover {
    outline: 1px solid white;
    outline-offset: 5px;
    cursor: pointer;
    transition: transform 0.1s ease-out, outline-offset 0.15s ease-out, outline 0s linear;
    transform: scale(1.1);
}
.song-link {
    transition: transform 0.25s ease-in-out, outline-offset 0.2s ease-out, outline 0.2s ease-out;
    outline: 1px solid transparent;
    transform: scale(1);
}
.song-previews .preview-container:hover .song-links-container .song-link {
    transition: transform 0.25s ease-in-out, outline-offset 0.2s ease-out, outline 0.2s ease-out;
    outline: 1px solid transparent;
    transform: scale(1);
}
.song-previews .preview-container .song-links-container .song-link.spotify {
    background-color: #11FF55;
    border-radius: 100%;
}
.fa-brands.fa-youtube {
    color: red;
    background-color: white;
    border-radius: 5px;
    padding: 3px;
    border-radius: 5px;
}
.fa-solid.fa-music {
    background-color: red;
    color: white;
    padding: 3px;
    border-radius: 5px;
}
.song-links-container .song-link .fa-brands.fa-spotify {
    color: #11FF55;
    background-color: black;
    padding: 3px;
    border-radius: 100%;
}
.song-previews .preview-container .song-links-container .song-link.spotifyLink {
    box-shadow: 0px 0px 3px 1px rgb(0, 60, 0);
}
.song-previews .preview-container:hover .song-links-container .song-link.spotifyLink {
    box-shadow: 0px 0px 2px 1px rgb(0, 50, 0);
}
.song-previews .preview-container .song-links-container .song-link.youtubeLink {
    box-shadow: 0px 0px 3px 1px rgb(70, 70, 70);
}
.song-previews .preview-container:hover .song-links-container .song-link.youtubeLink {
    box-shadow: 0px 0px 2px 1px rgb(50, 50, 50);
}
.song-previews .preview-container .song-links-container .song-link.appleMusicLink {
    box-shadow: 0px 0px 3px 1px rgb(100, 5, 0);
}
.song-previews .preview-container:hover .song-links-container .song-link.appleMusicLink {
    box-shadow: 0px 0px 2px 1px rgb(90, 5, 0);
}

/*----*//*----*/
/*----*//*----*/
/*----*//*----*/

.settings-container {
    z-index: 500;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #080054 0%, #01000a 100%);
    color: white;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    transition: all 0.5s ease;
}
.settings-item {
    width: fit-content;
    height: fit-content;
    padding: 15px 5%;
    color: white;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    transition: all 0.5s ease;
    transform: scale(1);
    border-radius: 10px;
}
.settings-item hr {
    width: 100%;
    margin-bottom: 25px;
}
.settings-item:hover {
    transform: scale(1.05);
}
.settings-btn {
    cursor: pointer;
    width: fit-content;
    height: fit-content;
    padding: 15px 10px;
    background-color: #282547;
    color: white;
    outline: 1px solid transparent;
    transition: all 0.5s ease, outline 0.2s ease, outline-offset 0.2s ease;
    border-radius: 10px;
}
.settings-btn:hover {
    transition: all 0.5s ease, outline 0.15s ease, outline-offset 0.15s ease;
    outline: 1px solid white;
    outline-offset: 5px;
}
.settings-page-items {
    width: 75%;
    height: fit-content;
    min-height: 50%;
    padding: 0% 5%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    background-color: rgba(100,100,100,0.1);
    border-radius: 15px;
    margin: 12.5% 0%;
}

.settings-header {
    width: 100%;
    height: fit-content;
    min-height: 20%;
    font-size: calc(3vw + 3vh);
    display: flex;
    justify-content: center;
    align-items: center;
}

/*----*//*----*/
/*----*//*----*/
/*----*//*----*/

.floating-btn {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(3vw + 3vh);
    height: calc(3vw + 3vh);
    margin: 0;
    padding: 0;
    position: fixed;
    bottom: var(--update-close-btn-percent-move);
    right: var(--update-close-btn-percent-move);
    background-color: rgba(175,175,175,0.5);
    color: white;
    z-index: 999;
    border-radius: 100%;
    outline: 1px solid transparent;
    transition: all 0.5s ease, outline 0.2s ease, outline-offset 0.2s ease;
}
.floating-btn:hover {
    transition: all 0.5s ease, outline 0.15s ease, outline-offset 0.15s ease;
    outline: 1px solid white;
    outline-offset: 5px;
}
.floating-btn:hover .fa-bars, .floating-btn:hover .fa-house {
    animation: userBounce 1s ease;
}
@keyframes gearSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes userBounce {
    0% {
        transform: translate(0px, 0px);
    }
    25% {
        transform: translate(0px, -2px);
    }
    50% {
        transform: translate(0px, 1px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

/*----*//*----*/
/*----*//*----*/
/*----*//*----*/

.footer {
    height: fit-content;
    min-height: 100px;
    padding: 0;
    margin: 0;
    width: 100%;
    font-size: 50%;
    text-align: center;
    cursor: default;
    transition: all 0.5s ease, opacity 0.5s ease-in-out;
}
.copyright-container {
    height: fit-content;
    min-height: 50px;
    padding: 5px;
    width: calc(100% - 10px);
    font-size: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: default;
}

/*----*//*----*/
/*----*//*----*/
/*----*//*----*/

@media (max-width: 700px) {
    .header {
        height: fit-content;
        min-height: 25%;
        padding: calc(0.5vw) 0;
        padding-bottom: 0;
        -webkit-box-reflect: below -5px linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.2));
    }
    .song-previews .preview-container {
        margin: calc(5% - 5px);
        height: fit-content;
        min-height: 25%;
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .song-previews .preview-container .song-cover {
        padding: 0;
        margin: 0;
        width: calc(25% - 5px);
        height: fit-content;
        min-height: 25px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
    .song-previews .preview-container .song-cover img {
        width: auto;
        height: 100%;
        max-height: 75px;
    }
    .song-previews .preview-container .song-name {
        text-align: center;
        padding-left: 0;
        justify-content: center;
        align-items: center;
        width: 25%;
    }
    .header .socials-container {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .header .link {
        height: fit-content;
        text-align: center;
        width: 80%;
        padding: calc(0.5vw + 0.75vh);
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
        margin: 2%;
        text-decoration: none;
        border-radius: 10px;
        position: relative;
        cursor: pointer;
        border: 1px solid transparent;
        outline: 1px solid transparent;
        transition: outline 0.2s ease, outline-offset 0.2s ease;
        box-shadow: 0 0 2px 1px rgb(30, 30, 30);
    }
    .header .link:hover {
        box-shadow: 0 0 2px 5px rgba(255, 255, 255, 0.2);
        outline-offset: 5px;
        border: 1px solid rgba(129, 129, 129, 0.405);
        outline: 1px solid white;
        transition: outline 0.15s ease, outline-offset 0.15s ease, box-shadow 0.15s ease;
    }
    .song-previews .preview-container .song-cover .img-container img {
        transform: scale(0.9);
        width: auto;
        height: 100%;
        transition: transform 0.25s ease-in-out;
        filter: drop-shadow(0px 0px 1px rgb(255, 255, 255));
        /*-webkit-box-reflect: below -5px linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4));*/
    }
    .floating-btn {
        top: var(--update-close-btn-percent-move);
    }
}
@media (min-width: 700px) {
    .header {
        height: fit-content;
        min-height: 30%;
        padding: calc(0.75vw) 0;
        padding-bottom: 0;
    }
    .song-previews .preview-container .song-cover {
        padding: 0;
        margin: 15px 0;
        width: calc(18% - 5px);
        height: fit-content;
        min-height: 25px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
    .song-previews .preview-container .song-cover img {
        width: auto;
        height: 100%;
        max-height: 100px;
    }
    .song-previews .preview-container .song-name {
        text-align: left;
        padding-left: 5px;
        justify-content: flex-start;
        align-items: center;
        width: 32%;
    }
    .song-previews .preview-container {
        margin: calc(5% - 5px);
        height: fit-content;
        min-height: 25%;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .song-previews .preview-container .song-cover .img-container img {
        transform: scale(0.9);
        width: auto;
        height: 100%;
    }
    .song-previews .preview-container .song-links-container .song-link {
        transform: scale(1.2);
    }
    .song-previews .preview-container:hover .song-links-container .song-link:hover {
        outline: 1px solid white;
        outline-offset: 5px;
        cursor: pointer;
        transition: transform 0.1s ease-out, outline-offset 0.15s ease-out, outline 0s linear;
        transform: scale(1.3);
    }
    .song-link {
        transition: transform 0.25s ease-in-out, outline-offset 0.2s ease-out, outline 0.2s ease-out;
        outline: 1px solid transparent;
        transform: scale(1.175);
    }
    .song-previews .preview-container:hover .song-links-container .song-link {
        transition: transform 0.25s ease-in-out, outline-offset 0.2s ease-out, outline 0.2s ease-out;
        outline: 1px solid transparent;
        transform: scale(1.25);
    }
    .header .header-name {
        transition: all 0.25s ease;
        font-size: calc(2.5vw + 2.5vh);
        transform: scale(1);
        margin: 3% 0% 1% 0%;
        cursor: default;
    }
}

/*----*//*----*/
/*----*//*----*/
/*----*//*----*/

.keyboard-input-dropdown {
    display: none;
    height: 0px;
    width: 80%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 10;
    margin: 10%;
    background-color: #282547;
    color: white;
    overflow: clip;
    display: flex;
    justify-content: center;
    align-items: center;
}
.keyboard-input-dropdown.show {
    height: 80%;
    opacity: 1;
}

/*----*//*----*/
/*----*//*----*/
/*----*//*----*/

/* From Uiverse.io by Yaya12085 */ 
.input-container {
    position: relative;
    display: flex;
    align-items: center;
}
.input {
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    border: none;
    outline: none;
    padding: 18px 16px;
    background-color: transparent;
    cursor: pointer;
    transition: all .5s ease-in-out;
}
.input::placeholder {
    color: transparent;
}
.input:focus::placeholder {
    color: rgb(131, 128, 128);
}
.input:focus,.input:not(:placeholder-shown) {
    background-color: #fff;
    border: 1px solid rgb(91, 107, 255);
    width: 290px;
    cursor: none;
    padding: 18px 16px 18px 45px;
}
.icon {
    position: absolute;
    left: 0;
    height: 45px;
    width: 45px;
    background-color: #fff;
    border-radius: 99px;
    z-index: 9;
    fill: rgb(91, 107, 255);
    border: 1px solid rgb(91, 107, 255);
}
.input:focus + .icon,.input:not(:placeholder-shown) + .icon {
    z-index: 10;
    background-color: transparent;
    border: none;
}  
.input:focus {
    z-index: 9;
}

/*----*//*----*/
/*----*//*----*/
/*----*//*----*/

.loading {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    transition: all 0.5s ease-in-out, opacity 0.5s ease 0.5s;
    background-color: #01000a;
    overflow: clip;
    z-index: 999;
}
.loader {
    transition: all 0.5s ease;
}
.loader svg {
    width: 3.25em;
    transform-origin: center;
    animation: rotate 1.25s linear infinite;
}
.loader circle {
    fill: none;
    stroke: hsl(0, 0%, 100%);
    stroke-width: 5;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: dash 1.69s ease-in-out infinite;
}
@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes dash {
    0% {
        stroke-dasharray: 5, 200;
        stroke-dashoffset: 5px;
    }
    50% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 5, 200;
        stroke-dashoffset: -124px;
    }
}
@keyframes loadEndFade {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes loadEndSpinner {
    0% {
        opacity: 1;
        stroke-dasharray: 5, 200;
        stroke-dashoffset: 5px;
    }
    50% {
        opacity: 1;
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        opacity: 0;
    }
}