/*--------------------------------------------*/
/* CSS voor de image op de product pagina     */
/*--------------------------------------------*/

/* De kleine foto */
.myImg {
    border-radius: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.myImg:hover {opacity: 0.7;}

/* The Modal (Achtergrond van de pagina als foto getoond wordt) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 160px; /* Location of the box */
    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.7); /* Black w/ opacity */
	
}

/* Modal Content (De foto zelf) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Alternatieve tekst van de foto */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-content, #caption {    
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 60px;
    right: 35px;
    color: #f1f1f1;
    font-size: 25px;
    font-weight: bold;
    transition: 0.3s;
}

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

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}



/*---- OPMAAK FAQ PAGINA ----------------------------------------------------*/
.content-box.box-5 .header {
	/*background-color:#f0f0e1;*/
	background-color:#d9006c;
	border: solid 1px #cecebf;
	border-radius:0.5em 0.5em 0em 0em;
	padding:0px;	
}

.content-box.box-5 .article {	
	/*background-color:#fdfdff;*/
	background-color:#2693ff;
	border: solid 1px #ff0080;
	/* border-radius:0.4em; */
	padding:0px;
	width:auto;
}

.faq_legend {
	text-align:left;
	padding-right:15px;
	background-color:#cecebf;
	/* border-radius:0.4em; */
}

.content-box.box-5 .article fieldset {
	margin-bottom:15px;
}

/*achtergrond dropdown knoppen*/
.content-box.box-5 .form-group {
	margin-top:-10px;
	padding:0px 10px 5px 0px;
	float:right;
}

.form_wrapper {
    //width: 150px; /* the width of half of your space or 50% */
    float: left;
}

/*dropdown knop*/
.form-group select {
	background-color:#dfdfd0;
	color:#000000;
	text-decoration:none;
}

/*container voor vraag en antwoord*/
.content-box.box-5 .container {
	border-right:solid 0,5px  #a8a8b7;
	border-bottom:solid 0,5px  #a8a8b7;
	border-left:solid 0,5px  #a8a8b7;
	border-radius:0em 0em 0.4em 0.4em;
	width:auto;	
}

.content-box.box-5 .container a {
	text-decoration:none;
}

.faq_antwoord {
	padding:5px 25px 5px 25px; 
	background-color:#f0f0e1;
	border:solid 1px #cecebf;
}
/*Einde FAQ pagina*/

