/*
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/


/* Table of Content
==================================================
	#Reset & Basics
	#Basic Styles
	#Site Styles
	#Typography
	#Links
	#Lists
	#Images
	#Buttons
	#Forms
	#Misc */


/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
	html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline; }
	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
		display: block; }
	body {
		line-height: 1; }
	ol, ul {
		list-style: none; }
	blockquote, q {
		quotes: none; }
	blockquote:before, blockquote:after,
	q:before, q:after {
		content: '';
		content: none; }
	table {
		border-collapse: collapse;
		border-spacing: 0; }
	* {box-sizing: border-box;margin:0;padding:0;outline:none;}
	*,:before,:after {-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}

/* #Basic Styles
================================================== */
	
	body {
		background-color: #D8DCE3;
		font-family: Helvetica, sans-serif;
		font-size:13px;
		line-height:28px;
		color: #666;
		-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
		-webkit-text-size-adjust: 100%;
		margin:0;
		padding:0;
	}


/* #Typography
================================================== */
	h1, h2, h3, h4, h5, h6 { font-weight: normal; }
	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; text-decoration:none;}
	h1{font-size:28px;line-height:30px;margin-bottom:20px;}
	h2{font-size:24px;line-height:30px;margin-bottom:15px;}
	h3{font-size:20px;line-height:30px;margin-bottom:10px;}
	h4{font-size:18px;margin-bottom:8px;}
	h5{font-size:16px;margin-bottom:5px;}
	h6{font-size:14px;}

	p { margin: 0 0 10px 0; line-height:24px;}
	p img { margin: 0; }
	p.lead { font-size: 21px; line-height: 27px; color: #777;  }

	em { font-style: italic; }
	strong { font-weight: bold; }
	small { font-size: 85%; }

/*	Blockquotes  */
	blockquote, blockquote p { font-size: 17px; line-height: 30px; color: #777; font-style: italic; }
	blockquote { margin: 0 0 20px; padding: 9px 20px 0 19px;  }
	blockquote:before{font-family:'FontAwesome';content:'\f10d';margin-left:-25px;margin-right:10px;}
	blockquote:after{font-family:'FontAwesome';content:'\f10e';margin-left:10px;}
	blockquote cite { display: block; color: #555; }
	blockquote cite:before { content: "\2014 \0020"; }
	blockquote cite a, blockquote cite a:visited, blockquote cite a:visited { color: #555; }

	hr { border: solid #ddd; border-width: 1px 0 0; clear: both; margin: 10px 0 20px; height: 0; }


/* #Links
================================================== */
	a { color:#337ab7;text-decoration: none; outline: none; cursor: pointer; transition:all .3s ease;-webkit-transition: all .3s ease;}
	a:hover, a:focus { color: #2BBBD8; text-decoration: none;outline: none;}
	p a, p a:visited { line-height: inherit; }


/* #Lists
================================================== */
	ul, ol { margin-bottom: 20px; }
	ul { list-style: none outside; }
	ol { list-style: decimal; }
	ol, ul.square, ul.circle, ul.disc { margin-left: 30px; }
	ul.square { list-style: square outside; }
	ul.circle { list-style: circle outside; }
	ul.disc { list-style: disc outside; }
	ul ul, ul ol,
	ol ol, ol ul { margin: 4px 0 5px 30px; }
	ul ul li, ul ol li,
	ol ol li, ol ul li { margin-bottom: 6px; }
	li { margin-bottom: 12px; }
	ul.large li { line-height: 21px; }
	li p { line-height: 21px; }

/* #Images
================================================== */

	img {
		max-width: 100%;
		height: auto; }


/* #Forms & Button
================================================== */
	input, button, select, textarea {font-family: 'Open sans' , sans-serif;}
	.button,
	button,
	input[type="submit"],
	input[type="reset"],
	input[type="button"] {
		font-size: 14px;
		-webkit-border-radius: 2px;
		   -moz-border-radius: 2px;
				border-radius: 2px;
		display: inline-block;
		cursor: pointer;
		margin-right: 6px;
		line-height: 1.42857143;
		padding: 6px 12px;
		-webkit-transition: all .3s ease;
			-moz-transition: all .3s ease;
				 transition:all .3s ease;
	}
	
	.button:hover{background:#ededed;}
	
	.button.full-width,
	button.full-width,
	input[type="submit"].full-width,
	input[type="reset"].full-width,
	input[type="button"].full-width {
		width: 100%;
		padding-left: 0 !important;
		padding-right: 0 !important;
		text-align: center; }

	/* Fix for odd Mozilla border & padding issues */
	button::-moz-focus-inner,
	input::-moz-focus-inner {
		border: 0;
		padding: 0;
	}

	fieldset {
		margin-bottom: 20px; }
	input[type="text"],
	input[type="password"],
	input[type="email"],
	input[type="number"],
	textarea,
	select {
		border: 1px solid #ccc;
		padding: 4px 10px;
		outline: none;
		-webkit-border-radius: 2px;
		   -moz-border-radius: 2px;
				border-radius: 2px;
		color: #555;
		margin: 0;
		width:100%;
		height:34px;
		
	}
	input[type="text"]{
		-webkit-transition: width 0.3s;
		   -moz-transition: width 0.3s;
				transition: width 0.3s;
	}
	select {
		padding: 0; }
	input[type="text"]:focus,
	input[type="password"]:focus,
	input[type="email"]:focus,
	input[type="number"]:focus,
	textarea:focus {
		border: 1px solid #aaa;
		-webkit-box-shadow: 0 0 3px rgba(0,0,0,.2);
 		   -moz-box-shadow: 0 0 3px rgba(0,0,0,.2);
				box-shadow: 0 0 3px rgba(0,0,0,.2); }
/*	
	input[type="text"]:-moz-read-only {
		background-color: #ddd;
	}
	input[type="text"]:read-only {
		background-color: #ddd;
	}
*/
	textarea {
		width: 100%;
		min-height: 60px; 
		line-height:18px;}
	legend {
		display: block;
		font-weight: bold;
		font-size: 13px;  }
	select {
		background-color: #fff;
		width: 220px;
		padding:0 4px;
		margin:0;}
	select option{
		padding:2px 5px;}
	input[type="checkbox"] {
		display: inline; 
		cursor:pointer;
		z-index:50;}
	label span,
	legend span {
		font-weight: normal;
		font-size: 13px;
		color: #444; }

noscript{
	position:absolute;
	top:0;
	width:100%;
	z-index:100000;
	background:#fff;
}

/* BACKGROUND */
body.kafex{
	background-image: url(../images/food.jpg);
	background-size: cover;
	background-repeat: no-repeat;
}

.format{
	display: inline-block;
	font-weight: bold;
	width: 20px;
	cursor: pointer;
}
.format.percent:before{content: "%";}
.format.currency:before{content: "Rp";}

/* tables */
.tblData {background:#fff;border-collapse:collapse;margin:0;line-height:18px;}
.tblData thead{background:#505B72;color:#fff;font-weight:bold;}
.tblData thead td, .tblData thead th{position:relative;vertical-align:middle;padding:8px 10px;border:1px solid #eee;text-align:initial;}
.tblData thead td:last-child{border-right:none;}
.tblData tbody{color:#666;}
.tblData td {padding:6px 8px;border:1px solid #eee;border-bottom:none;vertical-align: top;line-height: 24px;}
.tblData tr:last-child {border-bottom:1px solid #eee;}
.tblData thead td a{display:block;color:#fff;text-decoration:none;}
.tblData thead td a:hover, .tblData thead td a:visited{color:#fff;text-decoration:none;}
.tblData thead tr:hover{background:#505B72;}
.tblData tbody tr:hover{background:#efefef;}
.tblData.hover tr:hover{background:#eee;}
.tblData{width:100%;}
.tblData .cetak{font-size:16px;}
.tblData td input[type="text"]{margin-bottom:0;padding:0 4px;height:24px;}

.tblData thead th.sorting{cursor:pointer;}
.tblData thead th.sorting:after{font-family:'FontAwesome';content: "\f0dc";color:#999;position:absolute;right:5px;}
.tblData thead th.asc:after{content: "\f0de";color:#fff;}
.tblData thead th.desc:after{content: "\f0dd";color:#fff;}

.tblData input[type="button"]{padding:4px 10px;}

table.transparan{margin:0;line-height:18px;}
table.transparan thead,table.transparan tbody{background:none;}
table.transparan td, table.transparan th{border:none;padding:3px;}
table.transparan tr:hover{background:none;}
table.transparan tr:last-child {border-bottom:none;}
.search tr{cursor:pointer;}

.inner{margin-left:10px;}
.inner thead th{padding:4px 10px;border:1px solid #ccc;}
.inner td{background-color:#fff;}

/* DEFAULT */
.text-center{text-align:center;}
.text-right{text-align:right;}
.float-left{float:left;}
.float-right{float:right;}
.bold{font-weight:bold !important;}
.red{color:red;}
.green{color:#3c763d;}
.w5p{width:5% !important}
.w10p{width:10% !important}
.w15p{width:15% !important}
.w20p{width:20% !important}
.w25p{width:25% !important}
.w30p{width:30% !important}
.w35p{width:35% !important}
.w40p{width:40% !important}
.w45p{width:45% !important}
.w50p{width:50% !important}
.w55p{width:55% !important}
.w60p{width:60% !important}
.w65p{width:65% !important}
.w70p{width:70% !important}
.w75p{width:75% !important}
.w80p{width:80% !important}
.w85p{width:85% !important}
.w90p{width:90% !important}
.w95p{width:95% !important}
.w100p{width:100% !important}
.no-margin{margin:0 !important;}
.no-padding{padding:0 !important;}
label.selectit{cursor:pointer;}
.readonly{background-color:#eee;}

.ajax-loading{
	position:fixed;
	z-index:9999;
	background:#fff;
	top:20px;
	left:42%;
	width:20%;
	text-align:center;
	border:1px solid #ddd;
}

.unapproved{background:#FFFFE0;}

.img-preview{
	font-size: 46px;
	color: #ddd;
	width: 160px;
	height: 160px;
	border: 1px dashed #ddd;
	text-align: center;
	line-height: 160px;
}


/* MAIN */
.container-fluid{
	padding:0 15px;
}
.wrapper{padding:0 20px;}

.shadow-bottom{box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);-moz-box-shadow:1px 1px 10px rgba(0, 0, 0, 0.4);-webkit-box-shadow:1px 1px 10px rgba(0, 0, 0, 0.4);}

fieldset .field{margin-bottom:10px;}
fieldset .field.img{float:left;padding:5px;margin-right:5px; text-align:center;}
fieldset .field.img img{max-width:100%;}
fieldset .field .control-label{float:left;width:23%;margin-right:5%px;line-height:26px;font-weight:normal;text-align:right;padding-right:5px;}
fieldset .field .labels{padding:0 5px;}
fieldset .field .input{position:relative;margin-left:28%;line-height:26px;}
fieldset .field input[type="text"],
fieldset .field input[type="password"],
fieldset .field textarea{margin:0;}
fieldset .fieldgroup{border:1px solid #ccc;padding:10px;margin-bottom:10px;}
fieldset .col{float:left;margin-right:10px;}
fieldset.detail .field{margin-bottom:0;}
fieldset.detail .field .input{margin-left:30%;}
fieldset .field-title{margin: 20px 0 20px;padding: 4px 0;border-bottom: 1px solid #ddd;}

.fieldsetcontent{margin:0;padding:0;}

.fieldsetlogin{position:relative;background-color: #723782;color: #fff;margin:70px 0 0;padding:20px;
-webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.5);-moz-box-shadow: 0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5);}
.fieldsetlogin p{font-size:90%;}
.fieldsetlogin .field{margin-bottom:20px;float: left;width: 100%;clear: both;}
.fieldsetlogin .field label{float:left;width:20%;font-weight:400;}
.fieldsetlogin input[type="text"], 
.fieldsetlogin input[type="password"]{width:70%;background-color:#efefef;color:#777;border:1px solid #aaa;}
.fieldsetlogin label.checkbox{float:none;width:80%;margin-left:25%;font-weight:normal;line-height:20px;cursor:pointer;}
.fieldsetlogin img{vertical-align:top;}
.fieldsetlogin .button{font-weight:bold;background-color:rgba(255,255,255,0.2);width:100%;padding:8px 12px;}
.fieldsetlogin .button:hover{background-color:rgba(255,255,255,0.3)}

/* LOGIN */
.login .top-nav{
	padding: 5px 0 0;
	margin-left: 0;
}
.login .top-nav .logo{
	/* float: left; */
}
.login .top-nav .logo a{
	display: inline-block;
	font-size: 17px;
	font-weight: 300;
	color: #aaa;
	padding-top: 0;
	margin-bottom: 0;
	margin-left: 10px;
	vertical-align: middle;
}
.login .top-nav .logo a.image{
	margin-left: 0;
}
.login .top-nav .logo img{
	width: 60px;
}
body.login{
	background-image: url('../images/fried-chicken.jpg');
	background-size: cover;
}
.login .content .text{
	margin: 40px 0 20px;
	color: #fff;
}
.login .content .text h1{
	font-size: 32px;
	font-weight: 700;
	color: #ED3237;
	line-height: 57px;
	margin-bottom: 0;
}
.login .content .text h4{
	font-weight: 300;
}
.login .content .image{
	background-repeat: no-repeat;
	width: 100%;
	background-size: contain;
	background-position: 50%;
}

.formlogin{
	position: relative;
	background-color: #fff;
	padding: 20px;
	margin-top: 80px;
	-webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.5);
	   -moz-box-shadow: 0 5px 15px rgba(0,0,0,0.5);
			box-shadow:0 5px 15px rgba(0,0,0,0.5);
}
.formlogin h1{margin: 10px 0 5px;color:#ED3237;}
.formlogin p,.formlogin a,.formlogin label{font-size:90%;}
.formlogin input[type="text"], 
.formlogin input[type="password"]{background-color:#fafafa;color:#777;border:1px solid #ddd;height: 41px;}
.formlogin label.checkbox{float:none;width:80%;margin-left:25%;font-weight:normal;line-height:20px;cursor:pointer;}
.formlogin img{vertical-align:top;}
.formlogin .btn-btc{font-weight:bold;background-color:#ED3237;color:#fff;width:100%;padding:8px 12px;border-radius: 4px;}
.formlogin .btn-btc:hover{background-color:#c6292d}
.formlogin .input-group .input-group-addon{
	min-width: 39px;
}
#form_rfid .rfid i{
	font-size: 29px;
	width: 60px;
	height: 60px;
	line-height: 57px;
}
#form_rfid #rfid{
	background-color: #fff;
	height: 0;
	padding: 0;
	border: none;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
}

.form-horizontal .control-label{padding-top:0;}

/* Buttons */
.button{color:#333;background-color:#fff;border:1px solid #ddd;padding: 6px 18px;text-align:center;
	box-shadow: 0 2px 5px rgba(0,0,0,.16),0 1px 2px rgba(0,0,0,.12);vertical-align: middle;}
.button.small{padding:4px 10px;font-size:12px;}
.button.big{padding:8px 18px;font-size:14px;}
.button:hover{background-color:#ededed;}
.button.blue{color:#fff;background-color:#337ab7;border:1px solid #2e6da4;}
.button.blue:hover{background-color:#286090;}
.button.red{color:#fff;background-color:#d43f3a;border:1px solid #d43f3a;}
.button.red:hover{background-color:#c9302c;}
.button.dark{color:#fff;background-color: rgba(0, 0, 0, 0.5);border:1px solid rgba(0, 0, 0, 0.5);}
.button.dark:hover{background-color: rgba(0, 0, 0, 0.7);}
.button.orange{color:#fff;background-color:#f0ad4e;border:1px solid #eea236;}
.button.orange:hover{background-color:#ec971f;}
.button:hover{background-color:#ededed;}
.button:disabled, .button:disabled:hover{background-color: rgba(0, 0, 0, 0.3);}

/* HEADER */
.header{
	position:relative;
	background-color: #fff;
	color:#fff;
}
.header a, .header h1{color:#333;}
.header h1{font-size:20px;}

.top-nav {background-color:#398bf7;color:#fff;margin-left:230px;padding:0 15px;}
.top-nav #toggle-collapse{color:#fff;line-height:47px;}
.top-nav #toggle-collapse i{font-size:20px;}
.top-nav ul{float:right;margin:0;}

#nav-overlay{
	display:none;
	position:fixed;
	width:100%;
	height:100%;
	top:0;
	left:0;
	background-color:rgba(0,0,0,0.5);
	z-index:1000;
}
#navigation{
	position: fixed;
	top: 0;
	left: 0;
	width: 230px;
	bottom:0;
	background-color: #242a33;
	padding-bottom:20px;
	z-index:1001;
}
#toggle-close{
	position:absolute;
	top:10px;
	right:10px;
	cursor:pointer;
	display:none;
}
#toggle-close i{
	font-size:23px;
}
.brand{
	height:48px;
	background-image:url(../images/logo-inopos.png);
	background-size: 95%; 
	background-repeat: no-repeat; 
	background-position:50% 0;
	border-bottom: 1px solid #666;
}
.brand h1{
	font-size:14px;font-weight:bold;margin:0;padding:4px 10px 5px;}

.profil{margin:0;line-height:47px;}
.profil a:hover{color:#333;}
.profil .avatar{
	display:inline-block;
	width:30px;
	height:30px;
	line-height:27px;
	text-align:center;
	background-color:#666;
	-webkit-border-radius:50%;
	   -moz-border-radius:50%;
			border-radius:50%;
	margin:0;color:#fff;font-size:19px;margin-left:7px;}
.profil .profil-title{font-weight:bold;}
.profil .subtitle{font-size:11px;display:block;}

/* clock */
.datetime{float:right;padding-right:10px;margin-right: 10px;line-height:47px;}
.datetime ul {
	margin: 0 auto;
	padding: 0;
	list-style: none;
	text-align: center
}
#date {
	text-align: center;
	display: inline;
	margin-right: 6px;
}
.datetime span {
	text-align: center;
	padding: 0;
	margin-right: 1px;
}
.point {
	position: relative;
	-moz-animation: mymove 1s ease infinite;
	-webkit-animation: mymove 1s ease infinite;
}

@-webkit-keyframes mymove {
	0% {opacity:1.0; text-shadow:0 0 20px #00c6ff;}
	50% {opacity:0; text-shadow:none; }
	100% {opacity:1.0; text-shadow:0 0 20px #00c6ff; } 
}

@-moz-keyframes mymove {
	0% {opacity:1.0; text-shadow:0 0 20px #00c6ff;}
	50% {opacity:0; text-shadow:none; }
	100% {opacity:1.0; text-shadow:0 0 20px #00c6ff; } 
}

/* MENU */
#menu-toggle{display:none;position:absolute;top:8px;left:10px;font-size:28px;}
#close-toggle{display:none;position:absolute;top:8px;right:10px;font-size:22px;color:#fff;}

#menu, #menu ul {position:relative;display:block;list-style-type:none;margin: 0;padding:0;}
#menu{padding-top:20px;margin-bottom:40px;}
#menu li ul {display:none;}
#menu a {text-decoration:none;line-height:28px;}
#menu li {margin:0;transition: all 0.1s ease-in-out 0s;}
#menu > li {display: block;position:relative;}
#menu > li > a{font-weight:bold;}

#menu ul {border-bottom:none;}
#menu li ul li {padding:0;}

#menu li > a {display:block;position:relative;color:#aaa;padding:6px 10px 6px 20px;}
#menu li a img{margin:2px 10px 0 0;}
#menu li:hover{background: #edf0f5;}
#menu li:hover a{color: #666;}
#menu li ul li a {background-color:#fff;color:#666;padding:2px 10px 2px 55px;text-shadow:none;border-top:1px solid #fff;border-right:1px solid #E4E8ED;}
#menu li ul li a:hover {background:#edf0f5;}
#menu li i{display:inline-block;font-size:16px;margin-right:10px;min-width:22px;}
#menu li p{position:absolute;top:15px;right:10px;font-size:12px;margin:0;}
#menu > li.selected{background: #edf0f5;}
#menu li ul li.selected a{background:#edf0f5;}
#menu > li.selected > a{background-color:#ea6c41;font-weight:bold;color:#fff;}


#content{
	position:relative;
	margin-left:230px;
	min-height:450px;
}
.main-content{
	padding:15px 20px 0;
}
.main-content h3.title{
	border-bottom: 1px solid #ccc;
	padding-bottom: 5px;
	margin-bottom: 20px;
}

/* Panel */
.panel-title{
	line-height:1.2em;
	font-weight: bold;
}
.panel-title i{
	padding-right: 10px;
}

.panel-widget{
	position: relative;
	color:#fff;
}
.panel-widget .panel-body i{
	position: absolute;
	right: 0;
	top: 0;
	font-size: 58px;
	padding: 35px 35px 29px;
	margin-top: -20px;
	margin-right: -20px;
	line-height: 1.45;
	color: #fff;
}
.panel-widget h2{
	font-weight: 700;
	font-size: 23px;
	margin: 0;
}
.panel-widget .panel-footer{padding:2px 10px;}
.panel-widget.panel-danger{background-color:#d9534f;border-color:#d9534f;}
.panel-widget.panel-primary{background-color:#2e6da4;border-color:#2e6da4;}
.panel-widget.panel-success{background-color:#4cae4c;border-color:#4cae4c;}
.panel-widget.panel-warning{background-color:#eea236;border-color:#eea236;}


/* Widget */
.widget-box{
	padding: 10px;
	margin-bottom:10px;
	border: 1px solid #E5E5E5;
}
.widget-box h4{
	font-size:14px;
	font-weight: bold;
	border-bottom: 1px solid #E5E5E5;
}
.widget-box div{max-width:100%;}
.widget-box #category { max-height:150px;}
.widget-box #category li{ margin:0;padding:0;line-height:22px;}
.widget-box label{ display:inline-block;}

.invoice-content{padding:5px !important;}
.invoice{font:12px "Courier New", Courier, monospace;line-height:16px;}
.invoice-header{margin-bottom:10px;padding-bottom:10px;border-bottom:1px solid #333;}
.invoice p{margin:0;line-height:16px;}
.tblinvoice {margin:10px 0 20px;border-bottom:1px solid #333;}
.tblinvoice thead{border-top:1px solid #333;border-bottom:1px solid #333;}
.tblinvoice .total{border-top:1px solid #333;}
.tblinvoice td{padding:1px 5px 1px 0;}
.tblinvoice td:last-child{padding-right:0;}
.invoice .transparan td{padding:0}

.table thead th.sorting{cursor:pointer;}
.table thead th.sorting:after{font-family:'FontAwesome';content: "\f0dc";color:#999;position:absolute;right:5px;}
.table thead th.asc:after{content: "\f0de";color:#fff;}
.table thead th.desc:after{content: "\f0dd";color:#fff;}

.total{
	font-size:20px;
}

/* FOOTER */
footer{
	margin-left:230px;border-top:1px solid #ccc;}
footer a{
	color:#2BBBD8;
}

footer > .copyrights {
	background-color:#333;
}
.copyrights-wrapper {
    float: left;
    clear: both;
    width: 100%;
	padding: 20px 0;
}
footer .copyrights .right-menu ul {
	padding: 0px;
	margin: 0px;
	float: right;
}
footer .copyrights .right-menu ul li {
	float: left;
}
footer .right-menu ul li {
	float: left;
	list-style: none;
	margin:0 10px 0 0;
}
footer .copyrights p , footer .right-menu ul li a {
	font-size: 12px;
	color:#717171;
	font-weight: normal;
	line-height: 100%;
	margin:0;
}
footer .right-menu ul li:after {
	content: " / ";
	font-weight: 700;
	font-family: 'Open sans' , sans-serif;
	font-size: 18px;
	margin-left: 10px;
	margin-top: 0px;
	line-height: 100%;
}
footer .right-menu ul li:last-child , footer .right-menu ul ul li  {
	margin-right: 0px !important;
}

footer .right-menu ul li:last-child:after , footer .right-menu ul ul li:last-child:after , footer .right-menu ul ul li:after{
	content: "";
}
footer .right-menu ul ul {
	display: none;
}

/* Not found */
.notfound{
	padding:90px 0;
	text-align:center;
}
.notfound h1{
	font-size:250px;
	color:#999;
	line-height:200px;
}

/* Search */
.search input[type="text"]{
	width:80%;
}
.search input[type="submit"]{
	margin-top:9px;
}


.mn-header{position:relative;display:block;}
.mn-header div{position:absolute;top:0px;font-weight:bold;padding-left: 10px;}
.mn-header .mn-title{position:relative;width:35%;}



.hide{display:none;}
ul.akses ul{margin-top:0;margin-bottom:0;}
ul.akses li{
	margin-bottom:0;
}

#tblbrg thead{font-weight:bold;}
#tblbrg thead th{border-top:2px solid #ddd;}
#tblbrg input[type="text"],
#tblbrg input[type="number"]{
	height: 25px;
	padding: 4px 5px;
}
#tblbrg .text-catatan{
	/* color: #aaa; */
}

/* LIST MENU */
#listmenu{
	min-height: 510px;
}
#listmenu .menuloading{
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,.7);
	text-align: center;
}
#listmenu .menuloading i{
	position: absolute;
	top: 40%;
	font-size: 35px;
	color: #337ab7;
}
#listmenu ul{
	float:left;clear:both;width:100%;
}
#listmenu .product{
	display:block;
	float:left;
	text-align:center;
	width: 24.1%;
	padding: 10px;
	margin-right:4px;
	margin-bottom:4px;
	cursor:pointer;
	box-shadow: 0 2px 5px rgba(0,0,0,.16),0 1px 2px rgba(0,0,0,.12);
}
#listmenu .product:hover{
	background-color: #efefef;
}
#listmenu .product .title{
	font-size: 10px;
	font-weight: bold;
	line-height:1.3em;
	height: 36px;
	text-transform: uppercase;
}
#listmenu .product .price{
	font-size:85%;
	color:#aaa;
	line-height:1.8em;
}

/* .category-menu .category{ */
	/* position: absolute; */
	/* visibility: hidden; */
	/* display: none; */
/* } */
.category-menu .category {
	color: #333;
	font-weight: bold;
	display: inline-block;
	cursor: pointer;
	padding: 7px 5px;
	width: 100%;
	border: 1px solid #ccc;
	margin-bottom: 3px;
	border-radius: 2px;
	text-align: center;
}
.category-menu .category:hover,
.category-menu .category.selected,
.category-menu .category:checked + label{
	background: #e6e6e6;
}


/* List produk */
#listproduct{
	float:left;clear:both;width:100%;
}
#listproduct .product{
	display:block;
	float:left;
	text-align:center;
	width: 32.5%;
	height: 64px;
	padding: 10px;
	margin-right:4px;
	margin-bottom:4px;
	cursor:pointer;
	box-shadow: 0 2px 5px rgba(0,0,0,.16),0 1px 2px rgba(0,0,0,.12);
}
#listproduct .product:hover{
	background-color: #efefef;
}
#listproduct .product .title{
	font-weight: bold;
	line-height:1.3em;
}
#listproduct .product .price{
	font-size:85%;
	color:#aaa;
	line-height:1.8em;
}

.payment .form-group{
	margin-bottom: 7px;
}

/* LIST MASTER AKUN */
.list-akun{
	position: relative;
	list-style: none;
}
.list-akun li{
	margin-bottom: 10px;
}
.list-akun > li > .detail{
	font-weight: bold;
}
.list-akun .detail{
	padding: 8px;
	line-height: 1.42em;
	vertical-align: top;
	border: 1px solid #ddd;
}
.list-akun .normal{
	position: absolute;
	right: 150px;
}
.list-akun .akun-action{
	position: absolute;
	width: 100px;
	right: 10px;
	text-align: center;
}
.list-akun .detail:hover{
	background-color: #f5f5f5;
}

/* MEJA RESTO */
.container-meja{
	position: relative;
	height: 67px;
	background-color: #dff0d8;
	border: 1px solid #3c763d;
	color: #3c763d;
	margin: 0 auto;
	margin-bottom:10px;
	text-align: center;
	cursor: pointer;
	line-height: 1.3;
}
.container-meja .order{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.container-meja .kursi{
	position: absolute;
	background-color: #3c763d;
}
.container-meja i{
	position: absolute;
	bottom: 10px;
	left: 50%;
	font-size: 24px;
	margin-left: -11px;
}
.kursi.kanan, .kursi.kiri{
	top: 50%;
	width: 5px;
	height: 30px;
	margin-top: -15px;
}
.kursi.atas, .kursi.bawah{
	left: 50%;
	width: 30px;
	height: 5px;
	margin-left: -15px;
}
.kursi.kiri{
	left: -8px;
}
.kursi.kanan{
	right: -8px;
}
.kursi.atas{
	top: -8px;
}
.kursi.bawah{
	bottom: -8px;
}
.container-meja .nomor{
	display: block;
	font-size: 18px;
	margin-top: 5px;
}
.container-meja.aktif{
	background-color: #f2dede;
	border-color: #ebccd1;
	color: #a94442;
}
.container-meja.aktif .kursi{
	background-color: #a94442;
}
.container-meja.gabung:before{
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid #a94442;
	border-radius: 50%;
	transform: scale(0.92);
}
.container-meja .fgabung{
	line-height: 1;
}
.meja{
	position: absolute;
	visibility: hidden;
	display: none;
}
.resto .meja:checked + .container-meja {
  background-color: #007e90;
}

@keyframes blink {
  50% {
    opacity: 0.0;
  }
}
@-webkit-keyframes blink {
  50% {
    opacity: 0.0;
  }
}
.blink {
  animation: blink 1s step-start 0s infinite;
  -webkit-animation: blink 1s step-start 0s infinite;
}

.list-paket{
	margin-left: 20px;
	margin-bottom: 0;
}
.list-paket li{
	margin-bottom: 7px;
	text-indent: -8px;
}
.list-paket li:before{
	content: "-";
	text-indent: -5px;
}
.list-paket li i{
	text-indent: 0;
}

/* -- Css confirm -- */
.question{position: absolute;display:inline;text-align:center;width: 170px;height: 69px;font-size: 12px;font-weight:bold;line-height: 1.5em;background:#333;border:1px solid #333;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;padding:10px 0 0 0;color: #FFF;margin-left: -12em;margin-top: -6.5em;}
.yes, .cancel {margin-top: .5em;	margin-right: .5em;cursor: pointer;display: inline-block;width: 63px;height: 21px;color: #333;font-weight: bold;background: #FFF;background:-moz-linear-gradient(top, #FFF, #DDD);background:-webkit-gradient(linear, left top, left bottom, from(#FFF), to(#DDD));}
.arrow{border: 0.53em dashed transparent;display: -moz-inline-box;display: inline-block;font-size: 10px;position: relative;vertical-align: middle;border-top: 1em solid #333;top: 1em;margin-left:80px;}

/* CSS autocomplete */
/* .autocomplete-suggestions { border: 1px solid #ccc; background: #FFF; overflow: auto; cursor:default;} */
/* .autocomplete-suggestion { padding: 2px 5px; line-height:22px; white-space: nowrap; overflow: hidden; } */
/* .autocomplete-selected { background: #F0F0F0; } */
/* .autocomplete-suggestions strong { font-weight: normal; color: #3399FF; } */

.autocomplete-suggestions { border: 1px solid #999; background: #FFF; overflow: auto; }
.autocomplete-suggestion {font-size: 14px; font-weight: bold; padding: 4px 5px; white-space: nowrap; overflow: hidden; cursor: pointer; }
.autocomplete-selected { background: #F0F0F0; }
.autocomplete-suggestions strong { color: #3399FF; }
.autocomplete-group { padding: 2px 5px; }
.autocomplete-group strong { display: block; border-bottom: 1px solid #000; }

/* OVERRIDE BOOTSTRAP */
.btn{
	text-align: center;
	border-radius: 2px;
	box-shadow: 0 2px 5px rgba(0,0,0,.16),0 1px 2px rgba(0,0,0,.12);
}
.btn.btn-primary{color:#fff;background-color:#337ab7;border:1px solid #2e6da4;}
.btn.btn-primary:hover{background-color:#286090;}
.btn.btn-danger{color:#fff;background-color:#d43f3a;border:1px solid #d43f3a;}
.btn.btn-danger:hover{background-color:#c9302c;}
.btn.btn-warning{color:#fff;background-color:#f0ad4e;border:1px solid #eea236;}
.btn.btn-warning:hover{background-color:#ec971f;}
#form_penjualan .btn{
	margin-bottom: 10px;
}
.btn-qty{
	box-shadow: none;
	height: 25px;
	width: 33px;
	line-height: 1;
	padding: 4px 0;
	border-radius: 0 !important;
}
.btn-nominal{
	margin-bottom: 8px;
}

.alert{
	padding-top: 5px;
	padding-bottom: 5px;
}
.alert-fixed{
	position: fixed;
	top: 10px;
	right: 10px;
	width: 300px;
	color: #fff;
	border-radius: 2px;
	border: none;
	padding-top: 15px;
	padding-bottom: 15px;
	z-index: 2001;
}
.alert-dismissible .close{
	color: #fff;
	opacity: 1;
	border: none;
	text-shadow: none;
	margin:0;
}
.alert-dismissible .close:hover{
	background-color: transparent;
	color: #efefef;
}
.alert-fixed.alert-success{background-color: #78b83e;}
.alert-fixed.alert-danger{background-color: #d9534f;}
.alert-fixed.alert-warning{background-color: #f0ad4e;}

.dropdown-menu{
	border-radius:2px;
}
ul.dropdown-menu li{
	font-size: 13px;
	margin-bottom: 0;
}

.modal-dialog .modal-content{
	border-radius:2px;
}
.well{
	box-shadow: none;
	border-radius: 2px;
}
.table thead{
	font-weight:bold;
	background-color:#efefef;
}
.breadcrumb{
	border-radius: 0;
	margin-left: 0;
	margin-bottom: 10px;
	line-height: 1em;
	background-color: transparent;
}
.breadcrumb li{
	margin: 0;
}
.input-group  input{
	height: 34px;
}
.input-group .btn{
	margin-right: 0;
}
.input-group .form-control{
	font-size: inherit;
}
.no-padding-left{
	padding-left: 0;
}
.no-padding-right{
	padding-right: 0;
}
.checkbox label{
	line-height: 1.5em;
}

/* nav tabs */
.nav-tabs li a {
    border-radius: 0;
    margin-right: 7px;
	font-weight: bold;
}
.nav-tabs > li > a {
    background-color: #f7f7f7;
}

/* list */
.list-style li::before {
    font-family: 'FontAwesome';
    content: '\f105';
    font-size: 14px;
    margin-right: 10px;
    color: #818181;
    float: left;
    -webkit-transition: color: 0.4s;
       -moz-transition: color: 0.4s;
			transition: color 0.4s;
}

/* loader spinner */
#loader{
	display:none;	
}
.spinner {
	position: fixed;
	z-index: 9999999;
	top: 0;
	bottom: 0;
	margin: 0 auto;
	width: 100%;
	height: 100%;
	text-align: center;
	font-size: 10px;
	background-color:rgba(255, 255, 255, 0.4);
}
.spinner > div {
	background-color: #337ab7;
	height: 200px;
	width: 6px;
	/* width: 18px; */
	/* height: 18px; */
	
	margin-top: 20px;
	margin-right: 5px;
	display: inline-block;
	/* border-radius: 100%; */

	-webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
			animation: sk-stretchdelay 1.2s infinite ease-in-out;
}
.spinner .rect2 {
	-webkit-animation-delay: -1.1s;
			animation-delay: -1.1s;
}
.spinner .rect3 {
	-webkit-animation-delay: -1.0s;
			animation-delay: -1.0s;
}
.spinner .rect4 {
	-webkit-animation-delay: -0.9s;
			animation-delay: -0.9s;
}
.spinner .rect5 {
	-webkit-animation-delay: -0.8s;
			animation-delay: -0.8s;
}
@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.2) }  
  20% { -webkit-transform: scaleY(1.0) }
}
@keyframes sk-stretchdelay {
  0%, 40%, 100% { 
    transform: scaleY(0.2);
    -webkit-transform: scaleY(0.2);
  }  20% { 
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

#lockscreen{
	display:none;
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	bottom:0;
	background-color: rgba(0,0,0,0.8);
	z-index:10001;
}

/* -------------------------------------------------------------- 
   Responsive
  -------------------------------------------------------------- */
@media (max-width: 1280px){
	
}

@media (min-width: 990px) and (max-width: 1200px) {
	#listmenu .product{
		width:31%;
	}
}
@media (min-width: 768px) and (max-width: 979px) {

}

@media (min-width: 768px) {
	
	/* menu collapse */
	.menu-collapse{
		position: relative;
	}
	.menu-collapse #navigation{
		position: absolute;
		width: 55px;
		height: 100%;
		top: 0;
		bottom: 0;
		z-index: 5;
		padding-bottom: 0;
	}
	.menu-collapse .slimScrollDiv,
	.menu-collapse .slimscroll{overflow:visible !important;}
	.menu-collapse .brand{
		background-image:url(../images/inopos-collapse.png);
		background-size: 80%;
		background-position: 50% 80%;
	}

	.menu-collapse #menu li span,
	.menu-collapse #menu li p{	display:none;}
	.menu-collapse #menu li i{font-size:18px;}
	.menu-collapse #menu li ul{position:absolute;top:0;left:100%;background-color:#fff;box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);visibility:visible;}
	.menu-collapse #menu li ul li a{width:200px;padding-left:10px;}
	.menu-collapse #menu li:hover ul{display:block !important;}

	.menu-collapse .top-nav,
	.menu-collapse #content{ margin-left:55px;}
	.menu-collapse footer{ margin-left:55px;}
}
@media (max-width: 767px) {
	#listmenu .product{
		width:47%;
	}
	.category-menu label{
		width: 48%;
	}
	.datetime{
		display: none;
	}
	header{
		position:fixed !important;
		height:auto !important;
		width:100%;
		right:0;
		z-index:999;
	}
	input[type="text"],
	input[type="password"],
	input[type="email"],
	textarea,
	select{ width:100%;margin-bottom:5px;}
	
	fieldset .field .control-label{ float: none;display:block;width:100%; }
	fieldset .field .input { margin-left:0;}
	
	.w5p, .w10p, .w15p, .w20p, .w25p, .w30p, .w35p,
	.w40p, .w45p, .w50p, .w55p, .w60p, .w65p, .w70p,
	.w75p, .w80p, .w85p, .w90p,.w95p{width:100% !important}
	
	.overlay {
		display: none;
		position: fixed;
		left: 0px;
		top: 0px;
		width: 100%;
		height: 100%;
		z-index: 999;
		background-color: rgba(0,0,0,.6);
	}
	
	#navigation{
		border-right:1px solid #ddd;
		margin-left:-230px;
		-webkit-transition: all .2s ease-in-out;
		  -moz-transition: all .2s ease-in-out;
			transition: all .2s ease-in-out;
	}
	.menu-collapse #navigation{margin-left:0;}
	.menu-collapse .overlay{display:block;}
	
	.top-nav #toggle-collapse {visibility:visible;}
	.top-nav, #content{margin-left: 0 !important;}
	#content{margin-top:40px;}
	#toggle-close{display:block;}
	
	.jqmWindow{width:100%;}
	
	.profil .profil-title{display:none;}
	
	
}


@media (min-width: 1200px) {
	
}

@media (max-width: 640px) {
	
}

@media (max-width: 480px){

}

@media (max-width: 979px) {
	
}

@media (min-width: 980px) {
 
}