/* The wrapper for the whole cookie warning. */
.lxb_cm-message {
	z-index: 990;
	position: relative;
	background: #ececec;
	color: #000;
	width: 100%;
	transform: none;
	display: none;
	text-align: center;
	margin: 0 auto;
}

/* The inner wrapper, to help with centering. */
.lxb_cm-message-inner_wrapper {
	display: table;
	width: 100%;
	padding: .8em;
	margin: 0 auto;
	max-width: 1100px;
}

/* Let's do vert-align on the button & text. */
.lxb_cm-message-inner_wrapper > * {
	vertical-align: middle;
	margin: 0 .4em;
	padding: 0;
	font-size: 1em;
	display: table-cell;
}

/* Some whitespace between the button & text. */
.lxb_cm-message-inner_wrapper > :first-child { padding-right: 2em; }	

/* Don't center the text. */
.lxb_cm-message-body { text-align: left; }

.lxb_cm-message-body a { text-decoration: underline; }

/* Tame any paragraph white-spacing. */
.lxb_cm-message-body > p:first-child { margin-top: 0; }
.lxb_cm-message-body > p:last-child { margin-bottom: 0; }

/* The dismiss button. */
.lxb_cm-message-button {
	border-radius: .3em;
	padding: .3em .5em;
	color: #fff;
	background: #000;
	whites-space: nowrap;
	display: block;
	text-align: center;
}

.lxb_cm-message-button-reject {
	margin-top: 10px;
}

.lxb_cm-message-button:hover { color: #ececec; }

/* The message & button go tube-o-content at small widths. */
@media ( max-width: 800px ) {

	.lxb_cm-message { padding: 0; }

	.lxb_cm-message-inner_wrapper {
		display: block;
		padding: 2em;
	}

	.lxb_cm-message-inner_wrapper > * {
		display: block;
		padding: 0;
		margin: 0 auto 1em auto;
	}

	.lxb_cm-message-inner_wrapper > :first-child { padding-right: 0; }

	.lxb_cm-message-inner_wrapper > :last-child { margin: 0 auto; }

}

/**
 * These classes will get removed by our JS on small screens (smaller than content width).
 */
.lxb_cm-message-fixed {
	position: fixed;
	top: 0;
}

.lxb_cm-message-fixed_bottom {
	position: fixed;
	bottom: 0;
}