
#modalOverlay {
    display: none;
    width: 100%;
    height: 100%;
    background-color:rgba(0,0,0,.5);
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 100;
}

#modalOverlay.visible {
    display: block;
}

#questionContainer,
#feedbackContainer {
    background-color: transparent;
    border: none;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

#questionContainer {
    z-index: 102;
}

@media screen and (max-width: 1000px) {
    #questionContainer,
    #feedbackContainer {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }
}

.feedbackContentWrapper {
    background-color: white;
    position: relative;
    width: 100%;
    max-width: 850px;
    margin: auto;
    border-radius: 40px;
    padding: 48px 20px 20px 20px;
    box-shadow: rgb(0 0 0 / 60%) 0px 0px 200px 220px;
    animation: showFeedback .5s;
}

@keyframes showFeedback {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.feedbackContentWrapper .closeBtn {
    display: block;
    position: absolute;
    right: 50px;
    top: 20px;
}

.feedbackContentWrapper .bar1,
.feedbackContentWrapper .bar3 {
    background-color: black;
}

.popupWrapper {
    display: flex;
    flex-direction: column;
    margin: 1em 0px;
    overflow-y: auto;
    max-height: 70vh;
}

.sectionTitle {
    color: black;
    font-family: "manrope";
    font-size: 18px;
}

.feedbackContentWrapper input {
    padding: 6px 0;
}

.feedbackContentWrapper input[type="file"] {
    background: transparent;
    border: none;
    border-bottom: 2px solid #DADADA;
    font-size: 18px;
    width: calc(100%);
    font-family: "manrope";
    color: #435a6b;
    min-height: 2em;
}

.subCaption {
    font-size: 0.70em;
    line-height: 150%;
    color: #999;
    font-style: italic;
}

.feedbackContentWrapper p {
    color: #435a6b;
}

.feedbackContentWrapper .popupButton {
    margin: auto;
}

#popupErrorLabel {
    color: red;
    font-weight: 400;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}