

/*Items*/

#menu_card {
	position: relative;
	margin: .5em .2em;
	padding: inherit;
}

	

	#item_set1 {}

	#item_set2 {
		margin: 2em auto;
	}

	.item_box {
		/*border: 1px solid teal;*/
		margin-bottom: 1em;
	}

	#coffee_box {
		flex-basis: 32%;
		border: 1px solid burlywood;
	}

	#lacchi_box {
		flex-basis: 32%;
		border: 1px solid pink;
	}

	#shake_box {
		flex-basis: 32%;
		border: 1px solid #ccccff;
	}

	#tea_box {
		flex-basis: 49%;
		border: 1px solid #AC713D;
	}

	#juice_box {
		flex-basis: 49%;
		border: 1px solid #ccce0f;
	}

		.item_box_h {}

		.item_box_h p {
			font-size: 25px;
			text-align: center;
		}

		#coffee_heading {
			background-color: burlywood;
			color: #fff;
		}

		#lacchi_heading {
			background-color: pink;
		}

		#shake_heading {
			background-color: #ccccff;
		}

		#tea_heading {
			background-color: #AC713D;
			color: #fff;
		}

		#juice_heading {
			background-color: #ccce0f;
		}

		.item_row {
			display: flex;
			justify-content: space-evenly;
			align-items: center;
			align-content: center;
			transition: all .5s ease-in-out;
		}

		.item_row:hover {
			cursor: pointer;
			/*font-style: italic;*/
			font-size: 17px;
			font-weight: bold;
			color: blueviolet;
			/*zoom: 100%;*/
			/*border: 1px solid royalblue;*/
		}

		.item_row:nth-child(odd) {
			background-color: #ffedeb;
		}

		.item_header {
			background-color: #c1fff5;
			display: flex;
			justify-content: space-between;
			align-content: center;
			align-items: center;
		}

			.item {}

			.item_img {
				margin: .1em;
				/*border: 1px solid dimgrey;*/
				flex-basis: 15%;
			}

				.item_img img {
					width: 35px;
					height: 35px;
				}

			.item_name {
				margin: .1em;
				/*border: 1px solid dimgrey;*/
				flex-basis: 60%;
			}

			.item_price {
				margin: .1em;
				/*border: 1px solid dimgrey;*/
				flex-basis: 20%;
			}

		#mc_bnd {}

			.mc_bb {}

				.mc_btn {
					padding: .3em;
				}

				#prev_m {}

				#next_m {}

			#mc_dots {}

				.mc_dot {
					width: 15px;
					height: 15px;
					background-color: #abbf9d;
					display: inline-block;
					border-radius: 50%;
					margin: 0em .1em;
				}

			.mc_active_dot {
				background-color: #fcbe37;
			}

				#mc_dot1 {}

				#mc_dot2 {}

				#mc_dot3 {}

				#mc_dot4 {}

				#mc_dot5 {}
	
	@media (min-width: 550px) {
		.item_set {
			/*border: 1px solid rebeccapurple;*/
			display: flex;
			justify-content: space-evenly;
			align-items: ceiling;
			align-content: center;
		}
	}

/*Items end*/