
h3.statHeader {
  font-weight: bold;
  font-style: italic;
  font-size: 1.5em;
  margin: 20px auto 10px auto;
  color: #135d84;
  text-align: center; }

p.statScore{
  font-size: 1.2em;
  text-align: center;
  margin: 0px auto 30px auto;
}

.statTabNoData {
  text-align: center;
  margin: 50px auto 200px auto;
  font-weight: bold; }

p.statError {
  display: block;
  margin: 30px auto;
  text-align: center;
  font-weight: bold;
  color: orangered; }

.statContentAll {
  width: 100%;
  margin-top: 20px; }

.statGridCategories {
  margin: 50px auto;
  display: grid;
  width: 1000px;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-auto-flow: column;
  justify-content: center;
  justify-content: center;
  align-content: center; }

.statGridCategories > div {
  background-color: #8ec71c;
  border: 3px solid #7eb119;
  position: relative;
  width: 110px;
  height: 110px;
  text-align: center;
  vertical-align: baseline;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  text-transform: uppercase; 
  opacity: 0.85;
}

.statGridCategories > div:hover {
  background-color: #4ab1e6;
  border: 3px solid #1f9ddd; 
  opacity: 1;
}

.statGridCategories > div.current {
  background-color: #34a7e2;
  border: 3px solid #1f9ddd; 
  opacity: 1;
}

.statGridCategories > div a {
  display: table-cell;
  width: 110px;
  height: 110px;
  vertical-align: middle;
  text-decoration: none;
  color: white; }

.textInStatGridCat{
  background-color: white;
  color: #222;
  font-size: 1em;
  border: 2px solid green;
  border-radius: 6px;
  width: fit-content;
  padding: 5px 20px;
  margin: 0 auto;

}

.statTimeFormContainer {
  display: flex;
  height: 40px;
  margin: 20px auto 50px auto;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline; }

.statTimeFormContainer > div {
  height: 40px;
  padding: 10px 10px;
  margin: 0;
  font-weight: bold;
  font-size: 16px; }

.statSelectTime {
  padding: 10px 20px; }

.detailedResultsTitle {
  margin: 60px 0 20px 0;
  text-align: center;
  font-size: 20px;
  font-weight: bold; }

.statTableGrid {
  display: grid;
  margin: 20px auto;
  align-content: center;
  justify-content: center;
  grid-auto-flow: row; }

.statTableGrid > div {
  border: 1px solid black;
  border-radius: 2px; }

.grid-item-text-row {
  border: none !important;
  font-weight: bold;
  padding: 0 10px 0 0;
  vertical-align: central; }

.text-right {
  text-align: right;
  padding: 0 0 0 10px; }

.grid-item-last-row {
  text-align: center;
  font-weight: bold;
  font-size: 14px; }

.grid-item-date {
  color: blue; }

.grid-item-wrong {
  background-color: orangered; }

.grid-item-correct {
  background-color: greenyellow; }

.grid-item-empty {
  background-color: #cdcdcd; }

.jqplotChart {
  margin: 0 auto; }

/* TABOVI - START */
.tab-wrap {
  transition: 0.1s box-shadow ease;
  border-radius: 8px;
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  list-style: none;
  background-color: #fff;
  margin: 60px auto;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  .tab-wrap:hover {
    box-shadow: 0 12px 23px rgba(0, 0, 0, 0.23), 0 10px 10px rgba(0, 0, 0, 0.19); }
.tab-wrap label{font-weight: bold;}
.tab {
  display: none; 
}
  .tab:checked:nth-of-type(1) ~ .tab__content:nth-of-type(1) {
    opacity: 1;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    transform: translateY(0px);
    text-shadow: 0 0 0; }
  .tab:checked:nth-of-type(2) ~ .tab__content:nth-of-type(2) {
    opacity: 1;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    transform: translateY(0px);
    text-shadow: 0 0 0; }
  .tab:checked:nth-of-type(3) ~ .tab__content:nth-of-type(3) {
    opacity: 1;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    transform: translateY(0px);
    text-shadow: 0 0 0; }
  .tab:checked:nth-of-type(4) ~ .tab__content:nth-of-type(4) {
    opacity: 1;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    transform: translateY(0px);
    text-shadow: 0 0 0; }
  .tab:checked:nth-of-type(5) ~ .tab__content:nth-of-type(5) {
    opacity: 1;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    transform: translateY(0px);
    text-shadow: 0 0 0; }
  .tab:first-of-type:not(:last-of-type) + label {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .tab:not(:first-of-type):not(:last-of-type) + label {
    border-radius: 0; }
  .tab:last-of-type:not(:first-of-type) + label {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  .tab:checked + label {
    background-color: #fff;
    box-shadow: 0 -1px 0 #fff inset;
    cursor: default;
    color: blue; }
    .tab:checked + label:hover {
      box-shadow: 0 -1px 0 #fff inset;
      background-color: #fff; }
  .tab + label {
    box-shadow: 0 -1px 0 #eee inset;
    text-transform: capitalize;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: #333;
    flex-grow: 3;
    text-align: center;
    background-color: #b5e3fb;
    user-select: none;
    text-align: center;
    transition: 0.3s background-color ease, 0.3s box-shadow ease;
    height: 70px;
    box-sizing: border-box;
    padding: 25px; }
    .tab + label:hover {
      background-color: #f9f9f9;
      box-shadow: 0 1px 0 #f4f4f4 inset; }
  .tab__content {
    padding: 40px 25px 10px 25px;
    background-color: transparent;
    position: absolute;
    width: 100%;
    z-index: -1;
    opacity: 0;
    left: 0;
    transform: translateY(-3px);
    border-radius: 8px; 
  }

/* TABOVI - END */
