@charset "utf-8";

/* ==========================================================================
  GENERAL
========================================================================== */

* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: 'Lora', 'Arial', 'Helvetica', sans-serif;
	font-size: 0.98em;
	font-weight: normal;
}

body{
	background-color: #F4F6F4;
	padding:0px;
	margin:0px;
}

.group{
	display:table;
	content:'';
	clear:both;
}

.htext{
	padding: 50px 30px 10px 30px;
	font-size: 1.4em;
	text-transform: uppercase;
}

.material-icons{
	color: black;
	cursor: pointer;
}

.material-icons:hover{
	color: #8B9C6D;
}

.delete_icon:hover{
	color: #DC143C;
}

.btn{  
    border: 2px solid #8B9C6D;
    background-color: #8B9C6D; 
    color: #ffffff;
    font-size: 0.95em; 
    width: 60px;
    height: 35px;
    border-radius: 5px;
	transition: 0.3s;
}

.btn:hover{
    background-color: #F4F6F4;
    color: #8B9C6D;
    cursor: pointer; 
}

.general_btn{
    width: 110px;
    height: 40px;
}

.btn-danger:active{
	background-color: red;
}

input:focus {
	outline: none;
}

input:focus::placeholder {
  color: transparent;
}


/* ==========================================================================
  LOGIN
========================================================================== */


.login_div{
	width:400px;
	margin:10% auto;
	box-shadow: 0 0 3px #ccc;
}

.company-logo{
	background-color: #ffffff;
	padding: 14px;
}

.company_logo{
	display:inline-block;
	min-width: 150px;
	width:90px;
	height:70px;
}

.table_login{
	width:100%;
	margin-top: 30px;
}

.table_login tr td{
	padding-bottom:10px;
}

.table_login tr td:first-child{
	width:30%;
}

.table_login tr td:last-child{
	width:70%;
}

.input_login{
	width:100%;
	padding:10px 0px;
	padding-left:2%;
}

.login_btn{
	border: 1px solid #8B9C6D;
	width: 100%;
	padding:10px 50px;
	background-color: #8B9C6D;
	color:white;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	box-shadow: 0 0 3px #ccc;
}

.login_btn:hover{
	background-color: #ffffff;
	color: #8B9C6D;
	cursor: pointer;
}

/* Simple CSS3 Fade-in-down Animation */
.login_div {
	-webkit-animation-name: login_div;
	animation-name: login_div;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes login_div {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes login_div {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}


/* ==========================================================================
  HEADER
========================================================================== */


.header{
	background-color: #ffffff;
	padding: 10px 30px;
}

.header_right{
	padding-top: 40px;
	float:right;
	text-align: right;
}

.header_right a {
	text-decoration: none;
	color: #789185;
}

.main_menu{
	background-color:#8B9C6D;
}

.main_menu > ul{
	margin: 0;
    padding-left: 30px;
}

.main_menu > ul > li{
	display: inline-block;
    padding: 15px 0px;
    margin-right: 30px;
	position:relative;
}

.main_menu > ul > li > a{
	letter-spacing: 1px;
	color:white;
	text-decoration:none;
}

.main_menu ul li {
	margin: 5px;
	padding: 10px;
	border-radius: 5px;
}

.main_menu ul li:hover {
	background-color: #76865B;
}

.main_menu  > ul > li:hover > ul{
	display:block;
}

.main_menu > ul > li > ul{
	position: absolute;
    margin: 0px;
    padding: 15px 10px;
    list-style-type: none;
    background-color: #8B9C6D;
    display: none;
    top: 40px;
    left: -11px;
    min-width: 150px;
	z-index: 9;
}

.main_menu > ul > li > ul > li{
	margin-bottom: 15px;
}

.main_menu > ul > li > ul > li > a{
	letter-spacing: 1px;
	color:white;
	text-decoration:none;
}


/* ==========================================================================
  DASHBOARD
========================================================================== */


.dashboard{
	padding: 1%;
    width: 100%;
	display:flex;
}

.dashboard_left{
	width: 20%;
}

.total_order, .sale_week {
	box-shadow: 0 0 3px #ccc;
	width: 100%;
	border-radius: 8px;
}

.total_order{
	background-color:#27a9e3;
}

.sale_week{
	background-color:#28b779;
	margin-top:10px;
}

.icon_div{
	float:left;
	padding:10px;
	width: 30%;
}

.icon_div img{
	width: 100%;
}

.amount_div{
    float: right;
    width: 65%;
    padding: 7% 7% 7% 0;
}

.amount_div h1{
	margin:0px;
	font-size:1.8em;
	font-weight:bold;
	color:white;
	text-align:right;
}

.amount_div p{
    text-align: right;
    color: white;
    font-size: 1em;
    margin: 20px 0 0 0;
}

.order_link, .sale_link {	
	text-align: center;
	margin: 0;
	border-radius: 0 0 8px 8px;
	padding:10px;	
}

.order_link{
	background-color: #30649C;
}

.sale_link{
	background-color: #287B61;
}

.order_link:hover {
	background-color: #2B5A8C;
}

.sale_link:hover {
	background-color: #236C56;
}

.order_link a, .sale_link a  {
	font-size: 0.9em;
	text-decoration:none;
	color:white;
}

.dashboard_right{
	border-radius: 8px;
	box-shadow: 0 0 3px #ccc;
    width: 80%;
    margin-left: 1.5%;
    background-color: #ffffff;
}

.latest_order{
	padding: 10px 20px;
	padding: 10px 0px 10px 20px;
}

.latest_order h1{
	color:black;
	margin:5px 0px 20px 0px;
}

.table_latest_order{
	font-size: 0.92em;
	width:99%;
	border-collapse: collapse;
}

.table_latest_order, th, td{
	border: 1px solid #E8E8E8;
}

.table_latest_order th{
	font-weight: bold;
	border-bottom-width: 3px;
}

.table_latest_order tr td, .table_latest_order tr th{
	padding:10px;
}

.table_latest_order tr td a{
	text-decoration:none;
	color:black;
}

.table_latest_order tbody tr:hover {
    background-color: #E8E8E8;
}

.map{
	padding:10px;
}


/* ==========================================================================
  SALES / ORDER-VIEW / INVOICE
========================================================================== */


.padding_div{
	padding: 10px;
    width: 100%;
}

.padding_div h1{
	color:black;
	margin:0px;
}

.parallel_div{
	display:flex;
	width:100%;
	padding-top: 10px;
}

.parallel_left{
	width:35%;
	margin-right:0.5%;
}

.parallel_right{
	width:65%;
	padding-right: 15px;
}

.parallel_right > .sort_div > h3{
	text-align: right;
	font-size: 1.4em;
	font-weight: 600;
}

.label_search{
    width: 160px;
    display: inline-block;
}

.input_search{
	height: 40px;
	width: 230px;
	padding: 0 10px;
	border-radius: 8px;
	border: 1px solid #ccc;
}

.input_search:focus{
	outline: none;
}

.sort_table_div{
	margin-top:10px;
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 0 3px #ccc;
}

.order_div{
	padding:20px;
}

.order_div p{
	padding-left:10px;
	margin: 0px 0px 15px 0px;
}

.sort_table{
	text-align: center;
	width:100%;
	border-collapse:collapse;
}

.sort_table tr th {
	font-weight: bold;
	border-bottom-width: 3px;
}

.sort_table tr td, .sort_table tr th{
	padding: 10px;
}

.sort_table tr td {
	font-size: 0.92em;
}

.sort_table tbody tr:hover {
    background-color: #E8E8E8;
}


/* ==========================================================================
  ORDER-VIEW / PRODUCT-VIEW / PRODUCT-EDIT
========================================================================== */


.detail_div{
	width:100%;
}

.detail_div .col-12, .parallel_left .col-12{
	margin: 10px 30px;
}

.parallel_header{
	border-bottom: 1px solid #ccc;
	padding: 10px 0;
	font-size: 0.95em;
	font-weight: 600;
	margin: 0 30px;
	width: 95%;
}

.parallel_content{
	margin: 0 30px;
	font-size: 0.92em;
}

.parallel_text_left{
	display:inline-block;
	width:30%;
	margin: 2px 0;
	padding: 5px 0;
}

.parallel_text_right{
	display:inline-block;
	width:60%;
	margin: 2px 0;
	padding: 5px 0;
}

.item_order_div{
	padding-top:10px;
}

.table_item_order{
	text-align: center;
	margin: 0 30px;
	width:95%;
	border-collapse:collapse;
	font-size: 0.9em;
}

.table_item_order tr th {
	font-weight: bold;
	border-top: none;
	border-bottom-width: 3px;
}

.table_item_order tr td, .table_item_order tr th{
	padding: 10px;
}

.table_item_order tbody tr:hover {
    background-color: #E8E8E8;
}

.parallel_content_one{
	font-size: 0.92em;
	margin: 0 30px;
	width: 95%;
}

.order_amount_div{
	font-size: 0.92em;
	margin: 30px;
	width: 95%;
}

.order_amount_right{
	width: 40%;
	float: right;
	background-color: #ffffff;
	box-shadow: 0 0 3px #ccc;
}

.order_amount_div .order_amount_right .parallel_header{
	width: 90%;
}

.order_amount_content_left{
	margin: 0;
	padding: 10px 0;
	margin: 0 30px;
	width: 30%;
	display:inline-block;
	color:black;
	text-align:left;
}

.order_amount_content_right{
	width: 55%;
	display: inline-block;
	margin: 0;
	padding: 10px;
	text-align:right;
}


/* ==========================================================================
  INVOICE / ACCOUNT
========================================================================== */


.sort_div p{
	font-weight: 600;
}


/* ==========================================================================
  PRODUCT
========================================================================== */


.product_table, .admin_content{
	margin-top:10px;
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 0 3px #ccc;
}


/* ==========================================================================
  PRODUCT-EDIT
========================================================================== */


.admin_content{
	padding: 10px;
	width: 60%;
	margin: auto;
}

.admin_content .product_add_table img{
	border: 1px solid #A9A9A9;
	width:300px;
	height:300px;
}

.input_text{
	width: 100%;
    height: 30px;
    padding-left: 2%;
}

.product_add_table{
	width:100%;
	border-collapse: collapse;
}

.product_add_table tr td{
	border: none;
	padding: 8px 0px;
}

.product_add_table tr td:first-child{
	width:25%;
	font-weight: 600;
}

.product_add_table tr td:last-child{
	width:69%;
}


/* ==========================================================================
  INTRODUCING VIDEO
========================================================================== */


.tabdiv{
	margin: 0 0 0 30px;
	border-radius: 8px;
}

.tabdiv button{
	display: block;
	padding: 15px 0px;
    width: 200px;
    transition: 0.3s;
	box-shadow: 0 0 3px #ccc;
	border-radius: 8px;
	background-color: #ffffff;
	border: 1px solid #E8E8E8;
	border-left: none;
	border-right: none;
}
.tabdiv button:hover{
	background-color: #B0BC9C;
	cursor: pointer;
	transform: scale(1.1);
}

.tabdiv button:focus {
  background-color: #B0BC9C;
}

.admin_left{
	float:left;
}

.admin_right1 {
    float: left;
    width: 50%;
    background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 0 3px #ccc;
	padding: 10px;
	margin: 0;
}


/* ==========================================================================
  INTRO VIDEO EDIT
========================================================================== */


.table_add_category{
	width:100%;
	border-collapse: collapse;
	margin: 0;
}

.table_add_category tr td{
	border: none;
	padding-bottom:10px;
}

.table_add_category tr td:first-child{
	width:25%;
}

.table_add_category tr td:last-child{
	width:75%;
}

.text_label{
	font-weight: 600;
}


/* ==========================================================================
  ADMIN VOICHER
========================================================================== */


.tabcontent{
	display: none;
	margin: 0 10px;
}

.tab {
	overflow: hidden;
	border: 1px solid #ccc;
	border-radius: 8px;
	background-color: #ffffff;
	margin: 10px; 
}

.tab button {
	background-color: inherit;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	padding: 10px;
	transition: 0.3s;
	font-size: 1.1em;
}

.tab button:hover {
  background-color: #e8f2d8;
}

.tab button.active {
	border: 2px solid #9ba688;
	border-radius: 8px;
	font-weight: 700;
	color: #9ba688;
}
/*ADMIN VOUCHER END*/


.paganition_div{
	width:100%;
	padding: 5px 0px;
}

.paganition{
	width:60%;
	display:inline-block;
}

.paganition_text{
	width:57px;
	float:left;
}
.page_plugin{
	width:80%;
	float:left;
}

.paganition p{
	margin:3px 0px 0px 0px;
}

.paganition p span{
	padding:5px 7px;
	background-color:#a5a5a5;
}

.export{
	width: 39%;
    display: inline-block;
    vertical-align: top;
    margin-top: -8px;
}

.export p {
	margin:3px 0px 0px 0px;
}

.export p a{
	margin-left:5px;
	padding: 5px 10px;
	text-decoration:none;
	background-color:black;
	color:white;
}

.sort_btn{
	padding: 5px 10px;
	background-color:black;
	border:none;
	color:white;
}

.sort_text{
	height: 20px;
}

.less_sort_table tr td {
	background-color:#FC6965;
}

.font tr th{
	font-size:14px;
}

.font tr td{
	font-size:12px;
}

.detail_right{
	width:49.5%;
	float:right;
}

.order_p{
	margin:0px;
}

.order_a{
	text-align:right;
	margin:0px;
}

.order_a >a{
	text-decoration:none;
	color:black;
}

.parallel_header > span{
	float: right;
}

.parallel_header > span > a{
	color:white;
	text-decoration:none;
}

.table_item_order_bg_color1{
	background-color:#e4e4e4;
}

.table_item_order_bg_color2{
	background-color:#f1f1f1;
}

.order_view{
	text-decoration:none;
	color:black;
	font-weight:600;
}

.page_ul{
	margin:0px;
	padding:0px;
	list-style-type:none;

}

.page_ul li{
	display:inline-block;
	padding: 5px;

}

.modal h1 {
    color: #616161;
    font-size: 22px;
    font-weight: 900;
    margin: 0px;
    margin-bottom: 5px;
    text-align: center;
}

.inline_div {
    width: 100%;
}

.inline_div_left {
    display: inline-block;
    width: 48%;
    margin-right: 1%;
}

.label_text {
    color: #616161;
    font-size: 15px;
    font-weight: 900;
}

.input_text1 {
    width: 100%;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    height: 30px;
    border: 1px solid #919191;
    margin: 10px 0px;
    padding-left: 15px;
    background-color: #f9f9f9;
    width: -moz-calc(100% - 15px);
    width: -webkit-calc(100% - 15px);
    width: -o-calc(100% - 15px);
    width: calc(100% - 15px);
}

.inline_div_right {
    display: inline-block;
    width: 49%;
    margin-left: 1%;
}

.input_select1 {
    width: 100%;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    height: 30px;
    border: 1px solid #919191;
    margin: 10px 0px;
    padding-left: 15px;
    background-color: #f9f9f9;
}

.btn_blue {
    background: #061a7c;
    background-image: -webkit-linear-gradient(top, #061a7c, #061a7c);
    background-image: -moz-linear-gradient(top, #061a7c, #061a7c);
    background-image: -ms-linear-gradient(top, #061a7c, #061a7c);
    background-image: -o-linear-gradient(top, #061a7c, #061a7c);
    background-image: linear-gradient(to bottom, #061a7c, #061a7c);
    -webkit-border-radius: 4;
    -moz-border-radius: 4;
    border-radius: 4px;
    font-family: 'AvenirNextLTPro-Regular';
    color: #ffffff;
    font-size: 17px;
    font-weight: 900;
    bg-start-gradient-hover: ;
    bg-end-gradient-hover: ;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
    border: none;
    margin: 0 auto;
    display: block;
    cursor: pointer;
    width: 215px;
}

.cancel_model {
    position: absolute;
    top: 0px;
    right: 0px;
}

.ui-tabs-vertical { width:100%;}
.ui-tabs-vertical .ui-tabs-nav { padding: .2em .1em .2em .2em; float: left; width: 12em; }
.ui-tabs-vertical .ui-tabs-nav li { clear: left; width: 100%; border-bottom-width: 1px !important; border-right-width: 0 !important; margin: 0 -1px .2em 0; }
.ui-tabs-vertical .ui-tabs-nav li a { display:block; }
.ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active { padding-bottom: 0; padding-right: .1em; border-right-width: 1px; }
.ui-tabs-vertical .ui-tabs-panel { padding: 0em 3em; float: left; width: 40em;}

.ui-tabs {
    padding:0px;
}

.ui-widget-content {
    border: none;
}

.ui-widget-header {
    border:0px;
	background:none;
    background-color:black;
    color: white;
	font-weight:300;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
    border: none;
    background:none;
    color:white;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    border: none;
    background:none;
    color:white;
}

.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
    color: white;
    text-decoration: none;
	font-family: 'AvenirNextLTPro-Regular';
}

.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
    color: white;
    text-decoration: none;
	font-family: 'AvenirNextLTPro-Regular';
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    padding: 5%;
    width: 90%;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
    border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-top-right-radius: 0px;
	border-top-left-radius: 0px;
}



.admin_right{
    padding: 0em 3em;
    float: left;
    width: 40em;
}

.input_dropdown{
	border:none;
	border:1px solid #444d4c;
	width: 94%;
    height: 30px;
    padding-left: 5%;
}

.input_textarea{
	border:none;
	border:1px solid #444d4c;
	width:94%;
	height:200px;
	padding-left: 5%;
}

.add_btn{
	background-color:#444d4c;
	color:white;
	-webkit-border-radius: 4px 4px 4px 4px;
	border-radius: 4px 4px 4px 4px;
	border:none;
	padding:10px 20px;
	text-align:right;
}

.main_category{
	padding:0px;
	margin:0px;
	list-style-type:none;
}

.main_category li{

}

.level_1_silde{
	padding: 10px 0px;
    padding-left: 4%;
    margin-bottom: 5px;
    width: 96%;
    border: 1px solid #818181;
    color: black;
    font-weight: 600;
    background-color: #b2afaf;
    position: relative;
    cursor: cell;
}

.level_1_left{
	width:80%;
}

.level_2_silde{
	padding: 10px 0px;
    padding-left: 4%;
    margin-bottom: 5px;
    width: 96%;
    border: 1px solid #818181;
    color: black;
    font-weight: 600;
    background-color: #b2afaf;
    position: relative;
    cursor: cell;
}

.level_2_left{
	width:80%;
}

.level_3_silde{
	padding: 10px 0px;
    padding-left: 4%;
    margin-bottom: 5px;
    width: 96%;
    border: 1px solid #818181;
    color: black;
    font-weight: 600;
    background-color: #b2afaf;
    position: relative;
    cursor: cell;
}

.level_3_left{
	width:80%;
}

.main_category li .level_1_silde:hover .category_icon_div{
	display:block;
}
.main_category li .level_2_silde:hover .category_icon_div{
	display:block;
}
.main_category li .level_3_silde:hover .category_icon_div{
	display:block;
}

.second_category{
	padding:0px;
	margin:0px;
	margin-left:10%;
	list-style-type:none;

}

.second_category li{
	-webkit-border-radius: 4px 4px 4px 4px;
	border-radius: 4px 4px 4px 4px;
	cursor:cell;
}

.third_category{
	padding:0px;
	margin:0px;
	margin-left:10%;
	list-style-type:none;
	cursor:text;
}

.third_category li{
	cursor:text;
}

.category_icon_div{
	position:absolute;
	right:0px;
	top: 10px;
	display:none;
}

.category_icon{
	width:20px;
	margin-right: 10px;
	cursor:pointer;
}

.product_action{
	color:black;
	text-decoration:none;
}

.product_action:hover{
	text-decoration:underline;
}

.input_select{
	border: none;
	border: 1px solid #444d4c;
    width: 99%;
    height: 30px;
    padding-left: 5%;
}

.save_btn{
	background-color: white;
    border: none;
    font-size: 18px;
    float: right;
	cursor:pointer;
}

.error{
	color:red;
}

.manage_div{
	background-color:#efefef;
	padding: 10px;
}

.search_input_div{
	margin-top:10px;
}

.select_search{
	width: 210px;
	height: 30px;
}

.table_image{
	width:100%;
}

.table_image tr td{
	width:50%;
}

.table_image,.table_image tr,.table_image tr td{
	border:none;
	border-collapse:collapse;
}

.table_image tr td a{
	text-decoration:none;
	color:black;
}

.table_image tr td a:hover{
	text-decoration:underline;
}

.vertical_table tr td{
	vertical-align:top;
}

.select_search1 {
    width: 100%;
    height: 30px;
}

.link_user_view{
	text-decoration:none;
	color:black;
	cursor:pointer;
}

.link_user_view:hover{
	text-decoration:underline;
	color:black;
}

.doc_downlaod{
	padding:10px;
}

.text_right{
	text-align:right;
	padding-right:10px;
}

.text_right a{
	text-decoration:none;
	color:black;
}

.map{
	position:relative;
	width:98%;
}

#map {
	height: 500px;
	width:100%;
}
#floating-panel {
	position: absolute;
	width:441px;
	top: 10px;
	left: 50%;
	margin-left:-220.5px;
	z-index: 5;
	background-color: #fff;
	padding: 5px;
	border: 1px solid #999;
	text-align: center;
	font-family: 'Roboto','sans-serif';
	line-height: 30px;
	padding-left: 10px;
}

.textarea_label{
	color:red;
	font-size:10px;
	float:left;
}

table.ui-datepicker-calendar tr td a{
	color:black !important;
}

.sales_sort_div{
	margin-top:10px;
	display:inline-block;
	width:50%;
}

.sort_select{
	width:150px;
	height:25px;

}

.sales_display{
	display:inline-block;
	width:49%;
}

.enquiry_account{
	width:350px;
}

.enquiry_account tr td:first-child{
	width:40%;
}

.enquiry_account tr td:last-child{
	width:60%;
}

.enquiry_account tr td{
	padding-bottom:20px;
}

.enquiry_item{
	width:500px;
}

.enquiry_item tr td:first-child{
	width:40%;
	vertical-align:top;
}

.enquiry_item tr td:first-child img{
	width:100%;
}

.enquiry_item tr td:last-child{
	width:56%;
	vertical-align:top;
	padding-left:3%
}

.enquiry_item tr td{
	padding-bottom:20px;
}

.order_div_new{
	padding:20px;
}

.enquiry_view_title{
	margin-bottom:5px;
}

.title_view{
	font-size:18px;
	font-weight:600;
	padding:0px !important;
	color:#506FCC;

}

.dealer_content p{
	margin:0px;
	margin-bottom:2px;
}

.enquiry_dealer{
	width:700px;
}

.enquiry_dealer tr td{
	padding-bottom:10px;
}

.dealer_detail{
	width:100%;
}

.dealer_detail tr td:first-child{
	width:10%;
	vertical-align:top;
}

.dealer_detail tr td:last-child{
	width:90%;
	vertical-align:top;
}

.dealer_detail tr td{
	padding-bottom:20px;
}

.sortable-table th {
	background-image:url(../image/bg.gif);
	background-repeat:no-repeat;
	background-position: center right;
	cursor: pointer;
}

.sortable-table th.headerSortUp {
	background-image:url(../image/asc.gif);
}

.sortable-table th.headerSortDown {
	background-image:url(../image/desc.gif);
}

span.add-on-product {
	font-size:14px;
}

#loading-screen {
	display:none;
	position:fixed;
	width:100%;
	height:100%;
	background-color:rgba(255,255,255,0.6);
}

#loading-screen img {
	position:absolute;
	width:200px;
	height:200px;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
}

.all-product {
	display:flex;
	flex-wrap:wrap;
	justify-content:space-evenly;
	align-items:center;
	align-content:flex-start;
}

.product-row {
	width:100%;
	display:flex;
	flex-wrap:wrap;
}

.product-column {
	width:calc(100% / 3 - 10px);
	display:flex;
	padding:10px;
	margin-right:15px;
	margin-bottom:5px;
}

.product-column:nth-child(3n) {
	margin-right:0;
}

.product-header {
	background-color:#747474;
	color:white;
	margin-bottom:0;
}

.product-less-stock {
	background-color:#FC6965;
}

.product-more-stock {
	background-color:#efefef;
}

.product-column div:nth-child(1) {
	width:30%;
}

.product-column div:nth-child(2) {
	width:70%;
}
.button-add{
	padding: 20px;
	float: right;
}
