html {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  min-height: 120vh;
}


body {
  margin: 0 auto;
  width: 100%;
  font-family: sans-serif;
  background-color: whitesmoke;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


::-moz-selection {
  color: white;
  background-color: #b96517;
}

::selection {
  color: white;
  background-color: #b96517;
}

header {

  font-family: "Audrey-Normal";
}



@font-face {
  font-family: "Audrey-Normal";
  src: url('https://www.family-pizza.be/fonts/AnyConv.com__Audrey-Normal.woff2') format('woff2'),
    url('https://www.family-pizza.be/fonts/AnyConv.com__Audrey-Normal.ttf') format('truetype');
}

@font-face {
  font-family: "Cafe";
  src: url('https://www.family-pizza.be/fonts/Cafe\ Francoise_D.otf') format('otf');
}

* {
  scrollbar-width: thin;
  scrollbar-color: white #b96517;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 12px;
}

*::-webkit-scrollbar-track {
  background: #b96517;
}

*::-webkit-scrollbar-thumb {
  background-color: white;
  border-radius: 20px;
  border: 3px solid #b96517;
}

main {
  margin: 0 auto;
  flex: 1;
  width: 100%;
  max-width: 71.625rem;
  min-height: 120rem;
  box-sizing: border-box;
}

#logo {
  width: 60px;
  float: left;
}

#LogoLink {
  display: block;
}

header {
  position: absolute;
  background-color: whitesmoke;
  width: 100%;
  z-index: 10000;
}

nav {
  z-index: 10000;
  max-width: 71.625rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: flex;
  align-items: center;
}


nav h1 {
  color: #28282c;
  margin-top: 12px;
  margin-left: 6px;
  float: left;
  font-size: 30px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;

}

nav {
  padding-top: 20px;
  padding-left: 15px;

}


nav ul {
  float: left;
}

nav ul li {
  display: inline-block;
  padding-right: 40px;
}

nav a {
  display: inline-block;
  text-decoration: none;
  color: #28282c;
  font-weight: bold;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size .3s;
}

header nav ul li a:hover {
  background-size: 100% 2px;
  color: darkgoldenrod;
}

@media screen and (min-width:1100px) {

  #MenuButton:hover+#MenuDrop,
  .dropdownMenu:hover {
    display: block;
    opacity: 1;
    visibility: visible;

  }
}

#navigatie a {
  cursor: pointer;
}

.dropdownMenu {
  visibility: hidden;
  opacity: 0;
  transition: .3s all;
  background: whitesmoke;
  border: darkgoldenrod 4px solid;
  position: absolute;
  width: 100%;
  z-index: 1000000;
}

.dropdownMenu a {
  display: block;
  padding: 10px;
  color: darkgoldenrod;
  text-decoration: none;
  color: #b96517;
  font-weight: bold;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size .3s;
  z-index: 1000000;
}

.dropdownMenu a:hover {
  background-size: 100% 2px;
  color: darkgoldenrod;
}

.dropdownMenu:hover {
  display: block;
}

#CoverPhoto {
  background: linear-gradient(rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.4)), url(../Images/background.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  margin-top: -50px;
  font-family: 'Montserrat', sans-serif;
  width: 100%;

}

#CoverText {
  margin: 0 auto;
  text-align: center;
  transition: .3s all;
}

#CoverText h1,
#CoverText h2 {
  text-align: center;
  color: white;
  margin: 0;
  top: 350px;
  position: relative;

  display: block;
  font-size: 75px;
}

#CoverText img {
  width: 90px;
  top: 360px;
  position: relative;
  margin: 0 auto;
}

@media screen and (max-height:650px) {

  #CoverText h1,
  #CoverText h2 {
    top: 190px;
    font-size: 55px;
  }

  #CoverPhoto h2 {
    font-size: 20px;
  }

  #CoverText img {
    top: 200px;
    width: 60px;
  }
}

#CoverPhoto h2 {
  font-size: 40px;
}



#burgerLijn {
  background: #b96517;
  display: block;
  height: 3px;
  position: relative;
  transition: background .2s ease-out;
  width: 40px;
}


#burgerLijn:before,
#burgerLijn:after {
  background: #b96517;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

#burgerLijn:before {
  top: 10px;
}


#burgerLijn:after {
  top: -10px;
}


#burger {
  cursor: pointer;
  z-index: 100;
  height: 40px;
  width: 40px;
  right: 20px;
  top: 50px;
  position: absolute;
}

#burger.active #burgerLijn {
  background: rgba(0, 0, 0, 0);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0);
}



#burger.active #burgerLijn::before {
  transform: rotate(45deg);
}



#burger.active #burgerLijn::after {
  top: 10px;
  transform: rotate(135deg);
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}


@media screen and (min-width:1100px) {
  #burger {
    display: none;
  }


}

.BurgerMenu {
  width: 100%;
height:100vh;
  display: block;
  top:20px;
  right: 0;
  margin-top: 60px;
  position: fixed;
  background-color: whitesmoke;
  z-index: 100000;
}

@media screen and (max-width:1100px) {


  header nav img {
    width: 200px;
    position: relative;
    left: 0;
    margin: 0;
  }

  header nav ul {
    display: none;
  }

  header nav ul li {
    display: block;
    width: 100%;
    float: left;
    text-align: center;
    background-color: whitesmoke;
    padding: 10px 20px;
    position: relative;
  }

}



footer {
  padding: 30px 0px 0 0;
  text-align: center;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  width: 100%;
  /* Make the footer full-width */
  background-color: #28282c;
  color: #73767d;
  -webkit-mask: url(../Images/hero-mask--top.svg) top center;
  mask: url(../Images/hero-mask--top.svg) top center;
  -webkit-mask-size: cover;
  mask-size: cover;
  margin-top: auto;
  position: relative;
  bottom: 0;
  transition: bottom 0.5s ease;
  /* Add smooth transition */
}

footer .row {
  width: 100%;
  margin: 1% 0%;
  padding: 0.6% 0%;
  color: rgb(187, 187, 187);
  font-size: 0.8em;
}

footer .row a {
  text-decoration: none;
  color: gray;
  transition: 0.5s;
}

footer .row a:hover {
  color: #fff;
}

footer .row ul {
  width: 100%;
}

footer .row ul li {
  display: inline-block;
  margin: 0px 30px;
}

footer .row a i {
  font-size: 2em;
  margin: 0% 1%;
}

#FooterNaam {
  color: white;
  transition: all 0.6s ease;
  display: inline-block;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size .3s;
}

#FooterNaam:hover {
  background-size: 100% 2px;
  color: darkgoldenrod;
}

.payment img:last-of-type {

  padding: 0;
}

.payment img {
  height: 50px;
  padding-right: 5px;
}

.LangNav ul {
  margin: -14px;
  padding: 0;
  right: 0;
  list-style: none;
  float: left;
  display: inline-block;
}

@media screen and (max-width:1100px) {
  .LangNav ul:first-of-type {
    margin: -14px -40px;
  }
}

.LangNav li {
  cursor: pointer;
  position: absolute;
  right: 0;
  padding-bottom: 10px;
}

.LangNav li ul {
  display: none;
}

.LangNav li:hover ul,
.LangNav li:focus ul {
  position: absolute;
  top: 29px;
  right: -15px;
  display: block;
  background: #fff;
  width: 120px;
  padding-top: 0px;
  z-index: 1;
  border-radius: 5px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.LangNav li ul li {
  position: relative;
  text-align: left;
  background: transparent;
  padding: 15px 15px;
  padding-bottom: 0;
  z-index: 2;
  font-size: 15px;
  color: #3c3c3c;
}

.LangNav li ul li:last-of-type {
  padding-bottom: 15px;
}

.LangNav li ul li span {
  padding-left: 5px;
}

.LangNav li ul li span:hover,
.LangNav li ul li span.active {
  color: #146c78;
}

.sl-flag {
  display: inline-block;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
  width: 15px;
  height: 15px;
  background: #aaa;
  border-radius: 50%;
  position: relative;
  top: 2px;
  overflow: hidden;
}

.flag-nl {
  background: url('https://www.family-pizza.be/Images/NL.jpg');
  background-size: cover;
  background-position: center center;
}

.flag-usa {
  background-size: cover;
  background-position: center center;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTM0A1t6AAABhUlEQVQ4T2Ows82PjGixsc4LD2tysC/09Kjw8622tyuICG8u0w/cpGSCBzF4e1VmZkzw9anOzOj38a4KCW4IC22ECHYk1l9tn4gHMeTlTnZxLikvm+XiUpKW2hvgX+vnV5OVOQEoOGfOtv94AYOzU3Fd7XxHh6Lq6rlurqUx0W0J8Z1AnbW18yotonaYuOJBDBXls4A+bGpaBCTz86YEBtQCvVBSPAPIbY0oP1/aiAcxABU1Ny+2tclvbFjo5FgUF9uenNwNDLnmpkWEnV1TPRcY1O1tS4H6i4umA/0MDK2K8tlAwRqHpP1uoXgQKKraWpcClTY3LQZaCLQ5NaUX5OaWJY3++SeTC/AgBmA4AXUClUJs9ver8fKsAAYEUJCws4G21dXNB1oFdD/Qz8DQTk4C+bm2dn6DZ9bRiDQ8iAEYt8CoBpK5YBIYw0AEEZwSXX4oMB4PYoC6gCzAcDqrjGzEsMfen2xEmbMv1rSTjRi26dqRjShz9o2+6WQjBrSShQSkZAIADvW/HLrLY6cAAAAASUVORK5CYII=');
}

@media screen and (max-width:1100px) {
  .LangNav {
    margin-left: 46%;
    width: 10px;
    position: relative;
  }

  .LangNav li:hover ul {
    top: 59px;
    right: -10px;
    width: 80px;
  }

}


/*Switch*/

.label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  color: #b96517;
  top: 100px;
  position: absolute;
}


.label-text {
  margin: 0 16px;
}

.toggle {
  isolation: isolate;
  position: relative;
  height: 30px;
  width: 60px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow:
    -8px -4px 8px 0px #ffffff,
    8px 4px 12px 0px #d1d9e6,
    4px 4px 4px 0px #d1d9e6 inset,
    -4px -4px 4px 0px #ffffff inset;
}

.toggle-state {
  display: none;
}

.indicator {
  height: 100%;
  width: 200%;
  background: linear-gradient(#f0ad1e, #b96517);
  border-radius: 15px;
  transform: translate3d(-75%, 0, 0);
  transition: transform 0.4s cubic-bezier(0.85, 0.05, 0.18, 1.35);
  box-shadow:
    -8px -4px 8px 0px #ffffff,
    8px 4px 12px 0px #d1d9e6;
}

.toggle-state:checked~.indicator {
  transform: translate3d(25%, 0, 0);
}



/*Dropdown Menu*/
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  outline: 0;
  box-shadow: none;
  border: 0 !important;
  background: #f0ad1e;
  background-image: none;
}

/* Remove IE arrow */
select::-ms-expand {
  display: none;
}

/* Custom Select */
.select {
  position: relative;
  top: 160px;
margin-left:16px;
  display: flex;
  width: 20em;
  height: 3em;
  line-height: 3;
  background: #f0ad1e;
  overflow: hidden;
  border-radius: .25em;
}

@media screen and (max-width:500px) {
  .select {
    margin: 0 auto;
    left: 0;
  }
}

select {
  flex: 1;
  padding: 0 .5em;
  color: #fff;
  cursor: pointer;
}

/* Arrow */
.select::after {
  content: '\25BC';
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 1em;
  background: linear-gradient(#f0ad1e, #b96517);
  color: white;
  cursor: pointer;
  border-left: solid thin white;
  pointer-events: none;
  -webkit-transition: .25s all ease;
  -o-transition: .25s all ease;
  transition: .25s all ease;
}

/* Transition */
.select:hover::after {
  color: black;
}


.center {
  display: flex;
  flex-wrap: wrap;
}

#info {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin: 0 40px;
  top: 160px;
  background: whitesmoke;
  padding: 10px;
}



.wrapper {
  width: 300px;
  float: left;
  height: 300px;
  background: white;

  font-size: 20px;
  margin: auto;
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0;
  transform: scale(0.95);
  transition: box-shadow 0.5s, transform 0.5s;
}

.wrapper:hover {
  transform: scale(1);
  box-shadow: 5px 20px 30px rgba(0, 0, 0, 0.2);
}

.wrapper .container {
  width: 100%;
  height: 100%;
}

.wrapper .container .top {
  height: 70%;
  width: 100%;
  background-size: cover !important;
}

.wrapper .container .bottom {
  width: 200%;
  height: 30%;

  transition: transform 0.5s;
}

.wrapper .container .bottom h1 {
  margin: 0 10px;
  color: white;
  padding: 0;
  font-size: 25px !important;
}

.wrapper .container .bottom p {
  margin: 0;
  padding: 0;
}

.wrapper .container .bottom .left {
  height: 100%;
  width: 50%;
  background: linear-gradient(#f0ad1e, #b96517);
  position: relative;
  float: left;
}

.wrapper .container .bottom .left .details {
  padding: 20px;
  float: left;
  width: calc(70% - 40px);
}

.wrapper .container .bottom .left .buy {
  float: right;
  width: calc(30% - 2px);
  height: 100%;
  cursor: pointer;
  background: linear-gradient(#f0ad1e, #b96517);
  transition: background 0.5s;
  border-left: solid thin #fff;
}

.wrapper .container .bottom .left .buy i {
  font-size: 30px;
  padding: 30px;
  color: #254053;
  transition: transform 0.5s;
}

.wrapper .container .bottom .left .buy:hover {
  background: #a6cdde;
}

.wrapper .container .bottom .left .buy:hover i {
  transform: translateY(5px);
  color: #00394b;
}

.wrapper .container .bottom .right {
  width: 50%;
  background: #a6cdde;
  color: white;
  float: right;
  height: 200%;
  overflow: hidden;
}

.wrapper .container .bottom .right .details {
  padding: 20px;
  float: right;
  width: calc(70% - 40px);
}

.wrapper .container .bottom .right .remove {
  width: calc(30% - 1px);
  clear: both;
  border-right: solid thin rgba(255, 255, 255, 0.3);
  height: 50%;
  background: #bc3b59;
  transition: transform 0.5s, background 0.5s;
}

.wrapper .container .bottom .right .remove:hover {
  background: #9b2847;
}

.wrapper .container .bottom .right .remove:hover i {
  transform: translateY(5px);
}

.wrapper .container .bottom .right .remove i {
  transition: transform 0.5s;
  font-size: 30px;
  padding: 30px;
  color: white;
}

.wrapper .container .bottom .right:hover .remove {
  transform: translateY(-100%);
}

@media screen and (max-width:800px) {
  .wrapper {
    flex-direction: column;
  }
}


.infocircle {
  color: white !important;
}


/*Burgers*/
#Burgers {
  top: 200px;
  position: relative;
}

#Burgers img {
  width: 50px;
}

/* the app - a beer BurgerMenu / ordering app */
/* the actual order form (not initially visible) */
/* BurgerInfo BurgerPanels for each beer */
.BurgerPanel {
  position: relative;
  flex-grow: 1;
  z-index: -1;
  padding: 20px 0px 20px 20px;
  transition: all 0.4s ease;
  cursor: pointer;
  /* the icon for this beer (initially invisible) */
  /* each BurgerPanel has its own color scheme */
}

.BurgerPanel .price {
  font-size: 0;
}

.BurgerPanel .name,
.BurgerPanel .type,
.BurgerPanel .price,
.BurgerPanel .abv {
  position: absolute;
  transition: all 0.4s ease;
  transition-delay: 0;
}

.BurgerPanel .name {
  left: 15vh;
  top: 50%;
  margin-top: -2.5vh;
  font-size: 3vh;
  line-height: 5vh;
  font-weight: 300;
}

.BurgerPanel .type {
  left: 15vh;
  top: 50%;
  margin-top: 2.5vh;
  font-size: 0;
  line-height: 2.5vh;
  font-weight: 100;
}

.BurgerPanel .price {
  top: 50%;
  left: 5vh;
  margin-top: 20vh;
  line-height: 2.5vh;
  font-weight: 500;
}

.BurgerPanel .abv {
  top: 45%;
  right: 5vh;
  font-size: 2.5vh;
  line-height: 2.5vh;
  font-weight: 500;
}
@media screen and (max-width:550px) {
  
  .BurgerPanel .abv {
    top:5px;
    left: 15vh;
  }
  .BurgerPanel:hover .abv{
    margin-top:0 !important;
  }
}

.BurgerPanel svg {
  position: absolute;
  left: 1vh;
  top: 50%;
  margin-top: -10vh;
  height: 20vh;
  fill: none;
  stroke-width: 2%;
  stroke-linejoin: round;
  stroke-linecap: round;
  opacity: 0;
  transition: all 0.4s ease;
  transition-delay: 0s;
}


.BurgerPanel:nth-of-type(1) {
  z-index: 0;
  background: #FFC632;
  filter: drop-shadow(0 0 1vh #ffb700);
}

.BurgerPanel:nth-of-type(1) h1,
.BurgerPanel:nth-of-type(1) h2 {
  color: #3B2D0C;
}

.BurgerPanel:nth-of-type(1) .price {
  color: #3B2D0C;
}

.BurgerPanel:nth-of-type(1) .abv {
  color: #3B2D0C;
}



.BurgerPanel:nth-of-type(2) {
  z-index: 0;
  background: #FFBA08;
  filter: drop-shadow(0 0 1vh rgb(219, 158, 2));
}

.BurgerPanel:nth-of-type(2) h1,
.BurgerPanel:nth-of-type(2) h2 {
  color: #3B2B02;
}

.BurgerPanel:nth-of-type(2) .price {
  color: #3B2B02;
}

.BurgerPanel:nth-of-type(2) .abv {
  color: #3B2B02;
}



.BurgerPanel:nth-of-type(3) {
  z-index: 0;
  background: #FAA307;
  filter: drop-shadow(0 0 1vh #cc8500);
}

.BurgerPanel:nth-of-type(3) h1,
.BurgerPanel:nth-of-type(3) h2 {
  color: #3B2702;
}

.BurgerPanel:nth-of-type(3) .price {
  color: #3B2702;
}

.BurgerPanel:nth-of-type(3) .abv {
  color: #3B2702;
}


.BurgerPanel:nth-of-type(4) {
  z-index: 0;
  background: #F48C06;
  filter: drop-shadow(0 0 1vh #F48C06);
}

.BurgerPanel:nth-of-type(4) h1,
.BurgerPanel:nth-of-type(4) h2 {
  color: #3B2201;
}

.BurgerPanel:nth-of-type(4) .price {
  color: #3B2201;
}

.BurgerPanel:nth-of-type(4) .abv {
  color: #3B2201;
}


.BurgerPanel:nth-of-type(5) {
  z-index: 0;
  background: #E85D04;
  filter: drop-shadow(0 0 1vh #ad4200);
}

.BurgerPanel:nth-of-type(5) h1,
.BurgerPanel:nth-of-type(5) h2 {
  color: #ffe134;
}

.BurgerPanel:nth-of-type(5) .price {
  color: #ffe134;
}

.BurgerPanel:nth-of-type(5) .abv {
  color: #ffe134;
}

.BurgerPanel:nth-of-type(6) {
  z-index: 0;
  background: #E55204;
  filter: drop-shadow(0 0 1vh #E55204);
}

.BurgerPanel:nth-of-type(6) h1,
.BurgerPanel:nth-of-type(6) h2 {
  color: #F7C71B;
}

.BurgerPanel:nth-of-type(6) .price {
  color: #F7C71B;
}

.BurgerPanel:nth-of-type(6) .abv {
  color: #F7C71B;
}

/*-----------------------------------*/


.BurgerPanel:nth-of-type(7) {
  z-index: 0;
  background: #E24603;
  filter: drop-shadow(0 0 1vh #E24603);
}

.BurgerPanel:nth-of-type(7) h1,
.BurgerPanel:nth-of-type(7) h2 {
  color: #F7C41B;
}

.BurgerPanel:nth-of-type(7) .price {
  color: #F7C41B;
}

.BurgerPanel:nth-of-type(7) .abv {
  color: #F7C41B;
}

.BurgerPanel:nth-of-type(8) {
  z-index: 0;
  background: #DF3B03;
  filter: drop-shadow(0 0 1vh #DF3B03);
}

.BurgerPanel:nth-of-type(8) h1,
.BurgerPanel:nth-of-type(8) h2 {
  color: #F7C01B;
}

.BurgerPanel:nth-of-type(8) .price {
  color: #F7C01B;
}

.BurgerPanel:nth-of-type(8) .abv {
  color: #F7C01B;
}


.BurgerPanel:nth-of-type(9) {
  z-index: 0;
  background: #DC2F02;
  filter: drop-shadow(0 0 1vh #DC2F02);
}

.BurgerPanel:nth-of-type(9) h1,
.BurgerPanel:nth-of-type(9) h2 {
  color: #F7B81B;
}

.BurgerPanel:nth-of-type(9) .price {
  color: #F7B81B;
}

.BurgerPanel:nth-of-type(9) .abv {
  color: #F7B81B;
}


.BurgerPanel:nth-of-type(10) {
  z-index: 0;
  background: #B01907;
  filter: drop-shadow(0 0 1vh #B01907);
}

.BurgerPanel:nth-of-type(10) h1,
.BurgerPanel:nth-of-type(10) h2 {
  color: #F7B81B;
}

.BurgerPanel:nth-of-type(10) .price {
  color: #F7B81B;
}

.BurgerPanel:nth-of-type(10) .abv {
  color: #F7B81B;
}

.BurgerPanel:nth-of-type(11) {
  z-index: 0;
  background: #940F0B;
  filter: drop-shadow(0 0 1vh #940F0B);
}

.BurgerPanel:nth-of-type(11) h1,
.BurgerPanel:nth-of-type(11) h2 {
  color: #F7B81B;
}

.BurgerPanel:nth-of-type(11) .price {
  color: #F7B81B;
}

.BurgerPanel:nth-of-type(11) .abv {
  color: #F7B81B;
}


.BurgerPanel:nth-of-type(12) {
  z-index: 0;
  background: #77040E;
  filter: drop-shadow(0 0 1vh #77040E);
}

.BurgerPanel:nth-of-type(12) h1,
.BurgerPanel:nth-of-type(12) h2 {
  color: #F7B81B;
}

.BurgerPanel:nth-of-type(12) .price {
  color: #F7B81B;
}

.BurgerPanel:nth-of-type(12) .abv {
  color: #F7B81B;
}



.BurgerPanel:nth-of-type(13) {
  z-index: 0;
  background: #6A040F;
  filter: drop-shadow(0 0 1vh #6A040F);
}

.BurgerPanel:nth-of-type(13) h1,
.BurgerPanel:nth-of-type(13) h2 {
  color: #F7C41B;
}

.BurgerPanel:nth-of-type(13) .price {
  color: #F7C41B;
}

.BurgerPanel:nth-of-type(13) .abv {
  color: #F7C41B;
}

.BurgerPanel:nth-of-type(14) {
  z-index: 0;
  background: #510513;
  filter: drop-shadow(0 0 1vh #510513);
}

.BurgerPanel:nth-of-type(14) h1,
.BurgerPanel:nth-of-type(14) h2 {
  color: #F7C01B;
}

.BurgerPanel:nth-of-type(14) .price {
  color: #F7C01B;
}

.BurgerPanel:nth-of-type(14) .abv {
  color: #F7C01B;
}


.BurgerPanel:nth-of-type(15) {
  z-index: 0;
  background: #440615;
  filter: drop-shadow(0 0 1vh #440615);
}

.BurgerPanel:nth-of-type(15) h1,
.BurgerPanel:nth-of-type(15) h2 {
  color: #F7B81B;
}

.BurgerPanel:nth-of-type(15) .price {
  color: #F7B81B;
}

.BurgerPanel:nth-of-type(15) .abv {
  color: #F7B81B;
}

.BurgerPanel:nth-of-type(16) {
  z-index: 0;
  background: #370617;
  filter: drop-shadow(0 0 1vh #370617);
}

.BurgerPanel:nth-of-type(16) h1,
.BurgerPanel:nth-of-type(16) h2 {
  color: #F7B81B;
}

.BurgerPanel:nth-of-type(16) .price {
  color: #F7B81B;
}

.BurgerPanel:nth-of-type(16) .abv {
  color: #F7B81B;
}



.BurgerPanel:last-of-type {
  z-index: 0;
  background: #03071E;
  filter: drop-shadow(0 0 1vh #03071E);
}

.BurgerPanel:last-of-type h1,
.BurgerPanel:last-of-type h2 {
  color: whitesmoke;
}

.BurgerPanel:last-of-type .price {
  color: whitesmoke;
}

.BurgerPanel:last-of-type .abv {
  color: whitesmoke;
}




/* BurgerPanels get larger and show more BurgerInfo when you hover over them */
.BurgerPanel:hover {
  flex-grow: 2;
}

.BurgerPanel:hover .name {

  margin-top: -3.75vh;
}

.BurgerPanel:hover .type {

  margin-top: 1vh;
  font-size: 2vh;
}

.BurgerPanel:hover .abv {
  margin-top: -3vh;
}

.BurgerPanel:hover svg {
  opacity: 1;
  transition-delay: 0.4s;
}

/* when you click on a BurgerPanel, the others are hidden */
.BurgerPanel.hidden {
  flex-grow: 0.0000000001;
}

.BurgerPanel.hidden * {
  opacity: 0;
  pointer-events: none;
}

/* when you click on a BurgerPanel, it becomes active */
.BurgerPanel.active {
  flex-grow: 1;
  transition-delay: 0s;
}

.BurgerPanel.active svg {
  transition-delay: 0s;
  height: 15vh;
  margin-top: 0;
  left: 2.5vh;
  opacity: 1;
}

.BurgerPanel.active .name,
.BurgerPanel.active .type,
.BurgerPanel.active .abv,
.BurgerPanel.active .price {
  transition-delay: 0s;
}

.BurgerPanel.active .name {
  left: 15vh;
  margin-top: 5vh;
  font-size: 7.5vh;
  font-weight: 100;
}

.BurgerPanel.active .type {
  font-size: 0;
}

.BurgerPanel.active .abv {
  margin-top: 20vh;
}

.BurgerPanel.active .price {
  font-size: 2.5vh;
}

.BurgerPanel.active:nth-of-type(1) .name,
.BurgerPanel.active:nth-of-type(1) .abv {
  color: #3b3b56;
}

.BurgerPanel.active:nth-of-type(1) svg {
  stroke: #d6795e;
}

.BurgerPanel.active:nth-of-type(2) .name,
.BurgerPanel.active:nth-of-type(2) .abv {
  color: #fff;
}

.BurgerPanel.active:nth-of-type(2) svg {
  stroke: #a75377;
}

.BurgerPanel.active:nth-of-type(3) .name,
.BurgerPanel.active:nth-of-type(3) .abv {
  color: #f6ec82;
}

.BurgerPanel.active:nth-of-type(3) svg {
  stroke: #3b3b56;
}

.BurgerPanel.active:nth-of-type(4) .name,
.BurgerPanel.active:nth-of-type(4) .abv {
  color: #dfb361;
}

.BurgerPanel.active:nth-of-type(4) svg {
  stroke: #fff;
}

.top-table thead tr th {
  position: relative;
  /* Set the position to relative */
}

.rotate-45::after {
  content: "";
  /* Ensure content is defined for pseudo-elements */
  display: inline-block;
  /* Make sure it's an inline-block to apply transform */
  transform: rotate(45deg);
  transition: all 0.5s;
}

.top-table thead tr th::after {
  content: "\2b";
  /* Unicode for the FontAwesome icon you want to use */
  font-family: "Font Awesome 5 Free";
  /* Font family for FontAwesome */
  position: absolute;
  right: 20px;
  top: 10%;
  color: black;
  /* Adjust the color if needed */
  margin-left: 5px;
  /* Adjust the spacing between the text and icon */
}

.containerAndere {
  background-color: #000;
  width: 8%;
  height: 100%;
  margin: 200px;
  position: relative;
  display: block;
}

#andere {
  width: 50%;
}

@font-face {
  font-family: "Cafe";
  src: url('https://www.family-pizza.be/fonts/Cafe\ Francoise_D.otf') format('otf'),
    url('https://www.family-pizza.be/fonts/Cafe\ Francoise_D.woff2') format('woff2');
  ;
}

.top-table thead tr th {
  text-align: left;
  background-size: cover;
  background-repeat: no-repeat;
  color: black;
  padding: 20px;
  font-size: 3rem;
  padding-left:10%;
  font-family: "Cafe";
  transition: all 0.5s;
  background-color: white;
  float: none;

}

.top-table:nth-child(odd) thead tr th::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 80%;
  transform: translateX(-50%);
  border-top: 2px solid #eaeced; /* Adjust the border style and color as needed */
}
/* First instance */
.top-table:nth-child(odd) thead tr th:hover,
.top-table:nth-child(odd) thead tr th:hover::after,
.top-table:nth-child(odd) thead tr th.active-table {
  color: white;
}

.top-table:nth-child(1) thead tr th:hover,
.top-table:nth-child(1) thead tr th.active-table {
  background-image: url(https://www.family-pizza.be/Images/backgroundDinner1.jpeg);
}

/* Second instance */
.top-table:nth-child(3) thead tr th:hover,
.top-table:nth-child(3) thead tr th.active-table {
  background-image: url(https://www.family-pizza.be/Images/backgroundDinner2.jpeg);
}

.top-table:nth-child(5) thead tr th:hover,
.top-table:nth-child(5) thead tr th.active-table {
  background-image: url(https://www.family-pizza.be/Images/backgroundDinner3.jpeg);
}

.top-table:nth-child(7) thead tr th:hover,
.top-table:nth-child(7) thead tr th.active-table {
  background-image: url(https://www.family-pizza.be/Images/backgroundDinner4.jpeg);
}



.bottom-table {
  display: none;
}


.styled-table {
  border-collapse: collapse;
  margin: 200px 0px;
  font-size: 0.9em;
  font-family: sans-serif;
  width: 100%;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.styled-table thead tr {
  background:linear-gradient(180deg, rgba(240,173,30,1) 0%, rgba(185,101,23,1) 100%);
  color: #ffffff;
  text-align: left;
}

.styled-table th,
.styled-table td {
  padding: 12px 2px;
}

@media screen and (min-width:800px) {

  .styled-table th,
  .styled-table td {
    padding-left: 15px;
  }
}

.styled-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
  background-color: #ebebeb;
}

.styled-table tbody tr:last-of-type {
  border-bottom: 2px solid #b96517;
}

.styled-table tbody tr:hover {
  color: #b96517;
}

.grid:first-of-type {
  margin-top: 200px;
}


.grid {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: calc(2em + 2vh) calc(1.5em + 1vmin);
  grid-auto-flow: row dense;
  grid-area: content;
  background: #F4A112;
  background: -webkit-linear-gradient(top, #F4A112, #F6CA68);
  background: -moz-linear-gradient(top, #F4A112, #F6CA68);
  background: linear-gradient(to bottom, #F4A112, #F6CA68);

  border-radius: 10px;
  margin: 50px 3% 0 3%;
  list-style-type: none;
  border: solid 5px #f0ad1e;
  padding: 2%;

}


.card__image {
  display: block;
  max-width: 80%;
  width: 200px;
  margin: auto;
}

@media screen and (max-width:1523px) {
  .card__image {
    width: 180px;
  }
}

@media screen and (max-width:1391px) {
  .card__image {
    width: 170px;
  }
}

@media screen and (max-width:1323px) {
  .card__image {
    width: 160px;
  }
}

@media screen and (max-width:1043px) {
  .card__image {
    width: 150px;
  }
}

@media screen and (max-width:993px) {
  .card__image {
    width: 140px;
  }
}

@media screen and (max-width:739px) {
  .card__image {
    width: 130px;
  }
}

@media screen and (max-width:699px) {
  .card__image {
    width: 160px;
  }
}

@media screen and (max-width:615px) {
  .card__image {
    width: 140px;
  }
}

.card {
  display: inline-block;

}

/* ==== Styles Related to the callout ==== */
.grid .card:nth-child(14) {
  grid-column: -1;
  grid-row: span 2;
  align-self: center;
}

@media (min-width: 712px) {
  .grid .card:nth-child(14) {
    grid-column: -1;
  }
}

.grid .card:nth-child(14) .card__image {
  margin: 0 auto;
  object-fit: cover;
}

@media (min-width: 712px) {
  .grid .card:nth-child(14) .card__image {
    height: 100%;
  }
}

/* ==== Additional Styles not related to grid layout ==== */


.card__link {
  text-align: center;
  color: inherit;
  text-decoration: none;

}

.card__link:hover {
  color: #2d2d2d;
}

.card__link:hover .card__image {
  transform: scale(1.04);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 90%, 0 100%);

}

.card__link:hover .card__text {
  transform: rotate(2deg) translate3d(3%, 1%, 0) scale(1.02);
}

.card__image {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%, 0 100%);
  transition: transform 200ms ease-out, clip-path 200ms ease-out;
  background-color: white;
  border-radius: 15%;
  border: #f0ad1e SOLID 4PX;
  cursor: pointer;
}

.card__text {
  padding: 1em 0 0.5em;
  font-weight: 400;
  color: white;
  transition: transform 300ms ease-out;
  font-weight: bold;
}

/*Frieten menu*/

*,
*:before,
*:after {
  box-sizing: border-box;
}

.slide-container {
  margin: auto;
  width: 80%;
  text-align: center;
}

.Boxwrapper {
  padding-top: 200px;
  padding-bottom: 40px;
}

.Boxwrapper:focus {
  outline: 0;
}

.clash-card {
  background: white;
  width: 100%;
  display: inline-block;
  margin: auto;
  border-radius: 19px;
  position: relative;
  text-align: center;
  box-shadow: -1px 15px 30px -12px black;
  z-index: 9999;
}

.clash-card__image {
  position: relative;
  background-repeat: no-repeat;
  height: 230px;
  margin-bottom: 45px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.clash-card__image--barbarian {

  background-size: cover;
}

.clash-card__image--barbarian img {
  width: 400px;
  position: absolute;
  top: -65px;
  left: -70px;
}

.clash-card__level {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.SpaceBottomCard {
  margin-bottom: 25px;
}

.clash-card__level--barbarian {
  color: #EC9B3B;
}

.clash-card__unit-name {
  font-size: 30px;
  color: black;
  font-weight: 900;
  margin: 5px 0;
}

.clash-card__unit-stats--barbarian {
  background: linear-gradient(#f0ad1e, #b96517);
}

.clash-card__unit-stats {
  color: white;
  font-weight: 700;
  border-bottom-left-radius: 14px;

  border-bottom-right-radius: 14px;
}

.clash-card__unit-stats .one {
  width: 100%;
  float: left;
  padding: 20px 0 50px 0;
  width: 600px;
  text-align: center;
}

.clash-card__unit-stats sup {
  position: absolute;
  bottom: 4px;
  font-size: 45%;
  margin-left: 2px;
}

.clash-card__unit-stats .stat {
  position: absolute;
  font-size: 24px;


  display: table-cell;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.clash-card__unit-stats .no-border {
  border-right: none;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}


.NieuwsTitel {
  font-family: "Audrey-Normal";
  text-decoration: underline;
  color: #b96517;
  font-size: 1em;
  padding-left: 80px;
  padding-top: 5px;
}

.NieuwsBericht {
  font-family: Arial;
  color: #000000;
  font-size: 0.9em;
  margin: 20px 80px 20px 80px;
  padding: 20px 20px 20px 20px;
  background-color: #FFFFFF;
  border-color: #b96517;
  border-style: solid;
  border-width: thin;
  border-radius: 10px;
}

.NieuwsBericht b {
  font-size: 1.1em;
}

.NieuwsBericht br {
  height: 200px;
}

@media screen and (max-width:1200px) {
  .NieuwsTitel {
    text-align: center;
    padding: 0;
  }

  .NieuwsBericht {
    text-align: center;
  }
}

#Alacarte,
#Alfabet,
#Eigen,
#Burgers,
#Frieten,
#Wraps,
#Pitta,
#Kids,
#Apertief,
#Andere {
  display: none;
}




a,
a:hover {
  text-decoration: none;
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

.profile-card:first-of-type {
  margin-top: 250px;
}

.profile-card {
  width: 100%;
  margin: auto;
  padding-bottom: 20px;
  margin-top: 40px;
  box-shadow: 0px 8px 60px -10px rgba(13, 28, 39, 0.6);
  background: #fff;
  border-radius: 12px;
  max-width: 700px;
  position: relative;
}

.profile-card.active .profile-card__cnt {
  filter: blur(6px);
}

.profile-card__img {
  width: 150px;
  height: 150px;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(-50%);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 4;
  box-shadow: 0px 5px 50px 0px #b96517, 0px 0px 0px 7px rgba(240, 173, 30, 1);
}

@media screen and (max-width: 576px) {
  .profile-card__img {
    width: 120px;
    height: 120px;
  }
}

.profile-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.profile-card__cnt {
  margin-top: -35px;
  text-align: center;
  padding: 0 20px;
  padding-bottom: 40px;
  transition: all 0.3s;
}

.profile-card__name {
  font-weight: 700;
  font-size: 24px;
  color: #b96517;
  margin-bottom: 15px;
}

.profile-card__txt {
  font-size: 18px;
  font-weight: 500;
  color: #324e63;
  margin-bottom: 15px;
}

.profile-card__txt strong {
  font-weight: 700;
}

.opening-hours-table tr td:first-child {
  font-weight: bold;
}

#open-status {
  display: block;
  margin-top: -1em;
  text-align: center;
  border: dotted lightgrey 3px;
}

.openorclosed:after {
  content: " open tijdens de volgende uren:";
}

.open {
  color: green;
}

.open:after {
  content: " Open";
  color: #6C0;
}

.closed:after {
  content: " Gesloten";
  color: red;
}

.opening-hours-table tr td {
  padding: 5px;
}




.hour-card {
  width: 33%;
  height: 330px;
  align-items: center;

  margin: 200px auto 0 auto;
  padding-bottom: 20px;
  box-shadow: 0px 8px 60px -10px rgba(13, 28, 39, 0.6);
  background: #fff;
  border-radius: 12px;
  max-width: 500px;
  min-width: 300px;
  position: relative;

}

.hour-card table {
  align-items: center;
  margin: 0 auto;
}

#infobody {
  width: 100%;
  display: flex;
  flex-direction: row;
}

@media screen and (max-width:1000px) {
  #infobody {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .hour-card {
    margin-top: 40px;
  }

  .hour-card:first-of-type {
    margin-top: 200px;
  }
}




#circle {
  position: relative;
  border: 5px solid white;
  padding: 0;
  margin: 1em auto;
  width: 25em;
  background: white;
  height: 25em;
  border-radius: 50%;
  cursor: pointer;
  list-style: none;
  overflow: hidden;
  transition: all 2s ease-out;
  z-index: 0;

}



/*#region wheel*/

#spincenter {
  height: 5em;
  width: 5em;
  border-radius: 50%;
  background: red;
  color: white;
  margin: 10em auto;
  font-weight: bolder;
  font-family: 'Open Sans', sans-serif;
  padding: 1.7em 0;
  text-align: center;

}

.spinarrow {
  color: black;
  font-size: 50px;
  margin-bottom: 0;
  margin-top: 0;
  text-align: center;
  animation: ArrowMove infinite 2s;
}

@keyframes ArrowMove {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4);
  }

  100% {
    transform: scale(1);
  }
}

#spincircle h4 {
  text-align: center;
  font-size: 40px;

}







.mainbox {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 0 auto;
}

@media screen and (max-width:500px) {
  .mainbox {
    width: 300px;
    height: 300px;
  }

  .span1,
  .span2 {
    top: 70px !important;
  }

  .span3,
  .span4 {
    left: 70px !important;
    ;
  }

  .mainbox span b {
    font-size: 15px !important;
  }
}

.box {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 50%;
  border: 5px solid #fff;
  overflow: hidden;
  transition: all ease 5s;
}

.mainbox span {
  width: 50%;
  height: 50%;
  display: inline-block;
  position: absolute;
}

.span1 {
  clip-path: polygon(0 92%, 100% 50%, 0 8%);
  background: linear-gradient(#b96517, #fdb419);
  top: 120px;
  left: 0;
}

.span2 {
  clip-path: polygon(100% 92%, 0 50%, 100% 8%);
  background: linear-gradient(#fdb419, #fd9800);
  top: 120px;
  right: 0;
}

.span3 {
  clip-path: polygon(50% 0%, 8% 100%, 92% 100%);
  background: linear-gradient(black, #b96517);
  COLOR: white;
  bottom: 0;
  left: 120px;
}

.span4 {
  clip-path: polygon(50% 100%, 92% 0, 8% 0);
  background: linear-gradient(#fd9800, black);
  color: white;
  top: 0;
  left: 120px;
}


.box1 .span3 b {
  transform: translate(-50%, -50%) rotate(-270deg);
}

.box1 .span1 b,
.box2 .span1 b {
  transform: translate(-50%, -50%) rotate(185deg);
}

.box2 .span3 b {
  transform: translate(-50%, -50%) rotate(90deg);
}

.box1 .span4 b,
.box2 .span4 b {
  transform: translate(-50%, -50%) rotate(-85deg);
}

.box2 {
  width: 100%;
  height: 100%;
  transform: rotate(-135deg);
}

.mainbox span b {
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

}

.spin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 4px solid #fff;
  background-color: #000000;
  color: #fff;
  box-shadow: 0 5px 20px #000;
  font-weight: bold;
  font-size: 16px;
  margin: auto;
  text-align: center;
  cursor: pointer;
}

#WatEtenWe {
  text-align: center;
  margin-bottom: 0;
  font-size: 2em;
}

.mainbox.animate:after {
  animation: animateArrow 0.7s ease infinite;
}

@keyframes animateArrow {
  50% {
    right: -40px;
  }
}

/*#endregion wheel*/