/* CSS Document */

/*
////////// External CSS
*/

@import url('jquery/jquery-ui.css');
@import url('colpick.css');
@import url('selectbox.css');
@import url('fancybox.css');
@import url('redactor.css');
@import url('fonts/main.css');
@import url('fonts/awesome.css');
@import url('datatables.css');
@import url('sizes.css');

/*
////////// Reset CSS
*/

@import url('reset.css');

/*
////////// Main Classes & Text
*/

html {
	/*background: #f9f9f9;*/
}

body { 
	font-size:11px; 
	min-width:1000px;
	font-family:'Roboto', sans-serif;
}

a { 
	text-decoration:none; 
	outline:none;
	color:#222; 
}

.clear { clear:both; }
.left { float:left; }
.right { float:right; }
.center { margin:0 auto; }
.show { display:block; }
.hide { display:none; }
.txt-left { text-align:left; }
.txt-right { text-align:right; }
.txt-center { text-align:center; }
.capitalize { text-transform:capitalize; }
.uppercase { text-transform:uppercase; }
.lowercase { text-transform:lowercase; }
h1,h2,h3,h4,h5,h6 { font-weight:600; }

.ellipsis {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.green { color:#149803; }
.red { color:#c52026; }

/*
////////// Tweaks
*/

input::-moz-focus-inner { border:0; }
::-webkit-scrollbar { height:0 !important; width:0 !important; }

/*
////////// Logo
*/

div#logo { 
	height:55px; 
	width:150px; 
	background:url(../img/logo_admin@2x.png) top left no-repeat; 
	background-size:150px 55px;
}

div#logo_login {
	margin:20px 0;
	width:150px;
	height:75px;
	background:url(../img/logo_login@2x.png) bottom left no-repeat;
	background-size:150px 75px;
}

/*
////////// Effects & Tools
*/

.dark { background:#fbfbfb; }
.light { background:#fff; }
.yellow { background:#fefded; }
.highlight { background-color:#ffff99; }
.highlighted { background-color:#fffcda; }
.marked { background-color:#ffb2b2; }

a,
a:hover,
input[type=submit],
input[type=submit]:hover { 
	transition:background 0.5s; 
}

.flash { 
	-moz-animation:flash 2s ease-out; 
	-moz-animation-iteration-count:1; 
	-webkit-animation:flash 2s ease-out; 
	-webkit-animation-iteration-count:1; 
	-ms-animation:flash 2s ease-out; 
	-ms-animation-iteration-count:1; 
}

@-webkit-keyframes flash { 
	0% { background-color:none; } 
	50% { background-color:#fbf8b2; } 
	100% {background-color:none; } 
}

@-moz-keyframes flash { 
	0% { background-color:none; } 
	50% { background-color:#fbf8b2; } 
	100% { background-color:none; } 
}

@-ms-keyframes flash { 
	0% { background-color:none;} 
	50% { background-color:#fbf8b2; } 
	100% { background-color:none; } 
}

.dot-top { border-top:1px dotted #ccc; }
.dot-bottom { border-bottom:1px dotted #ccc; }

div#loading { 
	position:absolute; 
	height:100px; 
	width:100px; 
	top:0; 
	right:0; 
	bottom:0; 
	left:0; 
	margin:auto; 
	background:url(../img/loading_big.gif) center center no-repeat transparent; 
	background-size:100px 100px; 
	z-index:100; 
}

div#spinner {
	margin:0 auto; 
	width:500px; 
	height:300px; 
	background:url(../img/loading_big.gif) center center no-repeat transparent; 
	background-size:50px 50px; 
}

div.spinner-grid {
	margin:10px 0; 
	width:100%; 
	height:30px; 
	background:url(../img/loading_big.gif) center center no-repeat transparent; 
	background-size:30px 30px; 
}

div#loader { 
	margin:0 auto 20px auto; 
	width:50px; 
	height:50px; 
	background:url(../img/loading_big.gif) center center no-repeat transparent; 
	background-size:50px 50px; 
}

/*
////////// Form Elements
*/

input,
textarea { 
	-webkit-appearance:none;
	font-family:inherit;
}

input:focus,
textarea:focus { 
	outline:none; 
}

input[type=radio] { 
	float:left; 
	border:none; 
}

select,
input[type=text],
input[type=password] { 
	height:30px; 
	width:100%; 
	padding:0 8px; 
	border:1px solid #ddd; 
	border-radius:4px; 
	background:#fff;
	font-size:12px;
}

input[type=text].big {
	height:35px;
	padding:0 8px;
}

textarea { 
	width:100%; 
	padding:8px; 
	border:1px solid #ddd; 
	border-radius:4px; 
	background:#fff; 
	resize:none;
	font-size:12px;
}

input[type=checkbox],
input[type=radio] { 
	display:none; 
}

input[type=checkbox] + label.check,
input[type=radio] + label.check,
div.checkbox {
	display:block; 
	height:18px; 
	width:18px; 
	font-size:11px; 
	color:#666; 
	line-height:18px; 
	border-radius:4px; 
	border:1px solid #ddd; 
	vertical-align:middle; 
	background:#fff; 
	cursor:pointer; 
}

input[type=checkbox]:checked + label.check,
input[type=radio]:checked + label.check,
div.checkbox.check { 
	background:url(../img/check@2x.png) center center no-repeat #fff; 
	background-size:16px 16px; 
}

input[type=checkbox] + label.lang,
input[type=radio] + label.lang {
	display:block;
	height:25px;
	width:25px;
	line-height:23px;
	text-align:center;
	color:#555;
	border-radius:4px;
	border:1px solid #ccc;
	background:#fff;
}

input[type=checkbox]:checked + label.lang,
input[type=radio]:checked + label.lang {
	background:#c52026;
	border:none;
	color:#fff;
}

input[type=radio] + label.level {
	float:left;
	margin:0 3px 0 0;
	display:block;
	height:25px;
	width:25px;
	line-height:25px;
	text-align:center;
	color:#555;
	border-radius:4px;
	border:1px solid #ccc;
	background:#fff;
}

input[type=radio]:checked + label.level {
	background:#c52026;
	border:none;
	color:#fff;
}

div.color-box {
	height:30px;
	width:30px;
	border-radius:4px;
	border:1px solid #ddd;
}

div.color-box div.sample {
	margin:4px;
	height:20px;
	width:20px;
}

/*
////////// Validator
*/

label.error,
p.error { 
	float:right; 
	padding:2px;
	color:#c52026;
	font-size:11px; 
}

div#check_class label.error,
div#radio_release label.error,
div#check_pay label.error { 
	float:none;
	font-size:18px;
	line-height:18px;
	color:#c52026;
	font-weight:bold;
}

input#tot_quote.error,
input.quote_value.error { 
	border-color:#c52026; 
}

input.list.error {
	color:#c52026;
}

/*
////////// Buttons
*/

a.text,
a.text-big,
a.icon,
a.icon-med,
a.icon-big,
a.toggle,
input.text,
input.text-big,
input.icon,
input.icon-med,
input.icon-big,
button.text,
button.text-big,
button.icon,
button.icon-med,
button.icon-big {
	display:block;
	cursor:pointer;
	text-align:center;
	text-decoration:none;
	color:#555;
	border:1px solid #ccc;
	border-radius:4px; 
	background: #fff; 
	background: -moz-linear-gradient(top,  #fff 0%, #ddd 100%); 
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#ddd)); 
	background: -webkit-linear-gradient(top,  #fff 0%,#ddd 100%); 
	background: -o-linear-gradient(top,  #fff 0%,#ddd 100%); 
	background: -ms-linear-gradient(top,  #fff 0%,#ddd 100%); 
	background: linear-gradient(to bottom,  #fff 0%,#ddd 100%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#ddd',GradientType=0 ); 
}

a.text:hover,
a.text-big:hover,
a.icon:hover,
a.icon-med:hover,
a.icon-big:hover,
a.toggle:hover,
a.toggle#active,
input.text:hover,
input.text-big:hover,
input.icon:hover,
input.icon-med:hover,
input.icon-big:hover,
button.text:hover,
button.text-big:hover,
button.icon:hover,
button.icon-med:hover,
button.icon-big:hover {
	color:#222;
	background: #ddd; 
	background: -moz-linear-gradient(top,  #ddd 0%, #fff 100%); 
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ddd), color-stop(100%,#fff)); 
	background: -webkit-linear-gradient(top,  #ddd 0%,#fff 100%); 
	background: -o-linear-gradient(top,  #ddd 0%,#fff 100%); 
	background: -ms-linear-gradient(top,  #ddd 0%,#fff 100%); 
	background: linear-gradient(to bottom,  #ddd 0%,#fff 100%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ddd', endColorstr='#fff',GradientType=0 ); 
}

a.text,
input.text,
button.text {
	height:30px;
	min-width:75px;
	padding:0 10px;
	text-transform:capitalize;
	line-height:28px;
}

a.text-big,
input.text-big,
button.text-big {
	height:35px;
	min-width:75px;
	padding:0 10px;
	text-transform:capitalize;
	line-height:33px;
}

a.icon,
input.icon,
button.icon {
	padding:0;
	height:25px;
	width:25px;
	white-space:nowrap;
}


a.icon-med,
input.icon-med,
button.icon-med {
	padding:0;
	height:30px;
	width:30px;
	font-size:16px;
	white-space:nowrap;
}

a.icon-big,
input.icon-big,
button.icon-big {
	padding:0;
	height:35px;
	width:35px;
	white-space:nowrap;
}

a.button {
	padding:0;
	height:23px;
	width:23px;
	line-height:21px;
	text-align:center;
	color:#555;
}

a.button:hover {
	color:#222;
}

a.icon {
	line-height:23px;
}

a.icon-med {
	line-height:28px;
}

a.icon-big {
	line-height:33px;
}

.ok { display:block; height:22px; color:#9ee59e; }
.ko { display:block; height:22px; color:#e6a0a0; }

/*
////////// Margins
*/

.ml-5 { margin-left:5px; }
.ml-10 { margin-left:10px; }
.ml-15 { margin-left:15px; }
.ml-20 { margin-left:20px; }
.mr-5 { margin-right:5px; }
.mr-10 { margin-right:10px; }
.mr-15 { margin-right:15px; }
.mr-20 { margin-right:20px; }
.mb-5 { margin-bottom:5px; }
.mb-10 { margin-bottom:10px; }
.mb-15 { margin-bottom:15px; }
.mb-20 { margin-bottom:20px; }
.mt-5 { margin-top:5px; }
.mt-10 { margin-top:10px; }
.mt-15 { margin-top:15px; }
.mt-20 { margin-top:20px; }

/*
////////// Paddings
*/

.pl-5 { padding-left:5px; }
.pl-10 { padding-left:10px; }
.pl-15 { padding-left:15px; }
.pl-20 { padding-left:20px; }
.pr-5 { padding-right:5px; }
.pr-10 { padding-right:10px; }
.pr-15 { padding-right:15px; }
.pr-20 { padding-right:20px; }
.pb-5 { padding-bottom:5px; }
.pb-10 { padding-bottom:10px; }
.pb-15 { padding-bottom:15px; }
.pb-20 { padding-bottom:20px; }
.pt-5 { padding-top:5px; }
.pt-10 { padding-top:10px; }
.pt-15 { padding-top:15px; }
.pt-20 { padding-top:20px; }

/*
////////// Page Containers & Wrappers
*/

header {
	width:100%;
	height:65px;
	padding:5px 0;
	background:#fff;
	border-bottom:1px solid #e9e9e9;
}

footer {
	position:fixed;
	bottom:0;
	z-index:9999;
	background:#fff;
	border-top:1px solid #e9e9e9;
	width:100%;
	font-size:10px;
	line-height:20px;
	text-align:center;
}

div.wrapper { 
	margin:0 auto;
	padding:0 20px;
	width:calc(100% - 30px);
	min-width:1100px;
}

div.wrapper-login {
	margin:100px auto;
	width:150px;
}

div.menu-container {
	height:42px;
	width:100%;
	background:#fff; 
	border-bottom:1px solid #ddd;
	z-index:8010;
}

div.scroll-container {
	width:100vw;
	overflow-x:scroll;
}

div.table-container { 
	padding:20px;
	margin:0 auto 40px auto;
	width:calc(100% - 30px);
	min-width:2000px;
}

div.main-container { 
	padding:20px;
	margin:0 auto 40px auto;
	width:calc(100% - 30px);
	min-width:1100px;
}

div.grid-container { 
	padding:20px;
	margin:0 auto 40px auto;
	width:calc(100% - 30px);
	min-width:1100px;
}

div.bc-container {
	width:100%;
	height:75px; 
	padding:10px; 
	background:#f5f5f5; 
	border-bottom:1px solid #ccc;
	z-index:8009;
}

div.button-bar { 
	margin:0 0 10px 0; 
	width:100%;
}

/*
////////// Common Elements
*/

div.separator { 
	margin:10px 0; 
	height:2px; 
	width:100%; 
	background:#ccc; 
	border-bottom:1px solid #fff; 
}

p.title { 
	padding:0 0 0 10px;
	line-height:35px;
	font-size:20px;
	color:#222;
}

p.subtitle { 
	padding:0 0 0 10px;
	font-size:20px;
	line-height:40px;
	color:#222;
}

/*
////////// Login
*/

p#error { 
	display:none; 
	padding:0 0 10px 0; 
	text-align:center; 
	font-size:10px; 
	color:#cc0000; 
}

/*
////////// Breadcrumb
*/

p#bc_link { 
	float:left;
	line-height:20px; 
	color:#444; 
}

p#bc_link span { 
	padding:0 3px 0 2px;
	color:#444;
}

p#bc_link a { 
	color:#444; 
}

p#bc_link a:hover { 
	color:#111; 
}

p#bc_title { 
	float:left; 
	padding:2px 0 0 0; 
	font-size:24px;
	color:#222; 
}

p#bc_object { 
	float:right;
	font-size:24px;
	color:#222; 
}

/*
////////// Notice Box
*/

div.error_box,
div.success_box,
div.warn_box { 
	margin:10px 0 20px 0; 
	font-family:'DroidSans';
}

div.error_box {	
	border:1px solid #e6a0a0; 
	background:#f7e2e2;
}

div.success_box { 
	border:1px solid #9ee59e;
	background:#e2f7e2;
}

div.warn_box { 
	border:1px solid #fde800; 
	background:#fffcda;
}

div.error_box div.wrp,
div.success_box div.wrp,
div.warn_box div.wrp { 
	padding:15px; 
}

div.error_box p,
div.success_box p,
div.warn_box p { 
	font-size:16px;
	color:#050708;
}

div.error_box ul,
div.success_box ul,
div.warn_box ul {
	list-style-type:disc; 
	margin:10px 0 0 15px; 
	color:#050708; 
	line-height:20px; 
}

/*
////////// Main Menu & Editor Menu & Toggle Menu
*/

nav ul { 
	list-style:none; 
	position:relative;
}

nav ul::after { 
	content: ""; 
	clear:both; 
	display:block; 
}

nav ul > li { 
	float:left;
	margin:0 10px 0 0;
}

nav ul li:hover > ul { 
	display:block; 
}

nav ul li.single:hover,
nav ul li.multi:hover {
}

nav ul li:hover a { 
	color:#5f5f5f; 
}
nav ul li a { 
	display:inline-block; 
	height:40px; 
	line-height:40px;
	font-size:12px; 
	color:#5f5f5f;
	padding:0 10px;
	font-weight:400;
}

nav ul ul {
	display: none;
	position: absolute;
    top:100%;
	padding:5px;
	background:#fff;
	min-width:120px;
	border:1px solid #d8dee4;
    box-shadow:0 5px 5px -5px rgba(0, 0, 0, 0.1);
    z-index:9999;
}

nav ul ul::before {
    border-bottom:8px solid #d8dee4;
    border-left:8px solid transparent;
    border-right:8px solid transparent;
    content:"";
    display:inline-block !important;
    left:14px;
    position:absolute;
    right:auto;
    top:-8px;
	box-shadow:0 5px 5px -5px rgba(0, 0, 0, 0.1);
}

nav ul ul::after {
    border-bottom:7px solid #fff;
    border-left:7px solid transparent;
    border-right:7px solid transparent;
    content:"";
    display:inline-block !important;
    left:15px;
    position:absolute;
    right:auto;
    top:-7px;
}

nav ul ul li { 
	float:none; 
	position:relative; 
	height:30px; 
	margin:0; 
}

nav ul ul li a {
	display:block;
	height:30px;
	line-height:30px;
	padding:0 10px; 
	color:#5f5f5f; 
}

nav ul ul li a:hover { 
	background:#f7f7f7;
	color:#262626;
}

nav ul ul ul { 
	position:absolute; 
	left:100%; 
	top:0; 
}

div.editor-menu { 
	margin:0 0 10px 0; 
	height:35px; 
}

div.editor-menu ul { 
	list-style:none; 
	display:inline-table; 
	border-top:1px solid #ccc; 
	border-left:1px solid #ccc; 
	border-bottom:1px solid #ccc; 
	height:33px; 
	background: #fff; background: -moz-linear-gradient(top,  #fff 0%, #ddd 100%); 
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#ddd)); 
	background: -webkit-linear-gradient(top,  #fff 0%,#ddd 100%); 
	background: -o-linear-gradient(top,  #fff 0%,#ddd 100%); 
	background: -ms-linear-gradient(top,  #fff 0%,#ddd 100%); 
	background: linear-gradient(to bottom,  #fff 0%,#ddd 100%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#ddd',GradientType=0 );
}

div.editor-menu ul li { 
	float:left; 
}

div.editor-menu ul a,
div.editor-menu ul li input[type=submit] { 
	display:block; 
	padding:0 10px; 
	min-width:80px; 
	height:33px; 
	line-height:33px; 
	color:#555; 
	border-top:none; 
	border-bottom:none; 
	border-left:1px solid #fff; 
	border-right:1px solid #ccc; 
	border-radius:0; 
	text-align:center; 
}

div.editor-menu ul li a:hover,
div.editor-menu ul li a#active { 
	color:#222;
	background: #ddd; 
	background: -moz-linear-gradient(top,  #ddd 0%, #fff 100%); 
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ddd), color-stop(100%,#fff)); 
	background: -webkit-linear-gradient(top,  #ddd 0%,#fff 100%); 
	background: -o-linear-gradient(top,  #ddd 0%,#fff 100%); 
	background: -ms-linear-gradient(top,  #ddd 0%,#fff 100%); 
	background: linear-gradient(to bottom,  #ddd 0%,#fff 100%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ddd', endColorstr='#fff',GradientType=0 );
}

ul.toggle { 
	display:inline-block;
	list-style-type:none;
}

ul.toggle li { 
	float:left; 
	margin:0 5px 0 0;
}

ul.toggle li a {
	width:30px;
	line-height:28px;
}

/*
////////// Grids
*/

table.grid {
	border-collapse:collapse;
	width:100%;
    transition: box-shadow 0.2s ease-in 0s;
	border:1px solid #e9e9e9;
    box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
}

table.grid tr.row:hover {
	background:#ffffcc; 
}

table.grid.tabular tr.odd:hover,
table.grid.tabular tr.even:hover {
	background:#ffffcc;
}

table.grid td {
	height:35px;
	line-height:25px;
	vertical-align:middle;
	padding:5px 8px;
	border:1px solid #f0f0f0;
}

table.grid td p {
	line-height:normal;
}

table.grid td div.img {
	width:85px;
	height:125px;
	margin:0 auto;
}

table.grid td div.no-img {
	width:85px;
	height:125px;
	margin:0 auto;
	padding:35px 0 0 0;
	background:#f4f4f4;
	color:#666;
	font-size:12px;
	text-align:center;
}

table.grid td.bold {
	font-size:12px;
	text-transform:uppercase;
	font-weight:500;
	letter-spacing:0.5px;
}

table.grid td.action {
	padding:5px;
}

table.grid td.input {
	padding:0 8px;
}

table.grid td.lvl {
	padding:0;
	background:#fff;
}

table.grid td.lvl div.l1 {
	background:#c52026;
	color:#fff;
	width:100%;
	height:35px;
	line-height:35px;
	padding:0 0 0 15px;
}

table.grid td.lvl div.l2 {
	background:#dc797d;
	color:#fff;
	width:calc(100% - 35px);
	height:35px;
	line-height:35px;
	margin:0 0 0 35px;
	padding:0 0 0 15px;
}

table.grid td.lvl div.l3 {
	background:#f3d2d4;
	color:#000;
	width:calc(100% - 70px);
	height:35px;
	line-height:35px;
	margin:0 0 0 70px;
	padding:0 0 0 15px;
}

table.grid td.lvl div.l4 {
	background:#f4f4f4;
	color:#000;
	width:calc(100% - 105px);
	height:35px;
	line-height:35px;
	margin:0 0 0 105px;
	padding:0 0 0 15px;
}

div.expand {
	padding:10px 5px;
}

div.expand div.type {
	float:left;
	color:#666;
	line-height:33px;
	height:35px;
	width:35px;
	border:1px solid #f0f0f0;
	background:#fff;
	margin:0 3px 0 0;
	font-size:21px;
	text-align:center;
}

div.expand div.table {
	float:left;
	width:calc(100% - 38px);
}

div.expand p.empty {
	color:#282828;
	font-size:11px;
	line-height:33px;
	text-transform:uppercase;
	font-weight:500;
	letter-spacing:0.5px;
	border:1px solid #f0f0f0;
	background:#fff;
	padding:0 10px;
}

table.grid thead,
table.planning thead {
	vertical-align:middle;
	background:#fff;
	color:#282828;
	font-size:11px;
	text-transform:uppercase;
	font-weight:500;
	letter-spacing:0.5px;
}

table.grid thead td,
table.planning thead td {
	height:16px;
	line-height:16px;
}

table.grid thead.no-filter td {
	padding:5px 8px;
	border:1px solid #f0f0f0;
}

table.planning thead td {
	padding:5px 8px;	
}

table.planning td.machinery {
	padding:0 8px;	
}

table.planning td a.job {
	display:block;
	width:100%;
	height:100%;
	line-height:32px;
	border:1px solid #fff;
}

table.planning td a.job span.type {
	background:#fff;
	padding:2px 5px;
	margin:0 5px;
	color:#000;
}

table.grid thead a {
	display:block;
	color:#282828;
}

div.color-sample {
	height:25px;
	width:25px;
	border-radius:4px;
	border:1px solid #ddd;
	background:#fff;
}

div.color-sample div {
	margin:3px;
	height:17px;
	width:17px;
}

/*
////////// Assembly Tree
*/

ul.preview-tree { 
	list-style-type:none;
}

ul.preview-tree li { 
	margin:0 0 2px 0;
	height:37px;
	border:1px solid #ddd;
	background:#fdfdfd;
	line-height:35px;
}

ul.preview-tree li.legend {
	color:#282828;
	font-size:11px;
	text-transform:uppercase;
	font-weight:500;
	letter-spacing:0.5px;
	border:none;
	background:#fff;
}

ul.preview-tree li.legend p {
	border:none;
}

ul.preview-tree li.dark {
	background:#f4f4f4;
}

ul.preview-tree li span.level { 
	display:block;
	height:35px;
	width:35px;
	border-right:1px solid #ddd;
	text-align:center;
}

ul.preview-tree li p { 
	padding:0 10px;
	border-right:1px solid #ddd;
}

ul.preview-tree li p.dual { 
	padding:0 10px;
	border-left:1px solid #ddd;
	border-right:none;
}

ul.preview-tree li p.nb { 
	padding:0 10px;
	border:none;
}

ul.preview-tree li div.right-box { 
	float:right;
	padding:5px;
	border-left:1px solid #ddd;
}

ul.preview-tree li div.right-input { 
	float:right;
	padding:0 5px;
	border-left:1px solid #ddd;
}

ul.preview-tree li div.right-input input[type=text] {
	height:25px;
	line-height:25px;
	margin:5px 0;
}

ul.preview-tree ul,
ul.preview-tree ul ul,
ul.preview-tree ul ul ul,
ul.preview-tree ul ul ul ul,
ul.preview-tree ul ul ul ul ul,
ul.preview-tree ul ul ul ul ul ul { 
	margin-left:37px; 
}

span.level {
	background:#f2f2f2;
	color:#666;
}

span.level.red {
	background:#c52026;
	color:#fff;
}

/*
////////// Editor Boxes
*/

div.col-half { 
	margin:0 0 20px 0;
	width:calc(50% - 10px);
	background:#fff;
    border:1px solid #e9e9e9;
    box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
}

div.col-full,
div.col-media { 
	margin:0 0 20px 0;
	width:100%;
	background:#fff;
    border:1px solid #e9e9e9;
    box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
}

div.col-btn { 
	width:100%; 
	padding:15px; 
	background:#fff;
    border:1px solid #e9e9e9;
    box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
}

div.col-half h2,
div.col-full h2,
div.col-media h2 { 
	color:#212121;
	margin:0 10px; 
	font-size:12px; 
	line-height:40px;
	letter-spacing:0.5px;
	padding:0 0 0 2px;
	border-bottom:1px solid #ccc;
	text-transform:uppercase;
}

div.col-half h2.nb,
div.col-full h2.nb,
div.col-media h2.nb { 
	border:none;
}

div.col-half div.wrp,
div.col-full div.wrp {
	
}

div.col-half div.wrp div.form,
div.col-full div.wrp div.form {
	padding:15px 18px;
}

div.col-full div.wrp div.scroll {
	margin:0 auto;
	padding:15px 0;
	overflow-x:scroll;
	width:calc(100% - 36px);
}

div.col-full div.wrp div.scroll div.table {
	width:100%;
	min-width:1800px;
}

div.col-half div.wrp div.box,
div.col-full div.wrp div.box {
	padding:10px;
}

div.col-full div.wrp div.media {
	padding:15px 22px;
	height:200px;
	overflow-y:auto;
}

div.col-half div.form .redactor-box,
div.col-full div.form .redactor-box {
	border: 1px solid #ddd;
}

div.col-half div.form .redactor-toolbar,
div.col-full div.form .redactor-toolbar {
	border-top:none;
}

div.inline {
	padding:5px 10px;
	color:#444; 
	line-height:30px;
}

div.field { 
	display:table; 
	padding:5px 0;
	height:30px;
	width:100%; 
}

div.field p.label {
	float:left;
	font-size:11px; 
	color:#222;
	line-height:30px;
	min-width:150px;
}

div.field div.input,
div.field div.check {
	float:right;
	width:calc(100% - 150px);
}

div.field div.input-color {
	float:right;
	width:calc(100% - 190px);
}

div.field div.check {
	padding:2.5px 0 0 0;
}

div.check-list { 
	float:left; 
	width:119px; 
	padding:0 5px; 
}

div.check-list p.menu { 
	margin:0 0 5px 0; 
	font-size:12px; 
	line-height:30px; 
	border-bottom:1px solid #eee; 
	text-align:center; 
}

div.check-list p.label { 
	float:left; 
	font-size:9px; 
	color:#222; 
	line-height:25px; 
}

div.check-list div.check { 
	float:left; 
	padding:3px 5px 0 0; 
}

div.sep-list { 
	float:left; 
	height:200px; 
	width:1px; 
	background:#eee; 
}

/*
////////// Media Boxes
*/

p.no-result { 
	line-height:100px;
	font-size:14px;
	text-align:center;
	color:#666;
}

iframe#downloadBox { 
	display:none; 
	visibility:hidden;
}

ul.media-box {
	list-style-type:none;
}

ul.media-box li {
	display:inline-block;
	margin:5px;
	width:95px;
	padding:4px;
	border:1px solid #ddd;
	background:#fff;
}

ul.media-box li div.img {
	width:85px;
	height:125px;
}

ul.media-box li p.num {
	line-height:18px;
	border:1px solid #ddd;
	margin:2px 0 4px 0;
	text-align:center;
}

/*
////////// Popups
*/

div.popup { 
	min-width:300px;
	max-width:600px; 
}

div.popup-large {
	width:900px;
}

div.popup-debug {
	width:900px;
	height:600px;
	overflow:hidden;
}

div.popup h2,
div.popup-large h2,
div.popup-debug h2 { 
	color:#212121;
	margin:0 10px; 
	font-size:12px; 
	line-height:40px;
	letter-spacing:0.5px;
	padding:0 0 0 2px;
	border-bottom:1px solid #ccc;
	text-transform:uppercase;
}

div.popup h2 a,
div.popup-large h2 a,
div.popup-debug h2 a {
	margin-top:10px;
}

div.popup input[type=text],
div.popup input[type=password],
div.popup textarea {
	min-width:300px;
}

div.popup-large div.box,
div.popup div.box { 
	padding:15px; 
}

div.popup-debug div.box {
	margin:15px;
	width:870px;
	height:530px;
	overflow:auto;
}

div.popup div.box-media { 
	padding:15px 30px; 
}

div.popup p.empty {
	line-height:60px;
	text-align:center;
}

div.popup div.box p.det { 
	margin:0 0 20px 5px;
	line-height:1.5;
}

div.popup div.box p.txt {
	line-height:1.5;
	text-align:center;
	margin:10px 0 15px 0;
}

div.popup div.separator { 
	margin:10px 0; 
	height:1px; 
	width:100%; 
	background:#ccc;
	border:none;
}

/*
////////// Uploader
*/

div#files_uploaded { display:none; }

p#counter { 
	width:30px; 
	height:30px; 
	line-height:28px; 
	border:1px solid #ddd; 
	border-radius:4px; 
	color:#222; 
	text-align:center; 
}

.uploadifive-button {
	box-sizing:content-box;
	padding:0 5px;
	text-transform:capitalize;
	cursor:pointer;
	text-align:center;
	text-decoration:none;
	color:#555;
	font-size:11px;
	line-height:28px;
	border:1px solid #ccc;
	border-radius:4px; 
	background: #fff; 
	background: -moz-linear-gradient(top,  #fff 0%, #ddd 100%); 
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#ddd)); 
	background: -webkit-linear-gradient(top,  #fff 0%,#ddd 100%); 
	background: -o-linear-gradient(top,  #fff 0%,#ddd 100%); 
	background: -ms-linear-gradient(top,  #fff 0%,#ddd 100%); 
	background: linear-gradient(to bottom,  #fff 0%,#ddd 100%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#ddd',GradientType=0 );
}

.uploadifive-button:hover {
	color:#222;
	background: #ddd; 
	background: -moz-linear-gradient(top,  #ddd 0%, #fff 100%); 
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ddd), color-stop(100%,#fff)); 
	background: -webkit-linear-gradient(top,  #ddd 0%,#fff 100%); 
	background: -o-linear-gradient(top,  #ddd 0%,#fff 100%); 
	background: -ms-linear-gradient(top,  #ddd 0%,#fff 100%); 
	background: linear-gradient(to bottom,  #ddd 0%,#fff 100%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ddd', endColorstr='#fff',GradientType=0 );
}

.uploadifive-queue-item {
	background-color: #F5F5F5;
	border: 1px solid #ddd;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	margin-top:5px;
	width:100%;
	padding: 10px;
}

.uploadifive-queue-item .close {
	background: url(../img/cancel_icon.png) 0 0 no-repeat;
	float: right;
	height:	16px;
	text-indent: -9999px;
	width: 16px;
}

.uploadifive-queue-item .progress {
	background-color: #E5E5E5;
	margin-top: 10px;
	height: 3px;
	width: 100%;
}

.uploadifive-queue-item .progress-bar {
	background:#333;
	height:3px;
	width:1px;
}

div#queue-multi {
	margin:5px 0;
	border:1px dashed #ddd;
	border-radius:4px;
	padding:10px;
	min-height:120px;
	background:url(../img/dnd@2x.png) center center no-repeat #fff;
}

/*
////////// Pagination
*/

div.pagination {
	margin:15px 0;
}

div.pagination ul {
    border-radius: 4px;
    margin:10px 0;
    padding-left:0;
	list-style:none;
}

div.pagination ul > li:first-child > a {
	border-radius:4px 0 0 4px;
    margin-left:0;
}

div.pagination ul > li:last-child > a,
div.pagination ul > li:last-child > p {
	border-radius:0 4px 4px 0;
    margin-left:-1px;
}

div.pagination ul > li > a,
div.pagination ul > li > p {
	float:left;
    background:#fff;
    border:1px solid #ddd;
    color:#555;
    margin-left:-1px;
    padding:6px 12px;
    position:relative;
}

div.pagination ul > li > a:hover {
    background:#f7f7f7;
	color:#222;
}

div.pagination ul > li > a#active {
    background:#c52026;
	border-color:#c52026;
	color:#fff;
}

div.pagination p.total {
	float:right;
	border:1px solid #ddd;
	border-radius:4px;
	padding:6px 12px;
	text-align:center;
	background:#fff;
}

/*
////////// Info Box
*/

div.box_info { margin:20px 0 0 0; height:26px; padding:0 15px; }
div.sep { margin:20px 5px 0 5px; height:26px; width:1px; border-right:1px dotted #ccc; }
div.box_info p.label { font-size:9px; line-height:10px; color:#666; }
div.box_info p.info { color:#222; font-size:10px; }

/*
////////// Header Info
*/

div#header_info { margin:2.5px; }
div#header_info span.com { font-size:13px; padding:0 0 2px 0; }
div#header_info span.lbl { font-size:11px; color:#666; font-style:italic; }
div#header_info span.txt { font-size:11px; color:#222; }

/*
////////// Translations
*/

p.key { 
	width:75px;
	color:#666;
}

div.value {
	width:calc(100% - 100px);
}

textarea.trad.warn,
textarea.trad.error {
	border:1px solid #fde800;
	background:#fffcda; 
}

/*
////////// Responsivness
*/

@media only screen and (min-width: 320px) and (max-width: 1200px) {
	.hideable {
		display:none;
	}
}

@media only screen and (min-width: 320px) and (max-width: 1600px) {
	div.wrapper,
	div.main-container,
	div.grid-container { 
		width:98%;
	}
}