/* HTML, BODY */
html,
body
{
	width: 100vw;
    height: 100vh;
	margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 100%;
    color: #575757;
    background: #f1f1f1;
    overflow: hidden;
}

@media all and (max-width: 600px)
{
	html,
	body
	{
		height: auto;
		min-height: 100%;
		margin: 0;
		padding: 0;
		overflow: auto;
	}
}

/* ELEMENTS */
*
{
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a
{
	text-decoration: none;
	color: #0075a2;
	outline: 0;
	transition: color 0.2s linear, background-color 0.2s linear, border-color 0.2s linear;
}

a:hover
{
	color: #00a0d3;
}

h2
{
	float: left;
	line-height: 40px;
	margin: 15px 0;
	padding: 0;
	font-size: 1.4em;
	font-weight: normal;
	color: #222;
}

@media all and (max-width: 600px)
{
	h2
	{
		float: none;
		line-height: 20px;
	}
}

h2 i.fa
{
	margin-right: 7px;
}

h3
{
	line-height: 40px;
	margin: 15px 0;
	padding: 15px 0 0 0;
	font-size: 1em;
	font-weight: bold;
	text-transform: uppercase;
	color: #575757;
	border-top: 1px solid #dfdfdf;
}

h3 i.fa
{
	margin-right: 4px;
	font-weight: normal;
}

p
{
	margin: 0;
	padding: 5px 0;
	font-size: .8em;
}

hr
{
	margin: 0 0 10px 0;
	border: #e7e7e7 solid;
	border-width: 0 0 1px 0;
}

ul
{
	margin: 0;
	padding: 0 0 0 25px;
}

li
{
	padding: 5px 0;
	font-size: .8em;
	line-height: 1.5;
}

ul li
{
	list-style: square;
}

li li
{
	font-size: 1em;
}

table
{
	margin: 0;
	padding: 0;
	width: 100%;
	border: 1px solid #e5e5e5;
}

table th
{
	padding: 15px 10px;
	font-size: .8em;
	text-align: left;
	background: #fff;
	border-bottom: 1px solid #e1e1e1;
}

table td
{
	padding: 15px 10px;
	font-size: .8em;
	text-align: left;
}

table tbody td
{
	transition: background-color 0.2s linear;
}

table tr:nth-child(2n+1) td
{
	background: #f9f9f9;
}

table tr:nth-child(2n) td
{
	background: #fff;
}

table tbody tr:hover td,
table tbody tr.selected td
{
	background: #e5e5e5;
}

table tfoot tr td
{
	border-top: 1px solid #e5e5e5;
	font-weight: bold;
}

/* CLASSES */
.color-primary
{
	color: #fff;
	border-color: #2e6da4;
	background-color: #337ab7;
	transition: border-color 0.2s linear, background-color 0.2s linear;
}

.color-primary:hover
{
	border-color: #204d74;
	background-color: #286090;
}

.color-success
{
	color: #fff;
	border-color: #4cae4c;
	background-color: #5cb85c;
	transition: border-color 0.2s linear, background-color 0.2s linear;
}

.color-success:hover
{
	border-color: #398439;
	background-color: #449d44;
}

.color-info
{
	color: #fff;
	border-color: #46b8da;
	background-color: #5bc0de;
	transition: border-color 0.2s linear, background-color 0.2s linear;
}

.color-info:hover
{
	border-color: #269abc;
	background-color: #31b0d5;
}

.color-warning
{
	color: #fff;
	border-color: #eea236;
	background-color: #f0ad4e;
	transition: border-color 0.2s linear, background-color 0.2s linear;
}

.color-warning:hover
{
	border-color: #d58512;
	background-color: #ec971f;
}

.color-error
{
	color: #fff;
	border-color: #d43f3a;
	background-color: #d9534f;
	transition: border-color 0.2s linear, background-color 0.2s linear;
}

.color-error:hover
{
	border-color: #ac2925;
	background-color: #c9302c;
}

.font-smaller
{
	font-size: .8em !important;
}

.font-bigger
{
	font-size: 1.1em !important;
}

.message-wrap
{
	margin-top: 10px;
	margin-bottom: 15px;
}

.message-wrap .message
{
	margin: 0 0 10px 0;
	padding: 15px 20px;
	border-style: solid;
	border-width: 1px 1px 3px 1px;
	border-radius: 4px;
}

.message a
{
	color: #fff;
	text-decoration: underline;
}

.align-center
{
	text-align: center;
}

.align-right
{
	text-align: right;
}

.ruler
{
	clear: both;
}

.hidden
{
	display: none;
}

.float-left
{
	float: left;
}

.float-right
{
	float: right;
}

.list-icon
{
	color: #dfdfdf;
}

/* FORMS */
form,
fieldset
{
	margin: 0;
	padding: 0;
	border: none;
}

input,
select,
button,
textarea
{
	margin: 0;
	padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #575757;
    background: transparent;
	outline: 0;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
textarea,
select
{
	padding: 10px 15px;
	font-size: .8em;
	line-height: 1.5em;
	background: #fff;
	border: 1px solid #dfdfdf;
	border-radius: 0;
	transition: border-color 0.2s linear, box-shadow 0.2s linear;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
textarea
{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select
{
	padding: 5px 15px;
}

@media all and (max-width: 600px)
{
	select
	{
		width: 100%;
	}
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
textarea
{
	width: calc(100% - 32px);
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="password"]:hover,
input[type="number"]:hover,
input[type="date"]:hover,
textarea:hover,
select:hover
{
	border-color: #0075a2;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus
{
	border-color: #0075a2;
	box-shadow: 0 0 0 2px #78dcfa;
}

button
{
	margin: 0;
	padding: 10px 15px;
	border-style: solid;
	border-width: 1px 1px 3px 1px;
	border-radius: 4px;
	border-color: #dfdfdf;
	font-size: .9em;
	cursor: pointer;
}

button i.fa
{
	margin-right: 7px;
	font-size: 1.2em;
	vertical-align: -1px;
}

button.content-heading-button
{
	float: right;
	margin-top: 15px;
}

@media all and (max-width: 600px)
{
	button.content-heading-button
	{
		float: none;
		margin-top: 0;
	}
}


input[type="checkbox"],
input[type="radio"]
{
	opacity: 0;
	position: absolute;
}

input[type="checkbox"],
input[type="checkbox"] + label,
input[type="radio"],
input[type="radio"] + label
{
	display: inline-block;
	vertical-align: middle;
	margin: 0;
	cursor: pointer;
}

input[type="checkbox"] + label,
input[type="radio"] + label
{
	position: relative;
	line-height: 20px;
	padding-left: 24px;
	font-weight: bold;
	font-size: .8em;
	color: #222;
}

input[type="checkbox"] + label:before,
input[type="radio"] + label:before
{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	background: #fff;
	border: 1px solid #dfdfdf;
	width: 16px;
	height: 16px;
	text-align: center;
	transition: background-color 0.2s linear, border-color 0.2s linear;
}

input[type="checkbox"] + label:hover:before
{
	border-color: #0075a2;
}

input[type="checkbox"]:checked + label:before,
input[type="checkbox"]:checked + label:hover:before
{
	background: #0075a2;
	box-shadow: inset 0px 0px 0px 3px #fff;
}

input[type="radio"] + label:before
{
	border-radius: 50%;
}

input[type="radio"] + label:hover:before
{
	border-color: #0075a2;
}

input[type="radio"]:checked + label:before,
input[type="radio"]:checked + label:hover:before
{
	background: #0075a2;
	box-shadow: inset 0px 0px 0px 4px #fff;
}

input[type="checkbox"]:focus + label,
input[type="radio"]:focus + label
{
	outline: 0;
}

.form-row
{
	margin-bottom: 25px;
}

.form-row label
{
	cursor: pointer;
}

.form-row span
{
	display: block;
	padding-bottom: 4px;
	font-weight: bold;
	font-size: .8em;
	color: #222;
}

.form-radio-row,
.form-checkbox-row
{
	margin: 0 0 5px 0 !important;
}

.form-radio-row label,
.form-checkbox-row label
{
	font-weight: normal !important;
}

.form-item
{
	width: calc(100% - 2px);
}

.form-item-date,
.form-item-time
{
	max-width: 100px;
	text-align: center;
}

.form-item-price
{
	max-width: 150px;
	text-align: left;
}

.form-spacer
{
	clear: both;
	height: 25px;
}

.form-block
{
	float: left;
	padding-right: 10px;
}

.form-block-ruler
{
	clear: left;
}

.article-editor
{
	resize: none;
	overflow: hidden;
	font-family: "Courier New", courier, monospace;
	font-size: .85em;
	line-height: 20px;
	transition: height 0.25s linear;
}

.article-editor-buttons
{
	padding-top: 10px;
}

.article-editor-buttons button
{
	margin-right: 10px;
	margin-bottom: 10px;
}

.fieldset-block-wrap
{
	background: #fff;
	border: 1px solid #e5e5e5;
}

.fieldset-block-content
{
	margin: 15px 15px -10px 15px;
}

.fieldset-block-spacer
{
	height: 10px;
}

.common-block-wrap
{
	background: #fff;
	border: 1px solid #e5e5e5;
}

.common-block-content
{
	margin: 15px;
}

.common-block-spacer
{
	height: 10px;
}

.form-main
{
	float: left;
	width: calc(100% - 325px);
}

.form-aside
{
	float: right;
	width: 300px;
}

@media all and (max-width: 600px)
{
	.form-main,
	.form-aside
	{
		float: none;
		width: 100%;
	}
}


/* LIST */
table.list
{
	margin-bottom: 10px;
}

table.list th span.sort
{
	display: block;
	padding-top: 3px;
}

table.list th span.sort a.selected
{
	color: #000;
}

table.list th span.sort a:nth-child(1)
{
	margin-right: 5px;
}

table.list .list-checkbox
{
	width: 40px;
	text-align: center;
}

table.list .list-checkbox input[type="checkbox"] + label:before,
table.list .list-checkbox input[type="radio"] + label:before
{
	top: -11px;
}

table.list .mobile-icon
{
	display: none;
}

table.list .icon
{
	width: 40px;
	padding: 0;
	text-align: center;
}

table.list i.fa
{
	font-size: 1.2em;
}

@media all and (max-width: 600px)
{
	table.list,
	table.list thead,
	table.list tbody,
	table.list tfoot,
	table.list tr,
	table.list th,
	table.list td
	{
		display: block;
		margin: 0;
		padding: 0;
		border: none;
	}

	table.list .list-checkbox
	{
		display: none;
	}

	table.list thead
	{
		display: none;
	}

	table.list thead.visible
	{
		display: block;
	}

	table.list tr
	{
		clear: both;
		margin-bottom: 10px;
		padding: 5px;
		background: #fff;
		border: 1px solid #e5e5e5;
	}

	table.list thead tr th.mobile-ruler,
	table.list thead tr th.icon
	{
		display: none;
	}
	
	table.list thead tr th.mobile-sort
	{
		padding: 5px;
		background: transparent;
		border: none;
		text-align: left;
	}

	table.list thead tr th.mobile-sort span
	{
		display: inline-block;
		margin-left: 10px;
	}

	table.list thead tr th.mobile-sort span i.fa
	{
		display: inline-block;
		padding: 7px 8px;
		border: solid #e5e5e5;
		border-width: 1px 1px 3px 1px;
		border-radius: 3px;
	}

	table.list tr td
	{
		padding: 5px;
		background: #fff;
		border: none;
	}

	table.list tr.selected td
	{
		background: #fff;
	}
	
	table.list td.mobile-left
	{
		float: left;
		padding-right: 10px;
	}
	
	table.list td.mobile-ruler
	{
		clear: both;
		border: none;
	}

	table.list td.list-icon
	{
		display: inline-block;
		width: 24px;
		height: 24px;
		line-height: 24px;
		font-size: 1em;
	}

	table.list .mobile-icon
	{
		display: inline-block;
		margin-right: 5px;
		vertical-align: -1px;
	}
}

/* DATA LIST */
.data-list
{
	min-width: 1350px;
	overflow-x: auto;
}

.data-list table th,
.data-list table td
{
	padding-left: 5px;
	padding-right: 5px;
	font-size: 0.7em;
}

.data-list table .nowrap
{
	white-space: nowrap;
}


/* GLOBAL FILTER */
.gfilter
{
	overflow: hidden;
	height: 0;
	background: #fff;
	border: 0;
}

.gfilter.visible
{
	height: auto;
	margin-bottom: 15px;
	border: 1px solid #e5e5e5;
}

.gfilter fieldset
{
	position: relative;
	float: left;
	width: calc(50% - 40px);
	padding: 60px 20px 20px 20px;
}

.gfilter fieldset legend
{
	position: absolute;
	left: 20px;
	top: 20px;
	font-size: .9em;
	font-weight: bold;
	text-transform: uppercase;
}

.gfilter fieldset legend span
{
	vertical-align: 1px;
	font-size: .9em;
	font-weight: normal;
	text-transform: lowercase;
}

.gfilter .form-row.shop-master label
{
	color: #398439;
}

.gfilter .form-row.shop-inactive label
{
	font-weight: normal;
	color: #999;
	text-decoration: line-through;
}

.gfilter fieldset:nth-child(1) .form-row
{
	margin: 0 0 10px 0;
}

.gfilter .form-submit-row
{
	clear: left;
	margin: 0;
	padding: 0 20px 20px 20px;
}


/* QUICK FILTER */
div.quick-filter
{
	float: left;
	width: calc(100% - 440px);
	height: 34px;
	margin-bottom: 10px;
}

div.quick-filter ul
{
	margin: 0;
	padding: 10px 0;
}

div.quick-filter ul li
{
	list-style: none;
	float: left;
	height: 14px;
	line-height: 14px;
	margin: 0 0 0 10px;
	padding: 0 0 0 10px;
	border-left: 1px solid #666;
}

div.quick-filter ul li:nth-child(1)
{
	margin-left: 0;
	padding-left: 0;
	border-left: 0;
}

div.quick-filter ul li a.selected
{
	color: #222;
	font-weight: bold;
	text-decoration: none;
}

@media all and (max-width: 600px)
{
	div.quick-filter
	{
		float: none;
		width: 100%;
		height: auto;
	}

	div.quick-filter ul
	{
		padding: 15px 0;
	}

	div.quick-filter ul li
	{
		height: auto;
		line-height: 20px;
		margin-left: 0;
		margin-right: 15px;
		padding-left: 0;
		border-left: 0;
	}
}

/* SEARCH */
div.search
{
	float: right;
	position: relative;
	width: 440px;
	height: 34px;
	line-height: 34px;
	margin-bottom: 10px;
	white-space: nowrap;
	text-align: right;
}

div.search input[type="text"]
{
	position: absolute;
	left: 0;
	top: 0;
	width: 300px;
	height: 32px;
	padding-top: 0;
	padding-bottom: 0;
}

div.search button.apply-search
{
	position: absolute;
	right: 0;
	top: 0;
	width: 100px;
	height: 34px;
	padding: 0;
	font-size: .8em;
	color: #0075a2;
	background: #fff;
	transition: color 0.2s linear, background-color 0.2s linear, border-color 0.2s linear;
}

div.search button.apply-search:hover
{
	color: #00a0d3;
}

div.search button.clear-search
{
	position: absolute;
	right: 109px;
	top: 1px;
	width: 32px;
	height: 32px;
	padding: 0;
	font-size: .8em;
	color: #c00;
	background: rgba(255, 255, 255, 0.9);
	border: 0;
	border-radius: 0;
	text-align: center;
	transition: color 0.2s linear, background-color 0.2s linear, border-color 0.2s linear;
}

div.search button.clear-search:hover
{
	color: #f00;
}

div.search button.clear-search i.fa
{
	margin-right: 0;
}

@media all and (max-width: 600px)
{
	div.search
	{
		clear: both;
		float: none;
		position: relative;
		width: 100%;
		height: 50px;
		line-height: 34px;
	}

	div.search input[type="text"]
	{
		top: 10px;
		width: calc(100% - 150px);
	}
	
	div.search button.apply-search
	{
		top: 10px;
	}

	div.search button.clear-search
	{
		top: 11px;
		right: 119px;
	}
}

/* FUNCTIONS/GROUP ACTIONS/SWITCH VIEW */
div.list-functions,
div.group-actions,
div.switch-view
{
	float: left;
	height: 34px;
	line-height: 34px;
	margin-bottom: 10px;
	margin-right: 10px;
	font-size: .8em;
}

div.group-actions select,
div.switch-view select
{
	height: 33px;
	padding: 0 10px;
	font-size: 1em;
}

div.group-actions button,
div.switch-view button
{
	height: 34px;
	padding: 0 15px;
	font-size: 1em;
	transition: color 0.2s linear, background-color 0.2s linear, border-color 0.2s linear;
	vertical-align: 0;
	cursor: not-allowed;
}

div.group-actions button.active,
div.switch-view button.active
{
	color: #0075a2;
	background: #fff;
	cursor: pointer;
}

div.group-actions button:hover,
div.switch-view button:hover
{
	color: #00a0d3;
}

@media all and (max-width: 600px)
{
	div.group-actions
	{
		display: none;
	}

	div.switch-view
	{
		float: none;
		width: 100%;
		text-align: center;
	}
}

/* PAGING */
div.paging
{
	float: right;
	width: 440px;
	height: 34px;
	line-height: 34px;
	margin-bottom: 10px;
	white-space: nowrap;
	text-align: right;
}

div.paging span.items
{
	float: left;
	font-size: .8em;
	margin-right: 5px;
}

div.paging button
{
	width: 34px;
	height: 34px;
	vertical-align: 1px;
	padding: 5px 0;
	text-align: center;
	transition: color 0.2s linear, background-color 0.2s linear, border-color 0.2s linear;
}

div.paging button.active
{
	color: #0075a2;
	background: #fff;
}

div.paging button.active:hover
{
	color: #00a0d3;
}

div.paging button.inactive
{
	background: #f1f1f1;
	cursor: not-allowed;
}

div.paging button i.fa
{
	margin-right: 0;
}

div.paging span.pages
{
	margin: 0 5px;
	font-size: .8em;
}

div.paging span.pages input
{
	width: 44px;
	height: 32px;
	margin: 0;
	padding: 0 5px;
	font-size: 1em;
	text-align: center;
}

p.toggle-sort
{
	display: none;
}

@media all and (max-width: 600px)
{
	div.paging
	{
		float: none;
		width: 100%;
		height: auto;
		line-height: 25px;
		text-align: center;
	}
	
	div.paging span.items
	{
		display: block;
		float: none;
		margin-right: 0;
	}

	div.paging span.pages input
	{
		width: 28px;
	}

	p.toggle-sort
	{
		display: block;
		padding: 10px 0 5px 0;
		font-size: .8em;
	}
}

/* HEADER */
header
{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 40px;
	background: #222;
	z-index: 1000;
	overflow: hidden;
}

header .toggle-nav
{
	display: none;
	width: 50px;
	height: 50px;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 2em;
}

header .toggle-nav.active
{
	color: #00a0d3;
	font-size: 1.5em;
}

header h1
{
	position: absolute;
	left: 0;
	top: 0;
	height: 40px;
	line-height: 36px;
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	font-size: 1.2em;
	font-weight: bold;
	color: #fff;
}

header h1 img
{
	max-height: 40px;
}

header ul
{
	position: absolute;
	right: 0;
	top: 0;
	height: 40px;
	margin: 0;
	padding: 0;
}

header ul li
{
	list-style: none;
	float: left;
	height: 40px;
	line-height: 40px;
	margin: 0 20px 0 0;
	padding: 0;
	font-size: .8em;
	color: #fff;
}

header ul li a
{
	color: #fff;
	text-decoration: none;
}

header ul li a:hover
{
	color: #fff;
	text-decoration: underline;
}

header ul li i.fa
{
	margin-right: 5px;
	color: #929292;
	font-size: 1.2em;
}

@media all and (max-width: 600px)
{
	header
	{
		position: fixed;
		height: 50px;
	}

	header .toggle-nav
	{
		display: flex;
	}

	header h1
	{
		left: 50px;
		line-height: 48px;
		padding-left: 0;
	}

	header.login h1,
	header.logout h1,
	header.renew-password h1
	{
		left: 10px;
		line-height: 48px;
		padding-left: 0;
	}

	header ul
	{
		height: 50px;
	}

	header ul li
	{
		margin-right: 10px;
		line-height: 50px;
	}

	header ul li:nth-child(1)
	{
		display: none;
	}
}

/* NAV */
nav
{
	position: absolute;
	left: 0;
	top: 40px;
	width: 200px;
	bottom: 0;
	background: #222;
	overflow-x: hidden;
	overflow-y: auto;
}

nav ul
{
	margin: 0;
	padding: 0;
}

nav ul li
{
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: .8em;
}

nav ul li.spacer
{
	height: 15px;
}

nav ul li a
{
	position: relative;
	display: block;
	padding: 5px 10px 5px 35px;
	line-height: 20px;
	color: #fff;
	text-decoration: none;
}

nav ul li a:hover,
nav ul li a.selected
{
	color: #fff;
	background: #0075a2;
}

nav ul li a i.fa
{
	position: absolute;
	left: 5px;
	top: 0;
	width: 25px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	color: #9ea3a8;
	font-size: 1.3em;
	transition: color 0.2s linear;
}

nav ul li a:hover i.fa,
nav ul li a.selected i.fa
{
	color: #fff;
}

@media all and (max-width: 600px)
{
	nav
	{
		display: none;
		position: fixed;
		top: 50px;
		width: 100%;
		bottom: 0;
		overflow: auto;
		z-index: 500;
	}

	nav.visible
	{
		display: block;
	}
	
	nav ul
	{
		padding-bottom: 20px;
	}

	nav ul li a
	{
		padding: 10px 10px 10px 35px;
	}

	nav ul li a i.fa
	{
		height: 40px;
		line-height: 40px;
			
	}
	
}

/* MAIN */
main
{
	position: absolute;
	left: 200px;
	top: 40px;
	right: 0;
	bottom: 40px;
	padding: 0 20px;
	overflow: auto;
}

main div.content
{
	margin-bottom: 15px;
}

@media all and (max-width: 600px)
{
	main
	{
		position: relative;
		left: 0;
		top: 50px;
		bottom: auto;
		padding: 0 10px;
		margin-bottom: 50px;
	}
}

/* FOOTER */
footer
{
	position: absolute;
	left: 200px;
	bottom: 0;
	right: 0;
	height: 40px;
}

footer p
{
	margin: 0;
	padding: 0;
	line-height: 40px;
	text-align: center;
	border-top: 1px solid #e5e5e5;
	font-size: .65em;
}

footer p span
{
	padding: 0 5px;
	white-space: nowrap;
}

@media all and (max-width: 600px)
{
	footer
	{
		position: relative;
		left: 0;
		height: auto;
		min-height: 40px;
	}

	footer p
	{
		padding: 10px;
		line-height: 20px;
	}
}

/* LOGIN/LOGOUT/RENEW PASSWORD */
footer.login,
footer.logout,
footer.renew-password
{
	left: 0;
}

main.login,
main.logout,
main.renew-password
{
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

main.login div.content,
main.logout div.content,
main.renew-password div.content
{
	width: 258px;
	margin: 0;
	padding: 10px 25px 0 25px;
	background: #fff;
	border: 1px solid #e7e7e7;
}

main.login button[type="submit"],
main.logout button[type="submit"],
main.renew-password button[type="submit"],
{
	width: 100%;
	text-align: center;
}

@media all and (max-width: 600px)
{
	main.login,
	main.logout,
	main.renew-password
	{
		position: relative;
		display: block;
		padding: 10px;
	}

	main.login div.content,
	main.logout div.content,
	main.renew-password div.content
	{
		width: calc(100% - 52px);
	}
}

/* USER PERMISSIONS */
.user-permissions p
{
	font-weight: bold;
	font-size: .8em;
	color: #222;
}

.user-permissions p span.group-toggle
{
	display: inline;
	font-weight: normal;
	font-size: 1em;
}

.user-permissions ul
{
	margin: 0;
	padding: 0;
}

.user-permissions ul li
{
	list-style: none;
	margin-top: 2px;
	font-size: 1em;
}

.user-permissions ul li span.group-toggle
{
	display: inline;
	vertical-align: -1px;
	font-weight: normal;
	font-size: .8em;
}

.user-permissions ul li.spacer
{
	margin-top: 10px;
}

.user-permissions ul li label
{
	font-weight: normal;
}

.user-permissions ul li i.fa
{
	display: inline-block;
	width: 22px;
	margin-right: 4px;
	font-size: 1.4em;
	vertical-align: -1px;
	text-align: center;
	color: #575757;
}

.user-permissions ul li ul
{
	margin: 0 0 0 27px;
	padding: 0;
}

/* AUTOCOMPLETE SUGGESTIONS */
.autocomplete-suggestions
{
	background: #fff;
	border: 1px solid #dfdfdf;
	overflow: auto;
}

.autocomplete-suggestions .autocomplete-suggestion
{
	padding: 7px 10px;
	font-size: .9em;
	cursor: pointer;
}

.autocomplete-suggestions .autocomplete-suggestion strong
{
	color: #0075a2;
}

.autocomplete-suggestions .autocomplete-suggestion.autocomplete-selected
{
	background: #e5e5e5;
}

/* EXPANDABLE ELEMENT */
.expandable .expandable-content
{
	display: none;
}

.expandable.expanded .expandable-content
{
	display: block;
}

/* DATA BOX */
.data-box-wrap
{
	margin: 0 -15px;
}

.data-box
{
	float: left;
	width: calc(50% - 62px);
	margin: 15px;
	padding: 5px 15px 15px 15px;
	background: #fff;
	border: 1px solid #e5e5e5;
}

.data-box-full
{
	width: calc(100% - 62px);
}

.data-box h3
{
	margin: 0 0 10px 0;
	padding: 0;
	border: solid #e5e5e5;
	border-width: 0 0 1px 0;
	font-size: 0.9em;
}

.data-box h3 i.fa
{
	margin-right: 7px;
	font-size: 1.1em;
	color: #282828;
}

.data-box-spacer
{
	height: 15px;
}

@media all and (max-width: 600px)
{
	.data-box-wrap
	{
		margin: 0;
	}

	.data-box
	{
		float: none;
		width: calc(100% - 32px);
		margin: 0 0 10px 0;
	}
}

/* DATEPCKER */
.datepicker-container li
{
	display: flex;
	align-items: center;
	justify-content: center;
}

/* LOG */
.log td span.microtime
{
	color: #bbb;
}

.log td.list-icon i.fa
{
	font-size: 1.5em;
}

.log td.message
{
	min-width: 70%;
	max-width: 70%;
	font-size: .7em;
	font-family: 'Courier New', Courier, monospace;
}

/* LOADER */
.loader-overlay
{
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	cursor: not-allowed;
	z-index: 1000;
}

.loader-overlay.visible
{
	display: block;
}

.loader-wrap
{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(235, 235, 235, 0.95);
	display: none;
	align-items: center;
	justify-content: center;
}

.loader-wrap.visible
{
	display: flex;
}

.loader-wrap p
{
	text-align: center;
}

.loader-wrap p i.fa
{
	font-size: 6em;
}

.loader-wrap p span.title
{
	display: block;
	margin-top: 20px;
	font-size: 1.5em;
}

.loader-wrap p span.info
{
	display: block;
	margin-top: 5px;
}

/* OVERVIEW */
.shop-master
{
	color: #398439;
}

.shop-inactive
{
	font-weight: normal;
	color: #999;
	text-decoration: line-through;
}

.sync-date
{
	font-size: 0.9em;
}

.sync-date-failed
{
	color: #f00;
}

.microtime
{
	color: #bbb;
}

.log-message
{
	font-family: 'Courier New', Courier, monospace;
}

/* RUN SYNC */
.run-sync fieldset
{
	position: relative;
	padding: 25px 0;
}

.run-sync fieldset legend
{
	position: absolute;
	left: 0;
	top: 0;
	font-size: .9em;
	font-weight: bold;
	text-transform: uppercase;
}

.run-sync fieldset legend span
{
	vertical-align: 1px;
	font-size: .9em;
	font-weight: normal;
	text-transform: lowercase;
}

.run-sync .form-row.shop-master label b
{
	color: #398439;
}

.run-sync .form-row.shop-inactive label b
{
	font-weight: normal;
	color: #999;
	text-decoration: line-through;
}

.run-sync fieldset:nth-child(1) .form-row
{
	margin: 0 0 10px 0;
}

.run-sync .hidden
{
	display: none;
}

.run-sync .sync-buttons button
{
	margin-right: 15px;
}

.run-sync .sync-window
{
	margin-top: 20px;
}

.run-sync .sync-window iframe
{
	float: left;
	width: calc(100% - 22px);
	height: 0;
	padding: 10px;
	border: 1px solid #e5e5e5;
	color: #222;
	background: #fff;
}

/* DELETE DATA */
.delete-data fieldset
{
	position: relative;
	padding: 25px 0;
}

.delete-data fieldset legend
{
	position: absolute;
	left: 0;
	top: 0;
	font-size: .9em;
	font-weight: bold;
	text-transform: uppercase;
}

.delete-data fieldset legend span
{
	vertical-align: 1px;
	font-size: .9em;
	font-weight: normal;
	text-transform: lowercase;
}

.delete-data .form-row.shop-master label b
{
	color: #398439;
}

.delete-data .form-row.shop-inactive label b
{
	font-weight: normal;
	color: #999;
	text-decoration: line-through;
}
