/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.ticket{
    background: #f5f5f5;
    border-radius: 5px;
    overflow: hidden;
}
.ticket__title{
    line-height: 31px;
    font-size: 18px;
    padding: 10px 15px;
    background: #e6e6e6;
    display: flex;
    justify-content: space-between;
}
.ticket__status{
    font-size: 13px;
    background: #d7d7d7;
    padding: 0 10px;
    border-radius: 5px;
}
.ticket__answers{
    padding: 15px;
}
.ticket__answer{
    background: #fefff4;
    padding: 10px;
    border-radius: 5px;
}
.ticket__answer:not(:last-child){
    margin-bottom: 15px;
}
.ticket__answer.administrator{
    background: #fafff6;
}
.ticket__meta:not(:last-child){
    margin-left: 10px;
}
.ticket__metas{
    border-bottom: 1px solid #eef0d9;
    padding-bottom: 10px;
    margin-bottom: 10px;
    color: #afafaf;
}
