
.product-faq__controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 2px solid #DBDEE0;
}

.product-faq__sort-item-title,
.review-sort-link {
    margin-right: 10px;
}

.review-sort-link {
    width: 10px;
    height: 10px;
    display: inline-block;
    background-image: url("image/sort-arrow.svg");
    background-position: center;
    background-repeat: no-repeat;
}

.review-sort-link.asc {
    transform: rotate(180deg);
}

.product-faq__sort-title {
    margin-right: 20px;
}

.no-faqs-message {
    text-align: center;
    text-align-last: center;
    margin-top: 10px;
}

.product-faq__reviews-list-wrapper {
    margin: 10px 0 20px
}


.product-faq-item-rating__group {
    display: flex;
    align-items: center;
}

.product-faq-item-rating__star {
    width: 24px;
    height: 24px;
    background-image: url("image/star.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    display: inline-block;
}

.product-faq-item-rating__star.active {
    background-image: url("image/star-red.svg");
}

.product-faq-item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 2px solid #DBDEE0;
}

.product-faq-item__rewiew-title {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.product-faq-item__rewiew-title .product-faq-item__name {
    width: 257px;
    max-width: 100%;
}

.product-faq-item__rewiew-title .product-faq-item-rating__group {
    width: calc(100% - 257px);
}

.product-faq-item__info {
    width: 260px;
    max-width: 100%;
}

.product-faq-item__text {
    width: calc(100% - 260px);
}

.product-faq-item__name {
    font-size: 16px;
    line-height: 19px;
    color: #222222;
    font-weight: bold;
}

.product-faq-item__date,
.product-faq-item__city {
    color: #797A79;
}

.product-faq-item__review-text {
    font-size: 16px;
    line-height: 1.3em;
    color: #222222;
    margin-bottom: 10px;
}

@media only screen and (max-width: 1024px) {
    .product-faq-item__review-text {
        margin-bottom: 30px;
    }
}

.product-faq-item-answer__text {
    display: none;
    width: 100%;
    padding-left: 40px;
    padding-top: 10px;
}

.product-faq-item-answer {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.product-faq-item-answer__answer-arrow {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url("image/sort-arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
    margin-left: 5px;
}

.product-faq-item-answer__control {
    color: #797A79;
    cursor: pointer;
}

.product-faq-item-answer.open .product-faq-item-answer__answer-arrow {
    transform: rotate(180deg);
}

.product-faq-item-answer.open .product-faq-item-answer__text {
    display: block;
}

.product-faq-item-answer__title {
    font-weight: bold;
}

@media (max-width: 900px) {
    .product-faq-item__rewiew-title .product-faq-item__name,
    .product-faq-item__info {
        width: 200px;
    }

    .product-faq-item__rewiew-title .product-faq-item-rating__group,
    .product-faq-item__text {
        width: calc(100% - 200px);
    }

}

@media (max-width: 600px) {
    .product-faq-item__rewiew-title .product-faq-item-rating__group,
    .product-faq-item__text,
    .product-faq-item__rewiew-title .product-faq-item__name,
    .product-faq-item__info {
        width: 100%;
    }
    .product-faq-item__info{
        margin-bottom: 10px;
    }

    .product-faq__controls{
        flex-wrap: wrap;
    }
    .product-faq__sort-wrapper{
        width: 100%;
        order: 2;
        margin-top: 10px;
    }
    .product-faq__controls .default-button{
        width: 100%;
    }
}

.product-faq-item__faq {
    font-size: 14px;
    margin-top: 2px;
    margin-bottom: 12px;
}

.product-faq-item--custom {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    position: relative;
}

.product-faq-item--custom .product-faq-item__rewiew-title .product-faq-item__name {
    word-break: break-word;
    margin-right: 25px;
}

.product-faq-item--custom .left-side__item {
    display: flex;
    flex-direction: column;
    width: 20%;
}

.product-faq-item--custom .right-side__item {
    width: 55%;
    margin-right: auto;
}

.product-faq-item--custom .right-side__item .product-faq-item__review-text {
    max-width: 100%;
}

.product-faq-item--custom .right-side__item .product-faq-item__text {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.product-faq-item--custom .product-faq-item-answer {
    position: absolute;
    right: 0;
    bottom: 10px;
}

.product-faq-item--custom.open--answers .product-faq-item-answer__text {
    display: block;
}

.product-faq-item--custom .product-faq-item-answer__answer-arrow {
    margin-bottom: -2px;
    transition: transform .3s;
}

.product-faq-item--custom.open--answers .product-faq-item-answer__answer-arrow {
    transform: rotate(180deg);
}

.product-faq-item--custom .top-side__block {
    display: flex;
    width: 100%;
    z-index: 1;
}

.product-faq-item--custom .bottom-side__block {
    position: relative;
    width: 100%;
}

.product-faq-item--custom .bottom-side__block::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: gray;
    opacity: .3;
}

.product-faq-item--custom .bottom-side__block .product-faq-item-answer__text {
    width: 85%;
    margin-top: 10px;
}

@media only screen and (max-width: 1024px) {
    .product-faq-item--custom .bottom-side__block .product-faq-item-answer__text {
        width: 100%;
        padding-left: 0;
    }
}

.product-faq-item--custom .bottom-side__block .product-faq-item-answer__text .answer {
    display: flex;
    justify-content: space-between;
}

.product-faq-item--custom .bottom-side__block .product-faq-item-answer__text .answer:not(:last-child) {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: .4px solid #DBDEE0;
}

.product-faq-item--custom .bottom-side__block .product-faq-item-answer__text .answer:first-child {
    margin-top: 10px;
}

.product-faq-item--custom .bottom-side__block .product-faq-item-answer__text .author__answer {
    word-break: break-word;
    margin-right: 25px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 19px;
    color: #222222;
    font-weight: bold;
}

.product-faq-item--custom .bottom-side__block .product-faq-item-answer__text .author__answer {
    font-size: 15px;
}
.product-faq-item--custom .bottom-side__block .product-faq-item-answer__text .date__answer {
    font-size: 14px;
}
.product-faq-item--custom .bottom-side__block .product-faq-item-answer__text .answer .answer__right-side {
    font-size: 15px;
}

@media only screen and (max-width: 1024px) {
    .product-faq-item--custom .bottom-side__block .product-faq-item-answer__text .author__answer {
        margin-right: 0;
    }
    .product-faq-item--custom .bottom-side__block .product-faq-item-answer__text .author__answer {
        font-size: 14px;
    }
    .product-faq-item--custom .bottom-side__block .product-faq-item-answer__text .date__answer {
        font-size: 13px;
    }
    .product-faq-item--custom .bottom-side__block .product-faq-item-answer__text .answer .answer__right-side {
        font-size: 14px;
    }
}

.product-faq-item--custom .bottom-side__block .product-faq-item-answer__text .date__answer {
    color: #797A79;
}

.product-faq-item--custom.open--answers .product-faq-item-answer__text {
    margin: 10px 0;
}

.product-faq-item--custom .bottom-side__block .product-faq-item-answer__text .answer .answer__left-side {
    width: 20%;
    padding-right: 25px;
}

.product-faq-item--custom .bottom-side__block .product-faq-item-answer__text .answer .answer__right-side {
    width: 80%;
}

.product-faq-item--custom.open--answers .product-faq-item-answer {
    bottom: 18px;
}

.product-faq-item--custom .product-faq-item-answer__control {
    display: flex;
    align-items: center;
}

.product-faq-item--custom .product-faq-item-answer__control .product-faq-item-answer__add {
    margin-right: 25px;
    transition: color .3s;
}

.product-faq-item--custom .product-faq-item-answer__control .product-faq-item-answer__add:hover {
    color: red;
    opacity: .75;
}

.product-faq-item--custom .product-faq-item-answer__control .product-faq-item-answer__watch {
    transition: color .3s;
}

.product-faq-item--custom .product-faq-item-answer__control .product-faq-item-answer__watch:hover {
    color: red;
    opacity: .75;
}