
#hnp-tts-wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 20px auto;
    
    background: #F0F0F0;
    padding: 10px;
    border-radius: 16px;
}

#hnp-tts-player {
    width: 100%;
    display: flex;
    
    font-size: 14px;
    
    position: relative;
    
    border-radius: 7px;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;
}

#hnp-tts-player #hnp-tts-play {
    font-size: 24px;
    padding: 0;
    border-radius: 14px;
    margin-left: 0;
    margin-right: 0;
    flex-shrink: 0;
    text-align: center;
    line-height: 1;
    color: #fff;
    background-color: #111;
    border: 3px solid #111;
    width: 50px;
    height: 50px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    transition: 0.3s all;
}

#hnp-tts-player #hnp-tts-play i {
    color: #fff;
}

#hnp-tts-player #hnp-tts-play:hover {
    background-color: transparent;
    color: #111;
    border-color: #111;
}

#hnp-tts-player #hnp-tts-play:hover i {
    color: #111;
}

#hnp-tts-progress {
    width: 100%;
    height: 50px;
    margin: 0px 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: flex-end;
    transition: 0.3s all;
}

#hnp-tts-progress-bar {
    width: 100%;
    display: flex;
    margin-top: 0;
    background: #ddd;
    height: 6px;
    border-radius: 3px;
}

#hnp-tts-progress-bar-progress {
    height: 100%;
    width: 0;
    background: #333;
    margin: 0;
    border-radius: 3px;
    transition: 0.3s all;
}

#hnp-tts-estimated-reading-time {
    margin-top: 2px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
    letter-spacing: 0.3px;
    margin-bottom: 0;
    color: #333;
}

#hnp-tts-estimated-reading-time span {
    font-weight: 600;
}

#hnp-tts-settings {
    position: relative;
    display: flex;
    height: 100%;
    align-self: flex-end;
}

#hnp-tts-settings-btn {
    font-size: 18px;
    padding: 0;
    border-radius: 8px;
    margin-left: 0;
    margin-right: 0;
    flex-shrink: 0;
    text-align: center;
    line-height: 1;
    color: #111;
    background-color: #dddddd;
    border: 3px solid #ddd;
    width: 30px;
    height: 30px;
    /* display: flex; */
    align-content: center;
    justify-content: center;
    align-items: center;
    /* position: absolute; */
    bottom: 0;
    right: 0;
    margin-bottom: 0;
    margin-top: auto;
    
    transition: 0.3s all ;
}
#hnp-tts-settings-btn:hover {
    border-color: #111;
    background-color: #111;
    color: #fff;
}

#hnp-tts-settings-form {
    display: flex;
    max-width: 200px;
    width: 100%;
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    z-index: 2;
    background-color: rgb(255 255 255 / 90%);
    padding: 20px;
    box-shadow: 0px 24px 14px 7px #3333334a;
    border-radius: 20px;
    backdrop-filter: blur(3px) contrast(0.8);
}

#hnp-tts-settings-form .hnp-tts-settings-form-row {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
}

#hnp-tts-settings-form .hnp-tts-settings-form-row label {
    font-size: 12px;
    letter-spacing: 0.3px;
    color: #6B6B6B;
}

#hnp-tts-settings-form .hnp-tts-settings-form-row input {
    font-size: 14px;
    padding: 10px 5px;
    width: auto;
    line-height: 1;
    background-color: #F0F0F0;
}