/**
 * site.css
 * Base styles, feel free to replace with your own and/or use the boilerplate of your choice
 */

html {

	overflow-y: scroll;
	font-size: 1em;
}

body {

	font-family: 'Open Sans', Arial, Helvetica;
	font-size: 14px;
	background: #FFFFFF;
	color: #222222;
	/* flex */
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}

h1, h2, h3, h4 {

	font-family: 'Raleway', Arial, Helvetica;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 5px;
}

h1 { font-size: 2.074em; }
h2 { font-size: 1.728em; }
h3 { font-size: 1.440em; }
h4 { font-size: 1.200em; }

.mfp-dialog {

	position: relative;
	background: #FFF;
	padding: 20px;
	width: auto;
	max-width: 80%;
	margin: 20px auto;
}

@media (min-width: 768px) {

	.mfp-dialog {

		max-width: 640px;
	}
}

.alert-overlay .alert {

	border-radius: 0;
}

.alert-overlay .alert .alert-buttons {

	background: #FFFFFF;
}

.button,
.form-group .form-control {

	border-radius: 0;
}

.button.button-primary {

	background-color: #25509C;
	border-color: #25509C;
	color: #FFFFFF;
}

.button.button-primary:hover {

	background-color: #2B5FBB;
	border-color: #2B5FBB;
	color: #FFFFFF;
}


.button.button-secondary {

	background-color: #DC291D;
	border-color: #DC291D;
	color: #FFFFFF;
}

.button.button-secondary:hover {

	background-color: #E54E44;
	border-color: #E54E44;
	color: #FFFFFF;
}

.button.button-margin {

	margin-bottom: 10px;
}

.form-group .form-control {

	background: #FAFAFA;
	color: #222222;
	border: none;
	border-bottom: 2px solid #DDDDDD;
	/* transition */
	-webkit-transition: all 350ms;
	-o-transition: all 350ms;
	transition: all 350ms;
	/* Remove webkit autofill background */
	-webkit-box-shadow: 0 0 0px 1000px #FAFAFA inset;
}

.form-group .form-control:hover,
.form-group .form-control:focus {

	border-bottom: 2px solid #25509C;
}

.form-group .form-control:active,
.form-group .form-control:focus {

	outline: none;
}

.form-group .input-uppercase {

	text-transform: uppercase;
}

.message {

	border-radius: 0;
}

.message.message-success {

	background: #FFFFFF;
	border-left: 5px solid #7AD03A;
	color: #333333;
}

.message.message-error {

	background: #FFFFFF;
	border-left: 5px solid #DD3D36;
	color: #333333;
}

.message.message-warning {

	background: #FFFFFF;
	border-left: 5px solid #FFBA00;
	color: #333333;
}

.message.message-info {

	background: #FFFFFF;
	border-left: 5px solid #009ED5;
	color: #333333;
}

.link-overlay {

	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.content-card {

	/*padding: 15px 20px;*/
	background: #FFFFFF;
	margin-bottom: 15px;
}

ul.tab-list {

	list-style: none;
	border-bottom: 1px solid #EEE;
	margin: 0;
}

ul.tab-list:after {

	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

ul.tab-list li {

	position: relative;
	top: 1px;
	margin: 0;
}

ul.tab-list li a {

	display: block;
	padding: 10px 15px;
	border: 1px solid #EEE;
	border-bottom-color: transparent;
	text-decoration: none;
}

ul.tab-list li a:hover {

	text-decoration: none;
}

ul.tab-list li.selected a {

	color: #656565;
}

@media (min-width: 768px) {

	ul.tab-list li {

		display: inline-block;
		*display: inline;
		*zoom: 1;
	}

	ul.tab-list li:not(:first-child) {

		margin-left: 2px;
	}

	ul.tab-list li.selected a {

		background: #FFF;
		border-bottom-color: #FFF;
	}
}

.tabs .tab {

	display: none;
	padding: 5px 0;
}

.tabs .tab.on {

	display: block;
}

ul.item-list {

	list-style: none;
	margin: 0 0 15px;
}

ul.item-list li {

	display: block;
	padding: 10px 15px;
	margin: 0;
}

ul.item-list li:not(:last-child) {

	border-bottom: 1px solid #EEE;
}

.table > tbody > tr > td.has-table {

	padding: 0;
}

.table td.cell-center,
.table th.cell-center {

	text-align: center !important;
}

.table th.border-right { border-right: 1px solid #CCC; }
.table td.border-right { border-right: 1px solid #CCC; }

.table > tbody > tr[data-toggle="row"] {

	cursor: pointer;
}

.table > tbody > tr[data-toggle="row"]:hover {

	background: #FAFAFA;
}

.table > tbody > tr > td > .table {

	margin-bottom: 0;
	border-bottom: none;
	background: rgba(235, 235, 235, 0.5);
	display: none;
}

.table > tbody > tr.selected > td > .table {

	display: table;
}

.table > tbody > tr > td > .table > tbody > tr:last-child {

	border-bottom: none;
}

.site-header {

	background: #DC291D;
	color: #FFFFFF;
	border-bottom: 8px solid #BB2218;
}

.site-footer {

	background: #454545;
	color: #FFFFFF;
}

.site-footer .copyright {

	font-size: 11px;
	text-transform: uppercase;
	padding-right: 36px;
	/* opacity */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=50);
	opacity: 0.50;
}

.site-footer .hb3-badge {

	position: relative;
	float: right;
	z-index: 1;
	/* opacity */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=50);
	opacity: 0.5;
	/* transition */
	-webkit-transition: all 350ms;
	-o-transition: all 350ms;
	transition: all 350ms;
}

.site-footer .hb3-badge:hover {

	/* opacity */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	opacity: 1;
}

.section {

	flex: 1;
}

.section .section-title {

	font-size: 3em;
	margin-bottom: 0;
	color: #DC291D;
}

.page-dashboard .dashboard-action {

	margin-bottom: 10px;
	padding: 15px 15px 15px;
	background: #25509C;
	color: #FFFFFF;
	/* transition */
	-webkit-transition: all 350ms;
	-o-transition: all 350ms;
	transition: all 350ms;
}

.page-dashboard .dashboard-action:hover {

	background: #2B5FBB;
}

.page-dashboard .dashboard-action.action-secondary {

	background: #DC291D;
}

.page-dashboard .dashboard-action.action-secondary:hover {

	background: #E54E44;
}

.page-dashboard .dashboard-action .action-icon {

	position: absolute;
	right: 15px;
	top: 15px;
	font-size: 21px;
}

.page-dashboard .dashboard-action .action-title {

	font-family: 'Raleway', Arial, Helvetica;
	font-size: 1.75em;
	margin-bottom: 3px;
}

.page-dashboard .dashboard-action .action-description {

	/* opacity */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=50);
	opacity: 0.50;
}

.page-stats canvas {

	max-width: 100%;
	height: auto;
	margin-bottom: 15px;
}

.page-balance-detalle .box > h2 {

	font-weight: 300;
}

.page-balance-detalle .box > p:last-child {

	margin-bottom: 0;
}

.page-balance-detalle .data-label {

	display: block;
	text-transform: uppercase;
	margin-bottom: 4px;
	font-size: 12px;
}

.page-balance-detalle .data-value {

	display: block;
}

.chart-color {

	display: inline-block;
	width: 10px;
	height: 10px;
	margin-right: 20px;
	vertical-align: middle;
}

ul.pagination {

	overflow: hidden;
	text-align: right;
	list-style: none;
	margin-bottom: 15px;
}

ul.pagination > li {

	list-style: none;
	display: inline-block;
	*display: inline;
	*zoom: 1;
}

ul.pagination > li > a {

	display: block;
	padding: 4px 8px;
	margin: 0 1px;
	text-decoration: none;
	color: #DC291D;
}

ul.pagination > li > a:hover {

	text-decoration: none;
}

ul.pagination > li.active > a {

	background: #DC291D;
	color: #FFFFFF;
}

ul.pagination > li.disabled > a {

	color: #999999;
}

.comanda {

	margin-bottom: 15px;
	border: 1px solid #DDDDDD;
}

.comanda .item-comanda {

	padding: 15px;
	cursor: default;
	/* transition */
	-webkit-transition: all 350ms;
	-o-transition: all 350ms;
	transition: all 350ms;
}

.comanda .item-comanda:hover {

	background: #FAFAFA;
}

.comanda .item-comanda h4 {

	margin-bottom: 4px;
}

.comanda .item-comanda p {

	margin-bottom: 4px;
}

.comanda .item-comanda:not(:last-child) {

	border-bottom: 1px solid #EEEEEE;
}

.comanda .item-comanda *:last-child {

	margin-bottom: 0;
}