.template-thumb-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    margin: 0;
    padding: 0.5em;
}

.template-thumb-item {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: center;
    margin: 0.5em;
    padding: 0;
}

.template-thumb-link {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-decoration: none;
    outline: 0 none;
    cursor: move;
}

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

    .template-thumb-link:hover & {
        border-color: $op-light-grey;
    }
}

.template-thumb-image {
    width: auto;
    height: auto;
    display: block;
    opacity: 0.8;
    transition: opacity 0.1s ease-in-out;
}

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