/*
#4169e1 - blue
#fe8b17 - orange
font-family: 'Nunito Sans', sans-serif;
font-family: 'Roboto', sans-serif;
Ctrl+Shift+F = find and replace word
*/
#gradient-text {
  background: linear-gradient(90deg, red, blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
a[href^=tel] {
   text-decoration: inherit;
   font-size: inherit;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
  scroll-padding: 83px 0 0 0;
}
html {
  --scroll-behavior: smooth;
  scroll-behavior: smooth;
}
/*voor safari form button*/
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  opacity: 1;
}
body {
  font-family: 'Nunito Sans', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
}
/*BANNER BEGIN*/
.banner {
	width: 100%;
	height: 62.4vh;
	position: fixed;
	top: 64px;
  background-color: #fe8b17;
  color: #fff;
  font-size: 20px;
  display: grid;
  place-items: center;
  text-align: center;
}
@media (min-width: 769px) {
  .banner {
    font-size: 25px;
  }
}
.banner h1 {
  font-family: Garamond, serif !important;
  text-shadow: 3px 3px 0px rgba(0,0,0,0.2);
}
/*BANNER END*/
/*CONTENT BEGIN*/
#content {
	width: 100%;
	position: relative;
	top: calc(62.4vh + 64px);
	background-color: #ebebeb;
  padding: 20px 20px 20px 20px;
  line-height: 1.5em;
}
#contentindex {
  width: 100%;
	position: relative;
	top: calc(62.4vh + 64px);
	background-color: #ebebeb;
  padding: 0px 20px 20px 20px;
  line-height: 1.5em;
}
.productstitel h2 {
  margin: 40px 0 40px 0;
  font-size: 30px;
}
.productstitel hr {
  border: 1px solid #fe8b17;
  margin-bottom: 40px;
  width: 200px;
}
.productstitel {
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 2em;
}
@media (max-width: 767px) {
  #updates,#contactinfo-index,#about {
    font-size: 18px !important;
  }
  #coronavirusupdate {
    text-align: left;
  }
  #about {
    text-align: left !important;
  }
}
/*CONTENT END*/
/*INDEX.HTML BEGIN*/
/*UPDATES BEGIN*/
#updates {
  text-align: center;
  font-size: 20px;
}
#updates h3 {
  margin-bottom: .5em;
}
#updates h4, #updates p {
  line-height: 2em;
}
/*UPDATES END*/
/*CONTACTINFO BEGIN*/
#contactinfo-index {
  font-size: 20px;
  display: grid;
  place-items: center;
  text-align: center;
}
#contactinfo-index a {
  color: #000;
}
#contactinfo-index table {
  line-height: 1.5em;
  text-align: left;
}
#contactinfo-index th {
  text-align: right;
}
#contactinfo-index i {
  color: #4169e1;
}
/*CONTACTINFO END*/
/*PRODUCTCARDS BEGIN*/
#products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(209px, 1fr));
  grid-gap: 20px;
  padding: 0 8% 20px 8%;
  font-size: 18px;
}
.productcards {
  background-color:	#fe8b17;
  padding: 20px;
  text-align: center;
  box-shadow: 10px 10px 5px #ccc;
  border: 4px solid #fff;
}
#products h2 {
  line-height: 2em;
  color: #fff;
  text-transform: uppercase;
}
#products a {
  color: #000;
}
@media (min-width: 802px) and (max-width: 1106px) {
  .card4 {
    grid-column: 1/-1;
  }
}
@media (min-width: 540px) and (max-width: 834px) {
  .card3 {
    grid-column: 1/-1;
  }
}
.emojibox {
  display: grid;
  place-items: center;
}
#products .emoji {
  background-color: #4169e1;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  font-size: 40px;
  border: 4px solid #fff;
  color: #fff;
}
/*PRODUCTCARDS END*/
/*ABOUT BEGIN*/
#about {
  width: 100%;
  font-size: 20px;
  line-height: 1.5em;
  text-align: center;
}
/*ABOUT END*/
/*REVIEWS BEGIN*/
#reviews {
  width: 100%;
}
#reviews img {
  height: auto;
  width: 200px;
  margin: 20px 0;
}
#googlereviewswrapper {
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 18px;
}
#reviewsbuttons {
  display: flex;
  justify-content: center;
}
#reviews a {
  border-radius: 4px;
  background-color: #fe8b17;
  color: #fff;
  text-align: center;
  font-size: 18px;
  padding: 20px;
  transition: all 0.5s;
  cursor: pointer;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#reviewbutton1 {
  margin-right: 20px;
}
#reviews span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
#reviews span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}
#reviews a:hover span {
  padding-right: 25px;
}
#reviews a:hover span:after {
  opacity: 1;
  right: 0;
}
@media (max-width: 360px) {
  #reviews span:after {
    font-size: 25px;
    right: -25px;
  }
}
/*REVIEWS END*/
/*GALERIJ BEGIN*/
.image-mosaic {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-auto-rows: 240px;
}
.card {
  background: #353535;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 600px) {
  .card-tall {
    grid-row: span 2 / auto;
  }
  .card-wide {
    grid-column: span 2 / auto;
  }
}
/*GALERIJ END*/
/*INDEX.HTML END*/
/*MENU.HTML BEGIN*/
#menu-gridwrapper {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  grid-gap: 20px;
}
#menunav {
  background-color: #fff;
  height: calc(100vh - 103px);
  grid-column: 1/3;
  position: sticky;
  top: 84px;
  display: table;
  width: 99%;
}
.menunav-links {
  height: 100%;
  display: grid;
  place-items: center;
  border-top: 1px solid #ccc;
}
.menunav-nobordertop {
  border-top: 0;
}
#menunav a {
  color: #000;
  display: table-row;
}
#menunav a:hover {
  background-color: #fe8b17;
  color: #fff;
}
#menu-itemwrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  grid-gap: 20px;
  grid-column: 3/13;
}
#myBtn {
  position: fixed;
}
@media (max-width: 851px) {
  #menunav {
    height: 65vh;
    grid-column: 1/13;
    width: 100%;
    position: relative;
    top: 0;
  }
  #menu-itemwrapper {
    grid-column: 1/13;
  }
  #myBtn {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 99;
    font-size: 20px;
    background-color: #4169e1;
    color: #fff;
    opacity: .8;
    cursor: pointer;
    padding: 15px 18px;
    border-radius: 4px;
  }
  #myBtn:active {
    opacity: 1;
  }
}
.menu-item {
  min-height: 70px;
  background-color: #fff;
}
.menu-item img {
  width: 40%;
  float: right;
}
.itemname-full {
  width: 100%;
  float: left;
  font-size: 16px;
  font-weight: bold;
  padding: 5px 0 0 5px;
}
.itemname-half {
  width: 60%;
  float: left;
  font-size: 16px;
  font-weight: bold;
  padding: 5px 0 0 5px;
}
.itemdescription-full {
  width: 100%;
  float: left;
  font-size: 14px;
  color: #383838;
  padding: 0 0 5px 5px;
}
.itemdescription-half {
  width: 60%;
  float: left;
  font-size: 14px;
  color: #383838;
  padding: 0 0 5px 5px;
}
#menu-itemwrapper h2 {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 24px;
  padding: 10px;
  color: white;
  background-color: #ff8800;
}
.menu-mededeling {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 24px;
  line-height: 36px;
  padding: 10px;
  color: white;
  background-color: red;
}
/*MENU.HTML END*/
/*VEELGESTELDEVRAGEN.HTML BEGIN*/
@media (max-width:340px) {
  .faq-bannertitle {
    font-size: 35px;
  }
}
#faqwrapper {
  width: 100%;
  display: grid;
  place-items: center;
}
.faq-vraag {
  background-color: #fff;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  padding: 18px 1vw;
  width: 70%;
  border-top: 10px solid #ebebeb;
}
.faq-nobordertop {
  border-top: 0;
}
.faqclick, .faq-vraag:hover {
  background-color: #ccc;
}
.faq-antwoord {
  width: 70%;
  background-color: #fff;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease-out;
  font-size: 18px;
}
#faqwrapper p {
  padding: 18px;
}
.productstitel span {
  color: #fe8b17;
}
.faq-vraag:after {
  content: '\002B';
  color: #000;
  font-size: 25px;
  float: left;
  margin: 0 20px;
}
@media (max-width:349px) {
  .faq-vraag:after {
    margin: 0 1vw;
  }
}
.faqclick:after {
  content: '\2212';
}
@media (max-width: 768px) {
  .faq-vraag {
    width: 100%;
    font-size: 18px;
  }
  .faq-antwoord {
    width: 100%;
    font-size: 16px;
  }
}
.faq-table {
  display: grid;
  place-items: center;
}
.faq-table p {
  padding: 9px !important;
}
.faq-table table {
  line-height: normal;
  text-align: left;
}
.faq-table th {
  text-align: right;
}
/*VEELGESTELDEVRAGEN.HTML END*/
/*CONTACT.HTML BEGIN*/
#formwrapper label {
  font-family: 'Roboto', sans-serif;
}
#formwrapper h3 {
  text-align: center;
}
.redstar-contactform {
  color: red;
}
input[type=text], input[type=email], input[type=tel], textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
}

#subject {
  font-family: 'Nunito Sans', sans-serif;
  height: 200px;
}
input[type=submit] {
  background-color: #4169e1;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
}
input[type=submit]:hover {
  background-color: #4682B4;
}
#contactinfo-contact {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  row-gap: 40px;
  margin-bottom: 20px;
  font-size: 18px;
  column-gap: 20px;
}
#cic-info {
  grid-column: 2/6;
  color: #000;
}
#cic-info a {
  color: #000;
}
#googlemaps {
  width: 100%;
  height: 60vh;
  border: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
@media (max-width: 767px) {
  #googlemaps {
    height: 70vh;
  }
}
#formwrapper {
  grid-column: 6/12;
  line-height: 2.5em;
}
@media (max-width: 920px) {
  #cic-info {
    grid-column: 1/13;
    display: grid;
    place-items: center;
    text-align: center;
  }
   #formwrapper {
    grid-column: 1/13;
  }
}
#contactinfo-contact table {
  line-height: 1.5em;
  text-align: left;
}
#contactinfo-contact th {
  text-align: right;
}
#contactinfo-contact i {
  color: #4169e1;
}
#hoebereiken {
  line-height: 1.5em;
  font-size: 20px;
  padding-top: 10px;
  font-weight: bold;
}
#letopcontact {
  font-size: 20px;
  padding-bottom: 20px;
  padding-top: 10px;
  font-weight: bold;
  color: red;
}
#letop {
  text-decoration: underline;
}
/*CONTACT.HTML END*/
/*FORMULIERVERZONDEN.HTML BEGIN*/
.formulierverzonden-body {
  width: 100vw;
  height: 100vh;
  padding: 20px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 18px;
  background-color:#ebebeb;
}
.fa-check-circle {
  color: green;
  font-size: 80px;
}
.formulierverzonden-body h2 {
  line-height: 2em;
}
.formulierverzonden-body a {
  color: #4169e1;
}
/*#succespage-wrapper {
  width: 100vw;
  height: 100vh;
  background-color: #000;
  display: grid;
  place-items: center;
  padding: 40px;
}
#succes-message {
  max-width: 4367px;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  padding-right: 100px;
  font-size: 18px;
}
#paddingtop-form {
  padding-top: .8em;
}
#paddingbottom-form {
  padding-bottom: .8em;
}
.fa-paper-plane {
  color: #696969;
}
.fa-check-circle {
  color: green;
}
#succes-message a {
  color: #4169e1;
}
@media (max-width:517px) {
  #succes-message {
    padding-right: 20px;
  }
}
*/
/*FORMULIERVERZONDEN.HTML END*/
/*NAV BEGIN*/
.topnav img {
  height: 54px;
  margin: 5px;
  float: left;
}

.topnav {
  overflow: hidden;
  background-color: #262626;
  padding: 0px 60px;
  position: fixed;
  width: 100%;
  z-index: 99;
}

#myLinks a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 22px 25px;
  text-decoration: none;
  font-size: 17px;
  font-family: 'Roboto', sans-serif;
}
#myLinks {
  float: right;
}

#myLinks a:hover {
  background-color: #ddd;
  color: black;
}

#myLinks a.navactive {
  background-color: #fe8b17;
  color: white;
}

.topnav .icon {
  display: none;
}

@media (max-width:800px) {
  .topnav {
    overflow: hidden;
    padding: 0;
  }

  .topnav #myLinks {
    display: none;
  }
  #myLinks a {
    float: none;
    text-align: left;
    padding: 16px;
  }
  #myLinks {
    float: none;
  }

  .topnav .poep {
    margin-top: 64px;
  }

  .topnav .menu-btn {
    padding: 30px 22px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }
  .menu-btn__burger {
    width: 24px;
    height: 4px;
    background: #fff;
  }
  .menu-btn__burger::before,
  .menu-btn__burger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 4px;
    background: #fff;
  }
  .menu-btn__burger::before {
    transform: translateY(-8px);
  }
  .menu-btn__burger::after {
    transform: translateY(8px);
  }
  /*ANIMATION*/
  .menu-btn.open .menu-btn__burger {
    transform: translateX(-30px);
    background: transparent;
    box-shadow: none;
  }
  .menu-btn.open .menu-btn__burger::before {
    transform: rotate(45deg) translate(21px, -21px);
  }
  .menu-btn.open .menu-btn__burger::after {
    transform: rotate(-45deg) translate(21px, 21px);
  }
}
/*NAV END*/
/*FOOTER BEGIN*/
#footer {
  width: 100%;
  background-color: #262626;
  position: relative;
  top: calc(62.4vh + 64px);
  padding: 40px;
}
#footergridcontainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 40px;
  margin-bottom: 40px;
}
.footerpart {
  line-height: 2em;
  font-size: 18px;
  color: #999;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media (min-width: 820px) and (max-width: 1079px) {
  .footer4 {
    grid-column: 1/-1;
  }
}
.footerpart a {
  color: #999;
}
.footerpart a:hover {
  color: #ddd;
  text-decoration: underline;
}
.footer1 {
  line-height: 1.3em;
}
.footer1 p {
  text-align: left;
}
.footer1 img {
  margin-bottom: 10px;
  height: 54px;
}
.footerpart table {
  line-height: normal;
  text-align: left;
}
.footerpart th {
  text-align: right;
}
.footerpart h3 {
  margin-bottom: 10px;
  color: #ddd;
}
#footerdisclaimer {
  width: 100%;
  text-align: center;
  grid-column: 1/-1;
  color: #999;
  margin-bottom: -20px;
}
/*FOOTER END*/
#pot-container {
  position: relative;
  height: 80px;
  margin-top: 10px;
}
#pot {
  position: absolute;
  -webkit-animation: linear infinite;
  -webkit-animation-name: run;
  -webkit-animation-duration: 10s;
}
@media (max-width: 768px) {
  #pot {
    -webkit-animation-duration: 5s;
  }
}
@-webkit-keyframes run {
  0% {
    left: 0;
  }
  48% {
    -webkit-transform: rotateY(0deg);
  }
  50% {
    left: calc(100% - 100px);
    -webkit-transform: rotateY(180deg);
  }
  98% {
    -webkit-transform: rotateY(180deg);
  }
  100% {
    left: 0;
     -webkit-transform: rotateY(0deg);
  }
}
#pot img {
  width: 100px;
  height: 100px;
}
/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/roboto-v27-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/roboto-v27-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v27-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v27-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v27-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v27-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-700 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/roboto-v27-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/roboto-v27-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v27-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v27-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v27-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v27-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* nunito-sans-regular - latin */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/nunito-sans-v6-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/nunito-sans-v6-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/nunito-sans-v6-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/nunito-sans-v6-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/nunito-sans-v6-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/nunito-sans-v6-latin-regular.svg#NunitoSans') format('svg'); /* Legacy iOS */
}
/* nunito-sans-700 - latin */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/nunito-sans-v6-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/nunito-sans-v6-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/nunito-sans-v6-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/nunito-sans-v6-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/nunito-sans-v6-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/nunito-sans-v6-latin-700.svg#NunitoSans') format('svg'); /* Legacy iOS */
}
