.dla-display{
    display: block;
    /* background-color: #eee; */
    width: 100%;
}
.dla-display ul{
    list-style: none;
    padding: 0;
}
/* .dla-display li>div::before{
    content: '';
    display: block;
    background-image: url('https://inwfile.com/s-dz/c7mdsl.jpg');
    background-size: cover;
    width: 32px;
    height: 32px;
} */
.dla-display li{
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: flex-start;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}
.dla-display li:nth-child(odd){
    background-color: rgb(255, 255, 255,0.5);
}
.dla-display li #icon{
    display: block;
    width: 32px;
    min-width: 32px;
    height: 32px;
    background-image: url('../../../images/main/icons/dla_icon.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 50%;
    transition: 0.5s ease-out;
}
.dla-display li #content{
    display: block;
    flex-grow: 1;
}
.dla-display li #date{
    font-size: 0.7em;
    color: #777;
    font-weight: bold;
}
.dla-display li #date::before{
    content: '\f073  ';
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900; 
}
.dla-display li #title{
    font-size: 1em;
    color: #444;
    font-weight: bold;
}
.dla-display li #title:hover{
    color: #ed145b;
}
.dla-display li a{
    color: #ed145b;
    font-size: 0.8em;
    font-weight: bold;
}
.dla-display li a::before{
    content: '\f0c6  ';
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900; 
}
.dla-display li a:hover{
    color: #f3568a;
    text-decoration: underline;
}

.dla-display li:hover{
    background-color: rgb(250, 234, 214,0.7);
}
.dla-display li:hover > #icon{
    /* background-color: rgb(250, 234, 214,0.7); */
    transform: rotate(360deg);    
}