.textToSpeechTrigger:before {
    font-family: 'FontAwesome';
    content: "\f028";
    padding-right: 3px;
    vertical-align: middle;
    background-color: #ffffff;
    color: #5d9cec;
    border-radius: 50%;
    padding: 5px;
    margin-right: 5px;
    font-size: 20px;
    cursor: pointer;
}
.textToSpeechTrigger:hover:before {
    background-color: #5d9cec;
    color: #ffffff;
}
.textToSpeechTrigger.textToSpeechTriggerActive:before {
    background-color: #5d9cec;
    color: #ffffff;
}
.textToSpeechTrigger.ttst-15:before {
    font-size: 15px;
}
#textToSpeechPlayer {
    position: fixed; 
    display: none; 
    width: 100%; 
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 999999;
    cursor: default;
}

#textToSpeechWrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 50px;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
}
#textToSpeechContainer {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    border-radius: 0.25rem;
}
.textToSpeechImg {
    width: 400px;
    height: 300px;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
    cursor: default;
}
#textToSpeechImgPause {
    display: none;
}
#textToSpeechBody {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
#textToSpeechBtnsWrapper {
    float: right;
}
.textToSpeechBtns {
    padding: 10px;
    background: #000;
    color: #6CB4EE;
    border: none;
    font-size: .5em;
    cursor: pointer;
}
#textToSpeechPauseResume {
    margin-right: 5px;
}
.textToSpeechActive {
    background-color: #5d9cec;
    color: #ffffff;
}