#learndash-timer-modal {
    position: fixed;
    background: #c8c8c8e6;
    top: 0;
    border: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 10005;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.ld-back-to-lesson{
    display: inline-block;
    border-radius: 4px;
    padding: 0.75em 0.875em;
    background-color: #e3ebf0;
    margin: 20px 0px;
}
#learndash-timer-modal span{
    position: absolute;
    right: 50px;
    top: 50px;
    font-size: 30px;
    color: #000;
    cursor: pointer;
}
/*flip timer*/
.ldt-timer{
    position: fixed;
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap:  5px;
    width: 300px;
    height: 50px;
    bottom: 40px;
    right: 5%;
    background-color: #0C9;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    font-size: 20px;
    font-weight: 400;
}
@media only screen and (max-width: 600px) {
    .ldt-timer{
        bottom: 50px;
    }
    #learndash-timer-modal-text{
        text-align: center;
    }
}

