#addproduct{
	margin: 0;
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 5px;
	background-color: transparent;
}
#select_product>div{
	height: 164px;
	display: block;
	white-space: wrap;
	overflow: none;
	border-radius: 3px;
	text-align: center;
	font-size: 13px;
    position: relative;
    flex: 1 0 21%;
    margin: 2px;
}
#select_product>.addItem{
    background-color: #282828;
    transition: background-color 0.2s ease, border 0.2s ease;
    border: 1px #424242 solid;
    cursor: pointer;
}
#select_product>.addItem:hover{
	background-color: #007bff3b;
	border: 1px #007bff solid;
}
#select_product>div>img{
    display: block;
	margin: 10px auto;
	width: 100px;
	height: 100px;
}
#select_product>div>.badge{
    color: white;
    background-color: #e8441e;
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 15px;
    padding: 2px 5px;
    border-radius: 12px;
    transform: rotate(7deg);
    z-index: 1000;
    box-shadow: 3px 3px 10px #0009;
}
.oberstufenkollektion{
    color: #fb9e4c;
}

.speech-bubble { 
	position: relative; 
	background-color: #333333; 
	border-radius: .4em; 
	margin-top: 15px;
    display: flex;
    flex-flow: wrap;
    padding: 5px;
} 
.speech-bubble:before { 
	content: ''; 
	position: absolute; 
	top: 0; 
	left: 50%; 
	width: 0; 
	height: 0; 
	border: 20px solid transparent; 
	border-bottom-color: #333333; 
	border-top: 0; 
	margin-left: -20px; 
	margin-top: -20px;
}

/*Produkt Box*/
.product{
	margin: 0;
	margin-bottom: 5px;
	padding: 0;
	position: relative;
	height: 250px;
	background-color: #222222;
	font-size: 16px;
}
.product.has_desc{
    height: 300px;
}
.product.has_desc>.product_art{
    top: 30%;
}
.product>*{
	position: absolute;
	display: inline-block;
}
.product>a.delete{
	top: 5px;
	right: 10px;
}
.product object{
	left: 10px;
	top: 50%;
	transform: translate(0, -50%);
	width: 150px;
	filter: drop-shadow(black 0 1px 5px);
}
.product>h1{
	font-size: 24px;
	top: 10px;
	left: 170px;
    text-align: left;
}
.product>.product_art{
	text-align: left;
	top: 40%;
	left: 170px;
	width: 230px;
}
.product>.product_art>select{
	width: 60px;
}
.product>.product_count>table>tbody>tr>td:nth-child(1){
	text-align: right;
}
.product>.product_count>table>tbody>tr>td>input[type='number']{
	padding: 2px;
	width: 30px;
	margin-bottom: 0;
}
.product>h2{
	margin: 0;
	right: 10px;
	bottom: 10px;
	font-size: 30px;
}
.product>.product_count{
	right: 10px;
	top: 50%;
	transform: translate(0, -50%);
}
.product>.desc{
    text-align: left;
    left: 170px;
    top: 190px;
    font-size: 13px;
    max-width: 280px;
    color: #9b9b9b;
}