.loader {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 100;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #14182a;
    animation: loader 1.5s forwards linear;
}

header {
    display: flex;
    width: 100%;
    position: relative;
}

aside {
    background-image: linear-gradient(145deg, rgb(18, 34, 55) 0%, rgb(12, 27, 44) 100%);
    height: 100vh;
    width: 13%;
    padding: 1.5%;
    position: relative;
    transition: .3s;
    box-shadow: 0 42px 60px 0px rgb(0, 0, 0, 0.12);
    background-color: rgb(12, 27, 44);
}

.sidebar-hide {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 5%;
}

.toggle-sidebar-btn {
    transform: rotate(180deg);
}

.small-screen-logo {
    display: none;
}

.small-logo {
    display: none;
}

.show-element {
    display: block;
}

.hide-element {
    display: none;
}

.sidebar-btn {
    position: absolute;
    width: 40px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    top: 55%;
    left: 100%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: #fff;

}

.sidebar-btn i {
    transition: .4s;
    font-size: 1.6rem;
    color: #7c8ea5;
}

.sidebar-btn::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../assets/img/sidebar_bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    background-position: center center;
}

.music-menu h3:nth-of-type(2) {
    margin-top: 20px;
    margin-bottom: 5px;
}

.music-menu {
    flex-direction: column;
    display: flex;
    margin-top: 50px;

    >h3 {
        font-weight: 400;
        font-size: 1.1rem;
        text-transform: uppercase;
        color: #5c7089;
    }

    ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 20px;
        margin: 10px 0;

        >li {
            >a {
                font-size: 1rem;
                display: flex;
                align-items: center;
                font-weight: 500;
                gap: 10px;
                color: #7c8ea5;
                font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;

                >p {
                    transition: .3s;
                }

                >span {
                    width: 25px;
                    height: 20px;
                    vertical-align: middle;
                    background-repeat: no-repeat;
                    transition: 0.4s ease;
                    background-image: url(../assets/img/icon.svg);
                    display: inline-block;
                    background-position: 0 -37px;
                }
            }

            .active {
                color: #fb324f;
            }

            &:hover {
                >a {
                    >p {
                        color: #fb324f;
                    }
                }

                .icon-artists {
                    background-position: -354px -37px;
                }

                .icon-albums {
                    background-position: -160px -37px;
                }

                .icon-stations {
                    background-position: -56px -37px;
                }

                .icon-music {
                    background-position: -306px -37px;
                }

                .icon-downloads {
                    background-position: -258px -37px;
                }

                .icon-purchased {
                    background-position: -109px -37px;
                }

                .icon-favourites {
                    background-position: -209px -37px;
                }

                .icon-history {
                    background-position: -403px -37px;
                }
            }

            /* ///////////////////// */
            .icon-artists {
                background-position: -354px 0;
            }

            .icon-albums {
                background-position: -160px 0;
            }

            .icon-stations {
                background-position: -56px 0;
            }

            .icon-music {
                background-position: -306px 0;
            }

            .icon-downloads {
                background-position: -258px 0;
            }

            .icon-purchased {
                background-position: -109px 0;
            }

            .icon-favourites {
                background-position: -209px 0;
            }

            .icon-history {
                background-position: -403px 0;
            }
        }
    }
}

.menu-gap {
    margin: 6px 0 !important
}

.hero-container {
    width: 87%;
    display: flex;
    flex-direction: column;
    padding: 1% 3%;
    background-image: url(../assets/img/profil.png);
    background-position: center right;
    background-size: contain;
    background-repeat: no-repeat;

}

.hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;

}

.hero-top-col {
    gap: 15px;
    display: flex;
    width: 50%;
    align-items: center;
}

.bars {
    display: none;
}

.search-box {
    width: 60%;
    height: 50px;
    background-color: rgb(23, 37, 51);
    padding: 0 3%;
    align-items: center;
    display: flex;
    justify-content: space-between;
    border-radius: 50px;

    >input {
        outline: none;
        background-color: transparent;
        border: none;
        width: 100%;
        font-weight: 500;
        font-size: 5px;
        color: #7c8ea5;
        font-size: 13px;

        &::placeholder {
            color: #7c8ea5;
        }
    }

    >i {
        font-size: 1.3rem;
        color: #7c8ea5;
        cursor: pointer;
    }

}

.notification-icon {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-image: url(../assets/img/icon.svg);
    background-position: -765px 15px;
    display: inline-block;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: .4s;
    background-color: rgb(23, 37, 51);

    &:hover {
        background-position: -765px -20px;
    }

}

.user-info {
    display: flex;
    gap: 10px;
    align-items: center;

    >.user-img {
        >img {
            width: 55px;
            height: 55px;
            border-radius: 100%;
            object-fit: cover;
            border: 1px solid #fb324f;

        }
    }
}

.user-login-wrapper {
    position: relative;

    >h2 {
        color: #7c8ea5;
        font-size: 1rem;
        font-weight: 400;
        cursor: pointer;
    }
}

.user-wrapper-dropdown {
    display: flex;
    padding: 15px 17px;
    position: absolute;
    top: 100%;
    opacity: 0;
    border-radius: 10px;
    flex-direction: column;
    gap: 20px;
    background-color: rgb(23, 37, 51);
    transition: .4s;
    z-index: 5;

    &::after {
        content: "";
        width: 20px;
        height: 20px;
        position: absolute;
        top: -10px;
        right: 10px;
        background-color: rgb(23, 37, 51);
        transform: rotate(45deg);
    }

    >li {
        >a {
            display: flex;
            gap: 10px;
            align-items: center;

            >p {
                color: #7c8ea5;
                transition: 0.4s;
            }

            >span {
                width: 21px;
                height: 21px;
                margin-right: 6px;
                display: inline-block;
                vertical-align: middle;
                background-image: url(../assets/img/icon.svg);
                background-repeat: no-repeat;
                background-position: -1359px 3px;
                transition: 0.4s;
            }
        }

        >.icon-logout {
            background-position: -1391px -37px;
        }

        &:hover {
            >a {
                >p {
                    color: #fb324f;
                }

                >span {
                    background-position: -1359px -37px;
                }
            }

            >.icon-logout {
                background-position: -1391px -37px;
            }
        }
    }
}

.show-user-dropdown {
    top: 150%;
    opacity: 1;
}

.songs-container {
    position: relative;
    display: flex;
    width: 41%;
    margin-top: 50px;
    flex-direction: column;
}

.songs-container:after {
    content: '';
    width: 100%;
    height: 300px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: -webkit-linear-gradient(90deg, rgb(11 25 40) 0%, rgb(0 120 255 / 0%) 100%);
}

.songs-container:hover::after {
    display: none;
}

.songs-tabs {
    display: flex;
    position: relative;
    padding-bottom: 0;
    gap: 50px;
    align-items: center;
}

.songs-tabs::after {
    content: '';
    height: 2px;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-image: linear-gradient(90deg, rgb(48 69 95) 40%, rgb(12 25 41) 100%);
}

.songs-tabs h2 {
    cursor: pointer;
    z-index: 1;
    position: relative;
    font-size: 1rem;
    font-weight: 500;
    color: #7c8ea5;
    padding-bottom: 15px;
}

.active-song-list::after {
    width: 100% !important
}

.songs-tabs h2::after {
    content: "";
    background-color: #fb324f;
    width: 0;
    height: 2px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.4s;
}

.songs-tabs h2.active-tab-list::after {
    width: 100%;
}

.songs-wrapper {
    padding-right: 20px;
    margin-top: 20px;
    flex-direction: column;
    gap: 20px;
    overflow: scroll;
    width: 100%;
    height: 600px;
    display: flex;
}

.song-col {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-radius: 10px;
    padding: 7px 15px;
    cursor: pointer;
    background-color: rgb(23, 37, 51);
    transition: 0.4s;
}

.songs-wrapper2 {
    display: none;
}

.songs-wrapper3 {
    display: none;
}

.song-col:hover {
    background-color: #fb324f;
}

.show_songs {
    animation: show_songs 0.4s linear;
}

.songs-wrapper::-webkit-scrollbar {
    width: 5px;
}

.songs-wrapper::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #fb324f;
}

.song-info {
    position: relative;
    align-items: center;
    display: flex;
    gap: 20px;
}

.song-info span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #aebed3;
}

.play-img {
    position: absolute;
    top: 20%;
    left: 5%;
    opacity: 0;
    transition: 0.4s;
    transform: translate(-50%, -50%) scale(0.5);
}

.song-col:hover .play-img {
    top: 50%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.song-box {
    gap: 10px;
    display: flex;
    align-items: center;

    >img {
        width: 60px;
        height: 50px;
        object-fit: cover;
        border-radius: 10px;
    }
}

.song-det {
    display: flex;
    flex-direction: column;
}

.song-det h2 {
    font-size: 1rem;
    color: #aebed3;
    font-weight: 500;
    transition: 0.4s;
}

.song-col:hover .song-det h2 {
    color: #fff;
}

.song-det p {
    font-size: 13px;
    transition: 0.4s;
    color: #5c7089;
}

.song-col:hover .song-det p {
    color: #fff;
}

.song-icon-time {
    display: flex;
    gap: 30px;
    align-items: center;

    >p {
        color: #aebed3;
        font-size: 13px;
    }
}

.song-icon-time i {
    color: #aebed3;
    font-size: 1.5rem;
    cursor: pointer;
}

.song-col:hover .song-icon-time i {
    color: #fff;
}

.song-col:hover .song-icon-time p {
    color: #fff;
}

.song-option {
    position: relative;
}

.song-option-dropdown {
    opacity: 0;
    position: absolute;
    top: 100%;
    border-radius: 10px;
    background-color: rgb(23, 37, 51);
    left: -145px;
    width: 180px;
    padding: 10px 15px;
    transform: scale(0);
    box-shadow: 0 0 60px 0px rgba(0, 0, 0, 0.2);
    display: flex;
    transition: 0.4s;
    flex-direction: column;
    z-index: 5;
    gap: 7px;
}

.song-option-dropdown::after {
    content: '';
    background-color: rgb(23, 37, 51);
    width: 20px;
    height: 20px;
    position: absolute;
    top: -10px;
    right: 15px;
    transform: rotate(45deg);
}

.song-option-box {
    display: flex;
    gap: 10px;
    cursor: pointer;
    align-items: center;

    >h3 {
        color: #7c8ea5;
        font-weight: 500;
        font-size: 13px;
        transition: 0.4s;
    }
}

.song-option-box span {
    vertical-align: middle;
    display: inline-block;
    width: 21px;
    height: 25px;
    background-image: url(../assets/img/icon.svg);
    background-repeat: no-repeat;
    background-position: -205px 3px;
    transition: 0.4s;
}

.song-option-box:hover .fav-option-icon {
    background-position: -205px -35px;
}

.song-option-box .download-option-icon {
    background-position: -258px 2px;
}

.song-option-box:hover .download-option-icon {
    background-position: -258px -35px;
}

.song-option-box .add-pl-option-icon {
    background-position: -617px 3px;
}

.song-option-box:hover .add-pl-option-icon {
    background-position: -617px -35px;
}

.song-option-box .share-option-icon {
    background-position: -660px 3px;
}

.song-option-box:hover .share-option-icon {
    background-position: -660px -35px;
}

.song-option-box:hover h3 {
    color: #fb324f;
}

.show-songs-option {
    transform: scale(1);
    top: 150%;
    opacity: 1;
}

.bottom-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 0 !important;
    left: 0;
    transition: 0.4s;
    background: url(../assets/img/player_bg.png) rgb(23 39 62);
    background-repeat: no-repeat;
    background-size: contain;
    box-shadow: 0px 31px 50px 0px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.bottom-container-btn {
    width: 40px;
    height: 100px;
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    color: #fff;
    align-items: center;
    justify-content: center;
    display: flex;
    z-index: 1;
    cursor: pointer;
}

.bottom-container-btn i {
    font-size: 1.7rem;
    color: #aebed3;
}

.icone-rotate {
    transform: rotate(180deg);
}

.bottom-container-btn {
    transition: 0.4s;
}

.bottom-container .bottom-container-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url(../assets/img/open_img.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.bottom-container::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(27, 32, 57, 0.6);
}

.show-bottom-box {
    bottom: -106.5px !important;
    opacity: 1;
}

.music-box {
    padding: 35px 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    background-image: linear-gradient(90deg, rgb(255, 85, 62) 0%, rgb(255, 0, 101) 100%);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 350px;

}

.music-box-img img {
    border-radius: 7px;
    width: 100px;
    height: 100px;
}

.music-box-text {
    display: flex;
    flex-direction: column;
    width: 150px;
}

.music-box-text h2 {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.music-box-text p {
    font-size: 13px;
    font-weight: 400;
    color: #ececec;

}


.music-box i {
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 100%;
    color: #fff;
}

.music-play-wrapper {
    width: 60%;
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
}

.music-play-option {
    display: flex;
    align-items: center;
    gap: 20px;
}

.music-play-option span {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: rgb(23, 37, 51);
}

.music-play-option .icon {
    background: url(../assets/img/icon.svg) !important;
    width: 30px;
    height: 30px;
    background-position: -840px 7px !important;
    background-repeat: no-repeat !important;
    display: inline-block;
    background-color: transparent;
    cursor: pointer;
    transition: 0.4s;
}

.music-play-option .play-pause {
    background-position: -875px 7px !important;
}

.music-play-option button {
    background-color: transparent;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.05);
}

.music-play-btn-active {
    animation: clicked 0.6s forwards linear;
}

.play-button {
    width: 50px !important;
    height: 50px !important;
    background-image: linear-gradient(90deg, rgb(255, 85, 62) 0%, rgb(255, 0, 101) 100%) !important;
}

.music-play-option button:active .play-pause,
.music-play-option button:focus .play-pause {
    background-position: -877px -29px !important;
}

.music-play-option .play-next {
    background-position: -953px 7px !important;
}

.music-play-box {
    width: 70%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 15px;
}

.music-play-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.music-play-line {
    width: 100%;
    height: 3px;
    border-radius: 10px;
    background-color: #fff;
    position: relative;

    .progress-bar {
    width: 0%;
    height: 100%;
    background-color: #3658ab;
    position: relative;

    &::after {
      content: "";
      position: absolute;
      top: 50%;
      right: -10px;
      transform: translate(-50%, -50%);
      width: 10px;
      height: 10px;
      border-radius: 100%;
      background-color: #fb324f;
    }
  }
}


/* .music-play-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 4px;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #fb324f;
} */


.music-timeline {
    display: flex;
    justify-content: space-between;
}

.music-timeline p {
    color: #fff;
    font-size: 11px;
}

.music-val-option {
    display: flex;
    align-items: center;
    gap: 20px;
}

.music-volume img {
    width: 23px;
    height: 23px;
    cursor: pointer;
}

.music-mode {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
}

.music-val-option .music-mode span {
    background: url(../assets/img/icon.svg) !important;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat !important;
    background-color: transparent;
    display: inline-block;
    cursor: pointer;
    transition: 0.4s;
}

.music-val-option .music-mode .shuffle-icon {
    background-position: -688px 5px !important;
}

.music-val-option .music-mode:active .shuffle-icon,
.music-val-option .music-mode:focus .shuffle-icon {
    background-position: -688px -31px !important;
}

.music-val-option .music-mode .repeat-icon {
    background-position: -731px 5px !important;
}

.music-val-option .music-mode:active .repeat-icon,
.music-val-option .music-mode:focus .repeat-icon {
    background-position: -731px -31px !important;
}

.music-bottom-btn {
    padding-right: 2%;
    position: relative;
}

.music-bottom-btn button {
    width: 150px;
    height: 45px;
    border-radius: 50px;
    background-image: linear-gradient(90deg, rgb(255, 85, 62) 0%, rgb(255, 0, 101) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: #fff;
    transition: 0.4s;
    margin-bottom: 30px;
}

.music-bottom-btn button:hover {
    background-image: linear-gradient(-90deg, rgb(255, 85, 62) 0%, rgb(255, 0, 101) 100%);
}

.music-bottom-btn button i {
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

.queue-dropdown-box {
    position: absolute;
    opacity: 0;
    top: 100%;
    left: 82%;
    width: 18%;
    background-color: #101f33;
    border-radius: 10px;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
}

.show-queue-box {
    top: -380px;
    opacity: 1;
}

.queue-dropdown-box .sidebar-btn {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.queue-dropdown-box h1 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
}

.queue-wrapper {
    width: 100%;
    height: 350px;
    overflow: scroll;
    display: flex;
    flex-direction: column;
    margin-top: 20px;

}

.queue-wrapper::-webkit-scrollbar {
    width: 5px;
}

.queue-wrapper::-webkit-scrollbar-thumb {
    background-color: #fff;
    border-radius: 10px;
}

.queue-col {
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
    padding: 5px 22px;
    transition: 0.4s;
}

.queue-wrapper .queue-col:nth-child(1) {
    background-color: #283d54;
    color: #fff;
}

.queue-img img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 10px;
}

.queue-text {
    display: flex;
    flex-direction: column;
}

.queue-text h2 {
    font-size: 1rem;
    font-weight: 500;
    color: #7c8ea5;
    transition: 0.4s;
}

.queue-text:hover h2,
.queue-text:hover p {
    color: #fff;
}

.queue-text p {
    font-size: 12px;
    color: #7c8ea5;
    font-weight: 400;
    transition: 0.4s;
}

.queue-col:hover {
    background-color: #fb324f;
}

.queue-btns {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.queue-btns button {
    width: 140px;
    height: 35px;
    border-radius: 50px;
    background-image: linear-gradient(90deg, rgb(255, 85, 62) 0%, rgb(255, 0, 101) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: #fff;
    transform: 0.4s;
}

.queue-btns button:hover {
    background-image: linear-gradient(-90deg, rgb(255, 85, 62) 0%, rgb(255, 0, 101) 100%);
}

.queue-btns a {
    font-size: 1rem;
    font-weight: 400;
}

.queue-btns a:hover {
    color: #fb324f;
}

.artist-menu .icon-discover {
    background-position: 0  0px;
}

.music-menu ul li:hover .icon-discover {
    background-position: 0 -37px !important;
}

.artist-menu .icon-artists {
    background-position: -354px -37px !important;
}

.music-menu ul li:hover .icon-artists {
    background-position: -354px -37px !important;
}

.artist .hero-container {
    background-image: none;
}

.artist-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.Headings {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 10px 0;
}

.Headings h2 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #7c8ea5;
}

.Headings .heading-lines {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.Headings .heading-line {
    width: 100%;
    height: 1px;
    background-color: #5c7089;
    opacity: 0.6;
}

.artist-slider {
    width: 100%;
    margin: 20px 0;
}

.artistSplide,
.recommendedSplide,
.albumSplide,
.recommededalbumSplide,
.stationSplide,
.locationSplide {
    width: 100%;
}

.artist-card-box {
    position: relative;
    width: 100%;
    height: 100%;
    transition: 0.4s;
}

.artist-card-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #152740;
    border-radius: 10px;
    opacity: 0;
    transition: 0.4s;
}

.artist-card-box:hover::after {
    opacity: 1;
}

.artist-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    transition: 0.4s;
    cursor: pointer;
}

.artist-card-box:hover .artist-card {
    transform: scale(0.9);
}

.artist-img img {
    width: 100%;
    border-radius: 10px;
}

.artist-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.artist-info h2 {
    font-size: 1rem;
    color: #aebed3;
    font-weight: 400;
    margin: 5px 0;
    transition: 0.4s;
}

.artist-info p {
    font-size: 12px;
    color: #7c8ea5;
    transition: 0.4s;
}

.artist-card-box:hover .artist-info h2,
.artist-card-box:hover .artist-info p {
    color: #fff;
}

.albums-menu .icon-artists {
    background-position: -354px 0px !important;
}

.albums-menu .icon-albums {
    background-position: -160px -37px !important;
}

/* //////////////////////////////////////////////////// */
.albums-menu .icon-artists {
    background-position: -354px 0px !important;
}

.albums-menu .icon-albums {
    background-position: -160px -37px !important;
}

.artist-menu .icon-discover {
    background-position: 0  0px;
}

.music-menu ul li:hover .icon-discover {
    background-position: 0 -37px !important;
}

.stations-menu .icon-artists {
    background-position: -354px 0px !important;
}

.artist-menu li:hover .icon-artists {
    background-position: -354px -37px !important;
}

.stations-menu li .icon-stations {
    background-position: -56px -37px !important;
}

.stations-menu li:hover .icon-stations {
    background-position: -56px -37px !important;
}

.stationsWrapper .Headings .heading-lines {
    width: 60%;
}

.download-menu .icon-artists {
    background-position: -354px 0px !important;
}

.download-menu li:hover .icon-artists {
    background-position: -354px -37px !important;
}

.download-menu .icon-downloads {
    background-position: -258px -37px !important;
}

.download-menu li:hover .icon-downloads {
    background-position: -258px -37px !important;
}

.download-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 20px;
}

.download-title h2 {
    font-size: 1.5rem;
    color: #aebed3;
    font-weight: 500;
}

.download-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 10px 0;
    color: #aebed3;
}

.download-col-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-bottom: 15px;
    position: relative;
}

.download-col-top::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(90deg, rgb(48 69 95) 80%, rgb(12 25 41) 100%);
}

.download-col-top li {
    width: 100%;
}

.download-col {
    margin: 7px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    transition: 0.2s;
}

.download-col-box {
    margin-top: 10px;
}

.download-col li {
    width: 100%;
    font-size: 1rem;
    font-weight: 300;
    cursor: pointer;
    position: relative;
}

.active-download {
    color: #fb324f;
}

.close-download {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: rgb(18, 34, 55);
}

.download-col:hover {
    color: #fb324f;
}

.play-download-btn {
    position: absolute;
    top: 0%;
    left: 5%;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    transition: 0.2s;
}

.download-col:hover .play-download-btn {
    opacity: 1;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
}

.download-col li,
.download-col-top li {
    font-size: 12px;
}

.Purchased-menu .icon-artists {
    background-position: -354px 0px !important;
}

.Purchased-menu li:hover .icon-artists {
    background-position: -354px -37px !important;
}

.Purchased-menu .icon-downloads {
    background-position: -258px 0px !important;
}

.Purchased-menu li:hover .icon-downloads {
    background-position: -258px -37px !important;
}

.Purchased-menu .icon-purchased {
    background-position: -109px -37px !important;
}

.Purchased-menu li:hover .icon-purchased {
    background-position: -109px -37px !important;
}

/* /////////////////////////////////////////////////////// */

.favourites-menu .icon-artists {
    background-position: -354px 0px !important;
}

.favourites-menu li:hover .icon-artists {
    background-position: -354px -37px !important;
}

.favourites-menu .icon-downloads {
    background-position: -258px 0px !important;
}

.favourites-menu li:hover .icon-downloads {
    background-position: -258px -37px !important;
}

.favourites-menu .icon-favourites {
    background-position: -209px -37px !important;
}

.favourites-menu li:hover .icon-favourites {
    background-position: -209px -37px !important;
}


/* ////////////////////////////////////////////////////////// */
.myfoot {
    width: 230px;
    height: 230px;
    position: fixed;
    right: 40px;
    bottom: 40px;

    &:hover {

        >img,
        &::before {
            animation-play-state: paused;
        }

        >figcaption {
            bottom: -30px;
            opacity: 1;
        }

        >a {
            right: 150%;
        }
    }

    >img,
    &::before {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

    >img {
        object-fit: cover;
        animation: fancy1 ease-out infinite alternate 5s;
    }

    &::before {
        content: '';
        background-color: mediumorchid;
        animation: fancy2 ease-out infinite alternate 5s;
    }

    >figcaption {
        position: absolute;
        width: 100%;
        text-align: center;
        font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
        font-size: 23px;
        text-transform: capitalize;
        left: 0;
        bottom: 0;
        opacity: 0;
        transition: 1s;
        color: mediumorchid;
    }

    a {
        font-size: 25px;
        color: mediumorchid;
        position: absolute;
        right: 50%;
        text-decoration: none;
        transition: 1s;

        &:nth-of-type(1) {
            top: 20%;
            transition-delay: 0.2s;
        }

        &:nth-of-type(2) {
            top: 40%;
            transition-delay: 0.4s;
        }

        &:nth-of-type(3) {
            top: 60%;
            transition-delay: 0.6s;
        }

        &:nth-of-type(4) {
            top: 80%;
            transition-delay: 0.8s;
        }
    }
}

@keyframes fancy1 {
    0% {
        border-radius: 51% 49% 25% 75% / 46% 31% 69% 54%;
    }

    50% {
        border-radius: 31% 69% 15% 85% / 68% 64% 36% 32%;
    }

    100% {
        border-radius: 18% 82% 76% 24% / 66% 45% 55% 34%;
    }
}

@keyframes fancy2 {
    0% {
        border-radius: 31% 69% 15% 85% / 68% 64% 36% 32%;
    }

    50% {
        border-radius: 18% 82% 76% 24% / 66% 45% 55% 34%;
    }

    100% {
        border-radius: 51% 49% 25% 75% / 46% 31% 69% 54%;
    }
}















@keyframes loader {
    0% {
        opacity: 1;
    }

    95% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        display: none;
    }
}

@keyframes show_songs {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes clicked {
    0% {
        box-shadow: 0 0 0 rgb(255, 255, 255, 0);
    }

    50% {
        box-shadow: 0 0 10px rgb(255, 255, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 0 rgb(255, 255, 255, 0);
    }
}

@media (max-width:1400px) {
    aside {
        width: 150%;
    }

    .songs-container {
        width: 50%;
    }

    .hero-container {
        background-size: 70%;
    }

    .search-box {
        width: 80%;
    }

    .artist-info h2 {
        font-size: 14px;
    }

    .artist-info p {
        font-size: 11px;
    }

    .Headings h2 {
        font-size: 1.1rem;
    }
}

@media (max-width:1200px) {
    .song-det p {
        font-size: 10px;
    }

    .music-play-wrapper {
        gap: 20px;
    }

    .search-box {
        width: 80%;
    }

    .queue-text h2 {
        font-size: 12px;
    }

    .hero-container {
        background-size: contain;
    }

    .Headings h2 {
        font-size: 14px;
    }
}

@media (max-width:900px) {

    .music-bottom-btn button,
    .queue-dropdown-box,
    .shuffle-mode .repeat-mode {
        display: none;
    }

    .music-play-wrapper {
        width: 500%;
    }

    .hero-container {
        background-image: none;
    }

    aside {
        width: 20%;
    }

    .songs-container {
        width: 100%;
    }

    .hero-top-col {
        width: 65%;
    }

    .search-box {
        width: 100%;
    }

    .notification-icon {
        background-position: -77px 15px;
    }

    .notification-icon:hover {
        background-position: -77px -20px;
    }

    .sidebar-hide {
        width: 7%;
    }

    .artist .hero-container {
        width: 85%;
    }

    .Headings .heading-lines {
        width: 60%;
    }

    .artist-img {
        width: 150px;
        height: 150px;
    }

    .download-wrapper {
        height: 550px;
        overflow: scroll;
        padding: 0 15px;
    }

    .download-col li,
    .download-col-top li {
        font-size: 9px;
    }

    .download-col li:nth-child(6),
    .download-col li:nth-child(5) .download-col-top li:nth-child(6),
    .download-col-top li:nth-child(5) {
        display: none;
    }

    .download-col-top {
        width: 100%;
    }

}

@media (max-width:768px) {

    .music-box,
    .sidebar-btn,
    .artist .user-info .bars,
    .artist aside {
        display: none;
    }

    .bars {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        border: 1px solid #fb324f;
        color: #fff;
        border-radius: 5px;
        transition: 0.4s;
        font-size: 1.2rem;
    }

    .bars:hover {
        color: black;
        background-color: #fff;
        border-color: transparent;
    }

    .music-play-wrapper,
    .hero-top-col,
    .user-info,
    .hero-container,
    .artist .hero-container {
        width: 100%;
    }

    .hero-top {
        gap: 10px;
        flex-direction: column;
    }

    .user-info {
        justify-content: space-between;
    }

    aside {
        left: 100%;
        width: 0;
        opacity: 0;
        transition: 0.4s;
    }

    .show-aside {
        width: 25%;
        left: 0;
        opacity: 1;
    }

    .bottom-container {
        height: 120px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .music-play-wrapper {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .music-play-box {
        width: 60%;
    }

    .show-bottom-box {
        bottom: -85px !important;
    }

    .artist {
        height: 100vh;
    }

}

@media (max-width:500px) {

    .logo img:nth-child(1),
    .music-menu h2,
    .music-menu ul li a p,
    .artist .bottom-container {
        display: none;
    }

    .small-screen-logo {
        display: none;
    }

    aside {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .show-aside {
        width: 15%;
    }

    .songs-tabs h2,
    .song-det h2 {
        font-size: 12px;
    }

    .song-icon-time {
        width: 25%;
        gap: 10px;
    }

    .artist .Headings {
        margin: 0;
    }

    .artist .Headings h2 {
        font-size: 16px;
    }

    .Headings .heading-lines {
        width: 50%;
    }

    .artist-img {
        width: 85%;
        height: 100%;
    }

    .stationsWrapper .Headings .heading-lines {
        width: 30%;
    }

    .download-col-top li:nth-child(4),
    .download-col li:nth-child(4) {
        display: none;
    }

    .download-col li,
    .download-col-top li {
        display: flex;
        justify-content: flex-start;
        align-items: self-start;
        text-align: left;
        font-size: 10px;
    }

    .download-col-top li:nth-child(7),
    .download-col li:nth-child(7) {
        transform: translatex(50px);
    }


}





