.cookiealert {
	 position: fixed;
	 bottom: 0;
	 left: 0;
	 z-index: 999;
	 opacity: 0;
	 visibility: hidden;
	 transition: all 500ms ease-out;
	 width: 150px;
	 height: 130px;
	 padding: 10px 10px;
	 margin: 30px;
	 background: rgba(255, 255, 255, 0.5);
	 box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	 border: 1px solid #b7b7b7;
	 border-radius: 4px;
	 text-align: center;
}
 .cookiealert p {
	 font-family: "Open Sans", sans-serif;
	 color: #000;
	 font-size: 14px;
	 font-weight: 400;
	 line-height: 20px;
	 text-transform: inherit;
	 text-align: center;
}
 .cookiealert button {
	 display: inline-block;
	 padding-top: 4px;
	 padding-bottom: 4px;
	 padding-left: 29px;
	 padding-right: 29px;
	 background: #575757;
	 margin-top: 10px;
	 margin-bottom: 20px;
	 font-family: "Open Sans", sans-serif;
	 color: #fff;
	 font-size: 15px;
	 font-weight: 700;
	 line-height: 25px;
	 text-transform: inherit;
	 text-align: center;
	 border-radius: 4px;
}
 .cookiealert button:hover {
	 background: #c30b00;
	 color: null;
}
 .cookiealert.show {
	 opacity: 1;
	 visibility: visible;
	 transform: translateY(0%);
	 transition-delay: 1000ms;
}
 @media (max-width: 600px) {
	 .cookiealert {
		 width: 100%;
		 background: rgba(255, 255, 255, 0.9);
		 height: initial;
		 padding-bottom: 0;
		 margin: initial;
	}
}
