@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    --backgroundSite: #f7f9f9;
    --fontColor: #222222;
    --fontColorFooter: #f7f9f9;
    --fontColorGray: #A1A1A1; /* rgba(118,129,151, 1.00); */
/*    --donkerBlauw: #ffffff;
    --LichtBlauw: #ffffff;*/
    --Geel: #2e8c9d;
    --greenText: #80c3bc;
    --semiWhite: #ffffff;
    --menuTopBack: #007A4E;
    --menuBack: rgba(46,140,157, 0.8);
    --menuHover: var(--tabActive);
    --toggleButtonBar: #003A86;
    --infoBox: rgb(255, 255, 255, 0.85);
    --betweenRowBack: var(--Geel); /*rgba(253,187,5, 1);*/
    --betweenRowText: var(--fontColor);
    --inputBack: #f5f9fa;  /*#f6fbff;  */
    --inputButtonBack: #e7e9e9;
    --inputButtonBackHover: #ffffff;
    --inputBorder: #6d6d6d;
	  --inputText: #222222;
    --errorMelding: #dd7200; 
    --grayBack: #f6f7f9;
    --greenBack:#F5F9FA;
    --menuBtnBack: rgba(20,125,223,0.70);
    --menuBtnBackHover: rgba(20,125,223,0.95);
    --InActiveBackdrop: #eafcc9;
    
    --MarginTop: 16rem;
    --MarginMinTop: 1rem;
    --MarginMobTop: 3rem;
    --MarginExtraMobTop: 8rem;

    --KopText: #111111;
    --SubKopText: #222222;
}

* {
    font-family: 'Poppins',serif;
    text-decoration:  none;
    font-weight: 400;
    font-size: 14px;
    color: var(--fontColor);
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
	scroll-behavior: smooth;
}

.sidenav {
  height: 100%;
  width: 200px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #aaeafd;
  overflow-x: hidden;
  padding-top: 20px;
  padding-left: 10px;
}

.sidenav span {
    padding-top: 1rem;
    font-weight: 600;
    font-size: 18px;
}

/* .sidenav a:hover {
  color: #0a0a0a;
} */

.sidenav div {
  width: 90%;
  border-radius: 5px;
  border-top-left-radius: 0%;
  background-color: #aaeafd;
  margin: 4px;
}

.sidenav div:hover {
  background-color: #57d8ff;
}

.sidenav div a {
  padding: 2px 8px;
  text-decoration: none;
  font-size: 14px;
  color: #353535;
  display: block;
}
/* .sidenavActive {
  background-color: #57d8ff;
  border: 1px solid #6e6e6e;
} */


@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

#lowerleft {
    margin-bottom: 1px;
    margin-left : 1px;
    width: 200px;
    height: 50px;
    position: fixed;
    bottom: 0;
    z-index: 99;
}

.Mes_Check {
	position: relative;
}

.Popup {
  position: absolute;
  left: auto;
  top: 30vw;
  background-color: #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 20rem;
  height: 10rem;
  z-index: 999;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
  visibility: hidden;
}

/* ################# SAVE BOX */
.Melding {
  color: #dd7200;
}

.alert {
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 60%;
  padding: 10px;
  margin: auto;
  line-height: 1.8;
  border-radius: 5px;
  font-weight: 400;
  background-color: rgb(149, 255, 149);
  border: 1px solid rgb(144, 189, 144);
  -moz-animation: cssAnimation 0s ease-in 2s forwards;
  /* Firefox */
  -webkit-animation: cssAnimation 0s ease-in 2s forwards;
  /* Safari and Chrome */
  -o-animation: cssAnimation 0s ease-in 2s forwards;
  /* Opera */
  animation: cssAnimation 0s ease-in 2s forwards;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
  z-index: 999;
}

@keyframes cssAnimation {
    to {
      width:0;
      height:0;
      overflow:hidden;
      margin: 0px;
      padding: 0px;
    }
}
@-webkit-keyframes cssAnimation {
    to {
    width:0;
    height:0;
    margin: 0px;
    padding: 0px;
    visibility:hidden;
    }
}

.alertText {
  display: table;
  vertical-align: middle;
  margin: 0 auto;
  text-align: center;
  color:#0e0e0e;
  font-size:20px;
}
