.thumb_list_item{
    background: #F5F6F8;
    margin-bottom: 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    min-height: 46px;
    cursor: pointer;
    transition: all 200ms;
}
.thumb_list_item_illu{
    margin: 2px;
    border-radius: 4px;
    flex: 0 0 auto;
    overflow: hidden;
    width: 96px;
    height: 56px;
}
.thumb_list_item_illu img{
    display: block;
    width: 100%;
}
.thumb_list_item_body{
    padding: 10px 16px;
    flex: 1 1 auto;
    font-size: 14px;
    font-weight: 500;
}
.thumb_list_item_type{
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--grey-3);
}
.thumb_list_item_name{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.thumb_list_item_name_desc{
    font-size: 14px;
    font-weight: 400;
    color: var(--grey-2);
}


.thumb_list_item.active{
    background-color: #142C76;
    color: #fff;
}
.thumb_list_item.active .format_sidebar_item_type{
    color: #fff;
    opacity: .66;
}

.thumb_list_item_icon{
    font-size: 18px;
    color: var(--turquoise);
    margin-left: 20px;
}
.thumb_list_item_arrow{
    font-size: 16px;
    color: var(--grey-4);
    margin-right: 14px;
}

/* Disabled */
.thumb_list_item.disabled {
    cursor: default;
    background: #fafafa;
    color: var(--grey-4);
}
.thumb_list_item.disabled .thumb_list_item_name_desc{
    color: var(--grey-4);
}
.thumb_list_item:not(.disabled):hover{
    background-color: #E9EAF0;
}
.thumb_list_item.disabled .thumb_list_item_icon{
    opacity: .7;
}
.thumb_list_item.disabled .thumb_list_item_arrow{
    display: none;
}