@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,800&display=swap&subset=latin-ext');

*
{
	-webkit-box-sizing: border-box;
	-moz-box-sizing : border-box;
	box-sizing : border-box;
	font-family : 'Roboto', sans-serif;
}

body
{
	padding : 0;
	margin : 0;
	font-size : 14px;
	color : #000;
	background-color: #EEE;
	font-family : 'Open Sans', sans-serif;
}

::-webkit-input-placeholder {
  color: #BBB;
  font-weight: normal;
}

:-ms-input-placeholder {
  color: #BBB;
  font-weight: normal;
}

::placeholder {
  color: #BBB;
  font-weight: normal;
}

::-webkit-scrollbar 
{
	width: 14px;
	height: 14px;
	background-color: #DDD; /* or add it to the track */
}

::-webkit-scrollbar-thumb 
{
	background: #aaa;
}

.scroll-ui::-webkit-scrollbar 
{
	width: 4px;
	height: 4px;
	background-color: #555; /* or add it to the track */
}

.scroll-ui::-webkit-scrollbar-thumb 
{
	background: #555;
}


.ui-autocomplete {
	z-index: 99999;
	max-height: 200px;
	overflow-y: auto;
	/* prevent horizontal scrollbar */
	overflow-x: hidden;
	/* add padding to account for vertical scrollbar */
	padding-right: 20px;
}

img
{
	max-width: 100%;
}

td img
{
	max-width: none;
}

fieldset
{
	padding: 15px;
	margin : 10px 0 20px 0;
	border : 1px dashed #CCC;
	background-color: rgba(255,255,255,0.4);
	border-radius: 3px;
	min-width: 0;
}

fieldset legend
{
	font-size : 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color : #999;
	background-color: #fff;
	border : 1px solid #DDD;
	display : block;
	padding : 5px 10px;
	margin: 0;
}

form
{
	padding:0;
	margin:0;
}

.disabled,
*[disabled]
{
	opacity: 0.5;
}

*[disabled],
*[disabled] *
{
	cursor: default !important;
}

.hide
{
	display: none !important;
}

.clear
{
	clear: both;
}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="number"],
input[type="email"],
textarea,
select
{
	font-size : 13px;
	background-color: #fff;
	color : #000;
	border : 1px solid #AAA;
	width : 100%;
	padding: 8px;
	box-shadow: inset 1px 1px 3px #DDD;
	border-radius: 4px;
}

input[type="text"].small,
input[type="password"].small,
input[type="date"].small,
input[type="number"].small,
input[type="email"].small,
textarea.small,
select.small,
table.items input[type="text"],
table.items input[type="password"],
table.items input[type="date"],
table.items input[type="number"],
table.items textarea,
table.items select
{
	font-size : 12px;
	padding: 4px;
}

br ~ input[type="text"],
br ~ input[type="password"],
br ~ input[type="date"],
br ~ input[type="number"],
br ~ input[type="email"],
br ~ textarea,
br ~ select
{
	margin-bottom: 5px;
}

.button,
button
{
	border : 0 none;
	background-color: #00BEFD;
	color : #FFF;
	padding : 10px 20px;
	text-transform : uppercase;
	font-size : 13px;
	font-weight : 700;
	text-decoration : none;
	display: inline-block;
	border-radius: 3px;
	text-align: center;
}

.button.back
{
	background-image: url(../img/icons/ic_arrow_back_black_18dp.png);
	background-repeat: no-repeat;
	background-position: 10px center;
	padding-left: 40px;
	background-color: rgba(255,255,255,0.3);
	border: 1px solid rgba(0,0,0,0.1);
	font-size: 15px;
	color: #000;
}

.button.back:hover
{
	background-color: #FFF;
	color: #000;
}

.button.small
{
	font-size: 11px;
	padding: 4px 10px;
}

.button.run
{
	background-color: #4caf50;
}

.button-icon,
.button-link-icon
{
	background-repeat: no-repeat;
	background-position: center center;
	width: 18px;
	height: 18px;
	display: inline-block;
	vertical-align: middle;
}

.button-link-icon
{
	width: auto;
	height: auto;
	padding: 10px;
	padding-left: 35px;
	background-position: 10px center;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 13px;
}

a
{
	color: #00457D;
}

a[href^="mailto:"],
a[href^="tel:"]
{
	text-decoration: none;
	display: inline-block;
	border-bottom:1px dotted #00457D;
}

h1,
h2,
h3,
h4,
h5
{
	color : #00BEFD;
	font-weight: 300;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child
{
	margin-top: 0;
}

h1
{
	margin-top: 0;
	font-size : 43px;
	line-height: 45px;
	color: #AAA;
	font-weight: 700;
	display: block;
	margin-bottom: 20px;
}

h2
{
	margin-top: 40px;
	font-size : 26px;
	font-weight: 600;
}

hr
{
	height : 0;
	border : 0 none;
	border-bottom: 1px dashed #CCC;
	margin-top: 12px;
	margin-bottom: 12px;
}

.nowrap
{
	white-space: nowrap !important;
}

.textLeft
{
	text-align: left;
}

.textCenter
{
	text-align: center;
}

.textRight
{
	text-align: right;
}

.float-left
{
	float: left;
}

.float-right
{
	float: right;
}

.bg-color
{
	background-color: #00BEFD !important;
}

.to-light
{
	color: #999;
}

.to-red
{
	color: #e53935;
}

.to-green
{
	color: #4caf50;
}

.to-orange
{
	color: #ff9800;
}

.to-blue
{
	color: #00457D;
}

.fs-small
{
	font-size: 11px !important;
}

.fs-mid
{
	font-size: 15px !important;
}

.fs-big
{
	font-size: 20px !important;
}

.bold
{
	font-weight: bold !important;
}

.unbold
{
	font-weight: normal !important;
}

.annotation
{
	color: #888;
	margin-bottom: 30px;
}
.annotation-small
{
	color: #888;
	margin-bottom: 30px;
	font-size: 12px;
}

.supportBoxInfo
{
	font-size: 11px;
	background-color: #D0ECF2;
	border:1px dashed rgba(0,0,0,0.2);
}

.supportBoxInfo table
{
	width: 100%;
	border-collapse:separate;
	border-spacing:0;
	border-top:1px dotted rgba(0,0,0,0.2);
	margin-bottom: 20px;
}

.supportBoxInfo table thead th
{
	padding: 4px;
	border-bottom:1px dotted rgba(0,0,0,0.2);
	text-align: left;
}

.supportBoxInfo table tfoot th
{
	padding: 2px;
	text-align: left;
	color: #666;
}

.supportBoxInfo table td
{
	padding: 4px;
	border-bottom:1px dotted rgba(0,0,0,0.2);
}

.supportBoxInfo table caption
{
	text-align: left;
	font-size: 12px;
	margin-bottom: 5px;
}

.empty-page
{
	display: block;
	padding: 150px 20px;
	text-align: center;
	color: rgba(0,0,0,0.4);
	font-size: 20px;
	font-weight: 300;
	border:2px dashed rgba(0,0,0,0.1);
	border-radius:6px;
}

.tag
{
	font-size: 10px;
	font-weight: bold;
	text-transform: uppercase;
	color: #333;
	display: inline-block;
	padding: 4px 8px;
	margin: 1px;
	border:1px solid rgba(0,0,0,0.1);
	border-radius:30px;
}

.tag.ok
{
	border-color:#4CAF50;
	color: #4CAF50;
}

.tag.green
{
	border-color:#4CAF50;
	color: #4CAF50;
}

.tag.red
{
	border-color:#c62828;
	color: #c62828;
}

.tag.violet
{
	border-color:#793FC0;
	color: #793FC0;
}

.state-info
{
	padding: 12px 25px;
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	background-color: #DDD;
	color: #FFF;
	margin-bottom: 20px;
	border-radius:6px;
	display: inline-block;
	float: right;
}

.state-color.new
{
	color: #4caf50;
}

.state-color.updated
{
	color: #ffa000;
}

.state-color.deleted,
.state-color.canceled
{
	color: #f44336;
}

.state-color.confirmed
{
	color: #ff8f00;
}

.state-color.completed
{
	color: #b0bec5;
}

.state-color.uncompleted
{
	color: #7e57c2;
}

.rating
{
	font-size: 0;
}

.rating span
{
	display: inline-block;
	width: 15px;
	height: 15px;
	background-image: url(../img/icons/icon-star-dark.svg);
	background-size: contain;
	vertical-align: middle;
	margin: 1px;
}

.rating.active span
{
	cursor: pointer;
}

.rating:not(.active) span.s,
.rating.active:not(.hover) span.s,
.rating.active.hover span.h
{
	background-image: url(../img/icons/icon-star-yellow.svg);
}

.rating.big span
{
	width: 35px;
	height: 35px;
	margin: 2px;
}

.link-back
{
	display: inline-block;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	font-size: 12px;
	margin-bottom: 30px;
	background-image: url(../img/icons/ic_arrow_back_white_18dp.png);
	padding: 10px 15px;
	padding-left: 35px;
	background-repeat: no-repeat;
	background-position: 10px center;
	background-color: #333;
	/*border:1px solid #CCC;*/
	color: #FFF;
	border-radius: 3px;
}

.link-back:hover
{
	background-color: #444;
}

.link-quick
{
	display: inline-block;
	padding: 8px 15px;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 11px;
	color: #000;
	font-weight: bold;
	border:1px solid rgba(0,0,0,0.1);
	border-radius:40px;
	background-color: rgba(255,255,255,0.3);
}

.link-icon
{
	display: inline-block;
	width: 18px;
	height: 18px;
	background-repeat: no-repeat;
	background-position: center center;
}

.ico-add
{
	background-image: url(../img/icons/ic_add_black_18dp.png);
}

.ico-cancel
{
	background-image: url(../img/icons/ic_highlight_off_black_18dp.png);
}

.ico-check
{
	background-image: url(../img/icons/ic_done_black_18dp.png);
}

.ico-copy
{
	background-image: url(../img/icons/ic_content_copy_black_18dp.png);
}

.ico-compare
{
	background-image: url(../img/icons/ic_link_black_18dp.png);
}

.ico-cron
{
	background-image: url(../img/icons/ic_query_builder_black_18dp.png);
}

.ico-customer
{
	background-image: url(../img/icons/ic_perm_identity_black_18dp.png);
}

.ico-delete
{
	background-image: url(../img/icons/ic_delete_black_18dp.png);
}

.ico-default
{
	background-image: url(../img/icons/check.png);
}

.ico-discount
{
	background-image: url(../img/icons/sale.png);
}

.ico-download
{
	background-image: url(../img/icons/ic_file_download_black_18dp.png);
}

.ico-edit
{
	background-image: url(../img/icons/ic_create_black_18dp.png);
}

.ico-export
{
	background-image: url(../img/icons/ic_import_export_black_18dp.png);
}

.ico-folder
{
	background-image: url(../img/icons/ic_folder_black_18dp.png);
}

.ico-hidden
{
	background-image: url(../img/icons/ic_visibility_off_black_18dp.png);
}

.ico-import
{
	background-image: url(../img/icons/ic_import_export_black_18dp.png);
}

.ico-info
{
	background-image: url(../img/icons/ic_info_outline_black_18dp.png);
}

.ico-lock
{
	background-image: url(../img/icons/ic_lock_black_18dp.png);
}

.ico-open
{
	background-image: url(../img/icons/ic_folder_open_black_18dp.png);
}

.ico-paste
{
	background-image: url(../img/icons/ic_content_paste_black_18dp.png);
}

.ico-pdf
{
	background-image: url(../img/icons/pdf-file-format-symbol.png);
}

.ico-reply
{
	background-image: url(../img/icons/ic_reply_black_18dp.png);
}

.ico-remove
{
	background-image: url(../img/icons/ic_clear_black_18dp.png);
}

.ico-reset
{
	background-image: url(../img/icons/ic_highlight_off_black_18dp.png);
}

.ico-run
{
	background-image: url(../img/icons/ic_play_circle_outline_black_18dp.png);
}

.ico-manage
{
	background-image: url(../img/icons/ic_build_black_18dp.png);
}

.ico-script
{
	background-image: url(../img/icons/ic_play_circle_outline_black_18dp.png);
}

.ico-show
{
	background-image: url(../img/icons/ic_visibility_black_18dp.png);
}

.ico-sync
{
	background-image: url(../img/icons/ic_autorenew_black_18dp.png);
}

.ico-view
{
	background-image: url(../img/icons/ic_visibility_black_18dp.png);
}

.ico-xml
{
	background-image: url(../img/icons/xml-file-format-symbol.png);
}

ul.menu,
ul.tabs,
ul.path
{
	list-style: none outside;
	margin : 0;
	padding : 0;
}

ul.menu li,
ul.tabs li,
ul.path li
{
	margin : 0;
	padding : 0;
}

ul.path
{
	margin-bottom: 30px;
	font-size: 0;
	white-space: nowrap;
	overflow: auto;
}

ul.path li
{
	display: inline-block;
	font-size: 11px;
	margin-right: 5px;
}

ul.path li a
{
	display: inline-block;
	text-decoration: none;
	text-transform: uppercase;
	color: #666;
	padding: 7px 15px;	
	border: 1px solid #DDD;
	border-radius: 20px;
}

ul.path li:last-child a
{
	color: #000;
	font-weight: bold;
	background-color: #fff;
}

ul.path li:not(:last-child) a:hover
{
	color: #000;
	background-color: rgba(255,255,255,0.5);
}

ul.tabs + form > ul.toolbar
{
	margin-top: 10px;
}

ul.toolbar
{
	list-style : none outside;
	margin : 0;
	padding : 5px;
	font-size : 0;
	background-color: rgba(255, 255, 255, 0.6);
	border : 1px solid rgba(0, 0, 0, 0.08);
	box-shadow : 0px 2px 8px rgba(0, 0, 0, 0.05);
	margin-bottom : 30px;
}

ul.toolbar li
{
	display : inline-block;
	vertical-align : middle;
	/*border-right  : 1px solid rgba(0, 0, 0, 0.1);*/
	font-size : 12px;
}

ul.toolbar li.space
{
	content : '';
	margin-left : 5px;
	margin-right: 5px;
	border-right: 1px solid rgba(0, 0, 0, 0.1);
	height : 24px;
}

ul.toolbar li.label
{
	font-size : 11px;
	letter-spacing: 0.5px;
	font-weight : 700;
	color : #BBB;
	text-transform: uppercase;
	padding : 0 5px;
	padding-top: 1px;
}

ul.toolbar li a
{
	display : inline-block;
	padding : 7px 15px;
	text-decoration: none;
	color : #000;
	text-transform : uppercase;
	font-weight : 600;
	vertical-align : middle;
	border-top : 1px solid transparent;
	border-bottom : 1px solid transparent;
}

ul.toolbar li a:hover
{
	background-color : rgba(0, 0, 0, 0.05);/*border-top      : 1px solid rgba(0, 0, 0, 0.1);
	border-bottom     : 1px solid rgba(0, 0, 0, 0.1);*/
}

ul.toolbar li a[class*="ico-"]
{
	padding-left: 30px;
	background-repeat: no-repeat;
	background-position: 5px center;
}

ul.menu.side
{
	margin-bottom : 30px;
	background-color: #EAEAEA;
}

ul.menu.side ul ul
{
	background-color: #F5F5F5;
}

ul.menu.side li
{
	display: block;
	padding: 0;
	margin: 0;
}

ul.menu.side li ul
{
	display: block;
	padding: 0;
	margin: 0;
}

ul.menu.side > li a
{
	display: block;
	padding: 10px;
	background-color: #FFF;
	text-decoration: none;
	font-size: 13px;
	text-transform: uppercase;;
	margin-bottom: 3px;
	font-weight: bold;
}

ul.menu.side > li > ul > li > ul
{
	margin-bottom: 20px;
}

ul.menu.side > li.back a
{
	background-image: url(../img/icons/ic_arrow_back_white_18dp.png);
	background-repeat: no-repeat;
	background-position: 10px center;
	padding-left: 40px;	
	background-color: #30395C;
	color: #FFF;
}

ul.menu.side > li li a
{
	display: block;
	padding: 8px;
	background-color: transparent;
	font-size: 12px;
	font-weight: normal;
	text-transform: inherit;
	margin-bottom: 1px;
}

ul.menu.side > li li:not(:last-child) a
{
	border-bottom: 1px solid #E8E8E8;
}

ul.menu.side a:hover
{
	background-color: #E5E5E5;
}

ul.menu.side > li.back a:hover
{
	background-color: #3f4a75;
}


ul.menu.side li.disabled
{
	opacity: 1;
}

ul.menu.side li.disabled a
{
	color: rgba(0,0,0,0.2);
	background-image: url(../img/icons/ic_visibility_off_black_18dp.png);
	background-position: right 10px center;
	background-repeat: no-repeat;
	padding-right: 40px;
}

ul.menu.side > li.active > a
{
	background-color: #00BEFD;
	color: #FFF;
}

ul.menu.side > li li.active > a
{
	font-weight: bold;
}

ul.menu.side > li > ul > li.active > a
{
	background-color: #DADADA;
}

ul.menu.side > li > ul ul > li.active > a
{
	color: #00BEFD;
}

ul.menu.tree li li li li a
{
	font-size: 11px !important;
	padding: 7px;
}

ul.menu.tree li li a
{
	padding-left: 15px;
}

ul.menu.tree li li li a
{
	padding-left: 30px;
}

ul.menu.tree li li li li a
{
	padding-left: 45px;
}

ul.menu.tree li li li li li
{
	padding-left: 20px;
}

ul.menu.tree > li li:not(:last-child) a
{
	border-bottom: 0 none;
}

ul.tabs
{
	font-size: 0;
	display: block;
	border-bottom: 4px solid #00BEFD;
	overflow: auto;
	white-space:nowrap;
}

ul.tabs li
{
	display: inline-block;
}

ul.tabs > li > a,
ul.tabs > li > span
{
	display: inline-block;
	padding: 10px 15px;
	text-decoration: none;
	font-size: 13px;
	min-height: 36px;
	text-transform: uppercase;;
	font-weight: bold;
	margin-right: 1px;
	background-color: rgba(0,0,0,0.08);
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	cursor:default;
}

ul.tabs li:not(.active) a:hover,
ul.tabs li:not(.active) > span:hover
{
	background-color: rgba(255, 255, 255, 0.3);
}

ul.tabs > li.active > a,
ul.tabs > li.active > span
{
	background-color: #00BEFD;
	color: #FFF;
}

ul.tabs li .count
{
	display: inline-block;
	font-size: 9px;
	line-height: 9px;
	margin-left: 3px;
	vertical-align: middle;
	font-weight: normal;
	padding: 3px 6px;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 4px;
}

ul.tabs.small
{
	border-bottom-width: 2px;
	margin-bottom: 15px;
}

ul.tabs.small > li > a,
ul.tabs.small > li > span
{
	padding: 8px 12px;
	font-size: 11px;
	font-weight: 400;
	cursor: default;
	min-height: auto;
}

ul.tabs.small > li.active > a,
ul.tabs.small > li.active > span
{
	background-color: #00BEFD;
	color: #FFF;
	font-weight: bold;
	border-color: #00BEFD;
}

ul.tabs.small > li:not(.active) > a:hover,
ul.tabs.small > li:not(.active) > span:hover
{
	background-color: #FFF;
}

ul.tiles
{
	font-size: 0;
	margin: 0;
	padding: 0;
}

ul.tiles li
{
	display: inline-block;
	margin-right: 20px;
	margin-bottom: 20px;
	vertical-align: top;
}

ul.tiles li a
{
	font-size: 17px;
	font-weight: bold;
	text-decoration: none;
	display: inline-block;
	padding: 15px 20px;
	padding-left: 45px;
	color: #0F1F5B;
	width: 300px;
	background-color: rgba(255,255,255,0.4);
	border:1px solid #CCC;
	background-image: url(../img/icons/ic_arrow_forward_black_18dp.png);
	background-position: 15px 18px;
	background-repeat: no-repeat;
	height: 160px;
	overflow:auto;
	border-radius: 6px;
}

ul.tiles li a:hover
{
	background-color: #fff;
}

ul.tiles li a span:not([class])
{
	font-size: 12px;
	font-weight: normal;
	line-height: 16px;
	color: #888;
	display: block;
	margin-top: 8px;
}

ul.tiles li a span[class^="ico-"]
{
	display: inline-block;
	margin-top: 5px;
	margin-right: 5px;
	width: 18px;
	height: 18px;	
}


ul.list,
ul.files
{
	list-style: none outside;
	padding: 0;
	margin: 0;
}

ul.list li,
ul.files li
{
	display: block;
	padding: 4px;
	font-size: 12px;
	color: #666;
	padding-left: 25px;
	background-image: url(../img/icons/ic_arrow_forward_black_18dp.png);
	background-position: left center;
	background-repeat: no-repeat;
	-webkit-background-size: 14px;
	background-size: 14px;
}

ul.files li
{
	background-image: url(../img/icons/ic_file_download_black_18dp.png);
	-webkit-background-size: 16px;
	background-size: 16px;
}


.review-item ul
{
	padding: 7px 0;
	margin: 0;
	list-style: none outside;
}

.review-item ul li
{
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 14px 14px;
	display: block;
	padding: 1px;
	padding-left: 25px;
	font-size: 13px;
}

.review-item.prop-plus ul li
{
	background-image: url(../img/icons/icon-plus2.svg);
}

.review-item.prop-minus ul li
{
	background-image: url(../img/icons/icon-minus2.svg);
}

.tab-content
{
	background-color: #F6F6F6;
	padding: 15px;
}

#dialog-box .tab-content
{
	background-color: transparent;
	padding: 15px 0 0 0;
}


#dialog-box
{
	background-color: rgba(0,0,0,0.6);
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 9;
	display: none;
	overflow:auto;
}

#dialog-box .dlg
{
	display: block;
	margin: 0 auto;
	background-color: #EEE;
	min-width: 320px;
	max-width: 1200px;
	box-shadow: 0 0 20px rgba(0,0,0,0.6);
	padding: 30px;
	color: #000;
	position: absolute;
	overflow:auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

#dialog-box .dlg .dlg-content
{
	/*max-height: 750px;*/
	overflow:auto;
}

#dialog-box .dlg .dlg-content .dlg-wait
{
	background-image: url(../img/progess-wait.gif);
	background-repeat: no-repeat;
	background-position: center center;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #888;
	font-size: 11px;
	padding-top: 50px;
}

#dialog-box .dlg-close
{
	position: fixed;
	top: 15px;
	right: 15px;
	background-color: #fff;
	border-radius: 40px;
	width: 40px;
	height: 40px;
	background-image: url(../img/icons/ic_close_black_36dp.png);
	background-repeat: no-repeat;
	background-position: center center;
	cursor: pointer;
}

#dialog-box .dlg h1
{
	text-align: inherit;
}

#dialog-box .dlg h1
{
	font-size: 40px;
	font-weight: 700;
	line-height: 44px;
	margin: 0px 0 20px 0;
}

.tinyMceDialog
{
	padding: 20px;
	background-color: #fff;
	font-size: 12px;
	overflow: auto;
	min-width: inherit;
}

.tinyMceDialog input[type="text"],
.tinyMceDialog textarea,
.tinyMceDialog select
{
	width: 100%;
	padding: 8px;
	font-size: 13px;
}

.tinyMceDialog button,
.tinyMceDialog .button
{
	font-size: 13px;
	padding: 10px;
	height: 36px;
}

.tinyMceDialog input + button,
.tinyMceDialog input + .button
{
	margin-left: 5px;
}

.tinyMceDialog table
{
	font-size: 13px;
}

.tinyMceDialog hr.hr1
{
	margin: 10px 0;
}

.tinyMceDialog h2
{
	color: #f2410a;
}

.table-box
{
	overflow:auto;
}

fieldset table.info
{
	width: 100%;
	color: #333;
}

table.info
{
	font-size: 12px;
	color : #888;
	border : 1px dashed #CCC;
}

table.info td,
table.info th
{
	padding: 6px 10px;
}

table.info tr td:not(:last-child),
table.info tbody tr th
{
	border-right: 1px dashed #CCC;
}

table.info tr:not(:first-child) td,
table.info tr:not(:first-child) th
{
	border-top: 1px dashed #CCC;
}

table.info tr.line td,
table.info tr.line th
{
	border-top: 1px solid #CCC;
}

table.info tbody tr th
{
	background-color: #fff;
	text-align: left;
}

table.items
{
	font-size : 12px;
	border-spacing : 0;
	border-collapse: separate;
	width : 100%;
}

table.items tr td,
table.items tr th
{
	padding : 4px 10px;
	border-bottom : 1px solid rgba(0, 0, 0, 0.1);
}

table.items tr td
{
	background-color: rgba(255,255,255,0.5);
}

table.items.large tr td
{
	padding : 5px 10px;
}

table.items thead tr th
{
	font-size: 11px;
	text-transform: uppercase;
	padding: 10px;
	color: #888;
	border-bottom: 4px solid #CCC;
}

table.items tbody tr th
{
	color: #000;
	font-weight: bold;
	text-align: left;
}

table.items td.heading
{
	font-size : 13px;
	text-transform: uppercase;
	letter-spacing:2px;
	background-color: transparent;
	color: #999;
	padding: 25px 0 5px 0;
}

table.items tr.separator th,
table.items tr.separator td
{
	border-top: 4px solid #CCC;
}

table.items .label
{
	font-size : 13px;
}

table.items .button.small
{
	width: 100%;
}

table.items img
{
	vertical-align: middle;
}

table div.icon,
table span.icon,
table a.icon,
.icon-img
{
	width: 18px;
	height: 18px;
	background-position: center center;
	background-repeat: no-repeat;
	display: inline-block;
	vertical-align: middle;
	background-size: contain;
}

table.items img.icon
{
	width: 18px;
	height: auto;
}

table.items img.banner
{
	width: 150px;
	height: auto;
	margin: 5px;
}

table.items .photo
{
	width: 40px;
	height: 40px;
	background-color: rgba(255,255,255,0.5);
	border:1px solid rgba(0,0,0,0.07);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

table.items:not(.nohover) tr:not(.focus):not(.blank):hover td:not(.heading):not(.state),
table.items:not(.nohover) tbody tr:hover th
{
	background-color: rgb(222,240,248);
}

table.items tbody tr.focus th,
table.items tbody tr.focus td
{
	background-color: #ffecb3;
}

table.items tbody tr.focus2 th,
table.items tbody tr.focus2 td
{
	background-color: #F5E7D8;
}

table.items tbody tr.focus3 th,
table.items tbody tr.focus3 td
{
	background-color: #D0ECF2;
}

table.items tbody tr.weekend th,
table.items tbody tr.weekend td
{
	background-color: rgba(0,0,0,0.03);
}

table.items tbody tr.blank td
{
	background-color: transparent;
	padding: 10px 0;
}

table.items tbody tr.blank2 td
{
	background-color: transparent;
}

table.items .availability
{
	font-size : 11px;
	color : #999;
	white-space: nowrap;
	max-width : 60px;
	overflow : hidden;
}

table.items .desc
{
	font-size : 11px;
	color : #999;
	white-space: nowrap;
}

table.items .state
{
	color : rgba(255, 255, 255, 0.8);
	font-size : 10px;
	font-weight: bold;
	text-transform: uppercase;
	text-align : center;
	display: block;
	padding: 4px;
	border-radius:3px;
	text-decoration: none;
}

table.items .state.new,
.state-info.new
{
	background-color: #4caf50;
}

table.items .state.updated,
.state-info.updated
{
	background-color: #ffa000;
}

table.items .state.deleted,
table.items .state.canceled,
.state-info.deleted,
.state-info.canceled
{
	background-color: #f44336;
}

table.items .state.noimport,
.state-info.noimport
{
	background-color: #999;
}

table.items .state.confirmed,
.state-info.confirmed
{
	background-color: #ff8f00;
}

table.items .state.completed,
.state-info.completed
{
	background-color: #b0bec5;
}

table.items .state.uncompleted,
.state-info.uncompleted
{
	background-color: #7e57c2;
}


table.import tbody tr td:nth-child(2)
{
	word-break:break-all;
}

table.form
{
	border-spacing: 0;
	border-collapse: separate;
	width: 100%;
}

table.form tr:not(:last-child) td
{
	padding-bottom: 8px;
}

table.form td:not(:last-child)
{
	padding-right: 8px;
}

table.form td:first-child:not(:last-child)
{
	padding-right: 8px;
}


label + br + table.form,
select + br + table.form,
input + br + table.form
{
	margin-top: 10px;
}

table.attrib
{
	border-spacing: 0;
	border-collapse: collapse;
	border-left: 1px solid #DDD;
	border-top: 1px solid #DDD;
	text-align: center;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	margin: 5px;
}

table.attrib th,
table.attrib td
{
	padding: 8px;
	background-color: #fff;
}

table.attrib th.transparent,
table.attrib td.transparent,
table.attrib .transparent th,
table.attrib .transparent td
{
	background-color: rgba(0, 0, 0, 0.02);
}

table.attrib th,
table.attrib td
{
	border-right: 1px solid #DDD;
}

table.attrib th,
table.attrib td
{
	border-bottom: 1px solid #DDD;
}

.progress-bar .prgs-bar
{
	background-color: #DDD;
}

.progress-bar .prgs-bar .prgs-val
{
	background-color: #0EBC72;
	height: 8px;
	width: 30%;
	-webkit-transition: width 0.5s ease-in-out;
    -moz-transition: width 0.5s ease-in-out;
    -o-transition: width 0.5s ease-in-out;
    transition: width 0.5s ease-in-out;
}

.progress-bar .prgs-label
{
	margin-top: 5px;
	font-weight: 600;
}

.progress-bar .prgs-close
{
	display: none;
}

.progress-bar.modal
{
	background-color: rgba(0,0,0,0.88);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index:9999;
}

.progress-bar.modal .prgs-bar
{
	width: 400px;
	margin: auto;
	top: 48%;
	left: calc(50% - 200px);
	position: absolute;
	background-color: rgba(0,0,0,0.3);
}

.progress-bar.modal .prgs-bar .prgs-val
{
	background-color: #11CDF4;
	height: 5px;
	width: 0%;
}

.progress-bar.modal .prgs-label
{
	color: #FFF;
	position: absolute;
	text-align: center;
	width: 400px;
	top: calc(48% + 20px);
	left: calc(50% - 200px);
	font-size: 15px;
}

.progress-bar.modal .prgs-time
{
	color: rgba(255,255,255,0.5);
	position: absolute;
	text-align: center;
	width: 400px;
	top: calc(55% + 20px);
	left: calc(50% - 200px);
	font-size: 13px;
}

.progress-bar.modal .prgs-close
{
	display: block;
	position: absolute;
	top: 20px;
	right: 20px;
	width: 36px;
	height: 36px;
	background-image: url(../img/icons/ic_expand_more_white_36dp.png);
}

#wait-progress
{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.6);
	z-index: 9999;
	background-image: url(../img/preloader.svg);
	background-repeat: no-repeat;
	background-position: center center;
}

#wait-progress span
{
	position: fixed;
	left: 50%;
	right: 50%;
	margin-left: -200px;
	margin-right: -200px;
	bottom: 40px;
	color: #FFF;
	text-align: center;
}

.col-sidebar
{
	padding-right: 20px !important;
}

.col-sidebar + .col-content
{
	padding-left: 40px !important;
}

.col-group [class*="col-"]:not(.col-group):not(.col-content)
{
	padding-right: 0 !important;
	padding-left: 0 !important;
}

.message
{
	color: #000;
	background-color: #FBF2D7;
	padding: 10px;
	text-align: left;
	border-radius: 3px;
	border:1px solid rgba(0,0,0,0.1);
	position: relative;
}

.message.warn,
.message.info,
.message.error
{
	color: #FFF;
	background-color: #3FA0A0;
	background-image: url(../img/icons/ic_info_outline_white_24dp.png);
	background-repeat: no-repeat;
	background-position: 12px center;
	padding-left: 45px;
}

.message.warn a,
.message.info a,
.message.error a
{
	color: #FFF;
}


.message.info
{
	background-color: #4caf50;
}

.message.error
{
	background-color: #c62828;
}

.message.clipboard
{
	background-color: #D5D8F7;
	margin-bottom: 30px;
	background-image: url(../img/icons/ic_content_paste_black_18dp.png);
	background-repeat: no-repeat;
	background-position: 10px center;
	padding-left: 40px;
}

.message .close
{
	position: absolute;
	top: 7px;
	right: 10px;
	width: 24px;
	height: 24px;
	border-radius:24px;
	background-color: rgba(255,255,255,0.3);
	background-image: url(../img/icons/ic_clear_black_18dp.png);
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: 14px;
	background-size: 14px;
	border:1px solid rgba(0,0,0,0.2);
}

.message .button
{
	background-color: rgba(0,0,0,0.4);
}

.paging-top .paging
{
	margin-top: 0;
	margin-bottom: 20px;
}

.paging
{
	font-size: 0px;
	text-align: right;
	margin-top: 20px;
	margin-bottom: 30px;
}

.paging .legend
{
	display: inline-block;
	color: #888;
	vertical-align: middle;
	margin-right: 20px;
}

.paging a,
.paging .pg.navi,
.paging .pg.separator,
.paging a:hover
{
	font-size: 14px;
	padding: 6px 12px;
	margin-right: 4px;
	margin-bottom: 4px;
	display: inline-block;
	vertical-align: middle;
	text-transform: uppercase;
	font-weight: bold;
	text-decoration: none;
	border:1px solid #CCC;
}

.paging .pg.navi
{
	border:0 none;
}

.paging a.active
{
	color: #FFF;
	background-color: #00BEFD;
	border: 0 none;
}

.paging .pg.separator
{
	background-color: transparent;
	border:0 none;
}

.paging .label
{
	font-size: 12px;
	display: inline-block;
	margin-right: 10px;
	color: rgba(0,0,0,0.6);
}

.paging a[disabled],
.paging a[disabled]:hover
{
	opacity: 0.3;
	cursor: default;
	box-shadow:none;
}

.paging.select select
{
	width: auto;
}

.gallery:after
{
	display: block;
	content:'';
	clear: both;
}

.gallery .photo
{
	float: left;
	position: relative;
	margin: 0 10px 10px 0;
	width: 140px;
	height: 140px;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	border-radius:4px;
	background-color: rgba(0,0,0,0.05);
}

.gallery .photo .panel
{
	position: absolute;
	bottom: 8px;
	right: 8px;
}

.gallery .photo .panel .button-icon
{
	margin: 1px;
	background-color: rgba(255,255,255,0.8);
	border-radius:4px;
	width: 30px;
	height: 30px;
}

.gallery .photo .icons
{
	position: absolute;
	top: 8px;
	left: 8px;
}

.gallery .photo .icons div
{
	margin: 1px;
	background-color: #009688;
	border-radius:40px;
	padding: 5px;
	width: 20px;
	text-align: center;
	color: #FFF;
	font-size: 11px;
	font-weight: bold;
	line-height: 11px;
}

.gallery .photo .icons div.ico-note
{
	background-color: #ff9800;
}

.gallery .photo .icons div.ico-feed
{
	background-color: #793FC0;
}

#header
{
	background-color: #EEE;
	padding : 15px;
	box-shadow : 0 0 10px rgba(0, 0, 0, 0.5);
	position : relative;
	z-index : 5;
}

#header .logo
{
	width : 230px;
	height: auto;
}

#header .formSearch
{
	position: absolute;
	top: 16px;
	left: 300px;
	width : 500px;
}

#header .formSearch input
{
	padding: 8px 10px;
	font-size: 13px;
	border:1px solid #CCC;
}

#header .account
{
	position: absolute;
	right : 10px;
	top : 18px;
}

#header .account .button
{
	padding : 6px 12px;
	font-size : 12px;
	background-color: transparent;
	color : #000;
	border : 1px solid rgba(0, 0, 0, 0.1);
}

#header .account .button:hover
{
	background-color: rgba(255, 255, 255, 0.3);
}

#menu
{
	background-color: #00BEFD;
	z-index: 3;
	position: relative;
	box-shadow : 0 0 8px rgba(0, 0, 0, 0.2);
}

#menu ul.menu,
#menuL2 ul.menu
{
	font-size: 0;
}

#menu ul.menu li,
#menuL2 ul.menu li
{
	display: inline-block;
}

#menu ul.menu li a
{
	font-size : 14px;
	display : inline-block;
	padding : 16px 16px;
	color : #FFF;
	text-decoration: none;
	text-transform : uppercase;
}

#menu ul.menu li a:hover
{
	background-color: rgba(0, 0, 0, 0.1);
}

#menu ul.menu li a.active
{
	font-weight : 700;
	background-color: #00A2D7;
	position: relative;
}

#menuL2
{
	background-color: #30395C;
	z-index: 0;
	position: relative;
}

#menuL2 ul.menu li
{
	vertical-align: middle;
}

#menuL2 ul.menu li.space
{
	content : '';
	margin-left : 5px;
	margin-right: 5px;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	height : 24px;
}

#menuL2 ul.menu li a
{
	font-size : 12px;
	display : inline-block;
	padding : 13px 15px 10px 15px;
	color : rgba(255,255,255,0.7);
	text-decoration: none;
	text-transform: uppercase;
	border-bottom:5px solid transparent;
}

#menuL2 ul.menu li a.active
{
	font-weight : 700;
	color: #FFF;
	border-bottom-color: #00BEFD;
}

#menuL2 ul.menu li a:not(.active):hover
{
	border-bottom-color: rgba(255,255,255,0.3);
}

#formCatalogSearch
{
	
}

#page
{
	padding: 20px;
	padding-bottom: 50px;
}

.page-error
{
	padding: 40px;
	text-align: center;
	margin: auto;
	max-width: 500px;
}

.page-error .prop-404
{
	font-size: 120px;
	font-weight: 800;
	color: #CCC;
}

.page-login
{
	background-image : url(../img/logo.png);
	background-repeat : no-repeat;
	background-position: center 50px;
	-webkit-background-size: 280px;
	background-size: 280px;
	padding: 10px;
	padding-top : 100px;	
}

.page-login .login-form
{
	background-color: #FFF;
	padding : 30px;
	max-width : 340px;
	margin : auto;
	margin-top : 50px;
	box-shadow : 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.page-login .login-form input
{
	margin-bottom: 15px;
}

.page-login .login-form button.wait
{
	background-image : url(../img/progess-wait.gif);
	padding-left : 40px;
	background-repeat : no-repeat;
	background-position: 15px center;
}

.page-login .login-form h2
{
	font-size : 30px;
	margin-top : 0;
	margin-bottom: 25px;
}

.page-login .message
{
	margin-bottom: 40px;
}

.content-order-detail .col-dt-4 fieldset
{
	min-height: 450px;
}

@media (max-width: 767px) {

#MEDIA-MOBILE-ONLY------------------------------
{
}

h1
{
	font-size : 35px;
	line-height: 37px;
}

.col-group [class*="col-"]:not(.col-group):not(.col-content)
{
	padding-right: 0 !important;
	padding-left: 0 !important;
}

.col-sidebar
{
	padding-right: 0 !important;
}

.col-sidebar + .col-content
{
	padding-left: 0 !important;
}

.table-box
{
	white-space:nowrap;
}

table.items
{
	font-size : 13px;
}


.progress-bar.modal .prgs-bar
{
	width: auto;
	left: 20px;
	right: 20px;
}

.progress-bar.modal .prgs-label
{
	width: auto;
	left: 20px;
	right: 20px;	
}

#menu,
#menuL2
{
	white-space:nowrap;
	overflow:auto;
}

#menu ul.menu li a
{
	font-size : 14px;
	padding : 15px;
}

ul.menu.side
{
	max-height: 250px;
	overflow: auto;
}

ul.toolbar li,
ul.toolbar li a
{
	display: block;
}

ul.toolbar li.space
{
	height: 10px;
	display: none;
}

ul.toolbar li a
{
	padding: 10px;
}

ul.toolbar li.label
{
	padding-top: 10px;
}

#header
{
	padding: 11px;
}

#header .logo
{
	width : 150px;
	margin: 5px 5px;
}

#header .account
{
	top: 14px;
}

}

@media (max-width: 990px) {

#header .formSearch
{
	display: none;
}


}

@media (min-width: 990px) {

#menu ul.menu li a.active:after
{
	content: '';
	display: block;
	position: absolute;
	bottom: -7px;
	z-index: 5;
	left: calc(50% - 12px);
	width: 0; 
	height: 0; 
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;	
	border-top: 7px solid #00A2D7;
}


#dialog-box .dlg
{
	margin: 80px auto 30px auto;
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	bottom: auto;
	border-radius: 4px;
	overflow: visible;
}

#dialog-box .dlg-close
{
	position: absolute;
	top: -15px;
	right: -15px;
	background-color: #FAFAFA;
	background-size: 24px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#dialog-box .dlg-close:hover
{
	background-color: #FFF;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

}
