.eq-wrap {
    display: flex;
    flex-direction: column;
}

.eq-description {
    background: #F9FAFB;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 36px;
}

.eq-description-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #232323;
    flex: 1 0 0%;
}

.eq-description-text {
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #232323;
    flex: 1 0 0%;
}

.eq-answer-item {
    margin-bottom: 16px;
}

.eq-answer-item-head {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.eq-answer-item-name {
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #232323;
    padding: 4px 0;
    margin-right: 16px;
}

.eq-answer-item-name.admin {
    color: #026EF9;
}

.eq-answer-item-hide {
    display: none;
}

.eq-answer-item-date {
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #979797;
}

.eq-answer-item-text {
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #232323;
    margin-bottom: 16px;
}

.eq-answer-item-bottom {
    display: flex;
    gap: 16px;
}

.eq-answer-item-show,
.eq-answer-item-reply {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #026EF9;
    cursor: pointer;
}

.eq-answer-item-show:hover,
.eq-answer-item-reply:hover {
    text-decoration: underline;
}

.eq-answer-item-answers {
    padding-top: 16px;
    padding-left: 56px;
    display: none;
}

.eq-show {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #232323;
    cursor: pointer;
    margin-top: 24px;
    padding-right: 30px;
    position: relative;
    width: fit-content;
}

.eq-show::after {
    content: "";
    width: 17px;
    height: 11px;
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    background: url("/local/templates/mst/images/eq-down.svg") center center no-repeat;
}

.eq-show.active::after {
    transform: translate(0, -50%) rotate(180deg);
}

.qe-form-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #080C37;
    margin-bottom: 24px;
}

.qe-form .communication-form .communication-form--big__row {
    display: block;
    flex: 0 0 auto;
    width: calc(50% - 14px);
}

.qe-form .communication-form .qe-form-label {
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #232323;
    margin-bottom: 16px;
}

.qe-form .communication-form .communication-form__item--textarea {
    height: 136px;
}

.qe-form .communication-form .communication-form--big__col {
    width: 100%;
}

.qe-form .communication-form {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

@media (max-width: 1023px) {
    .eq-form-wrap {
        order: 2;
        background: #F9FAFB;
        border-bottom: 1px solid #E1E3DE;
        border-radius: 20px;
        padding: 24px;
    }

    .eq-wrap-items {
        order: 1;
        margin-bottom: 24px;
    }

    .eq-description {
        background: transparent;
        border-radius: initial;
        padding: 0;
        gap: 16px;
        margin-bottom: 16px;
    }

    .eq-description-title,
    .eq-description-text {
        flex: 0 0 auto;
        width: 100%;
    }

    .eq-description-title {
        font-size: 20px;
        line-height: 24px;
    }

    .eq-description-text {
        font-size: 16px;
        line-height: 26px;
    }

    .eq-answer-item-name {
        font-size: 14px;
        line-height: 17px;
    }

    .eq-answer-item-date {
        font-size: 12px;
        line-height: 22px;
    }

    .eq-answer-item-text {
        font-size: 13px;
        line-height: 20px;
    }

    .eq-answer-item-show, .eq-answer-item-reply {
        font-size: 14px;
        line-height: 22px;
    }

    .eq-answer-item-answers {
        padding-left: 16px;
        padding-top: 0;
    }

    .qe-form-title {
        display: none;
    }

    .qe-form .communication-form {
        gap: 0;
    }

    .qe-form .communication-form .communication-form--big__row {
        width: 100%;
        margin-bottom: 0;
    }

}