#shop_menu {
	position: relative;
	left: -10px;
}

#shop_menu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

#shop_menu ul li.has-dropdown {
	position: relative;
}

#shop_menu ul li a {
	padding: 4px 10px;
}

#shop_menu>ul {
	display: block;
}

#shop_menu>ul>li {
	display: inline-block;
}

#shop_menu ul.dropdown {
	position: absolute;
	z-index: 2;
	opacity: 0;
	visibility: hidden;
	top: calc(100% + 20px);
	background-color: #fff;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

#shop_menu ul li.has-dropdown:hover>ul {
	opacity: 1;
	visibility: visible;
	top: calc(100%);
}

/* #header-top-warenkorb-badge {
	position: absolute;
	left: 24px;
	top: -2px;
	font-size: 8px;
	width: 14px;
	height: 14px;
	line-height: 14px;
	text-align: center;
	color: #fff;
	background-color: var(--main-color);
	border-radius: 50%;
	display: none;
} */

/****** Warenkorb-Übersicht*/
#modal_warenkorb_table_items h6 {
	margin-bottom: 0;
	font-size: 1rem;
	font-weight: 500;
	line-height: 30px;
}

#modal_warenkorb_table_items .warenkorb-row {
	display: flex;
	align-items: center;
}

#modal_warenkorb_table_items .warenkorb-row .optionen {
	font-size: 0.75rem;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0.5rem;
}

#modal_warenkorb_table_items .warenkorb-row .optionen>div {
	width: 50%;
}

/****** Account*/
#menu_account {
	display: none;
	position: absolute;
	min-width: 140px;
	right: 0px;
	top: 50px;
	z-index: 11;
	background-color: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

#menu_account>ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

#menu_account a {
	display: block;
	width: 100%;
	padding: 6px 14px;
}

/***** input number */
/* hide arrows
 Chrome, Safari, Edge, Opera */
.shop_item_options input::-webkit-outer-spin-button,
.shop_item_options input::-webkit-inner-spin-button {
	-webkit-appearance: none !important;
	margin: 0 !important;
	text-align: right;
}

/* Firefox */
.shop_item_options input[type=number] {
	-moz-appearance: textfield !important;
	text-align: right;
}