@import url('https://fonts.googleapis.com/css?family=Lato');

body {
   font-family: lato, sans-serif, arial;
}



.ui-jqgrid-htable th,
.ui-jqgrid tr.jqgrow td{ 
    text-transform: capitalize; 
}
.ui-jqgrid-htable th div{
    font-weight: bold;
}

.ui-jqgrid-htable .ui-search-toolbar th {
    height: auto; padding-bottom: 1px; color: black
}

 

.footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  background-color: #efefef;
  text-align: center;
}
.ui-tabs-panel #subtitle{
  display:none;
}


/*** RADIAL PROGRESS ***/
/* Circumference = 2πr */
/* π = 3.1415926535898 */
/* r = 35 */
svg.radial-progress {
    height: auto;
    max-width: 200px;
    padding: 1em;
    transform: rotate(-90deg);
    width: 100%;
}
svg.radial-progress circle {
    fill: rgba(0,0,0,0);
    stroke: #a2ed56;
    stroke-dashoffset: 219.91148575129; /* Circumference */
    stroke-width: 10;
}
svg.radial-progress circle.incomplete {
    opacity: 0.25;
}
svg.radial-progress circle.complete {
    stroke-dasharray: 219.91148575129; /* Circumference */
}
svg.radial-progress text {
    fill: #1590C2;
    font: 400 1em/1, sans-serif;
    text-anchor: middle;
}


/*** COLORS ***/
/* 
svg.radial-progress:nth-of-type(6n+1) circle {
    stroke: #a2ed56;
}


svg.radial-progress:nth-of-type(6n+2) circle {
    stroke: #83e4e2;
}


svg.radial-progress:nth-of-type(6n+3) circle {
    stroke: #fd6470;
}


svg.radial-progress:nth-of-type(6n+4) circle {
    stroke: #fca858;
}

svg.radial-progress:nth-of-type(6n+5) circle {
    stroke: #fddc32;
}
*/