body.model_dashboard .main_submenu {
	border: 0;
}

body.model_dashboard .main_panel {
	position: static;
	top: 0;
}

#dashboard {
	background: #f8fafd;
	min-height: 100%;
	margin: 0 -10px;
	padding: 0 10px;
	min-height: calc(100vh - 80px);
}

#dashboard:after {
	clear: both;
	content: '';
	display: block;
	height: 30px;
}

#dashboard .row-fluid {
	padding: 0;
}


#dashboardQuick {
}

.dashboardQuickBox {
	padding: 10px 0;
}

.dashboardQuickBox:hover {
	/*background: #ffffff;*/
}

.dashboardQuickBoxIcon {
	background: url() right 10px no-repeat;
	background-size: auto 50%;
	height: 230px;
	overflow: hidden;
	position: relative;
	transition: background-position 100ms ease-in-out;
	border-radius: 4px;
}

.dashboardQuickIconWarehouse	.dashboardQuickBoxIcon { background-image: url('../img/dashboard/icon-warehouse.svg'); }
.dashboardQuickIconContacts		.dashboardQuickBoxIcon { background-image: url('../img/dashboard/icon-crm.svg'); }
.dashboardQuickIconSales		.dashboardQuickBoxIcon { background-image: url('../img/dashboard/icon-sale.svg'); }
.dashboardQuickIconBuys			.dashboardQuickBoxIcon { background-image: url('../img/dashboard/icon-purchase.svg'); }
.dashboardQuickIconFinance		.dashboardQuickBoxIcon { background-image: url('../img/dashboard/icon-finance.svg'); }
.dashboardQuickIconTransport	.dashboardQuickBoxIcon { background-image: url('../img/dashboard/icon-logistic.svg'); }
.dashboardQuickIconContent		.dashboardQuickBoxIcon { background-image: url('../img/dashboard/icon-content.svg'); }

.dashboardQuickBox:hover .dashboardQuickBoxIcon {
	background-position: right 20px;
}

.dashboardQuickBoxName {
	color: #303030;
	font: 21px/30px 'open sans';
	padding: 10px;
	transition: color 100ms ease-in-out;
}

.dashboardQuickBox:hover .dashboardQuickBoxName {
	color: #007ce8;
}

.dashboardQuickBoxLinks {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	/* background-color: rgba(187, 198, 213, 0.3) !important; */
}

.dashboardQuickBoxLinks > div {
	position: relative;
}

.dashboardQuickBoxLinks > div > a.link1 {
	background-color: rgba(255,255,255,0.8);
	color: #223a50;
	display: block;
	font: 15px/25px 'open sans';
	padding: 5px 50px 5px 10px;
	text-decoration: none;
	transition: all 100ms ease-in-out;
}

.dashboardQuickBox:hover .dashboardQuickBoxLinks > div > a.link1 {
	background-color: rgba(19,32,61,0.9);
	color: #fff;
}

.dashboardQuickBox:hover .dashboardQuickBoxLinks > div:hover > a.link1 {
	background-color: #007CE8;
	color: #fff;
	padding: 5px 45px 5px 15px;
}

.dashboardQuickBoxLinks > div > a.link2 {
	content: '';
	background: url('../img/dashboard/filters-plus.svg') center center no-repeat;
	display: none;
	height: 35px;
	position: absolute;
	right: 0;
	top: 0;
	transition: transform 200ms ease-in-out;
	width: 35px;
	background-size: 24px;
}
.dashboardQuickBox:hover .dashboardQuickBoxLinks > div:hover > a.link2 {
	display: block;
}
/* .dashboardQuickBox:hover .dashboardQuickBoxLinks > div > a.link2 {
	background-position: right top;
} */

.dashboardQuickBox:hover .dashboardQuickBoxLinks > div > a.link2:hover {
	transform: rotate(90deg);
	/* background-position: right bottom; */
}


#dashboardWidget {
}

.dashboardWidgetBox {
	margin-top: 30px;
	padding: 0px;
}

.dashboardWidgetBoxHeader {
	background: #007ce8;
	border-radius: 4px 4px 0px 0px;
}

.dashboardWidgetBoxTitle > h3 {
	color: #fff;
	font: 16px/30px 'open sans';
	margin: 0;
	padding: 5px 10px;
}

.dashboardWidgetBoxMinimize {
	/* background: #e6eaf1; */
	border-radius: 0px 4px 0px 0px;
}
.dashboardWidgetBoxMinimize > a {
	background: url(../img/dashboard/arrow.svg) center center no-repeat;
	display: block;
	height: 40px;
	opacity: 0.8;
	text-align: center;
	transition: all 200ms;
	transform: rotate(0deg);
	width: 40px;
}
.dashboardWidgetBox.active .dashboardWidgetBoxMinimize > a {
	transform: rotate(-180deg);
}
.dashboardWidgetBoxMinimize > a:hover {
	opacity: 1;
	text-decoration: none;
}

.dashboardWidgetBoxSelect > select {
	background-color: #007ce8;
	display: block;
	float: left;
	width: 90px;
	color: #fff;
}
.dashboardWidgetBoxSelect > select:hover {
	background-color: #0066bf;
}
.dashboardWidgetBoxSelect > select.prettySelect:focus {
	background-color: #fff;
}
/* .dashboardWidgetBoxSelect > select[data-filter-name="type"] {
	display: none;
} */
.dashboardWidgetBoxMenu {
	background: #223a50;
	display: none;
	overflow: hidden;
}
.dashboardWidgetBox.active .dashboardWidgetBoxMenu {
	display: block;
}

.dashboardWidgetBoxTabs > a {
	color: #fff;
	display: block;
	float: left;
	font: 14px/30px 'open sans';
	padding: 5px 10px;
}
.dashboardWidgetBoxTabs > a:hover {
	background: #43576A;
	text-decoration: none;
}
.dashboardWidgetBoxTabs > a.active {
	background: #fff;
	color: #333;
}

.dashboardWidgetBoxSearch {
	height: 40px;
	position: relative;
	width: 40px;
}
.dashboardWidgetBoxSearch > a {
	background: #223A50;
	color: #fff;
	display: block;
	font: 16px/40px 'open sans';
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	width: 40px;
	z-index: 2;
}
.dashboardWidgetBoxSearch > a:hover {
	color: #fff;
	text-decoration: none;
}
.dashboardWidgetBoxSearch > a > i {
	opacity: 0.8;
}
.dashboardWidgetBoxSearch > a:hover > i {
	opacity: 1;
}
.dashboardWidgetBoxSearch > div {
	background: #223A50;
	position: absolute;
	padding: 5px;
	left: 0;
	top: 0;
	transition: all 200ms ease-in-out;
	z-index: 1;
}
.dashboardWidgetBoxSearch.active > div {
	left: -200px;
}
.dashboardWidgetBoxSearch > div > input {
	background: none;
	border: 1px solid #667786;
	color: #fff;
	font: 14px/20px 'open sans';
	height: 20px;
	opacity: 0.8;
	padding: 4px 9px;
	transition: none;
	width: 170px;
}
.dashboardWidgetBoxSearch > div > input:hover,
.dashboardWidgetBoxSearch > div > input:focus {
	opacity: 1;
}
.dashboardWidgetBoxSearch > div > input:focus {
	border-color: #BDC4CB;
}

.dashboardWidgetBoxContent {
	background: #ffffff;
	display: none;
	overflow: auto;
	padding: 5px 10px;
	position: relative;
}
.dashboardWidgetBox.active .dashboardWidgetBoxContent {
	display: block;
}
.dashboardWidgetBoxContent > table {
	width: 100%;
}
.dashboardWidgetBoxContent > table th {
	border-bottom: 1px solid #e6e9ec;
	color: #333;
	font-weight: 400;
	padding: 5px;
	white-space: nowrap;
}
.dashboardWidgetBoxContent > table td {
	color: #333;
	padding: 2px 5px;
	white-space: nowrap;
}
.dashboardWidgetBoxContent > table td.button-column {
	display: none;
}
.dashboardWidgetBoxContent > table tr:hover td {
	background: #edeff1;
}

.dashboardWidgetBoxFooter {
	background: #fff;
	display: block;
	padding: 5px 10px;
	position: relative;
}
.dashboardWidgetBox.active .dashboardWidgetBoxFooter {
	display: none;
}
.dashboardWidgetBoxFooter a,
.dashboardWidgetBoxFooter span {
	display: inline-block;
	font-size: 16px;
}
.dashboardWidgetBoxFooter span {
	margin: 5px 10px;
}
.dashboardWidgetBoxFooter a.circle {
	background: #fff;
	margin-left: 5px;
	padding: 2px 5px;
}

.dashboardWidgetBoxContent:after,
.dashboardWidgetBoxFooter:after {
	background: url(../img/ajax-loader.gif) center center no-repeat;
	bottom: 0;
	content: " ";
	display: none;
	left: 0;
	opacity: 0.5;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}
.dashboardWidgetBoxContent:after { background-color: #fff; }
.dashboardWidgetBoxFooter:after { background-color: #d6dade; }
.dashboardWidgetBox.loading .dashboardWidgetBoxContent:after,
.dashboardWidgetBox.loading .dashboardWidgetBoxFooter:after {
	display: block;
}

.table_home {
	margin-top: 0;
}

.home_table {
	margin-top: 30px;
}

.home_table th {
	background: #007ce8;
	font: 16px/30px 'open sans';
}

.home_table td {
	background: #fff;
	padding: 2px 10px;
}

.home_table td.grey {
	background: #223a50;
	opacity: 1;
}
.dashboardWidgetBox, .dashboardQuickBoxIcon {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 10px 0px !important;
	position: relative;
}
.dashboardWidgetBox:hover, .dashboardQuickBoxIcon:hover {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 10px 0px !important;
}
.dashboardWidgetBoxFooter * {
	display: none !important;
}
