/* CSS Document */

*{
	font-family: "Roboto", sans-serif;
	color: #363636;
}




/* Titel */

.title{
	width: 100%;
	font-size: 36px;
	align-self: center;
	font-weight: calc(--wbold);
	margin-bottom: 50px;
}
.title_2{
	width: 100%;
	font-size: 18px;
	align-self: center;
}
.title_3{
	font-size: 20px;
	width: 100%;
	display: flex;
	justify-content: flex-end;
	
}
.title_3 td{
	padding: 5px 0px 5px 80px;
	text-align: right;
}

/* Header */
header{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	padding-bottom: var(--padding-small);
	background-color: var(--main-color-bg);
}


#header-top{
	width: 100%;
	padding: 50px 30% var(--padding-small) 30%;
	border-bottom: 3px solid var(--main-color-action);
}

.logo-container{
	order: 1;
}
.logo-container .logo-image{
	width: 30%;
	margin-bottom: 50px;

}
.icons div{
	cursor: pointer;
}
.icons{
	display: none;
}
.search{
	display: none;
}
.searchbar{
	display: none;
}



/* Warenkorb */
.basket{
	width: 100%;	
}
.basket-title{
	font-weight: var(--wbold);
	display: flex;
	width: 50%;
	margin-bottom: 60px;

}
.basket-item-list{
	width: 100%;	
	flex-wrap: wrap;
	margin: 0;
	background-color: var(--main-color-bg);
	justify-content: flex-start;
	gap: var(--padding-small);
	padding: var(--padding-small);
	display: inline-flex;
}
.basket-item-container{
	margin-bottom: var(--padding-small);
	width: 100%;
}
.basket-item-text-container{
	width: calc(80% - var(--padding-small));
	padding-left: var(--padding-small);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-top: 3px;
	gap: 3px;
}

.basket-item-name{
	font-size: 20px;
}
.basket-item-image-title{
	font-size: 12px;
	background-color: rgba(113,113,113,0.60);
	border-radius: 50px;
	padding: 5px 10px;
	position: absolute;
	color: var(--main-color-white);
	margin: var(--padding-small);
}
.basket-item-image{
	display: none;
}

.product-form-group{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	break-inside: avoid;
}
.product-form-label,.product-form-title{
	width: 50%;
	font-weight: bold;
	margin: 5px 0;
}
.product-form-text-long{
	width: 100%;
	border: none;
}
.basket-item-container{
	padding-top: 5px;
	padding-bottom: 5px;
	border-top: 1px solid #363636;
	break-inside: avoid;
}
.noprint{
	display: none;
}