﻿.bg-white {
    background: #fff;
}
.feedback-status {
    font-size: 12px;
    padding: 2px 11px;
    border-radius: 15px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}
.feedback-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.feedback-status-pending {
    background-color: rgba(133, 100, 4,0.1);
    color: rgba(133, 100, 4, 1);
}

.feedback-status-processing {
    background-color: rgba(0, 145, 255, 0.1);
    color: rgba(0, 145, 255, 1);
}

.feedback-status-complete {
    background-color: rgba(12, 175, 96, 0.1);
    color: rgba(12, 175, 96, 1);
}

.feedback-status-closed {
    background-color: rgba(56, 61, 65, 0.1);
    color: rgba(56, 61, 65, 1);
}
.bottom-btn-info {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: #fff;
    border-radius: 6px 6px 0 0;
}
.form_text {
    width: 100%;
    height: 164px;
    padding: 12px;
    line-height: 150%;
    border: 1px solid #f5f5f5;
    background: #f5f5f5;
    border-radius: 3px;
    vertical-align: top;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
@media (max-width: 768px) {
    .feedback-text {
        font-size: 13px;
    }
}