/* General */
body {
  font-family: sans-serif;
  background-color: #f1f5f8;
}

h1 {
  font-family: 'Arial Black';
  font-size: 26px;
}

h2 {
  font-family: 'Arial Black';
  font-size: 24px;
}

.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

/* banner at the top of the website */
.banner {
    background-color: #a6d8e4;
    max-width: 100%;
    padding: 30px;
}

.banner a:link {
  text-decoration: none;
}

.banner a:visited {
  text-decoration: none;
}

.banner a:hover {
  text-decoration: none;
}

.banner a:active {
  text-decoration: none;
}

.banner-h1 {
    color: #ffffff;
    font-family: Tahoma;
    font-size: 5vw;
    max-width: 100%;
    color: #2f9cb2;
}

.banner-h2 {
    color: #ffffff;
    font-family: Arial;
    font-size: 2vw;
    max-width: 100%;
    color: #2f9cb2;
}

/* footer at the bottom */
@media only screen and (max-width: 956px) {
    footer li {
      display: flex;
      
    }

}

/* titles */

.titel {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
	margin-bottom: 20px;
}

/* content cards */

.card {
    /*background-color: rgba(102, 194, 180, 0.1) !important;*/
    background: linear-gradient(-45deg, rgba(102, 194, 180, 0.1), rgba(102, 194, 180, 0.3)) !important;
}

.card-hover {
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 6px 10px rgba(0,0,0,.08), 0 0 6px rgba(0,0,0,.05);
    transition: .3s transform cubic-bezier(.155,1.105,.295,1.12),.3s box-shadow,.3s -webkit-transform cubic-bezier(.155,1.105,.295,1.12);
    cursor: pointer;
}

.card-hover:hover{
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}

/* flex-container */
.flex-container {
  display: flex;
  flex-flow: column wrap;
  width: auto;
  align-content: space-between;
}
.flex-container > div {
  background-color: #fff;
  text-align: center;
  width: auto;
  flex: 1;
}

/* Hyperlinks */
a:not(.nav-link):not(.btn):not(.dropdown-item):not(.banner a):not(.leaflet-control a):not(.logo) {
  text-decoration: underline;
  text-underline-position: under;
  font-weight: 700;
}

/* Logos */
.logo {
  margin-top: 40px;
  margin-right: 9px;
  margin-bottom: 10px;
  margin-left: 9px;
}

/* Tables */

.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1 1;
  padding-left: 20px;
}

.avatar {
  font-size: 1rem;
  display: inline-flex;
  width: 48px;
  height: 48px;
  color: #fff;
  border-radius: 50%;
  background-color: #adb5bd;
  align-items: center;
  justify-content: center;
}

.avatar img {
  width: 100%;
  border-radius: 50%;
}

.rounded-circle {
  border-radius: 50% !important;
}

.table {
  border-radius: 20% !important;
}

.table tr {
  transition: opacity 0.3s;
  opacity: 1;
}

.table tr:hover {
  transition: opacity 0.3s;
  opacity: 0.5;
  cursor: pointer;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(165, 216, 228, 0.3);
}

/* map */
#map {
  height: 500px;
}

/* Admin */
.blok {
  width: 150px;
  height: 150px;
  margin-right: 10px;
  margin-top: 10px;
}
.tekst {
  padding: 5px;
}
.title {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
} 


/* Logo's gemeente */
.logo-container {
  text-align: center;
}

/* general (various) */

.centered { 
  margin: auto; 
  max-width: 300px;
}

.centered-text {
  text-align: center;
}