.startedLessonOrTestPanel{
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    background-color: rgba(255,255,255, 0.3);

    padding: 15px 15px;
    border-radius: 1000px;
    border: 1px solid rgba(0,0,0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0,0,0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(100%);
    transition: transform 300ms ease-in-out;
}

.startedLessonOrTestPanelVisible{
    transform: translateY(0);
    transition: transform 300ms ease-in-out;
}

.startedLessonOrTestPanelText{
    font-size: 11px;
    font-weight: 500;
    color: #747474;
    line-height: 1;
    font-weight: 300;
}

.startedLessonOrTestPanelTitle{
    font-size: 13px;
    font-weight: 500;
    color: #000;
    line-height: 1;
    font-weight: 300;
    text-decoration: none;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 300px;
    min-width: 0;
}

.startedLessonOrTestPanelContent{
    margin-right: 20px;
    padding-left: 15px;
    min-width: 0;
    flex: 1;
    overflow: hidden;
}

.startedLessonOrTestPanelTime{
    font-size: 14px;
    font-weight: 500;
    color: #747474;
    line-height: 1;
    font-weight: 300;
    margin-left: auto;
    white-space: nowrap;
}

.startedLessonOrTestPanelStopButton{
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0 0 0 20px;
    background-color: #91CF4F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.startedLessonOrTestPanelStopButtonIcon{
    width: 24px;
    height: 24px;
    color: #ffffff;
}