@charset "UTF-8";
@import url(fonts/fonts.css);
@font-face {
  font-family: "icons";
  src: url("fonts/iconfont/ho-iconfont-iglr8b.eot");
  src: url("fonts/iconfont/ho-iconfont-iglr8b.eot?#iefix") format("eot"), url("/theme/fonts/iconfont/ho-iconfont-iglr8b.woff") format("woff"), url("/theme/fonts/iconfont/ho-iconfont-iglr8b.ttf") format("truetype"), url("/theme/fonts/iconfont/ho-iconfont-iglr8b.svg#icons") format("svg");
  font-weight: normal;
  font-style: normal;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.25), only screen and ( min-device-pixel-ratio: 1.25), only screen and ( min-resolution: 200dpi), only screen and ( min-resolution: 1.25dppx) {
    -webkit-font-smoothing: subpixel-antialiased;
}

body {
//  overflow-x: hidden;
  color: #26566B;
  line-height: 1.4rem;
  font-size: 1rem;
  font-family: "Work Sans", Helvetica, Arial, sans-serif;
  font-weight: 100;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background: #FBF7EE;
  color: #000;
  margin: 0;
}

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*--------------------------------------------------------------
Some CSS Reset
--------------------------------------------------------------*/
img {
  display: block;
  border: 0;
  width: 100%;
  height: auto;
}
ul {
  margin:0;
}
/*--------------------------------------------------------------
Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
}

h1,
h2,
h3 {
  margin: 0;
  padding: 1em 0;
}

p {
  margin: 0;
  padding: 1em 0;
}
a {
  color: #000000;
}
.h, h1, h2, h3, h4, h5, h6, .h2 {
  font-family: "Solway", Helvetica, Arial, sans-serif;
  color: #26566B;
  margin: 0;
  font-weight: normal;
}
.h {
  font-size: 1.3rem;
  line-height: 1.6rem;
}
h1 {
  font-size: 1.2rem;
  line-height: 1.6rem;
}
h2, .h2 {
  font-size: 1.1rem;
  line-height: 1.3rem;
}
h3, .h3 {
  font-size: 1.1rem;
  line-height: 1rem;
}

h4, .h4 {
  font-size: 1rem;
  line-height: 1rem;
}

/*
code {
  background: #ededed;
}
*/

/*--------------------------------------------------------------
General styles
--------------------------------------------------------------*/
html, body {
  height: 100%;
  display:block;
}
.site-container {
  max-width:1400px;
  padding-left:.5em;
  padding-right:.5em;
  background: #FFFFFF; 
  overflow: visible;
}
header {
  width: 100%;
/*
  height:3em;
*/
  background-image: url(img/header.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}

header div {
  max-width:1100px;
  margin: auto;
  text-align: center;
}
main {
  background: white;
  margin-left:auto;
  margin-right:auto;
}
.fullfooter {
  margin-top: 1em;
  background-color: #FBF7EE;
  background-image: url(img/footer.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 200px;
  display:block;
}
.more {
}
.twin {
}
.twin:last-of-type {
}
 
.more {
  margin-top: 1em;
  background: #ffffff;
  border: 1em solid #ffffff;
  border-radius: 1em;
}
.twin {
  margin-top: 1em;
  background: #A5E3ED;
  border: 1em solid #A5E3ED;
  border-radius: 1em;
}

.twin:last-of-type {
  background: #F6D3C6;
  border-color: #F6D3C6;
}

footer {
  padding: 2em;
//  background: #41AA9B;
  background-color: #3A5F2E;
  color: #ffffff;
}
footer a {
  color: white;
}

footer a:hover,
footer a:focus {
  border-bottom: 1px solid #ffffff;
}

.visually-hidden
{
  position: absolute;
  overflow: hidden;
  height: 1px;
  width: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  word-wrap: normal;
}


@keyframes open {
  0% {opacity: 0; margin-left: -20px}
  100% {opacity: 1; margin-left: 0px}
}
details[open] summary ~ * {
  animation: open .5s ease-in-out;
}
details {
  background: #DCF8DC;
  font-size:80%;
  padding-left:.5em;
  padding-right:.5em;
}
summary {
  font-size:120%;
  padding-left:0;
  padding-right:0;
}
td ul {
  padding-left:20px;
}
.nobullet {
  list-style: none; 
}


/*--------------------------------------------------------------
If no grid support, limit width to 50em and center align
--------------------------------------------------------------*/
@supports not (display: grid) {
  body {
    max-width: 50em;
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
CSS Grid layout for wider screens, when browser supports grid:
--------------------------------------------------------------*/

@media screen and (min-width: 670px) {
  .h {
    font-size: 2.4rem;
    line-height: 4rem; }
  @supports (display: grid) {
    .site-container {
      padding:0;
      display: grid;
      grid-template-columns: 1fr repeat(6, minmax(auto, 10em)) 1fr;
      grid-template-rows: minmax(4em, auto)
                          auto
                          1fr
                          1fr
                          1fr
                          1fr
                          1fr
    }

    header {
      grid-column: span 8;
    }
    main,
    .more,
    .twin {
      grid-column: 2/8;
    }
    .fullfooter {
      grid-column: span 8;
      display: grid;
      grid-template-columns: repeat(8, 1fr);
      grid-template-rows: auto 1fr;
      column-gap: 2em;
      row-gap:1em;
    }
    footer {
      grid-column: span 8;
      grid-row: 5;
    }
  }
}

@media screen and (min-width: 788px) {
  main {
    width: 768px;
  }
  body {
    font-size: 1.4rem;
    line-height: 2.8rem;
  }
  .h {
    font-size: 3rem;
    line-height: 4rem; }
  h1 {
    font-size: 2.4rem;
    line-height: 3rem;
  }
  h2, .h2 {
    font-size: 2.2rem;
    line-height: 2.6rem;
  }
  h3, .h3 {
    font-size: 2.0rem;
    line-height: 2.2rem;
    padding-bottom:0;
  }
  h4, .h4 {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  /* definition list */
  dl {
    display: flex;
    flex-wrap: wrap;
    line-height: normal;
  }
  dl > * {
    padding-top: 0.5em;
  }
  dt {
    width:30%;
    text-align:right;
  }
  dd {
    width:60%;
    padding-left:1em;
    margin-left: 0px;
  }
  dd + dd {
    width: 100%;
    padding-left: calc(30% + 1em);
  }
  dt + dt {
    padding-right: 60%;
  }
  dt + dt + dd {
    margin-top: -1.625em; /* own height including padding */
    padding-left: calc(30% + 1em);
  }
}

@media screen and (min-width: 1080px) {
  @supports (display: grid) {
    .site-container {
      margin-left:auto;
      margin-right:auto;
      grid-template-rows: minmax(4em, auto)
                          auto
                          1fr
                          1fr
                          minmax(3em, auto);
    }
    .more {
      grid-column: 3/7;
    }
    .twin {
      grid-column: 2/5;
    }
    .twin:last-of-type {
      grid-column: 5/8;
    }
  }
}

/*--------------------------------------------------------------
The details:
--------------------------------------------------------------*/
.button-3d {
  position:relative;
  width: auto;
  display:inline-block;
  color: #ffffff;
  text-decoration:none;
  border-radius:1em;
  border:solid 1px #93ABB6;
  background:#26566B;
  text-align:center;
  padding:16px 18px 14px;
  margin: 12px;
  
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  transition: all 0.1s;
  
  -webkit-box-shadow: 0px 6px 0px #1D4151;
  -moz-box-shadow: 0px 6px 0px #1D4151;
  box-shadow: 0px 6px 0px #1D4151;
}
.button-3d:active{
    -webkit-box-shadow: 0px 2px 0px #1D4151;
    -moz-box-shadow: 0px 2px 0px #1D4151;
    box-shadow: 0px 2px 0px #1D4151;
    position:relative;
    top:4px;
}

.subtext {
  margin:0 auto;
  text-align: center;
  color: #26566B;
}

/* retromarkering */

.marked {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 50%;
  white-space: nowrap;
}
.marked:after {
  background: inherit;
  background: #DCF8DC;
  bottom: 0;
  content: '';
  display: block;
  height: 70%;
  width:103%;
  position: absolute;
  right:-2px;
  transform: skewY(-2deg);
  transform-origin: 80%;
  z-index: -1;
}

/* table */

table {
  border-collapse: separate;
  border-spacing: 0;
}
table tr th,
table tr td {
  border-bottom: 1px solid #BCD3BC;
  padding: 0px 10px;
  text-align: left;
  font-size: 80%;
  vertical-align: top;
}
table tr th:last-child,
table tr td:last-child {
  border-right: 1px solid #BCD3BC;
}
table tr th:first-child,
table tr td:first-child {
  border-left: 1px solid #BCD3BC;
}
table :first-child tr:first-child th {
  border-top: 1px solid #BCD3BC;
}
table tr th {
  background: #26566B;
  color: #ffffff;
  font-weight:normal;
}

table tr:first-child td {
  border-top: 1px solid #BCD3BC;
}

/* top-left border-radius */
table :first-child tr:first-child :first-child {
  border-top-left-radius: 12px;
}

/* top-right border-radius */
table :first-child tr:first-child :last-child {
  border-top-right-radius: 12px;
}

/* bottom-left border-radius */
table :last-child tr:last-child :first-child {
  border-bottom-left-radius: 12px;
}

/* bottom-right border-radius */
table :last-child tr:last-child :last-child {
  border-bottom-right-radius: 12px;
}

table.overview tr:nth-child(2n) {
  background: #f7f7f7;
}

table.overview a {
  text-decoration: none;
}
table a:hover {
  text-decoration: underline;
}

.good {
  background: #00C000;
}
.moderate {
  background: #F68934;
}
.bad {
  background: #FF4040;
}
.unknown {
  background: #A0A0A0;
}
table.numeric td, table.numeric thead tr th, table.numeric thead tr th, td.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
table.total tr:last-child {
  font-weight: bold;
}
table.ticked td {
  text-align: center;
}
table.ticked td:nth-child(2n+2),
.kolommen td:nth-child(2n+2),
tr.option td {
  background:#EBE6F2;
}
tr.option td {
  color: #575757;
}
table.wide {
  width: 100%;
}
table[role=presentation],
table[role=presentation] td {
  border: none;
  color: black;
  background: white;
}
table[role=presentation] tr td:first-child {
  padding-left: 0;
}
table[role=presentation] tr td p {
  padding-top: 0;
}
/* definition list */
dt {
  font-weight: bold;
}

.logolist {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.logolist li {
  display:list-item;
  width:100%;
}
.logolist li img {
  height:24px;
  width:105px;
  margin-top:2px;
  float:left;
}
.logolist li div {
  padding-left:105px;
  margin-top:12px;
  text-indent:0px;
  line-height:1.2em;
}
.logolist li div a {
//  text-decoration: none;
  font-size: 90%;
}

/* rapport resultaat */
.outcome {
  border: 1px solid #BCD3BC;
  background: #EFF5EF;
  border-radius: 12px;
  padding:1em;
  margin-bottom: 1em;
}
.outcome .canttell {
  background: url("img/sign-canttell.png");
}
.outcome .failed {
  background: url("img/sign-failed.png");
}
.outcome .untested {
  background: url("img/sign-untested.png");
}
.outcome .passed {
  background: url("img/sign-passed.png");
}
.outcome .inapplicable {
  background: url("img/sign-inapplicable.png");
}
.outcome .canttell, .outcome .failed,
.outcome .untested, .outcome .passed,
.outcome .inapplicable {
  text-indent: 1.7em;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  background-position: 0em 1.2em;
}

.readMore {
  padding-top: 0;
  font-size: 1rem;
}
.printonly {
  display: none;
}
.urlBreak {
  word-break: break-all;
}

@media print {
  body, page {
    margin: 0;
    box-shadow: 0;
  }
}