/*
    STATUS TAGS
    
    This is for the NEW, UPDATED, etc. tags displayed in the dropdown nav menu or on the "all products" index page.
  
*/
/* -------------------------------------- Used in DROPDOWN NAV MENU -------------------------------------- */
/* hard-coded into /includes/productmenu.inc.html */
#menu-product .tag-updated {
  background: transparent !important;
  color: #8ca71c !important;
  /* yellow-green */
  font-size: 10px !important;
}
#menu-product .tag-new {
  background: transparent !important;
  color: #f55353 !important;
  /* light red */
  font-size: 10px !important;
}
/* -------------------------------------- Used on PRODUCTS INDEX page -------------------------------------- */
.grid-tag {
  border: none !important;
  /* CSS 'plugingrid div' adds dotted border, don't want that */
}
/* set in product specific template.ini files */
.grid-tag.tag-updated {
  background: #f3cb65 !important;
  /* light orange */
}
.grid-tag.tag-new {
  background: #f55353 !important;
  /* light red */
  color: #fff !important;
}
.grid-tag.tag-nks-ready {
  background: #444444 !important;
  /* gray */
  color: #fff !important;
  /*  left: 15px !important;*/
}
/* -------------------------------------- Used in PRODUCT page TEMPLATES -------------------------------------- */
div.tag-container {
  position: absolute;
  top: -15px;
  left: 0;
  text-align: left;
}
p.grid-tag {
  background: #f3cb66;
  /* light orange */
  padding: 4px 8px 2px 8px;
  margin-left: 8px;
  text-transform: uppercase;
  font-size: 0.75em;
  font-weight: 800;
  text-align: right;
  display: inline;
  letter-spacing: 0.7px;
}
p.grid-tag.highlight {
  background: #f55353;
  /* light red */
  color: #fff;
}
/* -------------------------------------- Used in BUNDLE pages CONTENT BODY files -------------------------------------- */
.status-tag {
  background: #f3cb65;
  padding: 4px 6px 2px 6px;
  text-transform: uppercase;
  font-size: 0.75em;
  font-weight: 800;
  display: inline;
}
.status-tag.highlight {
  background: #f55353;
  color: #fff;
}
