/* ===========================
   MUSIC
=========================== */
.music-wrapper {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 1000;
}

/* ===========================
   MUSIC BUTTON
=========================== */
.music-toggle {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

.music-toggle:hover {
    transform: scale(1.08);
}

.music-toggle:active {
    transform: scale(0.95);
}

/* ===========================
   ICON
=========================== */
.music-toggle i {
    font-size: 1.25rem;
    line-height: 1;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 480px) {
    .music-wrapper {
        left: 18px;
        bottom: 18px;
    }

    .music-toggle {
        width: 42px;
        height: 42px;
    }

    .music-toggle i {
        font-size: 1.15rem;
    }
}

@media (max-width: 360px) {
    .music-wrapper {
        left: 15px;
        bottom: 15px;
    }

    .music-toggle {
        width: 40px;
        height: 40px;
    }

    .music-toggle i {
        font-size: 1.1rem;
    }
}

@media (min-width: 1200px) {
    .music-wrapper {
        left: calc(45vw + 24px);
    }
}