.premium-items {
    display: flex;
    flex-wrap: wrap;
}

.item {
    width: 25%;
    margin-bottom: 30px;
    border: 1px solid #ededed;
    padding: 15px;
    position: relative;
    border-left: 0;
}

.item:nth-child(3n+1) {
    border-left: 1px solid #ededed;
}

.item .title {
    font-size: 16px;
    font-weight: bold;
}

.img-inner {

}

.img-inner .no-img {
    background: url(../img/icons/premium_big.svg) no-repeat center;
    width: 128px;
    height: 128px;
    margin: 0 auto;
    opacity: 1;
}

.item .footer {
    display: flex;
    margin-top: 25px;
    height: 34px;
}

.item .price {
    display: flex;
    flex: 1;
    font-size: 18px;
    align-items: center;
}

.price-old {
    font-weight: normal;
    margin-left: 15px;
    text-decoration: line-through;
    color: #8e8e8edd;
}

.item .buttons {
    display: none;
}

.item:hover .buttons {
    display: block;
}

.item .buttons a {
    background: #FF9800;
    color: #fff;
    padding: 5px 15px;
    display: inline-block;
    border-radius: 4px;
}

@media screen and (max-width: 640px) {
    .item {
        width: 50%;
    }
}   