/* JP Subtitle Panel ------------------------------------------------------ */

.jp-sub-toggle { cursor: pointer; }
.jp-sub-toggle.is-on { color: #f5c518; }

.jp-sub-panel {
    margin: 0;
    background: #101216;
    border: 1px solid #2a2e37;
    border-radius: 6px;
    overflow: hidden;
}
.jp-sub-panel[hidden] { display: none; }

.jp-sub-panel__current {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 12px 16px;
    text-align: center;
    font-size: 17px;
    line-height: 1.5;
    color: #fff;
    white-space: pre-line;
    word-break: break-word;
}

.jp-sub-panel__current.is-status {
    font-size: 14px;
    color: #8b93a1;
}

@media (max-width: 767px) {
    .jp-sub-panel__current {
        min-height: 48px;
        padding: 10px 12px;
        font-size: 15px;
    }
}