.orders__top {
	position: relative;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 0 20px 0;
	margin: 0 0 20px 0;
}
@media (max-width: 992px) {
	.orders__top {
		margin: 20px 0 0;
	}
}
.customerOrders__stats {
	display: inline-flex;
	float: right;
	margin-top: 12px;
	margin-bottom: 22px;
}
.customerOrders__stats .stat {
	border: 1px solid #D8D8D8;
	border-width: 0 0 0 1px;
	padding: 8px 10px;
	color: #6B6C6E;
	font-size: 12px;
}
@media (max-width: 992px) {
	.customerOrders__stats .stat {
		border: 0px;
		width: 100%;
		margin-bottom: 10px;
	}
}
.customerOrders__stats .stat:last-child {
	border-width: 0 2px;
}
.customerOrders__stats .stat__title {
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 700;
}
.statusIcon {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 16px;
	margin-right: 5px;
	box-sizing: border-box;
}
.order .statusIcon {
	min-width: 16px;
}
@media (max-width: 992px) {
	.order .statusIcon {
		position: absolute;
		left: -4px;
	}
}
.customerOrders__stats .statusIcon {
	content: '';
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 10px;
	margin-right: 5px;
	box-sizing: border-box;
}
.statusIcon.new, 
.statusIcon.status_1,
.statusIcon.status_2 {
	background: #F46F64;
}
.customerOrders__stats .statusIcon.pending,
.customerOrders__stats .statusIcon.status_3 {
	border: 2px solid #F46F64;
}
.statusIcon.pending, .statusIcon.status_3 {
	border: 4px solid #F46F64;
	background: none;
}
.customerOrders__stats .statusIcon.sent,
.customerOrders__stats .statusIcon.status_4 {
	border: 2px solid #34C759;
}
.statusIcon.sent,
.statusIcon.status_4 {
	border: 4px solid #34C759;
	background: none;
}
.customerOrders__stats .statusIcon.arrived,
.customerOrders__stats .statusIcon.status_5 {
	background: #34C759;
	border: none;
}
.statusIcon.arrived,
.statusIcon.status_5 {
	background: #34C759;
	border: 3px solid #fff;
}
.customerOrders__stats .statusIcon.return-requested,
.customerOrders__stats .statusIcon.return-in-progress,
.customerOrders__stats .statusIcon.status_6,
.customerOrders__stats .statusIcon.status_7 {
	border: 2px solid #FFA700;
}
.statusIcon.return-requested, .statusIcon.return-in-progress,
.statusIcon.status_6,
.statusIcon.status_7 {
	border: 4px solid #FFA700;
	background: none;
}
.customerOrders__stats .statusIcon.return-complete,
.customerOrders__stats .statusIcon.status_8 {
	background: #FFA700;
	border: none;
}
.statusIcon.return-complete,
.statusIcon.status_8 {
	background: #FFA700;
	border: 4px solid #fff;
}
.orders__search {
	width: 312px;
	position: absolute;
	right: 0px;
	top: 20px;
}
.orders__sort {
	display: inline-block;
}
.orders__sort select {
	display: block;
}
.orders__sort label {
	display: block;
	margin-bottom: 8px;
	font-size: 12px;
	color: #A6A6A6;
}
.orders__main {
	display: table;
	width: calc(100% + 20px);
	font-size: 14px;
	margin-left: -20px;
}
.orders__main .order {
	display: table-row;
	text-decoration: none;
}
.orders__main .order > div {
	display: table-cell;
	vertical-align: middle;
	padding: 5px 5px;
	position: relative;
	font-size: 14px;
	height: 36px;
    line-height: 14px;
	/*border-bottom: 10px solid #F4F3F1;*/
	color: #6B6C6E;
	cursor: pointer;
}
.orders__main .order > .order_link{
    padding: 0px;
}
.orders__main .order > div.order__link {
    padding-top: 3px;
    padding-bottom: 3px;
}
.orders__main .order > div.order__link .bordered-btn {
    padding: 5px 10px !important;
}
.orders__main .order:hover>div {
	background-color: #fff;
	transition: all 0.25s;
}
.orders__main .order .order__view {
	padding: 0px;
	width: 60px;
}
.orders__main .order:hover .order__view .button {
	background-color: #6D7A8D;
	border-color: #6D7A8D;
	color: #fff;
	opacity: 1;
}
.orders__main .order .order__view .button {
	opacity: 0.5;
}
.orders__titles {
	display: table-row;
}
.orders__titles>span {
	display: table-cell;
	color: #808080;
	font-size: 12px;
	padding: 6px 5px 28px;
}
.orders__titles>span:first-child {
	padding-left: 20px;
}
.orders__main .order .order__status {
	padding-left: 45px;
}
.order .order__status .statusIcon {
	position: absolute;
	left: 20px;
	top: 10px;
}
.order .colTitle{
    display: none;
}