
@keyframes dropHeader {
    0% {
      transform: translateY(100%);
    }
    100% {
      transform: translateY(0);
    }
  }

#cookie_view {
    /* This section calls the dropHeader animation we defined above */
    animation: 2.6s ease-out 0s 1 dropHeader;
	bottom: 0px; 
	margin: 0 auto;
	left: 0;
	right: 0;
	position:fixed;
	z-index: 999999999999999;
	display: block; 
	width: 100%;
    height: auto; 
	text-align: center;
	background-color: rgba(0, 0, 0, 0.5);
}

#cookie_view  p {
	width: 100%; 
    font-size: 14px;
    padding-top: 12px;
	color:  #fff;
}

#cookie_view button {
	cursor: pointer;
	margin: 0px auto;
	margin-bottom: 8px;
	font-size: 14px;
	padding: 6px 12px;
	outline: none;
    border: none;
    border-radius: 6px;
	color: #fff;
	background: #EC5538; /* For browsers that do not support gradients */
}