/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */




[data-products] .product {
    position: relative;
    border: 1px solid #ccc;
    background: #fff;
	padding: 20px;
}

/* CUT (beli kos) */
[data-products] .product::after {
    content: "";
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 26px;
    height: 26px;
    background: #fff;
    transform: rotate(45deg);
}

/* DIAGONAL BORDER */
[data-products] .product::before {
    content: "";
    position: absolute;
    bottom: 15px;
    right: -1px;
    width: 23px;
    height: 1px;
    background: #ccc;
    transform: rotate(-45deg);
    transform-origin: bottom right;
}