/* Equal height product cards across all languages */
.products-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.products-row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.products-row > [class*="col-"] > .ibox {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.products-row .product-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.products-row .product-desc {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.selected {
  -webkit-box-shadow: 0 3px 7px 0 #a8a8a8;
  -moz-box-shadow: 0 3px 7px 0 #a8a8a8;
  box-shadow: 0 3px 7px 0 #a8a8a8;	
}

.product-box:hover,
.product-box.active {
  border: 1px solid #babcbd;
  -webkit-box-shadow: 0 3px 7px 0 #a8a8a8;
  -moz-box-shadow: 0 3px 7px 0 #a8a8a8;
  box-shadow: 0 3px 7px 0 #a8a8a8;
}

.product-box {
	border: 1px solid #babcbd;
}

.defaultset {
   	border: 1px solid #D32F2F;
}

.defaultset:hover {
	border: 1px solid #D32F2F;
}


.product-info {
  	text-align: center;
  	padding: 40px 0;
  	background-color: #bbb8b8;
    
}

.defaultset .product-info {
	background-color: #eac6ca;
}

.product-info h1 {
  color: #3f3f3f;
  font-weight: 800;
  font-size: 8rem;
}

.defaultset .product-info h1 {
	color: #3f3f3f;
	font-weight: 800;
	font-size: 8rem;
}

.product-info h2 {
	color: #3f3f3f;
	font-weight: 800;
	font-size: 8rem;		
}

.defaultset .product-info h2 {
	color: #3f3f3f;
	font-weight: 800;
	font-size: 8rem;
}

.product-price {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    padding: 6px 12px;
    position: absolute;
    top: -32px;
    right: 0;
}

.most-value {
    font-size: 14px;
    font-weight: 600;
    background-color: #23c6c8;
    color: #ffffff;
    padding: 6px 12px;
    text-align: center;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recommended {
    font-size: 14px;
    font-weight: 600;
    background-color: #D32F2F;
    color: #ffffff;
    padding: 6px 12px;
    text-align: center;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.regular {
    font-size: 14px;
    font-weight: 600;
    background-color: #e0dede;
    color: #3f3f3f;
    padding: 6px 12px;
    text-align: center;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-revised {
	text-decoration: line-through;	
}

.btn-pop {
    background-color: #D32F2F;
    border-color: #D32F2F;
    color: #FFFFFF;
}

.btn-pop:hover {
	background-color: #ea4141;
    color: #FFFFFF;
}


/* Smartphones (portrait) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
/* Styles */

	.product-info h1 {
		color: #3f3f3f;
		font-weight: 600;
		font-size: 5rem;		
	}
	
	.defaultset .product-info h1 {
		color: #3f3f3f;
		font-weight: 600;
		font-size: 5rem;
	}
	
	.product-info {
  		text-align: center;
  		padding: 20px 0;
  		background-color: #bbb8b8;
    
	}
	
}
