#np_cookiebar {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 1000;
	background: #fff;
	box-shadow: 0 0 20px rgba(0,0,0,.2);
	padding: 20px 0;
	box-sizing: border-box;
}

	#np_cookiebar.hidden {
		display: none;
	}

	#np_cookiebar .width {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
	}

	#np_cookiebar p {
		margin-top: 0;
	}

	#np_cookiebar small {
		font-size: 0.7em;
	}

	#np_cookiebar .cookiebar_text {
		width: calc(100% - 20px - 280px);
	}

	#np_cookiebar .cookiebar_buttons {
		width: 280px;
	}

	@media ( max-width: 640px ) {

		#np_cookiebar .cookiebar_text {
			width: 100%;
			text-align: center;
		}

		#np_cookiebar .cookiebar_buttons {
			width: 100%;
			margin-top: 10px;
			text-align: center;
		}

	}

