html {
    margin: 0;
    padding: 0;
    height: 100%;
    background: darkslategrey;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    max-height: 100%;
    /* background: darkslategrey; */
    background: #2D2D2D;
    float: left;
    width: 100%;
}

h1 {
    color: mintcream;
    text-align: center;
}
h2 {
    margin-top: 0%;
}
p {
    font-family: verdana;
    font-size: 20px;
    margin-top: 0%;
    margin-bottom: 1%;
}
.parent {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(12, 1fr);
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    height: 99%;
    /* width: 99%; */
    padding-left: 5px;
    padding-right: 5px;
    }
    
    .div1 { grid-area: 1 / 1 / 2 / 6; }
    .div2 { grid-area: 2 / 1 / 5 / 2; }
    .div3 { grid-area: 2 / 2 / 5 / 3; }
    .div4 { grid-area: 2 / 3 / 5 / 4; }
    .div5 { grid-area: 2 / 4 / 5 / 5; }
    .div6 { grid-area: 2 / 5 / 5 / 6; }
    .div7 { grid-area: 5 / 1 / 10 / 2; }
    .div8 { grid-area: 5 / 2 / 10 / 4; }
    /* .div9 { grid-area: 5 / 3 / 10 / 4; } */
    .div10 { grid-area: 5 / 4 / 10 / 6; }
    .div11 { grid-area: 10 / 1 / 13 / 3; }
    .div12 { grid-area: 10 / 3 / 13 / 5; }
    .div13 { grid-area: 10 / 5 / 13 / 6; }

.card {
    
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    text-align: center;
    font-family: verdana;
    font-size: 20px;
    /* padding: 10px; */

    /* Unkown */
    /* box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px; */
    /* #19 */
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;  */
    /* #74 */
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px; 
}

/* .container {
    display: flex;
} */

.child {
    height: 100%;
    width: 100%;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    /* position: relative; */
    /* text-align: center;
    font-family: verdana;
    font-size: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px; */
}
.good {
    /* background-color: lawngreen; */
    background-color: #57966B;
}
.bad {
    /* background-color: tomato; */
    background-color: #EB3B5A;
}
.fine {
    background-color: mediumseagreen;
}
.attention {
    background-color: yellowgreen;
}

.header {
    height: 5px;
}

p.NOK {
    /* color: firebrick; */
    color: #9B2740;
    font-size:4em;
    text-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
    line-height: 80px;
}

p.OK {
    /* color: forestgreen; */
    color: #246B39;
    font-size:4em;
    /* text-shadow: 2px 2px 5px black; */
    text-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
    line-height: 80px;
    /* margin-top: 10px; */
}

p.OKSMALL {
  /* color: forestgreen; */
  color: #246B39;
  font-size:2em;
  /* text-shadow: 2px 2px 5px black; */
  text-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
  line-height: 80px;
  /* margin-top: 10px; */
}

small.OK {
  color: #246B39;
}
small.NOK {
  color: #9B2740;
}
/* 
.wrap-collabsible {
    margin-bottom: 1.2rem 0;
  }
  
  input[type='checkbox'] {
    display: none;
  }
  
  .lbl-toggle {
    display: block;
  
    font-weight: bold;
    font-family: monospace;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-align: center;
  
    padding: 1rem;
  
    color: #A77B0E;
    background: #FAE042;
  
    cursor: pointer;
  
    border-radius: 7px;
    transition: all 0.25s ease-out;
  }
  
  .lbl-toggle:hover {
    color: #7C5A0B;
  }
  
  .lbl-toggle::before {
    content: ' ';
    display: inline-block;
  
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid currentColor;
    vertical-align: middle;
    margin-right: .7rem;
    transform: translateY(-2px);
  
    transition: transform .2s ease-out;
  }
  
  .toggle:checked + .lbl-toggle::before {
    transform: rotate(90deg) translateX(-3px);
  }
  
  .collapsible-content {
    max-height: 0px;
    overflow: hidden;
    transition: max-height .25s ease-in-out;
    height: 85%;
    width: 100%;

  }
  
  .toggle:checked + .lbl-toggle + .collapsible-content {
    max-height: 100vh;
  }
  
  .toggle:checked + .lbl-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  
  .collapsible-content .content-inner {
    background: rgba(250, 224, 66, .2);
    border-bottom: 1px solid rgba(250, 224, 66, .45);
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    padding: .5rem 1rem;
  } */