#question-container {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    padding-left: 1rem;
    padding-bottom: 75px;
}

.accordion-container {
    flex-basis: 100%;
    flex-grow: 1;
    max-height: 400px;
}

.accordion-content {
    font-size: 13px;
    display: none;
    font-weight: normal;
}

.content-text {
    margin: 10px 25px 25px 25px;
    line-height: 1.8;
    transition: 100ms ease-in;
}

.line {
    width: 98%;
    float: left;
}

.accordion-header {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    justify-content: space-between;
    margin-right: 17px;
}

.text-container {
    align-items: center;
    cursor: pointer;
}

.icon-button {
    cursor: pointer;
    border: 1px gray outset;
    border-radius: 5px;
}

.icon-button:active {
    border: 1px azure inset;
}

.closed::before {
    content: "unfold_more"
}

.open::after {
    content: "unfold_less"
}

#search-bar {
    display:flex;
    justify-content: space-between;
}

#questionForm {
    display: flex;
    flex-direction: column;
}

input, textarea {
    font: 13px Roboto,sans-serif;
}

#questionForm textarea:focus {
    padding: 12px 16px;
}

#questionForm input:focus {
    padding: 12px 16px;
}

form input, textarea {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    outline: 0;
    padding: 10px 15px;
    margin-bottom: 15px;
    margin-right: 20px;
    font-size: 14px;
    transition: padding 100ms ease-in;
}

.label-input {
    border: none;
    opacity: 100%;
    font-size: small;
}

.error-text {
    display: none;
    width: 100px;
}

.submit-button {
    background-color: #003366;
    border: none;
    padding: 1.5%;
    border-radius: 5px;
    color: white;
    font-size: 15px;
    width: 25%;
    cursor: pointer;
}
#submitNewQuestion {
    min-width: 160px;
}

.faq-intro {
    padding: 4% 4% 4% 1.5%;
    font-size: 14px;
    font-weight: 300;
    color: white;
    background-color: #006699;
}

.pointer {
    cursor: pointer;
}

.error {
    border-color: red;
}

.field-group {
    display: flex;
}

.hidden {
    position: absolute;
    height: 0;
    width: 0;
    visibility: hidden;
}

.label-input {
    display: flex;
    flex-direction: column;
}

.section {
    display: flex;
    justify-content: space-between;
    background-color: #f5f5f5;
    min-height: 150px;
    margin: 10px 0;
    flex-grow: 1;
}

.section-heading {
    color: #003366;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin-bottom: 4px;
    display: flex;
    flex-grow: 1;
}

.section-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.section-container {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    padding: 4% 20px;
    margin: 0 1%;
    width: min-content;
}

.readonly {
    border: none;
    opacity: 100%;
}

#replace {

}

#resend {
    display: flex;
    flex-direction: column;
}

#switchMethod {
    padding: 3px;
    margin: 0;
    text-decoration: underline;
    cursor: pointer;
    width: fit-content;
}

.badgradient {
    border-color: red;
}

.btn-icon {
    display:flex;
}

.btn-icon i {
    position: relative;
    top: 10px;
    left: -25px;
}

.banner-container {
    justify-content: space-between;
}

.faqBannerLeft {
    width: 150px;
}
.faqBannerRight {
    width: 70px;
    margin-top: 10px;
}


@media (max-width: 767px) {
    .faqBannerLeft {
        width: 70px;
    }
    .faqBannerRight {
        width: 40px;
        margin-top: 3px;
    }

}