/* For screens with a maximum width of 1200 pixels */
@media screen and (max-width: 1200px) {
    .main {
        width: 95%;
        transition: .5s linear;
    }

    .main .menu_side,
    .song_side {
        width: 30%;
    }

    .main .song_side {
        width: 70%;
    }

    .main .song_side .content {
        height: 18%;
    }
    .main .menu_side h6 {
        display: none;
    }
}

/* For screens with a maximum width of 930 pixels */
@media screen and (max-width: 930px) {
    .main .menu_side {
        z-index: 999;
        width: 40%;
        position: absolute;
        transition: 1s linear;
        transform: translateX(-100%);
    }

    .main .song_side {
        width: 100%;
    }

    .main .master_play {
        position: absolute;
        bottom: 0;
    }

    .main .menu_side h6 {
        position: absolute;
        right: -40px;
        bottom: 10px;
        width: 40px;
        height: 40px;
        background: #111727;
        border-radius: 0px 10px 10px 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        cursor: pointer;
        transition: 1s linear;
        z-index: 999999999999;
        color: #fff;
    }
}

/* For screens with a maximum width of 680 pixels */
@media screen and (max-width: 680px) {
    .main {
        width: 100%;
        height: 100vh;
    }

    .main .song_side nav ul li {
        font-size: 11px;
        margin-right: 10px;
    }

    .main .menu_side {
        width: 60%;
    }

    .main .master_play {
        z-index: 999999999999999999999999999;
    }

    .main .master_play .icon {
        position: absolute;
        top: -46px;
        right: 30%;
    }

    .main .master_play .icon::before {
        content: '';
        position: absolute;
        width: 200px;
        height: 180px;
        background: #111727;
        z-index: -1;
        border-radius: 50% 50% 0% 0%;
        left: -20%;
        box-shadow: 0px -11px 20px -17px #000;
    }

    .main .master_play .wave {
        position: absolute;
        top: -90px;
        width: 40px;
        height: 40px;
        right: 40%;
    }

    .main .master_play .wave .wave1 {
        width: 8px;
    }
}

/* For screens with a maximum width of 470 pixels */
@media screen and (max-width: 470px) {
    .main .master_play .wave {
        right: 44%;
    }
    .main .menu_side {
        width: 70%;
    }
    .main .song_side .popular_song {
        margin-top: 40px;
    }
}

/* For screens with a maximum width of 412 pixels */
@media screen and (max-width: 412px) {
    .main .song_side nav ul li {
        font-size: 10px;
        margin-right: 7px;
    }
    .main .song_side .popular_song {
        margin-top: 60px;
    }
    .main .master_play .wave {
        right: 45%;
    }
    .main .menu_side {
        width: 80%;
    }
}