.lyric-line-continuous::after {
    content: "  /  ";
    white-space: pre-wrap;
    opacity: 0.48;
}

.lyric-line-break::after {
    content: "\A";
    white-space: pre-wrap;
}

.interlude::after {
    content: "\A\A\A";
    white-space: pre-wrap;
}

#modal-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease, visibility .6s ease;
    transform-style: preserve-3d;
    will-change: transform;
    z-index: 10;
}

#modal-container.activeModal {
    opacity: 1.0;
    visibility: visible;
}

#modal-background {
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    align-items: center;
}

#modal-background-image {
    width: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

#modal-backdrop-filter {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(20, 20, 20, 0.66);
    backdrop-filter: blur(4.5px);
    z-index: 10000;
}

#modal-header {
    width: 100%;
    height: 50px;
    position: fixed;
    padding: 1.14rem 4.00rem 0.96rem 4.00rem;
    background-color: rgba(0, 0, 0, 0.66);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.66);
    line-height: 29px;
    vertical-align: middle;
    z-index: 2147483647;
}

#modal-title {
    color: rgba(225, 255, 255, 0.66);
}

#modal-body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 100;
}

#modal-contents {
    width: 100%;
    height: calc(100% - 100px);
    padding: 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.45rem;
    font-weight: 300;
    text-align: center;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-scrollbar: none;
    z-index: 100000;
}