* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

/*Common*/
.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.all-center {
    align-items: center;
    justify-content: center;
}

.shadow {
    box-shadow: 0 0 10px #00759f inset;
}

.icon {
    vertical-align: middle;
    width: 20px;
}

input[type=text] {
    border: 2px solid #0a9db4;
    border-radius: 5px;
}

/*scroll-up*/
.scroll-up {
    z-index: 99;
    top: 0;
    width: 5%;
    height: 100%;
    position: fixed;
    background-color: rgba(255, 255, 255, 0.2);
    display: none;
    background-image: url("../top-arrow.png");
    background-repeat:no-repeat;
    background-position: center center;
    background-size: 25%;
    transition: 0.3s;
}

.scroll-up:hover {
    background-color: rgba(255, 255, 255, 0.3);
    filter: brightness(1.25);
    cursor: pointer;
}



/*glanz button*/
.bg-blue {
    background-color: #2bbdd5;
}
.bg-green {
    background-color: #2ec112;
}
.bg-red {
    background-color: #b51743;
}
.glanz-button {
    position: relative;
    padding: 0 10px;
    border: none;
    border-radius: 5px;
    color: aliceblue;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: 1s;
    overflow: hidden;
    box-shadow: 0 0 0.5em black inset;
    width: fit-content;
}

.glanz-button:hover,
.glanz-button:focus {
    filter: brightness(1.25) drop-shadow(0px 0px 1px white);
    cursor: pointer;
    outline: none;

}

.glanz-button:before,
.glanz-button:after {
    content: '';
    position: absolute;
    top: 0;
    left: -200px;
    width: 100px;
    height: 100%;
    background-color: #fff;
    filter: blur(40px);
    transform: skewX(-30deg);
}

.glanz-button:hover:before,
.glanz-button:focus:before {
    left: calc(100% + 150px);
    transition: 1s;
}
.wider-btn {
    width: 50px;
}
/*.glanz-button:hover:after,*/
/*.glanz-button:focus:after {*/
/*    left: calc(100% + 150px);*/
/*    transition: 1s 0.5s;*/
/*}*/



/*spoilers*/
input[id^="spoiler"] {
    display: none;
}

input[id^="spoiler"] + label {
    display: block;
    text-align: center;
    cursor: pointer;
    transition: all .6s;
}

input[id^="spoiler"] ~ .spoiler {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all .6s;
}

input[id^="spoiler"]:checked + label + .spoiler {
    height: auto;
    opacity: 1;
}
input[id^="spoiler_original_item_"]:checked + label + .spoiler {
    min-height: 103px;
    align-items: baseline;
}


/**/

.page-container {
    margin-top: 100px;
}
.huge-text {
    font-size: 36px;
    font-weight: bold;
}

#networks_container {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    justify-content: center;
    padding: 20px;
    transition: all 1s;
}


.network-icon {
    width: 9vw;
    max-width: 40px;
    filter: saturate(0.7);
    transition: all 0.2s;
}
.network-icon:hover {
    filter: drop-shadow(0px 0px 6px white);
}
.network-icon:nth-child(n+1) {
    margin-left: 1.5vw;
}

.card {
    color: white;
    width: 100%;
    height: 100%;
    background-size: contain;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    overflow: hidden;
}
.card-content {
    padding: 0.5em;
    background: linear-gradient(
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.3) 20%,
            rgb(22 22 22)
    );

}

.card-title {
    filter: drop-shadow(0.01rem 0.01rem 0 black) drop-shadow(-0.01rem -0.01rem 0 black);
}

.card-body {
    font-size: 14px;
    color: #ffffffdd;
    filter: drop-shadow(0.01rem 0.01rem 0 black) drop-shadow(-0.01rem -0.01rem 0 black);
}

.card-button {
    cursor: pointer;
    display:  inline-block;
    text-decoration: none;
    color: #efefef;
    background-color: #131313;
    padding: 0.25em 1em;
    border-radius: 0.25em;
    user-select: none;
    filter: drop-shadow(0px 0px 1px white);
    margin-top: 2px;
}
@media (hover) {
    .card-content {
        transform: translateY(100%);
        transition: 350ms ease;
    }
    .card-content > * {
        opacity: 0;
        transition: opacity 150ms linear;
    }

    .card:hover .card-content {
        transform: translateY(0);
    }
    .card:hover .card-content > * {
        opacity: 1;
        transition: opacity 350ms linear;
        transition-delay: 200ms;
    }
}


.album-back {
    position: absolute;
    top: 5vh;
    left: 5vw;
}

.albums-info-container {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #111111;
}
.album-info-container {
    height: 80vh;
    justify-content: start !important;
}
.album-info-name {
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(to top, #404040 0%, #ffffff 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.listen-song-icon {
    border-radius: 5px;
    margin-left: 5px;
    margin-top: 16px;
}
.listen-song-icon img {
    height: 32px;
    display: block;
    filter: brightness(0.8);
}
.listen-song-icon img:hover {
    filter: brightness(1.25);
}

.album-info-body {
    margin-top: 5vh;
    max-height: 70vh;
    overflow: auto;
    width: 100vw;
}

.album-info-body > div {
    min-width: 50vw;
}

.album-songs-wrapper {
    justify-content: flex-end;
    margin-right: 10vw;
}
.album-songs-list-container {
    width: fit-content;
}
.album-song {
    justify-content: flex-end;
    width: fit-content;
    padding: 4px;
}
.selected-album-song {
    background: #222222;
    border-radius: 10px;
}
.song-header {
    justify-content: space-between;
    min-width: 280px;
}
.song-index {
    color: #cbdbdf;
}
.song-name {
    color: #cbdbdf;
    text-decoration: underline;
}
.song-duration {
    color: #a0b5b6;
}

.album-songs-info-container {
    max-height: 60vh;
    background: #222222;
    border-radius: 20px;
    max-width: fit-content;
}


.album-song-info-container {
    display: none;
}

.album-song-info {

}

.music-videos-wrapper {
    max-height: 60vh;
}

.music-videos-container {
    overflow-x: auto;
    padding: 10px;
}

.music-videos-container > div:nth-child(n+1) {
    margin-top: 10px;
}
.video-name {
    color: #cbdbdf;
    font-size: 14px;
}
.video-container {
    border-radius: 10px;
    width: 360px;
    height: 240px;
}
.album-song-lyrics {
    max-height: 60vh;
}
.lyrics-container {
    font-size: 14px;
    overflow-x: auto;
    min-width: 360px;
    text-align: center;
    padding: 10px;
}

@media only screen and (max-width: 1200px){
    .album-songs-info-container {
        max-height: none;
    }
    .album-song-info {
        flex-direction: column;
    }
    .album-info-body {
        flex-direction: column;
    }
    .album-songs-wrapper {
        margin-right: 0;
        margin-bottom: 10vh;
    }
    .album-info-body > div {
        display: flex;
        justify-content: center;
    }
    .album-song-lyrics, .music-videos-wrapper {
        max-height: none;
    }
    .lyrics-container, .music-videos-container {
        overflow-x: visible;
    }
}





/**/

::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    background: #FF0000;
}