	.cookieConsentContainer{
		font-family: Helvetica, Arial, sans-serif;
		z-index:999;
		width:400px;
		min-height:20px;
		box-sizing:border-box;
		background-color: #050a30;
		box-shadow: 0 0px 10px 2px #a8a8a9;
		overflow:hidden;
		position:fixed;
		bottom:30px;
		right:30px;
		display:none;
		padding: 20px;
	}

	.cookieConsentContainer .cookieTitle {
		display:block;
		color: #c4d21b;
		font-weight: bold;
		font-size: 16px;
		line-height: 10px;
	}

	.cookieConsentContainer .cookieDesc p{
		margin:0;
		padding:15px 0px 15px 0px;
		color: white;
		font-size:13px;
		line-height:20px;
		display:block;
		margin-top:10px;
		text-align: justify;
		letter-spacing: 0;
	}

	.cookieConsentContainer .cookieDesc a{
		font-size:13px;
		color: white;
		text-decoration:underline;
		text-align: justify;
	}

	.cookieConsentContainer .cookieDesc a:hover{
		color: #c4d21b;
	}

	.cookieConsentContainer .cookieButton a{
		display:inline-block;
		background: transparent;
		border: 1px solid #c4d21b;
		font-size: 14px;
		font-weight: bold;
		box-sizing:border-box;
		text-align:center;
		text-transform: uppercase;
		transition:background .3s;
		color: #c4d21b;
		padding:5px 10px;
		position: relative;
		left: 250px;
	}

	.cookieConsentContainer .cookieButton a:hover{
		cursor:pointer;
		background: #c4d21b;
		color: white;
	}

	@media (max-width:980px){
		.cookieConsentContainer{
			bottom:0!important;
			left:0!important;
			width:100%!important;
			padding: 20px 40px 15px 25px;
		}
		.cookieConsentContainer .cookieButton a{
			left: 0px;
			padding: 5px 10px;
		}
	}
	