.tile-product-list-item {
    width: 270px;
    height: 184px;
    background: #ffffff;
    box-shadow: 0 2px 16px 0 rgba(195, 195, 195, 0.25);
    border-radius: 12px;
    padding: 24px 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tile-product-list-item-arrow-right {
    content: '';
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 20px;
    height: 20px;
    transition: all ease .15s;
    opacity: 0;
}
.tile-product-list-item:hover .tile-product-list-item-arrow-right {
    opacity: 1;
}

.tile-product-list-item-circle {
    content: '';
    position: absolute;
    right: -75px;
    bottom: -78px;
    width: 115px;
    height: 109px;
    transition: all ease .25s;
}
.tile-product-list-item:hover .tile-product-list-item-circle {
    right: -58px;
    bottom: -54px;
}

.tile-product-list-item span {
    font-weight: 400;
    font-size: 12px;
    color: #69707D;
}

.tile-product-list-item-text {
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    color: #343741;
    margin: 16px 0;
}