/*DISENO DE PESTANAS **************************/
.dp-tab-container{
	display: flex;
}
.dp-tab-button{
	width: 50%;
	background-color: white;
	cursor: pointer;
	border: none;
	transition: background-color 0.3s;
}
.dp-tab-button:hover {
    background-color: #ddd;
}

.dp-tab-button.active {
    background-color: red;
    color: white;
}

.dp-tab-content {
    display: none;
    padding: 15px;
}

.dp-tab-content .product {
    background-color: #f9f9f9;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
}
/**********************************************/

/*EFECTO PALPITACION***************************/
/**********************************************/

/*PRODUCT-GRID SECTION*************************/
.product-grid-section-title-product{
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal; 
}
/**********************************************/