#click {
    display: none;
}

.btn-audio {
    border: none;
}

.label-box {
    position: fixed;
    right: 30px;
    bottom: 15px;
    /* Geser lebih bawah */
    height: 45px;
    width: 45px;
    background: -webkit-linear-gradient(left, #FAFAFA, #E0EFE4);
    text-align: center;
    line-height: 45px;
    border-radius: 10px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    z-index: 1031;
    transition: transform 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}



.icon-chatbox {
    position: absolute;
    color: #fff;
    width: 20px;
    top: 15px;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.label-box:hover {
    -ms-transform: scale(1.1);
    /* IE 9 */
    -webkit-transform: scale(1.1);
    /* Safari 3-8 */
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .label-box {
        right: 25px;
        bottom: 130px;
    }
}

@media (max-width: 576px) {
    .label-box {
        right: 25px;
        bottom: 80px;
    }

    .icon-chatbox {
        position: absolute;
        top: 49%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.4s ease;
    }
}