/**/
.harm-tabs{
    max-width: 1000px;
    margin: 40px 0 0 0;
}
.harm-tabs a:hover{
    text-decoration: none;
}

.harm-tabs *{
    box-sizing: border-box;
}

.harm-messages{
    position: relative;
}
.read-all-btn{
    cursor: pointer;
    position: absolute;
    top:-30px;
    right: -11px;
    border: 2px solid #808080;
    background: #C0C0C0;
    font-weight: 700;
    padding: 3px 8px;
}

.harm-accordion {
   /* border: 1px solid #ccc;*/
    overflow: hidden;
    margin: -10px;
}


.harm-accordion-item {
    border-bottom: 1px solid #ccc;
}

.harm-accordion-item:last-child {
    border-bottom: none;
}

.harm-accordion-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px 15px;
    font-size: 14px;
    background-color: #D7D7D7;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: #6B0C16;
}

.harm-accordion-header.unread{
    font-weight: bold;
}

.harm-accordion-header:hover {
    background-color: #e0e0e0;
}

.harm-message-title{
    position: relative;
    padding-left: 20px;
}

.harm-message-title:before{
    content: "";
    position: absolute;
    left: 0;
    top:2px;
    /*width: 12px;
    height: 6px;
    background: url("../harm-arrow.svg") center center no-repeat;*/
    transition: all 400ms;
    transform: rotate(0);
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 8px solid #6B0C16;
}

.active-item .harm-message-title:before{
    transform: rotate(90deg);
}


.active-item .harm-accordion-content{
    display: block;
}

.harm-accordion-content {
    display: none;
    transition: all 0.3s ease-out;
    background-color: #fff;
}

.harm-accordion-content p {
    margin: 0 0 5px 0;
}

.harm-message-list{
    padding: 15px;
}

.harm-message-list .harm-message-item:last-child {
    border-bottom: none;
    margin: 0;
    padding: 0;
}

.harm-message-item{
    border-bottom: 1px solid #E2E4E9;
    padding: 10px;
}

.harm-message-item .title{
    font-weight: bold;
}

