
.qcld_floating_text_to_speech_box {
    z-index: 9999;
    width: 60px;
    height: 60px;
    line-height: 60px;
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2), 0 2px 5px 0 rgba(0, 0, 0, 0.2);
    backface-visibility: hidden;
    padding: 0;
    border: none;
    border-radius: 50%;
    position: fixed;
    bottom: 35px !important;
    right: 35px !important;
}

.qcld_floating_text_to_speech_box .qcld_floating_text_to_speech_button {
    background-color: rgb(42, 201, 170);
    color: rgb(255, 255, 255);
    position: absolute;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    padding: 0;
    border: none;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    font-size: 20px;
}
.qcld_floating_text_to_speech_box .qcld_floating_text_to_speech_button.qcld_floating_text_to_speech_loud{
    background-color: rgb(16 176 145);
}
.qcld_floating_text_to_speech_box .qcld_floating_text_to_speech_button.qcld_floating_text_to_speech_loud img{
    background-color: rgb(16 176 145);
    animation: pulse 2s infinite;
}

.wp_button_text_to_speech-buttons.qcld_floating_text_to_speech_loud img,
.qcld_playbutton.qcld_floating_text_to_speech_loud img,
.wp_button_text_to_speech-button.qcld_floating_text_to_speech_loud img{

    animation: pulse 2s infinite;
}

.qcld_floating_text_to_speech_boxs{
    display: inline-block;
    margin: 0px 4px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}