#cookieBanner { 
    position: fixed; 
  	padding: 10px;
    bottom: 20px; 
    right: 20px; 
    max-width: 360px; 
    text-align: center;
    background-color: rgba(61, 74, 147, 0.9);
    background-color: #CFB161;
    color: white;
}

#cookieBanner p { 
    font-size:14px;
    line-height: 1.5rem;
    padding: 0.25rem 0;
}

#cookieBanner a {
  color: #3d4a93;
  text-decoration: underline;
}

#cookieBanner a:hover {
  color: #ffffff;
}

#btn-accept {
  color: #3d4a93;
  cursor: pointer;
  text-decoration: underline;
}

#btn-accept:hover {
  color: #fff;
}

/* big mobile desvices */
@media screen and (max-width: 800px) {
 #cookieBanner { 
    position: fixed; 
    width: 300px; 
    text-align: center;
    bottom: 10px; 
    right: 10px; 
    z-index:9999;
	}
}

