/* 
CSS voor contract berekeningen
*/

/* Algemeen */

@media (min-width: 1200px){
  .container.calculate {
      width: 100%;
  }
}

/* Table berekeningen */
table {
  overflow: hidden;
}

tr:hover {
  /*background-color: #f5f5f5;*/
}

td, th {
  position: relative;
}
td:hover::after,
th:hover::after {
  content: "";
  position: absolute;
  background-color: #f5f5f5;
  /*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);*/
  left: 0;
  top: -5000px;
  height: 10000px;
  width: 100%;
  z-index: -1;
}
