.audio, .video, .feedback-display {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
.current-slide {
    color: blue;
}
.complete-slide {
    color: rgb(73, 197, 94);
}
.complete-section-icon {
    color: rgb(73, 197, 94)
}
.current-section-icon {
    color: blue;
}
.correct-answer {
    color: green;
}
.incorrect-answer {
    color: red;
}
.progress {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50vw;
}
.sidebar {
    position: absolute;
    left: 0;
    top: 0;
    background-color: white;
    border: 3px solid black;
    height: 768px;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
}
.image-slide {
    height: 100%;
}
.sortable-chosen, .sortable-ghost {
    /* background-color: blue; */
    padding: 0 0 0 0;
}
.sidebar-sections-div {
    width: 360px;
    height: 463px;
    overflow: auto;
}
.selected {
    background-color: lightblue
}
.completed {
    background-color: blue;
}
img, video {
    max-height: 50vh;
}
.lesson-button {
    width: 135px;
    height: 135px;
    margin: 20px 30px 0 0;
}
.lesson-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}
.content {
    padding: 1%;
    width: 1024px;
    height: 518px;
    border: 3px solid black;
}
.title {
    font-size: 60px;
    line-height: 65px;
}
.heading {
    font-size: 20px;
    line-height: 26px;
}
.body {
    font-size: 18px;
    line-height: 24px;
}
.note {
    font-size: 18px;
    line-height: 24px;
}
.answers {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.playback {
    display: flex; 
    flex-direction: row;
}
.options {
    height: 50px;
    display: flex;
    justify-content: left;
    padding: 0 0 10px 0;
}
.box {
    display: flex;
}

.custom-link {
    color: blue;
    cursor: pointer;
}
.image-popup {
    background-color: var(--background) !important;
    border-radius: var(--rounded);
    width: 40% !important;
    max-width: var(--body-width);
    padding: 2.3rem !important;
    animation: feedback2 0.5s cubic-bezier(1, -0.01, 0, 0.98);
  }