@font-face{
	font-family: nunito;
	src: url(../fonts/Nunito-Regular.ttf);
}
::-webkit-scrollbar { width: 0px; height: 0; background: transparent; }
::-webkit-scrollbar-thumb { background: #FF0000; }
::selection{ color: #000; background: #9e9e9e; }
::-moz-selection{ color: #000; background: #9e9e9e; }

html,body{
	position: fixed;
	top: 0; bottom: 0;
	left: 0; right: 0;
	overflow-y: scroll;
	font-family: nunito;
	visibility: hidden;
	padding: 0px !important;
	margin: 0px !important;
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	 -khtml-user-select: none; /* Konqueror HTML */
	   -moz-user-select: none; /* Firefox */
		-ms-user-select: none; /* Internet Explorer/Edge */
			user-select: none; /* Non-prefixed version, currently
								  supported by Chrome and Opera */
	background: #38b6ff;
	transition: background 0.4s ease;
	-webkit-transition: background 0.4s ease;
	-moz-transition: background 0.4s ease;
}
body[night-mode]{ background: #333; }

*{ font-family: nunito; }
button{ cursor: pointer; outline: none; }

/**************************************** CONTAINER ********************************************/
#container{
	position: absolute;
	top: 0; bottom: 0;
	left: 0; right: 0;
	overflow: hidden;
}
#container > div{ display: table; width: 100%; height: 100%; }
#container > div > div{ display: table-row; }
#container > div > div:nth-child(2){ height: 100%; }
#container > div > div > div{ display: table-cell; vertical-align: middle; position: relative; }


/**************************************** HEADER ********************************************/
#header{
	z-index: 5;
	padding: 15px 20px;
	background: #fffaf0;
	box-shadow: 0 0 3px 0 #000;
	-webkit-box-shadow: 0 0 3px 0 #000;
	-moz-box-shadow: 0 0 3px 0 #000;
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
}
body[night-mode] #header{ background: #333; border-bottom: 1px solid #444; }
#header > div{ display: table; width: 100%; }
#header > div > div{ display: table-cell; vertical-align: middle; }
#header > div > div:nth-child(2){ width: 100%; }


/**************************************** LOGO ********************************************/
#main-logo{
	position: relative;
	height: 30px;
	cursor: pointer;
	transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
}
#main-logo:active{
	transform: scale(0.9);
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	-o-transform: scale(0.9);
}
#main-logo::after{
	content: '';
	display: block;
	position: absolute;
	top: 0; bottom: 0;
	left: 0; right: 0;
}
#main-logo img{
	display: none;
	height: 100%;
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
}
body[night-mode] #main-logo img{ filter: brightness(0) invert(1); }
#main-logo img:last-child{ display: block; }


/**************************************** tombol login ********************************************/
button#login-profile{
	display: block;
	width: max-content;
	max-width: 200px;
	height: max-content;
	min-height: 35px;
	overflow: hidden;
	white-space: nowrap;
	background: none;
	border: none;
	outline: none;
	color: #000;
	font-weight: 600;
	padding: 0 10px;
	cursor: pointer;
	transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
}
button#login-profile:active{
	transform: scale(0.9);
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	-o-transform: scale(0.9);
}
body[night-mode] button#login-profile{ color: #fff; }
button#login-profile > *{ display: inline-block; vertical-align: middle; }
button#login-profile b{
	position: relative;
	width: 25px;
	height: 25px;
	overflow: hidden;
	border-radius: 50%;
	background: #d8d8d8;
	margin-right: 7px;
}
button#login-profile b::after{
	content: '';
	display: block;
	position: absolute;
	top: 0; bottom: 0;
	left: 0; right: 0;
	z-index: 1;
}
button#login-profile b img{
	display: block;
	position: absolute;
	top: 50%; left: 50%;
	max-width: 100%;
	max-height: 100%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}


/**************************************** pengubah malam ********************************************/
button#toggle-night{
	display: block;
	position: relative;
	width: max-content;
	height: max-content;
	margin: 0 10px;
	padding: 0;
	background: none;
	outline: none;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
}
button#toggle-night:active{
	transform: scale(0.9);
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	-o-transform: scale(0.9);
}
button#toggle-night::before{
	content: '';
	display: block;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background-image: radial-gradient(#ffe5be, #fbb03b);
	background-image: -webkit-radial-gradient(#ffe5be, #fbb03b);
	background-image: -moz-radial-gradient(#ffe5be, #fbb03b);
	box-shadow: 0 0 5px 1px #ff9800;
	-webkit-box-shadow: 0 0 5px 1px #ff9800;
	-moz-box-shadow: 0 0 5px 1px #ff9800;
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
}
body[night-mode] button#toggle-night::before{
	border-radius: 100% 0 0 100%;
	background: #fff;
	box-shadow: 0 0 5px 1px #fff;
	-webkit-box-shadow: 0 0 5px 1px #fff;
	-moz-box-shadow: 0 0 5px 1px #fff;
}
button#toggle-night::after{
	content: '';
	display: block;
	position: absolute;
	top: 50%; right: 0;
	width: 0;
	height: 100%;
	background: transparent;
	border-radius: 100% 0 0 100%;
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transform: translate(50%, -50%);
	-webkit-transform: translate(50%, -50%);
	-moz-transform: translate(50%, -50%);
	-ms-transform: translate(50%, -50%);
}
body[night-mode] button#toggle-night::after{
	width: 120%;
	background: #333;
	box-shadow: 0 0 3px 1px #333;
	-webkit-box-shadow: 0 0 3px 1px #333;
	-moz-box-shadow: 0 0 3px 1px #333;
}

/***************************** tombol menu samping *****************************************/
button#toggle-sidemenu{
	display: none;
	background: none;
	border: none;
	width: 35px;
	height: 35px;
	font-weight: 600;
	padding: 0;
	position: relative;
	transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
}
button#toggle-sidemenu:active{
	transform: scale(0.9);
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	-o-transform: scale(0.9);
}
button#toggle-sidemenu::before,
button#toggle-sidemenu::after{
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	width: 50%;
	height: 15%;
	border-color: #333;
	border-style: solid;
	border-left-width: 0;
	border-right-width: 0;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}
button#toggle-sidemenu::before{ top: 50%; border-top-width: 1px; border-bottom-width: 2px; }
button#toggle-sidemenu::after{ bottom: 50%; border-top-width: 2px; border-bottom-width: 1px; }
body[night-mode] button#toggle-sidemenu::before,
body[night-mode] button#toggle-sidemenu::after{ border-color: #fff; }


/********************************************************************************/

#scrollable{
	position: absolute;
	top: 0; bottom: 0;
	left: 0; right: 0;
	overflow-y: auto;
}

.section{
	display: block;
	position: relative;
	height: 100%;
	background: #fff;
}
body[night-mode] .section{ background: #000; }



/**************************************** menu header **************************************/
#header-menu{
	white-space: normal;
	word-break: break-word;
	text-align: center;
	padding: 0 5px;
}
#header-menu button{
	display: inline-block;
	padding: 0 10px;
	white-space: nowrap;
	height: 35px;
	color: #333;
	background: none;
	border: none;
	font-size: 0.8em;
	transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
}
#header-menu button:active{
	transform: scale(0.9);
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	-o-transform: scale(0.9);
}
body[night-mode] #header-menu button{ color: #fff; }

/**************************************** tombol voucher**************************************/
button#voucher-redeem{
	background: #ff9800;
	border-radius: 20px;
	color: #fff;
	font-weight: 600;
}
button#voucher-redeem > *{ display: inline-block; vertical-align: middle; }
button#voucher-redeem i{
	font-style: normal;
	margin-right: 10px;
	text-align: center;
	position: relative;
	line-height: 20px;
	height: 20px;
	width: 20px;
	color: #ff9800;
	background: #fff;
	border-radius: 3px;
	z-index: 1;
}
button#voucher-redeem i::before{
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 50%; left: 50%;
	border-radius: 3px;
	background: #fff;
	z-index: -1;
	transform: translate(-50%, -50%) rotate(45deg);
}

/**************************************** menu samping **************************************/
#side-menu{
	display: none;
	position: fixed;
	z-index: 10;
	top: 0; bottom: 0;
	left: 100%;
	width: 100%;
	color: #333;
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
}
body[night-mode] #side-menu{ color: #fff; }
#side-menu::before{
	content: '';
	position: absolute;
	top: 0; bottom: 0;
	left: 0; right: 0;
	z-index: -1;
	background: rgba(0, 0, 0, 0.6);
}
#side-menu > span{
	position: absolute;
	top: 0; bottom: 0;
	left: 0; right: 0;
}
#side-menu > div {
	position: absolute;
	top: 0; right: 0;
	margin-top: -100%;
	margin-right: 10px;
	width: 200px;
	background: #fffaf0;
	padding: 15px;
	border-radius: 3px;
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
}
body[night-mode] #side-menu > div { background: #333; }

#side-menu h2{
	margin: 0 0 10px 0;
	padding-bottom: 10px;
	font-size: 1em;
	color: inherit;
	font-weight: 600;
	border-bottom: 1px solid #d8d8d8;
}
#side-menu h2 > span{ display: table; width: 100%; }
#side-menu h2 > span > span{ display: table-cell; vertical-align: middle; }
#side-menu h2 > span > span:first-child{ width: 100%; }
#side-menu h2 button{
	display: block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	background: none;
	border: none;
	color: inherit;
	padding: 0;
	font-size: 2em;
}

#side-menu > div > button{
	display: block;
	width: 100%;
	height: 35px;
	background: none;
	border: none;
	color: inherit;
	white-space: nowrap;
	padding: 0;
	text-align: left;
	transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
}
#side-menu > div > button:active{
	transform: scale(0.9);
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	-o-transform: scale(0.9);
}

/* LAYOUT PRODUK */
#product-list{
	display: table;
	width: 100%;
	height: 100%;
}
#product-list > div{ display: table-cell; vertical-align: middle; }
#product-list > div > div{
	display: table;
	margin: 0 auto;
	width: 100%;
	max-width: 800px;
}
#product-list > div > div > div{
	display: table-cell;
	position: relative;
	width: 50%;
}
#product-list div.box-separator{ width: auto; }
#product-list div.box-separator::before{
	content: '';
	display: block;
	width: 20px;
}

.box-product{
	padding: 20px 15px;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	z-index: 1;
	cursor: pointer;
	transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
}
.box-product:active{
	transform: scale(0.95);
	-webkit-transform: scale(0.95);
	-moz-transform: scale(0.95);
	-ms-transform: scale(0.95);
	-o-transform: scale(0.95);
}
.box-product::before{
	content: '';
	display: block;
	position: absolute;
	top: 0; bottom: 0;
	left: 0; right: 0;
	z-index: -1;
	opacity: 0.3;
}
.box-product[data-for="anim"]::before{ background: #cd6ce6; }
.box-product[data-for="toa"]::before{ background: #38b6ff; }
body[night-mode] .box-product::before{ background: #333; opacity: 1; }
.box-product h2{
	margin: 0;
	color: #333;
	font-weight: 600;
	text-align: center;
	font-size: 1em;
	white-space: nowrap;
}
body[night-mode] .box-product h2{ color: #fff; }

.box-product b{
	display: block;
	width: 100%;
	padding: 15px 0;
	margin: 0 auto;
	max-width: 70%;
	position: relative;
}
.box-product b::after{
	content: '';
	display: block;
	position: absolute;
	top: 0; bottom: 0;
	left: 0; right: 0;
	z-index: 1;
}
.box-product b svg{ opacity: 0.5; width: 100%; }
.box-product[data-for="anim"] b svg path{ fill: #cd6ce6; }
.box-product[data-for="toa"] b svg path{ fill: #38b6ff; }
.box-product b svg path{ opacity: 0.4; }
.box-product b img{
	display: block;
	position: absolute;
	top: 50%; left: 50%;
	z-index: 1;
	width: 70%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}
.box-product > div{
	min-height: 150px;
}
.box-product p{
	margin: 0 0 5px 0;
	color: #000;
	white-space: normal;
	word-break: break-word;
	text-align: center;
	font-size: 1em;
}
body[night-mode] .box-product p{ color: #fff; }

.box-product button{
	display: block;
	margin: 0 auto;
	border: none;
	outline: none;
	color: #fff;
	width: 120px;
	height: 35px;
	border-radius: 20px;
}
.box-product[data-for="anim"] button{ background: #cd6ce6; }
.box-product[data-for="toa"] button{ background: #38b6ff; }


/** KONTAK **/
#contact-info{
	position: relative;
	height: 100%;
	overflow: hidden;
	padding: 20px;
	color: #000;
}
body[night-mode] #contact-info{ color: #fff; }
#contact-info > svg{
	display: block;
	width: 100%;
	position: absolute;
	bottom: 0; left: 0;
}

#contact-info > svg path{ fill: #38b6ff; }
body[night-mode] #contact-info > svg path{ fill: #333; }
#contact-info > div{ position: relative; height: 100%; z-index: 1; }
#contact-info > div > div{
	display: table;
	width: 100%;
	height: 100%;
}
#contact-info > div > div > div{
	display: table-cell;
	vertical-align: middle;
}
#contact-info > div > div > div > div{
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	background: #fffaf0;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 5px 0 #000;
	-webkit-box-shadow: 0 0 5px 0 #000;
	-moz-box-shadow: 0 0 5px 0 #000;
}
body[night-mode] #contact-info > div > div > div > div{ background: #333; border: 1px solid #444; }

#contact-info h1{
	margin: 0 0 15px 0;
	color: inherit;
	text-align: center;
	white-space: normal;
	word-break: break-word;
	font-size: 1em;
	font-weight: 600;
}
#contact-info img{
	display: block;
	width: 50px;
	margin: 0 auto 5px auto;
}
#contact-info h2{
	margin: 0 0 15px 0;
	color: inherit;
	font-size: 1.1em;
	font-weight: 600;
	text-align: center;
}
#contact-info table{ margin: 0 auto; }
#contact-info td{ vertical-align: top; padding-bottom: 10px; }
#contact-info td:first-child{ width: 35px; }
#contact-info td .fa{ display: block; font-size: 1.5em; color: #38b6ff; text-align: center; }
#contact-info td p{ margin: 0; color: #000; }
#contact-info td p a{ text-decoration: none; cursor: pointer; color: inherit; }
body[night-mode] #contact-info td p{ color: #fff; }


/******** PAKET PREMIUM *********/
.section[data-for="package"]{ /* display: none; */ }
#package-list{
	position: relative;
	height: 100%;
	overflow: hidden;
	padding: 20px;
	color: #000;
}
#package-list > div{ position: relative; height: 100%; z-index: 1; }
#package-list > div > div{
	display: table;
	width: 100%;
	height: 100%;
}
#package-list > div > div > div{
	display: table-cell;
	vertical-align: middle;
}

#package-list h1{
	margin: 0;
	color: #000;
	font-weight: 600;
	white-space: nowrap;
	font-size: 1.5em;
	text-align: center;
	letter-spacing: 1px;
}
body[night-mode] #package-list h1{ color: #fff; }

#package-inner{
	margin: 20px 0 100px 0;
	text-align: center;
}
.package-box{
	display: inline-block;
	vertical-align: top;
	padding: 25px 15px;
	width: 150px;
	margin: 7px;
	background: #fffaf0;
	cursor: pointer;
	border-radius: 10px;
	box-shadow: 0 0 3px 0 #000;
	-webkit-box-shadow: 0 0 3px 0 #000;
	-moz-box-shadow: 0 0 3px 0 #000;
	transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
}
.package-box:active{
	transform: scale(0.9);
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	-o-transform: scale(0.9);
}

body[night-mode] .package-box{
	background: #333;
	box-shadow: 0 0 3px 0 #fff;
	-webkit-box-shadow: 0 0 3px 0 #fff;
	-moz-box-shadow: 0 0 3px 0 #fff;
}


.package-box > div{
	
}
.package-box h4{
	display: block;
	margin: 0;
	font-size: 1.2em;
	color: #ff9800;
	letter-spacing: 1px;
	white-space: nowrap;
	text-shadow: 0 0 1px #9e9e9e;
}
.package-box p{
	position: relative;
	display: block;
	margin: 15px auto;
	font-size: 1.8em;
	font-weight: 600;
	width: max-content;
	padding-left: 25px;
	white-space: nowrap;
	text-shadow: 0 0 1px #000;
}
.package-box p::before{
	content: 'Rp';
	display: block;
	position: absolute;
	left: 0; top: 0;
	font-size: 0.5em;
}
body[night-mode] .package-box p{ color: #fff; }

.package-box h6{
	margin: 0;
	text-align: center;
	font-size: 0.8em;
	color: #9e9e9e;
}


/*****************/
.playground{
	position: absolute;
	top: 0; bottom: 0; left: 0; right: 0;
	background: #fffaf0;
	padding-top: 40px;
	z-index: 10;
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transform: scale(0);
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
}
body[night-mode] .playground{ background: #333; }
.playground[state-expanded]{
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
}
.playground > button{
	position: absolute;
	top: 0; right: 0;
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	color: #ed1c24;
	font-weight: 600;
	padding: 0;
	outline: none;
	cursor: pointer;
	font-size: 1.5em;
}
.playground > div{ height: 100%; position: relative; border-top: 1px solid #d8d8d8; }

/*** floating ***/
button#floating-contact{
	display: block;
	position: fixed;
	bottom: 0; right: 0;
	margin: 0 15px 15px 0;
	z-index: 5;
	background: #25d366;
	width: 45px;
	height: 45px;
	border: none;
	outline: none;
	color: #fff;
	padding: 0;
	font-size: 1.5em;
	border-radius: 50% 50% 5px 50%;
	box-shadow: 0 0 3px 0 #fff;
	-webkit-box-shadow: 0 0 3px 0 #fff;
	-moz-box-shadow: 0 0 3px 0 #fff;
	transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	animation: anim-wiggle 1.5s ease infinite;
	-webkit-animation: anim-wiggle 1.5s ease infinite;
	-moz-animation: anim-wiggle 1.5s ease infinite;
}

@keyframes anim-wiggle{
	0%, 70%, 100%{ transform: rotate(0deg); } 
	20%{ transform: rotate(15deg); }
	60%{ transform: rotate(-15deg); }
}
@-webkit-keyframes anim-wiggle{
	0%, 70%, 100%{ -webkit-transform: rotate(0deg); } 
	20%{ -webkit-transform: rotate(15deg); }
	60%{ -webkit-transform: rotate(-15deg); }
}
@-moz-keyframes anim-wiggle{
	0%, 70%, 100%{ -moz-transform: rotate(0deg); } 
	20%{ -moz-transform: rotate(15deg); }
	60%{ -moz-transform: rotate(-15deg); }
}

@media only screen and (max-width: 960px){
	#product-list > div > div{ max-width: 700px; }
}
@media only screen and (max-width: 840px){
	#main-logo img:first-child{ display: block; }
	#main-logo img:last-child{ display: none; }
	
	#product-list > div > div{ max-width: 600px; }
	.box-product > div{ min-height: 130px; }
	.box-product p{ font-size: 0.9em; }
}
@media only screen and (max-width: 640px){
	button#toggle-sidemenu{ display: block; }
	#header-menu button:not([data-for="vch"]){ display: none; }
	
	#side-menu{ display: block; }
	#side-menu[state-expanded]{ left: 0; }
	#side-menu[state-expanded] > div{ margin-top: 10px; }
	
	.section{ height: auto; }
	
	#product-list > div > div{ display: block; margin: 50px auto; max-width: 500px; }
	#product-list > div > div > div{ display: block; width: 100% !important; }
	
	.box-product{ max-width: 500px; margin: 0 auto 15px auto; }
	.box-product::after{ content: ''; display: block; clear: both; }
	.box-product h2{ text-align: left; font-size: 1.2em; margin-bottom: 15px; }
	.box-product b{ margin: 0; float: left; width: 35%; padding: 0; }
	.box-product > div{ float: left; width: 65%; padding-top: 10px; }
	.box-product p{ text-align: left; padding-left: 20px; }
	.box-product button{ clear: both; float: right; }
	
	#contact-info > div > div > div > div{ max-width: 400px; }
}
@media only screen and (max-width: 520px){
	#product-list > div > div{ max-width: 380px; }
	.box-product h2{ font-size: 1em; }
	.box-product p{ font-size: 0.8em; }
}
@media only screen and (max-width: 480px){
	#header{ padding: 10px 15px; }
	button#toggle-sidemenu{ width: 30px; }
	button#toggle-night{ margin: 0 5px; }
	
	#contact-info > div > div > div > div{ max-width: 300px; }
	
	#package-list h1{ font-size: 1.3em; }
	.package-box{ width: 120px; padding: 20px 15px; }
	.package-box h4{ font-size: 1em; }
	.package-box p{ font-size: 1.4em; }
	.package-box h6{ font-size: 0.7em; }
}
@media only screen and (max-width: 420px){
	button#toggle-night{ display: none; }
	#header-menu{ padding: 0; }
	button#voucher-redeem{ font-size: 0.7em; }
	button#voucher-redeem i{ width: 15px; height: 15px; line-height: 15px; margin-right: 5px; }
	
	#product-list > div > div{ max-width: 300px; }
	.box-product h2{ text-align: center; }
	.box-product b{ float: none; width: 100%; margin: 0 auto; padding: 0 20px; }
	.box-product > div{ float: none; width: 100%; min-height: auto; padding: 10px 0; }
	.box-product p{ text-align: justify; padding: 0 10px; }
	.box-product button{ float: none; }
	
	#contact-info > div > div > div > div{ max-width: 250px; padding: 20px 15px; }
	#contact-info h1{ font-size: 0.9em; }
	#contact-info h2{ font-size: 1em; }
	#contact-info table{ font-size: 0.9em; }
	
	.package-box{ padding: 15px 10px; margin: 4px; width: 110px; }
	.package-box p{ font-size: 1.2em; padding-left: 15px; }
	.package-box h6{ font-size: 0.6em; }
}
@media only screen and (max-width: 360px){
}
