@charset "UTF-8";
/* Mandarin Island CSS Document */

/*
font-family: 'Joti One', cursive;
font-family: 'Saira Semi Condensed', sans-serif; 300 400 500 600 700
*/

.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }

/* Rules for using icons as black on a light background. */
.material-icons.md-dark { 
	color: rgba(70, 130, 180, 1); 
	transform: translateY(1px);
}
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }

/* Rules for using icons as white on a dark background. */
.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }

.transform {
	transform: translateY(3px);
}


:root {
	--red: rgb(210, 35, 42);
	--burgundy: hsl(5, 54%, 45%);
}

html {
	font-size: 10px;
	overflow-y: scroll;
	box-sizing: border-box;
	height: 100%;
	scroll-behavior: smooth;
}
*, *:before, *:after {
	box-sizing: inherit;
	padding: 0;
	margin: 0;
}

body {
	font-family: 'Saira Semi Condensed', sans-serif;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

a, a:hover {
	color: inherit;
	text-decoration: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

div:empty {
	height: 20px;
}

#wrapper {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}

header {
	padding: 4px 0 10px;
	background: url("../images/header_bkg.jpg") no-repeat center;
	background-size: cover;
	display: flex;
	flex-wrap: wrap;
}

.header_logo {
	flex: 1;
}

.header_logo h1 {
	background: url("../images/MI-logo-horizontal.png") no-repeat;
	width: 80%;
	height: 0;
	padding-bottom: 22.5%;
	font-size: 1px;
	text-indent: -1000rem;
	margin: 0 0 0 3vw;
	background-size: 100%;
}

.info {
	flex: 1;
	font-size: calc(1.6rem + 0.5vw);
	line-height: 150%;
	font-weight: 600;
	margin: 25px 0 0 25px;
}
.info a {
	cursor: default;
}
.info small {
	font-weight: 300;
}
.order_btn {
	font-weight: 400;
	font-size: 1.8rem;
	background: var(--burgundy);
	color: white;
	padding: 2px 0;
	width: 150px;
	text-align: center;
	margin: 5px 0 0;
	border-radius: 20px;
}
.order_btn:hover {
	background: #006400;
}

/*section*/
section {
	padding: 20px 0;
}

section > h1 {
	font-family: 'Joti One', cursive;
	font-size: calc(2rem + 1vw);
	text-align: center;
	width: 100%;
	color: var(--red);
	margin-bottom: 10px;
}
section > h1 small {
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: calc(1.4rem + 1vw);
	color: green;
	font-weight: 300;
}

section > h3 {
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: calc(1rem + 0.6vw);
	color: #333;
	text-align: center;
	font-weight: 300;
	margin-top: -10px;
	width: 100%;
}

section.home {
	background: url("../images/about_bkg.png") no-repeat center bottom;
	background-size: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 40px 0 10vh;
}
section.home div {
	max-width: 330px;
	width: 90%;
	margin: 10px 20px;
}
section.home div img {
	width: 100%;
}



section.menu {
	background-image: url("../images/section_bkg.png");
	background-repeat: no-repeat;
	background-size: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}



figure {
	width: 300px;
	padding: 8px 10px 0;
	position: relative;
/*	background: linear-gradient(to bottom, #8b0000, #f08080 75%, transparent 75%, transparent 100%);*/
	background-image: linear-gradient(to bottom, #888, #fff 75%, transparent 75%);
	box-shadow: 0 10px 15px -12px hsl(0, 25%, 35%);
	margin: 15px;
	display: flex;
	flex-flow: column;
}

figure.full_img {
	padding: 0;
	background: none;
}
.number {
	position: absolute;
	z-index: 5;
	left: 8px;
	top: 64.5%;
	background: var(--burgundy);
	width: 45px;
	height: 40px;
	font-size: 2rem;
	text-align: center;
	font-weight: 500;
	color: white;
	border-radius: 50%;
	border: solid 1px white;
	padding-top: 3px;
}
figure > img {
	width: 100%;
/*	filter: drop-shadow(3px 3px 5px rgba(50, 50, 50, .6));*/
}

figcaption {
	font-size: 1.5rem;
	line-height: 135%;
	text-align: center;
	padding: 6px 0 10px;
	font-weight: 600;
	margin: auto -10px 0;
}
figcaption small {
	font-weight: 300;
	font-size: 1.4rem;
}
figcaption em {
	font-weight: 300;
}
figcaption img {
	width: auto;
	height: 18px;
	transform: translateY(2px);
}

section.contact {
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.location_info {
	flex: 1;
	margin-top: 25px;
}

.location_info small {
	font-weight: 300;
}
.location_info p {
	font-size: calc(1.4rem + 0.3vw);
	line-height: 135%;
	font-weight: 400;
}

.location_info  h2 {
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: calc(1.8rem + 0.3vw);
	color: #333;
	font-weight: 600;
	line-height: 140%;
	margin: 15px 0;
}

.location_info  h3 {
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: calc(1.6rem + 0.3vw);
	color: #333;
	font-weight: 600;
	line-height: 140%;
	margin-top: 15px;
}

.google_map {
	flex: 1;
	height: 0;
	margin: 5px auto;
	padding: 10px 3vw 40%;;
	overflow: hidden;
	position: relative;
	background: transparent;
}
.google_map iframe {
	width: 90%;
	height: 90%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border: solid 8px wheat;
}


.price {
	font-size: 1.6rem;
	font-weight: 600;
	width: 80px;
	text-align: center;
	display: inline-block;
	margin: 5px 0 0;
}

.order {
	background: hsl(0, 0%, 92%);
	text-align: center;
	font-size: 1.4rem;
	font-weight: 500;
	padding: 3px 0;
	width: 90px;
	margin: 5px auto 0;
/*	display: inline-block;*/
	display: none;
}
.order:hover {
	background: #999;
	color: white;
}

section.about {
	background-image: url("../images/section_bkg.png"), url("../images/about_bkg.png");
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center top, center bottom;
	padding: 50px 10vw 0;
	margin-bottom: -31px;
}
.about_logo {
	max-width: 600px;
	width: 85%;
}

.about_dishes {
	display: flex;
	justify-content: flex-end;
	margin-right: -10vw;
	margin-bottom: 2vh;
}
.about_dishes img {
	width: 80%;
}
section.about p {
	font-size: calc(1.6rem + 0.5vw);
	line-height: 150%;
	font-style: italic;
	margin-top: 15px;
	font-weight: 300;
}
section.about p.enjoy {
	font-weight: 600;
	color: var(--burgundy);
}

/*table*/
.menuTbl {
	max-width: 880px;
	width: 75%;
	margin: 10px auto;
}
.menuTbl th {
		border-bottom: solid 1px hsl(0, 0%, 85%);
}
.menuTbl th:last-child {
	font-size: calc(1.3rem + 0.2vw);
	line-height: 135%;
	font-weight: 300;
	vertical-align: top;
	padding: 8px 15px 8px 0;
	text-align: right;
	letter-spacing: 1px;
}
.menuTbl tr td {
	font-size: calc(1.2rem + 0.3vw);
	line-height: 135%;
	font-weight: 600;
	vertical-align: top;
	padding: 8px 0;
	text-align: right;
	border-bottom: solid 1px hsl(0, 0%, 85%);
}
.menuTbl tr td em {
	font-weight: 300;
	white-space: nowrap;
}
.menuTbl tr td img {
	width: 18px;
	height: auto;
	transform: translateY(3px);
}
.menuTbl tr td small {
	font-weight: 300;
	font-size: 1.6rem;
}
.menuTbl td:first-child {
	width: 12%;
	padding-right: 15px;
}
.menuTbl td:last-child {
	width: 15%;
	padding-right: 15px;
}
.menuTbl td:nth-of-type(2) {
	text-align: left;
}
.menuTbl td:nth-of-type(3) {
	width: 18%;
}
.order2 {
	font-weight: 500;
	font-size: calc(0.8rem + 0.3vw);
	background: hsl(0, 0%, 92%);
	padding: 3px 1px;
	width: 90%;
	text-align: center;
	margin: 0 3px;
/*	display: inline-block;*/
	display: none;
	white-space: nowrap;
}
.order2:hover {
	background: #999;
	color: white;
}

/*lunch*/
.lunch_special {
	display: block;
	width: 300px;
	height: auto;
	margin: 0 auto;
}
.lunches {
	flex-basis: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0 5vw;
	align-items: flex-start;
}
.lunches p {
	font-size: calc(2rem + 0.5vw);
	font-weight: 500;
	text-align: center;
}
.lunchTbl {
	width: 285px;
	margin: 10px auto 25px;
	border-bottom: solid 2px #999;
	box-shadow: 0 10px 10px -8px rgba(50, 50, 50, .4);
}
.lunchTbl caption {
	font-family: 'Joti One', cursive;
	font-size: calc(1.4rem + 0.5vw);
	text-align: left;
	color: var(--red);
	border-bottom: solid 1px var(--red);
	padding-bottom: 6px;
}

.lunchTbl td:first-child {
	width: 8%;
}
.lunchTbl tr td {
	font-size: calc(1.2rem + 0.3vw);
	line-height: 135%;
	font-weight: 600;
	vertical-align: top;
	padding: 8px 0;
	border-bottom: solid 1px hsl(0, 0%, 85%);
}
.lunchTbl tr td img {
	width: 18px;
	height: auto;
	transform: translateY(3px);
}

/*dinner*/
.dinner_special {
	display: block;
	width: calc(20% - 2vw);
	min-width: 185px;
	margin: 1vh 1vw;
}
.dinnerTbl {
	max-width: 450px;
	width: 85%;
	margin: 10px auto 25px;
	border-bottom: solid 2px #999;
	box-shadow: 0 10px 10px -8px rgba(50, 50, 50, .4);
}
.dinnerTbl caption {
	font-family: 'Joti One', cursive;
	font-size: calc(1.4rem + 0.5vw);
	text-align: center;
	color: var(--red);
	border-bottom: solid 1px var(--red);
	padding-bottom: 6px;
}
.dinnerTbl caption small {
	font-family: 'Saira Semi Condensed', sans-serif;
}
.dinnerTbl td:first-child {
	text-align: right;
	width: 30%;
	padding-right: 20px;
}
.dinnerTbl tr td {
	font-size: calc(1.2rem + 0.3vw);
	line-height: 135%;
	font-weight: 600;
	vertical-align: top;
	padding: 8px 0;
	border-bottom: solid 1px hsl(0, 0%, 85%);
}
.dinnerTbl tr td img {
	width: 18px;
	height: auto;
	transform: translateY(3px);
}
.dinner_items {
	margin-left: 18px;
}
.dinner_items li {
	list-style-type: none;
	position: relative;
}
.dinner_items li::before {
	content: counter(mycounter, square);
	color: #bbb;
	position: absolute;
	top: -2px;
	left: -18px;
}


/*footer*/
footer {
	max-width: 1200px;
	width: 100%;
	margin: auto auto 0;
	background: var(--burgundy);
	display: flex;
	padding: 1.5vh 0 2.5vh;
}
footer p {
	color: white;
	font-size: calc(1rem + 0.3vw);
	margin: auto;
	text-align: center;
}

/*Go to top*/
.gototop{
		position: fixed;
		left: 90%;
		top: 80%;
		height: 35px;
		width: 38px;
		background: #fff;
		border: solid 1px #999;
		padding: 17px 2px 10px;
		font-size: 1rem;
		text-align: center;	
		border-radius: 8px 8px 0 0;
	}
#burgundy-triangle {
		width: 0;
		height: 0;
		border-left: solid 10px transparent;
		border-right: solid 10px transparent;
		border-bottom: solid 10px rgb(210, 35, 42);
		position: absolute;
		top: -12px;
		left: 0;
		right: 0;
		bottom: 0;
		margin: auto;
		z-index:10;	
	}
hr.dotted {
	border: none;
	border-top: dotted 3px #999;
	width: 95%;
	margin: 0 auto;
}
.word_wrap {
	white-space: nowrap;
}
.footnote {
	width: 85%;
	margin: 20px auto;
	font-size: calc(0.8rem + 0.3vw);
	text-align: center;
	color: #333;
}
.footnote > img {
	width: 18px;
	transform: translateY(3px);
}
.center_block {
	display: block;
	margin: 0 auto;
}


@media (max-width: 992px) {
	.info {
		margin: 15px 0 0 15px;
	}
}


@media (max-width: 768px) {
	
	header {
	    background: url("../images/header_bkg_800.jpg") no-repeat center;
		flex-flow: column;
		padding-bottom: 1vh;
	}
	
	.header_logo h1 {
		width: 80%;
		margin: 0 auto;
	}
	
	.order_btn {
		margin: 15px auto 0;
	}
	
	.info {
		text-align: center;
		margin: 0;
	}
	
	section.menu {
	background-image: url("../images/section_bkg_800.png");
	}
	
}


@media (max-width: 576px) {
	
	header {
		background: url("../images/header_bkg_600.jpg") no-repeat center;
		background-size: cover;
	}
	
	section.menu {
	background-image: url("../images/section_bkg_600.png");
	}
	
	.lunchTbl tr td img, .dinnerTbl tr td img {
	width: 13px;
	height: auto;
	transform: translateY(2px);
	}
	
	section.contact {
		flex-flow: column;
	}
	.location_info {
		width: 85%;
		margin: 0 auto;
	}
	
	.google_map {
		width: 90%;
		padding-bottom: 50%;
		margin: 15px auto;
	}
	.footnote img {
		width: 13px;
	}
	
	.mobile-hide {
		display: none;
	}
	
	footer {
		margin-bottom: 0;
	}
	
}

















