#consent-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.32);
    z-index: 99999999;
	
	opacity: 0;
    animation: fadeIn 2s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

#cookie-consent-bar {
  text-align: left;
  padding: 35px 20px 35px 10px;
  font-size: 18px;
  background-color: rgba(22, 22, 22, 0.90);
  position: fixed;
  z-index: 99999;
  color: #fff;
  display: flex;
  align-items: center;
  
	width: 40%;
	left: 50%;
	top: 45%;
	transform: translate(-50%, -50%);
	height: auto;
	/* max-height: 350px; */
}

#cookie-consent-bar p {
  color: #fff;
  font-size: 17px;
  margin: 0 10px 0 16px;
  max-width: 75%;
}
 
#cookie-consent-bar a {
  font-weight: 700;
  cursor: pointer;
  color: white;
  text-decoration:underline;
}

#accept-cookies, #read-cookie-policy {
    padding: 5px;
    font-size: 0.82em;
	font-weight: bold;

    border-width: 2px;
    border-style: solid;
    border-color: white;
    background-color: rgb(255 253 253 / 90%);
    color: #000000;
    display: inline-block;
    width: 210px;
    height: 44px;
    margin: 5px;
    cursor: pointer;
}

#accept-cookies:hover
{
    background-color: rgba(68, 68, 68, 0.9);
    color: #fff; 
    cursor: pointer;
}
#read-cookie-policy {
  background: #333;
  color: #fff;
}
@media (max-width: 967px) {
	#cookie-consent-bar {
	width: 100%;
	padding: 35px 10px;
	flex-direction: column;
	text-align: center;
  }

  #cookie-consent-bar img {
	display: none;
  }

  #cookie-consent-bar p {
	margin: 0;
  }
}