body{
	margin: 0;
	font-family: 'Fraunces', serif;
	font-size: 16px;
	color: #393939;
}

/* Navigation */

.board {
	display: block;
	margin: 0;
	width: auto;
	height: auto;
}

#logo {
	font-size: 10px;
	color: #393939;
	float: left;
	align-items: center;
	align-content: center;
	height: 1.9rem;
	width: 155px;
	margin: 0% 10px;
	padding: 10px;
}

.close {
	float: left;
	height: 34px;
	width: 34px;
	margin-right: 20px;
	margin-top: 20px;
}

.navbar {
	display: block;
	background-color: #fff;
	box-shadow: 2px 2px 10px 2px rgba(0,0,0,.2);
	position: fixed;
	width: 100%;
	height: 73px;
	z-index: 3;
}

.navbar-hit{
	display: block;
	float: right;
	margin-right: 30px;
	margin-top: 30px;
	margin-bottom: 20px;
}

#menu {
	display: none;
	float: right;
	height: 34px;
	width: 34px;
	margin-top: 20px;
	margin-right: 20px;
}

#icoserving {
	float: left;
	height: 34px;
	width: 34px;
	margin-right: 10px;
	margin-left: 10px;
}
/*
#subMenu {
	display: block;
	float: left;
	cursor: pointer;
	color: #393939;
	margin-left: 20px;
	margin-right: 5px;
	margin-bottom: 15px;
}

#subMenu:hover {
	border-bottom: #393939 solid 4px;
}
*/
#about {
	max-width: 600px;
	margin-top: 0px;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 20px;
}

.paragraphText {
	display: block;
	color: #393939;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
}

/* header */

.header {
	display: block;
	font-family: 'Fraunces', serif;
	font-size: x-large;
	font-weight: 400;
	text-align:center;
	color: #393939;
	background-color: #ffffff;
	padding-top: 10px;
	padding-bottom: 10px;
	margin: 0;
}

#myInput {
	background-image: url('/images/icon/search-24px.svg'); 
	background-position: 200px 12px; 
	background-repeat: no-repeat; 
	width: 200px; 
	font-size: 16px; 
	padding: 15px; 
	border: 1px solid #393939; 
	box-shadow: 2px 2px 4px 2px rgba(0,0,0,.2);
	margin: 10px; 
	border-radius: 5px;

}

ul#myUL {
	display: flex;
	align-items: center;
	align-content: center;
	padding: 0 5px;
	padding-bottom: 10px;
}

#myUL {
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
	width: 345px;
	height: auto;
	margin: 10px 10px;
}

#myUL li a {
	display: block;
	text-align: center;
	color: #393939;
	border: 1px solid #393939; 
	width: 130px;
	height: 130px;
	padding: 10px 10px;
	padding-bottom: 50px;
	margin-bottom: 30px;
	margin-left: 10px;
	margin-right: 10px;
	transition: all 0.3s ease-out;
	hyphens: auto;
}

#myUL li a:hover:not(.header) {
  	background: #E6B050;
}

/* end-header */

.imageHeadline {
	width: 100%;
	height: auto;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: transparent;
}

.imageAgenda {
	width: 100%;
	height: auto;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: transparent;
}

.thumbnailCharacters {
	display: inline-block;
	width: 100%;
	height: auto;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin-bottom: 10px;
}

#welcomeBanner {
	max-width: 600px;
	margin-top: 0px;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 70px;
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#agenda {
	max-width: 600px;
	margin-top: 0px;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 0px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#core {
	max-width: 600px;
	margin-top: 0px;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 20px;
	padding-bottom: 20px;
}

.wrap-collabsible {
	width: 300px;
}

input[type='checkbox'] {
	display: none;
}

.lbl-toggle {
	display: block;
	text-align: center;
	padding: 1rem;
	margin: 10px;
	background: #fff;
	color: #393939;
	border: 1px solid #393939;
	cursor: pointer;
	border-radius: 5px;
	transition: all 0.25s ease-out;
}

.lbl-toggle:hover {
	color: #393939;
	background: #E6B050;
}

.lbl-toggle::before {
	content: ' ';
	display: inline-block;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 5px solid currentColor;
	vertical-align: middle;
	margin-right: .7rem;
	transform: translateY(-2px);
	transition: transform .2s ease-out;
}

.toggle:checked + .lbl-toggle::before {
	transform: rotate(90deg) translateX(-3px);
}

.collapsible-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height .25s ease-in-out;
}

.toggle:checked + .lbl-toggle + .collapsible-content {
	max-height: 900px;
}

.toggle:checked + .lbl-toggle {
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}

.collapsible-content .content-inner {
	background: #fff;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	padding: .1rem 1rem;
}

#hitButton1 {
	color: #393939;
}

#hitButton2 {
	color: #393939;
}

#hitButton3 {
	color: #393939;
}

.container {
	color: #393939;
	display: flex;
	align-items: center;
	align-content: center;
	flex-direction: column;
	box-shadow: 1px 1px 10px 1px rgba(0,0,0,.1);
	border-radius: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
	width: 100%;
	height: 100%;
	margin: 0;
}

a {
	color: #000099;
	text-decoration: none;
}

.howtoNote1 {
	display: block;
	box-align: center;
  	margin: 0 20px;
}

.title-content {
	color: #393939;
	background-color: #fff;
	border: #393939 solid 1px;
	margin: 20px auto;
	padding: 5px;
	font-family: 'fraunces', serif;
	font-size: 19px;
	font-style: italic;
	border-radius: 50%;
}

.content {
	color: #393939;
	margin: 20px 0;
	padding-top: 30px;
	padding-bottom: 20px;
	text-align: center;
	border-top: #393939 solid 1px;
	width: 100%;
}

#submitBtn {
	display: flex;
	align-items: center;
	align-content: center;
	color: #393939;
	background-color: #fff;
	border: #393939 solid 1px;
	border-radius: 5px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.5px;
	padding:10px;
	margin-top: 20px;
	margin-bottom: 12px;
	margin-right: 20px;
	margin-left: 20px;
	width: 320px;
	height: auto;
	transition: all 0.3s ease-out;
}

#submitBtn:hover {
	color: #393939;
	background: #E6B050;
	border: #393939 solid 1px;
}

#more {
	display: flex;
	float: right;
	align-items: center;
	color: #393939;
	background-color: #ffffff;
	border: #393939 solid 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: 400;
	text-align: center;
	letter-spacing: 0.5px;
	padding:10px 10px;
	margin: 10px;
	width: 35px;
	height: 35px;
	border-radius: 50px;
	transition: all 0.3s ease-out;
}

#more:hover {
	border: #393939 solid 1px;
	color: #393939;
	background: #02aca3;
}

#orderBtn2 {
	display: flex;
	float: center;
	align-items: center;
	align-content: center;
	color: #393939;
	background-color: #fff;
	border: #393939 solid 1px;
	border-radius: 5px;
	font-size: 14px;
	text-align: left;
	letter-spacing: 0.5px;
	padding: 10px 10px;
	margin: 20px 15px;
	width: 275px;
	height: 1.9rem;
	transition: all 0.3s ease-out;
}

#orderBtn2:hover {
	color: #fff;
	background: #02aca3;
	border: #393939 solid 1px;
}

#whatsapp_ico {
	float:right;
	height: 35px;
	width: 35px;
	padding: 0px;
}

#whatsapp_ico2 {
	float:right;
	height: 35px;
	width: 35px;
	padding: 5px;
}

.orderLink {
	color: #000099;
	text-decoration: underline;
	height: auto;
	width: 100px;
	padding: 5px;
	text-align: center;
}

.orderLink:hover {
	color: #E6B050;
	background: #000099;
	text-decoration: underline;
}

#messages {
	margin: 0; padding: 0; box-sizing: border-box; }
      body { font: 13px Helvetica, Arial; }
      form { background: #393939; padding: 3px; position: fixed; bottom: 0; width: 100%; }
      form input { border: 0; padding: 10px; width: 90%; margin-right: .5%; }
      form button { width: 9%; background: rgb(130, 224, 255); border: none; padding: 10px; }
      #messages { list-style-type: none; margin: 0; padding: 0; }
      #messages li { padding: 5px 10px; }
      #messages li:nth-child(odd) { background: #eee;
}

.footer {
	display: block;
	position: relative;
	color: #393939;
	background: #EEEEEE;
	font-size: 14px;
	width: 100%;
	height: 50px;
	padding-top: 10px;
	padding-bottom: 20px;
	bottom: 0;
}

#feedback {
	display: block;
	float: left;
	cursor: pointer;
	color: #393939;
	margin-left: 20px;
	margin-right: 5px;
}

#feedback:hover {
	border-bottom: #393939 solid 4px;
}

.licensePage {
	font-size: 14px;
	background: #EEEEEE;
	margin-top: 2px;
	padding: 20px;
}
/*
#subMenu {
	display: block;
	float: left;
	cursor: pointer;
	color: #393939;
	margin-left: 20px;
	margin-right: 5px;
}

#subMenu:hover {
	border-bottom: #393939 solid 4px;
}
*/
.version {
	color: #393939;
	display: block;
	font-size: 14px;
	float: right;
	margin-left: 5px;
	margin-right: 20px;
}

#ico-fb, #ico-tw, #ico-ig, #ico-blog {
	float: center;
	height: 34px;
	width: 34px;
	margin: 5px;
}

#batikekaTag {
	display: block;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 1px;
	margin: 0;
	padding: 20px;
	height: auto;
	width: auto;
}


@media only screen and (max-width: 720px) {

	#menu {
		display: block;
		float: right;
		height: 34px;
		width: 34px;
		margin-top: 20px;
		margin-right: 20px;
	}

	.navbar-hit {
		display: none;
	}

	.version {
		color: #393939;
		position: absolute;
		display: block;
		float: left;
		font-size: 14px;
		padding-top: 20px;
		margin-top: 20px;
		margin-left: 20px;
		margin-right: 20px;
	}

	.footer {
		position: relative;
	}
}