/* --------------- WARENKORBANSICHT --------------- */
#angebot_produkt
   {
   position: relative;
   display: -webkit-flex;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   -webkit-align-items: stretch;
   align-items: stretch;
   align-content: flex-start;
   -webkit-justify-content: center;
   justify-content: center;
   margin-top: 20px;
   }
      	      	      	
   #angebot_bild
      {
      width: 24%;
      height: auto;
      margin-right: 1%;
      }
      	      	      	
      #angebot_bild img
      	{
      	width: auto;
      	max-width: 100%;
      	height: auto;
      	max-height: 125px;
      	}
      	      	      	
   #angebot_details
      {
      width: 74%;
      height: auto;
      margin-left: 1%;
      }
      	      	      	
      #angebot_preis
      	{
      	position: relative;
      	display: -webkit-flex;
      	display: -webkit-box;
      	display: -ms-flexbox;
      	display: flex;
      	flex-direction: row;
      	flex-wrap: wrap;
      	-webkit-align-items: center;
      	align-items: center;
      	align-content: center;
      	-webkit-justify-content: flex-end;
      	justify-content: flex-end;
     	 width: 100%;
      	height: auto;
      	font-weight: bold;
      	}
      	      	      	
      #angebot_name
      	{
      	position: relative;
      	display: -webkit-flex;
      	display: -webkit-box;
      	display: -ms-flexbox;
      	display: flex;
      	flex-direction: column;
      	flex-wrap: wrap;
      	-webkit-align-items: flex-start;
      	align-items: flex-start;
      	align-content: flex-start;
      	-webkit-justify-content: flex-start;
      	justify-content: flex-start;
     	 width: 100%;
      	height: auto;
      	}
      	      	      	
   #angebot_rabattstaffel_rahmen
      {
      position: relative;
      width: 94%;
      height: auto;
      margin: 10px auto 5px auto;
      text-align: center;
      }
      	      	      	
      input.angebot_rabattstaffel_produkt
      	{
      	display: none;
      	}
      	      	      	
      label.lbl_angebot_rabattstaffel_produkt
      	{
      	width: auto;
      	height: auto;
      	margin: 5px auto 10px auto;
      	padding: 2px 5px;
      	text-decoration: underline;
      	-ms-user-select: None;
      	-moz-user-select: None;
      	-webkit-user-select: None;
      	user-select: None;
      	cursor: pointer;
      	}
      	input.angebot_rabattstaffel_produkt:checked + label.lbl_angebot_rabattstaffel_produkt:after { content: "Rabattstaffel ausblenden"; }
      	input.angebot_rabattstaffel_produkt:not(:checked) + label.lbl_angebot_rabattstaffel_produkt:after { content: "Rabattstaffel anzeigen"; }
      	      	      	
      #angebot_rabattstaffel
      	{
      	position: relative;
      	display: none;
      	flex-direction: row;
      	flex-wrap: wrap;
      	-webkit-align-items: stretch;
      	align-items: stretch;
      	align-content: flex-start;
      	-webkit-justify-content: center;
      	justify-content: center;
      	width: 100%;
      	height: auto;
      	margin: 10px auto 5px auto;
      	overflow: hidden;
      	}
      	      	      	
      	input.angebot_rabattstaffel_produkt:checked ~ #angebot_rabattstaffel
      	   {
      	   display: -webkit-flex;
      	   display: -webkit-box;
      	   display: -ms-flexbox;
      	   display: flex;
      	   }
      	      	      	
      	#angebot_rabattstaffel_grenze
      	   {
      	   width: 50%;
      	   text-align: left;
      	   }
      	      	      	
      	#angebot_rabattstaffel_preis
      	   {
      	   width: 50%;
      	   text-align: right;
      	   }