.productList{ /* Бокс с постройкой */
	background: rgba(255,255,255,0.80); 
	/*
	background: rgba(217,217,217,0.50); 
	min-width: 150px; 
	min-height: 150px; 
	
	cursor:pointer;
	*/
	width: 100%; 
	height: 80px; 
	border: 1px double #033c4b; 
	display: inline-block;
	margin-top: 6px;
	margin-bottom: 0px;
	margin-right: 6px;
	vertical-align: top;
	overflow:hidden;
	position: relative;
	cursor:pointer;
	
}

.productList:hover .productListBtnBox{ /* Действия при наведении на блок с кнопками */
    opacity: 1;
    transform: translateY(-10px);
    background-color:rgba(0,0,0,0.50);
}

.productList:hover img{ /* Действия при наведении на картинку */
    /* transform: scale(1.10, 1.10); Размер увеличения изображения */
}	
	
	
.productListImg{ /* изображение  */
	background: url(image.jpg) no-repeat;
    height: 80px; /* Высота блока */
    width: 120px; /* Ширина блока */
    transition: 0.4s; /* Скорость увеличения изображения */
    float: left;
    z-index: 1;
}
	
.productListName{ /* Заголовок блока */
	color: #000000; 
	font-size: 17px;
	font-weight: 700;
	padding-top: 8px; 
	padding-left: 130px; 
	cursor: default;
	/*
	
	border-bottom: 1px double #033c4b;
	*/
	text-align: left;
}

.productListDesc{ /* Заголовок блока */
	color: #000000; 
	font-size: 12px; 
	padding-left: 130px; 
	cursor: default;
	/*
	
	border-bottom: 1px double #033c4b;
	*/
	text-align: left;
}

.productListPriceBox {
    width: 0; 
    height: 0; 
    border-top: 70px solid rgba(243, 162, 51, 0.7); 
    border-right: 70px solid transparent; 
    
    z-index: 2;
    position: absolute; 
}

.productListPriceText {
    position: absolute; 
    transform: rotate(-45deg); 
    font-size: 20px; 
    color: #fff; 
    text-align:center; 
    top: 25%;
    z-index: 3;
    font-family: Times New Roman;
    backdrop-filter: blur(9px); 
    -webkit-backdrop-filter: blur(9px);
}

.productListBtnBox {
    background: rgba(0,0,0,0.70);
    margin-top: 10px;
    top:0;
    height: 100%;
    width: 100%;
    text-align: center;
    position: absolute;
    opacity: 0;
}

.productListBtn{
    border-radius: 3px;
    background-color: #1e5ba7;
    border-color: #1e5ba7;
    box-sizing: border-box;
    width: 50%;
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 11px 0;
    background-image: none;
    cursor: pointer;
    left: 25%;
    top: 25%;
    position: absolute; 
}