/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.privacy-notice-container {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99999;
	background-position: center center;
}

.privacy-notice {
	max-width: 1110px;
	margin: 0 auto;
	display: block;
	padding: 2em;
}

.privacy-notice a {
	text-decoration: underline;
}

.privacy-notice .col-right {
	margin-top: 1.5em;
	text-align: center;
}

.privacy-notice .col-right form {
	margin: 0;
}

.privacy-notice .col-right button {
	border: 1px solid;
	background-color: transparent !important;
	width: 100%;
}

.privacy-notice .col-right button:hover {
	background-color: #5E5E5E !important;
	border-color: #5E5E5E !important;
}

@media (min-width: 768px) {

	.privacy-notice {
		display: flex;
		align-items: center;
		padding: 1.5em;
	}

	.privacy-notice .col-left {
		width: 80%;
	}

	.privacy-notice .col-right {
		margin-top: 0;
		width: 20%;
		margin-left: 2em;
	}
}