.cookieConsentOverlay {
	width: 100%;
	height: 100%;
	position: fixed;
	overflow: hidden;
	left: 0;
	top: 0;
	z-index: 1000;
}

.cookieConsentContainer {

	max-width: 800px;

	height: auto;
	width: auto;

	box-sizing: border-box;

	padding: 30px 30px 30px 30px;

	 background-color:#fff;
	 color:#505358;

	overflow: auto;

	display: none;

	border-radius: var(--border-radius, 4px);
	position: relative;
	margin: 0 auto;

	z-index: 1001;
	box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2),5px 5px 10px 0 rgba(0,0,0,0.19);
	max-height: 98%;
	top: 50%;
	transform: translateY(-50%);

}

.cn-heading {
	margin-bottom: 26px;
font-size: 20px;
font-weight: 700;
line-height: 28px;
text-align: center;
}

.cookieConsentContainer a {

	text-decoration: underline;
}

.cn-ok {
	/*
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	align-items: center;
	*/
	margin-top: 30px;
	text-align: center;
}

.cm-btn {
	min-width: 160px;
	padding: 12px 16px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	color: #0a282d !important;
	background-color: #e4ecee !important;
	border-radius: 10px;
	margin-right: .5em;
	border-style: none;
	cursor: pointer;
}

.cm-btn:hover {
	background-color: #c8d8db !important;
}

.cm-header {
	border-bottom: 1px solid #000;
}

.cm-body {

}

.cm-footer {
	border-top: 1px solid #000;
	padding: 1em;
}

.cm-footer-buttons {
	text-align: center;
}

.cm-services {

}

.cm-services li {
	list-style: none;
}

@media (max-width: 980px) {

	.cookieConsentContainer {

		bottom: 0px !important;

		left: 0px !important;

		width: 100%  !important;

	}

	.cm-btn {
		margin-top: 10px;
		min-width: 191px;
	}

}