/*=============== DHAVAL :: CSS FOR FRONT SIDE PROMOTION BANNER LIST ========*/

.promotion_banner_detail_class{
    background-color: #fff;
    margin-bottom: 10px;
    /*margin-top: 10px;*/
    width: 100%;
	border-left: 1px solid #d8e2e7 !important;
    border-bottom: 1px solid #d8e2e7 !important;
}
.promotion_list_tr_titles{
    background-color: #f6f8fa;
    padding:0;
    height: auto;
}
.promotion_list_tr_titles th{
	padding:8px;
	color: #5a6271 !important;
    font-family: sans-serif; font-weight: bold;
    font-size: 13px !important;
    font-weight: normal !important;
	border-right: 1px solid #d8e2e7 !important;
    border-top: 1px solid #d8e2e7 !important;
}
.class_promotion_dashed{
   /* border-bottom: 1px solid #000000 !important;
    background-color: #ededed;  */  
}

.class_promotion_dashed {
 /* border-bottom: 1px solid #d8e2e7 !important;*/
  border-left: medium none !important;
  border-right: 1px solid #d8e2e7;
  border-top: 1px solid #d8e2e7;
  padding: 8px;
  color: #555 !important;
    font-family: sans-serif !important;
    font-size: 13px !important;
    font-weight: normal !important;
}
.class_promotion_border{
    /*border-right: 1px dashed #aaa !important;*/
}

/*===============KRUNAL :: CSS FOR FRONT SIDE QUOTATION LIST ========*/
table.quotation_result {
    border-collapse: collapse;
}

.quotation_list_tr_titles{
    background-color: #aaaaaa;
    padding: 0 5px;
    height: 21px;
}
.class_quotation_dashed{
    border-bottom: 1px solid #000000 !important;
    padding: 2px;
}
.class_quotation_border{
    border-right: 1px dashed #aaa !important;
}
.ui-button-text
{
   /*font-size: 12px;*/
   
   /*color: #fff;
  font-family: sans-serif; font-weight: bold;*/
  font-size: 14px;
  /*font-weight: normal !important;
  padding: 0 10px;*/
}
/*===============KRUNAL :: CSS FOR FRONT SIDE QUOTATION LIST==========*/
/*===============MAYURI :: CSS FOR FRONT SIDE SET HEADER NOTIFICATION ==========*/
body{background-color:#dedede;font-family:arial}
#nav{list-style:none;margin: 0px;
padding: 0px;}

 #nav li {
  clear: both;
  float:none;
  font-size: 13px;
  font-weight: bold;
  height: auto;
  line-height: 0 !important;
  list-style: outside none none;
  margin-right: 0 !important;
  padding: 3px 8px;
} 
 
 #nav li a {
  color: #333333;
  line-height: 20px;
  margin: 0 !important;
  padding: 0 !important;
  text-decoration: none;
}
 
#nav li a:hover{color:#006699;text-decoration:none}
#notification_li{position:relative}
#notificationContainer {
background-color: #fff;
    border: 1px solid rgba(100, 100, 100, .4);
    -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
    overflow: visible;
    position: absolute;
    top: 30px;
    margin-left: 0px;
    z-index: -1;
    display: none;
    width: 340px;
    
}
#notificationContainer:before {
    content: '';
    display: block;
    position: absolute;
    width: 0px;
    height: 0;
    margin-left: 88%;
    color: transparent;
    border: 10px solid black;
    border-color: transparent transparent white;
    margin-top: -20px;
    z-index: 1000;
    border-bottom-color:#c1c1c1;
    -moz-border-bottom-colors: #c1c1c1;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
}
 
 #notificationTitle {
  background-color: #ffffff;
  border-bottom: 1px solid #dddddd;
  font-size: 13px;
  font-weight: bold;
  height: auto;
  line-height: normal;
  padding: 8px;
  text-align: left;
  width: 93%;
  z-index: 1000;
}

#notificationFooter {
background-color: #e9eaed;
text-align: center;
font-weight: bold;
padding: 8px;
font-size: 12px;
border-top: 1px solid #dddddd;
}

#notification_count {
padding: 3px 7px 3px 7px;
background: #cc0000;
color: #ffffff;
font-weight: bold;
margin-left: 77px;
border-radius: 9px;
position: absolute;
margin-top: -11px;
font-size: 11px;
}
/*===============MAYURI :: CSS FOR FRONT SIDE SET HEADER NOTIFICATION ==========*/

/*=============== NISHIT :: START PROGRESS BAR CSS USED IN SUPPLIER ORDER STATES ==========*/
#progressbar {
margin-bottom: 30px;
overflow: hidden;
/*CSS counters to number the steps*/
counter-reset: step;
}
#progressbar td {
  color: white;
  float: left;
  font-size: 12px;
  list-style-type: none;
  position: relative;
  text-transform: none;
  width: 14%;
  padding: 0px;
  border-bottom : 0px;
}
#progressbar td::before {
  background: #ccc none repeat scroll 0 0;
  border-radius: 50%;
  color: #333;
  /*content: counter(step, decimal);*/
  content:"";
  counter-increment: step;
  display: block;
  font-size: 10px;
  /*height: 25px;*/
  height: 15px;
  line-height: 25px;
  margin: 0 auto 5px;
  /*width: 25px;*/
  width: 15px;
  position: relative;
  z-index: 100;
}
/*progressbar connectors*/
#progressbar td:after {
	content: '';
	width: 100%;
	/*height: 8px;*/
	height: 2px;
	background: #ccc;
	position: absolute;
	left: -50%;
	/*top: 9px;*/
	top: 8px;
	z-index: 1; /*put it behind the numbers*/
}
#progressbar td:first-child:after {
/*connector not needed before the first step*/
content: none;
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar td.active:before, #progressbar td.active:after {
background: #27AE60;
color: white;
}

#progressbar td.unactive:before{
background: #FF0000;
color: white;
}
#progressbar td.unactive:after {
background: #27AE60;
color: white;
}

.step-bar-text{
	display:block;
	/* padding-top:30px; */
	padding-top: 9px;
	color:#ccc;
	font-size: 11px !important;   /* added */
	text-align: center;
}
.active .step-bar-text{
	color:#27AE60;
}
.unactive .step-bar-text{
	color:#FF0000;
} 
/*=============== NISHIT :: END PROGRESS BAR CSS USED IN SUPPLIER ORDER STATES ==========*/

/* table.dataTable tbody .group_even td {
  background: #edfbff none repeat scroll 0 0;
} */

/* table.dataTable tbody .group_odd td {
  background: #EDF0FF none repeat scroll 0 0;
} */

table.dataTable tbody .odd .details-control {
    background:#f9f9f9 url('../images/details_open.png') no-repeat center center;
    cursor: pointer;
}

table.dataTable tbody .even .details-control {
    background:#fff url('../images/details_open.png') no-repeat center center;
    cursor: pointer;
}
table.dataTable tbody .odd.shown .details-control {
    background:#f9f9f9 url('../images/details_close.png') no-repeat center center !important;
}
table.dataTable tbody .even.shown .details-control {
    background:#fff url('../images/details_close.png') no-repeat center center !important;
}

.odd #progressbar{
	background:#f9f9f9
}
.even #progressbar{
	background:#fff
}
.group_odd #progressbar{
	background: #EDF0FF
}
.group_even #progressbar{
	background: #edfbff
}
.sorting_disabled{
	background: #f6f8fa;
}
.sorting_desc , .sorting_asc {
  background-color: #cfffcf !important;
}
.readonly_class, .readonly_class:hover, .readonly_class:focus {
    background: #b2b2b2 !important;
}
.readmore{
    cursor:pointer;
    color:blue;
    text-decoration:underline;
}
.readmore:hover {
    text-decoration:none;
}