:root {
    --questions-and-answers-background-color: rgba(235, 235, 235, 1);
    --questions-and-answers-gap: 20px;
    --questions-and-answers-title-margin: 0 auto var(--questions-and-answers-gap);
    --questions-and-answers-title-padding: var(--questions-and-answers-gap) var(--questions-and-answers-gap) 0;
    --questions-and-answers-title-fs: 34px;
    --questions-and-answers-title-fw: 400;
    --questions-and-answers-title-max-width: 1200px;

    --questions-and-answers-descr-fs: 18px;
    --questions-and-answers-descr-fw: 300;
    --questions-and-answers-descr-margin: 0 auto;

    --questions-and-answers-content-padding: var(--questions-and-answers-gap);

    --questions-and-answers-questions-padding: 20px 0;
    --questions-and-answers-questions-transition: .7s;
    --questions-and-answers-questions-descr-transition: all 800ms cubic-bezier(0.8, 0, 0.33, 1);
    --questions-and-answers-questions-descr-transition-text-show: opacity 100ms linear;
    --questions-and-answers-questions-descr-transition-text: opacity 800ms cubic-bezier(0.8, 0, 0.33, 1);
    --questions-and-answers-questions-title-fs: 24px;
    --questions-and-answers-questions-title-color-show: rgba(255, 145, 1, 1);
    --questions-and-answers-questions-title-color: #000000;
    --questions-and-answers-questions-arrow-height: 30px;
    --questions-and-answers-questions-descr-margin: var(--questions-and-answers-gap) 0 0;
    --questions-and-answers-questions-descr-fs: 20px;
}

.questions_and_answers_title {
    max-width: var(--questions-and-answers-title-max-width);
    padding: var(--questions-and-answers-title-padding);
    font-weight: var(--questions-and-answers-title-fw);
    margin: var(--questions-and-answers-title-margin);
    font-size: var(--questions-and-answers-title-fs);
    text-align: center;
}

.questions_and_answers_descr_block {
    background-color: var(--questions-and-answers-background-color);
    padding: var(--questions-and-answers-gap);
    justify-content: center;
    flex-direction: column;
    align-items: center;
    display: flex;
}

.questions_and_answers_descr_block > .questions_and_answers_descr {
    max-width: var(--questions-and-answers-title-max-width);
    font-weight: var(--questions-and-answers-descr-fw);
    margin: var(--questions-and-answers-descr-margin);
    font-size: var(--questions-and-answers-descr-fs);
    white-space: pre-line;
    text-align: justify;
}

.questions_and_answers_content {
    max-width: var(--questions-and-answers-title-max-width);
    padding: var(--questions-and-answers-content-padding);
    margin: var(--questions-and-answers-descr-margin);
    box-sizing: border-box;
    width: 100%;
}

.questions_and_answers_content > .questions_and_answers_question {
    border-bottom: 2px solid var(--questions-and-answers-background-color);
    padding: var(--questions-and-answers-questions-padding);
    width: 100%;
}

.questions_and_answers_content > .questions_and_answers_question:first-child {
    border-top: 2px solid var(--questions-and-answers-background-color);
}

.questions_and_answers_content > .questions_and_answers_question > .questions_and_answers_header {
    transition: var(--questions-and-answers-questions-transition);
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    cursor: pointer;
    display: flex;
}

.questions_and_answers_content > .questions_and_answers_question > .questions_and_answers_header > .questions_and_answers_content_title {
    transition: var(--questions-and-answers-questions-transition);
    font-size: var(--questions-and-answers-questions-title-fs);
    color: var(--questions-and-answers-questions-title-color);
    font-weight: var(--questions-and-answers-descr-fw);
    text-align: start;
    margin: 0;
}

.questions_and_answers_content > .questions_and_answers_question > .questions_and_answers_header > .questions_and_answers_content_title.show {
    color: var(--questions-and-answers-questions-title-color-show);
}

.questions_and_answers_content > .questions_and_answers_question > .questions_and_answers_header > .questions_and_answers_content_arrow {
    transition: var(--questions-and-answers-questions-transition);
    height: var(--questions-and-answers-questions-arrow-height);
    transform: rotate(-180deg);
}

.questions_and_answers_content > .questions_and_answers_question > .questions_and_answers_header > .questions_and_answers_content_arrow.show {
    transform: rotate(0deg);
}

.questions_and_answers_content > .questions_and_answers_question > .questions_and_answers_content_descr {
    transition: var(--questions-and-answers-questions-descr-transition);
    display: flex;
    height: 0;
}

.questions_and_answers_content > .questions_and_answers_question > .questions_and_answers_content_descr.show {
    height: unset;
}

.questions_and_answers_content > .questions_and_answers_question > .questions_and_answers_content_descr > .questions_and_answers_content_descr_text {
    transition: var(--questions-and-answers-questions-descr-transition-text-show);
    margin: var(--questions-and-answers-questions-descr-margin);
    font-weight: var(--questions-and-answers-descr-fw);
    white-space: pre-line;
    text-align: justify;
    font-size: 0;
    opacity: 0;
}

.questions_and_answers_content > .questions_and_answers_question > .questions_and_answers_content_descr > .questions_and_answers_content_descr_text.preline {
    white-space: unset;
}

.questions_and_answers_content > .questions_and_answers_question > .questions_and_answers_content_descr.show > .questions_and_answers_content_descr_text {
    transition: var(--questions-and-answers-questions-descr-transition-text);
    font-size: var(--questions-and-answers-questions-descr-fs);
    opacity: 1;
}

.questions_and_answers_content > .questions_and_answers_question > .questions_and_answers_content_descr > .questions_and_answers_content_descr_text > .questions_and_answers_content_descr_link {
    margin-inline-end: var(--questions-and-answers-gap);
    color: var(--questions-and-answers-questions-title-color);
}

.questions_and_answers_content > .questions_and_answers_question > .questions_and_answers_content_descr > .questions_and_answers_content_descr_text > .questions_and_answers_content_descr_link:hover {
    color: var(--questions-and-answers-questions-title-color-show);
}

@media only screen and (max-width: 1280px) {
    :root {
        --questions-and-answers-gap: 10px;
    }
}
