@charset "utf-8";

/*------------------------------------------------------------------
[Master Stylesheet]

Project:	Medusa Basis Business Responsive 7.3
Version:    1.0
Primary use:    Basis template responsive website
Method:	Bootstrap 3 Media Queries, Mobile First Method
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
# [Kleur codes]

Zwart -  #000000 / black
Wit - #fffffff / white
Grijs - #5f5f5f
Grijs Donker - #2d2d2d
Grijs Lichter - #f8f8f8

[Typography]

Body:		15px/1.5 "Andada", arial, sans-serif;
Titel:		32px/3.2 "Andada", arial, sans-serif;
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[Inhoudsopgave]

1. Algemene stijlen
2. Typografie
3. Buttons
4. Navigatie
5. Grid/Col wrappers
6. Talen
7. Inloggen
	7.1 inloggen Popup (Modal)
8. Zoeken
	8.1 Zoekresultaten
9. Broodkruimelpad
10. Formulieren (CMS)
	10.1 Formulieren mededeling
11. Footer
b2zZlGnm5O
// Extra componenten

12. Kleurblok
	12.1 Kleurblok afbeelding
	12.2 Achtergrond kleuren 
-------------------------------------------------------------------*/

/* overwrites */
.container {
	padding-left: 30px !important;
    padding-right: 30px !important;
}
.container-fluid {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

/* ========================================
  1.  Algemene stijlen
   ========================================= */
.text-left {}
.text-center { text-align: center;}
.text-right {}
.text-justify {}
.text-nowrap {}
.uppercase {
	text-transform: uppercase;
	letter-spacing: 1px;
}
.normal { font-weight: normal;}
.strong{ font-weight: 700 !important;}
.text-white { color: white !important;}
.text-black { color: black !important;}
.word-break { word-break: break-word;}
.relative { position:relative;}
.hidden { display:none;}
.inline-block { display:inline-block;}
.round {
    -webkit-border-radius: 2px !important;
    -moz-border-radius: 2px !important;
    border-radius: 2px !important;
}
.shadow {
    -webkit-box-shadow: 0px 3px 50px rgba(0, 0, 0, .15);
    -moz-box-shadow: 0px 3px 50px rgba(0, 0, 0, .15);
    box-shadow: 0px 3px 50px rgba(0, 0, 0, .15);
}
.white-shadow {
    -webkit-box-shadow: 0px 0px 200px rgba(255, 255, 255, .2);
    -moz-box-shadow: 0px 0px 200px rgba(255, 255, 255, .2);
    box-shadow: 0px 0px 200px rgba(255, 255, 255, .2);
}
.bg-white {background-color: white;}
.bg-black {background-color: black;}
.bg-pink {background-color: #e5007d;}
.bg-purple {background-color: #8152a0;}
.bg-green {background-color: #239a48;}
.bg-blue {background-color: #1878b8;}
.bg-light-grey {background-color: #ebebeb;}

.clearlist,
.clearlist li {
    list-style: none;
    padding: 0;
    margin: 0;
    background: none;
}
body {
	background-color: white;
}
img {
	max-width: 100%;
}
iframe {
    border: none;
}
a:focus {
	color: transparent;
	text-decoration: none;
}

/* Mouse select */
::selection {
	color: #fff;
	background: #e2e2e2;
}
::-moz-selection {
	color: #fff;
	background:#e2e2e2;
}/* Gecko Browsers */
::-webkit-selection {
	color: #fff;
	background:#000;
}
/* Print styles */
@media print {
	a:link:after, a:visited:after {
		content: "";}
}

/* ========================================
   2. Typografie // External stylesheet: fonts.css
   ========================================= */
html {
	font-size: 62.5%;
}
body {
	font-family: 'Andada',Arial,sans-serif;	
	color: black; 
	font-size: 1.6rem; /* =16px */
	line-height: 1.6;
	font-style: normal;
	/*word-break: break-all;*/
	overflow-wrap: break-word;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}
a {
	color: #337ab7;
}
a:hover, a:focus {
    color: #23527c;
    text-decoration: underline;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
	line-height: 1.4;
    margin-bottom: 10px;
	word-break: break-word;
}
h1 {
	font-size: 2rem;
}
h2 {
	font-size: 1.7rem;
}
h3 {
	font-size: 1.3rem;
}
p {
	margin: inherit;
}
ul, ol {
    margin: 0 0 1.5em 0;
}
hr {
    border-color:rgba(0,0,0, .85);
    background: rgba(0,0,0, .85);
}


li {
	list-style-position:outside;
	margin-left:10px;
}
li, ul, ol {
	width:auto;
	color: inherit;
}
ol, ul {
	margin:0;
	padding:0;
	margin-left:40px;
}
ol li {
	font-size: inherit;
	font-size: 2rem;
}
ul li {
	font-size: inherit;
	font-size: 2rem;
}


/* ========================================
   3. Buttons
   ========================================= */
   
   
/* ========================================
    4. Navigatie  // External stylesheet: inc_menu.css
   ========================================= */
.navbar-default {
	margin-bottom: 0px;
	background-color: transparent;
	border: 0;
}
/* Hoofdmenu */
.hoofdmenu {
	margin-top: 12px;
	margin-bottom: 20px;
}
.hoofdmenu li a {
	font-size: 1.6rem;
}
.hoofdmenu .dropdown-menu {
	padding: 0px;
}
.hoofdmenu .dropdown-menu li.active a {
	background-color: #E99236;
}
.hoofdmenu .navbar-nav > .active > a,
.hoofdmenu .navbar-nav > .active > a:hover,
.hoofdmenu .navbar-nav > .active > a:focus {
	color: #E99236;
	background-color: transparent;
}
.hoofdmenu .navbar-nav > .open > a,
.hoofdmenu .navbar-nav > .open > a:hover,
.hoofdmenu .navbar-nav > .open > a:focus {
	background-color: transparent;
	color: #555555;
}

/* ========================================
    5. Grid/Col wrappers
   ========================================= */   
.grid-wrapper {
	padding: 0;
}
/* grid wrappers */
.grid-wrapper.boven {}
.grid-wrapper.midden {}
.grid-wrapper.boven .wrap.bovenstuk {
	width: 100%;
	height: auto;
}
/* col wrappers */
.col_wrapper_onder {
	margin-bottom: 30px;
}

/* ========================================
    6. Talen // External stylesheet: languages.min.css
   ========================================= */
.talen {
	float: right;
	margin-top: 8px;
	margin-right: 0px;
	margin-bottom: 8px;
	margin-left: 8px;
	font-size: 1.5rem;
}
.talen .btn>.lang-sm:after {
	top: -2px;
	padding-left: 6px;
}
.talen .dropdown-menu {
	z-index: 1001;
	min-width: 143px;
	padding-top: 0px;
	padding-bottom: 0px;
}
.talen .dropdown-menu li a {
	font-size: 14px;
	padding: 6px 12px;
}
.talen ul.dropdown-menu span.lang-sm:after {
	padding-left: 6px;
}
	
/* ========================================
    7. Inloggen
   ========================================= */
.btn_inloggen {
	float:right;
	margin-top: 8px;
	margin-right: 0px;
	margin-bottom: 8px;
	margin-left: 8px;	
}
.btn_inloggen a {
	font-size: 1.4rem;
	padding: 6px 10px;
}

/* inloggen Popup (Modal) */
#loginbox {
	margin-top:50px;
}
.modal-body {
	padding-top:30px;
}
#loginform  .input-group {
	margin-bottom: 25px;
}
#recoverpasswordbox .input-group {
	margin-bottom: 25px;
}
#recoverpasswordbox  {
	display:none;
	margin-top:50px;
}
.modal_inloggen .panel-info > .panel-heading {
	color: #000000;
	background-color: #EEEEEE;
	border-color: #D3D3D3;
}
a.modal-link-txt {
	font-size: 1.3rem;
}
.form-group.no-bottom-margin {
	margin-bottom: 0px;
}
/* remove red outline validation IE */
input:required:invalid {
	outline: none;
}
/* Inlog tekst */
.inlognaam {
	float: right;
	padding-top: 5px;
}
	
/* ========================================
    8. Zoeken
   ========================================= */
.btn_zoeken {
	float:right;
}
.btn_zoeken .navbar-form {
	border: 0; /* overwrite */
	padding: 0; /* overwrite */
	margin-top: 8px;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 8px;
}
.btn_zoeken .navbar-form .input-group > .form-control {
	width: 100%;
} 

/* zoekresultaten */
#zoekresultaten a {
	color:#000 !important;
	display:block;
}
#zoekresultaten a:hover {
	text-decoration:none;
}
#zoekresultaten a h3 {
	color: #337ab7;
}
#zoekresultaten a:hover h3 {
	color:#f15c27;
}
#zoekresultaten a .tekst {
	display:block;
	color:#000 !important;
	font-size: 1.6rem;
	padding-bottom:20px;
	margin-top:-10px;
}
	
/* ========================================
    9. Broodkruimelpad 
   ========================================= */
ol.breadcrumb {
	margin-top: 20px;
	background-color: rgba(0, 0, 0, 0.075);
}

/* ========================================
    10. Formulieren (CMS)
   ========================================= */

table.formulier {
	margin-bottom: 40px;
}
.formulier .cell_label,
.formulier .cell_field{
	font-size: 1.8rem;
	font-weight:normal;
	line-height: 2.3rem;
	padding-bottom:15px;
	vertical-align:top;}
.formulier input[type="text"],
.formulier input[type="email"],
.formulier input[type="numeric"],
.formulier textarea,
.formulier select {
	height: 31px;
	line-height: 18px;
	padding: 0 10px 0 10px;
	transition: all 0.7s ease-in-out 0s;
	background-color: #ffffff;
	border: solid 1px #cccccc;
	color: #333333;
	width:100%;
	max-width:320px;
	display:inline-block;
	font-size: 1.8rem;}
.formulier .cell_field img{
	margin-left:5px;
	margin-top:-5px;}
#captchaImage{
	border: solid 1px #cccccc;
	margin-bottom:10px;
	margin-left:0;
	margin-top:0;}
.formulier select {
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;}
.formulier textarea {
	border-bottom-right-radius: 0px;}
.formulier input[type="checkbox"],
.formulier input[type="radio"]{
	display:inline;
	margin-left:10px;}
.formulier textarea {
	height:200px;
	overflow:auto;
	font-size: 1.8rem;
	padding: 5px 10px 5px 10px;}		
.formulier input[type="submit"] {
}
.formulier .cell_multi em{
	white-space:nowrap;
	margin-left:30px;}
.formulier .cell_field em {
	display:block;
	white-space:nowrap;
	padding-top:4px;
	font-size: 1.6rem;
	padding-left:10px;
}
.formulier input:hover, .formulier input:focus,
.formulier textarea:hover, .formulier textarea:focus,
.formulier select:hover, .formulier select:focus {
	border-color: #66afe9;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
	outline: 0 none;
}
.formulier input[type="file"] {
	box-shadow: none;
}

/* Formulieren mededeling */
.mmodal {
	position: fixed;
	top: 110px;
	left: 50%;
	margin-left: -200px;
	width: 400px;
	height: 200px;
	background-color: #eeeeee;
	border: solid 1px #cccccc;
	color: #333333;
	box-shadow: 2px 2px 4px 4px rgba(0,0,0,0.05);
	z-index:999999;
	word-break: break-word;
}
.mmodal h1 {
	margin:10px auto;
	text-align:center;
}
.mmodal div {
	width:100%;
	text-align:center;
	display:block;
	margin:10px auto;
	font-size:1.8rem;
}
.mmodal button {
    width: 160px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    margin-left: -80px;
}

/* ======================================
    11. Footer
====================================== */
footer {
	width: 100%;
	bottom: 0;
	margin-top: 0;
	color: white;
}
	
/* ======================================
    11. Carousel
====================================== */
#myCarousel.carousel {
	height: 244px;
	z-index: 0;
}

/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%
	EXTRA COMPONENTEN
%%%%%%%%%%%%%%%%%%%%%%%%%%%% */

/* ======================================
    12. Leeg
====================================== */



/*********** FINALCIEELE SPREEKUUR ***********/

/* Header */ /* Header */
.wrap.bovenstuk .logowrapper {
	max-width: 300px;
    margin: 0 auto;
	padding: 20px 0px 60px 0px;
}
.wrap.onderstuk .titel-balk {
	background-color:black;
	color:white;
    padding: 10px 0px;
	position:relative; /* positie voor .roze-rondje */
}
.wrap.onderstuk span.balk-titel {
	font-size: 4rem;
	font-weight: bold;
}
.wrap.onderstuk .roze-rondje {
    position: absolute;
    top: -50px;
    right: 10px;
    height: 120px;
    width: 120px;
    border-radius: 50%;
    padding: 12px;
    background-color: #e5007d;
    text-align: center;
    word-break: break-word;
    font-weight: bold;
    font-size: 1.6rem;
    line-height: 1.6;
}

/* Content*/ /* Content */
.uitklap-blokken {
	color: white;
	margin: 0 -30px;
}
.uitklap-blokken img.icon {
	display: block;
	margin:0 auto;
    max-height: 70px;
}
.uitklap-blokken .gekleurdblok {
	padding: 20px;
}
.uitklap-blokken .gekleurdblok.bg-pink:hover {background-color: #b30062;}
.uitklap-blokken .gekleurdblok.bg-purple:hover {background-color: #6d4587;}
.uitklap-blokken .gekleurdblok.bg-green:hover {background-color: #1c7d3b;}
.uitklap-blokken .gekleurdblok.bg-blue:hover {background-color: #15679e;}

.gekleurdblok {
	cursor: pointer;
}

.uitklap-blokken a {
	color: black;
}
.uitklap-blokken .gekleurdblok h1 {
	font-weight: normal; /*overwrite */
	font-size: 2.5rem;
	color: white;
}

/* Uitklapvenster */
.uitklapvenster {}


/* Animatie voor uitklapvenster */
@keyframes klapuit {
    from { 
		max-height: 0;
		overflow: hidden;
		-webkit-transition: max-height 4a;
		-moz-transition: max-height 4s;
		transition: max-height 4s;
	}
    to   {

		max-height: 1800px;
	}
}
/* Firefox < 16 */
@-moz-keyframes klapuit {
    from { 
		max-height: 0;
		overflow: hidden;
		-webkit-transition: max-height 4a;
		-moz-transition: max-height 4s;
		transition: max-height 4s;
	}
    to   {
		max-height: 1800px;
	}
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes klapuit {
    from { 
		max-height: 0;
		overflow: hidden;
		-webkit-transition: max-height 4a;
		-moz-transition: max-height 4s;
		transition: max-height 4s;
	}
    to   {
		max-height: 1800px;
	}
}
/* Internet Explorer */
@-ms-keyframes klapuit {
    from { 
		max-height: 0;
		overflow: hidden;
		-webkit-transition: max-height 4a;
		-moz-transition: max-height 4s;
		transition: max-height 4s;
	}
    to   {
		max-height: 1800px;
	}
}
/* Opera < 12.1 */
@-o-keyframes klapuit {
    from { 
		max-height: 0;
		overflow: hidden;
		-webkit-transition: max-height 4a;
		-moz-transition: max-height 4s;
		transition: max-height 4s;
	}
    to   {
		max-height: 1800px;
	}
}

/* Animatie kopellen aan uitklapvenster */
#bloktekst_1 .container article.blok-content,
#bloktekst_mobile_1 .container article.blok-content,
#bloktekst_2 .container article.blok-content,
#bloktekst_mobile_2 .container article.blok-content,
#bloktekst_3 .container article.blok-content,
#bloktekst_mobile_3 .container article.blok-content,
#bloktekst_4 .container article.blok-content,
#bloktekst_mobile_4 .container article.blok-content {
	-webkit-animation: klapuit 4s; /* Safari, Chrome and Opera > 12.1 */
	-moz-animation: klapuit 4s; /* Firefox < 16 */
	-ms-animation: klapuit 4s; /* Internet Explorer */
	-o-animation: klapuit 4s; /* Opera < 12.1 */
	animation: klapuit 4s;
}

.uitklapvenster article.blok-content h1 {
	font-size: 3.5rem;
}
.uitklapvenster article.blok-content h2 {
	font-size: 3rem;
}
.uitklapvenster article.blok-content h3 {
	font-size: 2.5rem;
}


/* Wit-blok */
.wit-blok .padding-bottom {
	padding-top: 10px;
}
.wit-blok,
.groen-blok {
	padding: 20px 0px;
}
.wit-blok h1,
.wit-blok h2,
.wit-blok h3,
.groen-blok h1,
.groen-blok h2,
.groen-blok h3 {
	font-size: 2rem;
}
.wit-blok p  {
	font-size: 2rem;
}
.wit-blok h1:first-child,
.groen-blok h1:first-child {
	margin-top:0;
}
.wit-blok h1:first-child {
	font-size: 3.25rem;
}
.groen-blok p {
	color: white; /* overwrite */
	font-size: 1.5rem;
}

/* Footer */
footer .row {
    padding: 20px 0px;
}
footer h1:first-child {
	margin-top:0;
}


/*********** /FINALCIEELE SPREEKUUR ***********/

/* iPhone 5 */
@media screen and (device-aspect-ratio: 40/71) {
	.wrap.onderstuk .roze-rondje {
		top: -30px;
		right: -15px;
		height: 100px;
		width: 100px;
		font-size: 1.25rem;
		line-height: 1.6;
	}
}

/* Custom, iPhone Retina */ 
@media only screen and (min-width : 320px) {

}/* Einde Custom, iPhone Retina */ 

/* Extra Small Devices, Phones */ 
@media only screen and (min-width : 480px) {

}/* Einde Extra Small Devices, Phones */ 

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

} /* Einde Small Devices, Tablets */

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
	.wrap.bovenstuk .logowrapper {
		padding: 20px 0px 20px 0px;
	}
	/* Wit-blok */
	.wit-blok .padding-bottom {
		padding-top: 0px;
	}
}/* Einde Medium Devices, Desktops */

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
		
/*********** FINALCIEELE SPREEKUUR ***********/
	.wrap.bovenstuk .logowrapper {
		max-width: 500px;
	}
	.wrap.onderstuk .titel-balk {
		padding: 20px 0px;
	}
	.wrap.onderstuk span.balk-titel {
		font-size: 5rem;
	}	
	.wrap.onderstuk .roze-rondje {
		top: -75px;
		right: 140px;
		height: 150px;
		width: 150px;
		border-radius: 50%;
		padding: 15px;
		font-size: 1.9rem;
		line-height: 1.6;
	}
	.uitklap-blokken .gekleurdblok h1 {
		font-size: 3rem;
	}
	.wit-blok h1:first-child {
		font-size: 5rem !important;
	}
	
	/* Wit-blok */
	.wit-blok,
	.groen-blok {
		padding: 20px 0px;
	}
	.wit-blok h1,
	.wit-blok h2,
	.wit-blok h3,
	.groen-blok h1,
	.groen-blok h2,
	.groen-blok h3 {
		font-size: 2.5rem;
	}

	
/*********** /FINALCIEELE SPREEKUUR ***********/

}/* Einde Large Devices, Wide Screens */