/*orderpage2.css*/

/* Small Section */
@media screen and (max-width: 800px){
	.mycontainer {
		margin: auto;
		width: 100%;
		padding: 0px 5px 0px 5px;
		background-color: #e0e0e0;
	}

	.flex {
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		font-size: 20px;
		align-items: center;
	}
	.m-option img {
		max-width: 50%;
	}
}
@media screen and (min-width: 800px){
    .hide-big{
        display: none;
    }
}
/* Normal section */
body {
	background-color: white;
}
@media screen and (min-width: 800px){
	.mycontainer{
		margin: auto;
		width: 100%;
		background-color: #e0e0e0;
	}
}
#cart {
	width: 40px;
	position: relative;
	left: 10px;
}
.cart-count {
	margin-left: 15px;
	font-size: large;
	color: white;
    margin-right: 15px;
}

.options {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}
@font-face {
	font-family: "justforfun";
	src: url("JustForFun-Regular.otf");
}

.myhead span {
	font-family: sans-serif;
}
.myhead {
	background-color: #bdbdbd;
	color: white;
	height: 60px;
	font-size: 45px;
	font-family: justforfun, serif;
	text-shadow: -1px 0 black;
	/* vertical-align: middle; */
	/* border-bottom: 1px solid black;
	border-top: 1px solid black; */
	padding-right: 5px;
	min-width: fit-content;
}

.menu {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	background-color: #bdbdbd;
	max-height: 150px;
}

.m-option {
	font-size: 20px;
	min-height: fit-content;
}

@media screen and (min-width: 800px){
	.m-option img {
		max-height: 150px;
		border-radius: 40px;
	}
}
@media screen and (max-width: 800px){
	.m-option img {
		max-height: 60px;
		border-radius: 40px;
	}
}

.item {
	padding-left: 10px;
	font-family: serif;
}

@media screen and (min-width: 800px) {
	.flex {
		font-size: 20px;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.m-option img {
		max-width: 30%;
	}
}



/* css for buttons */
button {
	padding: 5px;
	transition-duration: 1s;
}
button:hover {
	cursor: pointer;
}
#atc {
	/* background-color: #b9f6ca; */
	background-color: white;
	border: 1px solid black;
	border-radius: 25px;
	font-family: monospace;
	font-size: 14px;
}
#atc:hover {
	background-color: #b9f6ca;
	border: 1px solid #444;
}

#submit {
	padding: 10px;
	background-color: lightgreen;
	border: 1px solid black;
	font-family: monospace;
	margin: 10px;
}
#submit:hover {
	background-color: #66ff77;
}

#clr-order {
	color: white;
	padding: 10px;
	background-color: crimson;
	border: 1px solid black;
	font-family: monospace;
	margin: 10px 10px 10px 0px;
}
#clr-order:hover {
	background-color: #e53935;
}

/* percents */
@media screen and (min-width: 800px){
	.p40 {
		max-height: 130px;
		width: 40%;
	}
	.p20 {
		/* min-width: fit-content; */
		width: 20%;
	}

	.p25 {
		width: 20%;
	}
}
@media screen and (max-width: 800px){
	.p40 {
		max-height: 130px;
		width: 35%;
	}
	.p20 {
		width: 20%;
	}
	.p25 {
		width: 25%;
	}
	.p25 #atc {
		max-width: 80%;
	}
}