@charset "utf-8";

.menu__item {
	color: inherit;
	cursor: pointer;
	display: block;
	margin: 12px 0 3px;
	position: relative;
	width: 650px;
	border: 1px solid #ccc;
}

.menu__item:first-child {
	margin-top: 0;
}

.menu__item__link {
	color: inherit;
	display: block;
	padding: 9px 10px;
	text-decoration: none;
	position: relative;
	font-weight: bold;
	background: #efefef;
}

.menu__item__link:before {
	content: "▼";
	position: absolute;
	left: auto;
	right: 12px;
	top: 0;
	bottom: 0;
	margin: auto;
	font-size: 13px;
	width: 13px;
	height: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .2s linear;
}

.menu__item__link.is-open:before {
	transform: rotate(180deg);
}

.submenu {
	background: #fff;
	display: none;
}

.submenu__item {
	border-top: 1px solid #ccc;
	color: inherit;
	padding: 5.5px 10px 5px;
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.submenu__item label {
	width: calc(100% - 200px);
}

.submenu__item span {
	width: 100px;
	text-align: right;
}

.submenu__item .price {
    font-size: 13px;
}

.submenu__item input[type=number] {
	width: 60px;
	border: 1px solid #ccc;
}

input#shop {
	width: 650px;
}

.orderNote {
	color: #1800CF;
	font-weight: bold;
	margin-top: 11px;
	font-size: 12px;
}

@media screen and (max-width: 1000px) {
	.menu__item {
		width: 88%;
	}

	input#shop {
		width: 88%;
	}

	.submenu__item {
		-ms-flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.submenu__item label {
		width: 100%;
	}

	.submenu__item .price {
		margin-left: auto;
	}
}

@media screen and (max-width: 591px) {
	.menu__item {
		width: 100%;
	}

	input#shop {
		width: 100%;
	}
}