.cc-container {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 900;
	overflow: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cc-container.closed {
	position: relative;
	height: 0;
	overflow: hidden;
}

.cookie-box *, .cookie-box ::after, .cookie-box ::before {
	box-sizing: border-box;
}

.cookie-box {
	padding: 16px 10px;
	width: 350px;
	margin: 0 auto;
	background-color: #fff;
	box-shadow: 0 0 0 1600px rgba(0, 0, 0, 0.6);
}

.cb-hidden {
	display: none;
}

.cookie-box a {
	text-decoration: none;
}

.cookie-box .cookie-box__list input[type="checkbox"] {
	position: relative;
}

.cookie-box .cc-center p {
	font-size: 1em;
}

.cookie-box__list {
	margin: .5em 0 1em 36%;
	list-style: none;
}
.cookie-box__list li {
	margin-bottom: 4px;
}

.cookie-box__list label {
	font-size: 1em;
}

.cookie-box__footer {
	display: flex;
	justify-content: space-between;
	font-size: 10px;
	padding: 1em 18px;
}

.not-visible {
	display: none;
}

.cc-center {
	text-align: center;
}

._c-checkbox input {
	margin-right: 6px;
}

.btn {
	display: inline-block;
	font-weight: 400;
	color: #212529;
	text-align: center;
	vertical-align: middle;
	user-select: none;
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: .25rem;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	cursor: pointer;
	margin: .5em 18px;
}

.btn-primary {
	color: #fff;
	background-color: #1d6eb6;
}

.btn-secondary {
	font-size: smaller;
	color: #fff;
	background-color: #4c4c4e;
	border-color: #4c4c4e;
}

.btn-primary:hover {
	color: #fff;
	background-color: #17578F;
}

.btn-secondary:hover {
	background-color: #333335;
	cursor: pointer;
}

.btn-group-sm > .btn, .btn-sm {
	display: inline-block;
	font-size: 10px;
	line-height: 1.5;
	color: rgb(17, 17, 17);
	border: none;
}

.d-block {
	display: block !important;
}

.flex-column {
	flex-direction: column;
}

.d-flex {
	display: flex !important;
}

.row__cc {
	display: flex;
	flex-wrap: wrap;
	margin-right: 18px;
	margin-left: 18px;
}
.row__cc h3 {
	font-size: 1.5em;
	margin: .5em 0 .8em 0;
}

.m-2 {
	margin: 0.5rem !important;
}

.cc-revoke {
	left: -10em;
	max-width: 12em;
	bottom: 2em;
	padding: 0.4em;
	padding-right: 12em;
	border-radius: 0 .5em .5em 0;
	white-space: nowrap;
	cursor: pointer;
	opacity: 0.4;
	text-indent: -49.5em;
	background-color: #1d6eb6;
	color: #fff;
	transition: opacity 0.5s, max-width 0.5s, left 0.5s;
	background-image: url("cookie_icon_white.svg");
	background-size: 24px 24px;
	background-repeat: no-repeat;
	background-position: 50% center;
}

.cc-revoke.cc-bottom {
	bottom: 1em;
	left: 0;
	border-bottom-right-radius: .5em;
	border-top-right-radius: .5em;
}

@media screen and (max-width: 1123px) {
	.cc-revoke.cc-bottom {
		bottom: 2.25em;
	}
}

.cc-revoke:hover {
	left: 0;
	text-indent: 0;
	max-width: 20em;
	opacity: 1;
	padding-right: 2.5em;
	background-position: 94% center;
}

.cc-revoke {
	display: block !important;
}

.cc-bottom {
	bottom: 1em;
}

.cc-btn, .cc-close, .cc-link, .cc-revoke {
	cursor: pointer;
}

.cc-revoke {
	padding: .8em 1.5em;
}

.cc-revoke, .cc-window {
	position: fixed;
	overflow: hidden;
	box-sizing: border-box;
	font-family: Helvetica, Calibri, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5em;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	z-index: 9999;
}

.cc-info--closed {
	height: 0;
	overflow: hidden;
	opacity: 0;
	transition: opacity 300ms ease-in-out;
	background-color: #FFF;
}

.cc-info--closed p {
	margin-bottom: 0;
}

.close {
	height: 0;
	width: 0;
}

.cc-info--open {
	z-index: 1000;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 1;
	padding: 16px 24px;
	max-width: 600px;
	width: 100%;
	height: auto;
	max-height: 86vh;
	margin: 0 auto;
	overflow: auto;
	background-color: #fff;
	box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.6);
	box-sizing: border-box;
}
.cc-info--open h3 {
	font-size: 1.5em;
	margin: .5em 0 .3em 0;
}

.cc-info--open .close {
	position: absolute;
	right: -12px;
	top: -12px;
	width: 32px;
	height: 32px;
	opacity: 0.3;
}

.cc-info--open .close:hover {
	opacity: 1;
}

.cc-info--open .close:before, .cc-info--open .close:after {
	position: absolute;
	left: 15px;
	content: ' ';
	height: 33px;
	width: 2px;
	background-color: #333;
}

.cc-info--open .close:before {
	transform: rotate(45deg);
}

.cc-info--open .close:after {
	transform: rotate(-45deg);
}

.cookie-info__container {
	max-height: 0;
	overflow: hidden;
}
.cookie-info__container a {
	color: #1d6eb6;
}

.cookie-info__row {
	display: grid;
	grid-template-columns: 100px 1fr;
	font-size: 12px;
}

.cookie-info__headline label {
	font-weight: 500;
}

.cookie-info__cookieheadline label, .cookie-info__cookieheadline {
	font-size: 12px;
	margin-bottom: 6px;
}

.cookie-info__row {
	margin-bottom: 6px;
}

.info__row:last-of-type {
	margin-bottom: 12px;
}

.cookie-info__container.is-open {
	max-height: 500px;
	transition: max-height 0.25s ease-in;
}

.rel-helper p {
	margin-bottom: 6px;
}

.text-c {
	text-align: center;
}

.cookie-info__btn {
	color: black;
	font-size: small;
	opacity: .6;
	transition: opacity 200ms ease-in-out;
	display: inline-block;
	margin-bottom: 12px;
	position: relative;
}

.cookie-info__btn:after {
	content: '';
	position: absolute;
	top: 0;
	left: 108%;
	display: block;
	border-bottom: 2px solid rgba(0, 0, 0, .6);
	border-left: 2px solid rgba(0, 0, 0, .6);
	width: 10px;
	height: 10px;
	transform-origin: center 80%;
	transform: rotate(-45deg);
	transition: transform ease-in-out 200ms;
}

.cookie-info__btn.turn:after {
	transform: rotate(135deg);
}

.cookie-info__btn:hover {
	opacity: 1;
}

.cookie-box table {
	font-size: 12px;
}

.cookie-info__container tbody th {
	padding-right: .5em;
}

.cookie-info__container input[type='checkbox'] {
	position: relative;
}

.rel-helper {
	position: relative;
}
