.recordinganimation {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 50px;
}

.recording-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 15px auto;
    padding: 35px 20px;
    padding-bottom: 15px;
    width: 60%;
}

.recording-controls .controlbtns {
    padding: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: var(--accent-color);
    color: #fff;
    margin: 0 10px;
    font-size: 30px;
}

.controlbtns:disabled {
    background-color: var(--secondary-color);
}

#stopButton {
    background-color: red;
}

#stopButton:disabled {
    background-color: rgb(252, 157, 157);
}

#translatecheck {
    /* accent-color: var(--accent-color); */
    width: 32px;
    height: 16px;
}

.responsecontainer .response {
    position: relative;
}

.response .copyBtns {
    position: fixed;
    bottom: 71px;
}