
.content-section { display: flex; flex-flow: column wrap; }
.btn-primary     { border: none; border-radius: .3em; }

.shop-item        { 	width: 100%; margin-bottom: 2rem; }
.shop-item-title  { padding: 1rem 0; }
.shop-item-image  { width: 100%; }
.shop-item-price  { flex-grow: 1; color: var(--blue_3); }
.shop-item-button { min-width: 145px; } 

.shop-item-details {
  display: flex;    
	align-items: center;
  padding: 5px; }

.shop-items {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between; }

.cart-column {
  display: flex;
	flex-flow: column wrap;
	justify-content: space-between; /* ruimte tussen aantal en remove verticaal */
  align-items: flex-start; 
  border-bottom: 1px solid var(--blue_3);
  padding-bottom: 10px;
  margin-top: 10px; }

.content-section h1 { padding: 0 0 1rem 0; margin: 0; }

.cart-row      { width: 100%; display: flex; color: var(--blue_3); } 
.cart-items    { width: 100%; }/**/
.cart-item     { width: 100%; width: 45%; } 
.cart-price    {  width: 20%; font-size: 1rem; color: var(--orange_3); }
.cart-quantity { width: 35%; align-items: flex-end; }

/* img bij afrekenen */
.cart-item-image {
	width: 75px;
	height: auto;
	border-radius: 10px; }

/*remove button*/
.btn-danger {
	color: white;
	background-color: var(--orange_3);
	border: none;
	border-radius: 5px;
	font-weight: bold;
	min-width: 7rem; 
	margin: 0.5rem 0;  
	align-self: flex-end; }

/*select aantal boeken */
.cart-quantity-input {
	height: 34px;
	width: 70%!important; /* vanwege formulier laten staan ! */
	border-radius: 5px;
	border: 1px solid var(--blue_3);
	background-color: #eee;
	color: #333;
	padding: 0;
	text-align: center;
	font-size: 1.2em;
	align-self: flex-end; }

.cart-row:last-child { border-bottom: 1px solid black; }
.cart-row:last-child .cart-column {  border: none; }

.cart-total {
	display: flex; 
	justify-content: space-between; 
   text-align: end;
	margin-top: 10px; }

/*totaal*/
.cart-total-title {
    font-weight: 600;
    font-size: 1.4rem; }

/*totaal plrijs */
.cart-total-price {
    font-size: 1.4rem;
    color: var(--blue_3); }

.btn-purchase {
  display: block;
  margin: 2rem 0 0 0;
	align-self: flex-end;
	border-radius: 3px; }


/*===============================================*/
   /* MEDIA QUERIE 768 */
/*===============================================*/
@media screen and (min-width: 768px){
	
	.shop-item { 
		width: 45%; 
		display: flex;
		flex-flow: column;
		align-items: flex-end;
	} 

	.shop-item-price { padding-right: 2rem; }
	.cart-quantity { width: 50%; }
	.cart-quantity-input { width: 20% !important; }
	
	.cart-total       { justify-content: flex-end; } 	
	.cart-total-title { margin-right: 2rem; }
	
	.cart-quantity { width: 100%; }
	.btn.btn-danger {  width: 40%; }
	
}

/*===============================================*/
   /* MEDIA QUERIE 1024 */
/*===============================================*/
@media screen and (min-width: 768px){

	.shop-item-image { width: 50%; }
	
	
}
	

