.qa-section {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.qa-section .edit-menu {
    position: absolute;
    top: 4rem;
    right: 6rem;
    display: flex;
}

.qa-section .edit-menu button {
    display: block;
    margin-right: 1rem;
    padding: 0.3rem 1rem;
    border: none;
    background-color: #777;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.qa-section .edit-menu button:hover {
    opacity: 1;
}

.qa-section .edit-menu .edit-btn.active {
    background-color: #8a0000;
}

.qa-section .edit-menu .save-btn {
    display: none;
}

.qa-section .edit-menu .save-btn.active {
    display: block;
}

.qa-section .ss-btn {
    position: absolute;
    height: 10vh;
    width: 10vh;
    top: 45vh;
    left: 0;
    background-size: contain;
    background-position: center;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s ease-out;
}

.qa-section .ss-btn.ss-next-btn {
    right: 0;
    left: unset;
    background: url("./images/chevron-right-solid.svg");
}

.qa-section .ss-btn.ss-prev-btn {
    background: url("./images/chevron-left-solid.svg");
}

.qa-section .answer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.3333333333);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out 0.1s;
}

.qa-section .answer-overlay.show {
    display: flex;
    opacity: 1;
}

.qa-section .answer-overlay .answer-content-wrapper {
    width: 50vw;
    height: 50vh;
    background-color: white;
    padding: 2rem;
}

.question-wrapper {
    display: flex;
    position: relative;
    width: 100vw;
    height: 100vh;
}

.question-wrapper.question-left {
    justify-content: flex-start;
}

.question-wrapper.question-right {
    justify-content: flex-end;
}

.question-wrapper.question-center {
    justify-content: center;
}

.question-wrapper img {
    width: 100%;
}

.question-wrapper .question {
    position: absolute;
    pointer-events: none;
}

@media (max-width: 767.98px) {
    .question-wrapper .question {
        position: relative;
        margin: initial !important;
        width: 90% !important;
    }
}

.question-wrapper .answers-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.question-wrapper .answers {
    padding-bottom: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.question-wrapper .answer {
    position: absolute;
    opacity: 0.8;
    z-index: 100;
    transition: all 0.3s ease-out;
}

@media (max-width: 767.98px) {
    .question-wrapper .answer {
        position: relative;
        top: initial !important;
        left: initial !important;
        width: 90% !important;
    }
}

.question-wrapper .answer:hover {
    opacity: 1;
    z-index: 200;
    transform: scale(1.1);
}

.question-wrapper .answer img {
    cursor: pointer;
    opacity: 0.9;
}

.question-wrapper .answer img:hover {
    opacity: 1;
}

.question-wrapper .answer svg {
    width: 100%;
    height: auto;
}

.question-wrapper .answer .play-btn {
    background-image: url("./images/pom-play-btn.svg");
    width: 1.8rem;
    height: 1.8rem;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    margin: 0.6rem;
    opacity: 0.7;
    transition: all 0.3s ease-out;
    cursor: pointer;
    filter: drop-shadow(0 0 0.75rem black);
}

.question-wrapper .answer .play-btn:hover {
    opacity: 1;
}

.question-wrapper .answer .play-btn.played {
    opacity: 1;
    background-image: url("./images/pom-pause-btn.svg");
}

.question-wrapper .answer svg a {
    transition: all 0.3s;
    opacity: 0.6;
}

.question-wrapper .answer svg a:hover {
    opacity: 1;
}

.question-wrapper .answer.text-answer {
    margin: 2rem;
    background: url("images/default-answ-bg.png") no-repeat center center;
    background-size: 100% 100%;
    -webkit-filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3333333333));
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3333333333));
    padding: 1rem 2rem;
    line-height: 2.3em;
    min-width: 15vw;
    max-width: 40vw;
    display: flex;
    justify-content: center;
}

.question-wrapper .answer.text-answer .text-answer-wrapper {
    position: relative;
    width: fit-content;
    height: 100%;
    font-size: 1.3vmax;
}

@media (max-width: 767.98px) {
    .question-wrapper .answer.text-answer .text-answer-wrapper {
        font-size: 20px;
    }
}

.question-wrapper .answer-form-wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 2rem;
    z-index: 1000;
}

@media (min-width: 992px) {
    .question-wrapper .answer-form-wrapper {
        width: 40%;
    }
}

.question-wrapper .answer-form-wrapper .answer-submit-form-label {
    font-size: 1.8rem;
    margin: 2rem;
}

.question-wrapper .answer-form-wrapper .answer-form-text {
    width: 100%;
    padding: 0 4rem;
    font-size: 1.2rem;
    outline: none;
    background-image: url("images/answ-paper.png");
    background-size: 100% auto;
    background-position: center;
}

.question-wrapper .answer-form-wrapper .editor-wrapper {
    -webkit-filter: drop-shadow(0 0 5px #000);
    filter: drop-shadow(0 0 5px #000);
    margin-bottom: 1rem;
}

.question-wrapper .answer-form-wrapper .editor-wrapper:before, .question-wrapper .answer-form-wrapper .editor-wrapper:after {
    display: block;
    content: "";
    height: 4rem;
    position: relative;
    width: 100%;
    background-size: 100% auto;
    background-repeat: no-repeat;
}

.question-wrapper .answer-form-wrapper .editor-wrapper:before {
    background-image: url("images/answ-paper-top.png");
    background-position: center bottom;
}

.question-wrapper .answer-form-wrapper .editor-wrapper:after {
    background-image: url("images/answ-paper-bottom.png");
    background-position: center top;
}

.question-wrapper .answer-form-wrapper .answer-submit-btn {
    background: url("images/bg-paper.png") center center/100% 100% no-repeat;
    -webkit-filter: drop-shadow(0 0 5px #000);
    filter: drop-shadow(0 0 5px #000);
    left: 2rem;
    bottom: 1rem;
    padding: 1rem;
    width: fit-content;
    cursor: pointer;
    transition: all 0.3s;
}

.question-wrapper .answer-form-wrapper .answer-submit-btn:hover {
    -webkit-filter: drop-shadow(0 0 8px #000);
    filter: drop-shadow(0 0 8px #000);
}

/*# sourceMappingURL=QASection.css.map */
