*
.borderbox {
  box-sizing: border-box;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}

.flex-item-left {
  background-color: #f1f1f1;
  position: relative;
  width:55%;
  /* padding: 10px;
  flex: 50%; */
}

.flex-item-right {
  background-color: #f1f1f1;
  width:45%;
  /* padding: 10px;
  flex: 50%;*/
} 

/* Responsive layout - makes a one column-layout instead of a two-column layout */
@media (max-width: 800px) {
  .flex-item-right, .flex-item-left {
    flex: 100%;
  }
}


.truc-container {
  display: grid;
  grid-template-areas: 
    'trucheader trucheader trucheader' 
    'truc1 truc2 truc3';
  grid-template-columns: 1fr 1fr 1fr; 
  /*;grid-column-gap: 10px;# - if you want gap between the columns */
} 

/* Style the header */
.trucheader {
  grid-area: trucheader;
  background-color: #f1f1f1;
  padding: 10px;
  text-align: left;
  font-size: clamp(1.2vw, 3vw, 15px);
}

.truc1,
.truc2,
.truc3 {
  padding: 5px;
  width: 100%;
  color: rgb(6, 0, 0);
  border-radius: 12px;
  font-weight: bold;
}

/* Style the left column */
.truc1 {
  grid-area: truc1;
  background-color: #d5ffd7;
}

/* Style the middle column */
.truc2 {
  grid-area: truc2;
  background-color: #e0e6e0;
}

/* Style the right column */
.truc3 {
  grid-area: truc3;
  background-color: #d0ffec;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .truc-container  {
    grid-template-areas: 
      'trucheader trucheader trucheader' 
      'truc1 truc1 truc1' 
      'truc2 truc2 truc2'
      'truc3 truc3 truc3'
  }
}

.hamburger {
  height: 2.3em;vertical-align: middle;
}

body {
  font-family: sans-serif;
  font-size: clamp(1.2vw, 3vw, 15px);
}

h1 {
  font-size: clamp(1.5vw, 4vw, 20px);
}
h2 {
  font-size: clamp(1.5vw, 4vw, 18px);
}
h3 {
  font-size: clamp(1.3vw, 4vw, 16px);
}

p  {
    padding: 0;
    margin: 0;
    font-size: clamp(1.2vw, 3vw, 15px);
}



form {
  font-family: sans-serif;
  font-size: clamp(1.2vw, 3vw, 15px);
}

input {
  font-size: clamp(1.2vw, 3vw, 15px);
  width:94%;
}

input[type=checkbox] {
  font-size: clamp(1.2vw, 3vw, 15px);
  width:5%;
  position: left;
  align-self: left  ;
}


.submit {
  background-color: #04AA6D;  
  color: #333;
  padding: 10px 24px;
  /* width: 35vw; */
  width:96%;
  text-align: left;
  font-size: clamp(2vw, 3vw, 15px);
  cursor:pointer
}


.submit:hover{
    color: #04AA6D;
    background-color: rgb(6, 0, 0);
    cursor:pointer;
  }



select {
  font-size: clamp(1.2vw, 3vw, 15px);
  width:95%;
}

.number2 {
  background-color: #04AA6D;
  color: rgb(6, 0, 0);
}

.textarea {
  font-size: clamp(2vw, 4vw, 20px);
}


.magie {
  background-color: #04AA6D;  
  color: white;
  text-align:left;
  cursor:pointer;
  padding: 10px;
  height:auto;
  font-size: clamp(1.2vw, 3vw, 15px);
}

.magie:hover {
  color: #04AA6D;
  background-color: rgb(6, 0, 0);
}

.saldo {
  background-color: #04a5aa;  
  color: white;
  text-align:left;
  cursor:pointer;
  padding: 10px;
  height:auto;
  font-size: clamp(1.2vw, 3vw, 15px);
}

.saldo:hover {
  color: #04a5aa;  
  background-color: rgb(6, 0, 0);
}

.resultaat {
  font-size: clamp(2vw, 4vw, 20px);
  /* height:10vh; */
  /* text-align:"top"; */
  padding-top: 0px;
}


.topnav {
  overflow: hidden;
  background-color: #333;
  }

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #04AA6D;
  color: rgb(6, 0, 0);
}

.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

.topnav .icon {
  display: none;
  background: url("{{ url_for('img', path='hamburger.png') }}") no-repeat;
  background-size:contain;
}


@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
    padding:4.5px;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
    padding:4.5px;
  }

  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

button {
  background-color: #04AA6D;  
  color: #333;
  /* border-radius: 12px; */
  padding: 10px ;
  width:100%;
  text-align: left;
  font-size: clamp(1.2vw, 3vw, 15px);
}


.truc1 button:hover,
.truc2 button:hover,
.truc3 button:hover {
    color: #04AA6D;
    background-color: rgb(6, 0, 0);
    cursor:pointer;
  }
