.item-box .item_detail {
    border-left: none;
    padding-left: 0;
}

.item-box .item-detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 0.95em;
    background-color: #f3f3f3;
    text-decoration: none;
    height: 100%;
    padding: 0.5rem;
}

.item-box .item_detail p {
    -o-text-overflow: ellipsis;
    text-overflow: initial;
    -o-text-overflow: initial;
    white-space: inherit;
}

.item-box .item_price {
    font-weight: bold;
}


.item-box>a:hover>.item-detail {
    background-color: #e3e3e3;
    -webkit-transition: 0.25s all ease-out;
    -o-transition: 0.25s all ease-out;
    transition: 0.25s all ease-out;
}

.item-box,
.item-box>a {
    height: 100%;
}

.item-box>a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #666;
}

.item-box>a:hover {
    text-decoration: none;
    color: #111;
}