 #show-consent-btn {
    position: fixed;
    bottom: -20px;
    right: 10px;
    z-index: 999;
	font-size: 0.75rem;
	animation-name: animconsentnorm;
	animation-duration: 0.5s;
  }
   #show-consent-btn:hover {
	animation-name: animconsenthover;
	animation-duration: 0.5s;
	bottom: 0px;
  }
  #consent-banner-modal {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    border-bottom: none;
    border-left: none;
    border-right: none;
    padding: 5px;
}
@keyframes animconsenthover {
  100% {bottom: 0px;}
}
@keyframes animconsentnorm {
  100% {bottom: -20px;}
}