@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

#mainBanner{
    background-size: cover;
    height: 100vh;
    background-color: #000;
    animation: bgColors 10s linear infinite;
}

@keyframes bgColors {
    from    {background-color: rgb(207, 21, 21);}
    15%     {background-color: rgb(208, 225, 29);}
    30%     {background-color: rgb(128, 207, 19);}
    45%     {background-color: rgb(19, 207, 198);}
    60%     {background-color: rgb(19, 57, 207);}
    75%     {background-color: rgb(107, 19, 207);}
    90%     {background-color: rgb(201, 19, 146);}
    to      {background-color: rgb(207, 21, 21)}
}

.overlay{
    background: rgba(0,0,0,0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    flex-direction: column;
    display: flex;
    justify-content: end;
}
.fullscreenSource {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
h3{
    font-family: 'Fjalla One', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    padding-top: 100px;
    padding-bottom: 20px;
    padding-left: 10px;
}
.cardSong {
    font-family: 'Fjalla One', sans-serif;
    flex-direction: row;
    border-radius: 10px;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    align-items: center;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.cardSong img{
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 10px;
}   

.cardSong.darkCard {
    background-color: #1E1E20;
    color: #fff;
}
.cardSong.lightCard .artistSong{
    color: #AEAEAE;
}
.cardSong.lightCard {
    background-color: #fff;
    color: #333;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #ededed;
}

.likes {
    font-family: 'Fjalla One', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 10px;
    text-align: center;
    text-transform: uppercase;
    color: #AEAEAE;
    height: 25px;
    display: flex;
    flex-direction: column;
    width: 25px;
    min-width: 25px;
    padding-left: 5px;
    align-items: center;
}

.cardSong .titleSong{
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}
.cardSong .artistSong{
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    color: #AEAEAE;    
}

.timeSong{
    display: flex;
    line-height: 0.9;
    align-items: flex-start;
    margin-bottom: -2px;
}
.hourTime{
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #AEAEAE; 
    width: 20px;
}
.minuteTime{
    font-size: 11px;
    font-weight: 600;
    margin: 0;
    color: #AEAEAE;
}


#bannerTitleSong {
    color: #fff;
    font-size: 75px;
    padding: 0;
}

#bannerArtistSong {
    color: #AEAEAE;
    font-size: 30px;
    padding: 0;
}

#bannerTitleSong, #bannerArtistSong {
    font-family: 'Fjalla One', sans-serif;
    line-height: 1.25;
    white-space: nowrap;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}



.boxSong img{
    width: 100%;
    height: auto;
    margin: 0;
}
.boxSong:before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(45deg, black, transparent);
    border-radius: 10px;
    opacity: 0.5;
}
.boxTitleSong{
    position: absolute;
    bottom: 20px;
    color: white;
    left: 22px;
    z-index: 10;
}
#mainHeader{
    background: #1E1E20;
    position: sticky;
    z-index: 99;
    top: 0;
    margin-top: -70px;
}
#my_player{
    width: 100%;
}
.my_player_default {
    height: 70px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    padding-bottom: 4px;
}

.my_player_default .my_play {
    width: 22px;
    height: 22px;
    background: url(/images/play.png);
    background-size: contain;
    cursor: pointer;
    transition: 0.3s;

    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 10px;
    border: none;
}
.my_player_default .my_playing {
    width: 22px;
    height: 22px;
    background: url(/images/pause.png);
    background-size: contain;

    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 10px;
    border: none;

}.my_player_default .my_like {
    width: 22px;
    height: 22px;
    background: url(/images/like.png);
    background-size: contain;

    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 10px;
}
.my_player_logo {
    height: 35px;
    padding-right: 30px;
}

.my_player_default .my_mute {
    width: 22px;
    height: 22px;
    background: url(/images/volume.png);
    cursor: pointer;

    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 10px;
    border: none;
}

.my_player_default .my_volumediv {
    width: 100px;
    height: 5px;
    background: #333;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
}
.my_player_default .my_volume {
    transition: 0.3s;
    width: 70px;
    height: 5px;
    background: #fff;
    border-radius: 5px;
}
.mainMenu{
    display: flex;
    flex: 1;
    justify-content: flex-end;
    color: #fff;
    font-family: 'Fjalla One', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}
.mainMenu a{
    padding: 0 10px;
    color: #fff;
    text-decoration: none;
}
#like_button{
    width: 25px;
    height: 25px;
    object-fit: contain;
    margin: 0 10px 0 0;
}

#mainBanner {
        background-attachment: fixed;
}

.card.cardSong{
    padding: 10px 20px 9px;
}

@media (max-width:1800px){
    /*.boxSong img {
        width: 184px;
        height: 184px;
    }
    .boxSong:before{
        width: 184px;
        height: 184px;
        top: 6px;
    }*/
}

@media (min-width:1800px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1720px}}

@media (min-width:1800px){
    .col-xxxl{flex:1 0 0%}
    .col-xxxl-auto{flex:0 0 auto;width:auto}
    .col-xxxl-1{flex:0 0 auto;width:8.3333333333%}
    .col-xxxl-2{flex:0 0 auto;width:16.6666666667%}
    .col-xxxl-3{flex:0 0 auto;width:25%}
    .col-xxxl-4{flex:0 0 auto;width:33.3333333333%}
    .col-xxxl-5{flex:0 0 auto;width:41.6666666667%}
    .col-xxxl-6{flex:0 0 auto;width:50%}
    .col-xxxl-7{flex:0 0 auto;width:58.3333333333%}
    .col-xxxl-8{flex:0 0 auto;width:66.6666666667%}
    .col-xxxl-9{flex:0 0 auto;width:75%}
    .col-xxxl-10{flex:0 0 auto;width:83.3333333333%}
    .col-xxxl-11{flex:0 0 auto;width:91.6666666667%}
    .col-xxxl-12{flex:0 0 auto;width:100%}
    .offset-xxxl-0{margin-left:0}
    .offset-xxxl-1{margin-left:8.3333333333%}
    .offset-xxxl-2{margin-left:16.6666666667%}
    .offset-xxxl-3{margin-left:25%}
    .offset-xxxl-4{margin-left:33.3333333333%}
    .offset-xxxl-5{margin-left:41.6666666667%}
    .offset-xxxl-6{margin-left:50%}
    .offset-xxxl-7{margin-left:58.3333333333%}
    .offset-xxxl-8{margin-left:66.6666666667%}
    .offset-xxxl-9{margin-left:75%}
    .offset-xxxl-10{margin-left:83.3333333333%}
    .offset-xxxl-11{margin-left:91.6666666667%}
}

#lastSongs{
    transition: all 1s ease;
    display: flex;
    flex-direction: column-reverse;
}
#lastSongs .cardSong{       
    transition: all 1s ease;
    position: relative;
    flex-direction: row;
}
:root {
    --animate-delay: 0.5s;
}

#like{
    margin: 0;
}
#like_button{
    filter: grayscale(1);
}
#like_button.animate__heartBeat{
    filter: grayscale(0);
}