.question {
    font-weight: bold;
}


.question-title {
    padding: 12px 41px 12px 0;
    font-size: 18px;
    font-weight: bold;
}
.question__container {
    position: relative;
    border-bottom: 1px solid #dfdfdf;
}
.question-arrow {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 15px;
    right: 9px;
    transform: rotate(45deg);
    transition: 0.3s;
}
.question-arrow.rotate{
    transform: rotate(0deg);
}
.question-arrow:before, .question-arrow:after {
    content: '';
    position: absolute;
    width: 14px;
    height: 2px;
    background: #000;
    top: 50%;
    left: 50%;

}
.question-body {
    padding: 12px 5px;
}
.question-arrow:before{
    transform:translate(-50%, -50%) rotate(45deg);
}
.question-arrow:after{
     transform:translate(-50%, -50%) rotate(-45deg);
}