/* Products */
.maxshop-flexible{display: flex; flex-wrap: wrap; justify-content: center; text-align: center; gap:12px 6px;}
.maxshop-products{display: flex; flex-direction:column; justify-content:space-between;position: relative;background: #fff; border: 1px solid #d9d9d9;
    box-shadow:0 3px 10px -8px rgb(75, 125, 175);min-width:150px;flex:1 0 20%;transition:0.5s;}
.maxshop-products:hover{background:transparent;border:1px solid var(--main);box-shadow:0 8px 10px -8px rgb(75, 125, 175);}
.product-box{}
.product-box-image{
  display:flex;flex-wrap:nowrap;justify-content:center;align-items:center;
	width:100%;max-height:100%;aspect-ratio:1/1;margin-bottom:12px; overflow:hidden;
}
.product-box-image img{
  /*flex-shrink:0;*/
  display:block;max-width:100%;max-height:100%;object-fit:cover;vertical-align:middle;transition:0.5s;
}
.product-box-image:hover img{transform: scale(0.9);}
.product-box-title{}
.product-box-title a{display:block;background:white;padding:6px;}
.product-box-title a:hover{background: var(--main); color:white;}
.product-box-price{padding:12px 3px;}
.product-price{font-size:1.1rem;font-weight:900;}
.product-money{font-size:0.9rem;color:#405b8e}
.product-box-brief{padding: 0px 3px 12px 3px;color:var(--bs1);}

.textbox{color:#405b8e;}
.textbox-small{font-size:0.8em;color:#405b8e;}

.form-flex-inline{width: 100%; display:flex; flex-wrap: wrap; justify-content: space-around; align-items:center; gap:6px;}
.form-flex-inline > div.control-groups{flex:1 0 20%; min-width:150px;}

.input-box-price{display: block; width: 100%; padding: 0.5rem 1rem; font-size: 1rem; font-weight: 400; line-height: 1.5; 
  background-color: #eaeaea; border: 1px solid #d9d9d9; border-radius: 0.25rem;text-align:center;}

.input-box-field{display: block; width: 100%; padding: 0.5rem 1rem; font-size: 1rem; font-weight: 300; line-height: 1.5; 
  background-color: #eaeaea; color: #009090; border: 1px solid #009090; border-radius: 0.25rem;text-align:center;}
.input-box-field::placeholder{color: var(--bs1);}

.btn.btn-add-to-cart{background:#4caf50;color:#fff;border:1px solid #fff;}
.btn.btn-add-to-cart:hover{background:#009090;color:#fff;border:1px solid #009090;}
