* {
  box-sizing: border-box;
}

textarea:focus, input:focus, select:focus, button:focus, option:focus{
  outline: none;
}

input[type=text],
input[type=submit],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
textarea,
select,
option {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;

  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}

@font-face {
  font-family: 'gaden';
  src: url('../fonts/gadensans.woff2') format('woff2'),
  url('../fonts/gadensans.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Roboto Condensed', sans-serif;
  height: 100%;
  font-size: .8em;
  box-sizing: border-box;
  line-height: 1.5em;
  background-color: white;
  font-weight: 400;
  color: black;
  position: relative;
  font-size: 1em;
}

html {
  box-sizing: border-box;
  height: 100%;
}

.center-cell
{
  display: table-cell;
  height: 100%;
  width: 100%;
  text-align: center;
  vertical-align: middle;
}

.center-table
{
  display: table;
  width: 100%;
  height: 100%;
}

/* COOKIE MELDING NEW */

#PLCookie {
	position: fixed;
	left: 10px;
	bottom: 10px;
	margin-right: 10px;
	background-color: white;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	-ms-align-items: flex-start;
	align-items: flex-start;
	z-index: 100;
	padding: 25px;
	transition: all .8s;
	-webkit-box-shadow: 0px 2px 22px 0px rgba(61,61,61,0.41);
	-moz-box-shadow: 0px 2px 22px 0px rgba(61,61,61,0.41);
	box-shadow: 0px 2px 22px 0px rgba(61,61,61,0.41);
}

#PLCookie h2 {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-family: 'Montserrat', sans-serif;
	color: #353535;
	font-size: 1.6em;
	font-weight: 700;
	margin-bottom: 15px;
	line-height: 30px;
}

#PLCookie p {
	max-width: 500px;
	font-family: 'Montserrat', sans-serif;
	color: #979797;
	margin-bottom: 20px;
	text-align: justify;
	line-height: 150%;
	font-size: 1.1em;
}

.PL_Buttons {
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
	width: 100%;
}

.PL_Buttons a {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-family: 'Montserrat', sans-serif;
	padding: 15px;
	background-color: #0076b0;
	border: 1px solid #0076b0;
	color: #fefefe;
	width: 48%;
	cursor: pointer;
	text-align: center;
	transition: all .3s;
	margin: 5px;
	font-size: 1.3em;
}

.PL_Buttons a:hover {
	background-color: transparent;
	color: #0076b0;
	border: 1px solid #0076b0;
}

/* NEW COOKIE END */

/* SPLASH SLIDER */

.splash-img {
  height: 450px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.home-slider {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;

}


/*  SPLASH PAGE  */
.splash-text {
  padding: 50px 0;
  width: 100%;
  overflow: auto;
  border-top: 4px solid #c02316;
  background: #b7b7b7;
  background: -moz-linear-gradient(top, #b7b7b7 0%, #d0d0d0 100%);
  background: -webkit-linear-gradient(top, #b7b7b7 0%,#d0d0d0 100%);
  background: linear-gradient(to bottom, #b7b7b7 0%,#d0d0d0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b7b7b7', endColorstr='#d0d0d0',GradientType=0 );
}

.splash-text p {
  max-width: 1280px;
  padding: 20px;
  margin: 0 auto;
  display: block;
  text-align: center;
  font-size: 1.1em;
}

.splash-bottom {
  max-width: 1280px;
  padding: 20px;
  margin: 0 auto;
  display: block;
}

.splash-logo {
  width: 300px;
  height: 150px;
  background-image: url(/images/logo.jpg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  float: left;
  position: relative;
}

.splash-logo>a {
  width: 100%; height: 100%; top: 0;left: 0;right: 0;bottom: 0;position: absolute;z-index: 2;
}

.splash-bottom>a{
  font-weight: bold;
  padding: 10px 100px;
  border: 3px solid #0076b0;
  color: #0076b0;
  background-size: 400% 100%;
  background-image: linear-gradient(to right, transparent 50%, #0076b0 50%);
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
  margin: 20px auto;
  font-size: 1.2em;
  float: right;
  text-transform: uppercase;
  margin-top: 50px;
  border-radius: 4px;
}


.splash-bottom>a:hover {
  background-position: -50% 0;
  color: white;
}



/*  ALGEMEEN  */
.spacer {
  height: 100px;
  widows: 100%;
}

main {
  max-width: 1280px;
  margin: 0 auto;
  display: block;
  padding: 20px;
  padding-bottom: 0;
}

.algemeen-h1 {
  text-transform: uppercase;
  color: #c02316;
  font-size: 1.3em;
  text-align: center;
  width: 100%;
  line-height: 150%;
  padding: 30px 0;
  font-weight: 700;
}

.algemeen-p {
  text-align: center;
  padding-bottom: 50px;
}

.raster
{
  width: 100%;
  max-width: 1280px;
  margin:auto;
  position: relative;
  margin-bottom: 60px;
}

.raster_item
{
  position: relative;
  min-height: 400px;
  background-color: #cfe0e7;
}

.raster_item > div:first-child
{
  position: absolute;
  background-size: cover;
  background-position: center;
  width: 50%;
  left:0;
  top:0;
  height: 100%;
}

.raster_item > div:nth-child(2n)
{
  padding: 20px 50px 50px 50px;
  width: 50%;
  float:right;
}

.raster_item:nth-child(even) > div:nth-child(2n+1)
{
  right:0;
  left:auto;
}
.raster_item:nth-child(even) > div:nth-child(2n)
{
  float:left;
}

.raster_item h1
{
  margin-bottom: 50px;
  margin-top: 20px;
  font-size: 1.1em;
  font-weight: 700;
  color: #05455f;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}

.offerte {
  width: 100%;
  background: #b7b7b7;
  background: -moz-linear-gradient(top, #b7b7b7 0%, #d0d0d0 100%);
  background: -webkit-linear-gradient(top, #b7b7b7 0%,#d0d0d0 100%);
  background: linear-gradient(to bottom, #b7b7b7 0%,#d0d0d0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b7b7b7', endColorstr='#d0d0d0',GradientType=0 );
  min-height: 150px;
  position: relative;
}

.offerte-in {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: block;
  overflow: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.offerte h1 {
  margin-top: 10px;
  color: #c12416;
  font-weight: 700;
  font-size: 1.1em;
  float: left;

}

.offerte h2 {
  margin-top: 10px;
  font-style: italic;
  color: black;
  font-size: 1em;
  margin-left: 20px;
  float: left;
}

.offerte a {
  font-size: 1em;
  border-radius: 4px;
  background-color: #c12416;
  padding: 10px 15px;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
  float: right;
  border: 3px solid #c12416;
  transition: all .3s;
}

.offerte a:hover {
  background-color: transparent;
  color: #c12416;
}

footer {
  width: 100%;
  overflow: auto;
  padding: 30px 0;
  background-color: #fff;
}

.innerfooter {
  max-width: 1280px;
  margin: 0 auto;
}

.innerfooter ul {
  width: 100%;
  display: inline-block;
}

.footer-item {
  float: left;
  width: 25%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
}

.footer-item div {
  float: left;
  width: 20%;
}
.footer-item div a {
  color: black;
}
.footer-item div p {
  margin-bottom: 10px;
}

.footer-item div:nth-child(2) {
  width: 80%;
}


.footer-item img {
  display: block;
}

.madeby {
  text-align: center;
  background-color:#0076b0;
}

.madeby a {
  margin: 0 auto;
  text-align: center;
  font-size: .7em;

  color: #fff;
}

.pages-banner {
  background-image: url(/images/home.jpg);
  height: 150px;
  width: 100%;
  background-size: cover;
  background-position: center;
}



/*  NAVIGATIE  */
.navigatie {
  width: 100%;
  height: 100px;
  position: fixed;
  z-index: 50;
  background-color: white;
  border-bottom: 1px solid #027eb5;
}

.innernavigatie {
  max-width: 1280px;
  margin: 0 auto;
  display: block;
  height: 100%;
  position: relative;
}

.logo {
  width: 300px;
  height: 100px;
  background-image: url(/images/logo.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  float: left;
  position: relative;
}

nav {
  position: absolute;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  right: 10px;
  top: 50%;
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}

nav ul {
  padding-top: 10px;
  display: flex;
  float: left;
  justify-content: space-between;
}

nav ul li {
  float: left;
  font-size: 1em;
  color: #0076b0;
  margin: 0 30px;
  font-weight: 400;
  padding-bottom: 10px;
  text-transform: uppercase;
}

nav ul li:hover {
  color: #112d3b;
}

nav a{
  color: #0076b0;
}

.active {
  border-bottom: 2px solid #c02316;
}


.res-button {
  width: 40px;
  z-index: 30;
  height: 40px;
  position: absolute;
  display: none;
  right: 40px;
  cursor: pointer;
  top: 50%;
  background-image: url(/images/menu.png);
  background-size: contain;
  background-position: center;
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}

.nav-res {
  width: 300px;
  height: 100%;
  background-color: white;
  position: fixed;
  right: -450px;
  transition: all .3s;
  top: 0;
  z-index: 60;
  -webkit-box-shadow: 0px 0px 21px -2px rgba(0,0,0,0.36);
  -moz-box-shadow: 0px 0px 21px -2px rgba(0,0,0,0.36);
  box-shadow: 0px 0px 21px -2px rgba(0,0,0,0.36);
}

.nav-res img {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.nav-res ul {
  padding-top: 60px;
}

.nav-res a {
  color: black;
  font-size: 1.4em;
  text-transform: uppercase;
}

.active-res {
  border-left: 8px solid #0385b9;
  color: #0385b9;
  font-weight: 700;
}

.nav-res ul li {
  padding: 15px 20px;
}

.overlay {
  background-color: rgba(0,0,0,.7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  display: none;
}







/*  HOME.TPL  */
.home-banner {
  max-height: 500px;
  width: 100%;
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


/*  DIENSTEN.TPL  */
.diensten {
  width: 100%;
  overflow: auto;
  padding-bottom: 60px;
}

.imgoverlay {
  position: relative;
}

.imgoverlay h2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-color: rgba(0,0,0,.4);
  transition: all .3s;
  font-size: 2em;
  line-height: 1.5em;
  padding:10px;
}


.item:hover img {
  transform: scale(1.1);
}

.imgoverlay h2 span{
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 6;
  width: 100%;
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
}

.item {
  position: relative;
  overflow: hidden;
}

.item img {
  transition: all 0.3s;
}

.item a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 7;
}

.active-ref {
  background-color: #c12416 !important;
  border: 1px solid #c12416 !important;
  cursor: default !important;
  color: white !important;
}


/*  REFERENTIES  */

.refrow{
  width: 100%;
}

.sub-refrence {
  background-color: #0387bb;
  color: white;
  border: 1px solid #0387bb; 
  transition: all .3s;
  padding: 7px 25px;
  cursor: pointer;
  text-align: center;
  border-radius: 3px;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

.sub-refrence:hover {
  border: 1px solid black;
  color: black;
  background-color: transparent;
}

.refrow {
  margin-top: 20px;
}

.refrow:after, .locsearch:after {
  display: block;
  clear: both;
  content: '';
}

.locsearch {
  width: 30%;
  padding: 5px;
  border: 1px solid gray;
}

.locsearch input {
  float: right;
  width: 60%;
  font-family: 'Roboto Condensed', sans-serif;
  border: none;
  border-left: 1px solid gray;
  text-align: center;
}

.locsearch label {
  float: left;
  width: 40%;
  font-family: 'Roboto Condensed', sans-serif;  
  color: black;
  text-align: center;
}

.topholder {
  overflow: auto;
  padding-bottom: 30px;
  border-bottom: 1px solid #0387bb;
}

.realistatie-grid{
  width: 100%;
  padding-top: 20px;
  overflow: auto;
  padding-bottom: 60px;
}

.realisatie-item {
  width: 33.3333%;
  padding: 10px;
  position: relative;
  float: left;
  min-height: 200px;
}

.realisatie-item-alle
{
  width: 25%;
}

.realisatie-item img {
  width: 100%;
}

.imgoverlay1 {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.inneroverlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  transition: all .3s;
  cursor: pointer;
  z-index: 11;
  background-size: cover;
  background-position: center;
}

.a-ref {
  min-height: 200px;
  z-index: 9;
  overflow: auto;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;left: 0;right: 0;bottom: 0;
}

.inneroverlay:hover {
  background-color: rgba(0,0,0,0) !important;
}

.realisatie-item:hover .button-ref {
  display: block !important;
}

.button-ref {
  display: none;
  text-transform: uppercase;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 10px 20px;
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #0387bb;
  border: 3px solid #0387bb;
  transition: all .3s;
  z-index: 4;
  font-family: 'Roboto Condensed', sans-serif;  
  font-size: 1em;
  width: 75%;
  text-align: center;
}

.button-ref:hover .inneroverlay {
  background-color: rgba(0,0,0,0);
}

/*  CONTACT.TPL  */

.contactpage > div
{
  float:left;
}

.contactpage > div:first-child
{
  width: 30%;
  margin-right:3%;
}

.contactpage > div:nth-child(2)
{
  width: 33%;
}

.contactpage > div:nth-child(3)
{
  float:right;
  margin-left:3%;
  width: 30%;
}

.contact-form input[type="text"] {
  width: 100%;
  height: 33px;
  margin-bottom: 10px;
  padding-left: 7px;
  box-sizing: border-box; 
  border-radius: 2px;
  font-family: 'Roboto Condensed', sans-serif;
  border: 1px solid #2d1f1a;
}

.contact-form input[type="submit"] {
  width: 100%;
  height: 40px;
  background-color: #0387bb;
  border: none;
  text-transform: uppercase;
  color: white;
  font-family: 'Roboto Condensed', sans-serif;
  border: 3px solid #0387bb;
  padding-left: 7px;
  transition: all .3s;
  border-radius: 5px;
  margin-top: 10px;
}

.contact-form input[type="submit"]:disabled {
  opacity: .3;
}



.contact-form select {
  width: 100%;
  font-family: 'Roboto Condensed', sans-serif;
  border: 1px solid #2d1f1a;
  height: 33px;
  background: #fff url('/images/dropdown-lang.png') no-repeat right 1px center; 
  padding: 0; 
  margin-bottom: 10px;
  padding-left: 5px;
}
.contact-form textarea {
  height: 105px;
  width: 100%;
  padding-left: 7px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #2d1f1a;
  padding-top: 5px;
  font-family: 'Roboto Condensed', sans-serif;
}
.errors {
  margin-bottom: 10px;
}

.contact-info
{
  height: 490px;
}

.contact-info > div:nth-of-type(1), .contact-info > div:nth-of-type(2)
{
  width: 47.5%;
  float:left;
}

.contact-info > div:nth-of-type(2)
{
  float:right;
}

.contact-info p {
  position: relative;
  padding-left: 30px;
  font-size: 0.9em;
  font-family: 'Roboto Condensed', sans-serif;
}
.contact-info p img {
  position: absolute;
  left: 0;
  top: 5px;
}
.contact-info p a {
  color: black;
}

.contactimg {
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid #000;
}

.toon-groot, .contact-us {
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 40px; 
  font-family: 'Roboto Condensed', sans-serif;
  background-color: #0387bb;
  border: 3px solid #0387bb;
  text-transform: uppercase;
  color: white;
  transition: all .3s;
  border-radius: 5px;
  margin-top:10px;
}
.toon-groot:hover, .contact-us:hover {
  background-color: transparent;
  color: #0387bb;
}



#dasmap 
{
  border:1px solid #000;
  height: 490px;
}

/*  MEDIA QUERY'S  */


@media screen and (max-width: 1000px) {

  .contactpage > div:first-child, .contactpage > div:nth-child(2)
  {
    width: 47.5%;
    float:left;
    margin-bottom: 2em;
  }

  .contactpage > div:nth-child(2)
  {
    float:right;
  }

  .contactpage > div:nth-child(3)
  {
    width: 100%;
    margin-left:0;
    margin-right:0;
  }

}

@media screen and (max-width: 640px) {
  .contactpage > div:first-child, .contactpage > div:nth-child(2), .contactpage > div:nth-child(3)
  {
    width: 100%;
    float:none;
    margin-bottom: 2em;
    height: auto;
  }

  .contact-info
  {
    height: auto;
  }

  .contact-info > div:nth-of-type(1), .contact-info > div:nth-of-type(2)
  {
    width: 100%;
    float:none;
    text-align: center;
  }
}

@media screen and (max-width: 400px) {
}


@media screen and (max-width: 1100px) {
  .raster_item {
    font-size: .9em;
  }
  
  .realisatie-item {
    width: 33.33%;
  }
}

@media screen and (max-width: 1050px) {
  nav ul li {
    margin: 0 15px;
  }

  .refrow {
    width: 100%;
    display: block;
    float: left;
    padding-bottom: 30px;
  }

  .locsearch {
    width: 50%;
    display: block;
    float: left;
    margin: 0 auto;
  }

  .offerte h1 {
    float: none;width: 100%;text-align: center;
  }

  .offerte h2 {
    text-align: center;float: none;width: 100%;
    margin-left: 0;
  }

  .offerte a {
    float: none;
    margin: 0 auto;
    display: block;
    width: 200px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .offerte {
    min-height: 200px;
    height: auto;
  }
}

@media screen and (max-width: 960px) {
  .raster_item > div {
    padding: 20px !important;
    width: 100% !important;
  }
  .raster_item > div:first-child {
    width: 100%;
    min-height: 300px;
    position: relative;
  }

  .innerfooter ul {
    justify-content: center;
  }

  .footer-item {
    width: 33.33%;
    padding-bottom: 0;
    padding-top: 0;
  }
}

@media screen and (max-width: 900px) {
  nav {
    display: none;
  }

  .res-button {
    display: block;
  }

  .realisatie-item {
    width: 50%;
  }

  .home-banner {
    height: 350px;
  }

}

@media screen and (max-width: 750px) {

  .raster_item > div:first-child {
    position: relative;
  }

  .raster_item > div {
    margin-bottom: 20px;
    width: 100% !important;
  }

  .locsearch {
    width: 100%;
  }

  .sub-refrence {
    width: 48%;
    margin-right: 2%;
  }

  .sub-refrence:nth-child(2n)
  {
    float:right;
    margin-right:0;
    margin-left:2% ;
  }

  .footer-item {
    width: 50%;
    justify-content: center;
  }

  .pages-banner {
    height: 100px;
  }
}


@media screen and (max-width: 640px) {

}

@media screen and (max-width: 650px) {
  .splash-logo {
    display: block;
    margin: 0 auto;
    float: inherit;
  }

  .splash-bottom>a {
    display: block;
    margin: 0 auto;
    padding: 10px 0;
    text-align: center;
    float: inherit;
    margin-top: 50px;
  }

  .contact-height {
    min-height: 0;
  }

  .realisatie-item {
    width: 100%;
  }

  .sub-refrence {
    min-width: 31.33% !important;
    margin-right: 2%;
  }

  .splash-img {
    display: none;
  }

}

@media screen and (max-width: 500px) {
  .home-banner {
    height: 250px;
  }
  .sub-refrence {
    min-width: 100% !important;
    margin-right: 0;
  }
}

@media screen and (max-width: 400px) {


  .logo {
    width: 70%;
  }

  .res-button {
    right: 15px;
  }

  .footer-item {
    width: 100%;
    justify-content: center;
  }

  .splash-text {
    display: none;
  }

  .splash-img {
    height: 100px;
  }
}

.threenospace > div
{
  width: 33.3333%;
  float:left;
}

@media screen and (max-width: 800px) {
  .threenospace > div
  {
    width: 100%;
    float:none;
    margin-bottom: 2em;
    max-width: 400px;
    margin-left:auto;
    margin-right:auto;
  }


}

#content-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin: auto;
  margin-top: 10em;
}

#content-container h2 {
  color:#0082CB; 
  font-size:2.4em; 
  font-weight:bold; 
  margin-bottom: 1em;
  margin-top: 1em;
  cursor: pointer;
}

#content-container h3 {
  background: #0082CB;
  color: #fff;
  font-size: 1.2em;
  padding: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
  margin-top: 20px;
}

#content-container h3 span {
  position: absolute;
  z-index: 1;
  background: transparent url("/images/cross_w.png") no-repeat;
  display: inline-block;
  width: 15px;
}

#content-container h4 {
  margin-left: 2em;
  font-size: 1.1em;
  font-weight: bold;
}

#content-container p {
  padding: 20px;
  line-height: 170%;
  color: #7e7e7e;
}

#content-container ul {
  margin-left: 3em;
}

#content-container table {
  width: 100%;
}

#content-container a {
  color: #D3191C;
}

#gdpr-wrapper {
 min-height:100%;
 position:relative;
}

#content-container thead {
  background-color: #0082CB;
  color: white;
}


#content-container thead th {
  border: 1px solid #353535;
  padding: 10px;
}

#content-container tbody td {
  border: 1px solid #353535;
  color: #7e7e7e;
  line-height: 150%;
  padding: 5px;
}

#content-container tbody td p {
  padding: 0px;
}

#content-container ul {
  padding-left: 20px;
  line-height: 170%;
  color: #7e7e7e;
  list-style-type: disc;
}

.imagesplitter
{
  text-align: center;
  margin-bottom: 60px;
}

.imagesplitter > img
{
  max-width: 70px;
}