.op3-block-thumb {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 12px;
    font-family: $op-font-family;
    color: $op-grey;
    text-align: center;
    cursor: move;
    border: 1px solid $op-grey-border;
    border-radius: 5px;
    background: $op-white;
    overflow: hidden;
    transition: all 0.1s ease-in-out;

    img {
        width: auto;
        height: auto;
        display: block;
        opacity: 0.8;
        transition: opacity 0.1s ease-in-out;
    }

    span {
        display: block;
        max-width: 92%;
        margin: 0.5em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .block-item:hover & {
        border-color: $op-light-grey;
    }
}
