/*----------------------------------------------------------------------------- 
* Based on: https://shapeshed.com/default-styles-for-css/
* GEOpinie Default Stylesheet 
* 
* version:   0.1 
* date:      22/10/19
* author:    Lennard Huisman
* email:     info(at)geopinie.nl
* website:   geopinie.nl
* version history: 
* ----------------------------------------------------------------------------- */

/* define colors */
:root {
    --gp5: #C2C2D9;
    --gp6: #C2C2E1;
    --gp1: #C2CBE6;
    --gp4: #C2CEDA;
    --gp3: #D5D5DE;
    --gp2: #DADAE7;
}
/* Avoid sizing problems */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
 }

/* Remove padding and margin */ 
* 
{ 
    max-width: 1400px;
    margin: 0px;
    margin-left:auto;
    margin-right:auto;
    padding: 0px; 
    border: 0px; 
}

/* Classes for floating and clearing */ 
.clear 
    { 
    clear:both; 
} 

.right 
    { 
    float: right; 
} 

.left 
    { 
    float: left; 
}

/* Set the document up */

.fixed {
    position:fixed;
    top:0;
    margin-top:0px;
    z-index:1;
    
}
body 
    { 
    font: 75%/1.5  "Helvetica Neue", Helvetica, Arial, sans-serif;  
    background: #FFFFFF; 
    color: #4d4d4d;     
    text-align:center; 
} 

code: 
{ 
    text-align:left;
}

#wrapper 
    {  
    width:980px;  
    text-align:left;   
    margin-left:auto;  
    margin-right:auto;  
    background-color: #FFFFFF; 
}

/* Typography */
h1 
    { 
    font-size: 2.2em; 
} 

h2 
    { 
    font-size: 2.0em;     
} 

h3 
    { 
    font-size: 1.8em; 
} 

h4 
    { 
    font-size: 1.6em;     
} 

h5 
    { 
    font-size: 1.4em;     
} 

p 
    { 
    font-size: 1.2em;     
    text-align:left; 
}

ul 
    { 
    font-size: 1.2em;     
    text-align:left; 
    padding-left: 30px;
}
/* Create sections */
/* Header 

/* Footer 


/* font awesome */
 i.fas,
 i.fab {
    font-size: 2.2em;
    border-radius: 50%;
    border: 4px solid #4d4d4d;
    padding: 2px;
    background-color: #4d4d4d;
    color: white;

    
}
.fa-circle {
    color:#4d4d4d;
}

* {
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

.footer {
  background-color: #0099cc;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  padding: 15px;
}

/* For mobile phones: */
[class*="col-"] {
  float: left;
  width: 100%;
  border: 4px ; 
  border-radius: 15px;
  -moz-border-radius: 15px;
  display: table-cell;
  margin-left:4px;
  margin-bottom:4px;
  margin-right:4px;
  padding:15px;
}
/* For mobile phones: */
[class*="col_"] {
  display: table-column;
  float: left;
  width: 100%;
  margin: 0px;
}


@media only screen and (min-width: 600px) {
  /* For tablets: */
  .col-s-1 {width: 100%;}
  .col-s-2 {width: 50%;}
  .col-s-3a {width: 33.33%;}
  .col-s-3b {width: 66.66%;}
  .col-s-4a {width: 25%;}
  .col-s-4b {width: 75%;}
  .col-s-5a {width: 20%;}
  .col-s-5b {width: 80%;}
  .col-s-6a {width: 16.66%;}
  .col-s-6b {width: 83.33%;}
  .col_s-container {display: flex; width: 100%}
}

}
@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {width: 100%;}
  .col-2 {width: 50%;}
  .col-3a {width: 33.33%;}
  .col-3b {width: 66.66%;}
  .col-4a {width: 25%;}
  .col-4b {width: 75%;}
  .col-5a {width: 20%;}
  .col-5b {width: 80%;}
  .col-6a {width: 16.66%;}
  .col-6b {width: 83.33%;}
  .col_container {display: flex; width: 100%}
  }

#slider {
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
#slider img {
    transition: opacity 2s;
    position: absolute;
    top:0;
    left:0;
    opacity:0;
}
#slider img.fadeIn {
    opacity:1;
}

#slider img.init {
    display:none;
}
img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

#lh_circle {
    width: 3.2em;
    height: 3.2em;
}

textarea {
    width: 100%;
    height: 200px;
    padding: 12px 18px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 2.6vw;
    resize: none;
}
@media only screen and (min-width: 600px) {
    textarea {
        font-size: 1.25vw;
    }
}
@media only screen and (min-width: 1400px) {
    textarea {
        font-size: 17px;
    }
}
.notcollapsible {
  background-color: #777;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 90%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
}
.collapsible {
  background-color: #777;
  color: white;
  cursor: pointer;
  padding: 15px;
  width: 100%;
  text-align: left;
  outline: none;
  font-size: 18px;
  border: 4px ; 
  border-radius: 15px;
  -moz-border-radius: 15px;
  margin:0px;
  margin-left:4px;
  margin-bottom:4px;
  margin-right:4px;
}

.active, .collapsible:hover {
  background-color: #555;
}

.collapsible:after {
  content: '\002B';
  color: white;
  font-weight: bold;
  float: right;
  margin-right:4px;
}

.active:after {
  content: "\2212";
}

.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #f1f1f1;
}
.hide {
  display: none;
}

.divheader {
  text-align: justify;
}

.divheader:after {
  content: "";
  display: inline-block;
  width: 100%;
}