.c-window {
	position: fixed;
	overflow: hidden;
	box-sizing: border-box;
	font-family: sans-serif;
	font-size: 1rem;
	line-height: 1.5em;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	justify-content: space-between;
	z-index: 99999;
	background: rgba(240, 240, 240, 0.9);
	border: 1px solid rgba(175, 175, 175, 0.9);
	color: #404040;
	opacity:1;
	transition:all 1s ease;
}

.c-window.c-invisible {
	opacity:0;
	bottom: -5em !important;
	pointer-events: none;
}

.c-window.c-banner {
	padding: 0.5em 2.5em;
	width: 100%;
	-ms-flex-direction: row;
	flex-direction:  row;
	left: 0;
	right: 0;
	bottom: 0;
	border-right:  none;
	border-bottom: none;
	border-left:   none;
}


.c-window.c-floating {
	padding: 1em 2em;
	max-width: 24em;
	-ms-flex-direction: column;
	flex-direction:  column;
	left: 1em;
	bottom: 1em;

	border-width: 1px;
}

.c-compliance {
	display:-ms-flexbox;
	display:flex;
	-ms-flex-align:center;
	align-items:center;
	-ms-flex-line-pack:justify;
	align-content:space-between
	}
	
.c-window.c-floating
.c-compliance{
	-ms-flex:1;
	flex:1
}

.c-link {
	color: rgba(46, 65, 84);
}

.c-link:hover {
	color: rgba(46, 65, 84, .8);
}

.c-button {
	display: block;
	padding: .4em .8em;
	font-size: .9rem;
	font-weight: 700;
	border-width: 2px;
	border-style: solid;
	border-color: transparent;
	text-align: center;
	white-space: nowrap;
	min-width: 140px;
	text-decoration: none;
	color: #FFFFFF;
	background-color: rgba(46, 65, 84);
	
	transition: all .2s ease-in-out;
}

.c-button.c-banner {
	margin-left: 1em;
}

.c-opt-in  .c-button:first-child,
.c-opt-in  .c-button:first-child:focus,
.c-opt-in  .c-button:first-child:hover,
.c-opt-out .c-button:first-child,
.c-opt-out .c-button:first-child:focus,
.c-opt-out .c-button:first-child:hover {
	color:            #404040;
	background-color: transparent;
}

.c-button:hover {
	background-color: rgba(46, 65, 84, .8);
}

.c-opt-in  .c-button:first-child:hover,
.c-opt-out .c-button:first-child:hover {
	text-decoration:  underline;
}

.c-compliance>.c-button {
	-ms-flex:1;
	flex:1;
}

.c-button+.c-button {
	margin-left:.5em
}

@media (max-width:767px) {
	.c-window {
		display: block;
	}
	
	.c-window.c-floating {
		max-width: none;
		left: 0;
		right: 0;
		bottom: 0;
		
		border-right:  none;
		border-bottom: none;
		border-left:   none;
	}
	
	.c-button {
		margin-left: 0;
	}
}