.cookieConsentContainer {
	z-index: 999;
	width: 500px;
	min-height: 25px;
	box-sizing: border-box;
	padding: 50px 50px 50px 50px;
    background: #00ff00;
    background: -webkit-linear-gradient(45deg, #00ff00, #00ccff);
    background: -o-linear-gradient(45deg, #00ff00, #00ccff);
    background: -moz-linear-gradient(45deg, #00ff00, #00ccff);
    background: linear-gradient(45deg, #00ff00, #00ccff);
    overflow: hidden;
	position: fixed;
    bottom: 50px;
	right: 50px;
	display: none;
}
.cookieConsentContainer .cookieTitle a {
    font-family: Poppins-Regular;
    src: url('../fonts/poppins/Poppins-Regular.ttf'); 
	color: black;
	font-size: 22px;
	line-height: 24px;
	display: block;
}
.cookieConsentContainer .cookieDesc p {
	margin: 0;
	padding: 0;
    font-family: Poppins-Regular;
    src: url('../fonts/poppins/Poppins-Regular.ttf'); 
    color: black;
	font-size: 15px;
	line-height: 18px;
	display: block;
	margin-top: 10px;

}
.cookieConsentContainer .cookieButton a {
	display: inline-block;
    font-family: Poppins-Regular;
    src: url('../fonts/poppins/Poppins-Regular.ttf'); 
    color: #00ff00;
	font-size: 20px;
	font-weight: bold;
	margin-top: 25px;
	background: #000000;
	box-sizing: border-box; 
	padding: 15px 25px;
	text-align: center;
	transition: background 0.5s;
}
.cookieConsentContainer .cookieButton a:hover { 
	cursor: pointer;
	background: #000000;
	color: #00ff00;
}


@media (max-width: 980px) {
	.cookieConsentContainer {
		bottom: 0px !important;
		left: 0px !important;
		width: 100%  !important;
	}
}