	.cookiebar {
		box-sizing: border-box;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		color: rgb(255,255,255);
		z-index: 100000000000;
		padding: 15px 150px 15px 15px;
		box-shadow: 0 0 2px 2px rgba(0,0,0,0.1);
		display: none;
	}
	.cookiebar-close {
		cursor: pointer;
		position: absolute;
		right: 15px;
		top: 50%;
		background: rgba(192,217,23,0.9);
		padding: 5px 10px;
		border-radius: 3px;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		transition: All 0.3s ease;
		-webkit-transition: All 0.3s ease;
	}
	.cookiebar.open {
		display: block;
	}

	.cookiebar {
		background: rgba(102,102,102,0.9);
	}
	
	.cookiebar a{
		color:#fff;
		background-color: transparent;
    padding: 0;
    border-radius: 0;
    text-decoration: underline;
	}
	.cookiebar-close a{
		text-decoration: none;
	}