/* This file is where css selectors for the component go.
   There will be hard coded properties and properties controlled by variables, for example

   oj-c-badge .oj-c-badge-value-text {
   color: var(--oj-c-badge-value-text-color);
   display: inline-block;
	 }
*/

oj-c-badge:not(.oj-complete){
  visibility: hidden;
}

oj-c-badge{
	min-height: 50px;
	width: 50px;
}

oj-c-badge[hidden]
{
  display: none;
}