/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    margin: 15% auto; /* 15% from the top and centered */ 
    width: 80%; /* Could be more or less, depending on screen size */
}

.content-top{
	background-color:#e6e6e6;
	padding-top:20px;
	padding-left:20px;
	padding-right:20px;
	padding-bottom:20px;
	-webkit-border-top-left-radius: 15px;
	-webkit-border-top-right-radius: 15px;
	-moz-border-radius-topleft: 15px;
	-moz-border-radius-topright: 15px;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}

.content-top .title{
	font-size:20px;
	font-weight:20px;
	margin-bottom:30px;
	display: block;
}

.cookie-content{
	background-color:#f6f4f4;
	padding:20px;	
}

.bottom-content{
	background-color:#e6e6e6;
	padding:20px;
	-webkit-border-bottom-left-radius: 15px;
	-webkit-border-bottom-right-radius: 15px;
	-moz-border-radius-bottomleft: 15px;
	-moz-border-radius-bottomright: 15px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}

.bottom-content p{
	margin:auto;
	text-align:center;
	max-width:500px;
	cursor: pointer;
}

.bottom-content .button{
	padding-top:20px;
	padding-bottom:20px;
    margin-top: 0;
    font-weight:bold;
	color:#ffffff;
	margin-bottom:15px;
}

.bottom-content .remove-settings{
	font-size:23px;
	color:blue;
	margin-bottom:20px;
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.cookie-popup {
	box-shadow:none;
	z-index:99999999999;
	width: 100%;
	bottom: 0;
	left: 0;
	background:#01aac9;	
    opacity: 0;
    padding: 15px;
}
.cookie-popup-container {
	width: 100%;
	max-width:1120px;
	padding-left:20px;
	padding-right:20px;
    margin: auto;
}
.cookie-popup-container p.title {
	color: #000000;    
	font-size: 23px;
	font-family: inherit;
	text-align: left;
	padding-top: 31px;
    padding-bottom: 14px;
}
.cookie-popup-container p.content{
	padding-bottom:27px;
}
.cookie-popup-container a.explain{
	display:block;
	padding-bottom:32px;
	color:#000000;
}
.cookie-button {
    color: #ffffff !important;
    display:inline-block;
    background-color:#28AACB;
    padding-top: 5px;
    padding-bottom: 5px;
    text-decoration: none;
	width: 100%;
	margin-left: 0px!important;
	margin-bottom: 10px;
	text-align: center;
}

.cookie-button:hover{
	background-color:#018db1;
}

.cookie-button-orange{
	background-color:#f0783b;
	margin-left:0 !important;
}

.cookie-button-green{
	min-width: 249px;
    text-align: center;
	background-color:#3aaa35;
}

#cookie-popup .cookie-button{
    margin-top:40px;
    margin-left:0px!important;
}

.cookie-story{
    margin-bottom:27px;
    margin-top: 0;
}

/* POPUP styling */
/* https://codepen.io/imprakash/pen/GgNMXO */

body {
    background-size: cover;
    height: 100vh;
  }
  
  .overlay-cookie {
	  z-index: 9999999999999999999;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: all 200ms;
    visibility: hidden;
    opacity: 0;
  }
  .overlay-cookie:target {
    visibility: visible;
    opacity: 1;
  }
  
  .popup-cookie {
    margin: 20px auto;
    padding: 20px;
    padding-bottom: 45px;
    padding-top: 30px;
    padding-left: 45px;
    padding-right: 45px;
    background: #fff;
    width: 90%;
    max-width: 950px;
    position: relative;
  }  
  .popup-cookie h2 {
    margin-top: 0;
    margin-bottom:20px;
    font-size:25px;
    font-weight:normal;
    color: #1e80ae;
  }
  .popup-cookie .close {
    position: absolute;
    top: 20px;
    right: 25px;
	background-image: url(/images/close-icon.svg);
    background-repeat: no-repeat;
	width:20px;
	height:20px;
  }
  .popup-cookie .close:hover {
    color: #000000;
  }
  .popup-cookie .content-cookie {
    font-size:16px;
    max-height: 30%;
    overflow: auto;
  }

.content-cookie p{
	font-size:16px;
	line-height:24px;
	font-weight:normal;
	margin-top:0px;
}
  
 
/*
@media screen and (max-width: 700px){
    .box{
      width: 70%;
    }
    .popup-cookie{
      width: 70%;
    }
  }
*/
  /* Checkbox styling */

  /* https://codepen.io/CrisMVP3200/pen/wjJJVO?page=1& */
/* Custom Input */
.custom-input {
	display:flex;
	flex-wrap: nowrap; 
	/* justify-content: center; */ 
	cursor: pointer;
	height:20px;
}

/* Etiqueta de texto */ 
.custom-input .custom-input-label {
	display:flex;
	flex-wrap:nowrap;
    font-weight: normal; 
    padding-left: 24px;
    font-size:16px;
}

/* Elemento input */ 
.custom-input input {
	opacity:0;
    width:0; 
    display: none;
}

/* Elemento de estado */ 

.custom-input .check-checkbox {
	/*
	display:flex;
	flex-direction:column;
	justify-content: center;
	*/
	cursor:pointer;
	user-select:none;
	width:26px;
	height:26px;
    background-color:#dfdfdf;
}

.custom-input .not-tracking{
	background-color: #f1f0f0;
}

/* Elemento deshabilitado */ 
.custom-input input:disabled ~ .check-radio,
.custom-input input:disabled ~ .check-checkbox {
	background-color: #e9ecef;
}

.custom-input input:disabled ~ .custom-input-label {
	opacity: 0.6; 
}

.custom-input input:checked:disabled ~ .check-checkbox {
	background-color: #e9ecef; 
	border: 1px solid #a9a9a9; 
}

/* Parte :after del elemento de estado  */ 
.custom-input .check-radio:after, 
.custom-input .check-checkbox:after {
  content: "";
	position: relative;
	display: none;
}

/* Al seleccionar el input mediante la etiqueta, se 
   muestra la parte :after del elemento de estado */ 
.custom-input input:checked ~ .check-radio:after,
.custom-input input:checked ~ .check-checkbox:after {
	display: block; 
}

.custom-input input:checked:disabled ~ .check-radio:after {
	background-color: #333;
	top:2px;
	left:2px;
	width:12px;
	height:12px;
	border-radius:50%; 
}

.custom-input .check-radio:after {
	background-color: #359bc0; 
	top:2px;
	left:2px;
	width:12px;
	height:12px;
	border-radius:50%; 
}

.hide-cookiebar{
	display:none;
}

.custom-input input:checked:disabled ~ .check-checkbox:after {
	left: 7px;
    top: 3px;
    width: 7px;
    height: 12px;
	border: solid #333;
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
}

.custom-input .check-checkbox:after {
	left: 8px;
    top: 2px;
    width: 11px;
    height: 16px;
    border: solid #000000;
    border-width: 0 4px 4px 0;
	    box-sizing: border-box;
    transform: rotate(45deg);
}

.custom-input .not-tracking:after{
	left: 8px;
    top: 2px;
    width: 11px;
	display:block;
	border: solid #ccc5c5;
	border-width: 0 4px 4px 0;
    transform: rotate(45deg);
}

.checkbox-content{
    padding-left:50px;
	margin-top:16px;
    margin-bottom:16px;
}

.checkbox-content-last{
    margin-bottom:0px;
}



.cookie-bar{
	padding-top:15px;
	padding-bottom:15px;
	background-color: #28aacb;
	position:fixed;
	position: fixed;
    bottom: 0px;
    width: 100%;
	z-index: 99999999;
}

.cookie-bar .cookie-buttons{
	float: right;
}

.cookie-bar .cookie-popup-container{
	overflow: hidden;
}

.cookie-bar .cookie-popup-container p{
	display:inline-block;
	padding-top: 8px;
	color:#fff;
}

.cookie-bar .cookie-buttons .cookie-button{
	display:inline-block;
}

.cookie-bar .cookie-button-settings{
	background-color:#197496;
}

.cookie-bar .cookie-button-agree{
	background-color:#ffffff;
	color:#000 !important;
	margin-left: 0px!important;
}
/*footer styling*/

.cookieLink{
	display:inline-block;
	margin-top:15px;
	font-size:14px;
	padding-bottom: 45px;
}

.cookieLink:hover{
	text-decoration:underline;
}


/*vincementaal-site*/
.vincementaal-site .footer {
	padding-bottom: 65px;
}
.vincementaal-site .footer a.cookieLink{
	color: #FFFFFF!important;
}
.vincementaal-site .cookie-bar{
	background-color: #a9ddea;
}
.vincementaal-site .cookie-bar .cookie-popup-container p{
	color: #333333;
}
.vincementaal-site .cookie-bar .cookie-button-settings{
	background-color: #02ABCD;
}


/*heldr-site*/
.heldr-site .footer {
	padding-bottom: 65px;
}
.heldr-site .footer a.cookieLink{
	color: #0fbed5!important;
}
.heldr-site .cookie-bar{
	background-color: #0fbed5;
}
.heldr-site .cookie-bar .cookie-popup-container p{
	color: #FFFFFF;
}
.heldr-site .cookie-bar .cookie-button-settings{
	background-color: #007ea0;
}


/*sterkr-site*/
.sterkr-site .footer {
	padding-bottom: 65px;
}
.sterkr-site .footer a.cookieLink{
	color: #0fbed5!important;
}
.sterkr-site .cookie-bar{
	background-color: #0fbed5;
}
.sterkr-site .cookie-bar .cookie-popup-container p{
	color: #FFFFFF;
}



/*gewoonanders-site*/
.ggz-site .cookie-bar .cookie-popup-container{
	max-width:1200px!important;
	padding: 0px 15px;
}
/*vvgi-site*/
.vvgi-site .cookie-bar .cookie-popup-container{
	max-width:1200px!important;
	padding: 0px 15px;
}
.vvgi-site .cookie-bar .cookie-button-settings{
	background-color: #007C9D;
}
.vvgi-site .cookie-bar{
	background-color: #00B4D1;
}


@media (max-width: 767px){
	 .overlay-cookie:target {
		overflow: scroll;
	}
	.cookie-button-green{
		margin-left:0px ;
	}
	.checkbox-content{
		display:none;
	}
	.custom-input{
		margin-bottom:20px;
	}
	.popup-cookie .close{
		top: 10px;
		right:15px;
	}
	.popup-cookie{
		padding-left:15Px ;
		padding-right:15px ;
		padding-bottom: 25px ;
		padding-top: 25px ;
	}
	.cookie-story{
		font-size: 12px;
	}
	.popup-cookie h2{
		margin-bottom: 10px;
		font-size: 21px;
	}
	.custom-input .custom-input-label{
		font-size:15px;
	}
	#cookie-popup .cookie-button{
		margin-top:0px;
		margin-bottom:0px;
	}
}

@media (max-width: 1070px){
	.cookie-bar{
		padding-top:0px;
	}
	
	.cookie-bar .cookie-popup-container{
		text-align:center;
	}
	
	.cookie-bar .cookie-buttons{
		float:none !important;
	}
	
	.cookie-bar .cookie-button-settings{
		margin-left:0px;
	}
	
	.cookie-bar .cookie-buttons{
		margin-top:5px;
	}
}



@media (min-width: 562px) {
	.cookie-button {
		width: auto;
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media (min-width: 768px) {
	.cookie-bar .cookie-buttons {
    	display: inline-block;
		margin-top: 15px;
	}
	.cookie-button {
		margin-bottom: 0px;
		margin-left: 10px;
		margin-right: 10px;
		padding: 10px 20px;	
	}
	.popup-cookie {
		margin: 120px auto;
		width: 70%;
	} 	
	
}
@media (min-width: 992px) {	
	.cookie-bar .cookie-buttons {
    	display: inline-block;
		margin-top: 15px;
	}	
	.cookie-button {
		margin-left: 20px!important;
		margin-right: 0px!important;
	}
	.cookie-bar .cookie-button-agree{
		margin-left: 20px!important;
	}	
	
}
@media (min-width: 1200px) {
	.cookie-bar .cookie-buttons {
		margin-top: 0px;
	}	
	.cookie-button {
		margin-left: 20px!important;
		padding: 10px 40px;
	}	

}


