#CookiesAlert {
	position: fixed;
	z-index: 9999999999;
	bottom: 0;
	left: 0;
	padding: 8px;
	width: 100%;
	text-align: center;
	align-items: center;
	display: none;
	color: #212731;
	margin: auto;
	min-height: 60%;
	height: 100%;
	overflow: auto;
}

#CookiesAlert.active {
    display: block
}

#CookiesAlert .content {
  max-width: 600px;
  padding: 1%;
  margin: auto auto auto 0;
  text-align: left;
  border-radius: 10px;
  background: #eee;
  box-shadow: 0 0 10px rgba(0,0,0,.2);
  position: absolute;
  left: 23%;
  top: 88%;
  transform: translate(-50%, -50%);
}

#CookiesAlert .content h2 {
    margin: auto auto 10px;
    line-height: 1;
    font-size: 17px
}

#CookiesAlert .content p {
    margin: auto auto 17px;
    line-height: 1;
    font-size: 100%;
}

#CookiesAlert .content .buttons {
    display: flex;
    align-items: flex-end
}

#CookiesAlert .content .buttons a {
    border-radius: 6px;
    margin: auto 15px auto auto;
    padding: 3px 10px;
    transition: .3s;
    border: 1px solid #aaa;
}

#CookiesAlert .content .buttons a.CUAgree {
    margin: auto 0
}

@media (max-width: 768px) {
    #CookiesAlert {
        right:0;
        width: 95%
    }
}